48df0204564165674761317c012729bac2d66cf4
[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 CLCD PL110 DRIVER
1452 M:      Russell King <linux@armlinux.org.uk>
1453 S:      Odd Fixes
1454 F:      drivers/video/fbdev/amba-clcd.*
1455
1456 ARM PRIMECELL KMI PL050 DRIVER
1457 M:      Russell King <linux@armlinux.org.uk>
1458 S:      Odd Fixes
1459 F:      drivers/input/serio/ambakmi.*
1460 F:      include/linux/amba/kmi.h
1461
1462 ARM PRIMECELL MMCI PL180/1 DRIVER
1463 M:      Russell King <linux@armlinux.org.uk>
1464 S:      Odd Fixes
1465 F:      drivers/mmc/host/mmci.*
1466 F:      include/linux/amba/mmci.h
1467
1468 ARM PRIMECELL SSP PL022 SPI DRIVER
1469 M:      Linus Walleij <linus.walleij@linaro.org>
1470 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1471 S:      Maintained
1472 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1473 F:      drivers/spi/spi-pl022.c
1474
1475 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1476 M:      Russell King <linux@armlinux.org.uk>
1477 S:      Odd Fixes
1478 F:      drivers/tty/serial/amba-pl01*.c
1479 F:      include/linux/amba/serial.h
1480
1481 ARM PRIMECELL VIC PL190/PL192 DRIVER
1482 M:      Linus Walleij <linus.walleij@linaro.org>
1483 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1484 S:      Maintained
1485 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1486 F:      drivers/irqchip/irq-vic.c
1487
1488 ARM SMC WATCHDOG DRIVER
1489 M:      Julius Werner <jwerner@chromium.org>
1490 R:      Evan Benn <evanbenn@chromium.org>
1491 S:      Maintained
1492 F:      devicetree/bindings/watchdog/arm-smc-wdt.yaml
1493 F:      drivers/watchdog/arm_smc_wdt.c
1494
1495 ARM SMMU DRIVERS
1496 M:      Will Deacon <will@kernel.org>
1497 R:      Robin Murphy <robin.murphy@arm.com>
1498 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1499 S:      Maintained
1500 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1501 F:      drivers/iommu/arm-smmu*
1502 F:      drivers/iommu/io-pgtable-arm-v7s.c
1503 F:      drivers/iommu/io-pgtable-arm.c
1504
1505 ARM SUB-ARCHITECTURES
1506 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1507 S:      Maintained
1508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1509 F:      arch/arm/mach-*/
1510 F:      arch/arm/plat-*/
1511
1512 ARM/ACTIONS SEMI ARCHITECTURE
1513 M:      Andreas Färber <afaerber@suse.de>
1514 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1515 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1516 S:      Maintained
1517 F:      Documentation/devicetree/bindings/arm/actions.yaml
1518 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1519 F:      Documentation/devicetree/bindings/dma/owl-dma.txt
1520 F:      Documentation/devicetree/bindings/i2c/i2c-owl.txt
1521 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1522 F:      Documentation/devicetree/bindings/pinctrl/actions,s900-pinctrl.txt
1523 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1524 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1525 F:      arch/arm/boot/dts/owl-*
1526 F:      arch/arm/mach-actions/
1527 F:      arch/arm64/boot/dts/actions/
1528 F:      drivers/clk/actions/
1529 F:      drivers/clocksource/timer-owl*
1530 F:      drivers/dma/owl-dma.c
1531 F:      drivers/i2c/busses/i2c-owl.c
1532 F:      drivers/mmc/host/owl-mmc.c
1533 F:      drivers/pinctrl/actions/*
1534 F:      drivers/soc/actions/
1535 F:      include/dt-bindings/power/owl-*
1536 F:      include/linux/soc/actions/
1537 N:      owl
1538
1539 ARM/ADS SPHERE MACHINE SUPPORT
1540 M:      Lennert Buytenhek <kernel@wantstofly.org>
1541 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1542 S:      Maintained
1543
1544 ARM/AFEB9260 MACHINE SUPPORT
1545 M:      Sergey Lapin <slapin@ossfans.org>
1546 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1547 S:      Maintained
1548
1549 ARM/AJECO 1ARM MACHINE SUPPORT
1550 M:      Lennert Buytenhek <kernel@wantstofly.org>
1551 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1552 S:      Maintained
1553
1554 ARM/Allwinner SoC Clock Support
1555 M:      Emilio López <emilio@elopez.com.ar>
1556 S:      Maintained
1557 F:      drivers/clk/sunxi/
1558
1559 ARM/Allwinner sunXi SoC support
1560 M:      Maxime Ripard <mripard@kernel.org>
1561 M:      Chen-Yu Tsai <wens@csie.org>
1562 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1563 S:      Maintained
1564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1565 F:      arch/arm/mach-sunxi/
1566 F:      arch/arm64/boot/dts/allwinner/
1567 F:      drivers/clk/sunxi-ng/
1568 F:      drivers/pinctrl/sunxi/
1569 F:      drivers/soc/sunxi/
1570 N:      sun[x456789]i
1571 N:      sun50i
1572
1573 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1574 M:      Neil Armstrong <narmstrong@baylibre.com>
1575 M:      Jerome Brunet <jbrunet@baylibre.com>
1576 L:      linux-amlogic@lists.infradead.org
1577 S:      Maintained
1578 F:      Documentation/devicetree/bindings/clock/amlogic*
1579 F:      drivers/clk/meson/
1580 F:      include/dt-bindings/clock/gxbb*
1581 F:      include/dt-bindings/clock/meson*
1582
1583 ARM/Amlogic Meson SoC Crypto Drivers
1584 M:      Corentin Labbe <clabbe@baylibre.com>
1585 L:      linux-crypto@vger.kernel.org
1586 L:      linux-amlogic@lists.infradead.org
1587 S:      Maintained
1588 F:      Documentation/devicetree/bindings/crypto/amlogic*
1589 F:      drivers/crypto/amlogic/
1590
1591 ARM/Amlogic Meson SoC Sound Drivers
1592 M:      Jerome Brunet <jbrunet@baylibre.com>
1593 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1594 S:      Maintained
1595 F:      Documentation/devicetree/bindings/sound/amlogic*
1596 F:      sound/soc/meson/
1597
1598 ARM/Amlogic Meson SoC support
1599 M:      Kevin Hilman <khilman@baylibre.com>
1600 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1601 L:      linux-amlogic@lists.infradead.org
1602 S:      Maintained
1603 W:      http://linux-meson.com/
1604 F:      arch/arm/boot/dts/meson*
1605 F:      arch/arm/mach-meson/
1606 F:      arch/arm64/boot/dts/amlogic/
1607 F:      drivers/mmc/host/meson*
1608 F:      drivers/pinctrl/meson/
1609 F:      drivers/rtc/rtc-meson*
1610 F:      drivers/soc/amlogic/
1611 N:      meson
1612
1613 ARM/Annapurna Labs ALPINE ARCHITECTURE
1614 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1615 M:      Antoine Tenart <antoine.tenart@bootlin.com>
1616 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1617 S:      Maintained
1618 F:      arch/arm/boot/dts/alpine*
1619 F:      arch/arm/mach-alpine/
1620 F:      arch/arm64/boot/dts/al/
1621 F:      drivers/*/*alpine*
1622
1623 ARM/ARTPEC MACHINE SUPPORT
1624 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1625 M:      Lars Persson <lars.persson@axis.com>
1626 L:      linux-arm-kernel@axis.com
1627 S:      Maintained
1628 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1629 F:      arch/arm/boot/dts/artpec6*
1630 F:      arch/arm/mach-artpec
1631 F:      drivers/clk/axis
1632 F:      drivers/crypto/axis
1633 F:      drivers/mmc/host/usdhi6rol0.c
1634 F:      drivers/pinctrl/pinctrl-artpec*
1635
1636 ARM/ASPEED I2C DRIVER
1637 M:      Brendan Higgins <brendanhiggins@google.com>
1638 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1639 R:      Joel Stanley <joel@jms.id.au>
1640 L:      linux-i2c@vger.kernel.org
1641 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1642 S:      Maintained
1643 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1644 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1645 F:      drivers/i2c/busses/i2c-aspeed.c
1646 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1647
1648 ARM/ASPEED MACHINE SUPPORT
1649 M:      Joel Stanley <joel@jms.id.au>
1650 R:      Andrew Jeffery <andrew@aj.id.au>
1651 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1652 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1653 S:      Supported
1654 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1656 F:      arch/arm/boot/dts/aspeed-*
1657 F:      arch/arm/mach-aspeed/
1658 N:      aspeed
1659
1660 ARM/BITMAIN ARCHITECTURE
1661 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1662 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1663 S:      Maintained
1664 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1665 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1666 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1667 F:      arch/arm64/boot/dts/bitmain/
1668 F:      drivers/clk/clk-bm1880.c
1669 F:      drivers/pinctrl/pinctrl-bm1880.c
1670
1671 ARM/CALXEDA HIGHBANK ARCHITECTURE
1672 M:      Andre Przywara <andre.przywara@arm.com>
1673 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1674 S:      Maintained
1675 F:      arch/arm/boot/dts/ecx-*.dts*
1676 F:      arch/arm/boot/dts/highbank.dts
1677 F:      arch/arm/mach-highbank/
1678
1679 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1680 M:      Krzysztof Halasa <khalasa@piap.pl>
1681 S:      Maintained
1682 F:      arch/arm/mach-cns3xxx/
1683
1684 ARM/CAVIUM THUNDER NETWORK DRIVER
1685 M:      Sunil Goutham <sgoutham@marvell.com>
1686 M:      Robert Richter <rrichter@marvell.com>
1687 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1688 S:      Supported
1689 F:      drivers/net/ethernet/cavium/thunder/
1690
1691 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1692 M:      Lukasz Majewski <lukma@denx.de>
1693 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1694 S:      Maintained
1695 F:      arch/arm/mach-ep93xx/ts72xx.c
1696
1697 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1698 M:      Alexander Shiyan <shc_work@mail.ru>
1699 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1700 S:      Odd Fixes
1701 N:      clps711x
1702
1703 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1704 M:      Lennert Buytenhek <kernel@wantstofly.org>
1705 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1706 S:      Maintained
1707
1708 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1709 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1710 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1711 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1712 S:      Maintained
1713 F:      arch/arm/mach-ep93xx/
1714 F:      arch/arm/mach-ep93xx/include/mach/
1715
1716 ARM/CLKDEV SUPPORT
1717 M:      Russell King <linux@armlinux.org.uk>
1718 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1719 S:      Maintained
1720 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1721 F:      drivers/clk/clkdev.c
1722
1723 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1724 M:      Baruch Siach <baruch@tkos.co.il>
1725 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1726 S:      Maintained
1727 F:      arch/arm/boot/dts/cx92755*
1728 N:      digicolor
1729
1730 ARM/CONTEC MICRO9 MACHINE SUPPORT
1731 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1732 S:      Maintained
1733 F:      arch/arm/mach-ep93xx/micro9.c
1734
1735 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1736 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1737 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
1738 R:      Mike Leach <mike.leach@linaro.org>
1739 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1740 S:      Maintained
1741 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1742 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1743 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1744 F:      Documentation/devicetree/bindings/arm/coresight.txt
1745 F:      Documentation/trace/coresight/*
1746 F:      drivers/hwtracing/coresight/*
1747 F:      include/dt-bindings/arm/coresight-cti-dt.h
1748 F:      tools/perf/arch/arm/util/auxtrace.c
1749 F:      tools/perf/arch/arm/util/cs-etm.c
1750 F:      tools/perf/arch/arm/util/cs-etm.h
1751 F:      tools/perf/arch/arm/util/pmu.c
1752 F:      tools/perf/util/cs-etm-decoder/*
1753 F:      tools/perf/util/cs-etm.*
1754
1755 ARM/CORGI MACHINE SUPPORT
1756 M:      Richard Purdie <rpurdie@rpsys.net>
1757 S:      Maintained
1758
1759 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1760 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1761 M:      Linus Walleij <linus.walleij@linaro.org>
1762 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1763 S:      Maintained
1764 T:      git git://github.com/ulli-kroll/linux.git
1765 F:      Documentation/devicetree/bindings/arm/gemini.txt
1766 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1767 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1768 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1769 F:      arch/arm/mach-gemini/
1770 F:      drivers/net/ethernet/cortina/
1771 F:      drivers/pinctrl/pinctrl-gemini.c
1772 F:      drivers/rtc/rtc-ftrtc010.c
1773
1774 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1775 M:      Barry Song <baohua@kernel.org>
1776 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1777 S:      Maintained
1778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1779 F:      arch/arm/boot/dts/prima2*
1780 F:      arch/arm/mach-prima2/
1781 F:      drivers/clk/sirf/
1782 F:      drivers/clocksource/timer-atlas7.c
1783 F:      drivers/clocksource/timer-prima2.c
1784 X:      drivers/gnss
1785 N:      [^a-z]sirf
1786
1787 ARM/CZ.NIC TURRIS MOX SUPPORT
1788 M:      Marek Behun <marek.behun@nic.cz>
1789 S:      Maintained
1790 W:      http://mox.turris.cz
1791 F:      Documentation/ABI/testing/debugfs-moxtet
1792 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1793 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1794 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1795 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1796 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1797 F:      drivers/bus/moxtet.c
1798 F:      drivers/firmware/turris-mox-rwtm.c
1799 F:      drivers/gpio/gpio-moxtet.c
1800 F:      include/linux/moxtet.h
1801
1802 ARM/EBSA110 MACHINE SUPPORT
1803 M:      Russell King <linux@armlinux.org.uk>
1804 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1805 S:      Maintained
1806 W:      http://www.armlinux.org.uk/
1807 F:      arch/arm/mach-ebsa110/
1808 F:      drivers/net/ethernet/amd/am79c961a.*
1809
1810 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1811 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1812 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1813 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1814 S:      Maintained
1815 N:      efm32
1816
1817 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1818 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1819 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1820 S:      Maintained
1821 F:      arch/arm/mach-pxa/ezx.c
1822
1823 ARM/FARADAY FA526 PORT
1824 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1825 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1826 S:      Maintained
1827 T:      git git://git.berlios.de/gemini-board
1828 F:      arch/arm/mm/*-fa*
1829
1830 ARM/FOOTBRIDGE ARCHITECTURE
1831 M:      Russell King <linux@armlinux.org.uk>
1832 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1833 S:      Maintained
1834 W:      http://www.armlinux.org.uk/
1835 F:      arch/arm/include/asm/hardware/dec21285.h
1836 F:      arch/arm/mach-footbridge/
1837
1838 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1839 M:      Shawn Guo <shawnguo@kernel.org>
1840 M:      Sascha Hauer <s.hauer@pengutronix.de>
1841 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1842 R:      Fabio Estevam <festevam@gmail.com>
1843 R:      NXP Linux Team <linux-imx@nxp.com>
1844 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1845 S:      Maintained
1846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1847 X:      drivers/media/i2c/
1848 N:      imx
1849 N:      mxs
1850
1851 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1852 M:      Shawn Guo <shawnguo@kernel.org>
1853 M:      Li Yang <leoyang.li@nxp.com>
1854 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1855 S:      Maintained
1856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1857 F:      arch/arm/boot/dts/ls1021a*
1858 F:      arch/arm64/boot/dts/freescale/fsl-*
1859 F:      arch/arm64/boot/dts/freescale/qoriq-*
1860
1861 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1862 M:      Shawn Guo <shawnguo@kernel.org>
1863 M:      Sascha Hauer <s.hauer@pengutronix.de>
1864 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1865 R:      Stefan Agner <stefan@agner.ch>
1866 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1867 S:      Maintained
1868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1869 F:      arch/arm/boot/dts/vf*
1870 F:      arch/arm/mach-imx/*vf610*
1871
1872 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1873 M:      Lennert Buytenhek <kernel@wantstofly.org>
1874 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1875 S:      Maintained
1876
1877 ARM/GUMSTIX MACHINE SUPPORT
1878 M:      Steve Sakoman <sakoman@gmail.com>
1879 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1880 S:      Maintained
1881
1882 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1883 M:      Philipp Zabel <philipp.zabel@gmail.com>
1884 M:      Paul Parsons <lost.distance@yahoo.com>
1885 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1886 S:      Maintained
1887 F:      arch/arm/mach-pxa/hx4700.c
1888 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1889 F:      sound/soc/pxa/hx4700.c
1890
1891 ARM/HISILICON SOC SUPPORT
1892 M:      Wei Xu <xuwei5@hisilicon.com>
1893 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1894 S:      Supported
1895 W:      http://www.hisilicon.com
1896 T:      git git://github.com/hisilicon/linux-hisi.git
1897 F:      arch/arm/boot/dts/hi3*
1898 F:      arch/arm/boot/dts/hip*
1899 F:      arch/arm/boot/dts/hisi*
1900 F:      arch/arm/mach-hisi/
1901 F:      arch/arm64/boot/dts/hisilicon/
1902
1903 ARM/HP JORNADA 7XX MACHINE SUPPORT
1904 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1905 S:      Maintained
1906 W:      www.jlime.com
1907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1908 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1909 F:      arch/arm/mach-sa1100/jornada720.c
1910
1911 ARM/IGEP MACHINE SUPPORT
1912 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1913 M:      Javier Martinez Canillas <javier@dowhile0.org>
1914 L:      linux-omap@vger.kernel.org
1915 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1916 S:      Maintained
1917 F:      arch/arm/boot/dts/omap3-igep*
1918
1919 ARM/INCOME PXA270 SUPPORT
1920 M:      Marek Vasut <marek.vasut@gmail.com>
1921 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1922 S:      Maintained
1923 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1924
1925 ARM/INTEL IOP32X ARM ARCHITECTURE
1926 M:      Lennert Buytenhek <kernel@wantstofly.org>
1927 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1928 S:      Maintained
1929
1930 ARM/INTEL IQ81342EX MACHINE SUPPORT
1931 M:      Lennert Buytenhek <kernel@wantstofly.org>
1932 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1933 S:      Maintained
1934
1935 ARM/INTEL IXDP2850 MACHINE SUPPORT
1936 M:      Lennert Buytenhek <kernel@wantstofly.org>
1937 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1938 S:      Maintained
1939
1940 ARM/INTEL IXP4XX ARM ARCHITECTURE
1941 M:      Linus Walleij <linusw@kernel.org>
1942 M:      Imre Kaloz <kaloz@openwrt.org>
1943 M:      Krzysztof Halasa <khalasa@piap.pl>
1944 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1945 S:      Maintained
1946 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1947 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1948 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1949 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1950 F:      arch/arm/mach-ixp4xx/
1951 F:      drivers/clocksource/timer-ixp4xx.c
1952 F:      drivers/gpio/gpio-ixp4xx.c
1953 F:      drivers/irqchip/irq-ixp4xx.c
1954 F:      include/linux/irqchip/irq-ixp4xx.h
1955 F:      include/linux/platform_data/timer-ixp4xx.h
1956
1957 ARM/INTEL KEEMBAY ARCHITECTURE
1958 M:      Paul J. Murphy <paul.j.murphy@intel.com>
1959 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
1960 S:      Maintained
1961 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
1962 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
1963 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
1964
1965 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1966 M:      Jonathan Cameron <jic23@cam.ac.uk>
1967 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1968 S:      Maintained
1969 F:      arch/arm/mach-pxa/stargate2.c
1970 F:      drivers/pcmcia/pxa2xx_stargate2.c
1971
1972 ARM/INTEL XSC3 (MANZANO) ARM CORE
1973 M:      Lennert Buytenhek <kernel@wantstofly.org>
1974 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1975 S:      Maintained
1976
1977 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1978 M:      Lennert Buytenhek <kernel@wantstofly.org>
1979 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1980 S:      Maintained
1981
1982 ARM/LG1K ARCHITECTURE
1983 M:      Chanho Min <chanho.min@lge.com>
1984 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1985 S:      Maintained
1986 F:      arch/arm64/boot/dts/lg/
1987
1988 ARM/LOGICPD PXA270 MACHINE SUPPORT
1989 M:      Lennert Buytenhek <kernel@wantstofly.org>
1990 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1991 S:      Maintained
1992
1993 ARM/LPC18XX ARCHITECTURE
1994 M:      Vladimir Zapolskiy <vz@mleia.com>
1995 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1996 S:      Maintained
1997 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1998 F:      arch/arm/boot/dts/lpc43*
1999 F:      drivers/i2c/busses/i2c-lpc2k.c
2000 F:      drivers/memory/pl172.c
2001 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2002 F:      drivers/rtc/rtc-lpc24xx.c
2003 N:      lpc18xx
2004
2005 ARM/LPC32XX SOC SUPPORT
2006 M:      Vladimir Zapolskiy <vz@mleia.com>
2007 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
2008 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2009 S:      Maintained
2010 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2011 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2012 F:      arch/arm/boot/dts/lpc32*
2013 F:      arch/arm/mach-lpc32xx/
2014 F:      drivers/i2c/busses/i2c-pnx.c
2015 F:      drivers/net/ethernet/nxp/lpc_eth.c
2016 F:      drivers/usb/host/ohci-nxp.c
2017 F:      drivers/watchdog/pnx4008_wdt.c
2018 N:      lpc32xx
2019
2020 ARM/MAGICIAN MACHINE SUPPORT
2021 M:      Philipp Zabel <philipp.zabel@gmail.com>
2022 S:      Maintained
2023
2024 ARM/Marvell Dove/MV78xx0/Orion SOC support
2025 M:      Jason Cooper <jason@lakedaemon.net>
2026 M:      Andrew Lunn <andrew@lunn.ch>
2027 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2028 M:      Gregory Clement <gregory.clement@bootlin.com>
2029 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2030 S:      Maintained
2031 T:      git git://git.infradead.org/linux-mvebu.git
2032 F:      Documentation/devicetree/bindings/soc/dove/
2033 F:      arch/arm/boot/dts/dove*
2034 F:      arch/arm/boot/dts/orion5x*
2035 F:      arch/arm/mach-dove/
2036 F:      arch/arm/mach-mv78xx0/
2037 F:      arch/arm/mach-orion5x/
2038 F:      arch/arm/plat-orion/
2039 F:      drivers/soc/dove/
2040
2041 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2042 M:      Jason Cooper <jason@lakedaemon.net>
2043 M:      Andrew Lunn <andrew@lunn.ch>
2044 M:      Gregory Clement <gregory.clement@bootlin.com>
2045 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2046 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2047 S:      Maintained
2048 T:      git git://git.infradead.org/linux-mvebu.git
2049 F:      arch/arm/boot/dts/armada*
2050 F:      arch/arm/boot/dts/kirkwood*
2051 F:      arch/arm/configs/mvebu_*_defconfig
2052 F:      arch/arm/mach-mvebu/
2053 F:      arch/arm64/boot/dts/marvell/armada*
2054 F:      arch/arm64/boot/dts/marvell/cn913*
2055 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2056 F:      drivers/cpufreq/armada-8k-cpufreq.c
2057 F:      drivers/cpufreq/mvebu-cpufreq.c
2058 F:      drivers/irqchip/irq-armada-370-xp.c
2059 F:      drivers/irqchip/irq-mvebu-*
2060 F:      drivers/pinctrl/mvebu/
2061 F:      drivers/rtc/rtc-armada38x.c
2062
2063 ARM/Mediatek RTC DRIVER
2064 M:      Eddie Huang <eddie.huang@mediatek.com>
2065 M:      Sean Wang <sean.wang@mediatek.com>
2066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2067 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2068 S:      Maintained
2069 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2070 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2071 F:      drivers/rtc/rtc-mt2712.c
2072 F:      drivers/rtc/rtc-mt6397.c
2073 F:      drivers/rtc/rtc-mt7622.c
2074
2075 ARM/Mediatek SoC support
2076 M:      Matthias Brugger <matthias.bgg@gmail.com>
2077 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2078 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2079 S:      Maintained
2080 W:      https://mtk.bcnfs.org/
2081 C:      irc://chat.freenode.net/linux-mediatek
2082 F:      arch/arm/boot/dts/mt6*
2083 F:      arch/arm/boot/dts/mt7*
2084 F:      arch/arm/boot/dts/mt8*
2085 F:      arch/arm/mach-mediatek/
2086 F:      arch/arm64/boot/dts/mediatek/
2087 F:      drivers/soc/mediatek/
2088 N:      mtk
2089 N:      mt[678]
2090 K:      mediatek
2091
2092 ARM/Mediatek USB3 PHY DRIVER
2093 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2094 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2095 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2096 S:      Maintained
2097 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
2098 F:      drivers/phy/mediatek/
2099
2100 ARM/Microchip (AT91) SoC support
2101 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2102 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2103 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2104 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2105 S:      Supported
2106 W:      http://www.linux4sam.org
2107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2108 F:      arch/arm/boot/dts/at91*.dts
2109 F:      arch/arm/boot/dts/at91*.dtsi
2110 F:      arch/arm/boot/dts/sama*.dts
2111 F:      arch/arm/boot/dts/sama*.dtsi
2112 F:      arch/arm/include/debug/at91.S
2113 F:      arch/arm/mach-at91/
2114 F:      drivers/memory/atmel*
2115 F:      drivers/watchdog/sama5d4_wdt.c
2116 F:      include/soc/at91/
2117 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2118 X:      drivers/net/wireless/atmel/
2119 N:      at91
2120 N:      atmel
2121
2122 ARM/Microchip Sparx5 SoC support
2123 M:      Lars Povlsen <lars.povlsen@microchip.com>
2124 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2125 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
2126 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2127 S:      Supported
2128 F:      arch/arm64/boot/dts/microchip/
2129 N:      sparx5
2130
2131 ARM/MIOA701 MACHINE SUPPORT
2132 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2133 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2134 S:      Maintained
2135 F:      arch/arm/mach-pxa/mioa701.c
2136
2137 ARM/MStar/Sigmastar Armv7 SoC support
2138 M:      Daniel Palmer <daniel@thingy.jp>
2139 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2140 S:      Maintained
2141 W:      http://linux-chenxing.org/
2142 F:      Documentation/devicetree/bindings/arm/mstar.yaml
2143 F:      arch/arm/boot/dts/infinity*.dtsi
2144 F:      arch/arm/boot/dts/mstar-v7.dtsi
2145 F:      arch/arm/mach-mstar/
2146
2147 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2148 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2149 S:      Maintained
2150
2151 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2152 M:      Linus Walleij <linus.walleij@linaro.org>
2153 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2154 S:      Maintained
2155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2156 F:      Documentation/devicetree/bindings/arm/ste-*
2157 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2158 F:      Documentation/devicetree/bindings/arm/ux500/
2159 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2160 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2161 F:      arch/arm/boot/dts/ste-*
2162 F:      arch/arm/mach-nomadik/
2163 F:      arch/arm/mach-u300/
2164 F:      arch/arm/mach-ux500/
2165 F:      drivers/clk/clk-nomadik.c
2166 F:      drivers/clk/clk-u300.c
2167 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2168 F:      drivers/clocksource/timer-u300.c
2169 F:      drivers/dma/coh901318*
2170 F:      drivers/dma/ste_dma40*
2171 F:      drivers/hwspinlock/u8500_hsem.c
2172 F:      drivers/i2c/busses/i2c-nomadik.c
2173 F:      drivers/i2c/busses/i2c-stu300.c
2174 F:      drivers/iio/adc/ab8500-gpadc.c
2175 F:      drivers/mfd/ab3100*
2176 F:      drivers/mfd/ab8500*
2177 F:      drivers/mfd/abx500*
2178 F:      drivers/mfd/db8500*
2179 F:      drivers/mfd/dbx500*
2180 F:      drivers/pinctrl/nomadik/
2181 F:      drivers/pinctrl/pinctrl-coh901*
2182 F:      drivers/pinctrl/pinctrl-u300.c
2183 F:      drivers/rtc/rtc-ab3100.c
2184 F:      drivers/rtc/rtc-ab8500.c
2185 F:      drivers/rtc/rtc-coh901331.c
2186 F:      drivers/rtc/rtc-pl031.c
2187 F:      drivers/soc/ux500/
2188 F:      drivers/watchdog/coh901327_wdt.c
2189
2190 ARM/NUVOTON NPCM ARCHITECTURE
2191 M:      Avi Fishman <avifishman70@gmail.com>
2192 M:      Tomer Maimon <tmaimon77@gmail.com>
2193 M:      Tali Perry <tali.perry1@gmail.com>
2194 R:      Patrick Venture <venture@google.com>
2195 R:      Nancy Yuen <yuenn@google.com>
2196 R:      Benjamin Fair <benjaminfair@google.com>
2197 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2198 S:      Supported
2199 F:      Documentation/devicetree/bindings/*/*/*npcm*
2200 F:      Documentation/devicetree/bindings/*/*npcm*
2201 F:      arch/arm/boot/dts/nuvoton-npcm*
2202 F:      arch/arm/mach-npcm/
2203 F:      drivers/*/*npcm*
2204 F:      drivers/*/*/*npcm*
2205 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2206
2207 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2208 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2209 S:      Orphan
2210 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2211 F:      arch/arm/mach-s3c24xx/gta02.h
2212 F:      arch/arm/mach-s3c24xx/mach-gta02.c
2213
2214 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2215 M:      Alexander Clouter <alex@digriz.org.uk>
2216 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2217 S:      Maintained
2218 W:      http://www.digriz.org.uk/ts78xx/kernel
2219 F:      arch/arm/mach-orion5x/ts78xx-*
2220
2221 ARM/OXNAS platform support
2222 M:      Neil Armstrong <narmstrong@baylibre.com>
2223 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2224 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2225 S:      Maintained
2226 F:      arch/arm/boot/dts/ox8*.dts*
2227 F:      arch/arm/mach-oxnas/
2228 F:      drivers/power/reset/oxnas-restart.c
2229 N:      oxnas
2230
2231 ARM/PALM TREO SUPPORT
2232 M:      Tomas Cech <sleep_walker@suse.com>
2233 L:      linux-arm-kernel@lists.infradead.org
2234 S:      Maintained
2235 W:      http://hackndev.com
2236 F:      arch/arm/mach-pxa/palmtreo.*
2237
2238 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2239 M:      Marek Vasut <marek.vasut@gmail.com>
2240 L:      linux-arm-kernel@lists.infradead.org
2241 S:      Maintained
2242 W:      http://hackndev.com
2243 F:      arch/arm/mach-pxa/include/mach/palmld.h
2244 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2245 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2246 F:      arch/arm/mach-pxa/palmld.c
2247 F:      arch/arm/mach-pxa/palmt5.*
2248 F:      arch/arm/mach-pxa/palmtc.c
2249 F:      arch/arm/mach-pxa/palmte2.*
2250 F:      arch/arm/mach-pxa/palmtx.c
2251
2252 ARM/PALMZ72 SUPPORT
2253 M:      Sergey Lapin <slapin@ossfans.org>
2254 L:      linux-arm-kernel@lists.infradead.org
2255 S:      Maintained
2256 W:      http://hackndev.com
2257 F:      arch/arm/mach-pxa/palmz72.*
2258
2259 ARM/PLEB SUPPORT
2260 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2261 S:      Maintained
2262 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2263
2264 ARM/PT DIGITAL BOARD PORT
2265 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2266 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2267 S:      Maintained
2268 W:      http://www.armlinux.org.uk/
2269
2270 ARM/QUALCOMM SUPPORT
2271 M:      Andy Gross <agross@kernel.org>
2272 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2273 L:      linux-arm-msm@vger.kernel.org
2274 S:      Maintained
2275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2276 F:      Documentation/devicetree/bindings/*/qcom*
2277 F:      Documentation/devicetree/bindings/soc/qcom/
2278 F:      arch/arm/boot/dts/qcom-*.dts
2279 F:      arch/arm/boot/dts/qcom-*.dtsi
2280 F:      arch/arm/mach-qcom/
2281 F:      arch/arm64/boot/dts/qcom/
2282 F:      drivers/*/*/qcom*
2283 F:      drivers/*/*/qcom/
2284 F:      drivers/*/pm8???-*
2285 F:      drivers/*/qcom*
2286 F:      drivers/*/qcom/
2287 F:      drivers/bluetooth/btqcomsmd.c
2288 F:      drivers/clocksource/timer-qcom.c
2289 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2290 F:      drivers/extcon/extcon-qcom*
2291 F:      drivers/i2c/busses/i2c-qcom-geni.c
2292 F:      drivers/i2c/busses/i2c-qup.c
2293 F:      drivers/iommu/msm*
2294 F:      drivers/mfd/ssbi.c
2295 F:      drivers/mmc/host/mmci_qcom*
2296 F:      drivers/mmc/host/sdhci-msm.c
2297 F:      drivers/pci/controller/dwc/pcie-qcom.c
2298 F:      drivers/phy/qualcomm/
2299 F:      drivers/power/*/msm*
2300 F:      drivers/reset/reset-qcom-*
2301 F:      drivers/scsi/ufs/ufs-qcom.*
2302 F:      drivers/spi/spi-geni-qcom.c
2303 F:      drivers/spi/spi-qcom-qspi.c
2304 F:      drivers/spi/spi-qup.c
2305 F:      drivers/tty/serial/msm_serial.c
2306 F:      drivers/usb/dwc3/dwc3-qcom.c
2307 F:      include/dt-bindings/*/qcom*
2308 F:      include/linux/*/qcom*
2309
2310 ARM/RADISYS ENP2611 MACHINE SUPPORT
2311 M:      Lennert Buytenhek <kernel@wantstofly.org>
2312 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2313 S:      Maintained
2314
2315 ARM/RDA MICRO ARCHITECTURE
2316 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2317 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2318 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2319 S:      Maintained
2320 F:      Documentation/devicetree/bindings/arm/rda.yaml
2321 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2322 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2323 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2324 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2325 F:      arch/arm/boot/dts/rda8810pl-*
2326 F:      drivers/clocksource/timer-rda.c
2327 F:      drivers/gpio/gpio-rda.c
2328 F:      drivers/irqchip/irq-rda-intc.c
2329 F:      drivers/tty/serial/rda-uart.c
2330
2331 ARM/REALTEK ARCHITECTURE
2332 M:      Andreas Färber <afaerber@suse.de>
2333 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2334 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2335 S:      Maintained
2336 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2337 F:      arch/arm/boot/dts/rtd*
2338 F:      arch/arm/mach-realtek/
2339 F:      arch/arm64/boot/dts/realtek/
2340
2341 ARM/RENESAS ARM64 ARCHITECTURE
2342 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2343 M:      Magnus Damm <magnus.damm@gmail.com>
2344 L:      linux-renesas-soc@vger.kernel.org
2345 S:      Supported
2346 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2348 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2349 F:      arch/arm64/boot/dts/renesas/
2350 F:      drivers/soc/renesas/
2351 F:      include/linux/soc/renesas/
2352
2353 ARM/RISCPC ARCHITECTURE
2354 M:      Russell King <linux@armlinux.org.uk>
2355 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2356 S:      Maintained
2357 W:      http://www.armlinux.org.uk/
2358 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2359 F:      arch/arm/include/asm/hardware/ioc.h
2360 F:      arch/arm/include/asm/hardware/iomd.h
2361 F:      arch/arm/include/asm/hardware/memc.h
2362 F:      arch/arm/mach-rpc/
2363 F:      drivers/net/ethernet/8390/etherh.c
2364 F:      drivers/net/ethernet/i825xx/ether1*
2365 F:      drivers/net/ethernet/seeq/ether3*
2366 F:      drivers/scsi/arm/
2367
2368 ARM/Rockchip SoC support
2369 M:      Heiko Stuebner <heiko@sntech.de>
2370 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2371 L:      linux-rockchip@lists.infradead.org
2372 S:      Maintained
2373 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2374 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2375 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2376 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2377 F:      arch/arm/boot/dts/rk3*
2378 F:      arch/arm/boot/dts/rv1108*
2379 F:      arch/arm/mach-rockchip/
2380 F:      drivers/*/*/*rockchip*
2381 F:      drivers/*/*rockchip*
2382 F:      drivers/clk/rockchip/
2383 F:      drivers/i2c/busses/i2c-rk3x.c
2384 F:      sound/soc/rockchip/
2385 N:      rockchip
2386
2387 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
2388 M:      Kukjin Kim <kgene@kernel.org>
2389 M:      Krzysztof Kozlowski <krzk@kernel.org>
2390 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2391 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2392 S:      Maintained
2393 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2394 F:      Documentation/arm/samsung/
2395 F:      Documentation/devicetree/bindings/arm/samsung/
2396 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2397 F:      arch/arm/boot/dts/exynos*
2398 F:      arch/arm/boot/dts/s3c*
2399 F:      arch/arm/boot/dts/s5p*
2400 F:      arch/arm/mach-exynos*/
2401 F:      arch/arm/mach-s3c24*/
2402 F:      arch/arm/mach-s3c64xx/
2403 F:      arch/arm/mach-s5p*/
2404 F:      arch/arm/plat-samsung/
2405 F:      arch/arm64/boot/dts/exynos/
2406 F:      drivers/*/*/*s3c24*
2407 F:      drivers/*/*s3c24*
2408 F:      drivers/*/*s3c64xx*
2409 F:      drivers/*/*s5pv210*
2410 F:      drivers/memory/samsung/
2411 F:      drivers/soc/samsung/
2412 F:      drivers/tty/serial/samsung*
2413 F:      include/linux/soc/samsung/
2414 N:      exynos
2415
2416 ARM/SAMSUNG MOBILE MACHINE SUPPORT
2417 M:      Kyungmin Park <kyungmin.park@samsung.com>
2418 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2419 S:      Maintained
2420 F:      arch/arm/mach-s5pv210/
2421
2422 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2423 M:      Kyungmin Park <kyungmin.park@samsung.com>
2424 M:      Kamil Debski <kamil@wypas.org>
2425 M:      Andrzej Hajda <a.hajda@samsung.com>
2426 L:      linux-arm-kernel@lists.infradead.org
2427 L:      linux-media@vger.kernel.org
2428 S:      Maintained
2429 F:      drivers/media/platform/s5p-g2d/
2430
2431 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2432 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2433 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2434 L:      linux-media@vger.kernel.org
2435 S:      Maintained
2436 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2437 F:      drivers/media/platform/s5p-cec/
2438
2439 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2440 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2441 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2442 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2443 L:      linux-arm-kernel@lists.infradead.org
2444 L:      linux-media@vger.kernel.org
2445 S:      Maintained
2446 F:      drivers/media/platform/s5p-jpeg/
2447
2448 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2449 M:      Kyungmin Park <kyungmin.park@samsung.com>
2450 M:      Kamil Debski <kamil@wypas.org>
2451 M:      Jeongtae Park <jtp.park@samsung.com>
2452 M:      Andrzej Hajda <a.hajda@samsung.com>
2453 L:      linux-arm-kernel@lists.infradead.org
2454 L:      linux-media@vger.kernel.org
2455 S:      Maintained
2456 F:      drivers/media/platform/s5p-mfc/
2457
2458 ARM/SHMOBILE ARM ARCHITECTURE
2459 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2460 M:      Magnus Damm <magnus.damm@gmail.com>
2461 L:      linux-renesas-soc@vger.kernel.org
2462 S:      Supported
2463 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2465 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2466 F:      arch/arm/boot/dts/emev2*
2467 F:      arch/arm/boot/dts/gr-peach*
2468 F:      arch/arm/boot/dts/iwg20d-q7*
2469 F:      arch/arm/boot/dts/r7s*
2470 F:      arch/arm/boot/dts/r8a*
2471 F:      arch/arm/boot/dts/r9a*
2472 F:      arch/arm/boot/dts/sh*
2473 F:      arch/arm/configs/shmobile_defconfig
2474 F:      arch/arm/include/debug/renesas-scif.S
2475 F:      arch/arm/mach-shmobile/
2476 F:      drivers/soc/renesas/
2477 F:      include/linux/soc/renesas/
2478
2479 ARM/SOCFPGA ARCHITECTURE
2480 M:      Dinh Nguyen <dinguyen@kernel.org>
2481 S:      Maintained
2482 W:      http://www.rocketboards.org
2483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2484 F:      arch/arm/boot/dts/socfpga*
2485 F:      arch/arm/configs/socfpga_defconfig
2486 F:      arch/arm/mach-socfpga/
2487 F:      arch/arm64/boot/dts/altera/
2488 F:      arch/arm64/boot/dts/intel/
2489
2490 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2491 M:      Dinh Nguyen <dinguyen@kernel.org>
2492 S:      Maintained
2493 F:      drivers/clk/socfpga/
2494
2495 ARM/SOCFPGA EDAC SUPPORT
2496 M:      Thor Thayer <thor.thayer@linux.intel.com>
2497 S:      Maintained
2498 F:      drivers/edac/altera_edac.
2499
2500 ARM/SPREADTRUM SoC SUPPORT
2501 M:      Orson Zhai <orsonzhai@gmail.com>
2502 M:      Baolin Wang <baolin.wang7@gmail.com>
2503 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2504 S:      Maintained
2505 F:      arch/arm64/boot/dts/sprd
2506 N:      sprd
2507 N:      sc27xx
2508 N:      sc2731
2509
2510 ARM/STI ARCHITECTURE
2511 M:      Patrice Chotard <patrice.chotard@st.com>
2512 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2513 S:      Maintained
2514 W:      http://www.stlinux.com
2515 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2516 F:      arch/arm/boot/dts/sti*
2517 F:      arch/arm/mach-sti/
2518 F:      drivers/ata/ahci_st.c
2519 F:      drivers/char/hw_random/st-rng.c
2520 F:      drivers/clocksource/arm_global_timer.c
2521 F:      drivers/clocksource/clksrc_st_lpc.c
2522 F:      drivers/cpufreq/sti-cpufreq.c
2523 F:      drivers/dma/st_fdma*
2524 F:      drivers/i2c/busses/i2c-st.c
2525 F:      drivers/media/platform/sti/c8sectpfe/
2526 F:      drivers/media/rc/st_rc.c
2527 F:      drivers/mmc/host/sdhci-st.c
2528 F:      drivers/phy/st/phy-miphy28lp.c
2529 F:      drivers/phy/st/phy-stih407-usb.c
2530 F:      drivers/pinctrl/pinctrl-st.c
2531 F:      drivers/remoteproc/st_remoteproc.c
2532 F:      drivers/remoteproc/st_slim_rproc.c
2533 F:      drivers/reset/sti/
2534 F:      drivers/rtc/rtc-st-lpc.c
2535 F:      drivers/tty/serial/st-asc.c
2536 F:      drivers/usb/dwc3/dwc3-st.c
2537 F:      drivers/usb/host/ehci-st.c
2538 F:      drivers/usb/host/ohci-st.c
2539 F:      drivers/watchdog/st_lpc_wdt.c
2540 F:      include/linux/remoteproc/st_slim_rproc.h
2541
2542 ARM/STM32 ARCHITECTURE
2543 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2544 M:      Alexandre Torgue <alexandre.torgue@st.com>
2545 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2546 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2547 S:      Maintained
2548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2549 F:      arch/arm/boot/dts/stm32*
2550 F:      arch/arm/mach-stm32/
2551 F:      drivers/clocksource/armv7m_systick.c
2552 N:      stm32
2553 N:      stm
2554
2555 ARM/Synaptics SoC support
2556 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2557 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2558 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2559 S:      Maintained
2560 F:      arch/arm/boot/dts/berlin*
2561 F:      arch/arm/mach-berlin/
2562 F:      arch/arm64/boot/dts/synaptics/
2563
2564 ARM/TANGO ARCHITECTURE
2565 M:      Marc Gonzalez <marc.w.gonzalez@free.fr>
2566 M:      Mans Rullgard <mans@mansr.com>
2567 L:      linux-arm-kernel@lists.infradead.org
2568 S:      Odd Fixes
2569 N:      tango
2570
2571 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2572 M:      Lennert Buytenhek <kernel@wantstofly.org>
2573 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2574 S:      Maintained
2575
2576 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2577 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2578 L:      linux-tegra@vger.kernel.org
2579 L:      linux-media@vger.kernel.org
2580 S:      Maintained
2581 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2582 F:      drivers/media/platform/tegra-cec/
2583
2584 ARM/TETON BGA MACHINE SUPPORT
2585 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2586 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2587 S:      Maintained
2588
2589 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2590 M:      Santosh Shilimkar <ssantosh@kernel.org>
2591 L:      linux-kernel@vger.kernel.org
2592 S:      Maintained
2593 F:      drivers/memory/*emif*
2594
2595 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2596 M:      Santosh Shilimkar <ssantosh@kernel.org>
2597 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2598 S:      Maintained
2599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2600 F:      arch/arm/boot/dts/keystone-*
2601 F:      arch/arm/mach-keystone/
2602
2603 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2604 M:      Santosh Shilimkar <ssantosh@kernel.org>
2605 L:      linux-kernel@vger.kernel.org
2606 S:      Maintained
2607 F:      drivers/clk/keystone/
2608
2609 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2610 M:      Santosh Shilimkar <ssantosh@kernel.org>
2611 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2612 L:      linux-kernel@vger.kernel.org
2613 S:      Maintained
2614 F:      drivers/clocksource/timer-keystone.c
2615
2616 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2617 M:      Santosh Shilimkar <ssantosh@kernel.org>
2618 L:      linux-kernel@vger.kernel.org
2619 S:      Maintained
2620 F:      drivers/power/reset/keystone-reset.c
2621
2622 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2623 M:      Tero Kristo <t-kristo@ti.com>
2624 M:      Nishanth Menon <nm@ti.com>
2625 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2626 S:      Supported
2627 F:      Documentation/devicetree/bindings/arm/ti/k3.txt
2628 F:      arch/arm64/boot/dts/ti/Makefile
2629 F:      arch/arm64/boot/dts/ti/k3-*
2630 F:      include/dt-bindings/pinctrl/k3.h
2631
2632 ARM/THECUS N2100 MACHINE SUPPORT
2633 M:      Lennert Buytenhek <kernel@wantstofly.org>
2634 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2635 S:      Maintained
2636
2637 ARM/TOSA MACHINE SUPPORT
2638 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2639 M:      Dirk Opfer <dirk@opfer-online.de>
2640 S:      Maintained
2641
2642 ARM/UNIPHIER ARCHITECTURE
2643 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
2644 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2645 S:      Maintained
2646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2647 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2648 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2649 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2650 F:      arch/arm/boot/dts/uniphier*
2651 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2652 F:      arch/arm/mach-uniphier/
2653 F:      arch/arm/mm/cache-uniphier.c
2654 F:      arch/arm64/boot/dts/socionext/uniphier*
2655 F:      drivers/bus/uniphier-system-bus.c
2656 F:      drivers/clk/uniphier/
2657 F:      drivers/dma/uniphier-mdmac.c
2658 F:      drivers/gpio/gpio-uniphier.c
2659 F:      drivers/i2c/busses/i2c-uniphier*
2660 F:      drivers/irqchip/irq-uniphier-aidet.c
2661 F:      drivers/mmc/host/uniphier-sd.c
2662 F:      drivers/pinctrl/uniphier/
2663 F:      drivers/reset/reset-uniphier.c
2664 F:      drivers/tty/serial/8250/8250_uniphier.c
2665 N:      uniphier
2666
2667 ARM/VERSATILE EXPRESS PLATFORM
2668 M:      Liviu Dudau <liviu.dudau@arm.com>
2669 M:      Sudeep Holla <sudeep.holla@arm.com>
2670 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2671 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2672 S:      Maintained
2673 F:      */*/*/vexpress*
2674 F:      */*/vexpress*
2675 F:      arch/arm/boot/dts/vexpress*
2676 F:      arch/arm/mach-vexpress/
2677 F:      arch/arm64/boot/dts/arm/
2678 F:      drivers/clk/versatile/clk-vexpress-osc.c
2679 F:      drivers/clocksource/timer-versatile.c
2680 N:      mps2
2681
2682 ARM/VFP SUPPORT
2683 M:      Russell King <linux@armlinux.org.uk>
2684 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2685 S:      Maintained
2686 W:      http://www.armlinux.org.uk/
2687 F:      arch/arm/vfp/
2688
2689 ARM/VOIPAC PXA270 SUPPORT
2690 M:      Marek Vasut <marek.vasut@gmail.com>
2691 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2692 S:      Maintained
2693 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2694 F:      arch/arm/mach-pxa/vpac270.c
2695
2696 ARM/VT8500 ARM ARCHITECTURE
2697 M:      Tony Prisk <linux@prisktech.co.nz>
2698 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2699 S:      Maintained
2700 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2701 F:      arch/arm/mach-vt8500/
2702 F:      drivers/clocksource/timer-vt8500.c
2703 F:      drivers/i2c/busses/i2c-wmt.c
2704 F:      drivers/mmc/host/wmt-sdmmc.c
2705 F:      drivers/pwm/pwm-vt8500.c
2706 F:      drivers/rtc/rtc-vt8500.c
2707 F:      drivers/tty/serial/vt8500_serial.c
2708 F:      drivers/usb/host/ehci-platform.c
2709 F:      drivers/usb/host/uhci-platform.c
2710 F:      drivers/video/fbdev/vt8500lcdfb.*
2711 F:      drivers/video/fbdev/wm8505fb*
2712 F:      drivers/video/fbdev/wmt_ge_rops.*
2713
2714 ARM/ZIPIT Z2 SUPPORT
2715 M:      Marek Vasut <marek.vasut@gmail.com>
2716 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2717 S:      Maintained
2718 F:      arch/arm/mach-pxa/include/mach/z2.h
2719 F:      arch/arm/mach-pxa/z2.c
2720
2721 ARM/ZTE ARCHITECTURE
2722 M:      Jun Nie <jun.nie@linaro.org>
2723 M:      Shawn Guo <shawnguo@kernel.org>
2724 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2725 S:      Maintained
2726 F:      Documentation/devicetree/bindings/arm/zte.yaml
2727 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2728 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2729 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2730 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2731 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2732 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2733 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2734 F:      Documentation/devicetree/bindings/soc/zte/
2735 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2736 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2737 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2738 F:      arch/arm/boot/dts/zx2967*
2739 F:      arch/arm/mach-zx/
2740 F:      arch/arm64/boot/dts/zte/
2741 F:      drivers/clk/zte/
2742 F:      drivers/dma/zx_dma.c
2743 F:      drivers/gpio/gpio-zx.c
2744 F:      drivers/i2c/busses/i2c-zx2967.c
2745 F:      drivers/mmc/host/dw_mmc-zx.*
2746 F:      drivers/pinctrl/zte/
2747 F:      drivers/soc/zte/
2748 F:      drivers/thermal/zx2967_thermal.c
2749 F:      drivers/watchdog/zx2967_wdt.c
2750 F:      include/dt-bindings/clock/zx2967*.h
2751 F:      include/dt-bindings/soc/zte,*.h
2752 F:      sound/soc/codecs/zx_aud96p22.c
2753 F:      sound/soc/zte/
2754
2755 ARM/ZYNQ ARCHITECTURE
2756 M:      Michal Simek <michal.simek@xilinx.com>
2757 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2758 S:      Supported
2759 W:      http://wiki.xilinx.com
2760 T:      git https://github.com/Xilinx/linux-xlnx.git
2761 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2762 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2763 F:      arch/arm/mach-zynq/
2764 F:      drivers/block/xsysace.c
2765 F:      drivers/clocksource/timer-cadence-ttc.c
2766 F:      drivers/cpuidle/cpuidle-zynq.c
2767 F:      drivers/edac/synopsys_edac.c
2768 F:      drivers/i2c/busses/i2c-cadence.c
2769 F:      drivers/i2c/busses/i2c-xiic.c
2770 F:      drivers/mmc/host/sdhci-of-arasan.c
2771 N:      zynq
2772 N:      xilinx
2773
2774 ARM64 PORT (AARCH64 ARCHITECTURE)
2775 M:      Catalin Marinas <catalin.marinas@arm.com>
2776 M:      Will Deacon <will@kernel.org>
2777 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2778 S:      Maintained
2779 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2780 F:      Documentation/arm64/
2781 F:      arch/arm64/
2782 F:      tools/testing/selftests/arm64/
2783 X:      arch/arm64/boot/dts/
2784
2785 AS3645A LED FLASH CONTROLLER DRIVER
2786 M:      Sakari Ailus <sakari.ailus@iki.fi>
2787 L:      linux-leds@vger.kernel.org
2788 S:      Maintained
2789 F:      drivers/leds/leds-as3645a.c
2790
2791 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2792 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2793 L:      linux-media@vger.kernel.org
2794 S:      Maintained
2795 T:      git git://linuxtv.org/media_tree.git
2796 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2797 F:      drivers/media/i2c/ak7375.c
2798
2799 ASAHI KASEI AK8974 DRIVER
2800 M:      Linus Walleij <linus.walleij@linaro.org>
2801 L:      linux-iio@vger.kernel.org
2802 S:      Supported
2803 W:      http://www.akm.com/
2804 F:      drivers/iio/magnetometer/ak8974.c
2805
2806 ASC7621 HARDWARE MONITOR DRIVER
2807 M:      George Joseph <george.joseph@fairview5.com>
2808 L:      linux-hwmon@vger.kernel.org
2809 S:      Maintained
2810 F:      Documentation/hwmon/asc7621.rst
2811 F:      drivers/hwmon/asc7621.c
2812
2813 ASPEED PINCTRL DRIVERS
2814 M:      Andrew Jeffery <andrew@aj.id.au>
2815 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2816 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2817 L:      linux-gpio@vger.kernel.org
2818 S:      Maintained
2819 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2820 F:      drivers/pinctrl/aspeed/
2821
2822 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2823 M:      Eddie James <eajames@linux.ibm.com>
2824 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2825 S:      Maintained
2826 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2827 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2828 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2829
2830 ASPEED VIDEO ENGINE DRIVER
2831 M:      Eddie James <eajames@linux.ibm.com>
2832 L:      linux-media@vger.kernel.org
2833 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2834 S:      Maintained
2835 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2836 F:      drivers/media/platform/aspeed-video.c
2837
2838 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2839 M:      Corentin Chary <corentin.chary@gmail.com>
2840 L:      acpi4asus-user@lists.sourceforge.net
2841 L:      platform-driver-x86@vger.kernel.org
2842 S:      Maintained
2843 W:      http://acpi4asus.sf.net
2844 F:      drivers/platform/x86/asus*.c
2845 F:      drivers/platform/x86/eeepc*.c
2846
2847 ASUS WIRELESS RADIO CONTROL DRIVER
2848 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2849 L:      platform-driver-x86@vger.kernel.org
2850 S:      Maintained
2851 F:      drivers/platform/x86/asus-wireless.c
2852
2853 ASYMMETRIC KEYS
2854 M:      David Howells <dhowells@redhat.com>
2855 L:      keyrings@vger.kernel.org
2856 S:      Maintained
2857 F:      Documentation/crypto/asymmetric-keys.txt
2858 F:      crypto/asymmetric_keys/
2859 F:      include/crypto/pkcs7.h
2860 F:      include/crypto/public_key.h
2861 F:      include/linux/verification.h
2862
2863 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2864 R:      Dan Williams <dan.j.williams@intel.com>
2865 S:      Odd fixes
2866 W:      http://sourceforge.net/projects/xscaleiop
2867 F:      Documentation/crypto/async-tx-api.txt
2868 F:      crypto/async_tx/
2869 F:      drivers/dma/
2870 F:      include/linux/async_tx.h
2871 F:      include/linux/dmaengine.h
2872
2873 AT24 EEPROM DRIVER
2874 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2875 L:      linux-i2c@vger.kernel.org
2876 S:      Maintained
2877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2878 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2879 F:      drivers/misc/eeprom/at24.c
2880
2881 ATA OVER ETHERNET (AOE) DRIVER
2882 M:      "Justin Sanders" <justin@coraid.com>
2883 S:      Supported
2884 W:      http://www.openaoe.org/
2885 F:      Documentation/admin-guide/aoe/
2886 F:      drivers/block/aoe/
2887
2888 ATHEROS 71XX/9XXX GPIO DRIVER
2889 M:      Alban Bedel <albeu@free.fr>
2890 S:      Maintained
2891 W:      https://github.com/AlbanBedel/linux
2892 T:      git git://github.com/AlbanBedel/linux
2893 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2894 F:      drivers/gpio/gpio-ath79.c
2895
2896 ATHEROS 71XX/9XXX USB PHY DRIVER
2897 M:      Alban Bedel <albeu@free.fr>
2898 S:      Maintained
2899 W:      https://github.com/AlbanBedel/linux
2900 T:      git git://github.com/AlbanBedel/linux
2901 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2902 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2903
2904 ATHEROS ATH GENERIC UTILITIES
2905 M:      Kalle Valo <kvalo@codeaurora.org>
2906 L:      linux-wireless@vger.kernel.org
2907 S:      Supported
2908 F:      drivers/net/wireless/ath/*
2909
2910 ATHEROS ATH5K WIRELESS DRIVER
2911 M:      Jiri Slaby <jirislaby@gmail.com>
2912 M:      Nick Kossifidis <mickflemm@gmail.com>
2913 M:      Luis Chamberlain <mcgrof@kernel.org>
2914 L:      linux-wireless@vger.kernel.org
2915 S:      Maintained
2916 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2917 F:      drivers/net/wireless/ath/ath5k/
2918
2919 ATHEROS ATH6KL WIRELESS DRIVER
2920 M:      Kalle Valo <kvalo@codeaurora.org>
2921 L:      linux-wireless@vger.kernel.org
2922 S:      Supported
2923 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2925 F:      drivers/net/wireless/ath/ath6kl/
2926
2927 ATI_REMOTE2 DRIVER
2928 M:      Ville Syrjala <syrjala@sci.fi>
2929 S:      Maintained
2930 F:      drivers/input/misc/ati_remote2.c
2931
2932 ATK0110 HWMON DRIVER
2933 M:      Luca Tettamanti <kronos.it@gmail.com>
2934 L:      linux-hwmon@vger.kernel.org
2935 S:      Maintained
2936 F:      drivers/hwmon/asus_atk0110.c
2937
2938 ATLX ETHERNET DRIVERS
2939 M:      Jay Cliburn <jcliburn@gmail.com>
2940 M:      Chris Snook <chris.snook@gmail.com>
2941 L:      netdev@vger.kernel.org
2942 S:      Maintained
2943 W:      http://sourceforge.net/projects/atl1
2944 W:      http://atl1.sourceforge.net
2945 F:      drivers/net/ethernet/atheros/
2946
2947 ATM
2948 M:      Chas Williams <3chas3@gmail.com>
2949 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2950 L:      netdev@vger.kernel.org
2951 S:      Maintained
2952 W:      http://linux-atm.sourceforge.net
2953 F:      drivers/atm/
2954 F:      include/linux/atm*
2955 F:      include/uapi/linux/atm*
2956
2957 ATMEL MACB ETHERNET DRIVER
2958 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2959 S:      Supported
2960 F:      drivers/net/ethernet/cadence/
2961
2962 ATMEL MAXTOUCH DRIVER
2963 M:      Nick Dyer <nick@shmanahar.org>
2964 S:      Maintained
2965 T:      git git://github.com/ndyer/linux.git
2966 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2967 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2968
2969 ATMEL WIRELESS DRIVER
2970 M:      Simon Kelley <simon@thekelleys.org.uk>
2971 L:      linux-wireless@vger.kernel.org
2972 S:      Maintained
2973 W:      http://www.thekelleys.org.uk/atmel
2974 W:      http://atmelwlandriver.sourceforge.net/
2975 F:      drivers/net/wireless/atmel/atmel*
2976
2977 ATOMIC INFRASTRUCTURE
2978 M:      Will Deacon <will@kernel.org>
2979 M:      Peter Zijlstra <peterz@infradead.org>
2980 R:      Boqun Feng <boqun.feng@gmail.com>
2981 L:      linux-kernel@vger.kernel.org
2982 S:      Maintained
2983 F:      arch/*/include/asm/atomic*.h
2984 F:      include/*/atomic*.h
2985 F:      scripts/atomic/
2986
2987 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2988 M:      Bradley Grove <linuxdrivers@attotech.com>
2989 L:      linux-scsi@vger.kernel.org
2990 S:      Supported
2991 W:      http://www.attotech.com
2992 F:      drivers/scsi/esas2r
2993
2994 ATUSB IEEE 802.15.4 RADIO DRIVER
2995 M:      Stefan Schmidt <stefan@datenfreihafen.org>
2996 L:      linux-wpan@vger.kernel.org
2997 S:      Maintained
2998 F:      drivers/net/ieee802154/at86rf230.h
2999 F:      drivers/net/ieee802154/atusb.c
3000 F:      drivers/net/ieee802154/atusb.h
3001
3002 AUDIT SUBSYSTEM
3003 M:      Paul Moore <paul@paul-moore.com>
3004 M:      Eric Paris <eparis@redhat.com>
3005 L:      linux-audit@redhat.com (moderated for non-subscribers)
3006 S:      Supported
3007 W:      https://github.com/linux-audit
3008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3009 F:      include/linux/audit.h
3010 F:      include/uapi/linux/audit.h
3011 F:      kernel/audit*
3012
3013 AUXILIARY DISPLAY DRIVERS
3014 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3015 S:      Maintained
3016 F:      drivers/auxdisplay/
3017 F:      include/linux/cfag12864b.h
3018
3019 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3020 M:      Andreas Klinger <ak@it-klinger.de>
3021 L:      linux-iio@vger.kernel.org
3022 S:      Maintained
3023 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3024 F:      drivers/iio/adc/hx711.c
3025
3026 AX.25 NETWORK LAYER
3027 M:      Ralf Baechle <ralf@linux-mips.org>
3028 L:      linux-hams@vger.kernel.org
3029 S:      Maintained
3030 W:      http://www.linux-ax25.org/
3031 F:      include/net/ax25.h
3032 F:      include/uapi/linux/ax25.h
3033 F:      net/ax25/
3034
3035 AXENTIA ARM DEVICES
3036 M:      Peter Rosin <peda@axentia.se>
3037 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3038 S:      Maintained
3039 F:      arch/arm/boot/dts/at91-linea.dtsi
3040 F:      arch/arm/boot/dts/at91-natte.dtsi
3041 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3042 F:      arch/arm/boot/dts/at91-tse850-3.dts
3043
3044 AXENTIA ASOC DRIVERS
3045 M:      Peter Rosin <peda@axentia.se>
3046 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3047 S:      Maintained
3048 F:      Documentation/devicetree/bindings/sound/axentia,*
3049 F:      sound/soc/atmel/tse850-pcm5142.c
3050
3051 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3052 M:      Nuno Sá <nuno.sa@analog.com>
3053 L:      linux-hwmon@vger.kernel.org
3054 S:      Supported
3055 W:      http://ez.analog.com/community/linux-device-drivers
3056 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3057 F:      drivers/hwmon/axi-fan-control.c
3058
3059 AXXIA I2C CONTROLLER
3060 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3061 L:      linux-i2c@vger.kernel.org
3062 S:      Maintained
3063 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3064 F:      drivers/i2c/busses/i2c-axxia.c
3065
3066 AZ6007 DVB DRIVER
3067 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3068 L:      linux-media@vger.kernel.org
3069 S:      Maintained
3070 W:      https://linuxtv.org
3071 T:      git git://linuxtv.org/media_tree.git
3072 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3073
3074 AZTECH FM RADIO RECEIVER DRIVER
3075 M:      Hans Verkuil <hverkuil@xs4all.nl>
3076 L:      linux-media@vger.kernel.org
3077 S:      Maintained
3078 W:      https://linuxtv.org
3079 T:      git git://linuxtv.org/media_tree.git
3080 F:      drivers/media/radio/radio-aztech*
3081
3082 B43 WIRELESS DRIVER
3083 L:      linux-wireless@vger.kernel.org
3084 L:      b43-dev@lists.infradead.org
3085 S:      Odd Fixes
3086 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3087 F:      drivers/net/wireless/broadcom/b43/
3088
3089 B43LEGACY WIRELESS DRIVER
3090 M:      Larry Finger <Larry.Finger@lwfinger.net>
3091 L:      linux-wireless@vger.kernel.org
3092 L:      b43-dev@lists.infradead.org
3093 S:      Maintained
3094 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3095 F:      drivers/net/wireless/broadcom/b43legacy/
3096
3097 BACKLIGHT CLASS/SUBSYSTEM
3098 M:      Lee Jones <lee.jones@linaro.org>
3099 M:      Daniel Thompson <daniel.thompson@linaro.org>
3100 M:      Jingoo Han <jingoohan1@gmail.com>
3101 L:      dri-devel@lists.freedesktop.org
3102 S:      Maintained
3103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3104 F:      Documentation/ABI/stable/sysfs-class-backlight
3105 F:      Documentation/ABI/testing/sysfs-class-backlight
3106 F:      Documentation/devicetree/bindings/leds/backlight
3107 F:      drivers/video/backlight/
3108 F:      include/linux/backlight.h
3109 F:      include/linux/pwm_backlight.h
3110
3111 BATMAN ADVANCED
3112 M:      Marek Lindner <mareklindner@neomailbox.ch>
3113 M:      Simon Wunderlich <sw@simonwunderlich.de>
3114 M:      Antonio Quartulli <a@unstable.cc>
3115 M:      Sven Eckelmann <sven@narfation.org>
3116 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3117 S:      Maintained
3118 W:      https://www.open-mesh.org/
3119 Q:      https://patchwork.open-mesh.org/project/batman/list/
3120 B:      https://www.open-mesh.org/projects/batman-adv/issues
3121 C:      irc://chat.freenode.net/batman
3122 T:      git https://git.open-mesh.org/linux-merge.git
3123 F:      Documentation/ABI/obsolete/sysfs-class-net-batman-adv
3124 F:      Documentation/ABI/obsolete/sysfs-class-net-mesh
3125 F:      Documentation/networking/batman-adv.rst
3126 F:      include/uapi/linux/batadv_packet.h
3127 F:      include/uapi/linux/batman_adv.h
3128 F:      net/batman-adv/
3129
3130 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3131 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3132 L:      linux-hams@vger.kernel.org
3133 S:      Maintained
3134 W:      http://www.baycom.org/~tom/ham/ham.html
3135 F:      drivers/net/hamradio/baycom*
3136
3137 BCACHE (BLOCK LAYER CACHE)
3138 M:      Coly Li <colyli@suse.de>
3139 M:      Kent Overstreet <kent.overstreet@gmail.com>
3140 L:      linux-bcache@vger.kernel.org
3141 S:      Maintained
3142 W:      http://bcache.evilpiepirate.org
3143 C:      irc://irc.oftc.net/bcache
3144 F:      drivers/md/bcache/
3145
3146 BDISP ST MEDIA DRIVER
3147 M:      Fabien Dessenne <fabien.dessenne@st.com>
3148 L:      linux-media@vger.kernel.org
3149 S:      Supported
3150 W:      https://linuxtv.org
3151 T:      git git://linuxtv.org/media_tree.git
3152 F:      drivers/media/platform/sti/bdisp
3153
3154 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3155 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3156 L:      netdev@vger.kernel.org
3157 S:      Maintained
3158 F:      drivers/net/ethernet/ec_bhf.c
3159
3160 BEFS FILE SYSTEM
3161 M:      Luis de Bethencourt <luisbg@kernel.org>
3162 M:      Salah Triki <salah.triki@gmail.com>
3163 S:      Maintained
3164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3165 F:      Documentation/filesystems/befs.rst
3166 F:      fs/befs/
3167
3168 BFQ I/O SCHEDULER
3169 M:      Paolo Valente <paolo.valente@linaro.org>
3170 M:      Jens Axboe <axboe@kernel.dk>
3171 L:      linux-block@vger.kernel.org
3172 S:      Maintained
3173 F:      Documentation/block/bfq-iosched.rst
3174 F:      block/bfq-*
3175
3176 BFS FILE SYSTEM
3177 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3178 S:      Maintained
3179 F:      Documentation/filesystems/bfs.rst
3180 F:      fs/bfs/
3181 F:      include/uapi/linux/bfs_fs.h
3182
3183 BLINKM RGB LED DRIVER
3184 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3185 S:      Maintained
3186 F:      drivers/leds/leds-blinkm.c
3187
3188 BLOCK LAYER
3189 M:      Jens Axboe <axboe@kernel.dk>
3190 L:      linux-block@vger.kernel.org
3191 S:      Maintained
3192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3193 F:      block/
3194 F:      drivers/block/
3195 F:      kernel/trace/blktrace.c
3196 F:      lib/sbitmap.c
3197
3198 BLOCK2MTD DRIVER
3199 M:      Joern Engel <joern@lazybastard.org>
3200 L:      linux-mtd@lists.infradead.org
3201 S:      Maintained
3202 F:      drivers/mtd/devices/block2mtd.c
3203
3204 BLUETOOTH DRIVERS
3205 M:      Marcel Holtmann <marcel@holtmann.org>
3206 M:      Johan Hedberg <johan.hedberg@gmail.com>
3207 L:      linux-bluetooth@vger.kernel.org
3208 S:      Maintained
3209 W:      http://www.bluez.org/
3210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3212 F:      drivers/bluetooth/
3213
3214 BLUETOOTH SUBSYSTEM
3215 M:      Marcel Holtmann <marcel@holtmann.org>
3216 M:      Johan Hedberg <johan.hedberg@gmail.com>
3217 L:      linux-bluetooth@vger.kernel.org
3218 S:      Maintained
3219 W:      http://www.bluez.org/
3220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3222 F:      include/net/bluetooth/
3223 F:      net/bluetooth/
3224
3225 BONDING DRIVER
3226 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3227 M:      Veaceslav Falico <vfalico@gmail.com>
3228 M:      Andy Gospodarek <andy@greyhouse.net>
3229 L:      netdev@vger.kernel.org
3230 S:      Supported
3231 W:      http://sourceforge.net/projects/bonding/
3232 F:      drivers/net/bonding/
3233 F:      include/uapi/linux/if_bonding.h
3234
3235 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3236 M:      Dan Robertson <dan@dlrobertson.com>
3237 L:      linux-iio@vger.kernel.org
3238 S:      Maintained
3239 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3240 F:      drivers/iio/accel/bma400*
3241
3242 BPF (Safe dynamic programs and tools)
3243 M:      Alexei Starovoitov <ast@kernel.org>
3244 M:      Daniel Borkmann <daniel@iogearbox.net>
3245 R:      Martin KaFai Lau <kafai@fb.com>
3246 R:      Song Liu <songliubraving@fb.com>
3247 R:      Yonghong Song <yhs@fb.com>
3248 R:      Andrii Nakryiko <andriin@fb.com>
3249 R:      John Fastabend <john.fastabend@gmail.com>
3250 R:      KP Singh <kpsingh@chromium.org>
3251 L:      netdev@vger.kernel.org
3252 L:      bpf@vger.kernel.org
3253 S:      Supported
3254 Q:      https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
3255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3257 F:      Documentation/bpf/
3258 F:      Documentation/networking/filter.rst
3259 F:      arch/*/net/*
3260 F:      include/linux/bpf*
3261 F:      include/linux/filter.h
3262 F:      include/trace/events/xdp.h
3263 F:      include/uapi/linux/bpf*
3264 F:      include/uapi/linux/filter.h
3265 F:      kernel/bpf/
3266 F:      kernel/trace/bpf_trace.c
3267 F:      lib/test_bpf.c
3268 F:      net/bpf/
3269 F:      net/core/filter.c
3270 F:      net/sched/act_bpf.c
3271 F:      net/sched/cls_bpf.c
3272 F:      samples/bpf/
3273 F:      tools/bpf/
3274 F:      tools/lib/bpf/
3275 F:      tools/testing/selftests/bpf/
3276 N:      bpf
3277 K:      bpf
3278
3279 BPF JIT for ARM
3280 M:      Shubham Bansal <illusionist.neo@gmail.com>
3281 L:      netdev@vger.kernel.org
3282 L:      bpf@vger.kernel.org
3283 S:      Maintained
3284 F:      arch/arm/net/
3285
3286 BPF JIT for ARM64
3287 M:      Daniel Borkmann <daniel@iogearbox.net>
3288 M:      Alexei Starovoitov <ast@kernel.org>
3289 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3290 L:      netdev@vger.kernel.org
3291 L:      bpf@vger.kernel.org
3292 S:      Supported
3293 F:      arch/arm64/net/
3294
3295 BPF JIT for MIPS (32-BIT AND 64-BIT)
3296 M:      Paul Burton <paulburton@kernel.org>
3297 L:      netdev@vger.kernel.org
3298 L:      bpf@vger.kernel.org
3299 S:      Maintained
3300 F:      arch/mips/net/
3301
3302 BPF JIT for NFP NICs
3303 M:      Jakub Kicinski <kuba@kernel.org>
3304 L:      netdev@vger.kernel.org
3305 L:      bpf@vger.kernel.org
3306 S:      Supported
3307 F:      drivers/net/ethernet/netronome/nfp/bpf/
3308
3309 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3310 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3311 M:      Sandipan Das <sandipan@linux.ibm.com>
3312 L:      netdev@vger.kernel.org
3313 L:      bpf@vger.kernel.org
3314 S:      Maintained
3315 F:      arch/powerpc/net/
3316
3317 BPF JIT for RISC-V (32-bit)
3318 M:      Luke Nelson <luke.r.nels@gmail.com>
3319 M:      Xi Wang <xi.wang@gmail.com>
3320 L:      netdev@vger.kernel.org
3321 L:      bpf@vger.kernel.org
3322 S:      Maintained
3323 F:      arch/riscv/net/
3324 X:      arch/riscv/net/bpf_jit_comp64.c
3325
3326 BPF JIT for RISC-V (64-bit)
3327 M:      Björn Töpel <bjorn.topel@gmail.com>
3328 L:      netdev@vger.kernel.org
3329 L:      bpf@vger.kernel.org
3330 S:      Maintained
3331 F:      arch/riscv/net/
3332 X:      arch/riscv/net/bpf_jit_comp32.c
3333
3334 BPF JIT for S390
3335 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3336 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
3337 M:      Vasily Gorbik <gor@linux.ibm.com>
3338 L:      netdev@vger.kernel.org
3339 L:      bpf@vger.kernel.org
3340 S:      Maintained
3341 F:      arch/s390/net/
3342 X:      arch/s390/net/pnet.c
3343
3344 BPF JIT for SPARC (32-BIT AND 64-BIT)
3345 M:      David S. Miller <davem@davemloft.net>
3346 L:      netdev@vger.kernel.org
3347 L:      bpf@vger.kernel.org
3348 S:      Maintained
3349 F:      arch/sparc/net/
3350
3351 BPF JIT for X86 32-BIT
3352 M:      Wang YanQing <udknight@gmail.com>
3353 L:      netdev@vger.kernel.org
3354 L:      bpf@vger.kernel.org
3355 S:      Maintained
3356 F:      arch/x86/net/bpf_jit_comp32.c
3357
3358 BPF JIT for X86 64-BIT
3359 M:      Alexei Starovoitov <ast@kernel.org>
3360 M:      Daniel Borkmann <daniel@iogearbox.net>
3361 L:      netdev@vger.kernel.org
3362 L:      bpf@vger.kernel.org
3363 S:      Supported
3364 F:      arch/x86/net/
3365 X:      arch/x86/net/bpf_jit_comp32.c
3366
3367 BROADCOM B44 10/100 ETHERNET DRIVER
3368 M:      Michael Chan <michael.chan@broadcom.com>
3369 L:      netdev@vger.kernel.org
3370 S:      Supported
3371 F:      drivers/net/ethernet/broadcom/b44.*
3372
3373 BROADCOM B53 ETHERNET SWITCH DRIVER
3374 M:      Florian Fainelli <f.fainelli@gmail.com>
3375 L:      netdev@vger.kernel.org
3376 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3377 S:      Supported
3378 F:      drivers/net/dsa/b53/*
3379 F:      include/linux/platform_data/b53.h
3380
3381 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3382 M:      Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
3383 L:      bcm-kernel-feedback-list@broadcom.com
3384 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3385 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3386 S:      Maintained
3387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3388 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3389 F:      drivers/pci/controller/pcie-brcmstb.c
3390 F:      drivers/staging/vc04_services
3391 N:      bcm2711
3392 N:      bcm2835
3393
3394 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3395 M:      Florian Fainelli <f.fainelli@gmail.com>
3396 M:      Ray Jui <rjui@broadcom.com>
3397 M:      Scott Branden <sbranden@broadcom.com>
3398 M:      bcm-kernel-feedback-list@broadcom.com
3399 S:      Maintained
3400 T:      git git://github.com/broadcom/mach-bcm
3401 F:      arch/arm/mach-bcm/
3402 N:      bcm281*
3403 N:      bcm113*
3404 N:      bcm216*
3405 N:      kona
3406
3407 BROADCOM BCM47XX MIPS ARCHITECTURE
3408 M:      Hauke Mehrtens <hauke@hauke-m.de>
3409 M:      Rafał Miłecki <zajec5@gmail.com>
3410 L:      linux-mips@vger.kernel.org
3411 S:      Maintained
3412 F:      Documentation/devicetree/bindings/mips/brcm/
3413 F:      arch/mips/bcm47xx/*
3414 F:      arch/mips/include/asm/mach-bcm47xx/*
3415
3416 BROADCOM BCM5301X ARM ARCHITECTURE
3417 M:      Hauke Mehrtens <hauke@hauke-m.de>
3418 M:      Rafał Miłecki <zajec5@gmail.com>
3419 M:      bcm-kernel-feedback-list@broadcom.com
3420 L:      linux-arm-kernel@lists.infradead.org
3421 S:      Maintained
3422 F:      arch/arm/boot/dts/bcm470*
3423 F:      arch/arm/boot/dts/bcm5301x*.dtsi
3424 F:      arch/arm/boot/dts/bcm953012*
3425 F:      arch/arm/mach-bcm/bcm_5301x.c
3426
3427 BROADCOM BCM53573 ARM ARCHITECTURE
3428 M:      Rafał Miłecki <rafal@milecki.pl>
3429 L:      bcm-kernel-feedback-list@broadcom.com
3430 L:      linux-arm-kernel@lists.infradead.org
3431 S:      Maintained
3432 F:      arch/arm/boot/dts/bcm47189*
3433 F:      arch/arm/boot/dts/bcm53573*
3434
3435 BROADCOM BCM63XX ARM ARCHITECTURE
3436 M:      Florian Fainelli <f.fainelli@gmail.com>
3437 M:      bcm-kernel-feedback-list@broadcom.com
3438 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3439 S:      Maintained
3440 T:      git git://github.com/broadcom/stblinux.git
3441 N:      bcm63xx
3442
3443 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3444 M:      Kevin Cernekee <cernekee@gmail.com>
3445 L:      linux-usb@vger.kernel.org
3446 S:      Maintained
3447 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3448
3449 BROADCOM BCM7XXX ARM ARCHITECTURE
3450 M:      Florian Fainelli <f.fainelli@gmail.com>
3451 M:      bcm-kernel-feedback-list@broadcom.com
3452 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3453 S:      Maintained
3454 T:      git git://github.com/broadcom/stblinux.git
3455 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3456 F:      arch/arm/boot/dts/bcm7*.dts*
3457 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3458 F:      arch/arm/mach-bcm/*brcmstb*
3459 F:      arch/arm/mm/cache-b15-rac.c
3460 F:      drivers/bus/brcmstb_gisb.c
3461 F:      drivers/pci/controller/pcie-brcmstb.c
3462 N:      brcmstb
3463
3464 BROADCOM BMIPS CPUFREQ DRIVER
3465 M:      Markus Mayer <mmayer@broadcom.com>
3466 M:      bcm-kernel-feedback-list@broadcom.com
3467 L:      linux-pm@vger.kernel.org
3468 S:      Maintained
3469 F:      drivers/cpufreq/bmips-cpufreq.c
3470
3471 BROADCOM BMIPS MIPS ARCHITECTURE
3472 M:      Florian Fainelli <f.fainelli@gmail.com>
3473 L:      bcm-kernel-feedback-list@broadcom.com
3474 L:      linux-mips@vger.kernel.org
3475 S:      Maintained
3476 T:      git git://github.com/broadcom/stblinux.git
3477 F:      arch/mips/bmips/*
3478 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3479 F:      arch/mips/include/asm/mach-bmips/*
3480 F:      arch/mips/kernel/*bmips*
3481 F:      drivers/irqchip/irq-bcm63*
3482 F:      drivers/irqchip/irq-bcm7*
3483 F:      drivers/irqchip/irq-brcmstb*
3484 F:      include/linux/bcm963xx_nvram.h
3485 F:      include/linux/bcm963xx_tag.h
3486
3487 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3488 M:      Rasesh Mody <rmody@marvell.com>
3489 M:      GR-Linux-NIC-Dev@marvell.com
3490 L:      netdev@vger.kernel.org
3491 S:      Supported
3492 F:      drivers/net/ethernet/broadcom/bnx2.*
3493 F:      drivers/net/ethernet/broadcom/bnx2_*
3494
3495 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3496 M:      QLogic-Storage-Upstream@qlogic.com
3497 L:      linux-scsi@vger.kernel.org
3498 S:      Supported
3499 F:      drivers/scsi/bnx2fc/
3500
3501 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3502 M:      QLogic-Storage-Upstream@qlogic.com
3503 L:      linux-scsi@vger.kernel.org
3504 S:      Supported
3505 F:      drivers/scsi/bnx2i/
3506
3507 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3508 M:      Ariel Elior <aelior@marvell.com>
3509 M:      Sudarsana Kalluru <skalluru@marvell.com>
3510 M:      GR-everest-linux-l2@marvell.com
3511 L:      netdev@vger.kernel.org
3512 S:      Supported
3513 F:      drivers/net/ethernet/broadcom/bnx2x/
3514
3515 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3516 M:      Michael Chan <michael.chan@broadcom.com>
3517 L:      netdev@vger.kernel.org
3518 S:      Supported
3519 F:      drivers/net/ethernet/broadcom/bnxt/
3520
3521 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3522 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
3523 M:      Franky Lin <franky.lin@broadcom.com>
3524 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3525 M:      Chi-Hsien Lin <chi-hsien.lin@cypress.com>
3526 M:      Wright Feng <wright.feng@cypress.com>
3527 L:      linux-wireless@vger.kernel.org
3528 L:      brcm80211-dev-list.pdl@broadcom.com
3529 L:      brcm80211-dev-list@cypress.com
3530 S:      Supported
3531 F:      drivers/net/wireless/broadcom/brcm80211/
3532
3533 BROADCOM BRCMSTB GPIO DRIVER
3534 M:      Gregory Fong <gregory.0xf0@gmail.com>
3535 L:      bcm-kernel-feedback-list@broadcom.com
3536 S:      Supported
3537 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3538 F:      drivers/gpio/gpio-brcmstb.c
3539
3540 BROADCOM BRCMSTB I2C DRIVER
3541 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3542 L:      linux-i2c@vger.kernel.org
3543 L:      bcm-kernel-feedback-list@broadcom.com
3544 S:      Supported
3545 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3546 F:      drivers/i2c/busses/i2c-brcmstb.c
3547
3548 BROADCOM BRCMSTB USB EHCI DRIVER
3549 M:      Al Cooper <alcooperx@gmail.com>
3550 L:      linux-usb@vger.kernel.org
3551 L:      bcm-kernel-feedback-list@broadcom.com
3552 S:      Maintained
3553 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3554 F:      drivers/usb/host/ehci-brcm.*
3555
3556 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3557 M:      Al Cooper <alcooperx@gmail.com>
3558 L:      linux-kernel@vger.kernel.org
3559 L:      bcm-kernel-feedback-list@broadcom.com
3560 S:      Maintained
3561 F:      drivers/phy/broadcom/phy-brcm-usb*
3562
3563 BROADCOM GENET ETHERNET DRIVER
3564 M:      Doug Berger <opendmb@gmail.com>
3565 M:      Florian Fainelli <f.fainelli@gmail.com>
3566 L:      bcm-kernel-feedback-list@broadcom.com
3567 L:      netdev@vger.kernel.org
3568 S:      Supported
3569 F:      drivers/net/ethernet/broadcom/genet/
3570
3571 BROADCOM IPROC ARM ARCHITECTURE
3572 M:      Ray Jui <rjui@broadcom.com>
3573 M:      Scott Branden <sbranden@broadcom.com>
3574 M:      bcm-kernel-feedback-list@broadcom.com
3575 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3576 S:      Maintained
3577 T:      git git://github.com/broadcom/cygnus-linux.git
3578 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3579 F:      arch/arm64/boot/dts/broadcom/stingray/*
3580 F:      drivers/clk/bcm/clk-ns*
3581 F:      drivers/clk/bcm/clk-sr*
3582 F:      drivers/pinctrl/bcm/pinctrl-ns*
3583 F:      include/dt-bindings/clock/bcm-sr*
3584 N:      iproc
3585 N:      cygnus
3586 N:      bcm[-_]nsp
3587 N:      bcm9113*
3588 N:      bcm9583*
3589 N:      bcm9585*
3590 N:      bcm9586*
3591 N:      bcm988312
3592 N:      bcm113*
3593 N:      bcm583*
3594 N:      bcm585*
3595 N:      bcm586*
3596 N:      bcm88312
3597 N:      hr2
3598 N:      stingray
3599
3600 BROADCOM KONA GPIO DRIVER
3601 M:      Ray Jui <rjui@broadcom.com>
3602 L:      bcm-kernel-feedback-list@broadcom.com
3603 S:      Supported
3604 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3605 F:      drivers/gpio/gpio-bcm-kona.c
3606
3607 BROADCOM NETXTREME-E ROCE DRIVER
3608 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3609 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3610 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3611 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3612 L:      linux-rdma@vger.kernel.org
3613 S:      Supported
3614 W:      http://www.broadcom.com
3615 F:      drivers/infiniband/hw/bnxt_re/
3616 F:      include/uapi/rdma/bnxt_re-abi.h
3617
3618 BROADCOM NVRAM DRIVER
3619 M:      Rafał Miłecki <zajec5@gmail.com>
3620 L:      linux-mips@vger.kernel.org
3621 S:      Maintained
3622 F:      drivers/firmware/broadcom/*
3623
3624 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3625 M:      Rafał Miłecki <zajec5@gmail.com>
3626 L:      linux-wireless@vger.kernel.org
3627 S:      Maintained
3628 F:      drivers/bcma/
3629 F:      include/linux/bcma/
3630
3631 BROADCOM SPI DRIVER
3632 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3633 M:      bcm-kernel-feedback-list@broadcom.com
3634 S:      Maintained
3635 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3636 F:      drivers/spi/spi-bcm-qspi.*
3637 F:      drivers/spi/spi-brcmstb-qspi.c
3638 F:      drivers/spi/spi-iproc-qspi.c
3639
3640 BROADCOM STB AVS CPUFREQ DRIVER
3641 M:      Markus Mayer <mmayer@broadcom.com>
3642 M:      bcm-kernel-feedback-list@broadcom.com
3643 L:      linux-pm@vger.kernel.org
3644 S:      Maintained
3645 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3646 F:      drivers/cpufreq/brcmstb*
3647
3648 BROADCOM STB AVS TMON DRIVER
3649 M:      Markus Mayer <mmayer@broadcom.com>
3650 M:      bcm-kernel-feedback-list@broadcom.com
3651 L:      linux-pm@vger.kernel.org
3652 S:      Maintained
3653 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3654 F:      drivers/thermal/broadcom/brcmstb*
3655
3656 BROADCOM STB DPFE DRIVER
3657 M:      Markus Mayer <mmayer@broadcom.com>
3658 M:      bcm-kernel-feedback-list@broadcom.com
3659 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3660 S:      Maintained
3661 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3662 F:      drivers/memory/brcmstb_dpfe.c
3663
3664 BROADCOM STB NAND FLASH DRIVER
3665 M:      Brian Norris <computersforpeace@gmail.com>
3666 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3667 L:      linux-mtd@lists.infradead.org
3668 L:      bcm-kernel-feedback-list@broadcom.com
3669 S:      Maintained
3670 F:      drivers/mtd/nand/raw/brcmnand/
3671
3672 BROADCOM SYSTEMPORT ETHERNET DRIVER
3673 M:      Florian Fainelli <f.fainelli@gmail.com>
3674 L:      bcm-kernel-feedback-list@broadcom.com
3675 L:      netdev@vger.kernel.org
3676 S:      Supported
3677 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3678
3679 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3680 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3681 M:      Prashant Sreedharan <prashant@broadcom.com>
3682 M:      Michael Chan <mchan@broadcom.com>
3683 L:      netdev@vger.kernel.org
3684 S:      Supported
3685 F:      drivers/net/ethernet/broadcom/tg3.*
3686
3687 BROCADE BFA FC SCSI DRIVER
3688 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3689 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3690 L:      linux-scsi@vger.kernel.org
3691 S:      Supported
3692 F:      drivers/scsi/bfa/
3693
3694 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3695 M:      Rasesh Mody <rmody@marvell.com>
3696 M:      Sudarsana Kalluru <skalluru@marvell.com>
3697 M:      GR-Linux-NIC-Dev@marvell.com
3698 L:      netdev@vger.kernel.org
3699 S:      Supported
3700 F:      drivers/net/ethernet/brocade/bna/
3701
3702 BSG (block layer generic sg v4 driver)
3703 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3704 L:      linux-scsi@vger.kernel.org
3705 S:      Supported
3706 F:      block/bsg.c
3707 F:      include/linux/bsg.h
3708 F:      include/uapi/linux/bsg.h
3709
3710 BT87X AUDIO DRIVER
3711 M:      Clemens Ladisch <clemens@ladisch.de>
3712 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3713 S:      Maintained
3714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3715 F:      Documentation/sound/cards/bt87x.rst
3716 F:      sound/pci/bt87x.c
3717
3718 BT8XXGPIO DRIVER
3719 M:      Michael Buesch <m@bues.ch>
3720 S:      Maintained
3721 W:      http://bu3sch.de/btgpio.php
3722 F:      drivers/gpio/gpio-bt8xx.c
3723
3724 BTRFS FILE SYSTEM
3725 M:      Chris Mason <clm@fb.com>
3726 M:      Josef Bacik <josef@toxicpanda.com>
3727 M:      David Sterba <dsterba@suse.com>
3728 L:      linux-btrfs@vger.kernel.org
3729 S:      Maintained
3730 W:      http://btrfs.wiki.kernel.org/
3731 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3733 F:      Documentation/filesystems/btrfs.rst
3734 F:      fs/btrfs/
3735 F:      include/linux/btrfs*
3736 F:      include/uapi/linux/btrfs*
3737
3738 BTTV VIDEO4LINUX DRIVER
3739 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3740 L:      linux-media@vger.kernel.org
3741 S:      Odd fixes
3742 W:      https://linuxtv.org
3743 T:      git git://linuxtv.org/media_tree.git
3744 F:      Documentation/driver-api/media/drivers/bttv*
3745 F:      drivers/media/pci/bt8xx/bttv*
3746
3747 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3748 M:      Chanwoo Choi <cw00.choi@samsung.com>
3749 L:      linux-pm@vger.kernel.org
3750 L:      linux-samsung-soc@vger.kernel.org
3751 S:      Maintained
3752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3753 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3754 F:      drivers/devfreq/exynos-bus.c
3755
3756 BUSLOGIC SCSI DRIVER
3757 M:      Khalid Aziz <khalid@gonehiking.org>
3758 L:      linux-scsi@vger.kernel.org
3759 S:      Maintained
3760 F:      drivers/scsi/BusLogic.*
3761 F:      drivers/scsi/FlashPoint.*
3762
3763 C-MEDIA CMI8788 DRIVER
3764 M:      Clemens Ladisch <clemens@ladisch.de>
3765 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3766 S:      Maintained
3767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3768 F:      sound/pci/oxygen/
3769
3770 C-SKY ARCHITECTURE
3771 M:      Guo Ren <guoren@kernel.org>
3772 L:      linux-csky@vger.kernel.org
3773 S:      Supported
3774 T:      git https://github.com/c-sky/csky-linux.git
3775 F:      Documentation/devicetree/bindings/csky/
3776 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3777 F:      Documentation/devicetree/bindings/timer/csky,*
3778 F:      arch/csky/
3779 F:      drivers/clocksource/timer-gx6605s.c
3780 F:      drivers/clocksource/timer-mp-csky.c
3781 F:      drivers/irqchip/irq-csky-*
3782 N:      csky
3783 K:      csky
3784
3785 C6X ARCHITECTURE
3786 M:      Mark Salter <msalter@redhat.com>
3787 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3788 L:      linux-c6x-dev@linux-c6x.org
3789 S:      Maintained
3790 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3791 F:      arch/c6x/
3792
3793 CA8210 IEEE-802.15.4 RADIO DRIVER
3794 M:      Harry Morris <h.morris@cascoda.com>
3795 L:      linux-wpan@vger.kernel.org
3796 S:      Maintained
3797 W:      https://github.com/Cascoda/ca8210-linux.git
3798 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3799 F:      drivers/net/ieee802154/ca8210.c
3800
3801 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3802 M:      David Howells <dhowells@redhat.com>
3803 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3804 S:      Supported
3805 F:      Documentation/filesystems/caching/cachefiles.rst
3806 F:      fs/cachefiles/
3807
3808 CADENCE MIPI-CSI2 BRIDGES
3809 M:      Maxime Ripard <mripard@kernel.org>
3810 L:      linux-media@vger.kernel.org
3811 S:      Maintained
3812 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3813 F:      drivers/media/platform/cadence/cdns-csi2*
3814
3815 CADENCE NAND DRIVER
3816 L:      linux-mtd@lists.infradead.org
3817 S:      Orphan
3818 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3819 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3820
3821 CADET FM/AM RADIO RECEIVER DRIVER
3822 M:      Hans Verkuil <hverkuil@xs4all.nl>
3823 L:      linux-media@vger.kernel.org
3824 S:      Maintained
3825 W:      https://linuxtv.org
3826 T:      git git://linuxtv.org/media_tree.git
3827 F:      drivers/media/radio/radio-cadet*
3828
3829 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3830 M:      Jonathan Corbet <corbet@lwn.net>
3831 L:      linux-media@vger.kernel.org
3832 S:      Maintained
3833 T:      git git://linuxtv.org/media_tree.git
3834 F:      Documentation/admin-guide/media/cafe_ccic*
3835 F:      drivers/media/platform/marvell-ccic/
3836
3837 CAIF NETWORK LAYER
3838 L:      netdev@vger.kernel.org
3839 S:      Orphan
3840 F:      Documentation/networking/caif/
3841 F:      drivers/net/caif/
3842 F:      include/net/caif/
3843 F:      include/uapi/linux/caif/
3844 F:      net/caif/
3845
3846 CAKE QDISC
3847 M:      Toke Høiland-Jørgensen <toke@toke.dk>
3848 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
3849 S:      Maintained
3850 F:      net/sched/sch_cake.c
3851
3852 CAN NETWORK DRIVERS
3853 M:      Wolfgang Grandegger <wg@grandegger.com>
3854 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3855 L:      linux-can@vger.kernel.org
3856 S:      Maintained
3857 W:      https://github.com/linux-can
3858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3860 F:      Documentation/devicetree/bindings/net/can/
3861 F:      drivers/net/can/
3862 F:      include/linux/can/dev.h
3863 F:      include/linux/can/led.h
3864 F:      include/linux/can/platform/
3865 F:      include/linux/can/rx-offload.h
3866 F:      include/uapi/linux/can/error.h
3867 F:      include/uapi/linux/can/netlink.h
3868 F:      include/uapi/linux/can/vxcan.h
3869
3870 CAN NETWORK LAYER
3871 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3872 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3873 L:      linux-can@vger.kernel.org
3874 S:      Maintained
3875 W:      https://github.com/linux-can
3876 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3878 F:      Documentation/networking/can.rst
3879 F:      include/linux/can/core.h
3880 F:      include/linux/can/skb.h
3881 F:      include/net/netns/can.h
3882 F:      include/uapi/linux/can.h
3883 F:      include/uapi/linux/can/bcm.h
3884 F:      include/uapi/linux/can/gw.h
3885 F:      include/uapi/linux/can/raw.h
3886 F:      net/can/
3887
3888 CAN-J1939 NETWORK LAYER
3889 M:      Robin van der Gracht <robin@protonic.nl>
3890 M:      Oleksij Rempel <o.rempel@pengutronix.de>
3891 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
3892 L:      linux-can@vger.kernel.org
3893 S:      Maintained
3894 F:      Documentation/networking/j1939.rst
3895 F:      include/uapi/linux/can/j1939.h
3896 F:      net/can/j1939/
3897
3898 CAPABILITIES
3899 M:      Serge Hallyn <serge@hallyn.com>
3900 L:      linux-security-module@vger.kernel.org
3901 S:      Supported
3902 F:      include/linux/capability.h
3903 F:      include/uapi/linux/capability.h
3904 F:      kernel/capability.c
3905 F:      security/commoncap.c
3906
3907 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3908 M:      Kevin Tsai <ktsai@capellamicro.com>
3909 S:      Maintained
3910 F:      drivers/iio/light/cm*
3911
3912 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3913 M:      Christian Lamparter <chunkeey@googlemail.com>
3914 L:      linux-wireless@vger.kernel.org
3915 S:      Maintained
3916 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
3917 F:      drivers/net/wireless/ath/carl9170/
3918
3919 CAVIUM I2C DRIVER
3920 M:      Robert Richter <rrichter@marvell.com>
3921 S:      Supported
3922 W:      http://www.marvell.com
3923 F:      drivers/i2c/busses/i2c-octeon*
3924 F:      drivers/i2c/busses/i2c-thunderx*
3925
3926 CAVIUM LIQUIDIO NETWORK DRIVER
3927 M:      Derek Chickles <dchickles@marvell.com>
3928 M:      Satanand Burla <sburla@marvell.com>
3929 M:      Felix Manlunas <fmanlunas@marvell.com>
3930 L:      netdev@vger.kernel.org
3931 S:      Supported
3932 W:      http://www.marvell.com
3933 F:      drivers/net/ethernet/cavium/liquidio/
3934
3935 CAVIUM MMC DRIVER
3936 M:      Robert Richter <rrichter@marvell.com>
3937 S:      Supported
3938 W:      http://www.marvell.com
3939 F:      drivers/mmc/host/cavium*
3940
3941 CAVIUM OCTEON-TX CRYPTO DRIVER
3942 M:      George Cherian <gcherian@marvell.com>
3943 L:      linux-crypto@vger.kernel.org
3944 S:      Supported
3945 W:      http://www.marvell.com
3946 F:      drivers/crypto/cavium/cpt/
3947
3948 CAVIUM THUNDERX2 ARM64 SOC
3949 M:      Robert Richter <rrichter@marvell.com>
3950 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3951 S:      Maintained
3952 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3953 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3954
3955 CC2520 IEEE-802.15.4 RADIO DRIVER
3956 M:      Varka Bhadram <varkabhadram@gmail.com>
3957 L:      linux-wpan@vger.kernel.org
3958 S:      Maintained
3959 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3960 F:      drivers/net/ieee802154/cc2520.c
3961 F:      include/linux/spi/cc2520.h
3962
3963 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3964 M:      Gilad Ben-Yossef <gilad@benyossef.com>
3965 L:      linux-crypto@vger.kernel.org
3966 S:      Supported
3967 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3968 F:      drivers/crypto/ccree/
3969
3970 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
3971 M:      Hadar Gat <hadar.gat@arm.com>
3972 L:      linux-crypto@vger.kernel.org
3973 S:      Supported
3974 F:      drivers/char/hw_random/cctrng.c
3975 F:      drivers/char/hw_random/cctrng.h
3976 F:      Documentation/devicetree/bindings/rng/arm-cctrng.txt
3977 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3978
3979 CEC FRAMEWORK
3980 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3981 L:      linux-media@vger.kernel.org
3982 S:      Supported
3983 W:      http://linuxtv.org
3984 T:      git git://linuxtv.org/media_tree.git
3985 F:      Documentation/ABI/testing/debugfs-cec-error-inj
3986 F:      Documentation/devicetree/bindings/media/cec.txt
3987 F:      Documentation/driver-api/media/cec-core.rst
3988 F:      Documentation/userspace-api/media/cec
3989 F:      drivers/media/cec/
3990 F:      drivers/media/rc/keymaps/rc-cec.c
3991 F:      include/media/cec-notifier.h
3992 F:      include/media/cec.h
3993 F:      include/uapi/linux/cec-funcs.h
3994 F:      include/uapi/linux/cec.h
3995
3996 CEC GPIO DRIVER
3997 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3998 L:      linux-media@vger.kernel.org
3999 S:      Supported
4000 W:      http://linuxtv.org
4001 T:      git git://linuxtv.org/media_tree.git
4002 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4003 F:      drivers/media/platform/cec-gpio/
4004
4005 CELL BROADBAND ENGINE ARCHITECTURE
4006 M:      Arnd Bergmann <arnd@arndb.de>
4007 L:      linuxppc-dev@lists.ozlabs.org
4008 S:      Supported
4009 W:      http://www.ibm.com/developerworks/power/cell/
4010 F:      arch/powerpc/include/asm/cell*.h
4011 F:      arch/powerpc/include/asm/spu*.h
4012 F:      arch/powerpc/include/uapi/asm/spu*.h
4013 F:      arch/powerpc/oprofile/*cell*
4014 F:      arch/powerpc/platforms/cell/
4015
4016 CELLWISE CW2015 BATTERY DRIVER
4017 M:      Tobias Schrammm <t.schramm@manjaro.org>
4018 S:      Maintained
4019 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4020 F:      drivers/power/supply/cw2015_battery.c
4021
4022 CEPH COMMON CODE (LIBCEPH)
4023 M:      Ilya Dryomov <idryomov@gmail.com>
4024 M:      Jeff Layton <jlayton@kernel.org>
4025 L:      ceph-devel@vger.kernel.org
4026 S:      Supported
4027 W:      http://ceph.com/
4028 T:      git git://github.com/ceph/ceph-client.git
4029 F:      include/linux/ceph/
4030 F:      include/linux/crush/
4031 F:      net/ceph/
4032
4033 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4034 M:      Jeff Layton <jlayton@kernel.org>
4035 M:      Ilya Dryomov <idryomov@gmail.com>
4036 L:      ceph-devel@vger.kernel.org
4037 S:      Supported
4038 W:      http://ceph.com/
4039 T:      git git://github.com/ceph/ceph-client.git
4040 F:      Documentation/filesystems/ceph.rst
4041 F:      fs/ceph/
4042
4043 CERTIFICATE HANDLING
4044 M:      David Howells <dhowells@redhat.com>
4045 M:      David Woodhouse <dwmw2@infradead.org>
4046 L:      keyrings@vger.kernel.org
4047 S:      Maintained
4048 F:      Documentation/admin-guide/module-signing.rst
4049 F:      certs/
4050 F:      scripts/extract-cert.c
4051 F:      scripts/sign-file.c
4052
4053 CFAG12864B LCD DRIVER
4054 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4055 S:      Maintained
4056 F:      drivers/auxdisplay/cfag12864b.c
4057 F:      include/linux/cfag12864b.h
4058
4059 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4060 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4061 S:      Maintained
4062 F:      drivers/auxdisplay/cfag12864bfb.c
4063 F:      include/linux/cfag12864b.h
4064
4065 CHAR and MISC DRIVERS
4066 M:      Arnd Bergmann <arnd@arndb.de>
4067 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4068 S:      Supported
4069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4070 F:      drivers/char/
4071 F:      drivers/misc/
4072 F:      include/linux/miscdevice.h
4073
4074 CHECKPATCH
4075 M:      Andy Whitcroft <apw@canonical.com>
4076 M:      Joe Perches <joe@perches.com>
4077 S:      Maintained
4078 F:      scripts/checkpatch.pl
4079
4080 CHINESE DOCUMENTATION
4081 M:      Harry Wei <harryxiyou@gmail.com>
4082 M:      Alex Shi <alex.shi@linux.alibaba.com>
4083 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
4084 S:      Maintained
4085 F:      Documentation/translations/zh_CN/
4086
4087 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4088 M:      Peter Chen <Peter.Chen@nxp.com>
4089 L:      linux-usb@vger.kernel.org
4090 S:      Maintained
4091 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4092 F:      drivers/usb/chipidea/
4093
4094 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4095 M:      Hans de Goede <hdegoede@redhat.com>
4096 L:      linux-input@vger.kernel.org
4097 S:      Maintained
4098 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4099 F:      drivers/input/touchscreen/chipone_icn8318.c
4100
4101 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4102 M:      Hans de Goede <hdegoede@redhat.com>
4103 L:      linux-input@vger.kernel.org
4104 S:      Maintained
4105 F:      drivers/input/touchscreen/chipone_icn8505.c
4106
4107 CHROME HARDWARE PLATFORM SUPPORT
4108 M:      Benson Leung <bleung@chromium.org>
4109 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4110 S:      Maintained
4111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4112 F:      drivers/platform/chrome/
4113
4114 CHROMEOS EC CODEC DRIVER
4115 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4116 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4117 R:      Guenter Roeck <groeck@chromium.org>
4118 S:      Maintained
4119 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4120 F:      sound/soc/codecs/cros_ec_codec.*
4121
4122 CHROMEOS EC SUBDRIVERS
4123 M:      Benson Leung <bleung@chromium.org>
4124 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4125 R:      Guenter Roeck <groeck@chromium.org>
4126 S:      Maintained
4127 F:      drivers/power/supply/cros_usbpd-charger.c
4128 N:      cros_ec
4129 N:      cros-ec
4130
4131 CIRRUS LOGIC AUDIO CODEC DRIVERS
4132 M:      James Schulman <james.schulman@cirrus.com>
4133 M:      David Rhodes <david.rhodes@cirrus.com>
4134 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4135 S:      Maintained
4136 F:      sound/soc/codecs/cs*
4137
4138 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4139 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4140 L:      netdev@vger.kernel.org
4141 S:      Maintained
4142 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4143
4144 CIRRUS LOGIC LOCHNAGAR DRIVER
4145 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4146 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4147 L:      patches@opensource.cirrus.com
4148 S:      Supported
4149 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4150 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4151 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4152 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4153 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4154 F:      Documentation/hwmon/lochnagar.rst
4155 F:      drivers/clk/clk-lochnagar.c
4156 F:      drivers/hwmon/lochnagar-hwmon.c
4157 F:      drivers/mfd/lochnagar-i2c.c
4158 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4159 F:      drivers/regulator/lochnagar-regulator.c
4160 F:      include/dt-bindings/clk/lochnagar.h
4161 F:      include/dt-bindings/pinctrl/lochnagar.h
4162 F:      include/linux/mfd/lochnagar*
4163 F:      sound/soc/codecs/lochnagar-sc.c
4164
4165 CIRRUS LOGIC MADERA CODEC DRIVERS
4166 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4167 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4168 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4169 L:      patches@opensource.cirrus.com
4170 S:      Supported
4171 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4172 T:      git https://github.com/CirrusLogic/linux-drivers.git
4173 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4174 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4175 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4176 F:      drivers/gpio/gpio-madera*
4177 F:      drivers/irqchip/irq-madera*
4178 F:      drivers/mfd/cs47l*
4179 F:      drivers/mfd/madera*
4180 F:      drivers/pinctrl/cirrus/*
4181 F:      include/dt-bindings/sound/madera*
4182 F:      include/linux/irqchip/irq-madera*
4183 F:      include/linux/mfd/madera/*
4184 F:      include/sound/madera*
4185 F:      sound/soc/codecs/cs47l*
4186 F:      sound/soc/codecs/madera*
4187
4188 CISCO FCOE HBA DRIVER
4189 M:      Satish Kharat <satishkh@cisco.com>
4190 M:      Sesidhar Baddela <sebaddel@cisco.com>
4191 M:      Karan Tilak Kumar <kartilak@cisco.com>
4192 L:      linux-scsi@vger.kernel.org
4193 S:      Supported
4194 F:      drivers/scsi/fnic/
4195
4196 CISCO SCSI HBA DRIVER
4197 M:      Karan Tilak Kumar <kartilak@cisco.com>
4198 M:      Sesidhar Baddela <sebaddel@cisco.com>
4199 L:      linux-scsi@vger.kernel.org
4200 S:      Supported
4201 F:      drivers/scsi/snic/
4202
4203 CISCO VIC ETHERNET NIC DRIVER
4204 M:      Christian Benvenuti <benve@cisco.com>
4205 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4206 S:      Supported
4207 F:      drivers/net/ethernet/cisco/enic/
4208
4209 CISCO VIC LOW LATENCY NIC DRIVER
4210 M:      Christian Benvenuti <benve@cisco.com>
4211 M:      Nelson Escobar <neescoba@cisco.com>
4212 M:      Parvi Kaustubhi <pkaustub@cisco.com>
4213 S:      Supported
4214 F:      drivers/infiniband/hw/usnic/
4215
4216 CLANG-FORMAT FILE
4217 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4218 S:      Maintained
4219 F:      .clang-format
4220
4221 CLANG/LLVM BUILD SUPPORT
4222 L:      clang-built-linux@googlegroups.com
4223 S:      Supported
4224 W:      https://clangbuiltlinux.github.io/
4225 B:      https://github.com/ClangBuiltLinux/linux/issues
4226 C:      irc://chat.freenode.net/clangbuiltlinux
4227 F:      Documentation/kbuild/llvm.rst
4228 K:      \b(?i:clang|llvm)\b
4229
4230 CLEANCACHE API
4231 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4232 L:      linux-kernel@vger.kernel.org
4233 S:      Maintained
4234 F:      include/linux/cleancache.h
4235 F:      mm/cleancache.c
4236
4237 CLK API
4238 M:      Russell King <linux@armlinux.org.uk>
4239 L:      linux-clk@vger.kernel.org
4240 S:      Maintained
4241 F:      include/linux/clk.h
4242
4243 CLOCKSOURCE, CLOCKEVENT DRIVERS
4244 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4245 M:      Thomas Gleixner <tglx@linutronix.de>
4246 L:      linux-kernel@vger.kernel.org
4247 S:      Supported
4248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4249 F:      Documentation/devicetree/bindings/timer/
4250 F:      drivers/clocksource/
4251
4252 CMPC ACPI DRIVER
4253 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4254 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4255 L:      platform-driver-x86@vger.kernel.org
4256 S:      Supported
4257 F:      drivers/platform/x86/classmate-laptop.c
4258
4259 COBALT MEDIA DRIVER
4260 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4261 L:      linux-media@vger.kernel.org
4262 S:      Supported
4263 W:      https://linuxtv.org
4264 T:      git git://linuxtv.org/media_tree.git
4265 F:      drivers/media/pci/cobalt/
4266
4267 COCCINELLE/Semantic Patches (SmPL)
4268 M:      Julia Lawall <Julia.Lawall@lip6.fr>
4269 M:      Gilles Muller <Gilles.Muller@lip6.fr>
4270 M:      Nicolas Palix <nicolas.palix@imag.fr>
4271 M:      Michal Marek <michal.lkml@markovi.net>
4272 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4273 S:      Supported
4274 W:      http://coccinelle.lip6.fr/
4275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4276 F:      Documentation/dev-tools/coccinelle.rst
4277 F:      scripts/coccicheck
4278 F:      scripts/coccinelle/
4279
4280 CODA FILE SYSTEM
4281 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4282 M:      coda@cs.cmu.edu
4283 L:      codalist@coda.cs.cmu.edu
4284 S:      Maintained
4285 W:      http://www.coda.cs.cmu.edu/
4286 F:      Documentation/filesystems/coda.rst
4287 F:      fs/coda/
4288 F:      include/linux/coda*.h
4289 F:      include/uapi/linux/coda*.h
4290
4291 CODA V4L2 MEM2MEM DRIVER
4292 M:      Philipp Zabel <p.zabel@pengutronix.de>
4293 L:      linux-media@vger.kernel.org
4294 S:      Maintained
4295 F:      Documentation/devicetree/bindings/media/coda.txt
4296 F:      drivers/media/platform/coda/
4297
4298 CODE OF CONDUCT
4299 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4300 S:      Supported
4301 F:      Documentation/process/code-of-conduct-interpretation.rst
4302 F:      Documentation/process/code-of-conduct.rst
4303
4304 COMMON CLK FRAMEWORK
4305 M:      Michael Turquette <mturquette@baylibre.com>
4306 M:      Stephen Boyd <sboyd@kernel.org>
4307 L:      linux-clk@vger.kernel.org
4308 S:      Maintained
4309 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4311 F:      Documentation/devicetree/bindings/clock/
4312 F:      drivers/clk/
4313 F:      include/linux/clk-pr*
4314 F:      include/linux/clk/
4315 F:      include/linux/of_clk.h
4316 X:      drivers/clk/clkdev.c
4317
4318 COMMON INTERNET FILE SYSTEM (CIFS)
4319 M:      Steve French <sfrench@samba.org>
4320 L:      linux-cifs@vger.kernel.org
4321 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4322 S:      Supported
4323 W:      http://linux-cifs.samba.org/
4324 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4325 F:      Documentation/admin-guide/cifs/
4326 F:      fs/cifs/
4327
4328 COMPACTPCI HOTPLUG CORE
4329 M:      Scott Murray <scott@spiteful.org>
4330 L:      linux-pci@vger.kernel.org
4331 S:      Maintained
4332 F:      drivers/pci/hotplug/cpci_hotplug*
4333
4334 COMPACTPCI HOTPLUG GENERIC DRIVER
4335 M:      Scott Murray <scott@spiteful.org>
4336 L:      linux-pci@vger.kernel.org
4337 S:      Maintained
4338 F:      drivers/pci/hotplug/cpcihp_generic.c
4339
4340 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4341 M:      Scott Murray <scott@spiteful.org>
4342 L:      linux-pci@vger.kernel.org
4343 S:      Maintained
4344 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4345
4346 COMPAL LAPTOP SUPPORT
4347 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4348 L:      platform-driver-x86@vger.kernel.org
4349 S:      Maintained
4350 F:      drivers/platform/x86/compal-laptop.c
4351
4352 COMPILER ATTRIBUTES
4353 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4354 S:      Maintained
4355 F:      include/linux/compiler_attributes.h
4356
4357 CONEXANT ACCESSRUNNER USB DRIVER
4358 L:      accessrunner-general@lists.sourceforge.net
4359 S:      Orphan
4360 W:      http://accessrunner.sourceforge.net/
4361 F:      drivers/usb/atm/cxacru.c
4362
4363 CONFIGFS
4364 M:      Joel Becker <jlbec@evilplan.org>
4365 M:      Christoph Hellwig <hch@lst.de>
4366 S:      Supported
4367 T:      git git://git.infradead.org/users/hch/configfs.git
4368 F:      fs/configfs/
4369 F:      include/linux/configfs.h
4370
4371 CONNECTOR
4372 M:      Evgeniy Polyakov <zbr@ioremap.net>
4373 L:      netdev@vger.kernel.org
4374 S:      Maintained
4375 F:      drivers/connector/
4376
4377 CONTROL GROUP (CGROUP)
4378 M:      Tejun Heo <tj@kernel.org>
4379 M:      Li Zefan <lizefan@huawei.com>
4380 M:      Johannes Weiner <hannes@cmpxchg.org>
4381 L:      cgroups@vger.kernel.org
4382 S:      Maintained
4383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4384 F:      Documentation/admin-guide/cgroup-v1/
4385 F:      Documentation/admin-guide/cgroup-v2.rst
4386 F:      include/linux/cgroup*
4387 F:      kernel/cgroup/
4388
4389 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4390 M:      Tejun Heo <tj@kernel.org>
4391 M:      Jens Axboe <axboe@kernel.dk>
4392 L:      cgroups@vger.kernel.org
4393 L:      linux-block@vger.kernel.org
4394 T:      git git://git.kernel.dk/linux-block
4395 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4396 F:      block/bfq-cgroup.c
4397 F:      block/blk-cgroup.c
4398 F:      block/blk-iolatency.c
4399 F:      block/blk-throttle.c
4400 F:      include/linux/blk-cgroup.h
4401
4402 CONTROL GROUP - CPUSET
4403 M:      Li Zefan <lizefan@huawei.com>
4404 L:      cgroups@vger.kernel.org
4405 S:      Maintained
4406 W:      http://www.bullopensource.org/cpuset/
4407 W:      http://oss.sgi.com/projects/cpusets/
4408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4409 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4410 F:      include/linux/cpuset.h
4411 F:      kernel/cgroup/cpuset.c
4412
4413 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4414 M:      Johannes Weiner <hannes@cmpxchg.org>
4415 M:      Michal Hocko <mhocko@kernel.org>
4416 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4417 L:      cgroups@vger.kernel.org
4418 L:      linux-mm@kvack.org
4419 S:      Maintained
4420 F:      mm/memcontrol.c
4421 F:      mm/swap_cgroup.c
4422
4423 CORETEMP HARDWARE MONITORING DRIVER
4424 M:      Fenghua Yu <fenghua.yu@intel.com>
4425 L:      linux-hwmon@vger.kernel.org
4426 S:      Maintained
4427 F:      Documentation/hwmon/coretemp.rst
4428 F:      drivers/hwmon/coretemp.c
4429
4430 COSA/SRP SYNC SERIAL DRIVER
4431 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4432 S:      Maintained
4433 W:      http://www.fi.muni.cz/~kas/cosa/
4434 F:      drivers/net/wan/cosa*
4435
4436 COUNTER SUBSYSTEM
4437 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4438 L:      linux-iio@vger.kernel.org
4439 S:      Maintained
4440 F:      Documentation/ABI/testing/sysfs-bus-counter*
4441 F:      Documentation/driver-api/generic-counter.rst
4442 F:      drivers/counter/
4443 F:      include/linux/counter.h
4444 F:      include/linux/counter_enum.h
4445
4446 CPMAC ETHERNET DRIVER
4447 M:      Florian Fainelli <f.fainelli@gmail.com>
4448 L:      netdev@vger.kernel.org
4449 S:      Maintained
4450 F:      drivers/net/ethernet/ti/cpmac.c
4451
4452 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4453 M:      Viresh Kumar <viresh.kumar@linaro.org>
4454 M:      Sudeep Holla <sudeep.holla@arm.com>
4455 L:      linux-pm@vger.kernel.org
4456 S:      Maintained
4457 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4458 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4459
4460 CPU FREQUENCY SCALING FRAMEWORK
4461 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4462 M:      Viresh Kumar <viresh.kumar@linaro.org>
4463 L:      linux-pm@vger.kernel.org
4464 S:      Maintained
4465 B:      https://bugzilla.kernel.org
4466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4468 F:      Documentation/admin-guide/pm/cpufreq.rst
4469 F:      Documentation/admin-guide/pm/intel_pstate.rst
4470 F:      Documentation/cpu-freq/
4471 F:      Documentation/devicetree/bindings/cpufreq/
4472 F:      drivers/cpufreq/
4473 F:      include/linux/cpufreq.h
4474 F:      include/linux/sched/cpufreq.h
4475 F:      kernel/sched/cpufreq*.c
4476 F:      tools/testing/selftests/cpufreq/
4477
4478 CPU IDLE TIME MANAGEMENT FRAMEWORK
4479 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4480 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4481 L:      linux-pm@vger.kernel.org
4482 S:      Maintained
4483 B:      https://bugzilla.kernel.org
4484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4485 F:      Documentation/admin-guide/pm/cpuidle.rst
4486 F:      Documentation/driver-api/pm/cpuidle.rst
4487 F:      drivers/cpuidle/*
4488 F:      include/linux/cpuidle.h
4489
4490 CPU POWER MONITORING SUBSYSTEM
4491 M:      Thomas Renninger <trenn@suse.com>
4492 M:      Shuah Khan <shuah@kernel.org>
4493 M:      Shuah Khan <skhan@linuxfoundation.org>
4494 L:      linux-pm@vger.kernel.org
4495 S:      Maintained
4496 F:      tools/power/cpupower/
4497
4498 CPUID/MSR DRIVER
4499 M:      "H. Peter Anvin" <hpa@zytor.com>
4500 S:      Maintained
4501 F:      arch/x86/kernel/cpuid.c
4502 F:      arch/x86/kernel/msr.c
4503
4504 CPUIDLE DRIVER - ARM BIG LITTLE
4505 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4506 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4507 L:      linux-pm@vger.kernel.org
4508 L:      linux-arm-kernel@lists.infradead.org
4509 S:      Maintained
4510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4511 F:      drivers/cpuidle/cpuidle-big_little.c
4512
4513 CPUIDLE DRIVER - ARM EXYNOS
4514 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4515 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4516 M:      Kukjin Kim <kgene@kernel.org>
4517 L:      linux-pm@vger.kernel.org
4518 L:      linux-samsung-soc@vger.kernel.org
4519 S:      Supported
4520 F:      arch/arm/mach-exynos/pm.c
4521 F:      drivers/cpuidle/cpuidle-exynos.c
4522
4523 CPUIDLE DRIVER - ARM PSCI
4524 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4525 M:      Sudeep Holla <sudeep.holla@arm.com>
4526 L:      linux-pm@vger.kernel.org
4527 L:      linux-arm-kernel@lists.infradead.org
4528 S:      Supported
4529 F:      drivers/cpuidle/cpuidle-psci.c
4530
4531 CRAMFS FILESYSTEM
4532 M:      Nicolas Pitre <nico@fluxnic.net>
4533 S:      Maintained
4534 F:      Documentation/filesystems/cramfs.rst
4535 F:      fs/cramfs/
4536
4537 CREATIVE SB0540
4538 M:      Bastien Nocera <hadess@hadess.net>
4539 L:      linux-input@vger.kernel.org
4540 S:      Maintained
4541 F:      drivers/hid/hid-creative-sb0540.c
4542
4543 CRYPTO API
4544 M:      Herbert Xu <herbert@gondor.apana.org.au>
4545 M:      "David S. Miller" <davem@davemloft.net>
4546 L:      linux-crypto@vger.kernel.org
4547 S:      Maintained
4548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4550 F:      Documentation/crypto/
4551 F:      Documentation/devicetree/bindings/crypto/
4552 F:      arch/*/crypto/
4553 F:      crypto/
4554 F:      drivers/crypto/
4555 F:      include/crypto/
4556 F:      include/linux/crypto*
4557 F:      lib/crypto/
4558
4559 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4560 M:      Neil Horman <nhorman@tuxdriver.com>
4561 L:      linux-crypto@vger.kernel.org
4562 S:      Maintained
4563 F:      crypto/ansi_cprng.c
4564 F:      crypto/rng.c
4565
4566 CS3308 MEDIA DRIVER
4567 M:      Hans Verkuil <hverkuil@xs4all.nl>
4568 L:      linux-media@vger.kernel.org
4569 S:      Odd Fixes
4570 W:      http://linuxtv.org
4571 T:      git git://linuxtv.org/media_tree.git
4572 F:      drivers/media/i2c/cs3308.c
4573
4574 CS5535 Audio ALSA driver
4575 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4576 S:      Maintained
4577 F:      sound/pci/cs5535audio/
4578
4579 CSI DRIVERS FOR ALLWINNER V3s
4580 M:      Yong Deng <yong.deng@magewell.com>
4581 L:      linux-media@vger.kernel.org
4582 S:      Maintained
4583 T:      git git://linuxtv.org/media_tree.git
4584 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4585 F:      drivers/media/platform/sunxi/sun6i-csi/
4586
4587 CW1200 WLAN driver
4588 M:      Solomon Peachy <pizza@shaftnet.org>
4589 S:      Maintained
4590 F:      drivers/net/wireless/st/cw1200/
4591
4592 CX18 VIDEO4LINUX DRIVER
4593 M:      Andy Walls <awalls@md.metrocast.net>
4594 L:      linux-media@vger.kernel.org
4595 S:      Maintained
4596 W:      https://linuxtv.org
4597 T:      git git://linuxtv.org/media_tree.git
4598 F:      drivers/media/pci/cx18/
4599 F:      include/uapi/linux/ivtv*
4600
4601 CX2341X MPEG ENCODER HELPER MODULE
4602 M:      Hans Verkuil <hverkuil@xs4all.nl>
4603 L:      linux-media@vger.kernel.org
4604 S:      Maintained
4605 W:      https://linuxtv.org
4606 T:      git git://linuxtv.org/media_tree.git
4607 F:      drivers/media/common/cx2341x*
4608 F:      include/media/drv-intf/cx2341x.h
4609
4610 CX24120 MEDIA DRIVER
4611 M:      Jemma Denson <jdenson@gmail.com>
4612 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4613 L:      linux-media@vger.kernel.org
4614 S:      Maintained
4615 W:      https://linuxtv.org
4616 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4617 F:      drivers/media/dvb-frontends/cx24120*
4618
4619 CX88 VIDEO4LINUX DRIVER
4620 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4621 L:      linux-media@vger.kernel.org
4622 S:      Odd fixes
4623 W:      https://linuxtv.org
4624 T:      git git://linuxtv.org/media_tree.git
4625 F:      Documentation/driver-api/media/drivers/cx88*
4626 F:      drivers/media/pci/cx88/
4627
4628 CXD2820R MEDIA DRIVER
4629 M:      Antti Palosaari <crope@iki.fi>
4630 L:      linux-media@vger.kernel.org
4631 S:      Maintained
4632 W:      https://linuxtv.org
4633 W:      http://palosaari.fi/linux/
4634 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4635 T:      git git://linuxtv.org/anttip/media_tree.git
4636 F:      drivers/media/dvb-frontends/cxd2820r*
4637
4638 CXGB3 ETHERNET DRIVER (CXGB3)
4639 M:      Vishal Kulkarni <vishal@chelsio.com>
4640 L:      netdev@vger.kernel.org
4641 S:      Supported
4642 W:      http://www.chelsio.com
4643 F:      drivers/net/ethernet/chelsio/cxgb3/
4644
4645 CXGB3 ISCSI DRIVER (CXGB3I)
4646 M:      Karen Xie <kxie@chelsio.com>
4647 L:      linux-scsi@vger.kernel.org
4648 S:      Supported
4649 W:      http://www.chelsio.com
4650 F:      drivers/scsi/cxgbi/cxgb3i
4651
4652 CXGB4 CRYPTO DRIVER (chcr)
4653 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4654 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4655 M:      Rohit Maheshwari <rohitm@chelsio.com>
4656 L:      linux-crypto@vger.kernel.org
4657 S:      Supported
4658 W:      http://www.chelsio.com
4659 F:      drivers/crypto/chelsio
4660
4661 CXGB4 ETHERNET DRIVER (CXGB4)
4662 M:      Vishal Kulkarni <vishal@chelsio.com>
4663 L:      netdev@vger.kernel.org
4664 S:      Supported
4665 W:      http://www.chelsio.com
4666 F:      drivers/net/ethernet/chelsio/cxgb4/
4667
4668 CXGB4 ISCSI DRIVER (CXGB4I)
4669 M:      Karen Xie <kxie@chelsio.com>
4670 L:      linux-scsi@vger.kernel.org
4671 S:      Supported
4672 W:      http://www.chelsio.com
4673 F:      drivers/scsi/cxgbi/cxgb4i
4674
4675 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4676 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4677 L:      linux-rdma@vger.kernel.org
4678 S:      Supported
4679 W:      http://www.openfabrics.org
4680 F:      drivers/infiniband/hw/cxgb4/
4681 F:      include/uapi/rdma/cxgb4-abi.h
4682
4683 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4684 M:      Vishal Kulkarni <vishal@gmail.com>
4685 L:      netdev@vger.kernel.org
4686 S:      Supported
4687 W:      http://www.chelsio.com
4688 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4689
4690 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4691 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4692 M:      Andrew Donnellan <ajd@linux.ibm.com>
4693 L:      linuxppc-dev@lists.ozlabs.org
4694 S:      Supported
4695 F:      Documentation/ABI/testing/sysfs-class-cxl
4696 F:      Documentation/powerpc/cxl.rst
4697 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4698 F:      drivers/misc/cxl/
4699 F:      include/misc/cxl*
4700 F:      include/uapi/misc/cxl.h
4701
4702 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4703 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4704 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4705 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4706 L:      linux-scsi@vger.kernel.org
4707 S:      Supported
4708 F:      Documentation/powerpc/cxlflash.rst
4709 F:      drivers/scsi/cxlflash/
4710 F:      include/uapi/scsi/cxlflash_ioctl.h
4711
4712 CYBERPRO FB DRIVER
4713 M:      Russell King <linux@armlinux.org.uk>
4714 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4715 S:      Maintained
4716 W:      http://www.armlinux.org.uk/
4717 F:      drivers/video/fbdev/cyber2000fb.*
4718
4719 CYCLADES ASYNC MUX DRIVER
4720 S:      Orphan
4721 W:      http://www.cyclades.com/
4722 F:      drivers/tty/cyclades.c
4723 F:      include/linux/cyclades.h
4724 F:      include/uapi/linux/cyclades.h
4725
4726 CYCLADES PC300 DRIVER
4727 S:      Orphan
4728 W:      http://www.cyclades.com/
4729 F:      drivers/net/wan/pc300*
4730
4731 CYPRESS_FIRMWARE MEDIA DRIVER
4732 M:      Antti Palosaari <crope@iki.fi>
4733 L:      linux-media@vger.kernel.org
4734 S:      Maintained
4735 W:      https://linuxtv.org
4736 W:      http://palosaari.fi/linux/
4737 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4738 T:      git git://linuxtv.org/anttip/media_tree.git
4739 F:      drivers/media/common/cypress_firmware*
4740
4741 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
4742 M:      Linus Walleij <linus.walleij@linaro.org>
4743 L:      linux-input@vger.kernel.org
4744 S:      Maintained
4745 F:      drivers/input/touchscreen/cy8ctma140.c
4746
4747 CYTTSP TOUCHSCREEN DRIVER
4748 M:      Ferruh Yigit <fery@cypress.com>
4749 L:      linux-input@vger.kernel.org
4750 S:      Supported
4751 F:      drivers/input/touchscreen/cyttsp*
4752 F:      include/linux/input/cyttsp.h
4753
4754 D-LINK DIR-685 TOUCHKEYS DRIVER
4755 M:      Linus Walleij <linus.walleij@linaro.org>
4756 L:      linux-input@vger.kernel.org
4757 S:      Supported
4758 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4759
4760 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4761 M:      Joshua Kinard <kumba@gentoo.org>
4762 S:      Maintained
4763 F:      drivers/rtc/rtc-ds1685.c
4764 F:      include/linux/rtc/ds1685.h
4765
4766 DAMA SLAVE for AX.25
4767 M:      Joerg Reuter <jreuter@yaina.de>
4768 L:      linux-hams@vger.kernel.org
4769 S:      Maintained
4770 W:      http://yaina.de/jreuter/
4771 W:      http://www.qsl.net/dl1bke/
4772 F:      net/ax25/af_ax25.c
4773 F:      net/ax25/ax25_dev.c
4774 F:      net/ax25/ax25_ds_*
4775 F:      net/ax25/ax25_in.c
4776 F:      net/ax25/ax25_out.c
4777 F:      net/ax25/ax25_timer.c
4778 F:      net/ax25/sysctl_net_ax25.c
4779
4780 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4781 L:      netdev@vger.kernel.org
4782 S:      Orphan
4783 F:      Documentation/networking/device_drivers/dec/dmfe.rst
4784 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4785
4786 DC390/AM53C974 SCSI driver
4787 M:      Hannes Reinecke <hare@suse.com>
4788 L:      linux-scsi@vger.kernel.org
4789 S:      Maintained
4790 F:      drivers/scsi/am53c974.c
4791
4792 DC395x SCSI driver
4793 M:      Oliver Neukum <oliver@neukum.org>
4794 M:      Ali Akcaagac <aliakc@web.de>
4795 M:      Jamie Lenehan <lenehan@twibble.org>
4796 L:      dc395x@twibble.org
4797 S:      Maintained
4798 W:      http://twibble.org/dist/dc395x/
4799 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4800 F:      Documentation/scsi/dc395x.rst
4801 F:      drivers/scsi/dc395x.*
4802
4803 DCCP PROTOCOL
4804 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
4805 L:      dccp@vger.kernel.org
4806 S:      Maintained
4807 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4808 F:      include/linux/dccp.h
4809 F:      include/linux/tfrc.h
4810 F:      include/uapi/linux/dccp.h
4811 F:      net/dccp/
4812
4813 DECnet NETWORK LAYER
4814 L:      linux-decnet-user@lists.sourceforge.net
4815 S:      Orphan
4816 W:      http://linux-decnet.sourceforge.net
4817 F:      Documentation/networking/decnet.rst
4818 F:      net/decnet/
4819
4820 DECSTATION PLATFORM SUPPORT
4821 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4822 L:      linux-mips@vger.kernel.org
4823 S:      Maintained
4824 W:      http://www.linux-mips.org/wiki/DECstation
4825 F:      arch/mips/dec/
4826 F:      arch/mips/include/asm/dec/
4827 F:      arch/mips/include/asm/mach-dec/
4828
4829 DEFXX FDDI NETWORK DRIVER
4830 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4831 S:      Maintained
4832 F:      drivers/net/fddi/defxx.*
4833
4834 DEFZA FDDI NETWORK DRIVER
4835 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4836 S:      Maintained
4837 F:      drivers/net/fddi/defza.*
4838
4839 DEINTERLACE DRIVERS FOR ALLWINNER H3
4840 M:      Jernej Skrabec <jernej.skrabec@siol.net>
4841 L:      linux-media@vger.kernel.org
4842 S:      Maintained
4843 T:      git git://linuxtv.org/media_tree.git
4844 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4845 F:      drivers/media/platform/sunxi/sun8i-di/
4846
4847 DELL LAPTOP DRIVER
4848 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4849 M:      Pali Rohár <pali@kernel.org>
4850 L:      platform-driver-x86@vger.kernel.org
4851 S:      Maintained
4852 F:      drivers/platform/x86/dell-laptop.c
4853
4854 DELL LAPTOP FREEFALL DRIVER
4855 M:      Pali Rohár <pali@kernel.org>
4856 S:      Maintained
4857 F:      drivers/platform/x86/dell-smo8800.c
4858
4859 DELL LAPTOP RBTN DRIVER
4860 M:      Pali Rohár <pali@kernel.org>
4861 S:      Maintained
4862 F:      drivers/platform/x86/dell-rbtn.*
4863
4864 DELL LAPTOP SMM DRIVER
4865 M:      Pali Rohár <pali@kernel.org>
4866 S:      Maintained
4867 F:      drivers/hwmon/dell-smm-hwmon.c
4868 F:      include/uapi/linux/i8k.h
4869
4870 DELL REMOTE BIOS UPDATE DRIVER
4871 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4872 L:      platform-driver-x86@vger.kernel.org
4873 S:      Maintained
4874 F:      drivers/platform/x86/dell_rbu.c
4875
4876 DELL SMBIOS DRIVER
4877 M:      Pali Rohár <pali@kernel.org>
4878 M:      Mario Limonciello <mario.limonciello@dell.com>
4879 L:      platform-driver-x86@vger.kernel.org
4880 S:      Maintained
4881 F:      drivers/platform/x86/dell-smbios.*
4882
4883 DELL SMBIOS SMM DRIVER
4884 M:      Mario Limonciello <mario.limonciello@dell.com>
4885 L:      platform-driver-x86@vger.kernel.org
4886 S:      Maintained
4887 F:      drivers/platform/x86/dell-smbios-smm.c
4888
4889 DELL SMBIOS WMI DRIVER
4890 M:      Mario Limonciello <mario.limonciello@dell.com>
4891 L:      platform-driver-x86@vger.kernel.org
4892 S:      Maintained
4893 F:      drivers/platform/x86/dell-smbios-wmi.c
4894 F:      tools/wmi/dell-smbios-example.c
4895
4896 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4897 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4898 L:      platform-driver-x86@vger.kernel.org
4899 S:      Maintained
4900 F:      Documentation/driver-api/dcdbas.rst
4901 F:      drivers/platform/x86/dcdbas.*
4902
4903 DELL WMI DESCRIPTOR DRIVER
4904 M:      Mario Limonciello <mario.limonciello@dell.com>
4905 S:      Maintained
4906 F:      drivers/platform/x86/dell-wmi-descriptor.c
4907
4908 DELL WMI NOTIFICATIONS DRIVER
4909 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4910 M:      Pali Rohár <pali@kernel.org>
4911 S:      Maintained
4912 F:      drivers/platform/x86/dell-wmi.c
4913
4914 DELTA ST MEDIA DRIVER
4915 M:      Hugues Fruchet <hugues.fruchet@st.com>
4916 L:      linux-media@vger.kernel.org
4917 S:      Supported
4918 W:      https://linuxtv.org
4919 T:      git git://linuxtv.org/media_tree.git
4920 F:      drivers/media/platform/sti/delta
4921
4922 DENALI NAND DRIVER
4923 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
4924 L:      linux-mtd@lists.infradead.org
4925 S:      Supported
4926 F:      drivers/mtd/nand/raw/denali*
4927
4928 DESIGNWARE EDMA CORE IP DRIVER
4929 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
4930 L:      dmaengine@vger.kernel.org
4931 S:      Maintained
4932 F:      drivers/dma/dw-edma/
4933 F:      include/linux/dma/edma.h
4934
4935 DESIGNWARE USB2 DRD IP DRIVER
4936 M:      Minas Harutyunyan <hminas@synopsys.com>
4937 L:      linux-usb@vger.kernel.org
4938 S:      Maintained
4939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4940 F:      drivers/usb/dwc2/
4941
4942 DESIGNWARE USB3 DRD IP DRIVER
4943 M:      Felipe Balbi <balbi@kernel.org>
4944 L:      linux-usb@vger.kernel.org
4945 S:      Maintained
4946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4947 F:      drivers/usb/dwc3/
4948
4949 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4950 M:      Andreas Klinger <ak@it-klinger.de>
4951 L:      linux-iio@vger.kernel.org
4952 S:      Maintained
4953 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4954 F:      drivers/iio/proximity/srf*.c
4955
4956 DEVICE COREDUMP (DEV_COREDUMP)
4957 M:      Johannes Berg <johannes@sipsolutions.net>
4958 L:      linux-kernel@vger.kernel.org
4959 S:      Maintained
4960 F:      drivers/base/devcoredump.c
4961 F:      include/linux/devcoredump.h
4962
4963 DEVICE DIRECT ACCESS (DAX)
4964 M:      Dan Williams <dan.j.williams@intel.com>
4965 M:      Vishal Verma <vishal.l.verma@intel.com>
4966 M:      Dave Jiang <dave.jiang@intel.com>
4967 L:      linux-nvdimm@lists.01.org
4968 S:      Supported
4969 F:      drivers/dax/
4970
4971 DEVICE FREQUENCY (DEVFREQ)
4972 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4973 M:      Kyungmin Park <kyungmin.park@samsung.com>
4974 M:      Chanwoo Choi <cw00.choi@samsung.com>
4975 L:      linux-pm@vger.kernel.org
4976 S:      Maintained
4977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4978 F:      Documentation/devicetree/bindings/devfreq/
4979 F:      drivers/devfreq/
4980 F:      include/linux/devfreq.h
4981 F:      include/trace/events/devfreq.h
4982
4983 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4984 M:      Chanwoo Choi <cw00.choi@samsung.com>
4985 L:      linux-pm@vger.kernel.org
4986 S:      Supported
4987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4988 F:      Documentation/devicetree/bindings/devfreq/event/
4989 F:      drivers/devfreq/devfreq-event.c
4990 F:      drivers/devfreq/event/
4991 F:      include/dt-bindings/pmu/exynos_ppmu.h
4992 F:      include/linux/devfreq-event.h
4993
4994 DEVICE NUMBER REGISTRY
4995 M:      Torben Mathiasen <device@lanana.org>
4996 S:      Maintained
4997 W:      http://lanana.org/docs/device-list/index.html
4998
4999 DEVICE-MAPPER  (LVM)
5000 M:      Alasdair Kergon <agk@redhat.com>
5001 M:      Mike Snitzer <snitzer@redhat.com>
5002 M:      dm-devel@redhat.com
5003 L:      dm-devel@redhat.com
5004 S:      Maintained
5005 W:      http://sources.redhat.com/dm
5006 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5008 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5009 F:      Documentation/admin-guide/device-mapper/
5010 F:      drivers/md/Kconfig
5011 F:      drivers/md/Makefile
5012 F:      drivers/md/dm*
5013 F:      drivers/md/persistent-data/
5014 F:      include/linux/device-mapper.h
5015 F:      include/linux/dm-*.h
5016 F:      include/uapi/linux/dm-*.h
5017
5018 DEVLINK
5019 M:      Jiri Pirko <jiri@mellanox.com>
5020 L:      netdev@vger.kernel.org
5021 S:      Supported
5022 F:      Documentation/networking/devlink
5023 F:      include/net/devlink.h
5024 F:      include/uapi/linux/devlink.h
5025 F:      net/core/devlink.c
5026
5027 DIALOG SEMICONDUCTOR DRIVERS
5028 M:      Support Opensource <support.opensource@diasemi.com>
5029 S:      Supported
5030 W:      http://www.dialog-semiconductor.com/products
5031 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5032 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5033 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5034 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5035 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5036 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5037 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5038 F:      Documentation/hwmon/da90??.rst
5039 F:      drivers/gpio/gpio-da90??.c
5040 F:      drivers/hwmon/da90??-hwmon.c
5041 F:      drivers/iio/adc/da91??-*.c
5042 F:      drivers/input/misc/da90??_onkey.c
5043 F:      drivers/input/touchscreen/da9052_tsi.c
5044 F:      drivers/leds/leds-da90??.c
5045 F:      drivers/mfd/da903x.c
5046 F:      drivers/mfd/da90??-*.c
5047 F:      drivers/mfd/da91??-*.c
5048 F:      drivers/pinctrl/pinctrl-da90??.c
5049 F:      drivers/power/supply/da9052-battery.c
5050 F:      drivers/power/supply/da91??-*.c
5051 F:      drivers/regulator/da903x.c
5052 F:      drivers/regulator/da9???-regulator.[ch]
5053 F:      drivers/regulator/slg51000-regulator.[ch]
5054 F:      drivers/rtc/rtc-da90??.c
5055 F:      drivers/thermal/da90??-thermal.c
5056 F:      drivers/video/backlight/da90??_bl.c
5057 F:      drivers/watchdog/da90??_wdt.c
5058 F:      include/linux/mfd/da903x.h
5059 F:      include/linux/mfd/da9052/
5060 F:      include/linux/mfd/da9055/
5061 F:      include/linux/mfd/da9062/
5062 F:      include/linux/mfd/da9063/
5063 F:      include/linux/mfd/da9150/
5064 F:      include/linux/regulator/da9211.h
5065 F:      include/sound/da[79]*.h
5066 F:      sound/soc/codecs/da[79]*.[ch]
5067
5068 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5069 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5070 L:      linux-gpio@vger.kernel.org
5071 S:      Maintained
5072 F:      drivers/gpio/gpio-gpio-mm.c
5073
5074 DIOLAN U2C-12 I2C DRIVER
5075 M:      Guenter Roeck <linux@roeck-us.net>
5076 L:      linux-i2c@vger.kernel.org
5077 S:      Maintained
5078 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5079
5080 DIRECTORY NOTIFICATION (DNOTIFY)
5081 M:      Jan Kara <jack@suse.cz>
5082 R:      Amir Goldstein <amir73il@gmail.com>
5083 L:      linux-fsdevel@vger.kernel.org
5084 S:      Maintained
5085 F:      Documentation/filesystems/dnotify.rst
5086 F:      fs/notify/dnotify/
5087 F:      include/linux/dnotify.h
5088
5089 DISK GEOMETRY AND PARTITION HANDLING
5090 M:      Andries Brouwer <aeb@cwi.nl>
5091 S:      Maintained
5092 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5093 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5094 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5095
5096 DISKQUOTA
5097 M:      Jan Kara <jack@suse.com>
5098 S:      Maintained
5099 F:      Documentation/filesystems/quota.rst
5100 F:      fs/quota/
5101 F:      include/linux/quota*.h
5102 F:      include/uapi/linux/quota*.h
5103
5104 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5105 M:      Bernie Thompson <bernie@plugable.com>
5106 L:      linux-fbdev@vger.kernel.org
5107 S:      Maintained
5108 W:      http://plugable.com/category/projects/udlfb/
5109 F:      Documentation/fb/udlfb.rst
5110 F:      drivers/video/fbdev/udlfb.c
5111 F:      include/video/udlfb.h
5112
5113 DISTRIBUTED LOCK MANAGER (DLM)
5114 M:      Christine Caulfield <ccaulfie@redhat.com>
5115 M:      David Teigland <teigland@redhat.com>
5116 L:      cluster-devel@redhat.com
5117 S:      Supported
5118 W:      http://sources.redhat.com/cluster/
5119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5120 F:      fs/dlm/
5121
5122 DMA BUFFER SHARING FRAMEWORK
5123 M:      Sumit Semwal <sumit.semwal@linaro.org>
5124 L:      linux-media@vger.kernel.org
5125 L:      dri-devel@lists.freedesktop.org
5126 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5127 S:      Maintained
5128 T:      git git://anongit.freedesktop.org/drm/drm-misc
5129 F:      Documentation/driver-api/dma-buf.rst
5130 F:      drivers/dma-buf/
5131 F:      include/linux/*fence.h
5132 F:      include/linux/dma-buf*
5133 F:      include/linux/dma-resv.h
5134 K:      \bdma_(?:buf|fence|resv)\b
5135
5136 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5137 M:      Vinod Koul <vkoul@kernel.org>
5138 L:      dmaengine@vger.kernel.org
5139 S:      Maintained
5140 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5141 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
5142 F:      Documentation/devicetree/bindings/dma/
5143 F:      Documentation/driver-api/dmaengine/
5144 F:      drivers/dma/
5145 F:      include/linux/dmaengine.h
5146 F:      include/linux/of_dma.h
5147
5148 DMA MAPPING HELPERS
5149 M:      Christoph Hellwig <hch@lst.de>
5150 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5151 R:      Robin Murphy <robin.murphy@arm.com>
5152 L:      iommu@lists.linux-foundation.org
5153 S:      Supported
5154 W:      http://git.infradead.org/users/hch/dma-mapping.git
5155 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5156 F:      include/asm-generic/dma-mapping.h
5157 F:      include/linux/dma-direct.h
5158 F:      include/linux/dma-mapping.h
5159 F:      include/linux/dma-noncoherent.h
5160 F:      kernel/dma/
5161
5162 DMA-BUF HEAPS FRAMEWORK
5163 M:      Sumit Semwal <sumit.semwal@linaro.org>
5164 R:      Andrew F. Davis <afd@ti.com>
5165 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5166 R:      Liam Mark <lmark@codeaurora.org>
5167 R:      Laura Abbott <labbott@redhat.com>
5168 R:      Brian Starkey <Brian.Starkey@arm.com>
5169 R:      John Stultz <john.stultz@linaro.org>
5170 L:      linux-media@vger.kernel.org
5171 L:      dri-devel@lists.freedesktop.org
5172 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5173 S:      Maintained
5174 T:      git git://anongit.freedesktop.org/drm/drm-misc
5175 F:      drivers/dma-buf/dma-heap.c
5176 F:      drivers/dma-buf/heaps/*
5177 F:      include/linux/dma-heap.h
5178 F:      include/uapi/linux/dma-heap.h
5179
5180 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5181 M:      Lukasz Luba <lukasz.luba@arm.com>
5182 L:      linux-pm@vger.kernel.org
5183 L:      linux-samsung-soc@vger.kernel.org
5184 S:      Maintained
5185 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5186 F:      drivers/memory/samsung/exynos5422-dmc.c
5187
5188 DME1737 HARDWARE MONITOR DRIVER
5189 M:      Juerg Haefliger <juergh@gmail.com>
5190 L:      linux-hwmon@vger.kernel.org
5191 S:      Maintained
5192 F:      Documentation/hwmon/dme1737.rst
5193 F:      drivers/hwmon/dme1737.c
5194
5195 DMI/SMBIOS SUPPORT
5196 M:      Jean Delvare <jdelvare@suse.com>
5197 S:      Maintained
5198 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5199 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5200 F:      drivers/firmware/dmi-id.c
5201 F:      drivers/firmware/dmi_scan.c
5202 F:      include/linux/dmi.h
5203
5204 DOCUMENTATION
5205 M:      Jonathan Corbet <corbet@lwn.net>
5206 L:      linux-doc@vger.kernel.org
5207 S:      Maintained
5208 T:      git git://git.lwn.net/linux.git docs-next
5209 F:      Documentation/
5210 F:      scripts/documentation-file-ref-check
5211 F:      scripts/kernel-doc
5212 F:      scripts/sphinx-pre-install
5213 X:      Documentation/ABI/
5214 X:      Documentation/admin-guide/media/
5215 X:      Documentation/devicetree/
5216 X:      Documentation/driver-api/media/
5217 X:      Documentation/firmware-guide/acpi/
5218 X:      Documentation/i2c/
5219 X:      Documentation/power/
5220 X:      Documentation/spi/
5221 X:      Documentation/userspace-api/media/
5222
5223 DOCUMENTATION SCRIPTS
5224 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5225 L:      linux-doc@vger.kernel.org
5226 S:      Maintained
5227 F:      Documentation/sphinx/parse-headers.pl
5228 F:      scripts/documentation-file-ref-check
5229 F:      scripts/sphinx-pre-install
5230
5231 DOCUMENTATION/ITALIAN
5232 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5233 L:      linux-doc@vger.kernel.org
5234 S:      Maintained
5235 F:      Documentation/translations/it_IT
5236
5237 DONGWOON DW9714 LENS VOICE COIL DRIVER
5238 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5239 L:      linux-media@vger.kernel.org
5240 S:      Maintained
5241 T:      git git://linuxtv.org/media_tree.git
5242 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5243 F:      drivers/media/i2c/dw9714.c
5244
5245 DONGWOON DW9807 LENS VOICE COIL DRIVER
5246 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5247 L:      linux-media@vger.kernel.org
5248 S:      Maintained
5249 T:      git git://linuxtv.org/media_tree.git
5250 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5251 F:      drivers/media/i2c/dw9807-vcm.c
5252
5253 DOUBLETALK DRIVER
5254 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5255 L:      blinux-list@redhat.com
5256 S:      Maintained
5257 F:      drivers/char/dtlk.c
5258 F:      include/linux/dtlk.h
5259
5260 DPAA2 DATAPATH I/O (DPIO) DRIVER
5261 M:      Roy Pledge <Roy.Pledge@nxp.com>
5262 L:      linux-kernel@vger.kernel.org
5263 S:      Maintained
5264 F:      drivers/soc/fsl/dpio
5265
5266 DPAA2 ETHERNET DRIVER
5267 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5268 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5269 L:      netdev@vger.kernel.org
5270 S:      Maintained
5271 F:      Documentation/networking/device_drivers/freescale/dpaa2/ethernet-driver.rst
5272 F:      Documentation/networking/device_drivers/freescale/dpaa2/mac-phy-support.rst
5273 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5274 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5275 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5276 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5277 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5278 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5279 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5280
5281 DPAA2 ETHERNET SWITCH DRIVER
5282 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5283 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5284 L:      linux-kernel@vger.kernel.org
5285 S:      Maintained
5286 F:      drivers/staging/fsl-dpaa2/ethsw
5287
5288 DPT_I2O SCSI RAID DRIVER
5289 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5290 L:      linux-scsi@vger.kernel.org
5291 S:      Maintained
5292 W:      http://www.adaptec.com/
5293 F:      drivers/scsi/dpt*
5294 F:      drivers/scsi/dpt/
5295
5296 DRBD DRIVER
5297 M:      Philipp Reisner <philipp.reisner@linbit.com>
5298 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5299 L:      drbd-dev@lists.linbit.com
5300 S:      Supported
5301 W:      http://www.drbd.org
5302 T:      git git://git.linbit.com/linux-drbd.git
5303 T:      git git://git.linbit.com/drbd-8.4.git
5304 F:      Documentation/admin-guide/blockdev/
5305 F:      drivers/block/drbd/
5306 F:      lib/lru_cache.c
5307
5308 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5309 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5310 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5311 S:      Supported
5312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5313 F:      Documentation/core-api/kobject.rst
5314 F:      drivers/base/
5315 F:      fs/debugfs/
5316 F:      fs/sysfs/
5317 F:      include/linux/debugfs.h
5318 F:      include/linux/kobj*
5319 F:      lib/kobj*
5320
5321 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
5322 M:      Kevin Hilman <khilman@kernel.org>
5323 M:      Nishanth Menon <nm@ti.com>
5324 L:      linux-pm@vger.kernel.org
5325 S:      Maintained
5326 F:      drivers/power/avs/
5327 F:      include/linux/power/smartreflex.h
5328
5329 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5330 M:      Maxime Ripard <mripard@kernel.org>
5331 M:      Chen-Yu Tsai <wens@csie.org>
5332 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5333 L:      dri-devel@lists.freedesktop.org
5334 S:      Supported
5335 T:      git git://anongit.freedesktop.org/drm/drm-misc
5336 F:      drivers/gpu/drm/sun4i/sun8i*
5337
5338 DRM DRIVER FOR ARM PL111 CLCD
5339 M:      Eric Anholt <eric@anholt.net>
5340 S:      Supported
5341 T:      git git://anongit.freedesktop.org/drm/drm-misc
5342 F:      drivers/gpu/drm/pl111/
5343
5344 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5345 M:      Linus Walleij <linus.walleij@linaro.org>
5346 S:      Maintained
5347 T:      git git://anongit.freedesktop.org/drm/drm-misc
5348 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5349 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5350
5351 DRM DRIVER FOR ASPEED BMC GFX
5352 M:      Joel Stanley <joel@jms.id.au>
5353 L:      linux-aspeed@lists.ozlabs.org
5354 S:      Supported
5355 T:      git git://anongit.freedesktop.org/drm/drm-misc
5356 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5357 F:      drivers/gpu/drm/aspeed/
5358
5359 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5360 M:      Dave Airlie <airlied@redhat.com>
5361 S:      Odd Fixes
5362 F:      drivers/gpu/drm/ast/
5363
5364 DRM DRIVER FOR BOCHS VIRTUAL GPU
5365 M:      Gerd Hoffmann <kraxel@redhat.com>
5366 L:      virtualization@lists.linux-foundation.org
5367 S:      Maintained
5368 T:      git git://anongit.freedesktop.org/drm/drm-misc
5369 F:      drivers/gpu/drm/bochs/
5370
5371 DRM DRIVER FOR BOE HIMAX8279D PANELS
5372 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5373 S:      Maintained
5374 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5375 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5376
5377 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5378 M:      Linus Walleij <linus.walleij@linaro.org>
5379 S:      Maintained
5380 T:      git git://anongit.freedesktop.org/drm/drm-misc
5381 F:      drivers/gpu/drm/tve200/
5382
5383 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5384 M:      Icenowy Zheng <icenowy@aosc.io>
5385 S:      Maintained
5386 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5387 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5388
5389 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5390 M:      Jagan Teki <jagan@amarulasolutions.com>
5391 S:      Maintained
5392 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5393 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5394
5395 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5396 M:      Hans de Goede <hdegoede@redhat.com>
5397 S:      Maintained
5398 T:      git git://anongit.freedesktop.org/drm/drm-misc
5399 F:      drivers/gpu/drm/tiny/gm12u320.c
5400
5401 DRM DRIVER FOR HX8357D PANELS
5402 M:      Eric Anholt <eric@anholt.net>
5403 S:      Maintained
5404 T:      git git://anongit.freedesktop.org/drm/drm-misc
5405 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5406 F:      drivers/gpu/drm/tiny/hx8357d.c
5407
5408 DRM DRIVER FOR ILITEK ILI9225 PANELS
5409 M:      David Lechner <david@lechnology.com>
5410 S:      Maintained
5411 T:      git git://anongit.freedesktop.org/drm/drm-misc
5412 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5413 F:      drivers/gpu/drm/tiny/ili9225.c
5414
5415 DRM DRIVER FOR ILITEK ILI9486 PANELS
5416 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5417 S:      Maintained
5418 T:      git git://anongit.freedesktop.org/drm/drm-misc
5419 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5420 F:      drivers/gpu/drm/tiny/ili9486.c
5421
5422 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5423 S:      Orphan / Obsolete
5424 F:      drivers/gpu/drm/i810/
5425 F:      include/uapi/drm/i810_drm.h
5426
5427 DRM DRIVER FOR LVDS PANELS
5428 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5429 L:      dri-devel@lists.freedesktop.org
5430 T:      git git://anongit.freedesktop.org/drm/drm-misc
5431 S:      Maintained
5432 F:      drivers/gpu/drm/panel/panel-lvds.c
5433 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5434
5435 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5436 S:      Orphan / Obsolete
5437 F:      drivers/gpu/drm/mga/
5438 F:      include/uapi/drm/mga_drm.h
5439
5440 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
5441 M:      Dave Airlie <airlied@redhat.com>
5442 S:      Odd Fixes
5443 F:      drivers/gpu/drm/mgag200/
5444
5445 DRM DRIVER FOR MI0283QT
5446 M:      Noralf Trønnes <noralf@tronnes.org>
5447 S:      Maintained
5448 T:      git git://anongit.freedesktop.org/drm/drm-misc
5449 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5450 F:      drivers/gpu/drm/tiny/mi0283qt.c
5451
5452 DRM DRIVER FOR MSM ADRENO GPU
5453 M:      Rob Clark <robdclark@gmail.com>
5454 M:      Sean Paul <sean@poorly.run>
5455 L:      linux-arm-msm@vger.kernel.org
5456 L:      dri-devel@lists.freedesktop.org
5457 L:      freedreno@lists.freedesktop.org
5458 S:      Maintained
5459 T:      git https://gitlab.freedesktop.org/drm/msm.git
5460 F:      Documentation/devicetree/bindings/display/msm/
5461 F:      drivers/gpu/drm/msm/
5462 F:      include/uapi/drm/msm_drm.h
5463
5464 DRM DRIVER FOR NOVATEK NT35510 PANELS
5465 M:      Linus Walleij <linus.walleij@linaro.org>
5466 S:      Maintained
5467 T:      git git://anongit.freedesktop.org/drm/drm-misc
5468 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5469 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5470
5471 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5472 M:      Ben Skeggs <bskeggs@redhat.com>
5473 L:      dri-devel@lists.freedesktop.org
5474 L:      nouveau@lists.freedesktop.org
5475 S:      Supported
5476 T:      git git://github.com/skeggsb/linux
5477 F:      drivers/gpu/drm/nouveau/
5478 F:      include/uapi/drm/nouveau_drm.h
5479
5480 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5481 M:      Stefan Mavrodiev <stefan@olimex.com>
5482 S:      Maintained
5483 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5484 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5485
5486 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5487 M:      Noralf Trønnes <noralf@tronnes.org>
5488 S:      Maintained
5489 T:      git git://anongit.freedesktop.org/drm/drm-misc
5490 F:      Documentation/devicetree/bindings/display/repaper.txt
5491 F:      drivers/gpu/drm/tiny/repaper.c
5492
5493 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5494 M:      Dave Airlie <airlied@redhat.com>
5495 M:      Gerd Hoffmann <kraxel@redhat.com>
5496 L:      virtualization@lists.linux-foundation.org
5497 S:      Obsolete
5498 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5499 T:      git git://anongit.freedesktop.org/drm/drm-misc
5500 F:      drivers/gpu/drm/tiny/cirrus.c
5501
5502 DRM DRIVER FOR QXL VIRTUAL GPU
5503 M:      Dave Airlie <airlied@redhat.com>
5504 M:      Gerd Hoffmann <kraxel@redhat.com>
5505 L:      virtualization@lists.linux-foundation.org
5506 L:      spice-devel@lists.freedesktop.org
5507 S:      Maintained
5508 T:      git git://anongit.freedesktop.org/drm/drm-misc
5509 F:      drivers/gpu/drm/qxl/
5510 F:      include/uapi/drm/qxl_drm.h
5511
5512 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5513 S:      Orphan / Obsolete
5514 F:      drivers/gpu/drm/r128/
5515 F:      include/uapi/drm/r128_drm.h
5516
5517 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5518 M:      Robert Chiras <robert.chiras@nxp.com>
5519 S:      Maintained
5520 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.txt
5521 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5522
5523 DRM DRIVER FOR ROCKTECH JH057N00900 PANELS
5524 M:      Guido Günther <agx@sigxcpu.org>
5525 R:      Purism Kernel Team <kernel@puri.sm>
5526 S:      Maintained
5527 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.txt
5528 F:      drivers/gpu/drm/panel/panel-rocktech-jh057n00900.c
5529
5530 DRM DRIVER FOR SAVAGE VIDEO CARDS
5531 S:      Orphan / Obsolete
5532 F:      drivers/gpu/drm/savage/
5533 F:      include/uapi/drm/savage_drm.h
5534
5535 DRM DRIVER FOR SIS VIDEO CARDS
5536 S:      Orphan / Obsolete
5537 F:      drivers/gpu/drm/sis/
5538 F:      include/uapi/drm/sis_drm.h
5539
5540 DRM DRIVER FOR SITRONIX ST7586 PANELS
5541 M:      David Lechner <david@lechnology.com>
5542 S:      Maintained
5543 T:      git git://anongit.freedesktop.org/drm/drm-misc
5544 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5545 F:      drivers/gpu/drm/tiny/st7586.c
5546
5547 DRM DRIVER FOR SITRONIX ST7701 PANELS
5548 M:      Jagan Teki <jagan@amarulasolutions.com>
5549 S:      Maintained
5550 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5551 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5552
5553 DRM DRIVER FOR SITRONIX ST7735R PANELS
5554 M:      David Lechner <david@lechnology.com>
5555 S:      Maintained
5556 T:      git git://anongit.freedesktop.org/drm/drm-misc
5557 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5558 F:      drivers/gpu/drm/tiny/st7735r.c
5559
5560 DRM DRIVER FOR SONY ACX424AKP PANELS
5561 M:      Linus Walleij <linus.walleij@linaro.org>
5562 S:      Maintained
5563 T:      git git://anongit.freedesktop.org/drm/drm-misc
5564 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5565
5566 DRM DRIVER FOR ST-ERICSSON MCDE
5567 M:      Linus Walleij <linus.walleij@linaro.org>
5568 S:      Maintained
5569 T:      git git://anongit.freedesktop.org/drm/drm-misc
5570 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5571 F:      drivers/gpu/drm/mcde/
5572
5573 DRM DRIVER FOR TDFX VIDEO CARDS
5574 S:      Orphan / Obsolete
5575 F:      drivers/gpu/drm/tdfx/
5576
5577 DRM DRIVER FOR TPO TPG110 PANELS
5578 M:      Linus Walleij <linus.walleij@linaro.org>
5579 S:      Maintained
5580 T:      git git://anongit.freedesktop.org/drm/drm-misc
5581 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5582 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5583
5584 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5585 M:      Dave Airlie <airlied@redhat.com>
5586 R:      Sean Paul <sean@poorly.run>
5587 L:      dri-devel@lists.freedesktop.org
5588 S:      Odd Fixes
5589 T:      git git://anongit.freedesktop.org/drm/drm-misc
5590 F:      drivers/gpu/drm/udl/
5591
5592 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5593 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5594 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
5595 R:      Daniel Vetter <daniel@ffwll.ch>
5596 L:      dri-devel@lists.freedesktop.org
5597 S:      Maintained
5598 T:      git git://anongit.freedesktop.org/drm/drm-misc
5599 F:      Documentation/gpu/vkms.rst
5600 F:      drivers/gpu/drm/vkms/
5601
5602 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5603 M:      Hans de Goede <hdegoede@redhat.com>
5604 L:      dri-devel@lists.freedesktop.org
5605 S:      Maintained
5606 T:      git git://anongit.freedesktop.org/drm/drm-misc
5607 F:      drivers/gpu/drm/vboxvideo/
5608
5609 DRM DRIVER FOR VMWARE VIRTUAL GPU
5610 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5611 M:      Roland Scheidegger <sroland@vmware.com>
5612 L:      dri-devel@lists.freedesktop.org
5613 S:      Supported
5614 T:      git git://people.freedesktop.org/~sroland/linux
5615 F:      drivers/gpu/drm/vmwgfx/
5616 F:      include/uapi/drm/vmwgfx_drm.h
5617
5618 DRM DRIVERS
5619 M:      David Airlie <airlied@linux.ie>
5620 M:      Daniel Vetter <daniel@ffwll.ch>
5621 L:      dri-devel@lists.freedesktop.org
5622 S:      Maintained
5623 B:      https://bugs.freedesktop.org/
5624 C:      irc://chat.freenode.net/dri-devel
5625 T:      git git://anongit.freedesktop.org/drm/drm
5626 F:      Documentation/devicetree/bindings/display/
5627 F:      Documentation/devicetree/bindings/gpu/
5628 F:      Documentation/gpu/
5629 F:      drivers/gpu/drm/
5630 F:      drivers/gpu/vga/
5631 F:      include/drm/
5632 F:      include/linux/vga*
5633 F:      include/uapi/drm/
5634
5635 DRM DRIVERS AND MISC GPU PATCHES
5636 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5637 M:      Maxime Ripard <mripard@kernel.org>
5638 M:      Thomas Zimmermann <tzimmermann@suse.de>
5639 S:      Maintained
5640 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5641 T:      git git://anongit.freedesktop.org/drm/drm-misc
5642 F:      Documentation/gpu/
5643 F:      drivers/gpu/drm/*
5644 F:      drivers/gpu/vga/
5645 F:      include/drm/drm*
5646 F:      include/linux/vga*
5647 F:      include/uapi/drm/drm*
5648
5649 DRM DRIVERS FOR ALLWINNER A10
5650 M:      Maxime Ripard <mripard@kernel.org>
5651 M:      Chen-Yu Tsai <wens@csie.org>
5652 L:      dri-devel@lists.freedesktop.org
5653 S:      Supported
5654 T:      git git://anongit.freedesktop.org/drm/drm-misc
5655 F:      Documentation/devicetree/bindings/display/allwinner*
5656 F:      drivers/gpu/drm/sun4i/
5657
5658 DRM DRIVERS FOR AMLOGIC SOCS
5659 M:      Neil Armstrong <narmstrong@baylibre.com>
5660 L:      dri-devel@lists.freedesktop.org
5661 L:      linux-amlogic@lists.infradead.org
5662 S:      Supported
5663 W:      http://linux-meson.com/
5664 T:      git git://anongit.freedesktop.org/drm/drm-misc
5665 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5666 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5667 F:      Documentation/gpu/meson.rst
5668 F:      drivers/gpu/drm/meson/
5669
5670 DRM DRIVERS FOR ATMEL HLCDC
5671 M:      Sam Ravnborg <sam@ravnborg.org>
5672 M:      Boris Brezillon <bbrezillon@kernel.org>
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/atmel/
5677 F:      drivers/gpu/drm/atmel-hlcdc/
5678
5679 DRM DRIVERS FOR BRIDGE CHIPS
5680 M:      Andrzej Hajda <a.hajda@samsung.com>
5681 M:      Neil Armstrong <narmstrong@baylibre.com>
5682 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5683 R:      Jonas Karlman <jonas@kwiboo.se>
5684 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5685 S:      Maintained
5686 T:      git git://anongit.freedesktop.org/drm/drm-misc
5687 F:      drivers/gpu/drm/bridge/
5688
5689 DRM DRIVERS FOR EXYNOS
5690 M:      Inki Dae <inki.dae@samsung.com>
5691 M:      Joonyoung Shim <jy0922.shim@samsung.com>
5692 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
5693 M:      Kyungmin Park <kyungmin.park@samsung.com>
5694 L:      dri-devel@lists.freedesktop.org
5695 S:      Supported
5696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5697 F:      Documentation/devicetree/bindings/display/exynos/
5698 F:      drivers/gpu/drm/exynos/
5699 F:      include/uapi/drm/exynos_drm.h
5700
5701 DRM DRIVERS FOR FREESCALE DCU
5702 M:      Stefan Agner <stefan@agner.ch>
5703 M:      Alison Wang <alison.wang@nxp.com>
5704 L:      dri-devel@lists.freedesktop.org
5705 S:      Supported
5706 T:      git git://anongit.freedesktop.org/drm/drm-misc
5707 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5708 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5709 F:      drivers/gpu/drm/fsl-dcu/
5710
5711 DRM DRIVERS FOR FREESCALE IMX
5712 M:      Philipp Zabel <p.zabel@pengutronix.de>
5713 L:      dri-devel@lists.freedesktop.org
5714 S:      Maintained
5715 F:      Documentation/devicetree/bindings/display/imx/
5716 F:      drivers/gpu/drm/imx/
5717 F:      drivers/gpu/ipu-v3/
5718
5719 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5720 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5721 L:      dri-devel@lists.freedesktop.org
5722 S:      Maintained
5723 T:      git git://github.com/patjak/drm-gma500
5724 F:      drivers/gpu/drm/gma500/
5725
5726 DRM DRIVERS FOR HISILICON
5727 M:      Xinliang Liu <xinliang.liu@linaro.org>
5728 M:      Rongrong Zou <zourongrong@gmail.com>
5729 R:      John Stultz <john.stultz@linaro.org>
5730 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
5731 R:      Chen Feng <puck.chen@hisilicon.com>
5732 L:      dri-devel@lists.freedesktop.org
5733 S:      Maintained
5734 T:      git git://anongit.freedesktop.org/drm/drm-misc
5735 F:      Documentation/devicetree/bindings/display/hisilicon/
5736 F:      drivers/gpu/drm/hisilicon/
5737
5738 DRM DRIVERS FOR LIMA
5739 M:      Qiang Yu <yuq825@gmail.com>
5740 L:      dri-devel@lists.freedesktop.org
5741 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
5742 S:      Maintained
5743 T:      git git://anongit.freedesktop.org/drm/drm-misc
5744 F:      drivers/gpu/drm/lima/
5745 F:      include/uapi/drm/lima_drm.h
5746
5747 DRM DRIVERS FOR MEDIATEK
5748 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
5749 M:      Philipp Zabel <p.zabel@pengutronix.de>
5750 L:      dri-devel@lists.freedesktop.org
5751 S:      Supported
5752 F:      Documentation/devicetree/bindings/display/mediatek/
5753 F:      drivers/gpu/drm/mediatek/
5754
5755 DRM DRIVERS FOR NVIDIA TEGRA
5756 M:      Thierry Reding <thierry.reding@gmail.com>
5757 L:      dri-devel@lists.freedesktop.org
5758 L:      linux-tegra@vger.kernel.org
5759 S:      Supported
5760 T:      git git://anongit.freedesktop.org/tegra/linux.git
5761 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5762 F:      drivers/gpu/drm/tegra/
5763 F:      drivers/gpu/host1x/
5764 F:      include/linux/host1x.h
5765 F:      include/uapi/drm/tegra_drm.h
5766
5767 DRM DRIVERS FOR RENESAS
5768 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5769 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5770 L:      dri-devel@lists.freedesktop.org
5771 L:      linux-renesas-soc@vger.kernel.org
5772 S:      Supported
5773 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5774 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5775 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
5776 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5777 F:      drivers/gpu/drm/rcar-du/
5778 F:      drivers/gpu/drm/shmobile/
5779 F:      include/linux/platform_data/shmob_drm.h
5780
5781 DRM DRIVERS FOR ROCKCHIP
5782 M:      Sandy Huang <hjc@rock-chips.com>
5783 M:      Heiko Stübner <heiko@sntech.de>
5784 L:      dri-devel@lists.freedesktop.org
5785 S:      Maintained
5786 T:      git git://anongit.freedesktop.org/drm/drm-misc
5787 F:      Documentation/devicetree/bindings/display/rockchip/
5788 F:      drivers/gpu/drm/rockchip/
5789
5790 DRM DRIVERS FOR STI
5791 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5792 M:      Vincent Abriou <vincent.abriou@st.com>
5793 L:      dri-devel@lists.freedesktop.org
5794 S:      Maintained
5795 T:      git git://anongit.freedesktop.org/drm/drm-misc
5796 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5797 F:      drivers/gpu/drm/sti
5798
5799 DRM DRIVERS FOR STM
5800 M:      Yannick Fertre <yannick.fertre@st.com>
5801 M:      Philippe Cornu <philippe.cornu@st.com>
5802 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5803 M:      Vincent Abriou <vincent.abriou@st.com>
5804 L:      dri-devel@lists.freedesktop.org
5805 S:      Maintained
5806 T:      git git://anongit.freedesktop.org/drm/drm-misc
5807 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5808 F:      drivers/gpu/drm/stm
5809
5810 DRM DRIVERS FOR TI KEYSTONE
5811 M:      Jyri Sarha <jsarha@ti.com>
5812 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5813 L:      dri-devel@lists.freedesktop.org
5814 S:      Maintained
5815 T:      git git://anongit.freedesktop.org/drm/drm-misc
5816 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5817 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5818 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5819 F:      drivers/gpu/drm/tidss/
5820
5821 DRM DRIVERS FOR TI LCDC
5822 M:      Jyri Sarha <jsarha@ti.com>
5823 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5824 L:      dri-devel@lists.freedesktop.org
5825 S:      Maintained
5826 F:      Documentation/devicetree/bindings/display/tilcdc/
5827 F:      drivers/gpu/drm/tilcdc/
5828
5829 DRM DRIVERS FOR TI OMAP
5830 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5831 L:      dri-devel@lists.freedesktop.org
5832 S:      Maintained
5833 F:      Documentation/devicetree/bindings/display/ti/
5834 F:      drivers/gpu/drm/omapdrm/
5835
5836 DRM DRIVERS FOR V3D
5837 M:      Eric Anholt <eric@anholt.net>
5838 S:      Supported
5839 T:      git git://anongit.freedesktop.org/drm/drm-misc
5840 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5841 F:      drivers/gpu/drm/v3d/
5842 F:      include/uapi/drm/v3d_drm.h
5843
5844 DRM DRIVERS FOR VC4
5845 M:      Eric Anholt <eric@anholt.net>
5846 S:      Supported
5847 T:      git git://github.com/anholt/linux
5848 T:      git git://anongit.freedesktop.org/drm/drm-misc
5849 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
5850 F:      drivers/gpu/drm/vc4/
5851 F:      include/uapi/drm/vc4_drm.h
5852
5853 DRM DRIVERS FOR VIVANTE GPU IP
5854 M:      Lucas Stach <l.stach@pengutronix.de>
5855 R:      Russell King <linux+etnaviv@armlinux.org.uk>
5856 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
5857 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
5858 L:      dri-devel@lists.freedesktop.org
5859 S:      Maintained
5860 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
5861 F:      drivers/gpu/drm/etnaviv/
5862 F:      include/uapi/drm/etnaviv_drm.h
5863
5864 DRM DRIVERS FOR XEN
5865 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
5866 L:      dri-devel@lists.freedesktop.org
5867 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
5868 S:      Supported
5869 T:      git git://anongit.freedesktop.org/drm/drm-misc
5870 F:      Documentation/gpu/xen-front.rst
5871 F:      drivers/gpu/drm/xen/
5872
5873 DRM DRIVERS FOR ZTE ZX
5874 M:      Shawn Guo <shawnguo@kernel.org>
5875 L:      dri-devel@lists.freedesktop.org
5876 S:      Maintained
5877 T:      git git://anongit.freedesktop.org/drm/drm-misc
5878 F:      Documentation/devicetree/bindings/display/zte,vou.txt
5879 F:      drivers/gpu/drm/zte/
5880
5881 DRM PANEL DRIVERS
5882 M:      Thierry Reding <thierry.reding@gmail.com>
5883 R:      Sam Ravnborg <sam@ravnborg.org>
5884 L:      dri-devel@lists.freedesktop.org
5885 S:      Maintained
5886 T:      git git://anongit.freedesktop.org/drm/drm-misc
5887 F:      Documentation/devicetree/bindings/display/panel/
5888 F:      drivers/gpu/drm/drm_panel.c
5889 F:      drivers/gpu/drm/panel/
5890 F:      include/drm/drm_panel.h
5891
5892 DRM TTM SUBSYSTEM
5893 M:      Christian Koenig <christian.koenig@amd.com>
5894 M:      Huang Rui <ray.huang@amd.com>
5895 L:      dri-devel@lists.freedesktop.org
5896 S:      Maintained
5897 T:      git git://people.freedesktop.org/~agd5f/linux
5898 F:      drivers/gpu/drm/ttm/
5899 F:      include/drm/ttm/
5900
5901 DSBR100 USB FM RADIO DRIVER
5902 M:      Alexey Klimov <klimov.linux@gmail.com>
5903 L:      linux-media@vger.kernel.org
5904 S:      Maintained
5905 T:      git git://linuxtv.org/media_tree.git
5906 F:      drivers/media/radio/dsbr100.c
5907
5908 DT3155 MEDIA DRIVER
5909 M:      Hans Verkuil <hverkuil@xs4all.nl>
5910 L:      linux-media@vger.kernel.org
5911 S:      Odd Fixes
5912 W:      https://linuxtv.org
5913 T:      git git://linuxtv.org/media_tree.git
5914 F:      drivers/media/pci/dt3155/
5915
5916 DVB_USB_AF9015 MEDIA DRIVER
5917 M:      Antti Palosaari <crope@iki.fi>
5918 L:      linux-media@vger.kernel.org
5919 S:      Maintained
5920 W:      https://linuxtv.org
5921 W:      http://palosaari.fi/linux/
5922 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5923 T:      git git://linuxtv.org/anttip/media_tree.git
5924 F:      drivers/media/usb/dvb-usb-v2/af9015*
5925
5926 DVB_USB_AF9035 MEDIA DRIVER
5927 M:      Antti Palosaari <crope@iki.fi>
5928 L:      linux-media@vger.kernel.org
5929 S:      Maintained
5930 W:      https://linuxtv.org
5931 W:      http://palosaari.fi/linux/
5932 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5933 T:      git git://linuxtv.org/anttip/media_tree.git
5934 F:      drivers/media/usb/dvb-usb-v2/af9035*
5935
5936 DVB_USB_ANYSEE MEDIA DRIVER
5937 M:      Antti Palosaari <crope@iki.fi>
5938 L:      linux-media@vger.kernel.org
5939 S:      Maintained
5940 W:      https://linuxtv.org
5941 W:      http://palosaari.fi/linux/
5942 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5943 T:      git git://linuxtv.org/anttip/media_tree.git
5944 F:      drivers/media/usb/dvb-usb-v2/anysee*
5945
5946 DVB_USB_AU6610 MEDIA DRIVER
5947 M:      Antti Palosaari <crope@iki.fi>
5948 L:      linux-media@vger.kernel.org
5949 S:      Maintained
5950 W:      https://linuxtv.org
5951 W:      http://palosaari.fi/linux/
5952 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5953 T:      git git://linuxtv.org/anttip/media_tree.git
5954 F:      drivers/media/usb/dvb-usb-v2/au6610*
5955
5956 DVB_USB_CE6230 MEDIA DRIVER
5957 M:      Antti Palosaari <crope@iki.fi>
5958 L:      linux-media@vger.kernel.org
5959 S:      Maintained
5960 W:      https://linuxtv.org
5961 W:      http://palosaari.fi/linux/
5962 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5963 T:      git git://linuxtv.org/anttip/media_tree.git
5964 F:      drivers/media/usb/dvb-usb-v2/ce6230*
5965
5966 DVB_USB_CXUSB MEDIA DRIVER
5967 M:      Michael Krufky <mkrufky@linuxtv.org>
5968 L:      linux-media@vger.kernel.org
5969 S:      Maintained
5970 W:      https://linuxtv.org
5971 W:      http://github.com/mkrufky
5972 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5973 T:      git git://linuxtv.org/media_tree.git
5974 F:      drivers/media/usb/dvb-usb/cxusb*
5975
5976 DVB_USB_EC168 MEDIA DRIVER
5977 M:      Antti Palosaari <crope@iki.fi>
5978 L:      linux-media@vger.kernel.org
5979 S:      Maintained
5980 W:      https://linuxtv.org
5981 W:      http://palosaari.fi/linux/
5982 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5983 T:      git git://linuxtv.org/anttip/media_tree.git
5984 F:      drivers/media/usb/dvb-usb-v2/ec168*
5985
5986 DVB_USB_GL861 MEDIA DRIVER
5987 M:      Antti Palosaari <crope@iki.fi>
5988 L:      linux-media@vger.kernel.org
5989 S:      Maintained
5990 W:      https://linuxtv.org
5991 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5992 T:      git git://linuxtv.org/anttip/media_tree.git
5993 F:      drivers/media/usb/dvb-usb-v2/gl861*
5994
5995 DVB_USB_MXL111SF MEDIA DRIVER
5996 M:      Michael Krufky <mkrufky@linuxtv.org>
5997 L:      linux-media@vger.kernel.org
5998 S:      Maintained
5999 W:      https://linuxtv.org
6000 W:      http://github.com/mkrufky
6001 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6002 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6003 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6004
6005 DVB_USB_RTL28XXU MEDIA DRIVER
6006 M:      Antti Palosaari <crope@iki.fi>
6007 L:      linux-media@vger.kernel.org
6008 S:      Maintained
6009 W:      https://linuxtv.org
6010 W:      http://palosaari.fi/linux/
6011 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6012 T:      git git://linuxtv.org/anttip/media_tree.git
6013 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6014
6015 DVB_USB_V2 MEDIA DRIVER
6016 M:      Antti Palosaari <crope@iki.fi>
6017 L:      linux-media@vger.kernel.org
6018 S:      Maintained
6019 W:      https://linuxtv.org
6020 W:      http://palosaari.fi/linux/
6021 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6022 T:      git git://linuxtv.org/anttip/media_tree.git
6023 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6024 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6025
6026 DYNAMIC DEBUG
6027 M:      Jason Baron <jbaron@akamai.com>
6028 S:      Maintained
6029 F:      include/linux/dynamic_debug.h
6030 F:      lib/dynamic_debug.c
6031
6032 DYNAMIC INTERRUPT MODERATION
6033 M:      Tal Gilboa <talgi@mellanox.com>
6034 S:      Maintained
6035 F:      Documentation/networking/net_dim.rst
6036 F:      include/linux/dim.h
6037 F:      lib/dim/
6038
6039 DZ DECSTATION DZ11 SERIAL DRIVER
6040 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
6041 S:      Maintained
6042 F:      drivers/tty/serial/dz.*
6043
6044 E3X0 POWER BUTTON DRIVER
6045 M:      Moritz Fischer <moritz.fischer@ettus.com>
6046 L:      usrp-users@lists.ettus.com
6047 S:      Supported
6048 W:      http://www.ettus.com
6049 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6050 F:      drivers/input/misc/e3x0-button.c
6051
6052 E4000 MEDIA DRIVER
6053 M:      Antti Palosaari <crope@iki.fi>
6054 L:      linux-media@vger.kernel.org
6055 S:      Maintained
6056 W:      https://linuxtv.org
6057 W:      http://palosaari.fi/linux/
6058 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6059 T:      git git://linuxtv.org/anttip/media_tree.git
6060 F:      drivers/media/tuners/e4000*
6061
6062 EARTH_PT1 MEDIA DRIVER
6063 M:      Akihiro Tsukada <tskd08@gmail.com>
6064 L:      linux-media@vger.kernel.org
6065 S:      Odd Fixes
6066 F:      drivers/media/pci/pt1/
6067
6068 EARTH_PT3 MEDIA DRIVER
6069 M:      Akihiro Tsukada <tskd08@gmail.com>
6070 L:      linux-media@vger.kernel.org
6071 S:      Odd Fixes
6072 F:      drivers/media/pci/pt3/
6073
6074 EC100 MEDIA DRIVER
6075 M:      Antti Palosaari <crope@iki.fi>
6076 L:      linux-media@vger.kernel.org
6077 S:      Maintained
6078 W:      https://linuxtv.org
6079 W:      http://palosaari.fi/linux/
6080 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6081 T:      git git://linuxtv.org/anttip/media_tree.git
6082 F:      drivers/media/dvb-frontends/ec100*
6083
6084 ECRYPT FILE SYSTEM
6085 M:      Tyler Hicks <code@tyhicks.com>
6086 L:      ecryptfs@vger.kernel.org
6087 S:      Odd Fixes
6088 W:      http://ecryptfs.org
6089 W:      https://launchpad.net/ecryptfs
6090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6091 F:      Documentation/filesystems/ecryptfs.rst
6092 F:      fs/ecryptfs/
6093
6094 EDAC-AMD64
6095 M:      Borislav Petkov <bp@alien8.de>
6096 L:      linux-edac@vger.kernel.org
6097 S:      Maintained
6098 F:      drivers/edac/amd64_edac*
6099
6100 EDAC-ARMADA
6101 M:      Jan Luebbe <jlu@pengutronix.de>
6102 L:      linux-edac@vger.kernel.org
6103 S:      Maintained
6104 F:      drivers/edac/armada_xp_*
6105
6106 EDAC-AST2500
6107 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6108 S:      Supported
6109 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6110 F:      drivers/edac/aspeed_edac.c
6111
6112 EDAC-BLUEFIELD
6113 M:      Shravan Kumar Ramani <sramani@mellanox.com>
6114 S:      Supported
6115 F:      drivers/edac/bluefield_edac.c
6116
6117 EDAC-CALXEDA
6118 M:      Robert Richter <rric@kernel.org>
6119 L:      linux-edac@vger.kernel.org
6120 S:      Maintained
6121 F:      drivers/edac/highbank*
6122
6123 EDAC-CAVIUM OCTEON
6124 M:      Ralf Baechle <ralf@linux-mips.org>
6125 M:      Robert Richter <rrichter@marvell.com>
6126 L:      linux-edac@vger.kernel.org
6127 L:      linux-mips@vger.kernel.org
6128 S:      Supported
6129 F:      drivers/edac/octeon_edac*
6130
6131 EDAC-CAVIUM THUNDERX
6132 M:      Robert Richter <rrichter@marvell.com>
6133 L:      linux-edac@vger.kernel.org
6134 S:      Supported
6135 F:      drivers/edac/thunderx_edac*
6136
6137 EDAC-CORE
6138 M:      Borislav Petkov <bp@alien8.de>
6139 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6140 M:      Tony Luck <tony.luck@intel.com>
6141 R:      James Morse <james.morse@arm.com>
6142 R:      Robert Richter <rrichter@marvell.com>
6143 L:      linux-edac@vger.kernel.org
6144 S:      Supported
6145 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6146 F:      Documentation/admin-guide/ras.rst
6147 F:      Documentation/driver-api/edac.rst
6148 F:      drivers/edac/
6149 F:      include/linux/edac.h
6150
6151 EDAC-DMC520
6152 M:      Lei Wang <lewan@microsoft.com>
6153 L:      linux-edac@vger.kernel.org
6154 S:      Supported
6155 F:      drivers/edac/dmc520_edac.c
6156
6157 EDAC-E752X
6158 M:      Mark Gross <mark.gross@intel.com>
6159 L:      linux-edac@vger.kernel.org
6160 S:      Maintained
6161 F:      drivers/edac/e752x_edac.c
6162
6163 EDAC-E7XXX
6164 L:      linux-edac@vger.kernel.org
6165 S:      Maintained
6166 F:      drivers/edac/e7xxx_edac.c
6167
6168 EDAC-FSL_DDR
6169 M:      York Sun <york.sun@nxp.com>
6170 L:      linux-edac@vger.kernel.org
6171 S:      Maintained
6172 F:      drivers/edac/fsl_ddr_edac.*
6173
6174 EDAC-GHES
6175 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6176 L:      linux-edac@vger.kernel.org
6177 S:      Maintained
6178 F:      drivers/edac/ghes_edac.c
6179
6180 EDAC-I10NM
6181 M:      Tony Luck <tony.luck@intel.com>
6182 L:      linux-edac@vger.kernel.org
6183 S:      Maintained
6184 F:      drivers/edac/i10nm_base.c
6185
6186 EDAC-I3000
6187 L:      linux-edac@vger.kernel.org
6188 S:      Orphan
6189 F:      drivers/edac/i3000_edac.c
6190
6191 EDAC-I5000
6192 L:      linux-edac@vger.kernel.org
6193 S:      Maintained
6194 F:      drivers/edac/i5000_edac.c
6195
6196 EDAC-I5400
6197 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6198 L:      linux-edac@vger.kernel.org
6199 S:      Maintained
6200 F:      drivers/edac/i5400_edac.c
6201
6202 EDAC-I7300
6203 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6204 L:      linux-edac@vger.kernel.org
6205 S:      Maintained
6206 F:      drivers/edac/i7300_edac.c
6207
6208 EDAC-I7CORE
6209 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6210 L:      linux-edac@vger.kernel.org
6211 S:      Maintained
6212 F:      drivers/edac/i7core_edac.c
6213
6214 EDAC-I82443BXGX
6215 M:      Tim Small <tim@buttersideup.com>
6216 L:      linux-edac@vger.kernel.org
6217 S:      Maintained
6218 F:      drivers/edac/i82443bxgx_edac.c
6219
6220 EDAC-I82975X
6221 M:      "Arvind R." <arvino55@gmail.com>
6222 L:      linux-edac@vger.kernel.org
6223 S:      Maintained
6224 F:      drivers/edac/i82975x_edac.c
6225
6226 EDAC-IE31200
6227 M:      Jason Baron <jbaron@akamai.com>
6228 L:      linux-edac@vger.kernel.org
6229 S:      Maintained
6230 F:      drivers/edac/ie31200_edac.c
6231
6232 EDAC-MPC85XX
6233 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6234 L:      linux-edac@vger.kernel.org
6235 S:      Maintained
6236 F:      drivers/edac/mpc85xx_edac.[ch]
6237
6238 EDAC-PASEMI
6239 M:      Egor Martovetsky <egor@pasemi.com>
6240 L:      linux-edac@vger.kernel.org
6241 S:      Maintained
6242 F:      drivers/edac/pasemi_edac.c
6243
6244 EDAC-PND2
6245 M:      Tony Luck <tony.luck@intel.com>
6246 L:      linux-edac@vger.kernel.org
6247 S:      Maintained
6248 F:      drivers/edac/pnd2_edac.[ch]
6249
6250 EDAC-QCOM
6251 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6252 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6253 L:      linux-arm-msm@vger.kernel.org
6254 L:      linux-edac@vger.kernel.org
6255 S:      Maintained
6256 F:      drivers/edac/qcom_edac.c
6257
6258 EDAC-R82600
6259 M:      Tim Small <tim@buttersideup.com>
6260 L:      linux-edac@vger.kernel.org
6261 S:      Maintained
6262 F:      drivers/edac/r82600_edac.c
6263
6264 EDAC-SBRIDGE
6265 M:      Tony Luck <tony.luck@intel.com>
6266 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6267 L:      linux-edac@vger.kernel.org
6268 S:      Maintained
6269 F:      drivers/edac/sb_edac.c
6270
6271 EDAC-SIFIVE
6272 M:      Yash Shah <yash.shah@sifive.com>
6273 L:      linux-edac@vger.kernel.org
6274 S:      Supported
6275 F:      drivers/edac/sifive_edac.c
6276
6277 EDAC-SKYLAKE
6278 M:      Tony Luck <tony.luck@intel.com>
6279 L:      linux-edac@vger.kernel.org
6280 S:      Maintained
6281 F:      drivers/edac/skx_*.c
6282
6283 EDAC-TI
6284 M:      Tero Kristo <t-kristo@ti.com>
6285 L:      linux-edac@vger.kernel.org
6286 S:      Maintained
6287 F:      drivers/edac/ti_edac.c
6288
6289 EDIROL UA-101/UA-1000 DRIVER
6290 M:      Clemens Ladisch <clemens@ladisch.de>
6291 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6292 S:      Maintained
6293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6294 F:      sound/usb/misc/ua101.c
6295
6296 EFI TEST DRIVER
6297 M:      Ivan Hu <ivan.hu@canonical.com>
6298 M:      Ard Biesheuvel <ardb@kernel.org>
6299 L:      linux-efi@vger.kernel.org
6300 S:      Maintained
6301 F:      drivers/firmware/efi/test/
6302
6303 EFI VARIABLE FILESYSTEM
6304 M:      Matthew Garrett <matthew.garrett@nebula.com>
6305 M:      Jeremy Kerr <jk@ozlabs.org>
6306 M:      Ard Biesheuvel <ardb@kernel.org>
6307 L:      linux-efi@vger.kernel.org
6308 S:      Maintained
6309 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6310 F:      fs/efivarfs/
6311
6312 EFIFB FRAMEBUFFER DRIVER
6313 M:      Peter Jones <pjones@redhat.com>
6314 L:      linux-fbdev@vger.kernel.org
6315 S:      Maintained
6316 F:      drivers/video/fbdev/efifb.c
6317
6318 EFS FILESYSTEM
6319 S:      Orphan
6320 W:      http://aeschi.ch.eu.org/efs/
6321 F:      fs/efs/
6322
6323 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6324 M:      Douglas Miller <dougmill@linux.ibm.com>
6325 L:      netdev@vger.kernel.org
6326 S:      Maintained
6327 F:      drivers/net/ethernet/ibm/ehea/
6328
6329 EM28XX VIDEO4LINUX DRIVER
6330 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6331 L:      linux-media@vger.kernel.org
6332 S:      Maintained
6333 W:      https://linuxtv.org
6334 T:      git git://linuxtv.org/media_tree.git
6335 F:      Documentation/admin-guide/media/em28xx*
6336 F:      drivers/media/usb/em28xx/
6337
6338 EMBEDDED LINUX
6339 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6340 M:      Matt Mackall <mpm@selenic.com>
6341 M:      David Woodhouse <dwmw2@infradead.org>
6342 L:      linux-embedded@vger.kernel.org
6343 S:      Maintained
6344
6345 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6346 M:      Adrian Hunter <adrian.hunter@intel.com>
6347 M:      Ritesh Harjani <riteshh@codeaurora.org>
6348 M:      Asutosh Das <asutoshd@codeaurora.org>
6349 L:      linux-mmc@vger.kernel.org
6350 S:      Maintained
6351 F:      drivers/mmc/host/cqhci*
6352
6353 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6354 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6355 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6356 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6357 L:      linux-scsi@vger.kernel.org
6358 S:      Supported
6359 W:      http://www.broadcom.com
6360 F:      drivers/scsi/be2iscsi/
6361
6362 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6363 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6364 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6365 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6366 L:      netdev@vger.kernel.org
6367 S:      Supported
6368 W:      http://www.emulex.com
6369 F:      drivers/net/ethernet/emulex/benet/
6370
6371 EMULEX ONECONNECT ROCE DRIVER
6372 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6373 M:      Devesh Sharma <devesh.sharma@broadcom.com>
6374 L:      linux-rdma@vger.kernel.org
6375 S:      Odd Fixes
6376 W:      http://www.broadcom.com
6377 F:      drivers/infiniband/hw/ocrdma/
6378 F:      include/uapi/rdma/ocrdma-abi.h
6379
6380 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6381 M:      James Smart <james.smart@broadcom.com>
6382 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6383 L:      linux-scsi@vger.kernel.org
6384 S:      Supported
6385 W:      http://www.broadcom.com
6386 F:      drivers/scsi/lpfc/
6387
6388 ENE CB710 FLASH CARD READER DRIVER
6389 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6390 S:      Maintained
6391 F:      drivers/misc/cb710/
6392 F:      drivers/mmc/host/cb710-mmc.*
6393 F:      include/linux/cb710.h
6394
6395 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6396 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6397 S:      Maintained
6398 F:      drivers/media/rc/ene_ir.*
6399
6400 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6401 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6402 L:      linuxppc-dev@lists.ozlabs.org
6403 S:      Maintained
6404 F:      drivers/tty/ehv_bytechan.c
6405
6406 EPSON S1D13XXX FRAMEBUFFER DRIVER
6407 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6408 S:      Maintained
6409 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6410 F:      drivers/video/fbdev/s1d13xxxfb.c
6411 F:      include/video/s1d13xxxfb.h
6412
6413 EROFS FILE SYSTEM
6414 M:      Gao Xiang <xiang@kernel.org>
6415 M:      Chao Yu <yuchao0@huawei.com>
6416 L:      linux-erofs@lists.ozlabs.org
6417 S:      Maintained
6418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6419 F:      Documentation/filesystems/erofs.rst
6420 F:      fs/erofs/
6421 F:      include/trace/events/erofs.h
6422
6423 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6424 M:      Jeff Layton <jlayton@kernel.org>
6425 S:      Maintained
6426 F:      include/linux/errseq.h
6427 F:      lib/errseq.c
6428
6429 ET131X NETWORK DRIVER
6430 M:      Mark Einon <mark.einon@gmail.com>
6431 S:      Odd Fixes
6432 F:      drivers/net/ethernet/agere/
6433
6434 ETHERNET BRIDGE
6435 M:      Roopa Prabhu <roopa@cumulusnetworks.com>
6436 M:      Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
6437 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6438 L:      netdev@vger.kernel.org
6439 S:      Maintained
6440 W:      http://www.linuxfoundation.org/en/Net:Bridge
6441 F:      include/linux/netfilter_bridge/
6442 F:      net/bridge/
6443
6444 ETHERNET PHY LIBRARY
6445 M:      Andrew Lunn <andrew@lunn.ch>
6446 M:      Florian Fainelli <f.fainelli@gmail.com>
6447 M:      Heiner Kallweit <hkallweit1@gmail.com>
6448 R:      Russell King <linux@armlinux.org.uk>
6449 L:      netdev@vger.kernel.org
6450 S:      Maintained
6451 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6452 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6453 F:      Documentation/devicetree/bindings/net/mdio*
6454 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6455 F:      Documentation/networking/phy.rst
6456 F:      drivers/net/phy/
6457 F:      drivers/of/of_mdio.c
6458 F:      drivers/of/of_net.c
6459 F:      include/dt-bindings/net/qca-ar803x.h
6460 F:      include/linux/*mdio*.h
6461 F:      include/linux/of_net.h
6462 F:      include/linux/phy.h
6463 F:      include/linux/phy_fixed.h
6464 F:      include/linux/platform_data/mdio-bcm-unimac.h
6465 F:      include/linux/platform_data/mdio-gpio.h
6466 F:      include/trace/events/mdio.h
6467 F:      include/uapi/linux/mdio.h
6468 F:      include/uapi/linux/mii.h
6469
6470 EXFAT FILE SYSTEM
6471 M:      Namjae Jeon <namjae.jeon@samsung.com>
6472 M:      Sungjong Seo <sj1557.seo@samsung.com>
6473 L:      linux-fsdevel@vger.kernel.org
6474 S:      Maintained
6475 F:      fs/exfat/
6476
6477 EXT2 FILE SYSTEM
6478 M:      Jan Kara <jack@suse.com>
6479 L:      linux-ext4@vger.kernel.org
6480 S:      Maintained
6481 F:      Documentation/filesystems/ext2.rst
6482 F:      fs/ext2/
6483 F:      include/linux/ext2*
6484
6485 EXT4 FILE SYSTEM
6486 M:      "Theodore Ts'o" <tytso@mit.edu>
6487 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6488 L:      linux-ext4@vger.kernel.org
6489 S:      Maintained
6490 W:      http://ext4.wiki.kernel.org
6491 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6493 F:      Documentation/filesystems/ext4/
6494 F:      fs/ext4/
6495
6496 Extended Verification Module (EVM)
6497 M:      Mimi Zohar <zohar@linux.ibm.com>
6498 L:      linux-integrity@vger.kernel.org
6499 S:      Supported
6500 F:      security/integrity/evm/
6501
6502 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6503 M:      Ard Biesheuvel <ardb@kernel.org>
6504 L:      linux-efi@vger.kernel.org
6505 S:      Maintained
6506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6507 F:      Documentation/admin-guide/efi-stub.rst
6508 F:      arch/*/include/asm/efi.h
6509 F:      arch/*/kernel/efi.c
6510 F:      arch/arm/boot/compressed/efi-header.S
6511 F:      arch/arm64/kernel/efi-entry.S
6512 F:      arch/x86/platform/efi/
6513 F:      drivers/firmware/efi/
6514 F:      include/linux/efi*.h
6515
6516 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6517 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6518 M:      Chanwoo Choi <cw00.choi@samsung.com>
6519 L:      linux-kernel@vger.kernel.org
6520 S:      Maintained
6521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6522 F:      Documentation/devicetree/bindings/extcon/
6523 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6524 F:      drivers/extcon/
6525 F:      include/linux/extcon.h
6526 F:      include/linux/extcon/
6527
6528 EXTRA BOOT CONFIG
6529 M:      Masami Hiramatsu <mhiramat@kernel.org>
6530 S:      Maintained
6531 F:      Documentation/admin-guide/bootconfig.rst
6532 F:      fs/proc/bootconfig.c
6533 F:      include/linux/bootconfig.h
6534 F:      lib/bootconfig.c
6535 F:      tools/bootconfig/*
6536
6537 EXYNOS DP DRIVER
6538 M:      Jingoo Han <jingoohan1@gmail.com>
6539 L:      dri-devel@lists.freedesktop.org
6540 S:      Maintained
6541 F:      drivers/gpu/drm/exynos/exynos_dp*
6542
6543 EXYNOS SYSMMU (IOMMU) driver
6544 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6545 L:      iommu@lists.linux-foundation.org
6546 S:      Maintained
6547 F:      drivers/iommu/exynos-iommu.c
6548
6549 EZchip NPS platform support
6550 M:      Vineet Gupta <vgupta@synopsys.com>
6551 M:      Ofer Levi <oferle@mellanox.com>
6552 S:      Supported
6553 F:      arch/arc/boot/dts/eznps.dts
6554 F:      arch/arc/plat-eznps
6555
6556 F2FS FILE SYSTEM
6557 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6558 M:      Chao Yu <yuchao0@huawei.com>
6559 L:      linux-f2fs-devel@lists.sourceforge.net
6560 S:      Maintained
6561 W:      https://f2fs.wiki.kernel.org/
6562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6563 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6564 F:      Documentation/filesystems/f2fs.rst
6565 F:      fs/f2fs/
6566 F:      include/linux/f2fs_fs.h
6567 F:      include/trace/events/f2fs.h
6568
6569 F71805F HARDWARE MONITORING DRIVER
6570 M:      Jean Delvare <jdelvare@suse.com>
6571 L:      linux-hwmon@vger.kernel.org
6572 S:      Maintained
6573 F:      Documentation/hwmon/f71805f.rst
6574 F:      drivers/hwmon/f71805f.c
6575
6576 FADDR2LINE
6577 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6578 S:      Maintained
6579 F:      scripts/faddr2line
6580
6581 FAILOVER MODULE
6582 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
6583 L:      netdev@vger.kernel.org
6584 S:      Supported
6585 F:      Documentation/networking/failover.rst
6586 F:      include/net/failover.h
6587 F:      net/core/failover.c
6588
6589 FANOTIFY
6590 M:      Jan Kara <jack@suse.cz>
6591 R:      Amir Goldstein <amir73il@gmail.com>
6592 L:      linux-fsdevel@vger.kernel.org
6593 S:      Maintained
6594 F:      fs/notify/fanotify/
6595 F:      include/linux/fanotify.h
6596 F:      include/uapi/linux/fanotify.h
6597
6598 FARSYNC SYNCHRONOUS DRIVER
6599 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
6600 S:      Supported
6601 W:      http://www.farsite.co.uk/
6602 F:      drivers/net/wan/farsync.*
6603
6604 FAULT INJECTION SUPPORT
6605 M:      Akinobu Mita <akinobu.mita@gmail.com>
6606 S:      Supported
6607 F:      Documentation/fault-injection/
6608 F:      lib/fault-inject.c
6609
6610 FBTFT Framebuffer drivers
6611 L:      dri-devel@lists.freedesktop.org
6612 L:      linux-fbdev@vger.kernel.org
6613 S:      Orphan
6614 F:      drivers/staging/fbtft/
6615
6616 FC0011 TUNER DRIVER
6617 M:      Michael Buesch <m@bues.ch>
6618 L:      linux-media@vger.kernel.org
6619 S:      Maintained
6620 F:      drivers/media/tuners/fc0011.c
6621 F:      drivers/media/tuners/fc0011.h
6622
6623 FC2580 MEDIA DRIVER
6624 M:      Antti Palosaari <crope@iki.fi>
6625 L:      linux-media@vger.kernel.org
6626 S:      Maintained
6627 W:      https://linuxtv.org
6628 W:      http://palosaari.fi/linux/
6629 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6630 T:      git git://linuxtv.org/anttip/media_tree.git
6631 F:      drivers/media/tuners/fc2580*
6632
6633 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6634 M:      Hannes Reinecke <hare@suse.de>
6635 L:      linux-scsi@vger.kernel.org
6636 S:      Supported
6637 W:      www.Open-FCoE.org
6638 F:      drivers/scsi/fcoe/
6639 F:      drivers/scsi/libfc/
6640 F:      include/scsi/fc/
6641 F:      include/scsi/libfc.h
6642 F:      include/scsi/libfcoe.h
6643 F:      include/uapi/scsi/fc/
6644
6645 FILE LOCKING (flock() and fcntl()/lockf())
6646 M:      Jeff Layton <jlayton@kernel.org>
6647 M:      "J. Bruce Fields" <bfields@fieldses.org>
6648 L:      linux-fsdevel@vger.kernel.org
6649 S:      Maintained
6650 F:      fs/fcntl.c
6651 F:      fs/locks.c
6652 F:      include/linux/fcntl.h
6653 F:      include/uapi/linux/fcntl.h
6654
6655 FILESYSTEM DIRECT ACCESS (DAX)
6656 M:      Dan Williams <dan.j.williams@intel.com>
6657 R:      Matthew Wilcox <willy@infradead.org>
6658 R:      Jan Kara <jack@suse.cz>
6659 L:      linux-fsdevel@vger.kernel.org
6660 L:      linux-nvdimm@lists.01.org
6661 S:      Supported
6662 F:      fs/dax.c
6663 F:      include/linux/dax.h
6664 F:      include/trace/events/fs_dax.h
6665
6666 FILESYSTEMS (VFS and infrastructure)
6667 M:      Alexander Viro <viro@zeniv.linux.org.uk>
6668 L:      linux-fsdevel@vger.kernel.org
6669 S:      Maintained
6670 F:      fs/*
6671 F:      include/linux/fs.h
6672 F:      include/linux/fs_types.h
6673 F:      include/uapi/linux/fs.h
6674 F:      include/uapi/linux/openat2.h
6675
6676 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6677 M:      Riku Voipio <riku.voipio@iki.fi>
6678 L:      linux-hwmon@vger.kernel.org
6679 S:      Maintained
6680 F:      drivers/hwmon/f75375s.c
6681 F:      include/linux/f75375s.h
6682
6683 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6684 M:      Clemens Ladisch <clemens@ladisch.de>
6685 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
6686 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6687 S:      Maintained
6688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6689 F:      include/uapi/sound/firewire.h
6690 F:      sound/firewire/
6691
6692 FIREWIRE MEDIA DRIVERS (firedtv)
6693 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6694 L:      linux-media@vger.kernel.org
6695 L:      linux1394-devel@lists.sourceforge.net
6696 S:      Maintained
6697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6698 F:      drivers/media/firewire/
6699
6700 FIREWIRE SBP-2 TARGET
6701 M:      Chris Boot <bootc@bootc.net>
6702 L:      linux-scsi@vger.kernel.org
6703 L:      target-devel@vger.kernel.org
6704 L:      linux1394-devel@lists.sourceforge.net
6705 S:      Maintained
6706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6707 F:      drivers/target/sbp/
6708
6709 FIREWIRE SUBSYSTEM
6710 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6711 L:      linux1394-devel@lists.sourceforge.net
6712 S:      Maintained
6713 W:      http://ieee1394.wiki.kernel.org/
6714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6715 F:      drivers/firewire/
6716 F:      include/linux/firewire.h
6717 F:      include/uapi/linux/firewire*.h
6718 F:      tools/firewire/
6719
6720 FIRMWARE LOADER (request_firmware)
6721 M:      Luis Chamberlain <mcgrof@kernel.org>
6722 L:      linux-kernel@vger.kernel.org
6723 S:      Maintained
6724 F:      Documentation/firmware_class/
6725 F:      drivers/base/firmware_loader/
6726 F:      include/linux/firmware.h
6727
6728 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6729 M:      Joshua Morris <josh.h.morris@us.ibm.com>
6730 M:      Philip Kelleher <pjk1939@linux.ibm.com>
6731 S:      Maintained
6732 F:      drivers/block/rsxx/
6733
6734 FLEXTIMER FTM-QUADDEC DRIVER
6735 M:      Patrick Havelange <patrick.havelange@essensium.com>
6736 L:      linux-iio@vger.kernel.org
6737 S:      Maintained
6738 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6739 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6740 F:      drivers/counter/ftm-quaddec.c
6741
6742 FLOPPY DRIVER
6743 M:      Denis Efremov <efremov@linux.com>
6744 L:      linux-block@vger.kernel.org
6745 S:      Odd Fixes
6746 F:      drivers/block/floppy.c
6747
6748 FLYSKY FSIA6B RC RECEIVER
6749 M:      Markus Koch <markus@notsyncing.net>
6750 L:      linux-input@vger.kernel.org
6751 S:      Maintained
6752 F:      drivers/input/joystick/fsia6b.c
6753
6754 FORCEDETH GIGABIT ETHERNET DRIVER
6755 M:      Rain River <rain.1986.08.12@gmail.com>
6756 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
6757 L:      netdev@vger.kernel.org
6758 S:      Maintained
6759 F:      drivers/net/ethernet/nvidia/*
6760
6761 FPGA DFL DRIVERS
6762 M:      Wu Hao <hao.wu@intel.com>
6763 L:      linux-fpga@vger.kernel.org
6764 S:      Maintained
6765 F:      Documentation/fpga/dfl.rst
6766 F:      drivers/fpga/dfl*
6767 F:      include/uapi/linux/fpga-dfl.h
6768
6769 FPGA MANAGER FRAMEWORK
6770 M:      Moritz Fischer <mdf@kernel.org>
6771 L:      linux-fpga@vger.kernel.org
6772 S:      Maintained
6773 W:      http://www.rocketboards.org
6774 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6776 F:      Documentation/devicetree/bindings/fpga/
6777 F:      Documentation/driver-api/fpga/
6778 F:      Documentation/fpga/
6779 F:      drivers/fpga/
6780 F:      include/linux/fpga/
6781
6782 FPU EMULATOR
6783 M:      Bill Metzenthen <billm@melbpc.org.au>
6784 S:      Maintained
6785 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6786 F:      arch/x86/math-emu/
6787
6788 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
6789 L:      netdev@vger.kernel.org
6790 S:      Orphan
6791 F:      drivers/net/wan/dlci.c
6792 F:      drivers/net/wan/sdla.c
6793
6794 FRAMEBUFFER LAYER
6795 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6796 L:      dri-devel@lists.freedesktop.org
6797 L:      linux-fbdev@vger.kernel.org
6798 S:      Maintained
6799 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6800 T:      git git://anongit.freedesktop.org/drm/drm-misc
6801 F:      Documentation/fb/
6802 F:      drivers/video/
6803 F:      include/linux/fb.h
6804 F:      include/uapi/linux/fb.h
6805 F:      include/uapi/video/
6806 F:      include/video/
6807
6808 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6809 M:      Horia Geantă <horia.geanta@nxp.com>
6810 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
6811 L:      linux-crypto@vger.kernel.org
6812 S:      Maintained
6813 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6814 F:      drivers/crypto/caam/
6815
6816 FREESCALE COLDFIRE M5441X MMC DRIVER
6817 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
6818 L:      linux-mmc@vger.kernel.org
6819 S:      Maintained
6820 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
6821 F:      include/linux/platform_data/mmc-esdhc-mcf.h
6822
6823 FREESCALE DIU FRAMEBUFFER DRIVER
6824 M:      Timur Tabi <timur@kernel.org>
6825 L:      linux-fbdev@vger.kernel.org
6826 S:      Maintained
6827 F:      drivers/video/fbdev/fsl-diu-fb.*
6828
6829 FREESCALE DMA DRIVER
6830 M:      Li Yang <leoyang.li@nxp.com>
6831 M:      Zhang Wei <zw@zh-kernel.org>
6832 L:      linuxppc-dev@lists.ozlabs.org
6833 S:      Maintained
6834 F:      drivers/dma/fsldma.*
6835
6836 FREESCALE ENETC ETHERNET DRIVERS
6837 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6838 L:      netdev@vger.kernel.org
6839 S:      Maintained
6840 F:      drivers/net/ethernet/freescale/enetc/
6841
6842 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6843 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6844 L:      netdev@vger.kernel.org
6845 S:      Maintained
6846 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6847 F:      drivers/net/ethernet/freescale/gianfar*
6848
6849 FREESCALE GPMI NAND DRIVER
6850 M:      Han Xu <han.xu@nxp.com>
6851 L:      linux-mtd@lists.infradead.org
6852 S:      Maintained
6853 F:      drivers/mtd/nand/raw/gpmi-nand/*
6854
6855 FREESCALE I2C CPM DRIVER
6856 M:      Jochen Friedrich <jochen@scram.de>
6857 L:      linuxppc-dev@lists.ozlabs.org
6858 L:      linux-i2c@vger.kernel.org
6859 S:      Maintained
6860 F:      drivers/i2c/busses/i2c-cpm.c
6861
6862 FREESCALE IMX / MXC FEC DRIVER
6863 M:      Fugang Duan <fugang.duan@nxp.com>
6864 L:      netdev@vger.kernel.org
6865 S:      Maintained
6866 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
6867 F:      drivers/net/ethernet/freescale/fec.h
6868 F:      drivers/net/ethernet/freescale/fec_main.c
6869 F:      drivers/net/ethernet/freescale/fec_ptp.c
6870
6871 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
6872 M:      Sascha Hauer <s.hauer@pengutronix.de>
6873 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6874 L:      linux-fbdev@vger.kernel.org
6875 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6876 S:      Maintained
6877 F:      drivers/video/fbdev/imxfb.c
6878 F:      include/linux/platform_data/video-imxfb.h
6879
6880 FREESCALE IMX DDR PMU DRIVER
6881 M:      Frank Li <Frank.li@nxp.com>
6882 L:      linux-arm-kernel@lists.infradead.org
6883 S:      Maintained
6884 F:      Documentation/admin-guide/perf/imx-ddr.rst
6885 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.txt
6886 F:      drivers/perf/fsl_imx8_ddr_perf.c
6887
6888 FREESCALE IMX I2C DRIVER
6889 M:      Oleksij Rempel <o.rempel@pengutronix.de>
6890 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6891 L:      linux-i2c@vger.kernel.org
6892 S:      Maintained
6893 F:      Documentation/devicetree/bindings/i2c/i2c-imx.txt
6894 F:      drivers/i2c/busses/i2c-imx.c
6895
6896 FREESCALE IMX LPI2C DRIVER
6897 M:      Dong Aisheng <aisheng.dong@nxp.com>
6898 L:      linux-i2c@vger.kernel.org
6899 L:      linux-imx@nxp.com
6900 S:      Maintained
6901 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.txt
6902 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
6903
6904 FREESCALE QORIQ DPAA ETHERNET DRIVER
6905 M:      Madalin Bucur <madalin.bucur@nxp.com>
6906 L:      netdev@vger.kernel.org
6907 S:      Maintained
6908 F:      drivers/net/ethernet/freescale/dpaa
6909
6910 FREESCALE QORIQ DPAA FMAN DRIVER
6911 M:      Madalin Bucur <madalin.bucur@nxp.com>
6912 L:      netdev@vger.kernel.org
6913 S:      Maintained
6914 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
6915 F:      drivers/net/ethernet/freescale/fman
6916
6917 FREESCALE QORIQ PTP CLOCK DRIVER
6918 M:      Yangbo Lu <yangbo.lu@nxp.com>
6919 L:      netdev@vger.kernel.org
6920 S:      Maintained
6921 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
6922 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
6923 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
6924 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
6925 F:      drivers/ptp/ptp_qoriq.c
6926 F:      drivers/ptp/ptp_qoriq_debugfs.c
6927 F:      include/linux/fsl/ptp_qoriq.h
6928
6929 FREESCALE QUAD SPI DRIVER
6930 M:      Han Xu <han.xu@nxp.com>
6931 L:      linux-spi@vger.kernel.org
6932 S:      Maintained
6933 F:      drivers/spi/spi-fsl-qspi.c
6934
6935 FREESCALE QUICC ENGINE LIBRARY
6936 M:      Qiang Zhao <qiang.zhao@nxp.com>
6937 L:      linuxppc-dev@lists.ozlabs.org
6938 S:      Maintained
6939 F:      drivers/soc/fsl/qe/
6940 F:      include/soc/fsl/*qe*.h
6941 F:      include/soc/fsl/*ucc*.h
6942
6943 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
6944 M:      Li Yang <leoyang.li@nxp.com>
6945 L:      netdev@vger.kernel.org
6946 L:      linuxppc-dev@lists.ozlabs.org
6947 S:      Maintained
6948 F:      drivers/net/ethernet/freescale/ucc_geth*
6949
6950 FREESCALE QUICC ENGINE UCC HDLC DRIVER
6951 M:      Zhao Qiang <qiang.zhao@nxp.com>
6952 L:      netdev@vger.kernel.org
6953 L:      linuxppc-dev@lists.ozlabs.org
6954 S:      Maintained
6955 F:      drivers/net/wan/fsl_ucc_hdlc*
6956
6957 FREESCALE QUICC ENGINE UCC UART DRIVER
6958 M:      Timur Tabi <timur@kernel.org>
6959 L:      linuxppc-dev@lists.ozlabs.org
6960 S:      Maintained
6961 F:      drivers/tty/serial/ucc_uart.c
6962
6963 FREESCALE SOC DRIVERS
6964 M:      Li Yang <leoyang.li@nxp.com>
6965 L:      linuxppc-dev@lists.ozlabs.org
6966 L:      linux-arm-kernel@lists.infradead.org
6967 S:      Maintained
6968 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
6969 F:      Documentation/devicetree/bindings/soc/fsl/
6970 F:      drivers/soc/fsl/
6971 F:      include/linux/fsl/
6972
6973 FREESCALE SOC FS_ENET DRIVER
6974 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
6975 L:      linuxppc-dev@lists.ozlabs.org
6976 L:      netdev@vger.kernel.org
6977 S:      Maintained
6978 F:      drivers/net/ethernet/freescale/fs_enet/
6979 F:      include/linux/fs_enet_pd.h
6980
6981 FREESCALE SOC SOUND DRIVERS
6982 M:      Timur Tabi <timur@kernel.org>
6983 M:      Nicolin Chen <nicoleotsuka@gmail.com>
6984 M:      Xiubo Li <Xiubo.Lee@gmail.com>
6985 R:      Fabio Estevam <festevam@gmail.com>
6986 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6987 L:      linuxppc-dev@lists.ozlabs.org
6988 S:      Maintained
6989 F:      sound/soc/fsl/fsl*
6990 F:      sound/soc/fsl/imx*
6991 F:      sound/soc/fsl/mpc8610_hpcd.c
6992
6993 FREESCALE USB PERIPHERAL DRIVERS
6994 M:      Li Yang <leoyang.li@nxp.com>
6995 L:      linux-usb@vger.kernel.org
6996 L:      linuxppc-dev@lists.ozlabs.org
6997 S:      Maintained
6998 F:      drivers/usb/gadget/udc/fsl*
6999
7000 FREEVXFS FILESYSTEM
7001 M:      Christoph Hellwig <hch@infradead.org>
7002 S:      Maintained
7003 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7004 F:      fs/freevxfs/
7005
7006 FREEZER
7007 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7008 M:      Pavel Machek <pavel@ucw.cz>
7009 L:      linux-pm@vger.kernel.org
7010 S:      Supported
7011 F:      Documentation/power/freezing-of-tasks.rst
7012 F:      include/linux/freezer.h
7013 F:      kernel/freezer.c
7014
7015 FRONTSWAP API
7016 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7017 L:      linux-kernel@vger.kernel.org
7018 S:      Maintained
7019 F:      include/linux/frontswap.h
7020 F:      mm/frontswap.c
7021
7022 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7023 M:      David Howells <dhowells@redhat.com>
7024 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7025 S:      Supported
7026 F:      Documentation/filesystems/caching/
7027 F:      fs/fscache/
7028 F:      include/linux/fscache*.h
7029
7030 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7031 M:      Theodore Y. Ts'o <tytso@mit.edu>
7032 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7033 M:      Eric Biggers <ebiggers@kernel.org>
7034 L:      linux-fscrypt@vger.kernel.org
7035 S:      Supported
7036 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7037 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7038 F:      Documentation/filesystems/fscrypt.rst
7039 F:      fs/crypto/
7040 F:      include/linux/fscrypt*.h
7041 F:      include/uapi/linux/fscrypt.h
7042
7043 FSI SUBSYSTEM
7044 M:      Jeremy Kerr <jk@ozlabs.org>
7045 M:      Joel Stanley <joel@jms.id.au>
7046 R:      Alistar Popple <alistair@popple.id.au>
7047 R:      Eddie James <eajames@linux.ibm.com>
7048 L:      linux-fsi@lists.ozlabs.org
7049 S:      Supported
7050 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7052 F:      drivers/fsi/
7053 F:      include/linux/fsi*.h
7054 F:      include/trace/events/fsi*.h
7055
7056 FSI-ATTACHED I2C DRIVER
7057 M:      Eddie James <eajames@linux.ibm.com>
7058 L:      linux-i2c@vger.kernel.org
7059 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7060 S:      Maintained
7061 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7062 F:      drivers/i2c/busses/i2c-fsi.c
7063
7064 FSI-ATTACHED SPI DRIVER
7065 M:      Eddie James <eajames@linux.ibm.com>
7066 L:      linux-spi@vger.kernel.org
7067 S:      Maintained
7068 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7069 F:      drivers/spi/spi-fsi.c
7070
7071 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7072 M:      Jan Kara <jack@suse.cz>
7073 R:      Amir Goldstein <amir73il@gmail.com>
7074 L:      linux-fsdevel@vger.kernel.org
7075 S:      Maintained
7076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7077 F:      fs/notify/
7078 F:      include/linux/fsnotify*.h
7079
7080 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7081 M:      Eric Biggers <ebiggers@kernel.org>
7082 M:      Theodore Y. Ts'o <tytso@mit.edu>
7083 L:      linux-fscrypt@vger.kernel.org
7084 S:      Supported
7085 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7086 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7087 F:      Documentation/filesystems/fsverity.rst
7088 F:      fs/verity/
7089 F:      include/linux/fsverity.h
7090 F:      include/uapi/linux/fsverity.h
7091
7092 FUJITSU LAPTOP EXTRAS
7093 M:      Jonathan Woithe <jwoithe@just42.net>
7094 L:      platform-driver-x86@vger.kernel.org
7095 S:      Maintained
7096 F:      drivers/platform/x86/fujitsu-laptop.c
7097
7098 FUJITSU M-5MO LS CAMERA ISP DRIVER
7099 M:      Kyungmin Park <kyungmin.park@samsung.com>
7100 M:      Heungjun Kim <riverful.kim@samsung.com>
7101 L:      linux-media@vger.kernel.org
7102 S:      Maintained
7103 F:      drivers/media/i2c/m5mols/
7104 F:      include/media/i2c/m5mols.h
7105
7106 FUJITSU TABLET EXTRAS
7107 M:      Robert Gerlach <khnz@gmx.de>
7108 L:      platform-driver-x86@vger.kernel.org
7109 S:      Maintained
7110 F:      drivers/platform/x86/fujitsu-tablet.c
7111
7112 FUSE: FILESYSTEM IN USERSPACE
7113 M:      Miklos Szeredi <miklos@szeredi.hu>
7114 L:      linux-fsdevel@vger.kernel.org
7115 S:      Maintained
7116 W:      http://fuse.sourceforge.net/
7117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7118 F:      Documentation/filesystems/fuse.rst
7119 F:      fs/fuse/
7120 F:      include/uapi/linux/fuse.h
7121
7122 FUTEX SUBSYSTEM
7123 M:      Thomas Gleixner <tglx@linutronix.de>
7124 M:      Ingo Molnar <mingo@redhat.com>
7125 R:      Peter Zijlstra <peterz@infradead.org>
7126 R:      Darren Hart <dvhart@infradead.org>
7127 L:      linux-kernel@vger.kernel.org
7128 S:      Maintained
7129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7130 F:      Documentation/locking/*futex*
7131 F:      include/asm-generic/futex.h
7132 F:      include/linux/futex.h
7133 F:      include/uapi/linux/futex.h
7134 F:      kernel/futex.c
7135 F:      tools/perf/bench/futex*
7136 F:      Documentation/locking/*futex*
7137
7138 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7139 M:      Tim Harvey <tharvey@gateworks.com>
7140 M:      Robert Jones <rjones@gateworks.com>
7141 S:      Maintained
7142 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7143 F:      drivers/mfd/gateworks-gsc.c
7144 F:      include/linux/mfd/gsc.h
7145 F:      Documentation/hwmon/gsc-hwmon.rst
7146 F:      drivers/hwmon/gsc-hwmon.c
7147 F:      include/linux/platform_data/gsc_hwmon.h
7148
7149 GASKET DRIVER FRAMEWORK
7150 M:      Rob Springer <rspringer@google.com>
7151 M:      Todd Poynor <toddpoynor@google.com>
7152 M:      Ben Chan <benchan@chromium.org>
7153 M:      Richard Yeh <rcy@google.com>
7154 S:      Maintained
7155 F:      drivers/staging/gasket/
7156
7157 GCC PLUGINS
7158 M:      Kees Cook <keescook@chromium.org>
7159 R:      Emese Revfy <re.emese@gmail.com>
7160 L:      kernel-hardening@lists.openwall.com
7161 S:      Maintained
7162 F:      Documentation/kbuild/gcc-plugins.rst
7163 F:      scripts/Makefile.gcc-plugins
7164 F:      scripts/gcc-plugin.sh
7165 F:      scripts/gcc-plugins/
7166
7167 GCOV BASED KERNEL PROFILING
7168 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7169 S:      Maintained
7170 F:      Documentation/dev-tools/gcov.rst
7171 F:      kernel/gcov/
7172
7173 GDB KERNEL DEBUGGING HELPER SCRIPTS
7174 M:      Jan Kiszka <jan.kiszka@siemens.com>
7175 M:      Kieran Bingham <kbingham@kernel.org>
7176 S:      Supported
7177 F:      scripts/gdb/
7178
7179 GDT SCSI DISK ARRAY CONTROLLER DRIVER
7180 M:      Achim Leubner <achim_leubner@adaptec.com>
7181 L:      linux-scsi@vger.kernel.org
7182 S:      Supported
7183 W:      http://www.icp-vortex.com/
7184 F:      drivers/scsi/gdt*
7185
7186 GEMTEK FM RADIO RECEIVER DRIVER
7187 M:      Hans Verkuil <hverkuil@xs4all.nl>
7188 L:      linux-media@vger.kernel.org
7189 S:      Maintained
7190 W:      https://linuxtv.org
7191 T:      git git://linuxtv.org/media_tree.git
7192 F:      drivers/media/radio/radio-gemtek*
7193
7194 GENERIC ARCHITECTURE TOPOLOGY
7195 M:      Sudeep Holla <sudeep.holla@arm.com>
7196 L:      linux-kernel@vger.kernel.org
7197 S:      Maintained
7198 F:      drivers/base/arch_topology.c
7199 F:      include/linux/arch_topology.h
7200
7201 GENERIC GPIO I2C DRIVER
7202 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7203 S:      Supported
7204 F:      drivers/i2c/busses/i2c-gpio.c
7205 F:      include/linux/platform_data/i2c-gpio.h
7206
7207 GENERIC GPIO I2C MULTIPLEXER DRIVER
7208 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7209 L:      linux-i2c@vger.kernel.org
7210 S:      Supported
7211 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7212 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7213 F:      include/linux/platform_data/i2c-mux-gpio.h
7214
7215 GENERIC HDLC (WAN) DRIVERS
7216 M:      Krzysztof Halasa <khc@pm.waw.pl>
7217 S:      Maintained
7218 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7219 F:      drivers/net/wan/c101.c
7220 F:      drivers/net/wan/hd6457*
7221 F:      drivers/net/wan/hdlc*
7222 F:      drivers/net/wan/n2.c
7223 F:      drivers/net/wan/pc300too.c
7224 F:      drivers/net/wan/pci200syn.c
7225 F:      drivers/net/wan/wanxl*
7226
7227 GENERIC INCLUDE/ASM HEADER FILES
7228 M:      Arnd Bergmann <arnd@arndb.de>
7229 L:      linux-arch@vger.kernel.org
7230 S:      Maintained
7231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7232 F:      include/asm-generic/
7233 F:      include/uapi/asm-generic/
7234
7235 GENERIC PHY FRAMEWORK
7236 M:      Kishon Vijay Abraham I <kishon@ti.com>
7237 M:      Vinod Koul <vkoul@kernel.org>
7238 L:      linux-kernel@vger.kernel.org
7239 S:      Supported
7240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7241 F:      Documentation/devicetree/bindings/phy/
7242 F:      drivers/phy/
7243 F:      include/linux/phy/
7244
7245 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7246 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7247 S:      Supported
7248 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7249
7250 GENERIC PM DOMAINS
7251 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7252 M:      Kevin Hilman <khilman@kernel.org>
7253 M:      Ulf Hansson <ulf.hansson@linaro.org>
7254 L:      linux-pm@vger.kernel.org
7255 S:      Supported
7256 F:      Documentation/devicetree/bindings/power/power?domain*
7257 F:      drivers/base/power/domain*.c
7258 F:      include/linux/pm_domain.h
7259
7260 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7261 M:      Eugen Hristev <eugen.hristev@microchip.com>
7262 L:      linux-input@vger.kernel.org
7263 S:      Maintained
7264 F:      drivers/input/touchscreen/resistive-adc-touch.c
7265
7266 GENERIC UIO DRIVER FOR PCI DEVICES
7267 M:      "Michael S. Tsirkin" <mst@redhat.com>
7268 L:      kvm@vger.kernel.org
7269 S:      Supported
7270 F:      drivers/uio/uio_pci_generic.c
7271
7272 GENERIC VDSO LIBRARY
7273 M:      Andy Lutomirski <luto@kernel.org>
7274 M:      Thomas Gleixner <tglx@linutronix.de>
7275 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7276 L:      linux-kernel@vger.kernel.org
7277 S:      Maintained
7278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7279 F:      include/asm-generic/vdso/vsyscall.h
7280 F:      include/vdso/
7281 F:      kernel/time/vsyscall.c
7282 F:      lib/vdso/
7283
7284 GENWQE (IBM Generic Workqueue Card)
7285 M:      Frank Haverkamp <haver@linux.ibm.com>
7286 S:      Supported
7287 F:      drivers/misc/genwqe/
7288
7289 GET_MAINTAINER SCRIPT
7290 M:      Joe Perches <joe@perches.com>
7291 S:      Maintained
7292 F:      scripts/get_maintainer.pl
7293
7294 GFS2 FILE SYSTEM
7295 M:      Bob Peterson <rpeterso@redhat.com>
7296 M:      Andreas Gruenbacher <agruenba@redhat.com>
7297 L:      cluster-devel@redhat.com
7298 S:      Supported
7299 W:      http://sources.redhat.com/cluster/
7300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7301 F:      Documentation/filesystems/gfs2*
7302 F:      fs/gfs2/
7303 F:      include/uapi/linux/gfs2_ondisk.h
7304
7305 GNSS SUBSYSTEM
7306 M:      Johan Hovold <johan@kernel.org>
7307 S:      Maintained
7308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7309 F:      Documentation/ABI/testing/sysfs-class-gnss
7310 F:      Documentation/devicetree/bindings/gnss/
7311 F:      drivers/gnss/
7312 F:      include/linux/gnss.h
7313
7314 GO7007 MPEG CODEC
7315 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7316 L:      linux-media@vger.kernel.org
7317 S:      Maintained
7318 F:      drivers/media/usb/go7007/
7319
7320 GOODIX TOUCHSCREEN
7321 M:      Bastien Nocera <hadess@hadess.net>
7322 L:      linux-input@vger.kernel.org
7323 S:      Maintained
7324 F:      drivers/input/touchscreen/goodix.c
7325
7326 GOOGLE ETHERNET DRIVERS
7327 M:      Catherine Sullivan <csully@google.com>
7328 R:      Sagi Shahar <sagis@google.com>
7329 R:      Jon Olson <jonolson@google.com>
7330 L:      netdev@vger.kernel.org
7331 S:      Supported
7332 F:      Documentation/networking/device_drivers/google/gve.rst
7333 F:      drivers/net/ethernet/google
7334
7335 GPD POCKET FAN DRIVER
7336 M:      Hans de Goede <hdegoede@redhat.com>
7337 L:      platform-driver-x86@vger.kernel.org
7338 S:      Maintained
7339 F:      drivers/platform/x86/gpd-pocket-fan.c
7340
7341 GPIO ACPI SUPPORT
7342 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7343 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7344 L:      linux-gpio@vger.kernel.org
7345 L:      linux-acpi@vger.kernel.org
7346 S:      Maintained
7347 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7348 F:      drivers/gpio/gpiolib-acpi.c
7349 F:      drivers/gpio/gpiolib-acpi.h
7350
7351 GPIO AGGREGATOR
7352 M:      Geert Uytterhoeven <geert+renesas@glider.be>
7353 L:      linux-gpio@vger.kernel.org
7354 S:      Supported
7355 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7356 F:      drivers/gpio/gpio-aggregator.c
7357
7358 GPIO IR Transmitter
7359 M:      Sean Young <sean@mess.org>
7360 L:      linux-media@vger.kernel.org
7361 S:      Maintained
7362 F:      drivers/media/rc/gpio-ir-tx.c
7363
7364 GPIO MOCKUP DRIVER
7365 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7366 L:      linux-gpio@vger.kernel.org
7367 S:      Maintained
7368 F:      drivers/gpio/gpio-mockup.c
7369 F:      tools/testing/selftests/gpio/
7370
7371 GPIO REGMAP
7372 R:      Michael Walle <michael@walle.cc>
7373 S:      Maintained
7374 F:      drivers/gpio/gpio-regmap.c
7375 F:      include/linux/gpio/regmap.h
7376
7377 GPIO SUBSYSTEM
7378 M:      Linus Walleij <linus.walleij@linaro.org>
7379 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7380 L:      linux-gpio@vger.kernel.org
7381 S:      Maintained
7382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7383 F:      Documentation/ABI/obsolete/sysfs-gpio
7384 F:      Documentation/ABI/testing/gpio-cdev
7385 F:      Documentation/admin-guide/gpio/
7386 F:      Documentation/devicetree/bindings/gpio/
7387 F:      Documentation/driver-api/gpio/
7388 F:      drivers/gpio/
7389 F:      include/asm-generic/gpio.h
7390 F:      include/linux/gpio.h
7391 F:      include/linux/gpio/
7392 F:      include/linux/of_gpio.h
7393 F:      include/uapi/linux/gpio.h
7394 F:      tools/gpio/
7395
7396 GRE DEMULTIPLEXER DRIVER
7397 M:      Dmitry Kozlov <xeb@mail.ru>
7398 L:      netdev@vger.kernel.org
7399 S:      Maintained
7400 F:      include/net/gre.h
7401 F:      net/ipv4/gre_demux.c
7402 F:      net/ipv4/gre_offload.c
7403
7404 GRETH 10/100/1G Ethernet MAC device driver
7405 M:      Andreas Larsson <andreas@gaisler.com>
7406 L:      netdev@vger.kernel.org
7407 S:      Maintained
7408 F:      drivers/net/ethernet/aeroflex/
7409
7410 GREYBUS AUDIO PROTOCOLS DRIVERS
7411 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7412 M:      Mark Greer <mgreer@animalcreek.com>
7413 S:      Maintained
7414 F:      drivers/staging/greybus/audio_apbridgea.c
7415 F:      drivers/staging/greybus/audio_apbridgea.h
7416 F:      drivers/staging/greybus/audio_codec.c
7417 F:      drivers/staging/greybus/audio_codec.h
7418 F:      drivers/staging/greybus/audio_gb.c
7419 F:      drivers/staging/greybus/audio_manager.c
7420 F:      drivers/staging/greybus/audio_manager.h
7421 F:      drivers/staging/greybus/audio_manager_module.c
7422 F:      drivers/staging/greybus/audio_manager_private.h
7423 F:      drivers/staging/greybus/audio_manager_sysfs.c
7424 F:      drivers/staging/greybus/audio_module.c
7425 F:      drivers/staging/greybus/audio_topology.c
7426
7427 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7428 M:      Viresh Kumar <vireshk@kernel.org>
7429 S:      Maintained
7430 F:      drivers/staging/greybus/authentication.c
7431 F:      drivers/staging/greybus/bootrom.c
7432 F:      drivers/staging/greybus/firmware.h
7433 F:      drivers/staging/greybus/fw-core.c
7434 F:      drivers/staging/greybus/fw-download.c
7435 F:      drivers/staging/greybus/fw-management.c
7436 F:      drivers/staging/greybus/greybus_authentication.h
7437 F:      drivers/staging/greybus/greybus_firmware.h
7438 F:      drivers/staging/greybus/hid.c
7439 F:      drivers/staging/greybus/i2c.c
7440 F:      drivers/staging/greybus/spi.c
7441 F:      drivers/staging/greybus/spilib.c
7442 F:      drivers/staging/greybus/spilib.h
7443
7444 GREYBUS LOOPBACK DRIVER
7445 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7446 S:      Maintained
7447 F:      drivers/staging/greybus/loopback.c
7448
7449 GREYBUS PLATFORM DRIVERS
7450 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7451 S:      Maintained
7452 F:      drivers/staging/greybus/arche-apb-ctrl.c
7453 F:      drivers/staging/greybus/arche-platform.c
7454 F:      drivers/staging/greybus/arche_platform.h
7455
7456 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7457 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7458 S:      Maintained
7459 F:      drivers/staging/greybus/gpio.c
7460 F:      drivers/staging/greybus/light.c
7461 F:      drivers/staging/greybus/power_supply.c
7462 F:      drivers/staging/greybus/sdio.c
7463 F:      drivers/staging/greybus/spi.c
7464 F:      drivers/staging/greybus/spilib.c
7465
7466 GREYBUS SUBSYSTEM
7467 M:      Johan Hovold <johan@kernel.org>
7468 M:      Alex Elder <elder@kernel.org>
7469 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7470 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7471 S:      Maintained
7472 F:      drivers/greybus/
7473 F:      drivers/staging/greybus/
7474 F:      include/linux/greybus.h
7475 F:      include/linux/greybus/
7476
7477 GREYBUS UART PROTOCOLS DRIVERS
7478 M:      David Lin <dtwlin@gmail.com>
7479 S:      Maintained
7480 F:      drivers/staging/greybus/log.c
7481 F:      drivers/staging/greybus/uart.c
7482
7483 GS1662 VIDEO SERIALIZER
7484 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7485 L:      linux-media@vger.kernel.org
7486 S:      Maintained
7487 T:      git git://linuxtv.org/media_tree.git
7488 F:      drivers/media/spi/gs1662.c
7489
7490 GSPCA FINEPIX SUBDRIVER
7491 M:      Frank Zago <frank@zago.net>
7492 L:      linux-media@vger.kernel.org
7493 S:      Maintained
7494 T:      git git://linuxtv.org/media_tree.git
7495 F:      drivers/media/usb/gspca/finepix.c
7496
7497 GSPCA GL860 SUBDRIVER
7498 M:      Olivier Lorin <o.lorin@laposte.net>
7499 L:      linux-media@vger.kernel.org
7500 S:      Maintained
7501 T:      git git://linuxtv.org/media_tree.git
7502 F:      drivers/media/usb/gspca/gl860/
7503
7504 GSPCA M5602 SUBDRIVER
7505 M:      Erik Andren <erik.andren@gmail.com>
7506 L:      linux-media@vger.kernel.org
7507 S:      Maintained
7508 T:      git git://linuxtv.org/media_tree.git
7509 F:      drivers/media/usb/gspca/m5602/
7510
7511 GSPCA PAC207 SONIXB SUBDRIVER
7512 M:      Hans Verkuil <hverkuil@xs4all.nl>
7513 L:      linux-media@vger.kernel.org
7514 S:      Odd Fixes
7515 T:      git git://linuxtv.org/media_tree.git
7516 F:      drivers/media/usb/gspca/pac207.c
7517
7518 GSPCA SN9C20X SUBDRIVER
7519 M:      Brian Johnson <brijohn@gmail.com>
7520 L:      linux-media@vger.kernel.org
7521 S:      Maintained
7522 T:      git git://linuxtv.org/media_tree.git
7523 F:      drivers/media/usb/gspca/sn9c20x.c
7524
7525 GSPCA T613 SUBDRIVER
7526 M:      Leandro Costantino <lcostantino@gmail.com>
7527 L:      linux-media@vger.kernel.org
7528 S:      Maintained
7529 T:      git git://linuxtv.org/media_tree.git
7530 F:      drivers/media/usb/gspca/t613.c
7531
7532 GSPCA USB WEBCAM DRIVER
7533 M:      Hans Verkuil <hverkuil@xs4all.nl>
7534 L:      linux-media@vger.kernel.org
7535 S:      Odd Fixes
7536 T:      git git://linuxtv.org/media_tree.git
7537 F:      drivers/media/usb/gspca/
7538
7539 GTP (GPRS Tunneling Protocol)
7540 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7541 M:      Harald Welte <laforge@gnumonks.org>
7542 L:      osmocom-net-gprs@lists.osmocom.org
7543 S:      Maintained
7544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7545 F:      drivers/net/gtp.c
7546
7547 GUID PARTITION TABLE (GPT)
7548 M:      Davidlohr Bueso <dave@stgolabs.net>
7549 L:      linux-efi@vger.kernel.org
7550 S:      Maintained
7551 F:      block/partitions/efi.*
7552
7553 H8/300 ARCHITECTURE
7554 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
7555 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7556 S:      Maintained
7557 W:      http://uclinux-h8.sourceforge.jp
7558 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7559 F:      arch/h8300/
7560 F:      drivers/clk/h8300/
7561 F:      drivers/clocksource/h8300_*.c
7562 F:      drivers/irqchip/irq-renesas-h8*.c
7563
7564 HABANALABS PCI DRIVER
7565 M:      Oded Gabbay <oded.gabbay@gmail.com>
7566 S:      Supported
7567 T:      git https://github.com/HabanaAI/linux.git
7568 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7569 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7570 F:      drivers/misc/habanalabs/
7571 F:      include/uapi/misc/habanalabs.h
7572
7573 HACKRF MEDIA DRIVER
7574 M:      Antti Palosaari <crope@iki.fi>
7575 L:      linux-media@vger.kernel.org
7576 S:      Maintained
7577 W:      https://linuxtv.org
7578 W:      http://palosaari.fi/linux/
7579 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7580 T:      git git://linuxtv.org/anttip/media_tree.git
7581 F:      drivers/media/usb/hackrf/
7582
7583 HANTRO VPU CODEC DRIVER
7584 M:      Ezequiel Garcia <ezequiel@collabora.com>
7585 M:      Philipp Zabel <p.zabel@pengutronix.de>
7586 L:      linux-media@vger.kernel.org
7587 L:      linux-rockchip@lists.infradead.org
7588 S:      Maintained
7589 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
7590 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
7591 F:      drivers/staging/media/hantro/
7592
7593 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7594 M:      Frank Seidel <frank@f-seidel.de>
7595 L:      platform-driver-x86@vger.kernel.org
7596 S:      Maintained
7597 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7598 F:      drivers/platform/x86/hdaps.c
7599
7600 HARDWARE MONITORING
7601 M:      Jean Delvare <jdelvare@suse.com>
7602 M:      Guenter Roeck <linux@roeck-us.net>
7603 L:      linux-hwmon@vger.kernel.org
7604 S:      Maintained
7605 W:      http://hwmon.wiki.kernel.org/
7606 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7607 F:      Documentation/devicetree/bindings/hwmon/
7608 F:      Documentation/hwmon/
7609 F:      drivers/hwmon/
7610 F:      include/linux/hwmon*.h
7611 F:      include/trace/events/hwmon*.h
7612
7613 HARDWARE RANDOM NUMBER GENERATOR CORE
7614 M:      Matt Mackall <mpm@selenic.com>
7615 M:      Herbert Xu <herbert@gondor.apana.org.au>
7616 L:      linux-crypto@vger.kernel.org
7617 S:      Odd fixes
7618 F:      Documentation/admin-guide/hw_random.rst
7619 F:      Documentation/devicetree/bindings/rng/
7620 F:      drivers/char/hw_random/
7621 F:      include/linux/hw_random.h
7622
7623 HARDWARE SPINLOCK CORE
7624 M:      Ohad Ben-Cohen <ohad@wizery.com>
7625 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
7626 R:      Baolin Wang <baolin.wang7@gmail.com>
7627 L:      linux-remoteproc@vger.kernel.org
7628 S:      Maintained
7629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7630 F:      Documentation/devicetree/bindings/hwlock/
7631 F:      Documentation/locking/hwspinlock.rst
7632 F:      drivers/hwspinlock/
7633 F:      include/linux/hwspinlock.h
7634
7635 HARDWARE TRACING FACILITIES
7636 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7637 S:      Maintained
7638 F:      drivers/hwtracing/
7639
7640 HARMONY SOUND DRIVER
7641 L:      linux-parisc@vger.kernel.org
7642 S:      Maintained
7643 F:      sound/parisc/harmony.*
7644
7645 HDPVR USB VIDEO ENCODER DRIVER
7646 M:      Hans Verkuil <hverkuil@xs4all.nl>
7647 L:      linux-media@vger.kernel.org
7648 S:      Odd Fixes
7649 W:      https://linuxtv.org
7650 T:      git git://linuxtv.org/media_tree.git
7651 F:      drivers/media/usb/hdpvr/
7652
7653 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7654 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
7655 S:      Supported
7656 F:      Documentation/watchdog/hpwdt.rst
7657 F:      drivers/watchdog/hpwdt.c
7658
7659 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7660 M:      Don Brace <don.brace@microsemi.com>
7661 L:      esc.storagedev@microsemi.com
7662 L:      linux-scsi@vger.kernel.org
7663 S:      Supported
7664 F:      Documentation/scsi/hpsa.rst
7665 F:      drivers/scsi/hpsa*.[ch]
7666 F:      include/linux/cciss*.h
7667 F:      include/uapi/linux/cciss*.h
7668
7669 HFI1 DRIVER
7670 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
7671 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
7672 L:      linux-rdma@vger.kernel.org
7673 S:      Supported
7674 F:      drivers/infiniband/hw/hfi1
7675
7676 HFS FILESYSTEM
7677 L:      linux-fsdevel@vger.kernel.org
7678 S:      Orphan
7679 F:      Documentation/filesystems/hfs.rst
7680 F:      fs/hfs/
7681
7682 HFSPLUS FILESYSTEM
7683 L:      linux-fsdevel@vger.kernel.org
7684 S:      Orphan
7685 F:      Documentation/filesystems/hfsplus.rst
7686 F:      fs/hfsplus/
7687
7688 HGA FRAMEBUFFER DRIVER
7689 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
7690 L:      linux-nvidia@lists.surfsouth.com
7691 S:      Maintained
7692 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7693 F:      drivers/video/fbdev/hgafb.c
7694
7695 HIBERNATION (aka Software Suspend, aka swsusp)
7696 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7697 M:      Pavel Machek <pavel@ucw.cz>
7698 L:      linux-pm@vger.kernel.org
7699 S:      Supported
7700 B:      https://bugzilla.kernel.org
7701 F:      arch/*/include/asm/suspend*.h
7702 F:      arch/x86/power/
7703 F:      drivers/base/power/
7704 F:      include/linux/freezer.h
7705 F:      include/linux/pm.h
7706 F:      include/linux/suspend.h
7707 F:      kernel/power/
7708
7709 HID CORE LAYER
7710 M:      Jiri Kosina <jikos@kernel.org>
7711 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
7712 L:      linux-input@vger.kernel.org
7713 S:      Maintained
7714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7715 F:      drivers/hid/
7716 F:      include/linux/hid*
7717 F:      include/uapi/linux/hid*
7718
7719 HID SENSOR HUB DRIVERS
7720 M:      Jiri Kosina <jikos@kernel.org>
7721 M:      Jonathan Cameron <jic23@kernel.org>
7722 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7723 L:      linux-input@vger.kernel.org
7724 L:      linux-iio@vger.kernel.org
7725 S:      Maintained
7726 F:      Documentation/hid/hid-sensor*
7727 F:      drivers/hid/hid-sensor-*
7728 F:      drivers/iio/*/hid-*
7729 F:      include/linux/hid-sensor-*
7730
7731 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7732 M:      Thomas Gleixner <tglx@linutronix.de>
7733 L:      linux-kernel@vger.kernel.org
7734 S:      Maintained
7735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7736 F:      Documentation/timers/
7737 F:      include/linux/clockchips.h
7738 F:      include/linux/hrtimer.h
7739 F:      kernel/time/clockevents.c
7740 F:      kernel/time/hrtimer.c
7741 F:      kernel/time/timer_*.c
7742
7743 HIGH-SPEED SCC DRIVER FOR AX.25
7744 L:      linux-hams@vger.kernel.org
7745 S:      Orphan
7746 F:      drivers/net/hamradio/dmascc.c
7747 F:      drivers/net/hamradio/scc.c
7748
7749 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7750 M:      HighPoint Linux Team <linux@highpoint-tech.com>
7751 S:      Supported
7752 W:      http://www.highpoint-tech.com
7753 F:      Documentation/scsi/hptiop.rst
7754 F:      drivers/scsi/hptiop.c
7755
7756 HIPPI
7757 M:      Jes Sorensen <jes@trained-monkey.org>
7758 L:      linux-hippi@sunsite.dk
7759 S:      Maintained
7760 F:      drivers/net/hippi/
7761 F:      include/linux/hippidevice.h
7762 F:      include/uapi/linux/if_hippi.h
7763 F:      net/802/hippi.c
7764
7765 HISILICON DMA DRIVER
7766 M:      Zhou Wang <wangzhou1@hisilicon.com>
7767 L:      dmaengine@vger.kernel.org
7768 S:      Maintained
7769 F:      drivers/dma/hisi_dma.c
7770
7771 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7772 M:      Zaibo Xu <xuzaibo@huawei.com>
7773 L:      linux-crypto@vger.kernel.org
7774 S:      Maintained
7775 F:      Documentation/ABI/testing/debugfs-hisi-hpre
7776 F:      drivers/crypto/hisilicon/hpre/hpre.h
7777 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
7778 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
7779
7780 HISILICON LPC BUS DRIVER
7781 M:      john.garry@huawei.com
7782 S:      Maintained
7783 W:      http://www.hisilicon.com
7784 F:      Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
7785 F:      drivers/bus/hisi_lpc.c
7786
7787 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7788 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7789 M:      Salil Mehta <salil.mehta@huawei.com>
7790 L:      netdev@vger.kernel.org
7791 S:      Maintained
7792 W:      http://www.hisilicon.com
7793 F:      drivers/net/ethernet/hisilicon/hns3/
7794
7795 HISILICON NETWORK SUBSYSTEM DRIVER
7796 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7797 M:      Salil Mehta <salil.mehta@huawei.com>
7798 L:      netdev@vger.kernel.org
7799 S:      Maintained
7800 W:      http://www.hisilicon.com
7801 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
7802 F:      drivers/net/ethernet/hisilicon/
7803
7804 HISILICON PMU DRIVER
7805 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
7806 S:      Supported
7807 W:      http://www.hisilicon.com
7808 F:      Documentation/admin-guide/perf/hisi-pmu.rst
7809 F:      drivers/perf/hisilicon
7810
7811 HISILICON QM AND ZIP Controller DRIVER
7812 M:      Zhou Wang <wangzhou1@hisilicon.com>
7813 L:      linux-crypto@vger.kernel.org
7814 S:      Maintained
7815 F:      Documentation/ABI/testing/debugfs-hisi-zip
7816 F:      drivers/crypto/hisilicon/qm.c
7817 F:      drivers/crypto/hisilicon/qm.h
7818 F:      drivers/crypto/hisilicon/sgl.c
7819 F:      drivers/crypto/hisilicon/zip/
7820
7821 HISILICON ROCE DRIVER
7822 M:      Lijun Ou <oulijun@huawei.com>
7823 M:      Wei Hu(Xavier) <huwei87@hisilicon.com>
7824 M:      Weihang Li <liweihang@huawei.com>
7825 L:      linux-rdma@vger.kernel.org
7826 S:      Maintained
7827 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
7828 F:      drivers/infiniband/hw/hns/
7829
7830 HISILICON SAS Controller
7831 M:      John Garry <john.garry@huawei.com>
7832 S:      Supported
7833 W:      http://www.hisilicon.com
7834 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
7835 F:      drivers/scsi/hisi_sas/
7836
7837 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
7838 M:      Zaibo Xu <xuzaibo@huawei.com>
7839 L:      linux-crypto@vger.kernel.org
7840 S:      Maintained
7841 F:      Documentation/ABI/testing/debugfs-hisi-sec
7842 F:      drivers/crypto/hisilicon/sec2/sec.h
7843 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
7844 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
7845 F:      drivers/crypto/hisilicon/sec2/sec_main.c
7846
7847 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
7848 M:      Zaibo Xu <xuzaibo@huawei.com>
7849 S:      Maintained
7850 F:      drivers/char/hw_random/hisi-trng-v2.c
7851
7852 HISILICON V3XX SPI NOR FLASH Controller Driver
7853 M:      John Garry <john.garry@huawei.com>
7854 S:      Maintained
7855 W:      http://www.hisilicon.com
7856 F:      drivers/spi/spi-hisi-sfc-v3xx.c
7857
7858 HMM - Heterogeneous Memory Management
7859 M:      Jérôme Glisse <jglisse@redhat.com>
7860 L:      linux-mm@kvack.org
7861 S:      Maintained
7862 F:      Documentation/vm/hmm.rst
7863 F:      include/linux/hmm*
7864 F:      lib/test_hmm*
7865 F:      mm/hmm*
7866 F:      tools/testing/selftests/vm/*hmm*
7867
7868 HOST AP DRIVER
7869 M:      Jouni Malinen <j@w1.fi>
7870 L:      linux-wireless@vger.kernel.org
7871 S:      Obsolete
7872 W:      http://w1.fi/hostap-driver.html
7873 F:      drivers/net/wireless/intersil/hostap/
7874
7875 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
7876 L:      platform-driver-x86@vger.kernel.org
7877 S:      Orphan
7878 F:      drivers/platform/x86/tc1100-wmi.c
7879
7880 HPET:   High Precision Event Timers driver
7881 M:      Clemens Ladisch <clemens@ladisch.de>
7882 S:      Maintained
7883 F:      Documentation/timers/hpet.rst
7884 F:      drivers/char/hpet.c
7885 F:      include/linux/hpet.h
7886 F:      include/uapi/linux/hpet.h
7887
7888 HPET:   x86
7889 S:      Orphan
7890 F:      arch/x86/include/asm/hpet.h
7891 F:      arch/x86/kernel/hpet.c
7892
7893 HPFS FILESYSTEM
7894 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
7895 S:      Maintained
7896 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
7897 F:      fs/hpfs/
7898
7899 HSI SUBSYSTEM
7900 M:      Sebastian Reichel <sre@kernel.org>
7901 S:      Maintained
7902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
7903 F:      Documentation/ABI/testing/sysfs-bus-hsi
7904 F:      Documentation/driver-api/hsi.rst
7905 F:      drivers/hsi/
7906 F:      include/linux/hsi/
7907 F:      include/uapi/linux/hsi/
7908
7909 HSO 3G MODEM DRIVER
7910 L:      linux-usb@vger.kernel.org
7911 S:      Orphan
7912 F:      drivers/net/usb/hso.c
7913
7914 HSR NETWORK PROTOCOL
7915 L:      netdev@vger.kernel.org
7916 S:      Orphan
7917 F:      net/hsr/
7918
7919 HT16K33 LED CONTROLLER DRIVER
7920 M:      Robin van der Gracht <robin@protonic.nl>
7921 S:      Maintained
7922 F:      Documentation/devicetree/bindings/display/ht16k33.txt
7923 F:      drivers/auxdisplay/ht16k33.c
7924
7925 HTCPEN TOUCHSCREEN DRIVER
7926 M:      Pau Oliva Fora <pof@eslack.org>
7927 L:      linux-input@vger.kernel.org
7928 S:      Maintained
7929 F:      drivers/input/touchscreen/htcpen.c
7930
7931 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
7932 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
7933 L:      linux-iio@vger.kernel.org
7934 S:      Maintained
7935 W:      http://www.st.com/
7936 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
7937 F:      drivers/iio/humidity/hts221*
7938
7939 HUAWEI ETHERNET DRIVER
7940 M:      Bin Luo <luobin9@huawei.com>
7941 L:      netdev@vger.kernel.org
7942 S:      Supported
7943 F:      Documentation/networking/hinic.rst
7944 F:      drivers/net/ethernet/huawei/hinic/
7945
7946 HUGETLB FILESYSTEM
7947 M:      Mike Kravetz <mike.kravetz@oracle.com>
7948 L:      linux-mm@kvack.org
7949 S:      Maintained
7950 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
7951 F:      Documentation/admin-guide/mm/hugetlbpage.rst
7952 F:      Documentation/vm/hugetlbfs_reserv.rst
7953 F:      fs/hugetlbfs/
7954 F:      include/linux/hugetlb.h
7955 F:      mm/hugetlb.c
7956
7957 HVA ST MEDIA DRIVER
7958 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
7959 L:      linux-media@vger.kernel.org
7960 S:      Supported
7961 W:      https://linuxtv.org
7962 T:      git git://linuxtv.org/media_tree.git
7963 F:      drivers/media/platform/sti/hva
7964
7965 HWPOISON MEMORY FAILURE HANDLING
7966 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
7967 L:      linux-mm@kvack.org
7968 S:      Maintained
7969 F:      mm/hwpoison-inject.c
7970 F:      mm/memory-failure.c
7971
7972 HYGON PROCESSOR SUPPORT
7973 M:      Pu Wen <puwen@hygon.cn>
7974 L:      linux-kernel@vger.kernel.org
7975 S:      Maintained
7976 F:      arch/x86/kernel/cpu/hygon.c
7977
7978 HYNIX HI556 SENSOR DRIVER
7979 M:      Shawn Tu <shawnx.tu@intel.com>
7980 L:      linux-media@vger.kernel.org
7981 S:      Maintained
7982 T:      git git://linuxtv.org/media_tree.git
7983 F:      drivers/media/i2c/hi556.c
7984
7985 Hyper-V CORE AND DRIVERS
7986 M:      "K. Y. Srinivasan" <kys@microsoft.com>
7987 M:      Haiyang Zhang <haiyangz@microsoft.com>
7988 M:      Stephen Hemminger <sthemmin@microsoft.com>
7989 M:      Wei Liu <wei.liu@kernel.org>
7990 L:      linux-hyperv@vger.kernel.org
7991 S:      Supported
7992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
7993 F:      Documentation/ABI/stable/sysfs-bus-vmbus
7994 F:      Documentation/ABI/testing/debugfs-hyperv
7995 F:      Documentation/networking/device_drivers/microsoft/netvsc.rst
7996 F:      arch/x86/hyperv
7997 F:      arch/x86/include/asm/hyperv-tlfs.h
7998 F:      arch/x86/include/asm/mshyperv.h
7999 F:      arch/x86/include/asm/trace/hyperv.h
8000 F:      arch/x86/kernel/cpu/mshyperv.c
8001 F:      drivers/clocksource/hyperv_timer.c
8002 F:      drivers/hid/hid-hyperv.c
8003 F:      drivers/hv/
8004 F:      drivers/input/serio/hyperv-keyboard.c
8005 F:      drivers/iommu/hyperv-iommu.c
8006 F:      drivers/net/hyperv/
8007 F:      drivers/pci/controller/pci-hyperv-intf.c
8008 F:      drivers/pci/controller/pci-hyperv.c
8009 F:      drivers/scsi/storvsc_drv.c
8010 F:      drivers/uio/uio_hv_generic.c
8011 F:      drivers/video/fbdev/hyperv_fb.c
8012 F:      include/asm-generic/hyperv-tlfs.h
8013 F:      include/asm-generic/mshyperv.h
8014 F:      include/clocksource/hyperv_timer.h
8015 F:      include/linux/hyperv.h
8016 F:      include/uapi/linux/hyperv.h
8017 F:      net/vmw_vsock/hyperv_transport.c
8018 F:      tools/hv/
8019
8020 HYPERBUS SUPPORT
8021 M:      Vignesh Raghavendra <vigneshr@ti.com>
8022 L:      linux-mtd@lists.infradead.org
8023 S:      Supported
8024 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8025 C:      irc://irc.oftc.net/mtd
8026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8027 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8028 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8029 F:      drivers/mtd/hyperbus/
8030 F:      include/linux/mtd/hyperbus.h
8031
8032 HYPERVISOR VIRTUAL CONSOLE DRIVER
8033 L:      linuxppc-dev@lists.ozlabs.org
8034 S:      Odd Fixes
8035 F:      drivers/tty/hvc/
8036
8037 I2C ACPI SUPPORT
8038 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8039 L:      linux-i2c@vger.kernel.org
8040 L:      linux-acpi@vger.kernel.org
8041 S:      Maintained
8042 F:      drivers/i2c/i2c-core-acpi.c
8043
8044 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8045 M:      Ajay Gupta <ajayg@nvidia.com>
8046 L:      linux-i2c@vger.kernel.org
8047 S:      Maintained
8048 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8049 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8050
8051 I2C MUXES
8052 M:      Peter Rosin <peda@axentia.se>
8053 L:      linux-i2c@vger.kernel.org
8054 S:      Maintained
8055 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8056 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8057 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8058 F:      Documentation/i2c/i2c-topology.rst
8059 F:      Documentation/i2c/muxes/
8060 F:      drivers/i2c/i2c-mux.c
8061 F:      drivers/i2c/muxes/
8062 F:      include/linux/i2c-mux.h
8063
8064 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8065 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8066 L:      linux-i2c@vger.kernel.org
8067 S:      Maintained
8068 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8069 F:      drivers/i2c/busses/i2c-mv64xxx.c
8070
8071 I2C OVER PARALLEL PORT
8072 M:      Jean Delvare <jdelvare@suse.com>
8073 L:      linux-i2c@vger.kernel.org
8074 S:      Maintained
8075 F:      Documentation/i2c/busses/i2c-parport.rst
8076 F:      drivers/i2c/busses/i2c-parport.c
8077
8078 I2C SUBSYSTEM
8079 M:      Wolfram Sang <wsa@kernel.org>
8080 L:      linux-i2c@vger.kernel.org
8081 S:      Maintained
8082 W:      https://i2c.wiki.kernel.org/
8083 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8085 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8086 F:      Documentation/i2c/
8087 F:      drivers/i2c/*
8088 F:      include/linux/i2c-dev.h
8089 F:      include/linux/i2c-smbus.h
8090 F:      include/linux/i2c.h
8091 F:      include/uapi/linux/i2c-*.h
8092 F:      include/uapi/linux/i2c.h
8093
8094 I2C SUBSYSTEM HOST DRIVERS
8095 L:      linux-i2c@vger.kernel.org
8096 S:      Odd Fixes
8097 W:      https://i2c.wiki.kernel.org/
8098 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8100 F:      Documentation/devicetree/bindings/i2c/
8101 F:      drivers/i2c/algos/
8102 F:      drivers/i2c/busses/
8103
8104 I2C-TAOS-EVM DRIVER
8105 M:      Jean Delvare <jdelvare@suse.com>
8106 L:      linux-i2c@vger.kernel.org
8107 S:      Maintained
8108 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8109 F:      drivers/i2c/busses/i2c-taos-evm.c
8110
8111 I2C-TINY-USB DRIVER
8112 M:      Till Harbaum <till@harbaum.org>
8113 L:      linux-i2c@vger.kernel.org
8114 S:      Maintained
8115 W:      http://www.harbaum.org/till/i2c_tiny_usb
8116 F:      drivers/i2c/busses/i2c-tiny-usb.c
8117
8118 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8119 M:      Jean Delvare <jdelvare@suse.com>
8120 L:      linux-i2c@vger.kernel.org
8121 S:      Maintained
8122 F:      Documentation/i2c/busses/i2c-ali1535.rst
8123 F:      Documentation/i2c/busses/i2c-ali1563.rst
8124 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8125 F:      Documentation/i2c/busses/i2c-amd756.rst
8126 F:      Documentation/i2c/busses/i2c-amd8111.rst
8127 F:      Documentation/i2c/busses/i2c-i801.rst
8128 F:      Documentation/i2c/busses/i2c-nforce2.rst
8129 F:      Documentation/i2c/busses/i2c-piix4.rst
8130 F:      Documentation/i2c/busses/i2c-sis5595.rst
8131 F:      Documentation/i2c/busses/i2c-sis630.rst
8132 F:      Documentation/i2c/busses/i2c-sis96x.rst
8133 F:      Documentation/i2c/busses/i2c-via.rst
8134 F:      Documentation/i2c/busses/i2c-viapro.rst
8135 F:      drivers/i2c/busses/i2c-ali1535.c
8136 F:      drivers/i2c/busses/i2c-ali1563.c
8137 F:      drivers/i2c/busses/i2c-ali15x3.c
8138 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8139 F:      drivers/i2c/busses/i2c-amd756.c
8140 F:      drivers/i2c/busses/i2c-amd8111.c
8141 F:      drivers/i2c/busses/i2c-i801.c
8142 F:      drivers/i2c/busses/i2c-isch.c
8143 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8144 F:      drivers/i2c/busses/i2c-nforce2.c
8145 F:      drivers/i2c/busses/i2c-piix4.c
8146 F:      drivers/i2c/busses/i2c-sis5595.c
8147 F:      drivers/i2c/busses/i2c-sis630.c
8148 F:      drivers/i2c/busses/i2c-sis96x.c
8149 F:      drivers/i2c/busses/i2c-via.c
8150 F:      drivers/i2c/busses/i2c-viapro.c
8151
8152 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8153 M:      Hans de Goede <hdegoede@redhat.com>
8154 L:      linux-i2c@vger.kernel.org
8155 S:      Maintained
8156 F:      drivers/i2c/busses/i2c-cht-wc.c
8157
8158 I2C/SMBUS ISMT DRIVER
8159 M:      Seth Heasley <seth.heasley@intel.com>
8160 M:      Neil Horman <nhorman@tuxdriver.com>
8161 L:      linux-i2c@vger.kernel.org
8162 F:      Documentation/i2c/busses/i2c-ismt.rst
8163 F:      drivers/i2c/busses/i2c-ismt.c
8164
8165 I2C/SMBUS STUB DRIVER
8166 M:      Jean Delvare <jdelvare@suse.com>
8167 L:      linux-i2c@vger.kernel.org
8168 S:      Maintained
8169 F:      drivers/i2c/i2c-stub.c
8170
8171 I3C DRIVER FOR CADENCE I3C MASTER IP
8172 M:      Przemysław Gaj <pgaj@cadence.com>
8173 S:      Maintained
8174 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8175 F:      drivers/i3c/master/i3c-master-cdns.c
8176
8177 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8178 M:      Vitor Soares <vitor.soares@synopsys.com>
8179 S:      Maintained
8180 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8181 F:      drivers/i3c/master/dw*
8182
8183 I3C SUBSYSTEM
8184 M:      Boris Brezillon <bbrezillon@kernel.org>
8185 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8186 S:      Maintained
8187 C:      irc://chat.freenode.net/linux-i3c
8188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8189 F:      Documentation/ABI/testing/sysfs-bus-i3c
8190 F:      Documentation/devicetree/bindings/i3c/
8191 F:      Documentation/driver-api/i3c
8192 F:      drivers/i3c/
8193 F:      include/linux/i3c/
8194
8195 IA64 (Itanium) PLATFORM
8196 M:      Tony Luck <tony.luck@intel.com>
8197 M:      Fenghua Yu <fenghua.yu@intel.com>
8198 L:      linux-ia64@vger.kernel.org
8199 S:      Maintained
8200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8201 F:      Documentation/ia64/
8202 F:      arch/ia64/
8203
8204 IBM Power 842 compression accelerator
8205 M:      Haren Myneni <haren@us.ibm.com>
8206 S:      Supported
8207 F:      crypto/842.c
8208 F:      drivers/crypto/nx/Kconfig
8209 F:      drivers/crypto/nx/Makefile
8210 F:      drivers/crypto/nx/nx-842*
8211 F:      include/linux/sw842.h
8212 F:      lib/842/
8213
8214 IBM Power in-Nest Crypto Acceleration
8215 M:      Breno Leitão <leitao@debian.org>
8216 M:      Nayna Jain <nayna@linux.ibm.com>
8217 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8218 L:      linux-crypto@vger.kernel.org
8219 S:      Supported
8220 F:      drivers/crypto/nx/Kconfig
8221 F:      drivers/crypto/nx/Makefile
8222 F:      drivers/crypto/nx/nx-aes*
8223 F:      drivers/crypto/nx/nx-sha*
8224 F:      drivers/crypto/nx/nx.*
8225 F:      drivers/crypto/nx/nx_csbcpb.h
8226 F:      drivers/crypto/nx/nx_debugfs.c
8227
8228 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8229 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8230 L:      linux-pci@vger.kernel.org
8231 L:      linuxppc-dev@lists.ozlabs.org
8232 S:      Supported
8233 F:      drivers/pci/hotplug/rpadlpar*
8234
8235 IBM Power Linux RAID adapter
8236 M:      Brian King <brking@us.ibm.com>
8237 S:      Supported
8238 F:      drivers/scsi/ipr.*
8239
8240 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8241 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8242 L:      linux-pci@vger.kernel.org
8243 L:      linuxppc-dev@lists.ozlabs.org
8244 S:      Supported
8245 F:      drivers/pci/hotplug/rpaphp*
8246
8247 IBM Power SRIOV Virtual NIC Device Driver
8248 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
8249 M:      John Allen <jallen@linux.ibm.com>
8250 L:      netdev@vger.kernel.org
8251 S:      Supported
8252 F:      drivers/net/ethernet/ibm/ibmvnic.*
8253
8254 IBM Power Virtual Accelerator Switchboard
8255 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8256 L:      linuxppc-dev@lists.ozlabs.org
8257 S:      Supported
8258 F:      arch/powerpc/include/asm/vas.h
8259 F:      arch/powerpc/platforms/powernv/copy-paste.h
8260 F:      arch/powerpc/platforms/powernv/vas*
8261
8262 IBM Power Virtual Ethernet Device Driver
8263 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
8264 L:      netdev@vger.kernel.org
8265 S:      Supported
8266 F:      drivers/net/ethernet/ibm/ibmveth.*
8267
8268 IBM Power Virtual FC Device Drivers
8269 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8270 L:      linux-scsi@vger.kernel.org
8271 S:      Supported
8272 F:      drivers/scsi/ibmvscsi/ibmvfc*
8273
8274 IBM Power Virtual Management Channel Driver
8275 M:      Steven Royer <seroyer@linux.ibm.com>
8276 S:      Supported
8277 F:      drivers/misc/ibmvmc.*
8278
8279 IBM Power Virtual SCSI Device Drivers
8280 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8281 L:      linux-scsi@vger.kernel.org
8282 S:      Supported
8283 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8284 F:      include/scsi/viosrp.h
8285
8286 IBM Power Virtual SCSI Device Target Driver
8287 M:      Michael Cyr <mikecyr@linux.ibm.com>
8288 L:      linux-scsi@vger.kernel.org
8289 L:      target-devel@vger.kernel.org
8290 S:      Supported
8291 F:      drivers/scsi/ibmvscsi_tgt/
8292
8293 IBM Power VMX Cryptographic instructions
8294 M:      Breno Leitão <leitao@debian.org>
8295 M:      Nayna Jain <nayna@linux.ibm.com>
8296 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8297 L:      linux-crypto@vger.kernel.org
8298 S:      Supported
8299 F:      drivers/crypto/vmx/Kconfig
8300 F:      drivers/crypto/vmx/Makefile
8301 F:      drivers/crypto/vmx/aes*
8302 F:      drivers/crypto/vmx/ghash*
8303 F:      drivers/crypto/vmx/ppc-xlate.pl
8304 F:      drivers/crypto/vmx/vmx.c
8305
8306 IBM ServeRAID RAID DRIVER
8307 S:      Orphan
8308 F:      drivers/scsi/ips.*
8309
8310 ICH LPC AND GPIO DRIVER
8311 M:      Peter Tyser <ptyser@xes-inc.com>
8312 S:      Maintained
8313 F:      drivers/gpio/gpio-ich.c
8314 F:      drivers/mfd/lpc_ich.c
8315
8316 ICY I2C DRIVER
8317 M:      Max Staudt <max@enpas.org>
8318 L:      linux-i2c@vger.kernel.org
8319 S:      Maintained
8320 F:      drivers/i2c/busses/i2c-icy.c
8321
8322 IDE SUBSYSTEM
8323 M:      "David S. Miller" <davem@davemloft.net>
8324 L:      linux-ide@vger.kernel.org
8325 S:      Maintained
8326 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8328 F:      Documentation/ide/
8329 F:      drivers/ide/
8330 F:      include/linux/ide.h
8331
8332 IDE/ATAPI DRIVERS
8333 M:      Borislav Petkov <bp@alien8.de>
8334 L:      linux-ide@vger.kernel.org
8335 S:      Maintained
8336 F:      Documentation/cdrom/ide-cd.rst
8337 F:      drivers/ide/ide-cd*
8338
8339 IDEAPAD LAPTOP EXTRAS DRIVER
8340 M:      Ike Panhc <ike.pan@canonical.com>
8341 L:      platform-driver-x86@vger.kernel.org
8342 S:      Maintained
8343 W:      http://launchpad.net/ideapad-laptop
8344 F:      drivers/platform/x86/ideapad-laptop.c
8345
8346 IDEAPAD LAPTOP SLIDEBAR DRIVER
8347 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
8348 L:      linux-input@vger.kernel.org
8349 S:      Maintained
8350 W:      https://github.com/o2genum/ideapad-slidebar
8351 F:      drivers/input/misc/ideapad_slidebar.c
8352
8353 IDT VersaClock 5 CLOCK DRIVER
8354 M:      Marek Vasut <marek.vasut@gmail.com>
8355 S:      Maintained
8356 F:      drivers/clk/clk-versaclock5.c
8357
8358 IEEE 802.15.4 SUBSYSTEM
8359 M:      Alexander Aring <alex.aring@gmail.com>
8360 M:      Stefan Schmidt <stefan@datenfreihafen.org>
8361 L:      linux-wpan@vger.kernel.org
8362 S:      Maintained
8363 W:      http://wpan.cakelab.org/
8364 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8366 F:      Documentation/networking/ieee802154.rst
8367 F:      drivers/net/ieee802154/
8368 F:      include/linux/ieee802154.h
8369 F:      include/linux/nl802154.h
8370 F:      include/net/af_ieee802154.h
8371 F:      include/net/cfg802154.h
8372 F:      include/net/ieee802154_netdev.h
8373 F:      include/net/mac802154.h
8374 F:      include/net/nl802154.h
8375 F:      net/ieee802154/
8376 F:      net/mac802154/
8377
8378 IFE PROTOCOL
8379 M:      Yotam Gigi <yotam.gi@gmail.com>
8380 M:      Jamal Hadi Salim <jhs@mojatatu.com>
8381 F:      include/net/ife.h
8382 F:      include/uapi/linux/ife.h
8383 F:      net/ife
8384
8385 IGORPLUG-USB IR RECEIVER
8386 M:      Sean Young <sean@mess.org>
8387 L:      linux-media@vger.kernel.org
8388 S:      Maintained
8389 F:      drivers/media/rc/igorplugusb.c
8390
8391 IGUANAWORKS USB IR TRANSCEIVER
8392 M:      Sean Young <sean@mess.org>
8393 L:      linux-media@vger.kernel.org
8394 S:      Maintained
8395 F:      drivers/media/rc/iguanair.c
8396
8397 IIO DIGITAL POTENTIOMETER DAC
8398 M:      Peter Rosin <peda@axentia.se>
8399 L:      linux-iio@vger.kernel.org
8400 S:      Maintained
8401 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8402 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8403 F:      drivers/iio/dac/dpot-dac.c
8404
8405 IIO ENVELOPE DETECTOR
8406 M:      Peter Rosin <peda@axentia.se>
8407 L:      linux-iio@vger.kernel.org
8408 S:      Maintained
8409 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8410 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8411 F:      drivers/iio/adc/envelope-detector.c
8412
8413 IIO MULTIPLEXER
8414 M:      Peter Rosin <peda@axentia.se>
8415 L:      linux-iio@vger.kernel.org
8416 S:      Maintained
8417 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8418 F:      drivers/iio/multiplexer/iio-mux.c
8419
8420 IIO SUBSYSTEM AND DRIVERS
8421 M:      Jonathan Cameron <jic23@kernel.org>
8422 R:      Hartmut Knaack <knaack.h@gmx.de>
8423 R:      Lars-Peter Clausen <lars@metafoo.de>
8424 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
8425 L:      linux-iio@vger.kernel.org
8426 S:      Maintained
8427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8428 F:      Documentation/ABI/testing/configfs-iio*
8429 F:      Documentation/ABI/testing/sysfs-bus-iio*
8430 F:      Documentation/devicetree/bindings/iio/
8431 F:      drivers/iio/
8432 F:      drivers/staging/iio/
8433 F:      include/linux/iio/
8434 F:      tools/iio/
8435
8436 IIO UNIT CONVERTER
8437 M:      Peter Rosin <peda@axentia.se>
8438 L:      linux-iio@vger.kernel.org
8439 S:      Maintained
8440 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8441 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8442 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8443 F:      drivers/iio/afe/iio-rescale.c
8444
8445 IKANOS/ADI EAGLE ADSL USB DRIVER
8446 M:      Matthieu Castet <castet.matthieu@free.fr>
8447 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8448 S:      Maintained
8449 F:      drivers/usb/atm/ueagle-atm.c
8450
8451 IMGTEC ASCII LCD DRIVER
8452 M:      Paul Burton <paulburton@kernel.org>
8453 S:      Maintained
8454 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8455 F:      drivers/auxdisplay/img-ascii-lcd.c
8456
8457 IMGTEC IR DECODER DRIVER
8458 S:      Orphan
8459 F:      drivers/media/rc/img-ir/
8460
8461 IMON SOUNDGRAPH USB IR RECEIVER
8462 M:      Sean Young <sean@mess.org>
8463 L:      linux-media@vger.kernel.org
8464 S:      Maintained
8465 F:      drivers/media/rc/imon.c
8466 F:      drivers/media/rc/imon_raw.c
8467
8468 IMS TWINTURBO FRAMEBUFFER DRIVER
8469 L:      linux-fbdev@vger.kernel.org
8470 S:      Orphan
8471 F:      drivers/video/fbdev/imsttfb.c
8472
8473 INA209 HARDWARE MONITOR DRIVER
8474 M:      Guenter Roeck <linux@roeck-us.net>
8475 L:      linux-hwmon@vger.kernel.org
8476 S:      Maintained
8477 F:      Documentation/devicetree/bindings/hwmon/ina2xx.txt
8478 F:      Documentation/hwmon/ina209.rst
8479 F:      drivers/hwmon/ina209.c
8480
8481 INA2XX HARDWARE MONITOR DRIVER
8482 M:      Guenter Roeck <linux@roeck-us.net>
8483 L:      linux-hwmon@vger.kernel.org
8484 S:      Maintained
8485 F:      Documentation/hwmon/ina2xx.rst
8486 F:      drivers/hwmon/ina2xx.c
8487 F:      include/linux/platform_data/ina2xx.h
8488
8489 INDUSTRY PACK SUBSYSTEM (IPACK)
8490 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8491 M:      Jens Taprogge <jens.taprogge@taprogge.org>
8492 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8493 L:      industrypack-devel@lists.sourceforge.net
8494 S:      Maintained
8495 W:      http://industrypack.sourceforge.net
8496 F:      drivers/ipack/
8497
8498 INFINEON DPS310 Driver
8499 M:      Eddie James <eajames@linux.ibm.com>
8500 L:      linux-iio@vger.kernel.org
8501 S:      Maintained
8502 F:      drivers/iio/pressure/dps310.c
8503
8504 INFINIBAND SUBSYSTEM
8505 M:      Doug Ledford <dledford@redhat.com>
8506 M:      Jason Gunthorpe <jgg@mellanox.com>
8507 L:      linux-rdma@vger.kernel.org
8508 S:      Supported
8509 W:      https://github.com/linux-rdma/rdma-core
8510 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8511 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8512 F:      Documentation/devicetree/bindings/infiniband/
8513 F:      Documentation/infiniband/
8514 F:      drivers/infiniband/
8515 F:      include/rdma/
8516 F:      include/trace/events/ib_mad.h
8517 F:      include/trace/events/ib_umad.h
8518 F:      include/uapi/linux/if_infiniband.h
8519 F:      include/uapi/rdma/
8520 F:      samples/bpf/ibumad_kern.c
8521 F:      samples/bpf/ibumad_user.c
8522
8523 INGENIC JZ4780 DMA Driver
8524 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
8525 S:      Maintained
8526 F:      drivers/dma/dma-jz4780.c
8527
8528 INGENIC JZ4780 NAND DRIVER
8529 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
8530 L:      linux-mtd@lists.infradead.org
8531 S:      Maintained
8532 F:      drivers/mtd/nand/raw/ingenic/
8533
8534 INGENIC JZ47xx SoCs
8535 M:      Paul Cercueil <paul@crapouillou.net>
8536 S:      Maintained
8537 F:      arch/mips/boot/dts/ingenic/
8538 F:      arch/mips/include/asm/mach-jz4740/
8539 F:      arch/mips/jz4740/
8540 F:      drivers/clk/ingenic/
8541 F:      drivers/dma/dma-jz4780.c
8542 F:      drivers/gpu/drm/ingenic/
8543 F:      drivers/i2c/busses/i2c-jz4780.c
8544 F:      drivers/iio/adc/ingenic-adc.c
8545 F:      drivers/irqchip/irq-ingenic.c
8546 F:      drivers/memory/jz4780-nemc.c
8547 F:      drivers/mmc/host/jz4740_mmc.c
8548 F:      drivers/mtd/nand/raw/ingenic/
8549 F:      drivers/pinctrl/pinctrl-ingenic.c
8550 F:      drivers/power/supply/ingenic-battery.c
8551 F:      drivers/pwm/pwm-jz4740.c
8552 F:      drivers/remoteproc/ingenic_rproc.c
8553 F:      drivers/rtc/rtc-jz4740.c
8554 F:      drivers/tty/serial/8250/8250_ingenic.c
8555 F:      drivers/usb/musb/jz4740.c
8556 F:      drivers/watchdog/jz4740_wdt.c
8557 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8558 F:      include/linux/mfd/ingenic-tcu.h
8559 F:      sound/soc/codecs/jz47*
8560 F:      sound/soc/jz4740/
8561
8562 INOTIFY
8563 M:      Jan Kara <jack@suse.cz>
8564 R:      Amir Goldstein <amir73il@gmail.com>
8565 L:      linux-fsdevel@vger.kernel.org
8566 S:      Maintained
8567 F:      Documentation/filesystems/inotify.rst
8568 F:      fs/notify/inotify/
8569 F:      include/linux/inotify.h
8570 F:      include/uapi/linux/inotify.h
8571
8572 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8573 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
8574 L:      linux-input@vger.kernel.org
8575 S:      Maintained
8576 Q:      http://patchwork.kernel.org/project/linux-input/list/
8577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8578 F:      Documentation/devicetree/bindings/input/
8579 F:      Documentation/devicetree/bindings/serio/
8580 F:      Documentation/input/
8581 F:      drivers/input/
8582 F:      include/linux/input.h
8583 F:      include/linux/input/
8584 F:      include/uapi/linux/input-event-codes.h
8585 F:      include/uapi/linux/input.h
8586
8587 INPUT MULTITOUCH (MT) PROTOCOL
8588 M:      Henrik Rydberg <rydberg@bitmath.org>
8589 L:      linux-input@vger.kernel.org
8590 S:      Odd fixes
8591 F:      Documentation/input/multi-touch-protocol.rst
8592 F:      drivers/input/input-mt.c
8593 K:      \b(ABS|SYN)_MT_
8594
8595 INSIDE SECURE CRYPTO DRIVER
8596 M:      Antoine Tenart <antoine.tenart@bootlin.com>
8597 L:      linux-crypto@vger.kernel.org
8598 S:      Maintained
8599 F:      drivers/crypto/inside-secure/
8600
8601 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8602 M:      Mimi Zohar <zohar@linux.ibm.com>
8603 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
8604 L:      linux-integrity@vger.kernel.org
8605 S:      Supported
8606 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8607 F:      security/integrity/ima/
8608
8609 INTEL 810/815 FRAMEBUFFER DRIVER
8610 M:      Antonino Daplas <adaplas@gmail.com>
8611 L:      linux-fbdev@vger.kernel.org
8612 S:      Maintained
8613 F:      drivers/video/fbdev/i810/
8614
8615 INTEL ASoC DRIVERS
8616 M:      Cezary Rojewski <cezary.rojewski@intel.com>
8617 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
8618 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
8619 M:      Jie Yang <yang.jie@linux.intel.com>
8620 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8621 S:      Supported
8622 F:      sound/soc/intel/
8623
8624 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8625 M:      Hans de Goede <hdegoede@redhat.com>
8626 L:      platform-driver-x86@vger.kernel.org
8627 S:      Maintained
8628 F:      drivers/platform/x86/intel_atomisp2_pm.c
8629
8630 INTEL BROXTON PMC DRIVER
8631 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8632 M:      Zha Qipeng <qipeng.zha@intel.com>
8633 S:      Maintained
8634 F:      drivers/mfd/intel_pmc_bxt.c
8635 F:      include/linux/mfd/intel_pmc_bxt.h
8636
8637 INTEL C600 SERIES SAS CONTROLLER DRIVER
8638 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
8639 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
8640 L:      linux-scsi@vger.kernel.org
8641 S:      Supported
8642 T:      git git://git.code.sf.net/p/intel-sas/isci
8643 F:      drivers/scsi/isci/
8644
8645 INTEL CPU family model numbers
8646 M:      Tony Luck <tony.luck@intel.com>
8647 M:      x86@kernel.org
8648 L:      linux-kernel@vger.kernel.org
8649 S:      Supported
8650 F:      arch/x86/include/asm/intel-family.h
8651
8652 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8653 M:      Jani Nikula <jani.nikula@linux.intel.com>
8654 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
8655 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
8656 L:      intel-gfx@lists.freedesktop.org
8657 S:      Supported
8658 W:      https://01.org/linuxgraphics/
8659 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8660 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
8661 C:      irc://chat.freenode.net/intel-gfx
8662 T:      git git://anongit.freedesktop.org/drm-intel
8663 F:      Documentation/gpu/i915.rst
8664 F:      drivers/gpu/drm/i915/
8665 F:      include/drm/i915*
8666 F:      include/uapi/drm/i915_drm.h
8667
8668 INTEL ETHERNET DRIVERS
8669 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
8670 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
8671 S:      Supported
8672 W:      http://www.intel.com/support/feedback.htm
8673 W:      http://e1000.sourceforge.net/
8674 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8675 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
8676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
8677 F:      Documentation/networking/device_drivers/intel/e100.rst
8678 F:      Documentation/networking/device_drivers/intel/e1000.rst
8679 F:      Documentation/networking/device_drivers/intel/e1000e.rst
8680 F:      Documentation/networking/device_drivers/intel/fm10k.rst
8681 F:      Documentation/networking/device_drivers/intel/i40e.rst
8682 F:      Documentation/networking/device_drivers/intel/iavf.rst
8683 F:      Documentation/networking/device_drivers/intel/ice.rst
8684 F:      Documentation/networking/device_drivers/intel/igb.rst
8685 F:      Documentation/networking/device_drivers/intel/igbvf.rst
8686 F:      Documentation/networking/device_drivers/intel/ixgb.rst
8687 F:      Documentation/networking/device_drivers/intel/ixgbe.rst
8688 F:      Documentation/networking/device_drivers/intel/ixgbevf.rst
8689 F:      drivers/net/ethernet/intel/
8690 F:      drivers/net/ethernet/intel/*/
8691 F:      include/linux/avf/virtchnl.h
8692
8693 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8694 M:      Maik Broemme <mbroemme@libmpq.org>
8695 L:      linux-fbdev@vger.kernel.org
8696 S:      Maintained
8697 F:      Documentation/fb/intelfb.rst
8698 F:      drivers/video/fbdev/intelfb/
8699
8700 INTEL GPIO DRIVERS
8701 M:      Andy Shevchenko <andy@kernel.org>
8702 L:      linux-gpio@vger.kernel.org
8703 S:      Maintained
8704 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8705 F:      drivers/gpio/gpio-ich.c
8706 F:      drivers/gpio/gpio-intel-mid.c
8707 F:      drivers/gpio/gpio-merrifield.c
8708 F:      drivers/gpio/gpio-ml-ioh.c
8709 F:      drivers/gpio/gpio-pch.c
8710 F:      drivers/gpio/gpio-sch.c
8711 F:      drivers/gpio/gpio-sodaville.c
8712
8713 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8714 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
8715 M:      Zhi Wang <zhi.a.wang@intel.com>
8716 L:      intel-gvt-dev@lists.freedesktop.org
8717 L:      intel-gfx@lists.freedesktop.org
8718 S:      Supported
8719 W:      https://01.org/igvt-g
8720 T:      git https://github.com/intel/gvt-linux.git
8721 F:      drivers/gpu/drm/i915/gvt/
8722
8723 INTEL HID EVENT DRIVER
8724 M:      Alex Hung <alex.hung@canonical.com>
8725 L:      platform-driver-x86@vger.kernel.org
8726 S:      Maintained
8727 F:      drivers/platform/x86/intel-hid.c
8728
8729 INTEL I/OAT DMA DRIVER
8730 M:      Dave Jiang <dave.jiang@intel.com>
8731 R:      Dan Williams <dan.j.williams@intel.com>
8732 L:      dmaengine@vger.kernel.org
8733 S:      Supported
8734 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8735 F:      drivers/dma/ioat*
8736
8737 INTEL IADX DRIVER
8738 M:      Dave Jiang <dave.jiang@intel.com>
8739 L:      dmaengine@vger.kernel.org
8740 S:      Supported
8741 F:      drivers/dma/idxd/*
8742 F:      include/uapi/linux/idxd.h
8743
8744 INTEL IDLE DRIVER
8745 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
8746 M:      Len Brown <lenb@kernel.org>
8747 L:      linux-pm@vger.kernel.org
8748 S:      Supported
8749 B:      https://bugzilla.kernel.org
8750 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8751 F:      drivers/idle/intel_idle.c
8752
8753 INTEL INTEGRATED SENSOR HUB DRIVER
8754 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8755 M:      Jiri Kosina <jikos@kernel.org>
8756 L:      linux-input@vger.kernel.org
8757 S:      Maintained
8758 F:      drivers/hid/intel-ish-hid/
8759
8760 INTEL IOMMU (VT-d)
8761 M:      David Woodhouse <dwmw2@infradead.org>
8762 M:      Lu Baolu <baolu.lu@linux.intel.com>
8763 L:      iommu@lists.linux-foundation.org
8764 S:      Supported
8765 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8766 F:      drivers/iommu/intel/
8767 F:      include/linux/intel-iommu.h
8768 F:      include/linux/intel-svm.h
8769
8770 INTEL IOP-ADMA DMA DRIVER
8771 R:      Dan Williams <dan.j.williams@intel.com>
8772 S:      Odd fixes
8773 F:      drivers/dma/iop-adma.c
8774
8775 INTEL IPU3 CSI-2 CIO2 DRIVER
8776 M:      Yong Zhi <yong.zhi@intel.com>
8777 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8778 M:      Bingbu Cao <bingbu.cao@intel.com>
8779 R:      Tian Shu Qiu <tian.shu.qiu@intel.com>
8780 L:      linux-media@vger.kernel.org
8781 S:      Maintained
8782 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
8783 F:      drivers/media/pci/intel/ipu3/
8784
8785 INTEL IPU3 CSI-2 IMGU DRIVER
8786 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8787 R:      Bingbu Cao <bingbu.cao@intel.com>
8788 R:      Tian Shu Qiu <tian.shu.qiu@intel.com>
8789 L:      linux-media@vger.kernel.org
8790 S:      Maintained
8791 F:      Documentation/admin-guide/media/ipu3.rst
8792 F:      Documentation/admin-guide/media/ipu3_rcb.svg
8793 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
8794 F:      drivers/staging/media/ipu3/
8795
8796 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8797 M:      Krzysztof Halasa <khalasa@piap.pl>
8798 S:      Maintained
8799 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
8800 F:      drivers/net/wan/ixp4xx_hss.c
8801 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
8802 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
8803 F:      include/linux/soc/ixp4xx/npe.h
8804 F:      include/linux/soc/ixp4xx/qmgr.h
8805
8806 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
8807 M:      Deepak Saxena <dsaxena@plexity.net>
8808 S:      Maintained
8809 F:      drivers/char/hw_random/ixp4xx-rng.c
8810
8811 INTEL MANAGEMENT ENGINE (mei)
8812 M:      Tomas Winkler <tomas.winkler@intel.com>
8813 L:      linux-kernel@vger.kernel.org
8814 S:      Supported
8815 F:      Documentation/driver-api/mei/*
8816 F:      drivers/misc/mei/*
8817 F:      drivers/watchdog/mei_wdt.c
8818 F:      include/linux/mei_cl_bus.h
8819 F:      include/uapi/linux/mei.h
8820 F:      samples/mei/*
8821
8822 INTEL MENLOW THERMAL DRIVER
8823 M:      Sujith Thomas <sujith.thomas@intel.com>
8824 L:      platform-driver-x86@vger.kernel.org
8825 S:      Supported
8826 W:      https://01.org/linux-acpi
8827 F:      drivers/platform/x86/intel_menlow.c
8828
8829 INTEL MIC DRIVERS (mic)
8830 M:      Sudeep Dutt <sudeep.dutt@intel.com>
8831 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
8832 S:      Supported
8833 W:      https://github.com/sudeepdutt/mic
8834 W:      http://software.intel.com/en-us/mic-developer
8835 F:      Documentation/misc-devices/mic/
8836 F:      drivers/dma/mic_x100_dma.c
8837 F:      drivers/dma/mic_x100_dma.h
8838 F:      drivers/misc/mic/
8839 F:      include/linux/mic_bus.h
8840 F:      include/linux/scif.h
8841 F:      include/uapi/linux/mic_common.h
8842 F:      include/uapi/linux/mic_ioctl.h
8843 F:      include/uapi/linux/scif_ioctl.h
8844
8845 INTEL P-Unit IPC DRIVER
8846 M:      Zha Qipeng <qipeng.zha@intel.com>
8847 L:      platform-driver-x86@vger.kernel.org
8848 S:      Maintained
8849 F:      arch/x86/include/asm/intel_punit_ipc.h
8850 F:      drivers/platform/x86/intel_punit_ipc.c
8851
8852 INTEL PMC CORE DRIVER
8853 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
8854 M:      Vishwanath Somayaji <vishwanath.somayaji@intel.com>
8855 L:      platform-driver-x86@vger.kernel.org
8856 S:      Maintained
8857 F:      drivers/platform/x86/intel_pmc_core*
8858
8859 INTEL PMIC GPIO DRIVERS
8860 M:      Andy Shevchenko <andy@kernel.org>
8861 S:      Maintained
8862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8863 F:      drivers/gpio/gpio-*cove.c
8864 F:      drivers/gpio/gpio-msic.c
8865
8866 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
8867 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8868 S:      Maintained
8869 F:      drivers/mfd/intel_msic.c
8870 F:      drivers/mfd/intel_soc_pmic*
8871 F:      include/linux/mfd/intel_msic.h
8872 F:      include/linux/mfd/intel_soc_pmic*
8873
8874 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
8875 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
8876 L:      linux-wireless@vger.kernel.org
8877 S:      Maintained
8878 F:      Documentation/networking/device_drivers/intel/ipw2100.rst
8879 F:      Documentation/networking/device_drivers/intel/ipw2200.rst
8880 F:      drivers/net/wireless/intel/ipw2x00/
8881
8882 INTEL PSTATE DRIVER
8883 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8884 M:      Len Brown <lenb@kernel.org>
8885 L:      linux-pm@vger.kernel.org
8886 S:      Supported
8887 F:      drivers/cpufreq/intel_pstate.c
8888
8889 INTEL RDMA RNIC DRIVER
8890 M:      Faisal Latif <faisal.latif@intel.com>
8891 M:      Shiraz Saleem <shiraz.saleem@intel.com>
8892 L:      linux-rdma@vger.kernel.org
8893 S:      Supported
8894 F:      drivers/infiniband/hw/i40iw/
8895 F:      include/uapi/rdma/i40iw-abi.h
8896
8897 INTEL SCU DRIVERS
8898 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8899 S:      Maintained
8900 F:      arch/x86/include/asm/intel_scu_ipc.h
8901 F:      drivers/platform/x86/intel_scu_*
8902
8903 INTEL SPEED SELECT TECHNOLOGY
8904 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8905 L:      platform-driver-x86@vger.kernel.org
8906 S:      Maintained
8907 F:      drivers/platform/x86/intel_speed_select_if/
8908 F:      include/uapi/linux/isst_if.h
8909 F:      tools/power/x86/intel-speed-select/
8910
8911 INTEL STRATIX10 FIRMWARE DRIVERS
8912 M:      Richard Gong <richard.gong@linux.intel.com>
8913 L:      linux-kernel@vger.kernel.org
8914 S:      Maintained
8915 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
8916 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
8917 F:      drivers/firmware/stratix10-rsu.c
8918 F:      drivers/firmware/stratix10-svc.c
8919 F:      include/linux/firmware/intel/stratix10-smc.h
8920 F:      include/linux/firmware/intel/stratix10-svc-client.h
8921
8922 INTEL TELEMETRY DRIVER
8923 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
8924 M:      "David E. Box" <david.e.box@linux.intel.com>
8925 L:      platform-driver-x86@vger.kernel.org
8926 S:      Maintained
8927 F:      arch/x86/include/asm/intel_telemetry.h
8928 F:      drivers/platform/x86/intel_telemetry*
8929
8930 INTEL UNCORE FREQUENCY CONTROL
8931 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8932 L:      platform-driver-x86@vger.kernel.org
8933 S:      Maintained
8934 F:      drivers/platform/x86/intel-uncore-frequency.c
8935
8936 INTEL VIRTUAL BUTTON DRIVER
8937 M:      AceLan Kao <acelan.kao@canonical.com>
8938 L:      platform-driver-x86@vger.kernel.org
8939 S:      Maintained
8940 F:      drivers/platform/x86/intel-vbtn.c
8941
8942 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
8943 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8944 L:      linux-wireless@vger.kernel.org
8945 S:      Supported
8946 F:      drivers/net/wireless/intel/iwlegacy/
8947
8948 INTEL WIRELESS WIFI LINK (iwlwifi)
8949 M:      Johannes Berg <johannes.berg@intel.com>
8950 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
8951 M:      Luca Coelho <luciano.coelho@intel.com>
8952 M:      Intel Linux Wireless <linuxwifi@intel.com>
8953 L:      linux-wireless@vger.kernel.org
8954 S:      Supported
8955 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
8956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
8957 F:      drivers/net/wireless/intel/iwlwifi/
8958
8959 INTEL WIRELESS WIMAX CONNECTION 2400
8960 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
8961 M:      linux-wimax@intel.com
8962 L:      wimax@linuxwimax.org (subscribers-only)
8963 S:      Supported
8964 W:      http://linuxwimax.org
8965 F:      Documentation/admin-guide/wimax/i2400m.rst
8966 F:      drivers/net/wimax/i2400m/
8967 F:      include/uapi/linux/wimax/i2400m.h
8968
8969 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
8970 M:      Jithu Joseph <jithu.joseph@intel.com>
8971 R:      Maurice Ma <maurice.ma@intel.com>
8972 S:      Maintained
8973 W:      https://slimbootloader.github.io/security/firmware-update.html
8974 F:      drivers/platform/x86/intel-wmi-sbl-fw-update.c
8975
8976 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
8977 M:      Mario Limonciello <mario.limonciello@dell.com>
8978 S:      Maintained
8979 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
8980
8981 INTEL(R) TRACE HUB
8982 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8983 S:      Supported
8984 F:      Documentation/trace/intel_th.rst
8985 F:      drivers/hwtracing/intel_th/
8986 F:      include/linux/intel_th.h
8987
8988 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
8989 M:      Ning Sun <ning.sun@intel.com>
8990 L:      tboot-devel@lists.sourceforge.net
8991 S:      Supported
8992 W:      http://tboot.sourceforge.net
8993 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
8994 F:      Documentation/x86/intel_txt.rst
8995 F:      arch/x86/kernel/tboot.c
8996 F:      include/linux/tboot.h
8997
8998 INTERCONNECT API
8999 M:      Georgi Djakov <georgi.djakov@linaro.org>
9000 L:      linux-pm@vger.kernel.org
9001 S:      Maintained
9002 F:      Documentation/devicetree/bindings/interconnect/
9003 F:      Documentation/driver-api/interconnect.rst
9004 F:      drivers/interconnect/
9005 F:      include/dt-bindings/interconnect/
9006 F:      include/linux/interconnect-provider.h
9007 F:      include/linux/interconnect.h
9008
9009 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9010 M:      Linus Walleij <linus.walleij@linaro.org>
9011 L:      linux-iio@vger.kernel.org
9012 S:      Maintained
9013 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
9014 F:      drivers/iio/gyro/mpu3050*
9015
9016 IOC3 ETHERNET DRIVER
9017 M:      Ralf Baechle <ralf@linux-mips.org>
9018 L:      linux-mips@vger.kernel.org
9019 S:      Maintained
9020 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9021
9022 IOMAP FILESYSTEM LIBRARY
9023 M:      Christoph Hellwig <hch@infradead.org>
9024 M:      Darrick J. Wong <darrick.wong@oracle.com>
9025 M:      linux-xfs@vger.kernel.org
9026 M:      linux-fsdevel@vger.kernel.org
9027 L:      linux-xfs@vger.kernel.org
9028 L:      linux-fsdevel@vger.kernel.org
9029 S:      Supported
9030 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9031 F:      fs/iomap/
9032 F:      include/linux/iomap.h
9033
9034 IOMMU DRIVERS
9035 M:      Joerg Roedel <joro@8bytes.org>
9036 L:      iommu@lists.linux-foundation.org
9037 S:      Maintained
9038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9039 F:      Documentation/devicetree/bindings/iommu/
9040 F:      drivers/iommu/
9041 F:      include/linux/iommu.h
9042 F:      include/linux/iova.h
9043 F:      include/linux/of_iommu.h
9044
9045 IO_URING
9046 M:      Jens Axboe <axboe@kernel.dk>
9047 L:      io-uring@vger.kernel.org
9048 S:      Maintained
9049 T:      git git://git.kernel.dk/linux-block
9050 T:      git git://git.kernel.dk/liburing
9051 F:      fs/io-wq.c
9052 F:      fs/io-wq.h
9053 F:      fs/io_uring.c
9054 F:      include/uapi/linux/io_uring.h
9055
9056 IPMI SUBSYSTEM
9057 M:      Corey Minyard <minyard@acm.org>
9058 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9059 S:      Supported
9060 W:      http://openipmi.sourceforge.net/
9061 F:      Documentation/driver-api/ipmi.rst
9062 F:      Documentation/devicetree/bindings/ipmi/
9063 F:      drivers/char/ipmi/
9064 F:      include/linux/ipmi*
9065 F:      include/uapi/linux/ipmi*
9066
9067 IPS SCSI RAID DRIVER
9068 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9069 L:      linux-scsi@vger.kernel.org
9070 S:      Maintained
9071 W:      http://www.adaptec.com/
9072 F:      drivers/scsi/ips*
9073
9074 IPVS
9075 M:      Wensong Zhang <wensong@linux-vs.org>
9076 M:      Simon Horman <horms@verge.net.au>
9077 M:      Julian Anastasov <ja@ssi.bg>
9078 L:      netdev@vger.kernel.org
9079 L:      lvs-devel@vger.kernel.org
9080 S:      Maintained
9081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9083 F:      Documentation/networking/ipvs-sysctl.rst
9084 F:      include/net/ip_vs.h
9085 F:      include/uapi/linux/ip_vs.h
9086 F:      net/netfilter/ipvs/
9087
9088 IPWIRELESS DRIVER
9089 M:      Jiri Kosina <jikos@kernel.org>
9090 M:      David Sterba <dsterba@suse.com>
9091 S:      Odd Fixes
9092 F:      drivers/tty/ipwireless/
9093
9094 IPX NETWORK LAYER
9095 L:      netdev@vger.kernel.org
9096 S:      Obsolete
9097 F:      include/uapi/linux/ipx.h
9098
9099 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9100 M:      Marc Zyngier <maz@kernel.org>
9101 S:      Maintained
9102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9103 F:      Documentation/core-api/irq/irq-domain.rst
9104 F:      include/linux/irqdomain.h
9105 F:      kernel/irq/irqdomain.c
9106 F:      kernel/irq/msi.c
9107
9108 IRQ SUBSYSTEM
9109 M:      Thomas Gleixner <tglx@linutronix.de>
9110 L:      linux-kernel@vger.kernel.org
9111 S:      Maintained
9112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9113 F:      kernel/irq/
9114
9115 IRQCHIP DRIVERS
9116 M:      Thomas Gleixner <tglx@linutronix.de>
9117 M:      Jason Cooper <jason@lakedaemon.net>
9118 M:      Marc Zyngier <maz@kernel.org>
9119 L:      linux-kernel@vger.kernel.org
9120 S:      Maintained
9121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9122 F:      Documentation/devicetree/bindings/interrupt-controller/
9123 F:      drivers/irqchip/
9124
9125 ISA
9126 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9127 S:      Maintained
9128 F:      Documentation/driver-api/isa.rst
9129 F:      drivers/base/isa.c
9130 F:      include/linux/isa.h
9131
9132 ISA RADIO MODULE
9133 M:      Hans Verkuil <hverkuil@xs4all.nl>
9134 L:      linux-media@vger.kernel.org
9135 S:      Maintained
9136 W:      https://linuxtv.org
9137 T:      git git://linuxtv.org/media_tree.git
9138 F:      drivers/media/radio/radio-isa*
9139
9140 ISAPNP
9141 M:      Jaroslav Kysela <perex@perex.cz>
9142 S:      Maintained
9143 F:      Documentation/driver-api/isapnp.rst
9144 F:      drivers/pnp/isapnp/
9145 F:      include/linux/isapnp.h
9146
9147 ISCSI
9148 M:      Lee Duncan <lduncan@suse.com>
9149 M:      Chris Leech <cleech@redhat.com>
9150 L:      open-iscsi@googlegroups.com
9151 L:      linux-scsi@vger.kernel.org
9152 S:      Maintained
9153 W:      www.open-iscsi.com
9154 F:      drivers/scsi/*iscsi*
9155 F:      include/scsi/*iscsi*
9156
9157 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9158 M:      Peter Jones <pjones@redhat.com>
9159 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
9160 S:      Maintained
9161 F:      drivers/firmware/iscsi_ibft*
9162
9163 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9164 M:      Sagi Grimberg <sagi@grimberg.me>
9165 M:      Max Gurtovoy <maxg@mellanox.com>
9166 L:      linux-rdma@vger.kernel.org
9167 S:      Supported
9168 W:      http://www.openfabrics.org
9169 W:      www.open-iscsi.org
9170 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9171 F:      drivers/infiniband/ulp/iser/
9172
9173 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9174 M:      Sagi Grimberg <sagi@grimberg.me>
9175 L:      linux-rdma@vger.kernel.org
9176 L:      target-devel@vger.kernel.org
9177 S:      Supported
9178 W:      http://www.linux-iscsi.org
9179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9180 F:      drivers/infiniband/ulp/isert
9181
9182 ISDN/CMTP OVER BLUETOOTH
9183 M:      Karsten Keil <isdn@linux-pingi.de>
9184 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9185 L:      netdev@vger.kernel.org
9186 S:      Odd Fixes
9187 W:      http://www.isdn4linux.de
9188 F:      Documentation/isdn/
9189 F:      drivers/isdn/capi/
9190 F:      include/linux/isdn/
9191 F:      include/uapi/linux/isdn/
9192 F:      net/bluetooth/cmtp/
9193
9194 ISDN/mISDN SUBSYSTEM
9195 M:      Karsten Keil <isdn@linux-pingi.de>
9196 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9197 L:      netdev@vger.kernel.org
9198 S:      Maintained
9199 W:      http://www.isdn4linux.de
9200 F:      drivers/isdn/Kconfig
9201 F:      drivers/isdn/Makefile
9202 F:      drivers/isdn/hardware/
9203 F:      drivers/isdn/mISDN/
9204
9205 IT87 HARDWARE MONITORING DRIVER
9206 M:      Jean Delvare <jdelvare@suse.com>
9207 L:      linux-hwmon@vger.kernel.org
9208 S:      Maintained
9209 F:      Documentation/hwmon/it87.rst
9210 F:      drivers/hwmon/it87.c
9211
9212 IT913X MEDIA DRIVER
9213 M:      Antti Palosaari <crope@iki.fi>
9214 L:      linux-media@vger.kernel.org
9215 S:      Maintained
9216 W:      https://linuxtv.org
9217 W:      http://palosaari.fi/linux/
9218 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9219 T:      git git://linuxtv.org/anttip/media_tree.git
9220 F:      drivers/media/tuners/it913x*
9221
9222 IVTV VIDEO4LINUX DRIVER
9223 M:      Andy Walls <awalls@md.metrocast.net>
9224 L:      linux-media@vger.kernel.org
9225 S:      Maintained
9226 W:      https://linuxtv.org
9227 T:      git git://linuxtv.org/media_tree.git
9228 F:      Documentation/admin-guide/media/ivtv*
9229 F:      drivers/media/pci/ivtv/
9230 F:      include/uapi/linux/ivtv*
9231
9232 IX2505V MEDIA DRIVER
9233 M:      Malcolm Priestley <tvboxspy@gmail.com>
9234 L:      linux-media@vger.kernel.org
9235 S:      Maintained
9236 W:      https://linuxtv.org
9237 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9238 F:      drivers/media/dvb-frontends/ix2505v*
9239
9240 JAILHOUSE HYPERVISOR INTERFACE
9241 M:      Jan Kiszka <jan.kiszka@siemens.com>
9242 L:      jailhouse-dev@googlegroups.com
9243 S:      Maintained
9244 F:      arch/x86/include/asm/jailhouse_para.h
9245 F:      arch/x86/kernel/jailhouse.c
9246
9247 JC42.4 TEMPERATURE SENSOR DRIVER
9248 M:      Guenter Roeck <linux@roeck-us.net>
9249 L:      linux-hwmon@vger.kernel.org
9250 S:      Maintained
9251 F:      Documentation/hwmon/jc42.rst
9252 F:      drivers/hwmon/jc42.c
9253
9254 JFS FILESYSTEM
9255 M:      Dave Kleikamp <shaggy@kernel.org>
9256 L:      jfs-discussion@lists.sourceforge.net
9257 S:      Maintained
9258 W:      http://jfs.sourceforge.net/
9259 T:      git git://github.com/kleikamp/linux-shaggy.git
9260 F:      Documentation/admin-guide/jfs.rst
9261 F:      fs/jfs/
9262
9263 JME NETWORK DRIVER
9264 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
9265 L:      netdev@vger.kernel.org
9266 S:      Maintained
9267 F:      drivers/net/ethernet/jme.*
9268
9269 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9270 M:      David Woodhouse <dwmw2@infradead.org>
9271 M:      Richard Weinberger <richard@nod.at>
9272 L:      linux-mtd@lists.infradead.org
9273 S:      Odd Fixes
9274 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9275 T:      git git://git.infradead.org/ubifs-2.6.git
9276 F:      fs/jffs2/
9277 F:      include/uapi/linux/jffs2.h
9278
9279 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9280 M:      "Theodore Ts'o" <tytso@mit.edu>
9281 M:      Jan Kara <jack@suse.com>
9282 L:      linux-ext4@vger.kernel.org
9283 S:      Maintained
9284 F:      fs/jbd2/
9285 F:      include/linux/jbd2.h
9286
9287 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9288 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9289 L:      linux-media@vger.kernel.org
9290 S:      Maintained
9291 F:      drivers/media/platform/rcar_jpu.c
9292
9293 JSM Neo PCI based serial card
9294 L:      linux-serial@vger.kernel.org
9295 S:      Orphan
9296 F:      drivers/tty/serial/jsm/
9297
9298 K10TEMP HARDWARE MONITORING DRIVER
9299 M:      Clemens Ladisch <clemens@ladisch.de>
9300 L:      linux-hwmon@vger.kernel.org
9301 S:      Maintained
9302 F:      Documentation/hwmon/k10temp.rst
9303 F:      drivers/hwmon/k10temp.c
9304
9305 K8TEMP HARDWARE MONITORING DRIVER
9306 M:      Rudolf Marek <r.marek@assembler.cz>
9307 L:      linux-hwmon@vger.kernel.org
9308 S:      Maintained
9309 F:      Documentation/hwmon/k8temp.rst
9310 F:      drivers/hwmon/k8temp.c
9311
9312 KASAN
9313 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
9314 R:      Alexander Potapenko <glider@google.com>
9315 R:      Dmitry Vyukov <dvyukov@google.com>
9316 L:      kasan-dev@googlegroups.com
9317 S:      Maintained
9318 F:      Documentation/dev-tools/kasan.rst
9319 F:      arch/*/include/asm/kasan.h
9320 F:      arch/*/mm/kasan_init*
9321 F:      include/linux/kasan*.h
9322 F:      lib/test_kasan.c
9323 F:      mm/kasan/
9324 F:      scripts/Makefile.kasan
9325
9326 KCONFIG
9327 M:      Masahiro Yamada <masahiroy@kernel.org>
9328 L:      linux-kbuild@vger.kernel.org
9329 S:      Maintained
9330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9331 F:      Documentation/kbuild/kconfig*
9332 F:      scripts/Kconfig.include
9333 F:      scripts/kconfig/
9334
9335 KCSAN
9336 M:      Marco Elver <elver@google.com>
9337 R:      Dmitry Vyukov <dvyukov@google.com>
9338 L:      kasan-dev@googlegroups.com
9339 S:      Maintained
9340 F:      Documentation/dev-tools/kcsan.rst
9341 F:      include/linux/kcsan*.h
9342 F:      kernel/kcsan/
9343 F:      lib/Kconfig.kcsan
9344 F:      scripts/Makefile.kcsan
9345
9346 KDUMP
9347 M:      Dave Young <dyoung@redhat.com>
9348 M:      Baoquan He <bhe@redhat.com>
9349 R:      Vivek Goyal <vgoyal@redhat.com>
9350 L:      kexec@lists.infradead.org
9351 S:      Maintained
9352 W:      http://lse.sourceforge.net/kdump/
9353 F:      Documentation/admin-guide/kdump/
9354 F:      fs/proc/vmcore.c
9355 F:      include/linux/crash_core.h
9356 F:      include/linux/crash_dump.h
9357 F:      include/uapi/linux/vmcore.h
9358 F:      kernel/crash_*.c
9359
9360 KEENE FM RADIO TRANSMITTER DRIVER
9361 M:      Hans Verkuil <hverkuil@xs4all.nl>
9362 L:      linux-media@vger.kernel.org
9363 S:      Maintained
9364 W:      https://linuxtv.org
9365 T:      git git://linuxtv.org/media_tree.git
9366 F:      drivers/media/radio/radio-keene*
9367
9368 KERNEL AUTOMOUNTER
9369 M:      Ian Kent <raven@themaw.net>
9370 L:      autofs@vger.kernel.org
9371 S:      Maintained
9372 F:      fs/autofs/
9373
9374 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9375 M:      Masahiro Yamada <masahiroy@kernel.org>
9376 M:      Michal Marek <michal.lkml@markovi.net>
9377 L:      linux-kbuild@vger.kernel.org
9378 S:      Maintained
9379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9380 F:      Documentation/kbuild/
9381 F:      Makefile
9382 F:      scripts/*vmlinux*
9383 F:      scripts/Kbuild*
9384 F:      scripts/Makefile*
9385 F:      scripts/basic/
9386 F:      scripts/mk*
9387 F:      scripts/mod/
9388 F:      scripts/package/
9389
9390 KERNEL JANITORS
9391 L:      kernel-janitors@vger.kernel.org
9392 S:      Odd Fixes
9393 W:      http://kernelnewbies.org/KernelJanitors
9394
9395 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9396 M:      "J. Bruce Fields" <bfields@fieldses.org>
9397 M:      Chuck Lever <chuck.lever@oracle.com>
9398 L:      linux-nfs@vger.kernel.org
9399 S:      Supported
9400 W:      http://nfs.sourceforge.net/
9401 T:      git git://linux-nfs.org/~bfields/linux.git
9402 F:      fs/lockd/
9403 F:      fs/nfs_common/
9404 F:      fs/nfsd/
9405 F:      include/linux/lockd/
9406 F:      include/linux/sunrpc/
9407 F:      include/uapi/linux/nfsd/
9408 F:      include/uapi/linux/sunrpc/
9409 F:      net/sunrpc/
9410
9411 KERNEL SELFTEST FRAMEWORK
9412 M:      Shuah Khan <shuah@kernel.org>
9413 M:      Shuah Khan <skhan@linuxfoundation.org>
9414 L:      linux-kselftest@vger.kernel.org
9415 S:      Maintained
9416 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9418 F:      Documentation/dev-tools/kselftest*
9419 F:      tools/testing/selftests/
9420
9421 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9422 M:      Brendan Higgins <brendanhiggins@google.com>
9423 L:      linux-kselftest@vger.kernel.org
9424 L:      kunit-dev@googlegroups.com
9425 S:      Maintained
9426 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9427 F:      Documentation/dev-tools/kunit/
9428 F:      include/kunit/
9429 F:      lib/kunit/
9430 F:      tools/testing/kunit/
9431
9432 KERNEL USERMODE HELPER
9433 M:      Luis Chamberlain <mcgrof@kernel.org>
9434 L:      linux-kernel@vger.kernel.org
9435 S:      Maintained
9436 F:      include/linux/umh.h
9437 F:      kernel/umh.c
9438
9439 KERNEL VIRTUAL MACHINE (KVM)
9440 M:      Paolo Bonzini <pbonzini@redhat.com>
9441 L:      kvm@vger.kernel.org
9442 S:      Supported
9443 W:      http://www.linux-kvm.org
9444 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9445 F:      Documentation/virt/kvm/
9446 F:      include/asm-generic/kvm*
9447 F:      include/kvm/iodev.h
9448 F:      include/linux/kvm*
9449 F:      include/trace/events/kvm.h
9450 F:      include/uapi/asm-generic/kvm*
9451 F:      include/uapi/linux/kvm*
9452 F:      tools/kvm/
9453 F:      tools/testing/selftests/kvm/
9454 F:      virt/kvm/*
9455
9456 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9457 M:      Marc Zyngier <maz@kernel.org>
9458 R:      James Morse <james.morse@arm.com>
9459 R:      Julien Thierry <julien.thierry.kdev@gmail.com>
9460 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
9461 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9462 L:      kvmarm@lists.cs.columbia.edu
9463 S:      Maintained
9464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9465 F:      arch/arm64/include/asm/kvm*
9466 F:      arch/arm64/include/uapi/asm/kvm*
9467 F:      arch/arm64/kvm/
9468 F:      include/kvm/arm_*
9469
9470 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9471 L:      linux-mips@vger.kernel.org
9472 L:      kvm@vger.kernel.org
9473 S:      Orphan
9474 F:      arch/mips/include/asm/kvm*
9475 F:      arch/mips/include/uapi/asm/kvm*
9476 F:      arch/mips/kvm/
9477
9478 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9479 M:      Paul Mackerras <paulus@ozlabs.org>
9480 L:      kvm-ppc@vger.kernel.org
9481 S:      Supported
9482 W:      http://www.linux-kvm.org/
9483 T:      git git://github.com/agraf/linux-2.6.git
9484 F:      arch/powerpc/include/asm/kvm*
9485 F:      arch/powerpc/include/uapi/asm/kvm*
9486 F:      arch/powerpc/kernel/kvm*
9487 F:      arch/powerpc/kvm/
9488
9489 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9490 M:      Christian Borntraeger <borntraeger@de.ibm.com>
9491 M:      Janosch Frank <frankja@linux.ibm.com>
9492 R:      David Hildenbrand <david@redhat.com>
9493 R:      Cornelia Huck <cohuck@redhat.com>
9494 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
9495 L:      kvm@vger.kernel.org
9496 S:      Supported
9497 W:      http://www.ibm.com/developerworks/linux/linux390/
9498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9499 F:      Documentation/virt/kvm/s390*
9500 F:      arch/s390/include/asm/gmap.h
9501 F:      arch/s390/include/asm/kvm*
9502 F:      arch/s390/include/uapi/asm/kvm*
9503 F:      arch/s390/kvm/
9504 F:      arch/s390/mm/gmap.c
9505 F:      tools/testing/selftests/kvm/*/s390x/
9506 F:      tools/testing/selftests/kvm/s390x/
9507
9508 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9509 M:      Paolo Bonzini <pbonzini@redhat.com>
9510 R:      Sean Christopherson <sean.j.christopherson@intel.com>
9511 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
9512 R:      Wanpeng Li <wanpengli@tencent.com>
9513 R:      Jim Mattson <jmattson@google.com>
9514 R:      Joerg Roedel <joro@8bytes.org>
9515 L:      kvm@vger.kernel.org
9516 S:      Supported
9517 W:      http://www.linux-kvm.org
9518 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9519 F:      arch/x86/include/asm/kvm*
9520 F:      arch/x86/include/asm/pvclock-abi.h
9521 F:      arch/x86/include/asm/svm.h
9522 F:      arch/x86/include/asm/vmx*.h
9523 F:      arch/x86/include/uapi/asm/kvm*
9524 F:      arch/x86/include/uapi/asm/svm.h
9525 F:      arch/x86/include/uapi/asm/vmx.h
9526 F:      arch/x86/kernel/kvm.c
9527 F:      arch/x86/kernel/kvmclock.c
9528 F:      arch/x86/kvm/
9529 F:      arch/x86/kvm/*/
9530
9531 KERNFS
9532 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9533 M:      Tejun Heo <tj@kernel.org>
9534 S:      Supported
9535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9536 F:      fs/kernfs/
9537 F:      include/linux/kernfs.h
9538
9539 KEXEC
9540 M:      Eric Biederman <ebiederm@xmission.com>
9541 L:      kexec@lists.infradead.org
9542 S:      Maintained
9543 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9544 F:      include/linux/kexec.h
9545 F:      include/uapi/linux/kexec.h
9546 F:      kernel/kexec*
9547
9548 KEYS-ENCRYPTED
9549 M:      Mimi Zohar <zohar@linux.ibm.com>
9550 L:      linux-integrity@vger.kernel.org
9551 L:      keyrings@vger.kernel.org
9552 S:      Supported
9553 F:      Documentation/security/keys/trusted-encrypted.rst
9554 F:      include/keys/encrypted-type.h
9555 F:      security/keys/encrypted-keys/
9556
9557 KEYS-TRUSTED
9558 M:      James Bottomley <jejb@linux.ibm.com>
9559 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9560 M:      Mimi Zohar <zohar@linux.ibm.com>
9561 L:      linux-integrity@vger.kernel.org
9562 L:      keyrings@vger.kernel.org
9563 S:      Supported
9564 F:      Documentation/security/keys/trusted-encrypted.rst
9565 F:      include/keys/trusted-type.h
9566 F:      include/keys/trusted_tpm.h
9567 F:      security/keys/trusted-keys/
9568
9569 KEYS/KEYRINGS
9570 M:      David Howells <dhowells@redhat.com>
9571 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9572 L:      keyrings@vger.kernel.org
9573 S:      Maintained
9574 F:      Documentation/security/keys/core.rst
9575 F:      include/keys/
9576 F:      include/linux/key-type.h
9577 F:      include/linux/key.h
9578 F:      include/linux/keyctl.h
9579 F:      include/uapi/linux/keyctl.h
9580 F:      security/keys/
9581
9582 KFIFO
9583 M:      Stefani Seibold <stefani@seibold.net>
9584 S:      Maintained
9585 F:      include/linux/kfifo.h
9586 F:      lib/kfifo.c
9587 F:      samples/kfifo/
9588
9589 KGDB / KDB /debug_core
9590 M:      Jason Wessel <jason.wessel@windriver.com>
9591 M:      Daniel Thompson <daniel.thompson@linaro.org>
9592 R:      Douglas Anderson <dianders@chromium.org>
9593 L:      kgdb-bugreport@lists.sourceforge.net
9594 S:      Maintained
9595 W:      http://kgdb.wiki.kernel.org/
9596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9597 F:      Documentation/dev-tools/kgdb.rst
9598 F:      drivers/misc/kgdbts.c
9599 F:      drivers/tty/serial/kgdboc.c
9600 F:      include/linux/kdb.h
9601 F:      include/linux/kgdb.h
9602 F:      kernel/debug/
9603
9604 KMEMLEAK
9605 M:      Catalin Marinas <catalin.marinas@arm.com>
9606 S:      Maintained
9607 F:      Documentation/dev-tools/kmemleak.rst
9608 F:      include/linux/kmemleak.h
9609 F:      mm/kmemleak-test.c
9610 F:      mm/kmemleak.c
9611
9612 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9613 M:      Luis Chamberlain <mcgrof@kernel.org>
9614 L:      linux-kernel@vger.kernel.org
9615 S:      Maintained
9616 F:      include/linux/kmod.h
9617 F:      kernel/kmod.c
9618 F:      lib/test_kmod.c
9619 F:      tools/testing/selftests/kmod/
9620
9621 KPROBES
9622 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
9623 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9624 M:      "David S. Miller" <davem@davemloft.net>
9625 M:      Masami Hiramatsu <mhiramat@kernel.org>
9626 S:      Maintained
9627 F:      Documentation/kprobes.txt
9628 F:      include/asm-generic/kprobes.h
9629 F:      include/linux/kprobes.h
9630 F:      kernel/kprobes.c
9631
9632 KS0108 LCD CONTROLLER DRIVER
9633 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
9634 S:      Maintained
9635 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9636 F:      drivers/auxdisplay/ks0108.c
9637 F:      include/linux/ks0108.h
9638
9639 L3MDEV
9640 M:      David Ahern <dsahern@kernel.org>
9641 L:      netdev@vger.kernel.org
9642 S:      Maintained
9643 F:      include/net/l3mdev.h
9644 F:      net/l3mdev
9645
9646 L7 BPF FRAMEWORK
9647 M:      John Fastabend <john.fastabend@gmail.com>
9648 M:      Daniel Borkmann <daniel@iogearbox.net>
9649 M:      Jakub Sitnicki <jakub@cloudflare.com>
9650 M:      Lorenz Bauer <lmb@cloudflare.com>
9651 L:      netdev@vger.kernel.org
9652 L:      bpf@vger.kernel.org
9653 S:      Maintained
9654 F:      include/linux/skmsg.h
9655 F:      net/core/skmsg.c
9656 F:      net/core/sock_map.c
9657 F:      net/ipv4/tcp_bpf.c
9658 F:      net/ipv4/udp_bpf.c
9659
9660 LANTIQ / INTEL Ethernet drivers
9661 M:      Hauke Mehrtens <hauke@hauke-m.de>
9662 L:      netdev@vger.kernel.org
9663 S:      Maintained
9664 F:      drivers/net/dsa/lantiq_gswip.c
9665 F:      drivers/net/dsa/lantiq_pce.h
9666 F:      drivers/net/ethernet/lantiq_xrx200.c
9667 F:      net/dsa/tag_gswip.c
9668
9669 LANTIQ MIPS ARCHITECTURE
9670 M:      John Crispin <john@phrozen.org>
9671 L:      linux-mips@vger.kernel.org
9672 S:      Maintained
9673 F:      arch/mips/lantiq
9674 F:      drivers/soc/lantiq
9675
9676 LAPB module
9677 L:      linux-x25@vger.kernel.org
9678 S:      Orphan
9679 F:      Documentation/networking/lapb-module.rst
9680 F:      include/*/lapb.h
9681 F:      net/lapb/
9682
9683 LASI 53c700 driver for PARISC
9684 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9685 L:      linux-scsi@vger.kernel.org
9686 S:      Maintained
9687 F:      Documentation/scsi/53c700.rst
9688 F:      drivers/scsi/53c700*
9689
9690 LEAKING_ADDRESSES
9691 M:      Tobin C. Harding <me@tobin.cc>
9692 M:      Tycho Andersen <tycho@tycho.ws>
9693 L:      kernel-hardening@lists.openwall.com
9694 S:      Maintained
9695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9696 F:      scripts/leaking_addresses.pl
9697
9698 LED SUBSYSTEM
9699 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
9700 M:      Pavel Machek <pavel@ucw.cz>
9701 R:      Dan Murphy <dmurphy@ti.com>
9702 L:      linux-leds@vger.kernel.org
9703 S:      Maintained
9704 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
9705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9706 F:      Documentation/devicetree/bindings/leds/
9707 F:      drivers/leds/
9708 F:      include/linux/leds.h
9709
9710 LEGACY EEPROM DRIVER
9711 M:      Jean Delvare <jdelvare@suse.com>
9712 S:      Maintained
9713 F:      Documentation/misc-devices/eeprom.rst
9714 F:      drivers/misc/eeprom/eeprom.c
9715
9716 LEGO MINDSTORMS EV3
9717 R:      David Lechner <david@lechnology.com>
9718 S:      Maintained
9719 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9720 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9721 F:      drivers/power/supply/lego_ev3_battery.c
9722
9723 LEGO USB Tower driver
9724 M:      Juergen Stuber <starblue@users.sourceforge.net>
9725 L:      legousb-devel@lists.sourceforge.net
9726 S:      Maintained
9727 W:      http://legousb.sourceforge.net/
9728 F:      drivers/usb/misc/legousbtower.c
9729
9730 LG LAPTOP EXTRAS
9731 M:      Matan Ziv-Av <matan@svgalib.org>
9732 L:      platform-driver-x86@vger.kernel.org
9733 S:      Maintained
9734 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9735 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9736 F:      drivers/platform/x86/lg-laptop.c
9737
9738 LG2160 MEDIA DRIVER
9739 M:      Michael Krufky <mkrufky@linuxtv.org>
9740 L:      linux-media@vger.kernel.org
9741 S:      Maintained
9742 W:      https://linuxtv.org
9743 W:      http://github.com/mkrufky
9744 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9745 T:      git git://linuxtv.org/mkrufky/tuners.git
9746 F:      drivers/media/dvb-frontends/lg2160.*
9747
9748 LGDT3305 MEDIA DRIVER
9749 M:      Michael Krufky <mkrufky@linuxtv.org>
9750 L:      linux-media@vger.kernel.org
9751 S:      Maintained
9752 W:      https://linuxtv.org
9753 W:      http://github.com/mkrufky
9754 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9755 T:      git git://linuxtv.org/mkrufky/tuners.git
9756 F:      drivers/media/dvb-frontends/lgdt3305.*
9757
9758 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9759 M:      Viresh Kumar <vireshk@kernel.org>
9760 L:      linux-ide@vger.kernel.org
9761 S:      Maintained
9762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9763 F:      drivers/ata/pata_arasan_cf.c
9764 F:      include/linux/pata_arasan_cf_data.h
9765
9766 LIBATA PATA DRIVERS
9767 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
9768 M:      Jens Axboe <axboe@kernel.dk>
9769 L:      linux-ide@vger.kernel.org
9770 S:      Maintained
9771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9772 F:      drivers/ata/ata_generic.c
9773 F:      drivers/ata/pata_*.c
9774
9775 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9776 M:      Linus Walleij <linus.walleij@linaro.org>
9777 L:      linux-ide@vger.kernel.org
9778 S:      Maintained
9779 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9780 F:      drivers/ata/pata_ftide010.c
9781 F:      drivers/ata/sata_gemini.c
9782 F:      drivers/ata/sata_gemini.h
9783
9784 LIBATA SATA AHCI PLATFORM devices support
9785 M:      Hans de Goede <hdegoede@redhat.com>
9786 M:      Jens Axboe <axboe@kernel.dk>
9787 L:      linux-ide@vger.kernel.org
9788 S:      Maintained
9789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9790 F:      drivers/ata/ahci_platform.c
9791 F:      drivers/ata/libahci_platform.c
9792 F:      include/linux/ahci_platform.h
9793
9794 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
9795 M:      Mikael Pettersson <mikpelinux@gmail.com>
9796 L:      linux-ide@vger.kernel.org
9797 S:      Maintained
9798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9799 F:      drivers/ata/sata_promise.*
9800
9801 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
9802 M:      Jens Axboe <axboe@kernel.dk>
9803 L:      linux-ide@vger.kernel.org
9804 S:      Maintained
9805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9806 F:      Documentation/devicetree/bindings/ata/
9807 F:      drivers/ata/
9808 F:      include/linux/ata.h
9809 F:      include/linux/libata.h
9810
9811 LIBLOCKDEP
9812 M:      Sasha Levin <alexander.levin@microsoft.com>
9813 S:      Maintained
9814 F:      tools/lib/lockdep/
9815
9816 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
9817 M:      Dan Williams <dan.j.williams@intel.com>
9818 M:      Vishal Verma <vishal.l.verma@intel.com>
9819 M:      Dave Jiang <dave.jiang@intel.com>
9820 L:      linux-nvdimm@lists.01.org
9821 S:      Supported
9822 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9823 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9824 F:      drivers/nvdimm/blk.c
9825 F:      drivers/nvdimm/region_devs.c
9826
9827 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
9828 M:      Vishal Verma <vishal.l.verma@intel.com>
9829 M:      Dan Williams <dan.j.williams@intel.com>
9830 M:      Dave Jiang <dave.jiang@intel.com>
9831 L:      linux-nvdimm@lists.01.org
9832 S:      Supported
9833 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9834 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9835 F:      drivers/nvdimm/btt*
9836
9837 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
9838 M:      Dan Williams <dan.j.williams@intel.com>
9839 M:      Vishal Verma <vishal.l.verma@intel.com>
9840 M:      Dave Jiang <dave.jiang@intel.com>
9841 L:      linux-nvdimm@lists.01.org
9842 S:      Supported
9843 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9844 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9845 F:      drivers/nvdimm/pmem*
9846
9847 LIBNVDIMM: DEVICETREE BINDINGS
9848 M:      Oliver O'Halloran <oohall@gmail.com>
9849 L:      linux-nvdimm@lists.01.org
9850 S:      Supported
9851 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9852 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
9853 F:      drivers/nvdimm/of_pmem.c
9854
9855 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
9856 M:      Dan Williams <dan.j.williams@intel.com>
9857 M:      Vishal Verma <vishal.l.verma@intel.com>
9858 M:      Dave Jiang <dave.jiang@intel.com>
9859 M:      Ira Weiny <ira.weiny@intel.com>
9860 L:      linux-nvdimm@lists.01.org
9861 S:      Supported
9862 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9863 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
9865 F:      drivers/acpi/nfit/*
9866 F:      drivers/nvdimm/*
9867 F:      include/linux/libnvdimm.h
9868 F:      include/linux/nd.h
9869 F:      include/uapi/linux/ndctl.h
9870 F:      tools/testing/nvdimm/
9871
9872 LICENSES and SPDX stuff
9873 M:      Thomas Gleixner <tglx@linutronix.de>
9874 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9875 L:      linux-spdx@vger.kernel.org
9876 S:      Maintained
9877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
9878 F:      COPYING
9879 F:      Documentation/process/license-rules.rst
9880 F:      LICENSES/
9881 F:      scripts/spdxcheck-test.sh
9882 F:      scripts/spdxcheck.py
9883
9884 LIGHTNVM PLATFORM SUPPORT
9885 M:      Matias Bjorling <mb@lightnvm.io>
9886 L:      linux-block@vger.kernel.org
9887 S:      Maintained
9888 W:      http://github/OpenChannelSSD
9889 F:      drivers/lightnvm/
9890 F:      include/linux/lightnvm.h
9891 F:      include/uapi/linux/lightnvm.h
9892
9893 LINEAR RANGES HELPERS
9894 M:      Mark Brown <broonie@kernel.org>
9895 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
9896 F:      lib/linear_ranges.c
9897 F:      lib/test_linear_ranges.c
9898 F:      include/linux/linear_range.h
9899
9900 LINUX FOR POWER MACINTOSH
9901 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9902 L:      linuxppc-dev@lists.ozlabs.org
9903 S:      Odd Fixes
9904 F:      arch/powerpc/platforms/powermac/
9905 F:      drivers/macintosh/
9906
9907 LINUX FOR POWERPC (32-BIT AND 64-BIT)
9908 M:      Michael Ellerman <mpe@ellerman.id.au>
9909 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9910 R:      Paul Mackerras <paulus@samba.org>
9911 L:      linuxppc-dev@lists.ozlabs.org
9912 S:      Supported
9913 W:      https://github.com/linuxppc/wiki/wiki
9914 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
9915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
9916 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
9917 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
9918 F:      Documentation/devicetree/bindings/powerpc/
9919 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
9920 F:      Documentation/powerpc/
9921 F:      arch/powerpc/
9922 F:      drivers/*/*/*pasemi*
9923 F:      drivers/*/*pasemi*
9924 F:      drivers/char/tpm/tpm_ibmvtpm*
9925 F:      drivers/crypto/nx/
9926 F:      drivers/crypto/vmx/
9927 F:      drivers/i2c/busses/i2c-opal.c
9928 F:      drivers/net/ethernet/ibm/ibmveth.*
9929 F:      drivers/net/ethernet/ibm/ibmvnic.*
9930 F:      drivers/pci/hotplug/pnv_php.c
9931 F:      drivers/pci/hotplug/rpa*
9932 F:      drivers/rtc/rtc-opal.c
9933 F:      drivers/scsi/ibmvscsi/
9934 F:      drivers/tty/hvc/hvc_opal.c
9935 F:      drivers/watchdog/wdrtas.c
9936 F:      tools/testing/selftests/powerpc
9937 N:      /pmac
9938 N:      powermac
9939 N:      powernv
9940 N:      [^a-z0-9]ps3
9941 N:      pseries
9942
9943 LINUX FOR POWERPC EMBEDDED MPC5XXX
9944 M:      Anatolij Gustschin <agust@denx.de>
9945 L:      linuxppc-dev@lists.ozlabs.org
9946 S:      Odd Fixes
9947 F:      arch/powerpc/platforms/512x/
9948 F:      arch/powerpc/platforms/52xx/
9949
9950 LINUX FOR POWERPC EMBEDDED PPC4XX
9951 L:      linuxppc-dev@lists.ozlabs.org
9952 S:      Orphan
9953 F:      arch/powerpc/platforms/40x/
9954 F:      arch/powerpc/platforms/44x/
9955
9956 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
9957 M:      Scott Wood <oss@buserror.net>
9958 L:      linuxppc-dev@lists.ozlabs.org
9959 S:      Odd fixes
9960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
9961 F:      Documentation/devicetree/bindings/powerpc/fsl/
9962 F:      arch/powerpc/platforms/83xx/
9963 F:      arch/powerpc/platforms/85xx/
9964
9965 LINUX FOR POWERPC EMBEDDED PPC8XX
9966 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
9967 L:      linuxppc-dev@lists.ozlabs.org
9968 S:      Maintained
9969 F:      arch/powerpc/platforms/8xx/
9970
9971 LINUX KERNEL DUMP TEST MODULE (LKDTM)
9972 M:      Kees Cook <keescook@chromium.org>
9973 S:      Maintained
9974 F:      drivers/misc/lkdtm/*
9975 F:      tools/testing/selftests/lkdtm/*
9976
9977 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
9978 M:      Alan Stern <stern@rowland.harvard.edu>
9979 M:      Andrea Parri <parri.andrea@gmail.com>
9980 M:      Will Deacon <will@kernel.org>
9981 M:      Peter Zijlstra <peterz@infradead.org>
9982 M:      Boqun Feng <boqun.feng@gmail.com>
9983 M:      Nicholas Piggin <npiggin@gmail.com>
9984 M:      David Howells <dhowells@redhat.com>
9985 M:      Jade Alglave <j.alglave@ucl.ac.uk>
9986 M:      Luc Maranget <luc.maranget@inria.fr>
9987 M:      "Paul E. McKenney" <paulmck@kernel.org>
9988 R:      Akira Yokosawa <akiyks@gmail.com>
9989 R:      Daniel Lustig <dlustig@nvidia.com>
9990 L:      linux-kernel@vger.kernel.org
9991 L:      linux-arch@vger.kernel.org
9992 S:      Supported
9993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
9994 F:      Documentation/atomic_bitops.txt
9995 F:      Documentation/atomic_t.txt
9996 F:      Documentation/core-api/atomic_ops.rst
9997 F:      Documentation/core-api/refcount-vs-atomic.rst
9998 F:      Documentation/memory-barriers.txt
9999 F:      tools/memory-model/
10000
10001 LIS3LV02D ACCELEROMETER DRIVER
10002 M:      Eric Piel <eric.piel@tremplin-utc.net>
10003 S:      Maintained
10004 F:      Documentation/misc-devices/lis3lv02d.rst
10005 F:      drivers/misc/lis3lv02d/
10006 F:      drivers/platform/x86/hp_accel.c
10007
10008 LIST KUNIT TEST
10009 M:      David Gow <davidgow@google.com>
10010 L:      linux-kselftest@vger.kernel.org
10011 L:      kunit-dev@googlegroups.com
10012 S:      Maintained
10013 F:      lib/list-test.c
10014
10015 LIVE PATCHING
10016 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10017 M:      Jiri Kosina <jikos@kernel.org>
10018 M:      Miroslav Benes <mbenes@suse.cz>
10019 M:      Petr Mladek <pmladek@suse.com>
10020 R:      Joe Lawrence <joe.lawrence@redhat.com>
10021 L:      live-patching@vger.kernel.org
10022 S:      Maintained
10023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10024 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10025 F:      Documentation/livepatch/
10026 F:      arch/powerpc/include/asm/livepatch.h
10027 F:      arch/s390/include/asm/livepatch.h
10028 F:      arch/x86/include/asm/livepatch.h
10029 F:      include/linux/livepatch.h
10030 F:      kernel/livepatch/
10031 F:      lib/livepatch/
10032 F:      samples/livepatch/
10033 F:      tools/testing/selftests/livepatch/
10034
10035 LLC (802.2)
10036 L:      netdev@vger.kernel.org
10037 S:      Odd fixes
10038 F:      include/linux/llc.h
10039 F:      include/net/llc*
10040 F:      include/uapi/linux/llc.h
10041 F:      net/llc/
10042
10043 LM73 HARDWARE MONITOR DRIVER
10044 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10045 L:      linux-hwmon@vger.kernel.org
10046 S:      Maintained
10047 F:      drivers/hwmon/lm73.c
10048
10049 LM78 HARDWARE MONITOR DRIVER
10050 M:      Jean Delvare <jdelvare@suse.com>
10051 L:      linux-hwmon@vger.kernel.org
10052 S:      Maintained
10053 F:      Documentation/hwmon/lm78.rst
10054 F:      drivers/hwmon/lm78.c
10055
10056 LM83 HARDWARE MONITOR DRIVER
10057 M:      Jean Delvare <jdelvare@suse.com>
10058 L:      linux-hwmon@vger.kernel.org
10059 S:      Maintained
10060 F:      Documentation/hwmon/lm83.rst
10061 F:      drivers/hwmon/lm83.c
10062
10063 LM90 HARDWARE MONITOR DRIVER
10064 M:      Jean Delvare <jdelvare@suse.com>
10065 L:      linux-hwmon@vger.kernel.org
10066 S:      Maintained
10067 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10068 F:      Documentation/hwmon/lm90.rst
10069 F:      drivers/hwmon/lm90.c
10070 F:      include/dt-bindings/thermal/lm90.h
10071
10072 LM95234 HARDWARE MONITOR DRIVER
10073 M:      Guenter Roeck <linux@roeck-us.net>
10074 L:      linux-hwmon@vger.kernel.org
10075 S:      Maintained
10076 F:      Documentation/hwmon/lm95234.rst
10077 F:      drivers/hwmon/lm95234.c
10078
10079 LME2510 MEDIA DRIVER
10080 M:      Malcolm Priestley <tvboxspy@gmail.com>
10081 L:      linux-media@vger.kernel.org
10082 S:      Maintained
10083 W:      https://linuxtv.org
10084 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10085 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10086
10087 LOADPIN SECURITY MODULE
10088 M:      Kees Cook <keescook@chromium.org>
10089 S:      Supported
10090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10091 F:      Documentation/admin-guide/LSM/LoadPin.rst
10092 F:      security/loadpin/
10093
10094 LOCKING PRIMITIVES
10095 M:      Peter Zijlstra <peterz@infradead.org>
10096 M:      Ingo Molnar <mingo@redhat.com>
10097 M:      Will Deacon <will@kernel.org>
10098 L:      linux-kernel@vger.kernel.org
10099 S:      Maintained
10100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10101 F:      Documentation/locking/
10102 F:      arch/*/include/asm/spinlock*.h
10103 F:      include/linux/lockdep.h
10104 F:      include/linux/mutex*.h
10105 F:      include/linux/rwlock*.h
10106 F:      include/linux/rwsem*.h
10107 F:      include/linux/seqlock.h
10108 F:      include/linux/spinlock*.h
10109 F:      kernel/locking/
10110 F:      lib/locking*.[ch]
10111 X:      kernel/locking/locktorture.c
10112
10113 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10114 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
10115 L:      linux-ntfs-dev@lists.sourceforge.net
10116 S:      Maintained
10117 W:      http://www.linux-ntfs.org/content/view/19/37/
10118 F:      Documentation/admin-guide/ldm.rst
10119 F:      block/partitions/ldm.*
10120
10121 LOGITECH HID GAMING KEYBOARDS
10122 M:      Hans de Goede <hdegoede@redhat.com>
10123 L:      linux-input@vger.kernel.org
10124 S:      Maintained
10125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10126 F:      drivers/hid/hid-lg-g15.c
10127
10128 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10129 M:      Sathya Prakash <sathya.prakash@broadcom.com>
10130 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
10131 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
10132 L:      MPT-FusionLinux.pdl@broadcom.com
10133 L:      linux-scsi@vger.kernel.org
10134 S:      Supported
10135 W:      http://www.avagotech.com/support/
10136 F:      drivers/message/fusion/
10137 F:      drivers/scsi/mpt3sas/
10138
10139 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10140 M:      Matthew Wilcox <willy@infradead.org>
10141 L:      linux-scsi@vger.kernel.org
10142 S:      Maintained
10143 F:      drivers/scsi/sym53c8xx_2/
10144
10145 LTC1660 DAC DRIVER
10146 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10147 L:      linux-iio@vger.kernel.org
10148 S:      Maintained
10149 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10150 F:      drivers/iio/dac/ltc1660.c
10151
10152 LTC2947 HARDWARE MONITOR DRIVER
10153 M:      Nuno Sá <nuno.sa@analog.com>
10154 L:      linux-hwmon@vger.kernel.org
10155 S:      Supported
10156 W:      http://ez.analog.com/community/linux-device-drivers
10157 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10158 F:      drivers/hwmon/ltc2947-core.c
10159 F:      drivers/hwmon/ltc2947-i2c.c
10160 F:      drivers/hwmon/ltc2947-spi.c
10161 F:      drivers/hwmon/ltc2947.h
10162
10163 LTC2983 IIO TEMPERATURE DRIVER
10164 M:      Nuno Sá <nuno.sa@analog.com>
10165 L:      linux-iio@vger.kernel.org
10166 S:      Supported
10167 W:      http://ez.analog.com/community/linux-device-drivers
10168 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10169 F:      drivers/iio/temperature/ltc2983.c
10170
10171 LTC4261 HARDWARE MONITOR DRIVER
10172 M:      Guenter Roeck <linux@roeck-us.net>
10173 L:      linux-hwmon@vger.kernel.org
10174 S:      Maintained
10175 F:      Documentation/hwmon/ltc4261.rst
10176 F:      drivers/hwmon/ltc4261.c
10177
10178 LTC4306 I2C MULTIPLEXER DRIVER
10179 M:      Michael Hennerich <michael.hennerich@analog.com>
10180 L:      linux-i2c@vger.kernel.org
10181 S:      Supported
10182 W:      http://ez.analog.com/community/linux-device-drivers
10183 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10184 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10185
10186 LTP (Linux Test Project)
10187 M:      Mike Frysinger <vapier@gentoo.org>
10188 M:      Cyril Hrubis <chrubis@suse.cz>
10189 M:      Wanlong Gao <wanlong.gao@gmail.com>
10190 M:      Jan Stancek <jstancek@redhat.com>
10191 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
10192 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
10193 L:      ltp@lists.linux.it (subscribers-only)
10194 S:      Maintained
10195 W:      http://linux-test-project.github.io/
10196 T:      git git://github.com/linux-test-project/ltp.git
10197
10198 M68K ARCHITECTURE
10199 M:      Geert Uytterhoeven <geert@linux-m68k.org>
10200 L:      linux-m68k@lists.linux-m68k.org
10201 S:      Maintained
10202 W:      http://www.linux-m68k.org/
10203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10204 F:      arch/m68k/
10205 F:      drivers/zorro/
10206
10207 M68K ON APPLE MACINTOSH
10208 M:      Joshua Thompson <funaho@jurai.org>
10209 L:      linux-m68k@lists.linux-m68k.org
10210 S:      Maintained
10211 W:      http://www.mac.linux-m68k.org/
10212 F:      arch/m68k/mac/
10213
10214 M68K ON HP9000/300
10215 M:      Philip Blundell <philb@gnu.org>
10216 S:      Maintained
10217 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10218 F:      arch/m68k/hp300/
10219
10220 M88DS3103 MEDIA DRIVER
10221 M:      Antti Palosaari <crope@iki.fi>
10222 L:      linux-media@vger.kernel.org
10223 S:      Maintained
10224 W:      https://linuxtv.org
10225 W:      http://palosaari.fi/linux/
10226 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10227 T:      git git://linuxtv.org/anttip/media_tree.git
10228 F:      drivers/media/dvb-frontends/m88ds3103*
10229
10230 M88RS2000 MEDIA DRIVER
10231 M:      Malcolm Priestley <tvboxspy@gmail.com>
10232 L:      linux-media@vger.kernel.org
10233 S:      Maintained
10234 W:      https://linuxtv.org
10235 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10236 F:      drivers/media/dvb-frontends/m88rs2000*
10237
10238 MA901 MASTERKIT USB FM RADIO DRIVER
10239 M:      Alexey Klimov <klimov.linux@gmail.com>
10240 L:      linux-media@vger.kernel.org
10241 S:      Maintained
10242 T:      git git://linuxtv.org/media_tree.git
10243 F:      drivers/media/radio/radio-ma901.c
10244
10245 MAC80211
10246 M:      Johannes Berg <johannes@sipsolutions.net>
10247 L:      linux-wireless@vger.kernel.org
10248 S:      Maintained
10249 W:      https://wireless.wiki.kernel.org/
10250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10252 F:      Documentation/networking/mac80211-injection.rst
10253 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10254 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10255 F:      include/net/mac80211.h
10256 F:      net/mac80211/
10257
10258 MAILBOX API
10259 M:      Jassi Brar <jassisinghbrar@gmail.com>
10260 L:      linux-kernel@vger.kernel.org
10261 S:      Maintained
10262 F:      drivers/mailbox/
10263 F:      include/linux/mailbox_client.h
10264 F:      include/linux/mailbox_controller.h
10265
10266 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10267 M:      Michael Kerrisk <mtk.manpages@gmail.com>
10268 L:      linux-man@vger.kernel.org
10269 S:      Maintained
10270 W:      http://www.kernel.org/doc/man-pages
10271
10272 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10273 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
10274 L:      linux-mips@vger.kernel.org
10275 S:      Maintained
10276 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10277
10278 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10279 M:      Andrew Lunn <andrew@lunn.ch>
10280 M:      Vivien Didelot <vivien.didelot@gmail.com>
10281 L:      netdev@vger.kernel.org
10282 S:      Maintained
10283 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10284 F:      Documentation/networking/devlink/mv88e6xxx.rst
10285 F:      drivers/net/dsa/mv88e6xxx/
10286 F:      include/linux/platform_data/mv88e6xxx.h
10287
10288 MARVELL ARMADA 3700 PHY DRIVERS
10289 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10290 S:      Maintained
10291 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10292 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10293 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10294 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10295
10296 MARVELL ARMADA DRM SUPPORT
10297 M:      Russell King <linux@armlinux.org.uk>
10298 S:      Maintained
10299 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10300 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10301 F:      Documentation/devicetree/bindings/display/armada/
10302 F:      drivers/gpu/drm/armada/
10303 F:      include/uapi/drm/armada_drm.h
10304
10305 MARVELL CRYPTO DRIVER
10306 M:      Boris Brezillon <bbrezillon@kernel.org>
10307 M:      Arnaud Ebalard <arno@natisbad.org>
10308 M:      Srujana Challa <schalla@marvell.com>
10309 L:      linux-crypto@vger.kernel.org
10310 S:      Maintained
10311 F:      drivers/crypto/marvell/
10312
10313 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10314 M:      Mirko Lindner <mlindner@marvell.com>
10315 M:      Stephen Hemminger <stephen@networkplumber.org>
10316 L:      netdev@vger.kernel.org
10317 S:      Maintained
10318 F:      drivers/net/ethernet/marvell/sk*
10319
10320 MARVELL LIBERTAS WIRELESS DRIVER
10321 L:      libertas-dev@lists.infradead.org
10322 S:      Orphan
10323 F:      drivers/net/wireless/marvell/libertas/
10324
10325 MARVELL MACCHIATOBIN SUPPORT
10326 M:      Russell King <linux@armlinux.org.uk>
10327 L:      linux-arm-kernel@lists.infradead.org
10328 S:      Maintained
10329 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10330
10331 MARVELL MV643XX ETHERNET DRIVER
10332 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
10333 L:      netdev@vger.kernel.org
10334 S:      Maintained
10335 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10336 F:      include/linux/mv643xx.h
10337
10338 MARVELL MV88X3310 PHY DRIVER
10339 M:      Russell King <linux@armlinux.org.uk>
10340 L:      netdev@vger.kernel.org
10341 S:      Maintained
10342 F:      drivers/net/phy/marvell10g.c
10343
10344 MARVELL MVEBU THERMAL DRIVER
10345 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10346 S:      Maintained
10347 F:      drivers/thermal/armada_thermal.c
10348
10349 MARVELL MVNETA ETHERNET DRIVER
10350 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
10351 L:      netdev@vger.kernel.org
10352 S:      Maintained
10353 F:      drivers/net/ethernet/marvell/mvneta.*
10354
10355 MARVELL MWIFIEX WIRELESS DRIVER
10356 M:      Amitkumar Karwar <amitkarwar@gmail.com>
10357 M:      Ganapathi Bhat <ganapathi.bhat@nxp.com>
10358 M:      Xinming Hu <huxinming820@gmail.com>
10359 L:      linux-wireless@vger.kernel.org
10360 S:      Maintained
10361 F:      drivers/net/wireless/marvell/mwifiex/
10362
10363 MARVELL MWL8K WIRELESS DRIVER
10364 M:      Lennert Buytenhek <buytenh@wantstofly.org>
10365 L:      linux-wireless@vger.kernel.org
10366 S:      Odd Fixes
10367 F:      drivers/net/wireless/marvell/mwl8k.c
10368
10369 MARVELL NAND CONTROLLER DRIVER
10370 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10371 L:      linux-mtd@lists.infradead.org
10372 S:      Maintained
10373 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10374 F:      drivers/mtd/nand/raw/marvell_nand.c
10375
10376 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10377 M:      Sunil Goutham <sgoutham@marvell.com>
10378 M:      Geetha sowjanya <gakula@marvell.com>
10379 M:      Subbaraya Sundeep <sbhatta@marvell.com>
10380 M:      hariprasad <hkelam@marvell.com>
10381 L:      netdev@vger.kernel.org
10382 S:      Supported
10383 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10384
10385 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10386 M:      Sunil Goutham <sgoutham@marvell.com>
10387 M:      Linu Cherian <lcherian@marvell.com>
10388 M:      Geetha sowjanya <gakula@marvell.com>
10389 M:      Jerin Jacob <jerinj@marvell.com>
10390 L:      netdev@vger.kernel.org
10391 S:      Supported
10392 F:      Documentation/networking/device_drivers/marvell/octeontx2.rst
10393 F:      drivers/net/ethernet/marvell/octeontx2/af/
10394
10395 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10396 M:      Nicolas Pitre <nico@fluxnic.net>
10397 S:      Odd Fixes
10398 F:      drivers/mmc/host/mvsdio.*
10399
10400 MARVELL USB MDIO CONTROLLER DRIVER
10401 M:      Tobias Waldekranz <tobias@waldekranz.com>
10402 L:      netdev@vger.kernel.org
10403 S:      Maintained
10404 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10405 F:      drivers/net/phy/mdio-mvusb.c
10406
10407 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10408 M:      Hu Ziji <huziji@marvell.com>
10409 L:      linux-mmc@vger.kernel.org
10410 S:      Supported
10411 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10412 F:      drivers/mmc/host/sdhci-xenon*
10413
10414 MATROX FRAMEBUFFER DRIVER
10415 L:      linux-fbdev@vger.kernel.org
10416 S:      Orphan
10417 F:      drivers/video/fbdev/matrox/matroxfb_*
10418 F:      include/uapi/linux/matroxfb.h
10419
10420 MAX16065 HARDWARE MONITOR DRIVER
10421 M:      Guenter Roeck <linux@roeck-us.net>
10422 L:      linux-hwmon@vger.kernel.org
10423 S:      Maintained
10424 F:      Documentation/hwmon/max16065.rst
10425 F:      drivers/hwmon/max16065.c
10426
10427 MAX2175 SDR TUNER DRIVER
10428 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10429 L:      linux-media@vger.kernel.org
10430 S:      Maintained
10431 T:      git git://linuxtv.org/media_tree.git
10432 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10433 F:      Documentation/userspace-api/media/drivers/max2175.rst
10434 F:      drivers/media/i2c/max2175*
10435 F:      include/uapi/linux/max2175.h
10436
10437 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10438 L:      linux-hwmon@vger.kernel.org
10439 S:      Orphan
10440 F:      Documentation/hwmon/max6650.rst
10441 F:      drivers/hwmon/max6650.c
10442
10443 MAX6697 HARDWARE MONITOR DRIVER
10444 M:      Guenter Roeck <linux@roeck-us.net>
10445 L:      linux-hwmon@vger.kernel.org
10446 S:      Maintained
10447 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
10448 F:      Documentation/hwmon/max6697.rst
10449 F:      drivers/hwmon/max6697.c
10450 F:      include/linux/platform_data/max6697.h
10451
10452 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10453 M:      Peter Rosin <peda@axentia.se>
10454 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10455 S:      Maintained
10456 F:      Documentation/devicetree/bindings/sound/max9860.txt
10457 F:      sound/soc/codecs/max9860.*
10458
10459 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10460 M:      Andreas Klinger <ak@it-klinger.de>
10461 L:      linux-iio@vger.kernel.org
10462 S:      Maintained
10463 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10464 F:      drivers/iio/proximity/mb1232.c
10465
10466 MAXIM MAX77650 PMIC MFD DRIVER
10467 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
10468 L:      linux-kernel@vger.kernel.org
10469 S:      Maintained
10470 F:      Documentation/devicetree/bindings/*/*max77650.yaml
10471 F:      Documentation/devicetree/bindings/*/max77650*.yaml
10472 F:      drivers/gpio/gpio-max77650.c
10473 F:      drivers/input/misc/max77650-onkey.c
10474 F:      drivers/leds/leds-max77650.c
10475 F:      drivers/mfd/max77650.c
10476 F:      drivers/power/supply/max77650-charger.c
10477 F:      drivers/regulator/max77650-regulator.c
10478 F:      include/linux/mfd/max77650.h
10479
10480 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10481 M:      Javier Martinez Canillas <javier@dowhile0.org>
10482 L:      linux-kernel@vger.kernel.org
10483 S:      Supported
10484 F:      Documentation/devicetree/bindings/*/*max77802.txt
10485 F:      drivers/regulator/max77802-regulator.c
10486 F:      include/dt-bindings/*/*max77802.h
10487
10488 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10489 M:      Krzysztof Kozlowski <krzk@kernel.org>
10490 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10491 L:      linux-pm@vger.kernel.org
10492 S:      Supported
10493 F:      drivers/power/supply/max14577_charger.c
10494 F:      drivers/power/supply/max77693_charger.c
10495
10496 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10497 M:      Chanwoo Choi <cw00.choi@samsung.com>
10498 M:      Krzysztof Kozlowski <krzk@kernel.org>
10499 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10500 L:      linux-kernel@vger.kernel.org
10501 S:      Supported
10502 F:      Documentation/devicetree/bindings/*/max77686.txt
10503 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10504 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10505 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10506 F:      drivers/*/max14577*.c
10507 F:      drivers/*/max77686*.c
10508 F:      drivers/*/max77693*.c
10509 F:      drivers/clk/clk-max77686.c
10510 F:      drivers/extcon/extcon-max14577.c
10511 F:      drivers/extcon/extcon-max77693.c
10512 F:      drivers/rtc/rtc-max77686.c
10513 F:      include/linux/mfd/max14577*.h
10514 F:      include/linux/mfd/max77686*.h
10515 F:      include/linux/mfd/max77693*.h
10516
10517 MAXIRADIO FM RADIO RECEIVER DRIVER
10518 M:      Hans Verkuil <hverkuil@xs4all.nl>
10519 L:      linux-media@vger.kernel.org
10520 S:      Maintained
10521 W:      https://linuxtv.org
10522 T:      git git://linuxtv.org/media_tree.git
10523 F:      drivers/media/radio/radio-maxiradio*
10524
10525 MCAN MMIO DEVICE DRIVER
10526 M:      Dan Murphy <dmurphy@ti.com>
10527 M:      Sriram Dash <sriram.dash@samsung.com>
10528 L:      linux-can@vger.kernel.org
10529 S:      Maintained
10530 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10531 F:      drivers/net/can/m_can/m_can.c
10532 F:      drivers/net/can/m_can/m_can.h
10533 F:      drivers/net/can/m_can/m_can_platform.c
10534
10535 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10536 M:      Rishi Gupta <gupt21@gmail.com>
10537 L:      linux-i2c@vger.kernel.org
10538 L:      linux-input@vger.kernel.org
10539 S:      Maintained
10540 F:      drivers/hid/hid-mcp2221.c
10541
10542 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10543 M:      Peter Rosin <peda@axentia.se>
10544 L:      linux-iio@vger.kernel.org
10545 S:      Maintained
10546 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10547 F:      drivers/iio/potentiometer/mcp4018.c
10548 F:      drivers/iio/potentiometer/mcp4531.c
10549
10550 MCR20A IEEE-802.15.4 RADIO DRIVER
10551 M:      Xue Liu <liuxuenetmail@gmail.com>
10552 L:      linux-wpan@vger.kernel.org
10553 S:      Maintained
10554 W:      https://github.com/xueliu/mcr20a-linux
10555 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10556 F:      drivers/net/ieee802154/mcr20a.c
10557 F:      drivers/net/ieee802154/mcr20a.h
10558
10559 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10560 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10561 L:      linux-iio@vger.kernel.org
10562 S:      Maintained
10563 F:      drivers/iio/dac/cio-dac.c
10564
10565 MEDIA CONTROLLER FRAMEWORK
10566 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10567 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10568 L:      linux-media@vger.kernel.org
10569 S:      Supported
10570 W:      https://www.linuxtv.org
10571 T:      git git://linuxtv.org/media_tree.git
10572 F:      drivers/media/mc/
10573 F:      include/media/media-*.h
10574 F:      include/uapi/linux/media.h
10575
10576 MEDIA DRIVER FOR FREESCALE IMX PXP
10577 M:      Philipp Zabel <p.zabel@pengutronix.de>
10578 L:      linux-media@vger.kernel.org
10579 S:      Maintained
10580 T:      git git://linuxtv.org/media_tree.git
10581 F:      drivers/media/platform/imx-pxp.[ch]
10582
10583 MEDIA DRIVERS FOR ASCOT2E
10584 M:      Sergey Kozlov <serjk@netup.ru>
10585 M:      Abylay Ospan <aospan@netup.ru>
10586 L:      linux-media@vger.kernel.org
10587 S:      Supported
10588 W:      https://linuxtv.org
10589 W:      http://netup.tv/
10590 T:      git git://linuxtv.org/media_tree.git
10591 F:      drivers/media/dvb-frontends/ascot2e*
10592
10593 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10594 M:      Jasmin Jessich <jasmin@anw.at>
10595 L:      linux-media@vger.kernel.org
10596 S:      Maintained
10597 W:      https://linuxtv.org
10598 T:      git git://linuxtv.org/media_tree.git
10599 F:      drivers/media/dvb-frontends/cxd2099*
10600
10601 MEDIA DRIVERS FOR CXD2841ER
10602 M:      Sergey Kozlov <serjk@netup.ru>
10603 M:      Abylay Ospan <aospan@netup.ru>
10604 L:      linux-media@vger.kernel.org
10605 S:      Supported
10606 W:      https://linuxtv.org
10607 W:      http://netup.tv/
10608 T:      git git://linuxtv.org/media_tree.git
10609 F:      drivers/media/dvb-frontends/cxd2841er*
10610
10611 MEDIA DRIVERS FOR CXD2880
10612 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
10613 L:      linux-media@vger.kernel.org
10614 S:      Supported
10615 W:      http://linuxtv.org/
10616 T:      git git://linuxtv.org/media_tree.git
10617 F:      drivers/media/dvb-frontends/cxd2880/*
10618 F:      drivers/media/spi/cxd2880*
10619
10620 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10621 L:      linux-media@vger.kernel.org
10622 S:      Orphan
10623 W:      https://linuxtv.org
10624 T:      git git://linuxtv.org/media_tree.git
10625 F:      drivers/media/pci/ddbridge/*
10626
10627 MEDIA DRIVERS FOR FREESCALE IMX
10628 M:      Steve Longerbeam <slongerbeam@gmail.com>
10629 M:      Philipp Zabel <p.zabel@pengutronix.de>
10630 L:      linux-media@vger.kernel.org
10631 S:      Maintained
10632 T:      git git://linuxtv.org/media_tree.git
10633 F:      Documentation/admin-guide/media/imx.rst
10634 F:      Documentation/devicetree/bindings/media/imx.txt
10635 F:      drivers/staging/media/imx/
10636 F:      include/linux/imx-media.h
10637 F:      include/media/imx.h
10638
10639 MEDIA DRIVERS FOR FREESCALE IMX7
10640 M:      Rui Miguel Silva <rmfrfs@gmail.com>
10641 L:      linux-media@vger.kernel.org
10642 S:      Maintained
10643 T:      git git://linuxtv.org/media_tree.git
10644 F:      Documentation/admin-guide/media/imx7.rst
10645 F:      Documentation/devicetree/bindings/media/imx7-csi.txt
10646 F:      Documentation/devicetree/bindings/media/imx7-mipi-csi2.txt
10647 F:      drivers/staging/media/imx/imx7-media-csi.c
10648 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10649
10650 MEDIA DRIVERS FOR HELENE
10651 M:      Abylay Ospan <aospan@netup.ru>
10652 L:      linux-media@vger.kernel.org
10653 S:      Supported
10654 W:      https://linuxtv.org
10655 W:      http://netup.tv/
10656 T:      git git://linuxtv.org/media_tree.git
10657 F:      drivers/media/dvb-frontends/helene*
10658
10659 MEDIA DRIVERS FOR HORUS3A
10660 M:      Sergey Kozlov <serjk@netup.ru>
10661 M:      Abylay Ospan <aospan@netup.ru>
10662 L:      linux-media@vger.kernel.org
10663 S:      Supported
10664 W:      https://linuxtv.org
10665 W:      http://netup.tv/
10666 T:      git git://linuxtv.org/media_tree.git
10667 F:      drivers/media/dvb-frontends/horus3a*
10668
10669 MEDIA DRIVERS FOR LNBH25
10670 M:      Sergey Kozlov <serjk@netup.ru>
10671 M:      Abylay Ospan <aospan@netup.ru>
10672 L:      linux-media@vger.kernel.org
10673 S:      Supported
10674 W:      https://linuxtv.org
10675 W:      http://netup.tv/
10676 T:      git git://linuxtv.org/media_tree.git
10677 F:      drivers/media/dvb-frontends/lnbh25*
10678
10679 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10680 L:      linux-media@vger.kernel.org
10681 S:      Orphan
10682 W:      https://linuxtv.org
10683 T:      git git://linuxtv.org/media_tree.git
10684 F:      drivers/media/dvb-frontends/mxl5xx*
10685
10686 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10687 M:      Sergey Kozlov <serjk@netup.ru>
10688 M:      Abylay Ospan <aospan@netup.ru>
10689 L:      linux-media@vger.kernel.org
10690 S:      Supported
10691 W:      https://linuxtv.org
10692 W:      http://netup.tv/
10693 T:      git git://linuxtv.org/media_tree.git
10694 F:      drivers/media/pci/netup_unidvb/*
10695
10696 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10697 M:      Dmitry Osipenko <digetx@gmail.com>
10698 L:      linux-media@vger.kernel.org
10699 L:      linux-tegra@vger.kernel.org
10700 S:      Maintained
10701 T:      git git://linuxtv.org/media_tree.git
10702 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10703 F:      drivers/staging/media/tegra-vde/
10704
10705 MEDIA DRIVERS FOR RENESAS - CEU
10706 M:      Jacopo Mondi <jacopo@jmondi.org>
10707 L:      linux-media@vger.kernel.org
10708 L:      linux-renesas-soc@vger.kernel.org
10709 S:      Supported
10710 T:      git git://linuxtv.org/media_tree.git
10711 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
10712 F:      drivers/media/platform/renesas-ceu.c
10713 F:      include/media/drv-intf/renesas-ceu.h
10714
10715 MEDIA DRIVERS FOR RENESAS - DRIF
10716 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10717 L:      linux-media@vger.kernel.org
10718 L:      linux-renesas-soc@vger.kernel.org
10719 S:      Supported
10720 T:      git git://linuxtv.org/media_tree.git
10721 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
10722 F:      drivers/media/platform/rcar_drif.c
10723
10724 MEDIA DRIVERS FOR RENESAS - FCP
10725 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10726 L:      linux-media@vger.kernel.org
10727 L:      linux-renesas-soc@vger.kernel.org
10728 S:      Supported
10729 T:      git git://linuxtv.org/media_tree.git
10730 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
10731 F:      drivers/media/platform/rcar-fcp.c
10732 F:      include/media/rcar-fcp.h
10733
10734 MEDIA DRIVERS FOR RENESAS - FDP1
10735 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10736 L:      linux-media@vger.kernel.org
10737 L:      linux-renesas-soc@vger.kernel.org
10738 S:      Supported
10739 T:      git git://linuxtv.org/media_tree.git
10740 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
10741 F:      drivers/media/platform/rcar_fdp1.c
10742
10743 MEDIA DRIVERS FOR RENESAS - VIN
10744 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
10745 L:      linux-media@vger.kernel.org
10746 L:      linux-renesas-soc@vger.kernel.org
10747 S:      Supported
10748 T:      git git://linuxtv.org/media_tree.git
10749 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
10750 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
10751 F:      drivers/media/platform/rcar-vin/
10752
10753 MEDIA DRIVERS FOR RENESAS - VSP1
10754 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10755 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10756 L:      linux-media@vger.kernel.org
10757 L:      linux-renesas-soc@vger.kernel.org
10758 S:      Supported
10759 T:      git git://linuxtv.org/media_tree.git
10760 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
10761 F:      drivers/media/platform/vsp1/
10762
10763 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
10764 L:      linux-media@vger.kernel.org
10765 S:      Orphan
10766 W:      https://linuxtv.org
10767 T:      git git://linuxtv.org/media_tree.git
10768 F:      drivers/media/dvb-frontends/stv0910*
10769
10770 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
10771 L:      linux-media@vger.kernel.org
10772 S:      Orphan
10773 W:      https://linuxtv.org
10774 T:      git git://linuxtv.org/media_tree.git
10775 F:      drivers/media/dvb-frontends/stv6111*
10776
10777 MEDIA DRIVERS FOR STM32 - DCMI
10778 M:      Hugues Fruchet <hugues.fruchet@st.com>
10779 L:      linux-media@vger.kernel.org
10780 S:      Supported
10781 T:      git git://linuxtv.org/media_tree.git
10782 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
10783 F:      drivers/media/platform/stm32/stm32-dcmi.c
10784
10785 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
10786 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
10787 L:      linux-media@vger.kernel.org
10788 S:      Maintained
10789 W:      https://linuxtv.org
10790 Q:      http://patchwork.kernel.org/project/linux-media/list/
10791 T:      git git://linuxtv.org/media_tree.git
10792 F:      Documentation/admin-guide/media/
10793 F:      Documentation/devicetree/bindings/media/
10794 F:      Documentation/driver-api/media/
10795 F:      Documentation/userspace-api/media/
10796 F:      drivers/media/
10797 F:      drivers/staging/media/
10798 F:      include/linux/platform_data/media/
10799 F:      include/media/
10800 F:      include/uapi/linux/dvb/
10801 F:      include/uapi/linux/ivtv*
10802 F:      include/uapi/linux/media.h
10803 F:      include/uapi/linux/meye.h
10804 F:      include/uapi/linux/uvcvideo.h
10805 F:      include/uapi/linux/v4l2-*
10806 F:      include/uapi/linux/videodev2.h
10807
10808 MEDIATEK BLUETOOTH DRIVER
10809 M:      Sean Wang <sean.wang@mediatek.com>
10810 L:      linux-bluetooth@vger.kernel.org
10811 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10812 S:      Maintained
10813 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
10814 F:      drivers/bluetooth/btmtkuart.c
10815
10816 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
10817 M:      Sean Wang <sean.wang@mediatek.com>
10818 L:      linux-pm@vger.kernel.org
10819 S:      Maintained
10820 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
10821 F:      drivers/power/reset/mt6323-poweroff.c
10822
10823 MEDIATEK CIR DRIVER
10824 M:      Sean Wang <sean.wang@mediatek.com>
10825 S:      Maintained
10826 F:      drivers/media/rc/mtk-cir.c
10827
10828 MEDIATEK DMA DRIVER
10829 M:      Sean Wang <sean.wang@mediatek.com>
10830 L:      dmaengine@vger.kernel.org
10831 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10832 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10833 S:      Maintained
10834 F:      Documentation/devicetree/bindings/dma/mtk-*
10835 F:      drivers/dma/mediatek/
10836
10837 MEDIATEK ETHERNET DRIVER
10838 M:      Felix Fietkau <nbd@openwrt.org>
10839 M:      John Crispin <john@phrozen.org>
10840 M:      Sean Wang <sean.wang@mediatek.com>
10841 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
10842 L:      netdev@vger.kernel.org
10843 S:      Maintained
10844 F:      drivers/net/ethernet/mediatek/
10845
10846 MEDIATEK I2C CONTROLLER DRIVER
10847 M:      Qii Wang <qii.wang@mediatek.com>
10848 L:      linux-i2c@vger.kernel.org
10849 S:      Maintained
10850 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
10851 F:      drivers/i2c/busses/i2c-mt65xx.c
10852
10853 MEDIATEK JPEG DRIVER
10854 M:      Rick Chang <rick.chang@mediatek.com>
10855 M:      Bin Liu <bin.liu@mediatek.com>
10856 S:      Supported
10857 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
10858 F:      drivers/media/platform/mtk-jpeg/
10859
10860 MEDIATEK MDP DRIVER
10861 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
10862 M:      Houlong Wei <houlong.wei@mediatek.com>
10863 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10864 S:      Supported
10865 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
10866 F:      drivers/media/platform/mtk-mdp/
10867 F:      drivers/media/platform/mtk-vpu/
10868
10869 MEDIATEK MEDIA DRIVER
10870 M:      Tiffany Lin <tiffany.lin@mediatek.com>
10871 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10872 S:      Supported
10873 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
10874 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
10875 F:      drivers/media/platform/mtk-vcodec/
10876 F:      drivers/media/platform/mtk-vpu/
10877
10878 MEDIATEK MMC/SD/SDIO DRIVER
10879 M:      Chaotian Jing <chaotian.jing@mediatek.com>
10880 S:      Maintained
10881 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
10882 F:      drivers/mmc/host/mtk-sd.c
10883
10884 MEDIATEK MT76 WIRELESS LAN DRIVER
10885 M:      Felix Fietkau <nbd@nbd.name>
10886 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
10887 R:      Ryder Lee <ryder.lee@mediatek.com>
10888 L:      linux-wireless@vger.kernel.org
10889 S:      Maintained
10890 F:      drivers/net/wireless/mediatek/mt76/
10891
10892 MEDIATEK MT7601U WIRELESS LAN DRIVER
10893 M:      Jakub Kicinski <kubakici@wp.pl>
10894 L:      linux-wireless@vger.kernel.org
10895 S:      Maintained
10896 F:      drivers/net/wireless/mediatek/mt7601u/
10897
10898 MEDIATEK MT7621/28/88 I2C DRIVER
10899 M:      Stefan Roese <sr@denx.de>
10900 L:      linux-i2c@vger.kernel.org
10901 S:      Maintained
10902 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
10903 F:      drivers/i2c/busses/i2c-mt7621.c
10904
10905 MEDIATEK NAND CONTROLLER DRIVER
10906 L:      linux-mtd@lists.infradead.org
10907 S:      Orphan
10908 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
10909 F:      drivers/mtd/nand/raw/mtk_*
10910
10911 MEDIATEK PMIC LED DRIVER
10912 M:      Sean Wang <sean.wang@mediatek.com>
10913 S:      Maintained
10914 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
10915 F:      drivers/leds/leds-mt6323.c
10916
10917 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
10918 M:      Sean Wang <sean.wang@mediatek.com>
10919 S:      Maintained
10920 F:      drivers/char/hw_random/mtk-rng.c
10921
10922 MEDIATEK SWITCH DRIVER
10923 M:      Sean Wang <sean.wang@mediatek.com>
10924 L:      netdev@vger.kernel.org
10925 S:      Maintained
10926 F:      drivers/net/dsa/mt7530.*
10927 F:      net/dsa/tag_mtk.c
10928
10929 MEDIATEK USB3 DRD IP DRIVER
10930 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
10931 L:      linux-usb@vger.kernel.org (moderated for non-subscribers)
10932 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10933 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10934 S:      Maintained
10935 F:      drivers/usb/mtu3/
10936
10937 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
10938 M:      Peter Senna Tschudin <peter.senna@gmail.com>
10939 M:      Martin Donnelly <martin.donnelly@ge.com>
10940 M:      Martyn Welch <martyn.welch@collabora.co.uk>
10941 S:      Maintained
10942 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
10943 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
10944
10945 MEGARAID SCSI/SAS DRIVERS
10946 M:      Kashyap Desai <kashyap.desai@broadcom.com>
10947 M:      Sumit Saxena <sumit.saxena@broadcom.com>
10948 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
10949 L:      megaraidlinux.pdl@broadcom.com
10950 L:      linux-scsi@vger.kernel.org
10951 S:      Maintained
10952 W:      http://www.avagotech.com/support/
10953 F:      Documentation/scsi/megaraid.rst
10954 F:      drivers/scsi/megaraid.*
10955 F:      drivers/scsi/megaraid/
10956
10957 MELEXIS MLX90614 DRIVER
10958 M:      Crt Mori <cmo@melexis.com>
10959 L:      linux-iio@vger.kernel.org
10960 S:      Supported
10961 W:      http://www.melexis.com
10962 F:      drivers/iio/temperature/mlx90614.c
10963
10964 MELEXIS MLX90632 DRIVER
10965 M:      Crt Mori <cmo@melexis.com>
10966 L:      linux-iio@vger.kernel.org
10967 S:      Supported
10968 W:      http://www.melexis.com
10969 F:      drivers/iio/temperature/mlx90632.c
10970
10971 MELFAS MIP4 TOUCHSCREEN DRIVER
10972 M:      Sangwon Jee <jeesw@melfas.com>
10973 S:      Supported
10974 W:      http://www.melfas.com
10975 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
10976 F:      drivers/input/touchscreen/melfas_mip4.c
10977
10978 MELLANOX ETHERNET DRIVER (mlx4_en)
10979 M:      Tariq Toukan <tariqt@mellanox.com>
10980 L:      netdev@vger.kernel.org
10981 S:      Supported
10982 W:      http://www.mellanox.com
10983 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10984 F:      drivers/net/ethernet/mellanox/mlx4/en_*
10985
10986 MELLANOX ETHERNET DRIVER (mlx5e)
10987 M:      Saeed Mahameed <saeedm@mellanox.com>
10988 L:      netdev@vger.kernel.org
10989 S:      Supported
10990 W:      http://www.mellanox.com
10991 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10992 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
10993
10994 MELLANOX ETHERNET INNOVA DRIVERS
10995 R:      Boris Pismenny <borisp@mellanox.com>
10996 L:      netdev@vger.kernel.org
10997 S:      Supported
10998 W:      http://www.mellanox.com
10999 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11000 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
11001 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
11002 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
11003 F:      include/linux/mlx5/mlx5_ifc_fpga.h
11004
11005 MELLANOX ETHERNET SWITCH DRIVERS
11006 M:      Jiri Pirko <jiri@mellanox.com>
11007 M:      Ido Schimmel <idosch@mellanox.com>
11008 L:      netdev@vger.kernel.org
11009 S:      Supported
11010 W:      http://www.mellanox.com
11011 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11012 F:      drivers/net/ethernet/mellanox/mlxsw/
11013 F:      tools/testing/selftests/drivers/net/mlxsw/
11014
11015 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
11016 M:      mlxsw@mellanox.com
11017 L:      netdev@vger.kernel.org
11018 S:      Supported
11019 W:      http://www.mellanox.com
11020 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11021 F:      drivers/net/ethernet/mellanox/mlxfw/
11022
11023 MELLANOX HARDWARE PLATFORM SUPPORT
11024 M:      Andy Shevchenko <andy@infradead.org>
11025 M:      Darren Hart <dvhart@infradead.org>
11026 M:      Vadim Pasternak <vadimp@mellanox.com>
11027 L:      platform-driver-x86@vger.kernel.org
11028 S:      Supported
11029 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
11030 F:      drivers/platform/mellanox/
11031 F:      include/linux/platform_data/mlxreg.h
11032
11033 MELLANOX MLX4 core VPI driver
11034 M:      Tariq Toukan <tariqt@mellanox.com>
11035 L:      netdev@vger.kernel.org
11036 L:      linux-rdma@vger.kernel.org
11037 S:      Supported
11038 W:      http://www.mellanox.com
11039 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11040 F:      drivers/net/ethernet/mellanox/mlx4/
11041 F:      include/linux/mlx4/
11042
11043 MELLANOX MLX4 IB driver
11044 M:      Yishai Hadas <yishaih@mellanox.com>
11045 L:      linux-rdma@vger.kernel.org
11046 S:      Supported
11047 W:      http://www.mellanox.com
11048 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11049 F:      drivers/infiniband/hw/mlx4/
11050 F:      include/linux/mlx4/
11051 F:      include/uapi/rdma/mlx4-abi.h
11052
11053 MELLANOX MLX5 core VPI driver
11054 M:      Saeed Mahameed <saeedm@mellanox.com>
11055 M:      Leon Romanovsky <leonro@mellanox.com>
11056 L:      netdev@vger.kernel.org
11057 L:      linux-rdma@vger.kernel.org
11058 S:      Supported
11059 W:      http://www.mellanox.com
11060 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11061 F:      Documentation/networking/device_drivers/mellanox/
11062 F:      drivers/net/ethernet/mellanox/mlx5/core/
11063 F:      include/linux/mlx5/
11064
11065 MELLANOX MLX5 IB driver
11066 M:      Leon Romanovsky <leonro@mellanox.com>
11067 L:      linux-rdma@vger.kernel.org
11068 S:      Supported
11069 W:      http://www.mellanox.com
11070 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11071 F:      drivers/infiniband/hw/mlx5/
11072 F:      include/linux/mlx5/
11073 F:      include/uapi/rdma/mlx5-abi.h
11074
11075 MELLANOX MLXCPLD I2C AND MUX DRIVER
11076 M:      Vadim Pasternak <vadimp@mellanox.com>
11077 M:      Michael Shych <michaelsh@mellanox.com>
11078 L:      linux-i2c@vger.kernel.org
11079 S:      Supported
11080 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
11081 F:      drivers/i2c/busses/i2c-mlxcpld.c
11082 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
11083
11084 MELLANOX MLXCPLD LED DRIVER
11085 M:      Vadim Pasternak <vadimp@mellanox.com>
11086 L:      linux-leds@vger.kernel.org
11087 S:      Supported
11088 F:      Documentation/leds/leds-mlxcpld.rst
11089 F:      drivers/leds/leds-mlxcpld.c
11090 F:      drivers/leds/leds-mlxreg.c
11091
11092 MELLANOX PLATFORM DRIVER
11093 M:      Vadim Pasternak <vadimp@mellanox.com>
11094 L:      platform-driver-x86@vger.kernel.org
11095 S:      Supported
11096 F:      drivers/platform/x86/mlx-platform.c
11097
11098 MEMBARRIER SUPPORT
11099 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11100 M:      "Paul E. McKenney" <paulmck@kernel.org>
11101 L:      linux-kernel@vger.kernel.org
11102 S:      Supported
11103 F:      arch/powerpc/include/asm/membarrier.h
11104 F:      include/uapi/linux/membarrier.h
11105 F:      kernel/sched/membarrier.c
11106
11107 MEMBLOCK
11108 M:      Mike Rapoport <rppt@linux.ibm.com>
11109 L:      linux-mm@kvack.org
11110 S:      Maintained
11111 F:      Documentation/core-api/boot-time-mm.rst
11112 F:      include/linux/memblock.h
11113 F:      mm/memblock.c
11114
11115 MEMORY MANAGEMENT
11116 M:      Andrew Morton <akpm@linux-foundation.org>
11117 L:      linux-mm@kvack.org
11118 S:      Maintained
11119 W:      http://www.linux-mm.org
11120 T:      quilt https://ozlabs.org/~akpm/mmotm/
11121 T:      quilt https://ozlabs.org/~akpm/mmots/
11122 T:      git git://github.com/hnaz/linux-mm.git
11123 F:      include/linux/gfp.h
11124 F:      include/linux/memory_hotplug.h
11125 F:      include/linux/mm.h
11126 F:      include/linux/mmzone.h
11127 F:      include/linux/vmalloc.h
11128 F:      mm/
11129
11130 MEMORY TECHNOLOGY DEVICES (MTD)
11131 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11132 M:      Richard Weinberger <richard@nod.at>
11133 M:      Vignesh Raghavendra <vigneshr@ti.com>
11134 L:      linux-mtd@lists.infradead.org
11135 S:      Maintained
11136 W:      http://www.linux-mtd.infradead.org/
11137 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11138 C:      irc://irc.oftc.net/mtd
11139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11141 F:      Documentation/devicetree/bindings/mtd/
11142 F:      drivers/mtd/
11143 F:      include/linux/mtd/
11144 F:      include/uapi/mtd/
11145
11146 MEN A21 WATCHDOG DRIVER
11147 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11148 L:      linux-watchdog@vger.kernel.org
11149 S:      Maintained
11150 F:      drivers/watchdog/mena21_wdt.c
11151
11152 MEN CHAMELEON BUS (mcb)
11153 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11154 S:      Maintained
11155 F:      Documentation/driver-api/men-chameleon-bus.rst
11156 F:      drivers/mcb/
11157 F:      include/linux/mcb.h
11158
11159 MEN F21BMC (Board Management Controller)
11160 M:      Andreas Werner <andreas.werner@men.de>
11161 S:      Supported
11162 F:      Documentation/hwmon/menf21bmc.rst
11163 F:      drivers/hwmon/menf21bmc_hwmon.c
11164 F:      drivers/leds/leds-menf21bmc.c
11165 F:      drivers/mfd/menf21bmc.c
11166 F:      drivers/watchdog/menf21bmc_wdt.c
11167
11168 MEN Z069 WATCHDOG DRIVER
11169 M:      Johannes Thumshirn <jth@kernel.org>
11170 L:      linux-watchdog@vger.kernel.org
11171 S:      Maintained
11172 F:      drivers/watchdog/menz69_wdt.c
11173
11174 MESON AO CEC DRIVER FOR AMLOGIC SOCS
11175 M:      Neil Armstrong <narmstrong@baylibre.com>
11176 L:      linux-media@vger.kernel.org
11177 L:      linux-amlogic@lists.infradead.org
11178 S:      Supported
11179 W:      http://linux-meson.com/
11180 T:      git git://linuxtv.org/media_tree.git
11181 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
11182 F:      drivers/media/platform/meson/ao-cec-g12a.c
11183 F:      drivers/media/platform/meson/ao-cec.c
11184
11185 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
11186 M:      Liang Yang <liang.yang@amlogic.com>
11187 L:      linux-mtd@lists.infradead.org
11188 S:      Maintained
11189 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
11190 F:      drivers/mtd/nand/raw/meson_*
11191
11192 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
11193 M:      Maxime Jourdan <mjourdan@baylibre.com>
11194 M:      Neil Armstrong <narmstrong@baylibre.com>
11195 L:      linux-media@vger.kernel.org
11196 L:      linux-amlogic@lists.infradead.org
11197 S:      Supported
11198 T:      git git://linuxtv.org/media_tree.git
11199 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
11200 F:      drivers/staging/media/meson/vdec/
11201
11202 METHODE UDPU SUPPORT
11203 M:      Vladimir Vid <vladimir.vid@sartura.hr>
11204 S:      Maintained
11205 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
11206
11207 MHI BUS
11208 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11209 M:      Hemant Kumar <hemantk@codeaurora.org>
11210 L:      linux-arm-msm@vger.kernel.org
11211 S:      Maintained
11212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
11213 F:      Documentation/mhi/
11214 F:      drivers/bus/mhi/
11215 F:      include/linux/mhi.h
11216
11217 MICROBLAZE ARCHITECTURE
11218 M:      Michal Simek <monstr@monstr.eu>
11219 S:      Supported
11220 W:      http://www.monstr.eu/fdt/
11221 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11222 F:      arch/microblaze/
11223
11224 MICROCHIP AT91 SERIAL DRIVER
11225 M:      Richard Genoud <richard.genoud@gmail.com>
11226 S:      Maintained
11227 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11228 F:      drivers/tty/serial/atmel_serial.c
11229 F:      drivers/tty/serial/atmel_serial.h
11230
11231 MICROCHIP AT91 USART MFD DRIVER
11232 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11233 L:      linux-kernel@vger.kernel.org
11234 S:      Supported
11235 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11236 F:      drivers/mfd/at91-usart.c
11237 F:      include/dt-bindings/mfd/at91-usart.h
11238
11239 MICROCHIP AT91 USART SPI DRIVER
11240 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11241 L:      linux-spi@vger.kernel.org
11242 S:      Supported
11243 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11244 F:      drivers/spi/spi-at91-usart.c
11245
11246 MICROCHIP AUDIO ASOC DRIVERS
11247 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11248 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11249 S:      Supported
11250 F:      sound/soc/atmel
11251
11252 MICROCHIP DMA DRIVER
11253 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11254 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11255 L:      dmaengine@vger.kernel.org
11256 S:      Supported
11257 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11258 F:      drivers/dma/at_hdmac.c
11259 F:      drivers/dma/at_hdmac_regs.h
11260 F:      include/dt-bindings/dma/at91.h
11261 F:      include/linux/platform_data/dma-atmel.h
11262
11263 MICROCHIP ECC DRIVER
11264 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11265 L:      linux-crypto@vger.kernel.org
11266 S:      Maintained
11267 F:      drivers/crypto/atmel-ecc.*
11268
11269 MICROCHIP I2C DRIVER
11270 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11271 L:      linux-i2c@vger.kernel.org
11272 S:      Supported
11273 F:      drivers/i2c/busses/i2c-at91-*.c
11274 F:      drivers/i2c/busses/i2c-at91.h
11275
11276 MICROCHIP ISC DRIVER
11277 M:      Eugen Hristev <eugen.hristev@microchip.com>
11278 L:      linux-media@vger.kernel.org
11279 S:      Supported
11280 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11281 F:      drivers/media/platform/atmel/atmel-isc-base.c
11282 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11283 F:      drivers/media/platform/atmel/atmel-isc.h
11284 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11285 F:      include/linux/atmel-isc-media.h
11286
11287 MICROCHIP ISI DRIVER
11288 M:      Eugen Hristev <eugen.hristev@microchip.com>
11289 L:      linux-media@vger.kernel.org
11290 S:      Supported
11291 F:      drivers/media/platform/atmel/atmel-isi.c
11292 F:      drivers/media/platform/atmel/atmel-isi.h
11293
11294 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11295 M:      Woojung Huh <woojung.huh@microchip.com>
11296 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11297 L:      netdev@vger.kernel.org
11298 S:      Maintained
11299 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
11300 F:      drivers/net/dsa/microchip/*
11301 F:      include/linux/platform_data/microchip-ksz.h
11302 F:      net/dsa/tag_ksz.c
11303
11304 MICROCHIP LAN743X ETHERNET DRIVER
11305 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
11306 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11307 L:      netdev@vger.kernel.org
11308 S:      Maintained
11309 F:      drivers/net/ethernet/microchip/lan743x_*
11310
11311 MICROCHIP LCDFB DRIVER
11312 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11313 L:      linux-fbdev@vger.kernel.org
11314 S:      Maintained
11315 F:      drivers/video/fbdev/atmel_lcdfb.c
11316 F:      include/video/atmel_lcdc.h
11317
11318 MICROCHIP MCP16502 PMIC DRIVER
11319 M:      Andrei Stefanescu <andrei.stefanescu@microchip.com>
11320 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11321 S:      Maintained
11322 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11323 F:      drivers/regulator/mcp16502.c
11324
11325 MICROCHIP MCP3911 ADC DRIVER
11326 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11327 M:      Kent Gustavsson <kent@minoris.se>
11328 L:      linux-iio@vger.kernel.org
11329 S:      Supported
11330 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11331 F:      drivers/iio/adc/mcp3911.c
11332
11333 MICROCHIP MMC/SD/SDIO MCI DRIVER
11334 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11335 S:      Maintained
11336 F:      drivers/mmc/host/atmel-mci.c
11337
11338 MICROCHIP NAND DRIVER
11339 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11340 L:      linux-mtd@lists.infradead.org
11341 S:      Supported
11342 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11343 F:      drivers/mtd/nand/raw/atmel/*
11344
11345 MICROCHIP PWM DRIVER
11346 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11347 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11348 L:      linux-pwm@vger.kernel.org
11349 S:      Supported
11350 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11351 F:      drivers/pwm/pwm-atmel.c
11352
11353 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11354 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11355 M:      Eugen Hristev <eugen.hristev@microchip.com>
11356 L:      linux-iio@vger.kernel.org
11357 S:      Supported
11358 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11359 F:      drivers/iio/adc/at91-sama5d2_adc.c
11360 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11361
11362 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11363 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11364 S:      Supported
11365 F:      drivers/power/reset/at91-sama5d2_shdwc.c
11366
11367 MICROCHIP SPI DRIVER
11368 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11369 S:      Supported
11370 F:      drivers/spi/spi-atmel.*
11371
11372 MICROCHIP SSC DRIVER
11373 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11374 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11375 S:      Supported
11376 F:      drivers/misc/atmel-ssc.c
11377 F:      include/linux/atmel-ssc.h
11378
11379 MICROCHIP USB251XB DRIVER
11380 M:      Richard Leitner <richard.leitner@skidata.com>
11381 L:      linux-usb@vger.kernel.org
11382 S:      Maintained
11383 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
11384 F:      drivers/usb/misc/usb251xb.c
11385
11386 MICROCHIP USBA UDC DRIVER
11387 M:      Cristian Birsan <cristian.birsan@microchip.com>
11388 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11389 S:      Supported
11390 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
11391
11392 MICROCHIP XDMA DRIVER
11393 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11394 L:      linux-arm-kernel@lists.infradead.org
11395 L:      dmaengine@vger.kernel.org
11396 S:      Supported
11397 F:      drivers/dma/at_xdmac.c
11398
11399 MICROSEMI MIPS SOCS
11400 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
11401 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11402 L:      linux-mips@vger.kernel.org
11403 S:      Supported
11404 F:      Documentation/devicetree/bindings/mips/mscc.txt
11405 F:      arch/mips/boot/dts/mscc/
11406 F:      arch/mips/configs/generic/board-ocelot.config
11407 F:      arch/mips/generic/board-ocelot.c
11408
11409 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11410 M:      Don Brace <don.brace@microsemi.com>
11411 L:      esc.storagedev@microsemi.com
11412 L:      linux-scsi@vger.kernel.org
11413 S:      Supported
11414 F:      Documentation/scsi/smartpqi.rst
11415 F:      drivers/scsi/smartpqi/Kconfig
11416 F:      drivers/scsi/smartpqi/Makefile
11417 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
11418 F:      include/linux/cciss*.h
11419 F:      include/uapi/linux/cciss*.h
11420
11421 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11422 M:      Chen Yu <yu.c.chen@intel.com>
11423 L:      platform-driver-x86@vger.kernel.org
11424 S:      Supported
11425 F:      drivers/platform/x86/surfacepro3_button.c
11426
11427 MICROTEK X6 SCANNER
11428 M:      Oliver Neukum <oliver@neukum.org>
11429 S:      Maintained
11430 F:      drivers/usb/image/microtek.*
11431
11432 MIPS
11433 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11434 L:      linux-mips@vger.kernel.org
11435 S:      Maintained
11436 W:      http://www.linux-mips.org/
11437 Q:      https://patchwork.kernel.org/project/linux-mips/list/
11438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11439 F:      Documentation/devicetree/bindings/mips/
11440 F:      Documentation/mips/
11441 F:      arch/mips/
11442 F:      drivers/platform/mips/
11443
11444 MIPS BOSTON DEVELOPMENT BOARD
11445 M:      Paul Burton <paulburton@kernel.org>
11446 L:      linux-mips@vger.kernel.org
11447 S:      Maintained
11448 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
11449 F:      arch/mips/boot/dts/img/boston.dts
11450 F:      arch/mips/configs/generic/board-boston.config
11451 F:      drivers/clk/imgtec/clk-boston.c
11452 F:      include/dt-bindings/clock/boston-clock.h
11453
11454 MIPS GENERIC PLATFORM
11455 M:      Paul Burton <paulburton@kernel.org>
11456 L:      linux-mips@vger.kernel.org
11457 S:      Supported
11458 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.txt
11459 F:      arch/mips/generic/
11460 F:      arch/mips/tools/generic-board-config.sh
11461
11462 MIPS RINT INSTRUCTION EMULATION
11463 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
11464 L:      linux-mips@vger.kernel.org
11465 S:      Supported
11466 F:      arch/mips/math-emu/dp_rint.c
11467 F:      arch/mips/math-emu/sp_rint.c
11468
11469 MIPS/LOONGSON1 ARCHITECTURE
11470 M:      Keguang Zhang <keguang.zhang@gmail.com>
11471 L:      linux-mips@vger.kernel.org
11472 S:      Maintained
11473 F:      arch/mips/include/asm/mach-loongson32/
11474 F:      arch/mips/loongson32/
11475 F:      drivers/*/*/*loongson1*
11476 F:      drivers/*/*loongson1*
11477
11478 MIPS/LOONGSON2EF ARCHITECTURE
11479 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11480 L:      linux-mips@vger.kernel.org
11481 S:      Maintained
11482 F:      arch/mips/include/asm/mach-loongson2ef/
11483 F:      arch/mips/loongson2ef/
11484 F:      drivers/*/*/*loongson2*
11485 F:      drivers/*/*loongson2*
11486
11487 MIPS/LOONGSON64 ARCHITECTURE
11488 M:      Huacai Chen <chenhc@lemote.com>
11489 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11490 L:      linux-mips@vger.kernel.org
11491 S:      Maintained
11492 F:      arch/mips/include/asm/mach-loongson64/
11493 F:      arch/mips/loongson64/
11494 F:      drivers/*/*/*loongson3*
11495 F:      drivers/*/*loongson3*
11496 F:      drivers/irqchip/irq-loongson*
11497 F:      drivers/platform/mips/cpu_hwmon.c
11498
11499 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11500 M:      Hans Verkuil <hverkuil@xs4all.nl>
11501 L:      linux-media@vger.kernel.org
11502 S:      Odd Fixes
11503 W:      https://linuxtv.org
11504 T:      git git://linuxtv.org/media_tree.git
11505 F:      drivers/media/radio/radio-miropcm20*
11506
11507 MMP SUPPORT
11508 R:      Lubomir Rintel <lkundrak@v3.sk>
11509 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11510 S:      Odd Fixes
11511 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11512 F:      arch/arm/boot/dts/mmp*
11513 F:      arch/arm/mach-mmp/
11514 F:      linux/soc/mmp/
11515
11516 MMP USB PHY DRIVERS
11517 R:      Lubomir Rintel <lkundrak@v3.sk>
11518 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11519 S:      Maintained
11520 F:      drivers/phy/marvell/phy-mmp3-usb.c
11521 F:      drivers/phy/marvell/phy-pxa-usb.c
11522
11523 MMU GATHER AND TLB INVALIDATION
11524 M:      Will Deacon <will@kernel.org>
11525 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
11526 M:      Andrew Morton <akpm@linux-foundation.org>
11527 M:      Nick Piggin <npiggin@gmail.com>
11528 M:      Peter Zijlstra <peterz@infradead.org>
11529 L:      linux-arch@vger.kernel.org
11530 L:      linux-mm@kvack.org
11531 S:      Maintained
11532 F:      arch/*/include/asm/tlb.h
11533 F:      include/asm-generic/tlb.h
11534 F:      mm/mmu_gather.c
11535
11536 MN88472 MEDIA DRIVER
11537 M:      Antti Palosaari <crope@iki.fi>
11538 L:      linux-media@vger.kernel.org
11539 S:      Maintained
11540 W:      https://linuxtv.org
11541 W:      http://palosaari.fi/linux/
11542 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11543 F:      drivers/media/dvb-frontends/mn88472*
11544
11545 MN88473 MEDIA DRIVER
11546 M:      Antti Palosaari <crope@iki.fi>
11547 L:      linux-media@vger.kernel.org
11548 S:      Maintained
11549 W:      https://linuxtv.org
11550 W:      http://palosaari.fi/linux/
11551 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11552 F:      drivers/media/dvb-frontends/mn88473*
11553
11554 MODULE SUPPORT
11555 M:      Jessica Yu <jeyu@kernel.org>
11556 S:      Maintained
11557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11558 F:      include/linux/module.h
11559 F:      kernel/module.c
11560
11561 MONOLITHIC POWER SYSTEM PMIC DRIVER
11562 M:      Saravanan Sekar <sravanhome@gmail.com>
11563 S:      Maintained
11564 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
11565 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
11566 F:      drivers/iio/adc/mp2629_adc.c
11567 F:      drivers/mfd/mp2629.c
11568 F:      drivers/power/supply/mp2629_charger.c
11569 F:      drivers/regulator/mp5416.c
11570 F:      drivers/regulator/mpq7920.c
11571 F:      drivers/regulator/mpq7920.h
11572 F:      include/linux/mfd/mp2629.h
11573
11574 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11575 S:      Orphan
11576 W:      http://popies.net/meye/
11577 F:      Documentation/userspace-api/media/drivers/meye*
11578 F:      drivers/media/pci/meye/
11579 F:      include/uapi/linux/meye.h
11580
11581 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
11582 M:      Jiri Slaby <jirislaby@gmail.com>
11583 S:      Maintained
11584 F:      Documentation/driver-api/serial/moxa-smartio.rst
11585 F:      drivers/tty/mxser.*
11586
11587 MR800 AVERMEDIA USB FM RADIO DRIVER
11588 M:      Alexey Klimov <klimov.linux@gmail.com>
11589 L:      linux-media@vger.kernel.org
11590 S:      Maintained
11591 T:      git git://linuxtv.org/media_tree.git
11592 F:      drivers/media/radio/radio-mr800.c
11593
11594 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11595 M:      Alan Ott <alan@signal11.us>
11596 L:      linux-wpan@vger.kernel.org
11597 S:      Maintained
11598 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11599 F:      drivers/net/ieee802154/mrf24j40.c
11600
11601 MSI LAPTOP SUPPORT
11602 M:      "Lee, Chun-Yi" <jlee@suse.com>
11603 L:      platform-driver-x86@vger.kernel.org
11604 S:      Maintained
11605 F:      drivers/platform/x86/msi-laptop.c
11606
11607 MSI WMI SUPPORT
11608 L:      platform-driver-x86@vger.kernel.org
11609 S:      Orphan
11610 F:      drivers/platform/x86/msi-wmi.c
11611
11612 MSI001 MEDIA DRIVER
11613 M:      Antti Palosaari <crope@iki.fi>
11614 L:      linux-media@vger.kernel.org
11615 S:      Maintained
11616 W:      https://linuxtv.org
11617 W:      http://palosaari.fi/linux/
11618 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11619 T:      git git://linuxtv.org/anttip/media_tree.git
11620 F:      drivers/media/tuners/msi001*
11621
11622 MSI2500 MEDIA DRIVER
11623 M:      Antti Palosaari <crope@iki.fi>
11624 L:      linux-media@vger.kernel.org
11625 S:      Maintained
11626 W:      https://linuxtv.org
11627 W:      http://palosaari.fi/linux/
11628 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11629 T:      git git://linuxtv.org/anttip/media_tree.git
11630 F:      drivers/media/usb/msi2500/
11631
11632 MSYSTEMS DISKONCHIP G3 MTD DRIVER
11633 M:      Robert Jarzmik <robert.jarzmik@free.fr>
11634 L:      linux-mtd@lists.infradead.org
11635 S:      Maintained
11636 F:      drivers/mtd/devices/docg3*
11637
11638 MT9M032 APTINA SENSOR DRIVER
11639 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11640 L:      linux-media@vger.kernel.org
11641 S:      Maintained
11642 T:      git git://linuxtv.org/media_tree.git
11643 F:      drivers/media/i2c/mt9m032.c
11644 F:      include/media/i2c/mt9m032.h
11645
11646 MT9P031 APTINA CAMERA SENSOR
11647 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11648 L:      linux-media@vger.kernel.org
11649 S:      Maintained
11650 T:      git git://linuxtv.org/media_tree.git
11651 F:      drivers/media/i2c/mt9p031.c
11652 F:      include/media/i2c/mt9p031.h
11653
11654 MT9T001 APTINA CAMERA SENSOR
11655 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11656 L:      linux-media@vger.kernel.org
11657 S:      Maintained
11658 T:      git git://linuxtv.org/media_tree.git
11659 F:      drivers/media/i2c/mt9t001.c
11660 F:      include/media/i2c/mt9t001.h
11661
11662 MT9T112 APTINA CAMERA SENSOR
11663 M:      Jacopo Mondi <jacopo@jmondi.org>
11664 L:      linux-media@vger.kernel.org
11665 S:      Odd Fixes
11666 T:      git git://linuxtv.org/media_tree.git
11667 F:      drivers/media/i2c/mt9t112.c
11668 F:      include/media/i2c/mt9t112.h
11669
11670 MT9V032 APTINA CAMERA SENSOR
11671 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11672 L:      linux-media@vger.kernel.org
11673 S:      Maintained
11674 T:      git git://linuxtv.org/media_tree.git
11675 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
11676 F:      drivers/media/i2c/mt9v032.c
11677 F:      include/media/i2c/mt9v032.h
11678
11679 MT9V111 APTINA CAMERA SENSOR
11680 M:      Jacopo Mondi <jacopo@jmondi.org>
11681 L:      linux-media@vger.kernel.org
11682 S:      Maintained
11683 T:      git git://linuxtv.org/media_tree.git
11684 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt
11685 F:      drivers/media/i2c/mt9v111.c
11686
11687 MULTIFUNCTION DEVICES (MFD)
11688 M:      Lee Jones <lee.jones@linaro.org>
11689 S:      Supported
11690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11691 F:      Documentation/devicetree/bindings/mfd/
11692 F:      drivers/mfd/
11693 F:      include/dt-bindings/mfd/
11694 F:      include/linux/mfd/
11695
11696 MULTIMEDIA CARD (MMC) ETC. OVER SPI
11697 S:      Orphan
11698 F:      drivers/mmc/host/mmc_spi.c
11699 F:      include/linux/spi/mmc_spi.h
11700
11701 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
11702 M:      Ulf Hansson <ulf.hansson@linaro.org>
11703 L:      linux-mmc@vger.kernel.org
11704 S:      Maintained
11705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
11706 F:      Documentation/devicetree/bindings/mmc/
11707 F:      drivers/mmc/
11708 F:      include/linux/mmc/
11709 F:      include/uapi/linux/mmc/
11710
11711 MULTIPLEXER SUBSYSTEM
11712 M:      Peter Rosin <peda@axentia.se>
11713 S:      Maintained
11714 F:      Documentation/ABI/testing/sysfs-class-mux*
11715 F:      Documentation/devicetree/bindings/mux/
11716 F:      drivers/mux/
11717 F:      include/dt-bindings/mux/
11718 F:      include/linux/mux/
11719
11720 MULTITECH MULTIPORT CARD (ISICOM)
11721 S:      Orphan
11722 F:      drivers/tty/isicom.c
11723 F:      include/linux/isicom.h
11724
11725 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
11726 M:      Bin Liu <b-liu@ti.com>
11727 L:      linux-usb@vger.kernel.org
11728 S:      Maintained
11729 F:      drivers/usb/musb/
11730
11731 MXL301RF MEDIA DRIVER
11732 M:      Akihiro Tsukada <tskd08@gmail.com>
11733 L:      linux-media@vger.kernel.org
11734 S:      Odd Fixes
11735 F:      drivers/media/tuners/mxl301rf*
11736
11737 MXL5007T MEDIA DRIVER
11738 M:      Michael Krufky <mkrufky@linuxtv.org>
11739 L:      linux-media@vger.kernel.org
11740 S:      Maintained
11741 W:      https://linuxtv.org
11742 W:      http://github.com/mkrufky
11743 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11744 T:      git git://linuxtv.org/mkrufky/tuners.git
11745 F:      drivers/media/tuners/mxl5007t.*
11746
11747 MXSFB DRM DRIVER
11748 M:      Marek Vasut <marex@denx.de>
11749 M:      Stefan Agner <stefan@agner.ch>
11750 L:      dri-devel@lists.freedesktop.org
11751 S:      Supported
11752 T:      git git://anongit.freedesktop.org/drm/drm-misc
11753 F:      Documentation/devicetree/bindings/display/mxsfb.txt
11754 F:      drivers/gpu/drm/mxsfb/
11755
11756 MYLEX DAC960 PCI RAID Controller
11757 M:      Hannes Reinecke <hare@kernel.org>
11758 L:      linux-scsi@vger.kernel.org
11759 S:      Supported
11760 F:      drivers/scsi/myrb.*
11761 F:      drivers/scsi/myrs.*
11762
11763 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
11764 M:      Chris Lee <christopher.lee@cspi.com>
11765 L:      netdev@vger.kernel.org
11766 S:      Supported
11767 W:      https://www.cspi.com/ethernet-products/support/downloads/
11768 F:      drivers/net/ethernet/myricom/myri10ge/
11769
11770 NAND FLASH SUBSYSTEM
11771 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11772 R:      Richard Weinberger <richard@nod.at>
11773 L:      linux-mtd@lists.infradead.org
11774 S:      Maintained
11775 W:      http://www.linux-mtd.infradead.org/
11776 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11777 C:      irc://irc.oftc.net/mtd
11778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
11779 F:      drivers/mtd/nand/
11780 F:      include/linux/mtd/*nand*.h
11781
11782 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
11783 M:      Daniel Mack <zonque@gmail.com>
11784 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11785 S:      Maintained
11786 W:      http://www.native-instruments.com
11787 F:      sound/usb/caiaq/
11788
11789 NATSEMI ETHERNET DRIVER (DP8381x)
11790 S:      Orphan
11791 F:      drivers/net/ethernet/natsemi/natsemi.c
11792
11793 NCR 5380 SCSI DRIVERS
11794 M:      Finn Thain <fthain@telegraphics.com.au>
11795 M:      Michael Schmitz <schmitzmic@gmail.com>
11796 L:      linux-scsi@vger.kernel.org
11797 S:      Maintained
11798 F:      Documentation/scsi/g_NCR5380.rst
11799 F:      drivers/scsi/NCR5380.*
11800 F:      drivers/scsi/arm/cumana_1.c
11801 F:      drivers/scsi/arm/oak.c
11802 F:      drivers/scsi/atari_scsi.*
11803 F:      drivers/scsi/dmx3191d.c
11804 F:      drivers/scsi/g_NCR5380.*
11805 F:      drivers/scsi/mac_scsi.*
11806 F:      drivers/scsi/sun3_scsi.*
11807 F:      drivers/scsi/sun3_scsi_vme.c
11808
11809 NCSI LIBRARY
11810 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
11811 S:      Maintained
11812 F:      net/ncsi/
11813
11814 NCT6775 HARDWARE MONITOR DRIVER
11815 M:      Guenter Roeck <linux@roeck-us.net>
11816 L:      linux-hwmon@vger.kernel.org
11817 S:      Maintained
11818 F:      Documentation/hwmon/nct6775.rst
11819 F:      drivers/hwmon/nct6775.c
11820
11821 NETDEVSIM
11822 M:      Jakub Kicinski <kuba@kernel.org>
11823 S:      Maintained
11824 F:      drivers/net/netdevsim/*
11825
11826 NETEM NETWORK EMULATOR
11827 M:      Stephen Hemminger <stephen@networkplumber.org>
11828 L:      netdev@vger.kernel.org
11829 S:      Maintained
11830 F:      net/sched/sch_netem.c
11831
11832 NETERION 10GbE DRIVERS (s2io/vxge)
11833 M:      Jon Mason <jdmason@kudzu.us>
11834 L:      netdev@vger.kernel.org
11835 S:      Supported
11836 F:      Documentation/networking/device_drivers/neterion/s2io.rst
11837 F:      Documentation/networking/device_drivers/neterion/vxge.rst
11838 F:      drivers/net/ethernet/neterion/
11839
11840 NETFILTER
11841 M:      Pablo Neira Ayuso <pablo@netfilter.org>
11842 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
11843 M:      Florian Westphal <fw@strlen.de>
11844 L:      netfilter-devel@vger.kernel.org
11845 L:      coreteam@netfilter.org
11846 S:      Maintained
11847 W:      http://www.netfilter.org/
11848 W:      http://www.iptables.org/
11849 W:      http://www.nftables.org/
11850 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
11851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
11852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
11853 F:      include/linux/netfilter*
11854 F:      include/linux/netfilter/
11855 F:      include/net/netfilter/
11856 F:      include/uapi/linux/netfilter*
11857 F:      include/uapi/linux/netfilter/
11858 F:      net/*/netfilter.c
11859 F:      net/*/netfilter/
11860 F:      net/bridge/br_netfilter*.c
11861 F:      net/netfilter/
11862
11863 NETROM NETWORK LAYER
11864 M:      Ralf Baechle <ralf@linux-mips.org>
11865 L:      linux-hams@vger.kernel.org
11866 S:      Maintained
11867 W:      http://www.linux-ax25.org/
11868 F:      include/net/netrom.h
11869 F:      include/uapi/linux/netrom.h
11870 F:      net/netrom/
11871
11872 NETRONOME ETHERNET DRIVERS
11873 M:      Jakub Kicinski <kuba@kernel.org>
11874 L:      oss-drivers@netronome.com
11875 S:      Maintained
11876 F:      drivers/net/ethernet/netronome/
11877
11878 NETWORK BLOCK DEVICE (NBD)
11879 M:      Josef Bacik <josef@toxicpanda.com>
11880 L:      linux-block@vger.kernel.org
11881 L:      nbd@other.debian.org
11882 S:      Maintained
11883 F:      Documentation/admin-guide/blockdev/nbd.rst
11884 F:      drivers/block/nbd.c
11885 F:      include/trace/events/nbd.h
11886 F:      include/uapi/linux/nbd.h
11887
11888 NETWORK DROP MONITOR
11889 M:      Neil Horman <nhorman@tuxdriver.com>
11890 L:      netdev@vger.kernel.org
11891 S:      Maintained
11892 W:      https://fedorahosted.org/dropwatch/
11893 F:      include/net/drop_monitor.h
11894 F:      include/uapi/linux/net_dropmon.h
11895 F:      net/core/drop_monitor.c
11896
11897 NETWORKING DRIVERS
11898 M:      "David S. Miller" <davem@davemloft.net>
11899 M:      Jakub Kicinski <kuba@kernel.org>
11900 L:      netdev@vger.kernel.org
11901 S:      Maintained
11902 W:      http://www.linuxfoundation.org/en/Net
11903 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11906 F:      Documentation/devicetree/bindings/net/
11907 F:      drivers/net/
11908 F:      include/linux/etherdevice.h
11909 F:      include/linux/fcdevice.h
11910 F:      include/linux/fddidevice.h
11911 F:      include/linux/hippidevice.h
11912 F:      include/linux/if_*
11913 F:      include/linux/inetdevice.h
11914 F:      include/linux/netdevice.h
11915 F:      include/uapi/linux/if_*
11916 F:      include/uapi/linux/netdevice.h
11917
11918 NETWORKING DRIVERS (WIRELESS)
11919 M:      Kalle Valo <kvalo@codeaurora.org>
11920 L:      linux-wireless@vger.kernel.org
11921 S:      Maintained
11922 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
11924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
11925 F:      Documentation/devicetree/bindings/net/wireless/
11926 F:      drivers/net/wireless/
11927
11928 NETWORKING [DSA]
11929 M:      Andrew Lunn <andrew@lunn.ch>
11930 M:      Vivien Didelot <vivien.didelot@gmail.com>
11931 M:      Florian Fainelli <f.fainelli@gmail.com>
11932 S:      Maintained
11933 F:      Documentation/devicetree/bindings/net/dsa/
11934 F:      drivers/net/dsa/
11935 F:      include/linux/dsa/
11936 F:      include/linux/platform_data/dsa.h
11937 F:      include/net/dsa.h
11938 F:      net/dsa/
11939
11940 NETWORKING [GENERAL]
11941 M:      "David S. Miller" <davem@davemloft.net>
11942 M:      Jakub Kicinski <kuba@kernel.org>
11943 L:      netdev@vger.kernel.org
11944 S:      Maintained
11945 W:      http://www.linuxfoundation.org/en/Net
11946 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11947 B:      mailto:netdev@vger.kernel.org
11948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11950 F:      Documentation/networking/
11951 F:      include/linux/in.h
11952 F:      include/linux/net.h
11953 F:      include/linux/netdevice.h
11954 F:      include/net/
11955 F:      include/uapi/linux/in.h
11956 F:      include/uapi/linux/net.h
11957 F:      include/uapi/linux/net_namespace.h
11958 F:      include/uapi/linux/netdevice.h
11959 F:      lib/net_utils.c
11960 F:      lib/random32.c
11961 F:      net/
11962 F:      tools/testing/selftests/net/
11963
11964 NETWORKING [IPSEC]
11965 M:      Steffen Klassert <steffen.klassert@secunet.com>
11966 M:      Herbert Xu <herbert@gondor.apana.org.au>
11967 M:      "David S. Miller" <davem@davemloft.net>
11968 L:      netdev@vger.kernel.org
11969 S:      Maintained
11970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
11971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
11972 F:      include/net/xfrm.h
11973 F:      include/uapi/linux/xfrm.h
11974 F:      net/ipv4/ah4.c
11975 F:      net/ipv4/esp4*
11976 F:      net/ipv4/ip_vti.c
11977 F:      net/ipv4/ipcomp.c
11978 F:      net/ipv4/xfrm*
11979 F:      net/ipv6/ah6.c
11980 F:      net/ipv6/esp6*
11981 F:      net/ipv6/ip6_vti.c
11982 F:      net/ipv6/ipcomp6.c
11983 F:      net/ipv6/xfrm*
11984 F:      net/key/
11985 F:      net/xfrm/
11986
11987 NETWORKING [IPv4/IPv6]
11988 M:      "David S. Miller" <davem@davemloft.net>
11989 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
11990 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
11991 L:      netdev@vger.kernel.org
11992 S:      Maintained
11993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11994 F:      arch/x86/net/*
11995 F:      include/net/ip*
11996 F:      net/ipv4/
11997 F:      net/ipv6/
11998
11999 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
12000 M:      Paul Moore <paul@paul-moore.com>
12001 L:      netdev@vger.kernel.org
12002 L:      linux-security-module@vger.kernel.org
12003 S:      Maintained
12004 W:      https://github.com/netlabel
12005 F:      Documentation/netlabel/
12006 F:      include/net/calipso.h
12007 F:      include/net/cipso_ipv4.h
12008 F:      include/net/netlabel.h
12009 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
12010 F:      include/uapi/linux/netfilter/xt_SECMARK.h
12011 F:      net/ipv4/cipso_ipv4.c
12012 F:      net/ipv6/calipso.c
12013 F:      net/netfilter/xt_CONNSECMARK.c
12014 F:      net/netfilter/xt_SECMARK.c
12015 F:      net/netlabel/
12016
12017 NETWORKING [MPTCP]
12018 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
12019 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
12020 L:      netdev@vger.kernel.org
12021 L:      mptcp@lists.01.org
12022 S:      Maintained
12023 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
12024 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
12025 F:      include/net/mptcp.h
12026 F:      include/uapi/linux/mptcp.h
12027 F:      net/mptcp/
12028 F:      tools/testing/selftests/net/mptcp/
12029
12030 NETWORKING [TCP]
12031 M:      Eric Dumazet <edumazet@google.com>
12032 L:      netdev@vger.kernel.org
12033 S:      Maintained
12034 F:      include/linux/tcp.h
12035 F:      include/net/tcp.h
12036 F:      include/trace/events/tcp.h
12037 F:      include/uapi/linux/tcp.h
12038 F:      net/ipv4/syncookies.c
12039 F:      net/ipv4/tcp*.c
12040 F:      net/ipv6/syncookies.c
12041 F:      net/ipv6/tcp*.c
12042
12043 NETWORKING [TLS]
12044 M:      Boris Pismenny <borisp@mellanox.com>
12045 M:      Aviad Yehezkel <aviadye@mellanox.com>
12046 M:      John Fastabend <john.fastabend@gmail.com>
12047 M:      Daniel Borkmann <daniel@iogearbox.net>
12048 M:      Jakub Kicinski <kuba@kernel.org>
12049 L:      netdev@vger.kernel.org
12050 S:      Maintained
12051 F:      include/net/tls.h
12052 F:      include/uapi/linux/tls.h
12053 F:      net/tls/*
12054
12055 NETWORKING [WIRELESS]
12056 L:      linux-wireless@vger.kernel.org
12057 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12058
12059 NETXEN (1/10) GbE SUPPORT
12060 M:      Manish Chopra <manishc@marvell.com>
12061 M:      Rahul Verma <rahulv@marvell.com>
12062 M:      GR-Linux-NIC-Dev@marvell.com
12063 L:      netdev@vger.kernel.org
12064 S:      Supported
12065 F:      drivers/net/ethernet/qlogic/netxen/
12066
12067 NET_FAILOVER MODULE
12068 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
12069 L:      netdev@vger.kernel.org
12070 S:      Supported
12071 F:      Documentation/networking/net_failover.rst
12072 F:      drivers/net/net_failover.c
12073 F:      include/net/net_failover.h
12074
12075 NEXTHOP
12076 M:      David Ahern <dsahern@kernel.org>
12077 L:      netdev@vger.kernel.org
12078 S:      Maintained
12079 F:      include/net/netns/nexthop.h
12080 F:      include/net/nexthop.h
12081 F:      include/uapi/linux/nexthop.h
12082 F:      net/ipv4/nexthop.c
12083
12084 NFC SUBSYSTEM
12085 L:      netdev@vger.kernel.org
12086 S:      Orphan
12087 F:      Documentation/devicetree/bindings/net/nfc/
12088 F:      drivers/nfc/
12089 F:      include/linux/platform_data/nfcmrvl.h
12090 F:      include/net/nfc/
12091 F:      include/uapi/linux/nfc.h
12092 F:      net/nfc/
12093
12094 NFS, SUNRPC, AND LOCKD CLIENTS
12095 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
12096 M:      Anna Schumaker <anna.schumaker@netapp.com>
12097 L:      linux-nfs@vger.kernel.org
12098 S:      Maintained
12099 W:      http://client.linux-nfs.org
12100 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
12101 F:      fs/lockd/
12102 F:      fs/nfs/
12103 F:      fs/nfs_common/
12104 F:      include/linux/lockd/
12105 F:      include/linux/nfs*
12106 F:      include/linux/sunrpc/
12107 F:      include/uapi/linux/nfs*
12108 F:      include/uapi/linux/sunrpc/
12109 F:      net/sunrpc/
12110
12111 NILFS2 FILESYSTEM
12112 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
12113 L:      linux-nilfs@vger.kernel.org
12114 S:      Supported
12115 W:      https://nilfs.sourceforge.io/
12116 W:      https://nilfs.osdn.jp/
12117 T:      git git://github.com/konis/nilfs2.git
12118 F:      Documentation/filesystems/nilfs2.rst
12119 F:      fs/nilfs2/
12120 F:      include/trace/events/nilfs2.h
12121 F:      include/uapi/linux/nilfs2_api.h
12122 F:      include/uapi/linux/nilfs2_ondisk.h
12123
12124 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
12125 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12126 S:      Maintained
12127 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12128 F:      Documentation/scsi/NinjaSCSI.rst
12129 F:      drivers/scsi/pcmcia/nsp_*
12130
12131 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
12132 M:      GOTO Masanori <gotom@debian.or.jp>
12133 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12134 S:      Maintained
12135 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12136 F:      Documentation/scsi/NinjaSCSI.rst
12137 F:      drivers/scsi/nsp32*
12138
12139 NIOS2 ARCHITECTURE
12140 M:      Ley Foon Tan <ley.foon.tan@intel.com>
12141 S:      Maintained
12142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
12143 F:      arch/nios2/
12144
12145 NOHZ, DYNTICKS SUPPORT
12146 M:      Frederic Weisbecker <fweisbec@gmail.com>
12147 M:      Thomas Gleixner <tglx@linutronix.de>
12148 M:      Ingo Molnar <mingo@kernel.org>
12149 L:      linux-kernel@vger.kernel.org
12150 S:      Maintained
12151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
12152 F:      include/linux/sched/nohz.h
12153 F:      include/linux/tick.h
12154 F:      kernel/time/tick*.*
12155
12156 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
12157 M:      Pavel Machek <pavel@ucw.cz>
12158 M:      Sakari Ailus <sakari.ailus@iki.fi>
12159 L:      linux-media@vger.kernel.org
12160 S:      Maintained
12161 F:      drivers/media/i2c/ad5820.c
12162 F:      drivers/media/i2c/et8ek8
12163
12164 NOKIA N900 POWER SUPPLY DRIVERS
12165 R:      Pali Rohár <pali@kernel.org>
12166 F:      drivers/power/supply/bq2415x_charger.c
12167 F:      drivers/power/supply/bq27xxx_battery.c
12168 F:      drivers/power/supply/bq27xxx_battery_i2c.c
12169 F:      drivers/power/supply/isp1704_charger.c
12170 F:      drivers/power/supply/rx51_battery.c
12171 F:      include/linux/power/bq2415x_charger.h
12172 F:      include/linux/power/bq27xxx_battery.h
12173
12174 NOLIBC HEADER FILE
12175 M:      Willy Tarreau <w@1wt.eu>
12176 S:      Maintained
12177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
12178 F:      tools/include/nolibc/
12179
12180 NSDEPS
12181 M:      Matthias Maennich <maennich@google.com>
12182 S:      Maintained
12183 F:      Documentation/core-api/symbol-namespaces.rst
12184 F:      scripts/nsdeps
12185
12186 NTB AMD DRIVER
12187 M:      Sanjay R Mehta <sanju.mehta@amd.com>
12188 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
12189 L:      linux-ntb@googlegroups.com
12190 S:      Supported
12191 F:      drivers/ntb/hw/amd/
12192
12193 NTB DRIVER CORE
12194 M:      Jon Mason <jdmason@kudzu.us>
12195 M:      Dave Jiang <dave.jiang@intel.com>
12196 M:      Allen Hubbe <allenbh@gmail.com>
12197 L:      linux-ntb@googlegroups.com
12198 S:      Supported
12199 W:      https://github.com/jonmason/ntb/wiki
12200 T:      git git://github.com/jonmason/ntb.git
12201 F:      drivers/net/ntb_netdev.c
12202 F:      drivers/ntb/
12203 F:      include/linux/ntb.h
12204 F:      include/linux/ntb_transport.h
12205 F:      tools/testing/selftests/ntb/
12206
12207 NTB IDT DRIVER
12208 M:      Serge Semin <fancer.lancer@gmail.com>
12209 L:      linux-ntb@googlegroups.com
12210 S:      Supported
12211 F:      drivers/ntb/hw/idt/
12212
12213 NTB INTEL DRIVER
12214 M:      Dave Jiang <dave.jiang@intel.com>
12215 L:      linux-ntb@googlegroups.com
12216 S:      Supported
12217 W:      https://github.com/davejiang/linux/wiki
12218 T:      git https://github.com/davejiang/linux.git
12219 F:      drivers/ntb/hw/intel/
12220
12221 NTFS FILESYSTEM
12222 M:      Anton Altaparmakov <anton@tuxera.com>
12223 L:      linux-ntfs-dev@lists.sourceforge.net
12224 S:      Supported
12225 W:      http://www.tuxera.com/
12226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12227 F:      Documentation/filesystems/ntfs.rst
12228 F:      fs/ntfs/
12229
12230 NUBUS SUBSYSTEM
12231 M:      Finn Thain <fthain@telegraphics.com.au>
12232 L:      linux-m68k@lists.linux-m68k.org
12233 S:      Maintained
12234 F:      arch/*/include/asm/nubus.h
12235 F:      drivers/nubus/
12236 F:      include/linux/nubus.h
12237 F:      include/uapi/linux/nubus.h
12238
12239 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12240 M:      Antonino Daplas <adaplas@gmail.com>
12241 L:      linux-fbdev@vger.kernel.org
12242 S:      Maintained
12243 F:      drivers/video/fbdev/nvidia/
12244 F:      drivers/video/fbdev/riva/
12245
12246 NVM EXPRESS DRIVER
12247 M:      Keith Busch <kbusch@kernel.org>
12248 M:      Jens Axboe <axboe@fb.com>
12249 M:      Christoph Hellwig <hch@lst.de>
12250 M:      Sagi Grimberg <sagi@grimberg.me>
12251 L:      linux-nvme@lists.infradead.org
12252 S:      Supported
12253 W:      http://git.infradead.org/nvme.git
12254 T:      git://git.infradead.org/nvme.git
12255 F:      drivers/nvme/host/
12256 F:      include/linux/nvme.h
12257 F:      include/uapi/linux/nvme_ioctl.h
12258
12259 NVM EXPRESS FC TRANSPORT DRIVERS
12260 M:      James Smart <james.smart@broadcom.com>
12261 L:      linux-nvme@lists.infradead.org
12262 S:      Supported
12263 F:      drivers/nvme/host/fc.c
12264 F:      drivers/nvme/target/fc.c
12265 F:      drivers/nvme/target/fcloop.c
12266 F:      include/linux/nvme-fc-driver.h
12267 F:      include/linux/nvme-fc.h
12268
12269 NVM EXPRESS TARGET DRIVER
12270 M:      Christoph Hellwig <hch@lst.de>
12271 M:      Sagi Grimberg <sagi@grimberg.me>
12272 M:      Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
12273 L:      linux-nvme@lists.infradead.org
12274 S:      Supported
12275 W:      http://git.infradead.org/nvme.git
12276 T:      git://git.infradead.org/nvme.git
12277 F:      drivers/nvme/target/
12278
12279 NVMEM FRAMEWORK
12280 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
12281 S:      Maintained
12282 F:      Documentation/ABI/stable/sysfs-bus-nvmem
12283 F:      Documentation/devicetree/bindings/nvmem/
12284 F:      drivers/nvmem/
12285 F:      include/linux/nvmem-consumer.h
12286 F:      include/linux/nvmem-provider.h
12287
12288 NXP FSPI DRIVER
12289 M:      Ashish Kumar <ashish.kumar@nxp.com>
12290 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
12291 L:      linux-spi@vger.kernel.org
12292 S:      Maintained
12293 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12294 F:      drivers/spi/spi-nxp-fspi.c
12295
12296 NXP FXAS21002C DRIVER
12297 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12298 L:      linux-iio@vger.kernel.org
12299 S:      Maintained
12300 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
12301 F:      drivers/iio/gyro/fxas21002c.h
12302 F:      drivers/iio/gyro/fxas21002c_core.c
12303 F:      drivers/iio/gyro/fxas21002c_i2c.c
12304 F:      drivers/iio/gyro/fxas21002c_spi.c
12305
12306 NXP SGTL5000 DRIVER
12307 M:      Fabio Estevam <festevam@gmail.com>
12308 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12309 S:      Maintained
12310 F:      Documentation/devicetree/bindings/sound/sgtl5000.txt
12311 F:      sound/soc/codecs/sgtl5000*
12312
12313 NXP SJA1105 ETHERNET SWITCH DRIVER
12314 M:      Vladimir Oltean <olteanv@gmail.com>
12315 L:      linux-kernel@vger.kernel.org
12316 S:      Maintained
12317 F:      drivers/net/dsa/sja1105
12318
12319 NXP TDA998X DRM DRIVER
12320 M:      Russell King <linux@armlinux.org.uk>
12321 S:      Maintained
12322 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12323 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12324 F:      drivers/gpu/drm/i2c/tda998x_drv.c
12325 F:      include/drm/i2c/tda998x.h
12326 F:      include/dt-bindings/display/tda998x.h
12327 K:      "nxp,tda998x"
12328
12329 NXP TFA9879 DRIVER
12330 M:      Peter Rosin <peda@axentia.se>
12331 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12332 S:      Maintained
12333 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
12334 F:      sound/soc/codecs/tfa9879*
12335
12336 NXP-NCI NFC DRIVER
12337 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
12338 R:      Charles Gorand <charles.gorand@effinnov.com>
12339 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
12340 S:      Supported
12341 F:      drivers/nfc/nxp-nci
12342
12343 OBJAGG
12344 M:      Jiri Pirko <jiri@mellanox.com>
12345 L:      netdev@vger.kernel.org
12346 S:      Supported
12347 F:      include/linux/objagg.h
12348 F:      lib/objagg.c
12349 F:      lib/test_objagg.c
12350
12351 OBJTOOL
12352 M:      Josh Poimboeuf <jpoimboe@redhat.com>
12353 M:      Peter Zijlstra <peterz@infradead.org>
12354 S:      Supported
12355 F:      tools/objtool/
12356
12357 OCELOT ETHERNET SWITCH DRIVER
12358 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
12359 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
12360 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
12361 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12362 L:      netdev@vger.kernel.org
12363 S:      Supported
12364 F:      drivers/net/dsa/ocelot/*
12365 F:      drivers/net/ethernet/mscc/
12366 F:      include/soc/mscc/ocelot*
12367 F:      net/dsa/tag_ocelot.c
12368
12369 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12370 M:      Frederic Barrat <fbarrat@linux.ibm.com>
12371 M:      Andrew Donnellan <ajd@linux.ibm.com>
12372 L:      linuxppc-dev@lists.ozlabs.org
12373 S:      Supported
12374 F:      Documentation/userspace-api/accelerators/ocxl.rst
12375 F:      arch/powerpc/include/asm/pnv-ocxl.h
12376 F:      arch/powerpc/platforms/powernv/ocxl.c
12377 F:      drivers/misc/ocxl/
12378 F:      include/misc/ocxl*
12379 F:      include/uapi/misc/ocxl.h
12380
12381 OMAP AUDIO SUPPORT
12382 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
12383 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
12384 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12385 L:      linux-omap@vger.kernel.org
12386 S:      Maintained
12387 F:      sound/soc/ti/n810.c
12388 F:      sound/soc/ti/omap*
12389 F:      sound/soc/ti/rx51.c
12390 F:      sound/soc/ti/sdma-pcm.*
12391
12392 OMAP CLOCK FRAMEWORK SUPPORT
12393 M:      Paul Walmsley <paul@pwsan.com>
12394 L:      linux-omap@vger.kernel.org
12395 S:      Maintained
12396 F:      arch/arm/*omap*/*clock*
12397
12398 OMAP DEVICE TREE SUPPORT
12399 M:      Benoît Cousson <bcousson@baylibre.com>
12400 M:      Tony Lindgren <tony@atomide.com>
12401 L:      linux-omap@vger.kernel.org
12402 L:      devicetree@vger.kernel.org
12403 S:      Maintained
12404 F:      arch/arm/boot/dts/*am3*
12405 F:      arch/arm/boot/dts/*am4*
12406 F:      arch/arm/boot/dts/*am5*
12407 F:      arch/arm/boot/dts/*dra7*
12408 F:      arch/arm/boot/dts/*omap*
12409 F:      arch/arm/boot/dts/logicpd-som-lv*
12410 F:      arch/arm/boot/dts/logicpd-torpedo*
12411
12412 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12413 L:      linux-omap@vger.kernel.org
12414 L:      linux-fbdev@vger.kernel.org
12415 S:      Orphan
12416 F:      Documentation/arm/omap/dss.rst
12417 F:      drivers/video/fbdev/omap2/
12418
12419 OMAP FRAMEBUFFER SUPPORT
12420 L:      linux-fbdev@vger.kernel.org
12421 L:      linux-omap@vger.kernel.org
12422 S:      Orphan
12423 F:      drivers/video/fbdev/omap/
12424
12425 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12426 M:      Roger Quadros <rogerq@ti.com>
12427 M:      Tony Lindgren <tony@atomide.com>
12428 L:      linux-omap@vger.kernel.org
12429 S:      Maintained
12430 F:      arch/arm/mach-omap2/*gpmc*
12431 F:      drivers/memory/omap-gpmc.c
12432
12433 OMAP GPIO DRIVER
12434 M:      Grygorii Strashko <grygorii.strashko@ti.com>
12435 M:      Santosh Shilimkar <ssantosh@kernel.org>
12436 M:      Kevin Hilman <khilman@kernel.org>
12437 L:      linux-omap@vger.kernel.org
12438 S:      Maintained
12439 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
12440 F:      drivers/gpio/gpio-omap.c
12441
12442 OMAP HARDWARE SPINLOCK SUPPORT
12443 M:      Ohad Ben-Cohen <ohad@wizery.com>
12444 L:      linux-omap@vger.kernel.org
12445 S:      Maintained
12446 F:      drivers/hwspinlock/omap_hwspinlock.c
12447
12448 OMAP HS MMC SUPPORT
12449 L:      linux-mmc@vger.kernel.org
12450 L:      linux-omap@vger.kernel.org
12451 S:      Orphan
12452 F:      drivers/mmc/host/omap_hsmmc.c
12453
12454 OMAP HWMOD DATA
12455 M:      Paul Walmsley <paul@pwsan.com>
12456 L:      linux-omap@vger.kernel.org
12457 S:      Maintained
12458 F:      arch/arm/mach-omap2/omap_hwmod*data*
12459
12460 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12461 M:      Benoît Cousson <bcousson@baylibre.com>
12462 L:      linux-omap@vger.kernel.org
12463 S:      Maintained
12464 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12465
12466 OMAP HWMOD SUPPORT
12467 M:      Benoît Cousson <bcousson@baylibre.com>
12468 M:      Paul Walmsley <paul@pwsan.com>
12469 L:      linux-omap@vger.kernel.org
12470 S:      Maintained
12471 F:      arch/arm/mach-omap2/omap_hwmod.*
12472
12473 OMAP I2C DRIVER
12474 M:      Vignesh R <vigneshr@ti.com>
12475 L:      linux-omap@vger.kernel.org
12476 L:      linux-i2c@vger.kernel.org
12477 S:      Maintained
12478 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
12479 F:      drivers/i2c/busses/i2c-omap.c
12480
12481 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12482 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12483 L:      linux-media@vger.kernel.org
12484 S:      Maintained
12485 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
12486 F:      drivers/media/platform/omap3isp/
12487 F:      drivers/staging/media/omap4iss/
12488
12489 OMAP MMC SUPPORT
12490 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12491 L:      linux-omap@vger.kernel.org
12492 S:      Odd Fixes
12493 F:      drivers/mmc/host/omap.c
12494
12495 OMAP POWER MANAGEMENT SUPPORT
12496 M:      Kevin Hilman <khilman@kernel.org>
12497 L:      linux-omap@vger.kernel.org
12498 S:      Maintained
12499 F:      arch/arm/*omap*/*pm*
12500 F:      drivers/cpufreq/omap-cpufreq.c
12501
12502 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12503 M:      Rajendra Nayak <rnayak@codeaurora.org>
12504 M:      Paul Walmsley <paul@pwsan.com>
12505 L:      linux-omap@vger.kernel.org
12506 S:      Maintained
12507 F:      arch/arm/mach-omap2/prm*
12508
12509 OMAP RANDOM NUMBER GENERATOR SUPPORT
12510 M:      Deepak Saxena <dsaxena@plexity.net>
12511 S:      Maintained
12512 F:      drivers/char/hw_random/omap-rng.c
12513
12514 OMAP USB SUPPORT
12515 L:      linux-usb@vger.kernel.org
12516 L:      linux-omap@vger.kernel.org
12517 S:      Orphan
12518 F:      arch/arm/*omap*/usb*
12519 F:      drivers/usb/*/*omap*
12520
12521 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12522 M:      Mark Jackson <mpfj@newflow.co.uk>
12523 L:      linux-omap@vger.kernel.org
12524 S:      Maintained
12525 F:      arch/arm/boot/dts/am335x-nano.dts
12526
12527 OMAP1 SUPPORT
12528 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12529 M:      Tony Lindgren <tony@atomide.com>
12530 L:      linux-omap@vger.kernel.org
12531 S:      Maintained
12532 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12534 F:      arch/arm/configs/omap1_defconfig
12535 F:      arch/arm/mach-omap1/
12536 F:      arch/arm/plat-omap/
12537 F:      drivers/i2c/busses/i2c-omap.c
12538 F:      include/linux/platform_data/ams-delta-fiq.h
12539 F:      include/linux/platform_data/i2c-omap.h
12540
12541 OMAP2+ SUPPORT
12542 M:      Tony Lindgren <tony@atomide.com>
12543 L:      linux-omap@vger.kernel.org
12544 S:      Maintained
12545 W:      http://www.muru.com/linux/omap/
12546 W:      http://linux.omap.com/
12547 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12549 F:      arch/arm/configs/omap2plus_defconfig
12550 F:      arch/arm/mach-omap2/
12551 F:      arch/arm/plat-omap/
12552 F:      drivers/bus/ti-sysc.c
12553 F:      drivers/i2c/busses/i2c-omap.c
12554 F:      drivers/irqchip/irq-omap-intc.c
12555 F:      drivers/mfd/*omap*.c
12556 F:      drivers/mfd/menelaus.c
12557 F:      drivers/mfd/palmas.c
12558 F:      drivers/mfd/tps65217.c
12559 F:      drivers/mfd/tps65218.c
12560 F:      drivers/mfd/tps65910.c
12561 F:      drivers/mfd/twl-core.[ch]
12562 F:      drivers/mfd/twl4030*.c
12563 F:      drivers/mfd/twl6030*.c
12564 F:      drivers/mfd/twl6040*.c
12565 F:      drivers/regulator/palmas-regulator*.c
12566 F:      drivers/regulator/pbias-regulator.c
12567 F:      drivers/regulator/tps65217-regulator.c
12568 F:      drivers/regulator/tps65218-regulator.c
12569 F:      drivers/regulator/tps65910-regulator.c
12570 F:      drivers/regulator/twl-regulator.c
12571 F:      drivers/regulator/twl6030-regulator.c
12572 F:      include/linux/platform_data/i2c-omap.h
12573 F:      include/linux/platform_data/ti-sysc.h
12574
12575 OMFS FILESYSTEM
12576 M:      Bob Copeland <me@bobcopeland.com>
12577 L:      linux-karma-devel@lists.sourceforge.net
12578 S:      Maintained
12579 F:      Documentation/filesystems/omfs.rst
12580 F:      fs/omfs/
12581
12582 OMNIKEY CARDMAN 4000 DRIVER
12583 M:      Harald Welte <laforge@gnumonks.org>
12584 S:      Maintained
12585 F:      drivers/char/pcmcia/cm4000_cs.c
12586 F:      include/linux/cm4000_cs.h
12587 F:      include/uapi/linux/cm4000_cs.h
12588
12589 OMNIKEY CARDMAN 4040 DRIVER
12590 M:      Harald Welte <laforge@gnumonks.org>
12591 S:      Maintained
12592 F:      drivers/char/pcmcia/cm4040_cs.*
12593
12594 OMNIVISION OV13858 SENSOR DRIVER
12595 M:      Sakari Ailus <sakari.ailus@linux.intel.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/ov13858.c
12600
12601 OMNIVISION OV2680 SENSOR DRIVER
12602 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12603 L:      linux-media@vger.kernel.org
12604 S:      Maintained
12605 T:      git git://linuxtv.org/media_tree.git
12606 F:      Documentation/devicetree/bindings/media/i2c/ov2680.txt
12607 F:      drivers/media/i2c/ov2680.c
12608
12609 OMNIVISION OV2685 SENSOR DRIVER
12610 M:      Shunqian Zheng <zhengsq@rock-chips.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/ov2685.c
12615
12616 OMNIVISION OV2740 SENSOR DRIVER
12617 M:      Tianshu Qiu <tian.shu.qiua@intel.com>
12618 R:      Shawn Tu <shawnx.tu@intel.com>
12619 R:      Bingbu Cao <bingbu.cao@intel.com>
12620 L:      linux-media@vger.kernel.org
12621 S:      Maintained
12622 T:      git git://linuxtv.org/media_tree.git
12623 F:      drivers/media/i2c/ov2740.c
12624
12625 OMNIVISION OV5640 SENSOR DRIVER
12626 M:      Steve Longerbeam <slongerbeam@gmail.com>
12627 L:      linux-media@vger.kernel.org
12628 S:      Maintained
12629 T:      git git://linuxtv.org/media_tree.git
12630 F:      drivers/media/i2c/ov5640.c
12631
12632 OMNIVISION OV5647 SENSOR DRIVER
12633 M:      Luis Oliveira <lolivei@synopsys.com>
12634 L:      linux-media@vger.kernel.org
12635 S:      Maintained
12636 T:      git git://linuxtv.org/media_tree.git
12637 F:      drivers/media/i2c/ov5647.c
12638
12639 OMNIVISION OV5670 SENSOR DRIVER
12640 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
12641 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
12642 L:      linux-media@vger.kernel.org
12643 S:      Maintained
12644 T:      git git://linuxtv.org/media_tree.git
12645 F:      drivers/media/i2c/ov5670.c
12646
12647 OMNIVISION OV5675 SENSOR DRIVER
12648 M:      Shawn Tu <shawnx.tu@intel.com>
12649 L:      linux-media@vger.kernel.org
12650 S:      Maintained
12651 T:      git git://linuxtv.org/media_tree.git
12652 F:      drivers/media/i2c/ov5675.c
12653
12654 OMNIVISION OV5695 SENSOR DRIVER
12655 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12656 L:      linux-media@vger.kernel.org
12657 S:      Maintained
12658 T:      git git://linuxtv.org/media_tree.git
12659 F:      drivers/media/i2c/ov5695.c
12660
12661 OMNIVISION OV7670 SENSOR DRIVER
12662 M:      Jonathan Corbet <corbet@lwn.net>
12663 L:      linux-media@vger.kernel.org
12664 S:      Maintained
12665 T:      git git://linuxtv.org/media_tree.git
12666 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
12667 F:      drivers/media/i2c/ov7670.c
12668
12669 OMNIVISION OV772x SENSOR DRIVER
12670 M:      Jacopo Mondi <jacopo@jmondi.org>
12671 L:      linux-media@vger.kernel.org
12672 S:      Odd fixes
12673 T:      git git://linuxtv.org/media_tree.git
12674 F:      Documentation/devicetree/bindings/media/i2c/ov772x.txt
12675 F:      drivers/media/i2c/ov772x.c
12676 F:      include/media/i2c/ov772x.h
12677
12678 OMNIVISION OV7740 SENSOR DRIVER
12679 M:      Wenyou Yang <wenyou.yang@microchip.com>
12680 L:      linux-media@vger.kernel.org
12681 S:      Maintained
12682 T:      git git://linuxtv.org/media_tree.git
12683 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
12684 F:      drivers/media/i2c/ov7740.c
12685
12686 OMNIVISION OV8856 SENSOR DRIVER
12687 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
12688 L:      linux-media@vger.kernel.org
12689 S:      Maintained
12690 T:      git git://linuxtv.org/media_tree.git
12691 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
12692 F:      drivers/media/i2c/ov8856.c
12693
12694 OMNIVISION OV9640 SENSOR DRIVER
12695 M:      Petr Cvek <petrcvekcz@gmail.com>
12696 L:      linux-media@vger.kernel.org
12697 S:      Maintained
12698 F:      drivers/media/i2c/ov9640.*
12699
12700 OMNIVISION OV9650 SENSOR DRIVER
12701 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12702 R:      Akinobu Mita <akinobu.mita@gmail.com>
12703 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12704 L:      linux-media@vger.kernel.org
12705 S:      Maintained
12706 T:      git git://linuxtv.org/media_tree.git
12707 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
12708 F:      drivers/media/i2c/ov9650.c
12709
12710 ONENAND FLASH DRIVER
12711 M:      Kyungmin Park <kyungmin.park@samsung.com>
12712 L:      linux-mtd@lists.infradead.org
12713 S:      Maintained
12714 F:      drivers/mtd/nand/onenand/
12715 F:      include/linux/mtd/onenand*.h
12716
12717 ONION OMEGA2+ BOARD
12718 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
12719 L:      linux-mips@vger.kernel.org
12720 S:      Maintained
12721 F:      arch/mips/boot/dts/ralink/omega2p.dts
12722
12723 OP-TEE DRIVER
12724 M:      Jens Wiklander <jens.wiklander@linaro.org>
12725 L:      tee-dev@lists.linaro.org
12726 S:      Maintained
12727 F:      drivers/tee/optee/
12728
12729 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
12730 M:      Sumit Garg <sumit.garg@linaro.org>
12731 L:      tee-dev@lists.linaro.org
12732 S:      Maintained
12733 F:      drivers/char/hw_random/optee-rng.c
12734
12735 OPA-VNIC DRIVER
12736 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
12737 M:      Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
12738 L:      linux-rdma@vger.kernel.org
12739 S:      Supported
12740 F:      drivers/infiniband/ulp/opa_vnic
12741
12742 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
12743 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
12744 M:      Frank Rowand <frowand.list@gmail.com>
12745 L:      devicetree@vger.kernel.org
12746 S:      Maintained
12747 F:      Documentation/devicetree/dynamic-resolution-notes.rst
12748 F:      Documentation/devicetree/overlay-notes.rst
12749 F:      drivers/of/overlay.c
12750 F:      drivers/of/resolver.c
12751 K:      of_overlay_notifier_
12752
12753 OPEN FIRMWARE AND FLATTENED DEVICE TREE
12754 M:      Rob Herring <robh+dt@kernel.org>
12755 M:      Frank Rowand <frowand.list@gmail.com>
12756 L:      devicetree@vger.kernel.org
12757 S:      Maintained
12758 W:      http://www.devicetree.org/
12759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12760 F:      Documentation/ABI/testing/sysfs-firmware-ofw
12761 F:      drivers/of/
12762 F:      include/linux/of*.h
12763 F:      scripts/dtc/
12764
12765 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
12766 M:      Rob Herring <robh+dt@kernel.org>
12767 L:      devicetree@vger.kernel.org
12768 S:      Maintained
12769 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
12770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12771 F:      Documentation/devicetree/
12772 F:      arch/*/boot/dts/
12773 F:      include/dt-bindings/
12774
12775 OPENCORES I2C BUS DRIVER
12776 M:      Peter Korsgaard <peter@korsgaard.com>
12777 M:      Andrew Lunn <andrew@lunn.ch>
12778 L:      linux-i2c@vger.kernel.org
12779 S:      Maintained
12780 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
12781 F:      Documentation/i2c/busses/i2c-ocores.rst
12782 F:      drivers/i2c/busses/i2c-ocores.c
12783 F:      include/linux/platform_data/i2c-ocores.h
12784
12785 OPENRISC ARCHITECTURE
12786 M:      Jonas Bonn <jonas@southpole.se>
12787 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
12788 M:      Stafford Horne <shorne@gmail.com>
12789 L:      openrisc@lists.librecores.org
12790 S:      Maintained
12791 W:      http://openrisc.io
12792 T:      git git://github.com/openrisc/linux.git
12793 F:      Documentation/devicetree/bindings/openrisc/
12794 F:      Documentation/openrisc/
12795 F:      arch/openrisc/
12796 F:      drivers/irqchip/irq-ompic.c
12797 F:      drivers/irqchip/irq-or1k-*
12798
12799 OPENVSWITCH
12800 M:      Pravin B Shelar <pshelar@ovn.org>
12801 L:      netdev@vger.kernel.org
12802 L:      dev@openvswitch.org
12803 S:      Maintained
12804 W:      http://openvswitch.org
12805 F:      include/uapi/linux/openvswitch.h
12806 F:      net/openvswitch/
12807
12808 OPERATING PERFORMANCE POINTS (OPP)
12809 M:      Viresh Kumar <vireshk@kernel.org>
12810 M:      Nishanth Menon <nm@ti.com>
12811 M:      Stephen Boyd <sboyd@kernel.org>
12812 L:      linux-pm@vger.kernel.org
12813 S:      Maintained
12814 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
12815 F:      Documentation/devicetree/bindings/opp/
12816 F:      Documentation/power/opp.rst
12817 F:      drivers/opp/
12818 F:      include/linux/pm_opp.h
12819
12820 OPL4 DRIVER
12821 M:      Clemens Ladisch <clemens@ladisch.de>
12822 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12823 S:      Maintained
12824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12825 F:      sound/drivers/opl4/
12826
12827 OPROFILE
12828 M:      Robert Richter <rric@kernel.org>
12829 L:      oprofile-list@lists.sf.net
12830 S:      Maintained
12831 F:      arch/*/include/asm/oprofile*.h
12832 F:      arch/*/oprofile/
12833 F:      drivers/oprofile/
12834 F:      include/linux/oprofile.h
12835
12836 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
12837 M:      Mark Fasheh <mark@fasheh.com>
12838 M:      Joel Becker <jlbec@evilplan.org>
12839 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
12840 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
12841 S:      Supported
12842 W:      http://ocfs2.wiki.kernel.org
12843 F:      Documentation/filesystems/dlmfs.rst
12844 F:      Documentation/filesystems/ocfs2.rst
12845 F:      fs/ocfs2/
12846
12847 ORANGEFS FILESYSTEM
12848 M:      Mike Marshall <hubcap@omnibond.com>
12849 R:      Martin Brandenburg <martin@omnibond.com>
12850 L:      devel@lists.orangefs.org
12851 S:      Supported
12852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
12853 F:      Documentation/filesystems/orangefs.rst
12854 F:      fs/orangefs/
12855
12856 ORINOCO DRIVER
12857 L:      linux-wireless@vger.kernel.org
12858 S:      Orphan
12859 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
12860 W:      http://www.nongnu.org/orinoco/
12861 F:      drivers/net/wireless/intersil/orinoco/
12862
12863 OV2659 OMNIVISION SENSOR DRIVER
12864 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
12865 L:      linux-media@vger.kernel.org
12866 S:      Maintained
12867 W:      https://linuxtv.org
12868 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12869 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12870 F:      drivers/media/i2c/ov2659.c
12871 F:      include/media/i2c/ov2659.h
12872
12873 OVERLAY FILESYSTEM
12874 M:      Miklos Szeredi <miklos@szeredi.hu>
12875 L:      linux-unionfs@vger.kernel.org
12876 S:      Supported
12877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
12878 F:      Documentation/filesystems/overlayfs.rst
12879 F:      fs/overlayfs/
12880
12881 P54 WIRELESS DRIVER
12882 M:      Christian Lamparter <chunkeey@googlemail.com>
12883 L:      linux-wireless@vger.kernel.org
12884 S:      Maintained
12885 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
12886 F:      drivers/net/wireless/intersil/p54/
12887
12888 PACKING
12889 M:      Vladimir Oltean <olteanv@gmail.com>
12890 L:      netdev@vger.kernel.org
12891 S:      Supported
12892 F:      Documentation/core-api/packing.rst
12893 F:      include/linux/packing.h
12894 F:      lib/packing.c
12895
12896 PADATA PARALLEL EXECUTION MECHANISM
12897 M:      Steffen Klassert <steffen.klassert@secunet.com>
12898 L:      linux-crypto@vger.kernel.org
12899 S:      Maintained
12900 F:      Documentation/core-api/padata.rst
12901 F:      include/linux/padata.h
12902 F:      kernel/padata.c
12903
12904 PAGE POOL
12905 M:      Jesper Dangaard Brouer <hawk@kernel.org>
12906 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
12907 L:      netdev@vger.kernel.org
12908 S:      Supported
12909 F:      include/net/page_pool.h
12910 F:      net/core/page_pool.c
12911
12912 PANASONIC LAPTOP ACPI EXTRAS DRIVER
12913 M:      Harald Welte <laforge@gnumonks.org>
12914 L:      platform-driver-x86@vger.kernel.org
12915 S:      Maintained
12916 F:      drivers/platform/x86/panasonic-laptop.c
12917
12918 PARALLAX PING IIO SENSOR DRIVER
12919 M:      Andreas Klinger <ak@it-klinger.de>
12920 L:      linux-iio@vger.kernel.org
12921 S:      Maintained
12922 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
12923 F:      drivers/iio/proximity/ping.c
12924
12925 PARALLEL LCD/KEYPAD PANEL DRIVER
12926 M:      Willy Tarreau <willy@haproxy.com>
12927 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
12928 S:      Odd Fixes
12929 F:      Documentation/admin-guide/lcd-panel-cgram.rst
12930 F:      drivers/auxdisplay/panel.c
12931
12932 PARALLEL PORT SUBSYSTEM
12933 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12934 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12935 L:      linux-parport@lists.infradead.org (subscribers-only)
12936 S:      Maintained
12937 F:      Documentation/driver-api/parport*.rst
12938 F:      drivers/char/ppdev.c
12939 F:      drivers/parport/
12940 F:      include/linux/parport*.h
12941 F:      include/uapi/linux/ppdev.h
12942
12943 PARAVIRT_OPS INTERFACE
12944 M:      Juergen Gross <jgross@suse.com>
12945 M:      Deep Shah <sdeep@vmware.com>
12946 M:      "VMware, Inc." <pv-drivers@vmware.com>
12947 L:      virtualization@lists.linux-foundation.org
12948 S:      Supported
12949 F:      Documentation/virt/paravirt_ops.rst
12950 F:      arch/*/include/asm/paravirt*.h
12951 F:      arch/*/kernel/paravirt*
12952 F:      include/linux/hypervisor.h
12953
12954 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
12955 M:      Tim Waugh <tim@cyberelk.net>
12956 L:      linux-parport@lists.infradead.org (subscribers-only)
12957 S:      Maintained
12958 F:      Documentation/admin-guide/blockdev/paride.rst
12959 F:      drivers/block/paride/
12960
12961 PARISC ARCHITECTURE
12962 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
12963 M:      Helge Deller <deller@gmx.de>
12964 L:      linux-parisc@vger.kernel.org
12965 S:      Maintained
12966 W:      https://parisc.wiki.kernel.org
12967 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
12968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
12969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
12970 F:      Documentation/parisc/
12971 F:      arch/parisc/
12972 F:      drivers/char/agp/parisc-agp.c
12973 F:      drivers/input/misc/hp_sdc_rtc.c
12974 F:      drivers/input/serio/gscps2.c
12975 F:      drivers/input/serio/hp_sdc*
12976 F:      drivers/parisc/
12977 F:      drivers/parport/parport_gsc.*
12978 F:      drivers/tty/serial/8250/8250_gsc.c
12979 F:      drivers/video/console/sti*
12980 F:      drivers/video/fbdev/sti*
12981 F:      drivers/video/logo/logo_parisc*
12982 F:      include/linux/hp_sdc.h
12983
12984 PARMAN
12985 M:      Jiri Pirko <jiri@mellanox.com>
12986 L:      netdev@vger.kernel.org
12987 S:      Supported
12988 F:      include/linux/parman.h
12989 F:      lib/parman.c
12990 F:      lib/test_parman.c
12991
12992 PC ENGINES APU BOARD DRIVER
12993 M:      Enrico Weigelt, metux IT consult <info@metux.net>
12994 S:      Maintained
12995 F:      drivers/platform/x86/pcengines-apuv2.c
12996
12997 PC87360 HARDWARE MONITORING DRIVER
12998 M:      Jim Cromie <jim.cromie@gmail.com>
12999 L:      linux-hwmon@vger.kernel.org
13000 S:      Maintained
13001 F:      Documentation/hwmon/pc87360.rst
13002 F:      drivers/hwmon/pc87360.c
13003
13004 PC8736x GPIO DRIVER
13005 M:      Jim Cromie <jim.cromie@gmail.com>
13006 S:      Maintained
13007 F:      drivers/char/pc8736x_gpio.c
13008
13009 PC87427 HARDWARE MONITORING DRIVER
13010 M:      Jean Delvare <jdelvare@suse.com>
13011 L:      linux-hwmon@vger.kernel.org
13012 S:      Maintained
13013 F:      Documentation/hwmon/pc87427.rst
13014 F:      drivers/hwmon/pc87427.c
13015
13016 PCA9532 LED DRIVER
13017 M:      Riku Voipio <riku.voipio@iki.fi>
13018 S:      Maintained
13019 F:      drivers/leds/leds-pca9532.c
13020 F:      include/linux/leds-pca9532.h
13021
13022 PCA9541 I2C BUS MASTER SELECTOR DRIVER
13023 M:      Guenter Roeck <linux@roeck-us.net>
13024 L:      linux-i2c@vger.kernel.org
13025 S:      Maintained
13026 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
13027
13028 PCDP - PRIMARY CONSOLE AND DEBUG PORT
13029 M:      Khalid Aziz <khalid@gonehiking.org>
13030 S:      Maintained
13031 F:      drivers/firmware/pcdp.*
13032
13033 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
13034 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13035 L:      linux-pci@vger.kernel.org
13036 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13037 S:      Maintained
13038 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
13039 F:      drivers/pci/controller/pci-aardvark.c
13040
13041 PCI DRIVER FOR ALTERA PCIE IP
13042 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13043 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13044 L:      linux-pci@vger.kernel.org
13045 S:      Supported
13046 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
13047 F:      drivers/pci/controller/pcie-altera.c
13048
13049 PCI DRIVER FOR APPLIEDMICRO XGENE
13050 M:      Toan Le <toan@os.amperecomputing.com>
13051 L:      linux-pci@vger.kernel.org
13052 L:      linux-arm-kernel@lists.infradead.org
13053 S:      Maintained
13054 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
13055 F:      drivers/pci/controller/pci-xgene.c
13056
13057 PCI DRIVER FOR ARM VERSATILE PLATFORM
13058 M:      Rob Herring <robh@kernel.org>
13059 L:      linux-pci@vger.kernel.org
13060 L:      linux-arm-kernel@lists.infradead.org
13061 S:      Maintained
13062 F:      Documentation/devicetree/bindings/pci/versatile.yaml
13063 F:      drivers/pci/controller/pci-versatile.c
13064
13065 PCI DRIVER FOR ARMADA 8K
13066 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13067 L:      linux-pci@vger.kernel.org
13068 L:      linux-arm-kernel@lists.infradead.org
13069 S:      Maintained
13070 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
13071 F:      drivers/pci/controller/dwc/pcie-armada8k.c
13072
13073 PCI DRIVER FOR CADENCE PCIE IP
13074 M:      Tom Joseph <tjoseph@cadence.com>
13075 L:      linux-pci@vger.kernel.org
13076 S:      Maintained
13077 F:      Documentation/devicetree/bindings/pci/cdns,*
13078 F:      drivers/pci/controller/cadence/
13079
13080 PCI DRIVER FOR FREESCALE LAYERSCAPE
13081 M:      Minghuan Lian <minghuan.Lian@nxp.com>
13082 M:      Mingkai Hu <mingkai.hu@nxp.com>
13083 M:      Roy Zang <roy.zang@nxp.com>
13084 L:      linuxppc-dev@lists.ozlabs.org
13085 L:      linux-pci@vger.kernel.org
13086 L:      linux-arm-kernel@lists.infradead.org
13087 S:      Maintained
13088 F:      drivers/pci/controller/dwc/*layerscape*
13089
13090 PCI DRIVER FOR GENERIC OF HOSTS
13091 M:      Will Deacon <will@kernel.org>
13092 L:      linux-pci@vger.kernel.org
13093 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13094 S:      Maintained
13095 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
13096 F:      drivers/pci/controller/pci-host-common.c
13097 F:      drivers/pci/controller/pci-host-generic.c
13098
13099 PCI DRIVER FOR IMX6
13100 M:      Richard Zhu <hongxing.zhu@nxp.com>
13101 M:      Lucas Stach <l.stach@pengutronix.de>
13102 L:      linux-pci@vger.kernel.org
13103 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13104 S:      Maintained
13105 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
13106 F:      drivers/pci/controller/dwc/*imx6*
13107
13108 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
13109 M:      Jonathan Derrick <jonathan.derrick@intel.com>
13110 L:      linux-pci@vger.kernel.org
13111 S:      Supported
13112 F:      drivers/pci/controller/vmd.c
13113
13114 PCI DRIVER FOR MICROSEMI SWITCHTEC
13115 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
13116 M:      Logan Gunthorpe <logang@deltatee.com>
13117 L:      linux-pci@vger.kernel.org
13118 S:      Maintained
13119 F:      Documentation/ABI/testing/sysfs-class-switchtec
13120 F:      Documentation/driver-api/switchtec.rst
13121 F:      drivers/ntb/hw/mscc/
13122 F:      drivers/pci/switch/switchtec*
13123 F:      include/linux/switchtec.h
13124 F:      include/uapi/linux/switchtec_ioctl.h
13125
13126 PCI DRIVER FOR MOBIVEIL PCIE IP
13127 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
13128 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13129 L:      linux-pci@vger.kernel.org
13130 S:      Supported
13131 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
13132 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
13133
13134 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
13135 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13136 M:      Jason Cooper <jason@lakedaemon.net>
13137 L:      linux-pci@vger.kernel.org
13138 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13139 S:      Maintained
13140 F:      drivers/pci/controller/*mvebu*
13141
13142 PCI DRIVER FOR NVIDIA TEGRA
13143 M:      Thierry Reding <thierry.reding@gmail.com>
13144 L:      linux-tegra@vger.kernel.org
13145 L:      linux-pci@vger.kernel.org
13146 S:      Supported
13147 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
13148 F:      drivers/pci/controller/pci-tegra.c
13149
13150 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
13151 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13152 L:      linux-pci@vger.kernel.org
13153 L:      linux-arm-kernel@lists.infradead.org
13154 S:      Maintained
13155 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
13156 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
13157
13158 PCI DRIVER FOR RENESAS R-CAR
13159 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
13160 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
13161 L:      linux-pci@vger.kernel.org
13162 L:      linux-renesas-soc@vger.kernel.org
13163 S:      Maintained
13164 F:      Documentation/devicetree/bindings/pci/*rcar*
13165 F:      drivers/pci/controller/*rcar*
13166
13167 PCI DRIVER FOR SAMSUNG EXYNOS
13168 M:      Jingoo Han <jingoohan1@gmail.com>
13169 L:      linux-pci@vger.kernel.org
13170 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13171 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
13172 S:      Maintained
13173 F:      drivers/pci/controller/dwc/pci-exynos.c
13174
13175 PCI DRIVER FOR SYNOPSYS DESIGNWARE
13176 M:      Jingoo Han <jingoohan1@gmail.com>
13177 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
13178 L:      linux-pci@vger.kernel.org
13179 S:      Maintained
13180 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
13181 F:      drivers/pci/controller/dwc/*designware*
13182
13183 PCI DRIVER FOR TI DRA7XX
13184 M:      Kishon Vijay Abraham I <kishon@ti.com>
13185 L:      linux-omap@vger.kernel.org
13186 L:      linux-pci@vger.kernel.org
13187 S:      Supported
13188 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
13189 F:      drivers/pci/controller/dwc/pci-dra7xx.c
13190
13191 PCI DRIVER FOR TI KEYSTONE
13192 M:      Murali Karicheri <m-karicheri2@ti.com>
13193 L:      linux-pci@vger.kernel.org
13194 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13195 S:      Maintained
13196 F:      drivers/pci/controller/dwc/pci-keystone.c
13197
13198 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13199 M:      Linus Walleij <linus.walleij@linaro.org>
13200 L:      linux-pci@vger.kernel.org
13201 S:      Maintained
13202 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13203 F:      drivers/pci/controller/pci-v3-semi.c
13204
13205 PCI ENDPOINT SUBSYSTEM
13206 M:      Kishon Vijay Abraham I <kishon@ti.com>
13207 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13208 L:      linux-pci@vger.kernel.org
13209 S:      Supported
13210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
13211 F:      drivers/misc/pci_endpoint_test.c
13212 F:      drivers/pci/endpoint/
13213 F:      tools/pci/
13214
13215 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
13216 M:      Russell Currey <ruscur@russell.cc>
13217 M:      Sam Bobroff <sbobroff@linux.ibm.com>
13218 M:      Oliver O'Halloran <oohall@gmail.com>
13219 L:      linuxppc-dev@lists.ozlabs.org
13220 S:      Supported
13221 F:      Documentation/PCI/pci-error-recovery.rst
13222 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
13223 F:      arch/powerpc/include/*/eeh*.h
13224 F:      arch/powerpc/kernel/eeh*.c
13225 F:      arch/powerpc/platforms/*/eeh*.c
13226 F:      drivers/pci/pcie/aer.c
13227 F:      drivers/pci/pcie/dpc.c
13228 F:      drivers/pci/pcie/err.c
13229
13230 PCI ERROR RECOVERY
13231 M:      Linas Vepstas <linasvepstas@gmail.com>
13232 L:      linux-pci@vger.kernel.org
13233 S:      Supported
13234 F:      Documentation/PCI/pci-error-recovery.rst
13235
13236 PCI MSI DRIVER FOR ALTERA MSI IP
13237 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13238 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13239 L:      linux-pci@vger.kernel.org
13240 S:      Supported
13241 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
13242 F:      drivers/pci/controller/pcie-altera-msi.c
13243
13244 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13245 M:      Toan Le <toan@os.amperecomputing.com>
13246 L:      linux-pci@vger.kernel.org
13247 L:      linux-arm-kernel@lists.infradead.org
13248 S:      Maintained
13249 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13250 F:      drivers/pci/controller/pci-xgene-msi.c
13251
13252 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13253 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13254 R:      Rob Herring <robh@kernel.org>
13255 L:      linux-pci@vger.kernel.org
13256 S:      Supported
13257 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13259 F:      drivers/pci/controller/
13260
13261 PCI SUBSYSTEM
13262 M:      Bjorn Helgaas <bhelgaas@google.com>
13263 L:      linux-pci@vger.kernel.org
13264 S:      Supported
13265 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13267 F:      Documentation/PCI/
13268 F:      Documentation/devicetree/bindings/pci/
13269 F:      arch/x86/kernel/early-quirks.c
13270 F:      arch/x86/kernel/quirks.c
13271 F:      arch/x86/pci/
13272 F:      drivers/acpi/pci*
13273 F:      drivers/pci/
13274 F:      include/asm-generic/pci*
13275 F:      include/linux/of_pci.h
13276 F:      include/linux/pci*
13277 F:      include/uapi/linux/pci*
13278 F:      lib/pci*
13279
13280 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13281 M:      Jonathan Chocron <jonnyc@amazon.com>
13282 L:      linux-pci@vger.kernel.org
13283 S:      Maintained
13284 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
13285 F:      drivers/pci/controller/dwc/pcie-al.c
13286
13287 PCIE DRIVER FOR AMLOGIC MESON
13288 M:      Yue Wang <yue.wang@Amlogic.com>
13289 L:      linux-pci@vger.kernel.org
13290 L:      linux-amlogic@lists.infradead.org
13291 S:      Maintained
13292 F:      drivers/pci/controller/dwc/pci-meson.c
13293
13294 PCIE DRIVER FOR AXIS ARTPEC
13295 M:      Jesper Nilsson <jesper.nilsson@axis.com>
13296 L:      linux-arm-kernel@axis.com
13297 L:      linux-pci@vger.kernel.org
13298 S:      Maintained
13299 F:      Documentation/devicetree/bindings/pci/axis,artpec*
13300 F:      drivers/pci/controller/dwc/*artpec*
13301
13302 PCIE DRIVER FOR CAVIUM THUNDERX
13303 M:      Robert Richter <rrichter@marvell.com>
13304 L:      linux-pci@vger.kernel.org
13305 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13306 S:      Supported
13307 F:      drivers/pci/controller/pci-thunder-*
13308
13309 PCIE DRIVER FOR HISILICON
13310 M:      Zhou Wang <wangzhou1@hisilicon.com>
13311 L:      linux-pci@vger.kernel.org
13312 S:      Maintained
13313 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13314 F:      drivers/pci/controller/dwc/pcie-hisi.c
13315
13316 PCIE DRIVER FOR HISILICON KIRIN
13317 M:      Xiaowei Song <songxiaowei@hisilicon.com>
13318 M:      Binghui Wang <wangbinghui@hisilicon.com>
13319 L:      linux-pci@vger.kernel.org
13320 S:      Maintained
13321 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
13322 F:      drivers/pci/controller/dwc/pcie-kirin.c
13323
13324 PCIE DRIVER FOR HISILICON STB
13325 M:      Shawn Guo <shawn.guo@linaro.org>
13326 L:      linux-pci@vger.kernel.org
13327 S:      Maintained
13328 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13329 F:      drivers/pci/controller/dwc/pcie-histb.c
13330
13331 PCIE DRIVER FOR MEDIATEK
13332 M:      Ryder Lee <ryder.lee@mediatek.com>
13333 L:      linux-pci@vger.kernel.org
13334 L:      linux-mediatek@lists.infradead.org
13335 S:      Supported
13336 F:      Documentation/devicetree/bindings/pci/mediatek*
13337 F:      drivers/pci/controller/*mediatek*
13338
13339 PCIE DRIVER FOR QUALCOMM MSM
13340 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
13341 L:      linux-pci@vger.kernel.org
13342 L:      linux-arm-msm@vger.kernel.org
13343 S:      Maintained
13344 F:      drivers/pci/controller/dwc/*qcom*
13345
13346 PCIE DRIVER FOR ROCKCHIP
13347 M:      Shawn Lin <shawn.lin@rock-chips.com>
13348 L:      linux-pci@vger.kernel.org
13349 L:      linux-rockchip@lists.infradead.org
13350 S:      Maintained
13351 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
13352 F:      drivers/pci/controller/pcie-rockchip*
13353
13354 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13355 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
13356 L:      linux-pci@vger.kernel.org
13357 S:      Maintained
13358 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
13359 F:      drivers/pci/controller/dwc/pcie-uniphier*
13360
13361 PCIE DRIVER FOR ST SPEAR13XX
13362 M:      Pratyush Anand <pratyush.anand@gmail.com>
13363 L:      linux-pci@vger.kernel.org
13364 S:      Maintained
13365 F:      drivers/pci/controller/dwc/*spear*
13366
13367 PCMCIA SUBSYSTEM
13368 M:      Dominik Brodowski <linux@dominikbrodowski.net>
13369 S:      Odd Fixes
13370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13371 F:      Documentation/pcmcia/
13372 F:      drivers/pcmcia/
13373 F:      include/pcmcia/
13374 F:      tools/pcmcia/
13375
13376 PCNET32 NETWORK DRIVER
13377 M:      Don Fry <pcnet32@frontier.com>
13378 L:      netdev@vger.kernel.org
13379 S:      Maintained
13380 F:      drivers/net/ethernet/amd/pcnet32.c
13381
13382 PCRYPT PARALLEL CRYPTO ENGINE
13383 M:      Steffen Klassert <steffen.klassert@secunet.com>
13384 L:      linux-crypto@vger.kernel.org
13385 S:      Maintained
13386 F:      crypto/pcrypt.c
13387 F:      include/crypto/pcrypt.h
13388
13389 PEAQ WMI HOTKEYS DRIVER
13390 M:      Hans de Goede <hdegoede@redhat.com>
13391 L:      platform-driver-x86@vger.kernel.org
13392 S:      Maintained
13393 F:      drivers/platform/x86/peaq-wmi.c
13394
13395 PENSANDO ETHERNET DRIVERS
13396 M:      Shannon Nelson <snelson@pensando.io>
13397 M:      Pensando Drivers <drivers@pensando.io>
13398 L:      netdev@vger.kernel.org
13399 S:      Supported
13400 F:      Documentation/networking/device_drivers/pensando/ionic.rst
13401 F:      drivers/net/ethernet/pensando/
13402
13403 PER-CPU MEMORY ALLOCATOR
13404 M:      Dennis Zhou <dennis@kernel.org>
13405 M:      Tejun Heo <tj@kernel.org>
13406 M:      Christoph Lameter <cl@linux.com>
13407 S:      Maintained
13408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13409 F:      arch/*/include/asm/percpu.h
13410 F:      include/linux/percpu*.h
13411 F:      mm/percpu*.c
13412
13413 PER-TASK DELAY ACCOUNTING
13414 M:      Balbir Singh <bsingharora@gmail.com>
13415 S:      Maintained
13416 F:      include/linux/delayacct.h
13417 F:      kernel/delayacct.c
13418
13419 PERFORMANCE EVENTS SUBSYSTEM
13420 M:      Peter Zijlstra <peterz@infradead.org>
13421 M:      Ingo Molnar <mingo@redhat.com>
13422 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
13423 R:      Mark Rutland <mark.rutland@arm.com>
13424 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
13425 R:      Jiri Olsa <jolsa@redhat.com>
13426 R:      Namhyung Kim <namhyung@kernel.org>
13427 L:      linux-kernel@vger.kernel.org
13428 S:      Supported
13429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13430 F:      arch/*/events/*
13431 F:      arch/*/events/*/*
13432 F:      arch/*/include/asm/perf_event.h
13433 F:      arch/*/kernel/*/*/perf_event*.c
13434 F:      arch/*/kernel/*/perf_event*.c
13435 F:      arch/*/kernel/perf_callchain.c
13436 F:      arch/*/kernel/perf_event*.c
13437 F:      include/linux/perf_event.h
13438 F:      include/uapi/linux/perf_event.h
13439 F:      kernel/events/*
13440 F:      tools/perf/
13441
13442 PERFORMANCE EVENTS SUBSYSTEM ARM64 PMU EVENTS
13443 R:      John Garry <john.garry@huawei.com>
13444 R:      Will Deacon <will@kernel.org>
13445 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13446 S:      Supported
13447 F:      tools/perf/pmu-events/arch/arm64/
13448
13449 PERSONALITY HANDLING
13450 M:      Christoph Hellwig <hch@infradead.org>
13451 L:      linux-abi-devel@lists.sourceforge.net
13452 S:      Maintained
13453 F:      include/linux/personality.h
13454 F:      include/uapi/linux/personality.h
13455
13456 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13457 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13458 L:      linux-input@vger.kernel.org
13459 S:      Maintained
13460 F:      Documentation/input/devices/pxrc.rst
13461 F:      drivers/input/joystick/pxrc.c
13462
13463 PHONET PROTOCOL
13464 M:      Remi Denis-Courmont <courmisch@gmail.com>
13465 S:      Supported
13466 F:      Documentation/networking/phonet.rst
13467 F:      include/linux/phonet.h
13468 F:      include/net/phonet/
13469 F:      include/uapi/linux/phonet.h
13470 F:      net/phonet/
13471
13472 PHRAM MTD DRIVER
13473 M:      Joern Engel <joern@lazybastard.org>
13474 L:      linux-mtd@lists.infradead.org
13475 S:      Maintained
13476 F:      drivers/mtd/devices/phram.c
13477
13478 PICOLCD HID DRIVER
13479 M:      Bruno Prémont <bonbons@linux-vserver.org>
13480 L:      linux-input@vger.kernel.org
13481 S:      Maintained
13482 F:      drivers/hid/hid-picolcd*
13483
13484 PICOXCELL SUPPORT
13485 M:      Jamie Iles <jamie@jamieiles.com>
13486 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13487 S:      Supported
13488 T:      git git://github.com/jamieiles/linux-2.6-ji.git
13489 F:      arch/arm/boot/dts/picoxcell*
13490 F:      arch/arm/mach-picoxcell/
13491 F:      drivers/crypto/picoxcell*
13492
13493 PIDFD API
13494 M:      Christian Brauner <christian@brauner.io>
13495 L:      linux-kernel@vger.kernel.org
13496 S:      Maintained
13497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
13498 F:      samples/pidfd/
13499 F:      tools/testing/selftests/clone3/
13500 F:      tools/testing/selftests/pid_namespace/
13501 F:      tools/testing/selftests/pidfd/
13502 K:      (?i)pidfd
13503 K:      (?i)clone3
13504 K:      \b(clone_args|kernel_clone_args)\b
13505
13506 PIN CONTROL SUBSYSTEM
13507 M:      Linus Walleij <linus.walleij@linaro.org>
13508 L:      linux-gpio@vger.kernel.org
13509 S:      Maintained
13510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
13511 F:      Documentation/devicetree/bindings/pinctrl/
13512 F:      Documentation/driver-api/pinctl.rst
13513 F:      drivers/pinctrl/
13514 F:      include/linux/pinctrl/
13515
13516 PIN CONTROLLER - FREESCALE
13517 M:      Dong Aisheng <aisheng.dong@nxp.com>
13518 M:      Fabio Estevam <festevam@gmail.com>
13519 M:      Shawn Guo <shawnguo@kernel.org>
13520 M:      Stefan Agner <stefan@agner.ch>
13521 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
13522 L:      linux-gpio@vger.kernel.org
13523 S:      Maintained
13524 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
13525 F:      drivers/pinctrl/freescale/
13526
13527 PIN CONTROLLER - INTEL
13528 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
13529 M:      Andy Shevchenko <andy@kernel.org>
13530 S:      Maintained
13531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
13532 F:      drivers/pinctrl/intel/
13533
13534 PIN CONTROLLER - MEDIATEK
13535 M:      Sean Wang <sean.wang@kernel.org>
13536 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13537 S:      Maintained
13538 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
13539 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
13540 F:      drivers/pinctrl/mediatek/
13541
13542 PIN CONTROLLER - MICROCHIP AT91
13543 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13544 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13545 L:      linux-gpio@vger.kernel.org
13546 S:      Supported
13547 F:      drivers/gpio/gpio-sama5d2-piobu.c
13548 F:      drivers/pinctrl/pinctrl-at91*
13549
13550 PIN CONTROLLER - QUALCOMM
13551 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13552 L:      linux-arm-msm@vger.kernel.org
13553 S:      Maintained
13554 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
13555 F:      drivers/pinctrl/qcom/
13556
13557 PIN CONTROLLER - RENESAS
13558 M:      Geert Uytterhoeven <geert+renesas@glider.be>
13559 L:      linux-renesas-soc@vger.kernel.org
13560 S:      Supported
13561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
13562 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
13563 F:      drivers/pinctrl/pinctrl-rz*
13564 F:      drivers/pinctrl/sh-pfc/
13565
13566 PIN CONTROLLER - SAMSUNG
13567 M:      Tomasz Figa <tomasz.figa@gmail.com>
13568 M:      Krzysztof Kozlowski <krzk@kernel.org>
13569 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13570 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13571 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
13572 S:      Maintained
13573 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
13574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
13575 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
13576 F:      drivers/pinctrl/samsung/
13577 F:      include/dt-bindings/pinctrl/samsung.h
13578
13579 PIN CONTROLLER - SINGLE
13580 M:      Tony Lindgren <tony@atomide.com>
13581 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
13582 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13583 L:      linux-omap@vger.kernel.org
13584 S:      Maintained
13585 F:      drivers/pinctrl/pinctrl-single.c
13586
13587 PIN CONTROLLER - ST SPEAR
13588 M:      Viresh Kumar <vireshk@kernel.org>
13589 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13590 S:      Maintained
13591 W:      http://www.st.com/spear
13592 F:      drivers/pinctrl/spear/
13593
13594 PISTACHIO SOC SUPPORT
13595 M:      James Hartley <james.hartley@sondrel.com>
13596 L:      linux-mips@vger.kernel.org
13597 S:      Odd Fixes
13598 F:      arch/mips/boot/dts/img/pistachio*
13599 F:      arch/mips/configs/pistachio*_defconfig
13600 F:      arch/mips/include/asm/mach-pistachio/
13601 F:      arch/mips/pistachio/
13602
13603 PKTCDVD DRIVER
13604 M:      linux-block@vger.kernel.org
13605 S:      Orphan
13606 F:      drivers/block/pktcdvd.c
13607 F:      include/linux/pktcdvd.h
13608 F:      include/uapi/linux/pktcdvd.h
13609
13610 PKUNITY SOC DRIVERS
13611 M:      Guan Xuetao <gxt@pku.edu.cn>
13612 S:      Maintained
13613 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
13614 T:      git git://github.com/gxt/linux.git
13615 F:      drivers/i2c/busses/i2c-puv3.c
13616 F:      drivers/input/serio/i8042-unicore32io.h
13617 F:      drivers/rtc/rtc-puv3.c
13618 F:      drivers/video/fbdev/fb-puv3.c
13619
13620 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
13621 M:      Tomasz Duszynski <tduszyns@gmail.com>
13622 S:      Maintained
13623 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
13624 F:      drivers/iio/chemical/pms7003.c
13625
13626 PLX DMA DRIVER
13627 M:      Logan Gunthorpe <logang@deltatee.com>
13628 S:      Maintained
13629 F:      drivers/dma/plx_dma.c
13630
13631 PM-GRAPH UTILITY
13632 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
13633 L:      linux-pm@vger.kernel.org
13634 S:      Supported
13635 W:      https://01.org/pm-graph
13636 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
13637 T:      git git://github.com/intel/pm-graph
13638 F:      tools/power/pm-graph
13639
13640 PMBUS HARDWARE MONITORING DRIVERS
13641 M:      Guenter Roeck <linux@roeck-us.net>
13642 L:      linux-hwmon@vger.kernel.org
13643 S:      Maintained
13644 W:      http://hwmon.wiki.kernel.org/
13645 W:      http://www.roeck-us.net/linux/drivers/
13646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
13647 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
13648 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
13649 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
13650 F:      Documentation/hwmon/adm1275.rst
13651 F:      Documentation/hwmon/ibm-cffps.rst
13652 F:      Documentation/hwmon/ir35221.rst
13653 F:      Documentation/hwmon/lm25066.rst
13654 F:      Documentation/hwmon/ltc2978.rst
13655 F:      Documentation/hwmon/ltc3815.rst
13656 F:      Documentation/hwmon/max16064.rst
13657 F:      Documentation/hwmon/max20751.rst
13658 F:      Documentation/hwmon/max31785.rst
13659 F:      Documentation/hwmon/max34440.rst
13660 F:      Documentation/hwmon/max8688.rst
13661 F:      Documentation/hwmon/pmbus-core.rst
13662 F:      Documentation/hwmon/pmbus.rst
13663 F:      Documentation/hwmon/tps40422.rst
13664 F:      Documentation/hwmon/ucd9000.rst
13665 F:      Documentation/hwmon/ucd9200.rst
13666 F:      Documentation/hwmon/zl6100.rst
13667 F:      drivers/hwmon/pmbus/
13668 F:      include/linux/pmbus.h
13669
13670 PMC SIERRA MaxRAID DRIVER
13671 L:      linux-scsi@vger.kernel.org
13672 S:      Orphan
13673 W:      http://www.pmc-sierra.com/
13674 F:      drivers/scsi/pmcraid.*
13675
13676 PMC SIERRA PM8001 DRIVER
13677 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
13678 L:      linux-scsi@vger.kernel.org
13679 S:      Supported
13680 F:      drivers/scsi/pm8001/
13681
13682 PNI RM3100 IIO DRIVER
13683 M:      Song Qiang <songqiang1304521@gmail.com>
13684 L:      linux-iio@vger.kernel.org
13685 S:      Maintained
13686 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
13687 F:      drivers/iio/magnetometer/rm3100*
13688
13689 PNP SUPPORT
13690 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
13691 L:      linux-acpi@vger.kernel.org
13692 S:      Maintained
13693 F:      drivers/pnp/
13694 F:      include/linux/pnp.h
13695
13696 POSIX CLOCKS and TIMERS
13697 M:      Thomas Gleixner <tglx@linutronix.de>
13698 L:      linux-kernel@vger.kernel.org
13699 S:      Maintained
13700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
13701 F:      fs/timerfd.c
13702 F:      include/linux/time_namespace.h
13703 F:      include/linux/timer*
13704 F:      kernel/time/*timer*
13705 F:      kernel/time/namespace.c
13706
13707 POWER MANAGEMENT CORE
13708 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
13709 L:      linux-pm@vger.kernel.org
13710 S:      Supported
13711 B:      https://bugzilla.kernel.org
13712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
13713 F:      drivers/base/power/
13714 F:      drivers/powercap/
13715 F:      include/linux/intel_rapl.h
13716 F:      include/linux/pm.h
13717 F:      include/linux/pm_*
13718 F:      include/linux/powercap.h
13719 F:      kernel/configs/nopm.config
13720
13721 POWER STATE COORDINATION INTERFACE (PSCI)
13722 M:      Mark Rutland <mark.rutland@arm.com>
13723 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13724 L:      linux-arm-kernel@lists.infradead.org
13725 S:      Maintained
13726 F:      drivers/firmware/psci/
13727 F:      include/linux/psci.h
13728 F:      include/uapi/linux/psci.h
13729
13730 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
13731 M:      Sebastian Reichel <sre@kernel.org>
13732 L:      linux-pm@vger.kernel.org
13733 S:      Maintained
13734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13735 F:      Documentation/ABI/testing/sysfs-class-power
13736 F:      Documentation/devicetree/bindings/power/supply/
13737 F:      drivers/power/supply/
13738 F:      include/linux/power_supply.h
13739
13740 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
13741 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
13742 L:      linuxppc-dev@lists.ozlabs.org
13743 S:      Maintained
13744 F:      drivers/char/powernv-op-panel.c
13745
13746 PPP OVER ATM (RFC 2364)
13747 M:      Mitchell Blank Jr <mitch@sfgoth.com>
13748 S:      Maintained
13749 F:      include/uapi/linux/atmppp.h
13750 F:      net/atm/pppoatm.c
13751
13752 PPP OVER ETHERNET
13753 M:      Michal Ostrowski <mostrows@earthlink.net>
13754 S:      Maintained
13755 F:      drivers/net/ppp/pppoe.c
13756 F:      drivers/net/ppp/pppox.c
13757
13758 PPP OVER L2TP
13759 M:      James Chapman <jchapman@katalix.com>
13760 S:      Maintained
13761 F:      include/linux/if_pppol2tp.h
13762 F:      include/uapi/linux/if_pppol2tp.h
13763 F:      net/l2tp/l2tp_ppp.c
13764
13765 PPP PROTOCOL DRIVERS AND COMPRESSORS
13766 M:      Paul Mackerras <paulus@samba.org>
13767 L:      linux-ppp@vger.kernel.org
13768 S:      Maintained
13769 F:      drivers/net/ppp/ppp_*
13770
13771 PPS SUPPORT
13772 M:      Rodolfo Giometti <giometti@enneenne.com>
13773 L:      linuxpps@ml.enneenne.com (subscribers-only)
13774 S:      Maintained
13775 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
13776 F:      Documentation/ABI/testing/sysfs-pps
13777 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
13778 F:      Documentation/driver-api/pps.rst
13779 F:      drivers/pps/
13780 F:      include/linux/pps*.h
13781 F:      include/uapi/linux/pps.h
13782
13783 PPTP DRIVER
13784 M:      Dmitry Kozlov <xeb@mail.ru>
13785 L:      netdev@vger.kernel.org
13786 S:      Maintained
13787 W:      http://sourceforge.net/projects/accel-pptp
13788 F:      drivers/net/ppp/pptp.c
13789
13790 PRESSURE STALL INFORMATION (PSI)
13791 M:      Johannes Weiner <hannes@cmpxchg.org>
13792 S:      Maintained
13793 F:      include/linux/psi*
13794 F:      kernel/sched/psi.c
13795
13796 PRINTK
13797 M:      Petr Mladek <pmladek@suse.com>
13798 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
13799 R:      Steven Rostedt <rostedt@goodmis.org>
13800 S:      Maintained
13801 F:      include/linux/printk.h
13802 F:      kernel/printk/
13803
13804 PRISM54 WIRELESS DRIVER
13805 M:      Luis Chamberlain <mcgrof@kernel.org>
13806 L:      linux-wireless@vger.kernel.org
13807 S:      Obsolete
13808 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
13809 F:      drivers/net/wireless/intersil/prism54/
13810
13811 PROC FILESYSTEM
13812 R:      Alexey Dobriyan <adobriyan@gmail.com>
13813 L:      linux-kernel@vger.kernel.org
13814 L:      linux-fsdevel@vger.kernel.org
13815 S:      Maintained
13816 F:      Documentation/filesystems/proc.rst
13817 F:      fs/proc/
13818 F:      include/linux/proc_fs.h
13819 F:      tools/testing/selftests/proc/
13820
13821 PROC SYSCTL
13822 M:      Luis Chamberlain <mcgrof@kernel.org>
13823 M:      Kees Cook <keescook@chromium.org>
13824 M:      Iurii Zaikin <yzaikin@google.com>
13825 L:      linux-kernel@vger.kernel.org
13826 L:      linux-fsdevel@vger.kernel.org
13827 S:      Maintained
13828 F:      fs/proc/proc_sysctl.c
13829 F:      include/linux/sysctl.h
13830 F:      kernel/sysctl-test.c
13831 F:      kernel/sysctl.c
13832 F:      tools/testing/selftests/sysctl/
13833
13834 PS3 NETWORK SUPPORT
13835 M:      Geoff Levand <geoff@infradead.org>
13836 L:      netdev@vger.kernel.org
13837 L:      linuxppc-dev@lists.ozlabs.org
13838 S:      Maintained
13839 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
13840
13841 PS3 PLATFORM SUPPORT
13842 M:      Geoff Levand <geoff@infradead.org>
13843 L:      linuxppc-dev@lists.ozlabs.org
13844 S:      Maintained
13845 F:      arch/powerpc/boot/ps3*
13846 F:      arch/powerpc/include/asm/lv1call.h
13847 F:      arch/powerpc/include/asm/ps3*.h
13848 F:      arch/powerpc/platforms/ps3/
13849 F:      drivers/*/ps3*
13850 F:      drivers/ps3/
13851 F:      drivers/rtc/rtc-ps3.c
13852 F:      drivers/usb/host/*ps3.c
13853 F:      sound/ppc/snd_ps3*
13854
13855 PS3VRAM DRIVER
13856 M:      Jim Paris <jim@jtan.com>
13857 M:      Geoff Levand <geoff@infradead.org>
13858 L:      linuxppc-dev@lists.ozlabs.org
13859 S:      Maintained
13860 F:      drivers/block/ps3vram.c
13861
13862 PSAMPLE PACKET SAMPLING SUPPORT
13863 M:      Yotam Gigi <yotam.gi@gmail.com>
13864 S:      Maintained
13865 F:      include/net/psample.h
13866 F:      include/uapi/linux/psample.h
13867 F:      net/psample
13868
13869 PSTORE FILESYSTEM
13870 M:      Kees Cook <keescook@chromium.org>
13871 M:      Anton Vorontsov <anton@enomsg.org>
13872 M:      Colin Cross <ccross@android.com>
13873 M:      Tony Luck <tony.luck@intel.com>
13874 S:      Maintained
13875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
13876 F:      Documentation/admin-guide/ramoops.rst
13877 F:      Documentation/admin-guide/pstore-blk.rst
13878 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
13879 F:      drivers/acpi/apei/erst.c
13880 F:      drivers/firmware/efi/efi-pstore.c
13881 F:      fs/pstore/
13882 F:      include/linux/pstore*
13883 K:      \b(pstore|ramoops)
13884
13885 PTP HARDWARE CLOCK SUPPORT
13886 M:      Richard Cochran <richardcochran@gmail.com>
13887 L:      netdev@vger.kernel.org
13888 S:      Maintained
13889 W:      http://linuxptp.sourceforge.net/
13890 F:      Documentation/ABI/testing/sysfs-ptp
13891 F:      Documentation/driver-api/ptp.rst
13892 F:      drivers/net/phy/dp83640*
13893 F:      drivers/ptp/*
13894 F:      include/linux/ptp_cl*
13895
13896 PTRACE SUPPORT
13897 M:      Oleg Nesterov <oleg@redhat.com>
13898 S:      Maintained
13899 F:      arch/*/*/ptrace*.c
13900 F:      arch/*/include/asm/ptrace*.h
13901 F:      arch/*/ptrace*.c
13902 F:      include/asm-generic/syscall.h
13903 F:      include/linux/ptrace.h
13904 F:      include/linux/regset.h
13905 F:      include/linux/tracehook.h
13906 F:      include/uapi/linux/ptrace.h
13907 F:      include/uapi/linux/ptrace.h
13908 F:      kernel/ptrace.c
13909
13910 PULSE8-CEC DRIVER
13911 M:      Hans Verkuil <hverkuil@xs4all.nl>
13912 L:      linux-media@vger.kernel.org
13913 S:      Maintained
13914 T:      git git://linuxtv.org/media_tree.git
13915 F:      Documentation/admin-guide/media/pulse8-cec.rst
13916 F:      drivers/media/cec/usb/pulse8/
13917
13918 PVRUSB2 VIDEO4LINUX DRIVER
13919 M:      Mike Isely <isely@pobox.com>
13920 L:      pvrusb2@isely.net       (subscribers-only)
13921 L:      linux-media@vger.kernel.org
13922 S:      Maintained
13923 W:      http://www.isely.net/pvrusb2/
13924 T:      git git://linuxtv.org/media_tree.git
13925 F:      Documentation/driver-api/media/drivers/pvrusb2*
13926 F:      drivers/media/usb/pvrusb2/
13927
13928 PWC WEBCAM DRIVER
13929 M:      Hans Verkuil <hverkuil@xs4all.nl>
13930 L:      linux-media@vger.kernel.org
13931 S:      Odd Fixes
13932 T:      git git://linuxtv.org/media_tree.git
13933 F:      drivers/media/usb/pwc/*
13934 F:      include/trace/events/pwc.h
13935
13936 PWM FAN DRIVER
13937 M:      Kamil Debski <kamil@wypas.org>
13938 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
13939 L:      linux-hwmon@vger.kernel.org
13940 S:      Supported
13941 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
13942 F:      Documentation/hwmon/pwm-fan.rst
13943 F:      drivers/hwmon/pwm-fan.c
13944
13945 PWM IR Transmitter
13946 M:      Sean Young <sean@mess.org>
13947 L:      linux-media@vger.kernel.org
13948 S:      Maintained
13949 F:      drivers/media/rc/pwm-ir-tx.c
13950
13951 PWM SUBSYSTEM
13952 M:      Thierry Reding <thierry.reding@gmail.com>
13953 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
13954 M:      Lee Jones <lee.jones@linaro.org>
13955 L:      linux-pwm@vger.kernel.org
13956 S:      Maintained
13957 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
13958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
13959 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
13960 F:      Documentation/devicetree/bindings/pwm/
13961 F:      Documentation/driver-api/pwm.rst
13962 F:      drivers/gpio/gpio-mvebu.c
13963 F:      drivers/pwm/
13964 F:      drivers/video/backlight/pwm_bl.c
13965 F:      include/linux/pwm.h
13966 F:      include/linux/pwm_backlight.h
13967 K:      pwm_(config|apply_state|ops)
13968
13969 PXA GPIO DRIVER
13970 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13971 L:      linux-gpio@vger.kernel.org
13972 S:      Maintained
13973 F:      drivers/gpio/gpio-pxa.c
13974
13975 PXA MMCI DRIVER
13976 S:      Orphan
13977
13978 PXA RTC DRIVER
13979 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13980 L:      linux-rtc@vger.kernel.org
13981 S:      Maintained
13982
13983 PXA2xx/PXA3xx SUPPORT
13984 M:      Daniel Mack <daniel@zonque.org>
13985 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
13986 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13987 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13988 S:      Maintained
13989 T:      git git://github.com/hzhuang1/linux.git
13990 T:      git git://github.com/rjarzmik/linux.git
13991 F:      arch/arm/boot/dts/pxa*
13992 F:      arch/arm/mach-pxa/
13993 F:      drivers/dma/pxa*
13994 F:      drivers/pcmcia/pxa2xx*
13995 F:      drivers/pinctrl/pxa/
13996 F:      drivers/spi/spi-pxa2xx*
13997 F:      drivers/usb/gadget/udc/pxa2*
13998 F:      include/sound/pxa2xx-lib.h
13999 F:      sound/arm/pxa*
14000 F:      sound/soc/pxa/
14001
14002 QAT DRIVER
14003 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
14004 L:      qat-linux@intel.com
14005 S:      Supported
14006 F:      drivers/crypto/qat/
14007
14008 QCOM AUDIO (ASoC) DRIVERS
14009 M:      Patrick Lai <plai@codeaurora.org>
14010 M:      Banajit Goswami <bgoswami@codeaurora.org>
14011 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14012 S:      Supported
14013 F:      sound/soc/qcom/
14014
14015 QCOM IPA DRIVER
14016 M:      Alex Elder <elder@kernel.org>
14017 L:      netdev@vger.kernel.org
14018 S:      Supported
14019 F:      drivers/net/ipa/
14020
14021 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
14022 M:      Gabriel Somlo <somlo@cmu.edu>
14023 M:      "Michael S. Tsirkin" <mst@redhat.com>
14024 L:      qemu-devel@nongnu.org
14025 S:      Maintained
14026 F:      drivers/firmware/qemu_fw_cfg.c
14027 F:      include/uapi/linux/qemu_fw_cfg.h
14028
14029 QIB DRIVER
14030 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
14031 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
14032 L:      linux-rdma@vger.kernel.org
14033 S:      Supported
14034 F:      drivers/infiniband/hw/qib/
14035
14036 QLOGIC QL41xxx FCOE DRIVER
14037 M:      QLogic-Storage-Upstream@cavium.com
14038 L:      linux-scsi@vger.kernel.org
14039 S:      Supported
14040 F:      drivers/scsi/qedf/
14041
14042 QLOGIC QL41xxx ISCSI DRIVER
14043 M:      QLogic-Storage-Upstream@cavium.com
14044 L:      linux-scsi@vger.kernel.org
14045 S:      Supported
14046 F:      drivers/scsi/qedi/
14047
14048 QLOGIC QL4xxx ETHERNET DRIVER
14049 M:      Ariel Elior <aelior@marvell.com>
14050 M:      GR-everest-linux-l2@marvell.com
14051 L:      netdev@vger.kernel.org
14052 S:      Supported
14053 F:      drivers/net/ethernet/qlogic/qed/
14054 F:      drivers/net/ethernet/qlogic/qede/
14055 F:      include/linux/qed/
14056
14057 QLOGIC QL4xxx RDMA DRIVER
14058 M:      Michal Kalderon <mkalderon@marvell.com>
14059 M:      Ariel Elior <aelior@marvell.com>
14060 L:      linux-rdma@vger.kernel.org
14061 S:      Supported
14062 F:      drivers/infiniband/hw/qedr/
14063 F:      include/uapi/rdma/qedr-abi.h
14064
14065 QLOGIC QLA1280 SCSI DRIVER
14066 M:      Michael Reed <mdr@sgi.com>
14067 L:      linux-scsi@vger.kernel.org
14068 S:      Maintained
14069 F:      drivers/scsi/qla1280.[ch]
14070
14071 QLOGIC QLA2XXX FC-SCSI DRIVER
14072 M:      Nilesh Javali <njavali@marvell.com>
14073 M:      GR-QLogic-Storage-Upstream@marvell.com
14074 L:      linux-scsi@vger.kernel.org
14075 S:      Supported
14076 F:      Documentation/scsi/LICENSE.qla2xxx
14077 F:      drivers/scsi/qla2xxx/
14078
14079 QLOGIC QLA3XXX NETWORK DRIVER
14080 M:      GR-Linux-NIC-Dev@marvell.com
14081 L:      netdev@vger.kernel.org
14082 S:      Supported
14083 F:      Documentation/networking/device_drivers/qlogic/LICENSE.qla3xxx
14084 F:      drivers/net/ethernet/qlogic/qla3xxx.*
14085
14086 QLOGIC QLA4XXX iSCSI DRIVER
14087 M:      QLogic-Storage-Upstream@qlogic.com
14088 L:      linux-scsi@vger.kernel.org
14089 S:      Supported
14090 F:      Documentation/scsi/LICENSE.qla4xxx
14091 F:      drivers/scsi/qla4xxx/
14092
14093 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
14094 M:      Shahed Shaikh <shshaikh@marvell.com>
14095 M:      Manish Chopra <manishc@marvell.com>
14096 M:      GR-Linux-NIC-Dev@marvell.com
14097 L:      netdev@vger.kernel.org
14098 S:      Supported
14099 F:      drivers/net/ethernet/qlogic/qlcnic/
14100
14101 QLOGIC QLGE 10Gb ETHERNET DRIVER
14102 M:      Manish Chopra <manishc@marvell.com>
14103 M:      GR-Linux-NIC-Dev@marvell.com
14104 L:      netdev@vger.kernel.org
14105 S:      Supported
14106 F:      drivers/staging/qlge/
14107
14108 QM1D1B0004 MEDIA DRIVER
14109 M:      Akihiro Tsukada <tskd08@gmail.com>
14110 L:      linux-media@vger.kernel.org
14111 S:      Odd Fixes
14112 F:      drivers/media/tuners/qm1d1b0004*
14113
14114 QM1D1C0042 MEDIA DRIVER
14115 M:      Akihiro Tsukada <tskd08@gmail.com>
14116 L:      linux-media@vger.kernel.org
14117 S:      Odd Fixes
14118 F:      drivers/media/tuners/qm1d1c0042*
14119
14120 QNX4 FILESYSTEM
14121 M:      Anders Larsen <al@alarsen.net>
14122 S:      Maintained
14123 W:      http://www.alarsen.net/linux/qnx4fs/
14124 F:      fs/qnx4/
14125 F:      include/uapi/linux/qnx4_fs.h
14126 F:      include/uapi/linux/qnxtypes.h
14127
14128 QORIQ DPAA2 FSL-MC BUS DRIVER
14129 M:      Stuart Yoder <stuyoder@gmail.com>
14130 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
14131 L:      linux-kernel@vger.kernel.org
14132 S:      Maintained
14133 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
14134 F:      Documentation/networking/device_drivers/freescale/dpaa2/overview.rst
14135 F:      drivers/bus/fsl-mc/
14136
14137 QT1010 MEDIA DRIVER
14138 M:      Antti Palosaari <crope@iki.fi>
14139 L:      linux-media@vger.kernel.org
14140 S:      Maintained
14141 W:      https://linuxtv.org
14142 W:      http://palosaari.fi/linux/
14143 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14144 T:      git git://linuxtv.org/anttip/media_tree.git
14145 F:      drivers/media/tuners/qt1010*
14146
14147 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
14148 M:      Kalle Valo <kvalo@codeaurora.org>
14149 L:      ath10k@lists.infradead.org
14150 S:      Supported
14151 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
14152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14153 F:      drivers/net/wireless/ath/ath10k/
14154
14155 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
14156 M:      Kalle Valo <kvalo@codeaurora.org>
14157 L:      ath11k@lists.infradead.org
14158 S:      Supported
14159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14160 F:      drivers/net/wireless/ath/ath11k/
14161
14162 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
14163 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
14164 L:      linux-wireless@vger.kernel.org
14165 S:      Supported
14166 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
14167 F:      drivers/net/wireless/ath/ath9k/
14168
14169 QUALCOMM CAMERA SUBSYSTEM DRIVER
14170 M:      Todor Tomov <todor.too@gmail.com>
14171 L:      linux-media@vger.kernel.org
14172 S:      Maintained
14173 F:      Documentation/admin-guide/media/qcom_camss.rst
14174 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
14175 F:      drivers/media/platform/qcom/camss/
14176
14177 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
14178 M:      Niklas Cassel <nks@flawful.org>
14179 L:      linux-pm@vger.kernel.org
14180 L:      linux-arm-msm@vger.kernel.org
14181 S:      Maintained
14182 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
14183 F:      drivers/power/avs/qcom-cpr.c
14184
14185 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
14186 M:      Ilia Lin <ilia.lin@kernel.org>
14187 L:      linux-pm@vger.kernel.org
14188 S:      Maintained
14189 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
14190 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
14191
14192 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
14193 M:      Timur Tabi <timur@kernel.org>
14194 L:      netdev@vger.kernel.org
14195 S:      Maintained
14196 F:      drivers/net/ethernet/qualcomm/emac/
14197
14198 QUALCOMM ETHQOS ETHERNET DRIVER
14199 M:      Vinod Koul <vkoul@kernel.org>
14200 L:      netdev@vger.kernel.org
14201 S:      Maintained
14202 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
14203 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
14204
14205 QUALCOMM GENERIC INTERFACE I2C DRIVER
14206 M:      Alok Chauhan <alokc@codeaurora.org>
14207 L:      linux-i2c@vger.kernel.org
14208 L:      linux-arm-msm@vger.kernel.org
14209 S:      Supported
14210 F:      drivers/i2c/busses/i2c-qcom-geni.c
14211
14212 QUALCOMM HEXAGON ARCHITECTURE
14213 M:      Brian Cain <bcain@codeaurora.org>
14214 L:      linux-hexagon@vger.kernel.org
14215 S:      Supported
14216 F:      arch/hexagon/
14217
14218 QUALCOMM HIDMA DRIVER
14219 M:      Sinan Kaya <okaya@kernel.org>
14220 L:      linux-arm-kernel@lists.infradead.org
14221 L:      linux-arm-msm@vger.kernel.org
14222 L:      dmaengine@vger.kernel.org
14223 S:      Supported
14224 F:      drivers/dma/qcom/hidma*
14225
14226 QUALCOMM I2C CCI DRIVER
14227 M:      Loic Poulain <loic.poulain@linaro.org>
14228 M:      Robert Foss <robert.foss@linaro.org>
14229 L:      linux-i2c@vger.kernel.org
14230 L:      linux-arm-msm@vger.kernel.org
14231 S:      Maintained
14232 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
14233 F:      drivers/i2c/busses/i2c-qcom-cci.c
14234
14235 QUALCOMM IOMMU
14236 M:      Rob Clark <robdclark@gmail.com>
14237 L:      iommu@lists.linux-foundation.org
14238 L:      linux-arm-msm@vger.kernel.org
14239 S:      Maintained
14240 F:      drivers/iommu/qcom_iommu.c
14241
14242 QUALCOMM IPCC MAILBOX DRIVER
14243 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
14244 L:      linux-arm-msm@vger.kernel.org
14245 S:      Supported
14246 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
14247 F:      drivers/mailbox/qcom-ipcc.c
14248 F:      include/dt-bindings/mailbox/qcom-ipcc.h
14249
14250 QUALCOMM RMNET DRIVER
14251 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
14252 M:      Sean Tranchetti <stranche@codeaurora.org>
14253 L:      netdev@vger.kernel.org
14254 S:      Maintained
14255 F:      Documentation/networking/device_drivers/qualcomm/rmnet.rst
14256 F:      drivers/net/ethernet/qualcomm/rmnet/
14257 F:      include/linux/if_rmnet.h
14258
14259 QUALCOMM TSENS THERMAL DRIVER
14260 M:      Amit Kucheria <amit.kucheria@linaro.org>
14261 L:      linux-pm@vger.kernel.org
14262 L:      linux-arm-msm@vger.kernel.org
14263 S:      Maintained
14264 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14265 F:      drivers/thermal/qcom/
14266
14267 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14268 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
14269 L:      linux-media@vger.kernel.org
14270 L:      linux-arm-msm@vger.kernel.org
14271 S:      Maintained
14272 T:      git git://linuxtv.org/media_tree.git
14273 F:      Documentation/devicetree/bindings/media/*venus*
14274 F:      drivers/media/platform/qcom/venus/
14275
14276 QUALCOMM WCN36XX WIRELESS DRIVER
14277 M:      Kalle Valo <kvalo@codeaurora.org>
14278 L:      wcn36xx@lists.infradead.org
14279 S:      Supported
14280 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
14281 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
14282 F:      drivers/net/wireless/ath/wcn36xx/
14283
14284 QUANTENNA QTNFMAC WIRELESS DRIVER
14285 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
14286 R:      Sergey Matyukevich <geomatsi@gmail.com>
14287 L:      linux-wireless@vger.kernel.org
14288 S:      Maintained
14289 F:      drivers/net/wireless/quantenna
14290
14291 RADEON and AMDGPU DRM DRIVERS
14292 M:      Alex Deucher <alexander.deucher@amd.com>
14293 M:      Christian König <christian.koenig@amd.com>
14294 L:      amd-gfx@lists.freedesktop.org
14295 S:      Supported
14296 T:      git git://people.freedesktop.org/~agd5f/linux
14297 F:      drivers/gpu/drm/amd/
14298 F:      drivers/gpu/drm/radeon/
14299 F:      include/uapi/drm/amdgpu_drm.h
14300 F:      include/uapi/drm/radeon_drm.h
14301
14302 RADEON FRAMEBUFFER DISPLAY DRIVER
14303 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
14304 L:      linux-fbdev@vger.kernel.org
14305 S:      Maintained
14306 F:      drivers/video/fbdev/aty/radeon*
14307 F:      include/uapi/linux/radeonfb.h
14308
14309 RADIOSHARK RADIO DRIVER
14310 M:      Hans Verkuil <hverkuil@xs4all.nl>
14311 L:      linux-media@vger.kernel.org
14312 S:      Maintained
14313 T:      git git://linuxtv.org/media_tree.git
14314 F:      drivers/media/radio/radio-shark.c
14315
14316 RADIOSHARK2 RADIO DRIVER
14317 M:      Hans Verkuil <hverkuil@xs4all.nl>
14318 L:      linux-media@vger.kernel.org
14319 S:      Maintained
14320 T:      git git://linuxtv.org/media_tree.git
14321 F:      drivers/media/radio/radio-shark2.c
14322 F:      drivers/media/radio/radio-tea5777.c
14323
14324 RADOS BLOCK DEVICE (RBD)
14325 M:      Ilya Dryomov <idryomov@gmail.com>
14326 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
14327 L:      ceph-devel@vger.kernel.org
14328 S:      Supported
14329 W:      http://ceph.com/
14330 T:      git git://github.com/ceph/ceph-client.git
14331 F:      Documentation/ABI/testing/sysfs-bus-rbd
14332 F:      drivers/block/rbd.c
14333 F:      drivers/block/rbd_types.h
14334
14335 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14336 M:      Paul Mackerras <paulus@samba.org>
14337 L:      linux-fbdev@vger.kernel.org
14338 S:      Maintained
14339 F:      drivers/video/fbdev/aty/aty128fb.c
14340
14341 RAINSHADOW-CEC DRIVER
14342 M:      Hans Verkuil <hverkuil@xs4all.nl>
14343 L:      linux-media@vger.kernel.org
14344 S:      Maintained
14345 T:      git git://linuxtv.org/media_tree.git
14346 F:      drivers/media/cec/usb/rainshadow/
14347
14348 RALINK MIPS ARCHITECTURE
14349 M:      John Crispin <john@phrozen.org>
14350 L:      linux-mips@vger.kernel.org
14351 S:      Maintained
14352 F:      arch/mips/ralink
14353
14354 RALINK RT2X00 WIRELESS LAN DRIVER
14355 M:      Stanislaw Gruszka <stf_xl@wp.pl>
14356 M:      Helmut Schaa <helmut.schaa@googlemail.com>
14357 L:      linux-wireless@vger.kernel.org
14358 S:      Maintained
14359 F:      drivers/net/wireless/ralink/rt2x00/
14360
14361 RAMDISK RAM BLOCK DEVICE DRIVER
14362 M:      Jens Axboe <axboe@kernel.dk>
14363 S:      Maintained
14364 F:      Documentation/admin-guide/blockdev/ramdisk.rst
14365 F:      drivers/block/brd.c
14366
14367 RANCHU VIRTUAL BOARD FOR MIPS
14368 M:      Miodrag Dinic <miodrag.dinic@mips.com>
14369 L:      linux-mips@vger.kernel.org
14370 S:      Supported
14371 F:      arch/mips/configs/generic/board-ranchu.config
14372 F:      arch/mips/generic/board-ranchu.c
14373
14374 RANDOM NUMBER DRIVER
14375 M:      "Theodore Ts'o" <tytso@mit.edu>
14376 S:      Maintained
14377 F:      drivers/char/random.c
14378
14379 RAPIDIO SUBSYSTEM
14380 M:      Matt Porter <mporter@kernel.crashing.org>
14381 M:      Alexandre Bounine <alex.bou9@gmail.com>
14382 S:      Maintained
14383 F:      drivers/rapidio/
14384
14385 RAS INFRASTRUCTURE
14386 M:      Tony Luck <tony.luck@intel.com>
14387 M:      Borislav Petkov <bp@alien8.de>
14388 L:      linux-edac@vger.kernel.org
14389 S:      Maintained
14390 F:      Documentation/admin-guide/ras.rst
14391 F:      drivers/ras/
14392 F:      include/linux/ras.h
14393 F:      include/ras/ras_event.h
14394
14395 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14396 L:      linux-wireless@vger.kernel.org
14397 S:      Orphan
14398 F:      drivers/net/wireless/ray*
14399
14400 RCMM REMOTE CONTROLS DECODER
14401 M:      Patrick Lerda <patrick9876@free.fr>
14402 S:      Maintained
14403 F:      drivers/media/rc/ir-rcmm-decoder.c
14404
14405 RCUTORTURE TEST FRAMEWORK
14406 M:      "Paul E. McKenney" <paulmck@kernel.org>
14407 M:      Josh Triplett <josh@joshtriplett.org>
14408 R:      Steven Rostedt <rostedt@goodmis.org>
14409 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14410 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14411 L:      rcu@vger.kernel.org
14412 S:      Supported
14413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14414 F:      tools/testing/selftests/rcutorture
14415
14416 RDC R-321X SoC
14417 M:      Florian Fainelli <florian@openwrt.org>
14418 S:      Maintained
14419
14420 RDC R6040 FAST ETHERNET DRIVER
14421 M:      Florian Fainelli <f.fainelli@gmail.com>
14422 L:      netdev@vger.kernel.org
14423 S:      Maintained
14424 F:      drivers/net/ethernet/rdc/r6040.c
14425
14426 RDMAVT - RDMA verbs software
14427 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
14428 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
14429 L:      linux-rdma@vger.kernel.org
14430 S:      Supported
14431 F:      drivers/infiniband/sw/rdmavt
14432
14433 RDS - RELIABLE DATAGRAM SOCKETS
14434 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
14435 L:      netdev@vger.kernel.org
14436 L:      linux-rdma@vger.kernel.org
14437 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
14438 S:      Supported
14439 W:      https://oss.oracle.com/projects/rds/
14440 F:      Documentation/networking/rds.rst
14441 F:      net/rds/
14442
14443 RDT - RESOURCE ALLOCATION
14444 M:      Fenghua Yu <fenghua.yu@intel.com>
14445 M:      Reinette Chatre <reinette.chatre@intel.com>
14446 L:      linux-kernel@vger.kernel.org
14447 S:      Supported
14448 F:      Documentation/x86/resctrl*
14449 F:      arch/x86/include/asm/resctrl.h
14450 F:      arch/x86/kernel/cpu/resctrl/
14451 F:      tools/testing/selftests/resctrl/
14452
14453 READ-COPY UPDATE (RCU)
14454 M:      "Paul E. McKenney" <paulmck@kernel.org>
14455 M:      Josh Triplett <josh@joshtriplett.org>
14456 R:      Steven Rostedt <rostedt@goodmis.org>
14457 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14458 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14459 R:      Joel Fernandes <joel@joelfernandes.org>
14460 L:      rcu@vger.kernel.org
14461 S:      Supported
14462 W:      http://www.rdrop.com/users/paulmck/RCU/
14463 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14464 F:      Documentation/RCU/
14465 F:      include/linux/rcu*
14466 F:      kernel/rcu/
14467 X:      Documentation/RCU/torture.txt
14468 X:      include/linux/srcu*.h
14469 X:      kernel/rcu/srcu*.c
14470
14471 REAL TIME CLOCK (RTC) SUBSYSTEM
14472 M:      Alessandro Zummo <a.zummo@towertech.it>
14473 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14474 L:      linux-rtc@vger.kernel.org
14475 S:      Maintained
14476 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
14477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
14478 F:      Documentation/admin-guide/rtc.rst
14479 F:      Documentation/devicetree/bindings/rtc/
14480 F:      drivers/rtc/
14481 F:      include/linux/platform_data/rtc-*
14482 F:      include/linux/rtc.h
14483 F:      include/linux/rtc/
14484 F:      include/uapi/linux/rtc.h
14485 F:      tools/testing/selftests/rtc/
14486
14487 REALTEK AUDIO CODECS
14488 M:      Oder Chiou <oder_chiou@realtek.com>
14489 S:      Maintained
14490 F:      include/sound/rt*.h
14491 F:      sound/soc/codecs/rt*
14492
14493 REALTEK RTL83xx SMI DSA ROUTER CHIPS
14494 M:      Linus Walleij <linus.walleij@linaro.org>
14495 S:      Maintained
14496 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
14497 F:      drivers/net/dsa/realtek-smi*
14498 F:      drivers/net/dsa/rtl83*
14499
14500 REALTEK WIRELESS DRIVER (rtlwifi family)
14501 M:      Ping-Ke Shih <pkshih@realtek.com>
14502 L:      linux-wireless@vger.kernel.org
14503 S:      Maintained
14504 W:      https://wireless.wiki.kernel.org/
14505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14506 F:      drivers/net/wireless/realtek/rtlwifi/
14507
14508 REALTEK WIRELESS DRIVER (rtw88)
14509 M:      Yan-Hsuan Chuang <yhchuang@realtek.com>
14510 L:      linux-wireless@vger.kernel.org
14511 S:      Maintained
14512 F:      drivers/net/wireless/realtek/rtw88/
14513
14514 REDPINE WIRELESS DRIVER
14515 M:      Amitkumar Karwar <amitkarwar@gmail.com>
14516 M:      Siva Rebbagondla <siva8118@gmail.com>
14517 L:      linux-wireless@vger.kernel.org
14518 S:      Maintained
14519 F:      drivers/net/wireless/rsi/
14520
14521 REGISTER MAP ABSTRACTION
14522 M:      Mark Brown <broonie@kernel.org>
14523 L:      linux-kernel@vger.kernel.org
14524 S:      Supported
14525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
14526 F:      Documentation/devicetree/bindings/regmap/
14527 F:      drivers/base/regmap/
14528 F:      include/linux/regmap.h
14529
14530 REISERFS FILE SYSTEM
14531 L:      reiserfs-devel@vger.kernel.org
14532 S:      Supported
14533 F:      fs/reiserfs/
14534
14535 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
14536 M:      Ohad Ben-Cohen <ohad@wizery.com>
14537 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14538 L:      linux-remoteproc@vger.kernel.org
14539 S:      Maintained
14540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
14541 F:      Documentation/ABI/testing/sysfs-class-remoteproc
14542 F:      Documentation/devicetree/bindings/remoteproc/
14543 F:      Documentation/remoteproc.txt
14544 F:      drivers/remoteproc/
14545 F:      include/linux/remoteproc.h
14546 F:      include/linux/remoteproc/
14547
14548 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
14549 M:      Ohad Ben-Cohen <ohad@wizery.com>
14550 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14551 L:      linux-remoteproc@vger.kernel.org
14552 S:      Maintained
14553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
14554 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
14555 F:      Documentation/rpmsg.txt
14556 F:      drivers/rpmsg/
14557 F:      include/linux/rpmsg.h
14558 F:      include/linux/rpmsg/
14559 F:      include/uapi/linux/rpmsg.h
14560 F:      samples/rpmsg/
14561
14562 RENESAS CLOCK DRIVERS
14563 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14564 L:      linux-renesas-soc@vger.kernel.org
14565 S:      Supported
14566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
14567 F:      Documentation/devicetree/bindings/clock/renesas,*
14568 F:      drivers/clk/renesas/
14569
14570 RENESAS EMEV2 I2C DRIVER
14571 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
14572 S:      Supported
14573 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
14574 F:      drivers/i2c/busses/i2c-emev2.c
14575
14576 RENESAS ETHERNET DRIVERS
14577 R:      Sergei Shtylyov <sergei.shtylyov@gmail.com>
14578 L:      netdev@vger.kernel.org
14579 L:      linux-renesas-soc@vger.kernel.org
14580 F:      Documentation/devicetree/bindings/net/renesas,*.txt
14581 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
14582 F:      drivers/net/ethernet/renesas/
14583 F:      include/linux/sh_eth.h
14584
14585 RENESAS R-CAR GYROADC DRIVER
14586 M:      Marek Vasut <marek.vasut@gmail.com>
14587 L:      linux-iio@vger.kernel.org
14588 S:      Supported
14589 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
14590 F:      drivers/iio/adc/rcar-gyroadc.c
14591
14592 RENESAS R-CAR I2C DRIVERS
14593 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
14594 S:      Supported
14595 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
14596 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
14597 F:      drivers/i2c/busses/i2c-rcar.c
14598 F:      drivers/i2c/busses/i2c-sh_mobile.c
14599
14600 RENESAS R-CAR THERMAL DRIVERS
14601 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
14602 L:      linux-renesas-soc@vger.kernel.org
14603 S:      Supported
14604 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.txt
14605 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.txt
14606 F:      drivers/thermal/rcar_gen3_thermal.c
14607 F:      drivers/thermal/rcar_thermal.c
14608
14609 RENESAS RIIC DRIVER
14610 M:      Chris Brandt <chris.brandt@renesas.com>
14611 S:      Supported
14612 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
14613 F:      drivers/i2c/busses/i2c-riic.c
14614
14615 RENESAS USB PHY DRIVER
14616 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14617 L:      linux-renesas-soc@vger.kernel.org
14618 S:      Maintained
14619 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
14620
14621 RESET CONTROLLER FRAMEWORK
14622 M:      Philipp Zabel <p.zabel@pengutronix.de>
14623 S:      Maintained
14624 T:      git git://git.pengutronix.de/git/pza/linux
14625 F:      Documentation/devicetree/bindings/reset/
14626 F:      drivers/reset/
14627 F:      include/dt-bindings/reset/
14628 F:      include/linux/reset-controller.h
14629 F:      include/linux/reset.h
14630 F:      include/linux/reset/
14631 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
14632
14633 RESTARTABLE SEQUENCES SUPPORT
14634 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14635 M:      Peter Zijlstra <peterz@infradead.org>
14636 M:      "Paul E. McKenney" <paulmck@kernel.org>
14637 M:      Boqun Feng <boqun.feng@gmail.com>
14638 L:      linux-kernel@vger.kernel.org
14639 S:      Supported
14640 F:      include/trace/events/rseq.h
14641 F:      include/uapi/linux/rseq.h
14642 F:      kernel/rseq.c
14643 F:      tools/testing/selftests/rseq/
14644
14645 RFKILL
14646 M:      Johannes Berg <johannes@sipsolutions.net>
14647 L:      linux-wireless@vger.kernel.org
14648 S:      Maintained
14649 W:      https://wireless.wiki.kernel.org/
14650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
14651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
14652 F:      Documentation/ABI/stable/sysfs-class-rfkill
14653 F:      Documentation/driver-api/rfkill.rst
14654 F:      include/linux/rfkill.h
14655 F:      include/uapi/linux/rfkill.h
14656 F:      net/rfkill/
14657
14658 RHASHTABLE
14659 M:      Thomas Graf <tgraf@suug.ch>
14660 M:      Herbert Xu <herbert@gondor.apana.org.au>
14661 L:      netdev@vger.kernel.org
14662 S:      Maintained
14663 F:      include/linux/rhashtable-types.h
14664 F:      include/linux/rhashtable.h
14665 F:      lib/rhashtable.c
14666 F:      lib/test_rhashtable.c
14667
14668 RICOH R5C592 MEMORYSTICK DRIVER
14669 M:      Maxim Levitsky <maximlevitsky@gmail.com>
14670 S:      Maintained
14671 F:      drivers/memstick/host/r592.*
14672
14673 RICOH SMARTMEDIA/XD DRIVER
14674 M:      Maxim Levitsky <maximlevitsky@gmail.com>
14675 S:      Maintained
14676 F:      drivers/mtd/nand/raw/r852.c
14677 F:      drivers/mtd/nand/raw/r852.h
14678
14679 RISC-V ARCHITECTURE
14680 M:      Paul Walmsley <paul.walmsley@sifive.com>
14681 M:      Palmer Dabbelt <palmer@dabbelt.com>
14682 M:      Albert Ou <aou@eecs.berkeley.edu>
14683 L:      linux-riscv@lists.infradead.org
14684 S:      Supported
14685 P:      Documentation/riscv/patch-acceptance.rst
14686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
14687 F:      arch/riscv/
14688 N:      riscv
14689 K:      riscv
14690
14691 RNBD BLOCK DRIVERS
14692 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
14693 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14694 L:      linux-block@vger.kernel.org
14695 S:      Maintained
14696 F:      drivers/block/rnbd/
14697
14698 ROCCAT DRIVERS
14699 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
14700 S:      Maintained
14701 W:      http://sourceforge.net/projects/roccat/
14702 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
14703 F:      drivers/hid/hid-roccat*
14704 F:      include/linux/hid-roccat*
14705
14706 ROCKCHIP ISP V1 DRIVER
14707 M:      Helen Koike <helen.koike@collabora.com>
14708 L:      linux-media@vger.kernel.org
14709 S:      Maintained
14710 F:      drivers/staging/media/rkisp1/
14711
14712 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
14713 M:      Jacob Chen <jacob-chen@iotwrt.com>
14714 M:      Ezequiel Garcia <ezequiel@collabora.com>
14715 L:      linux-media@vger.kernel.org
14716 L:      linux-rockchip@lists.infradead.org
14717 S:      Maintained
14718 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
14719 F:      drivers/media/platform/rockchip/rga/
14720
14721 ROCKCHIP VIDEO DECODER DRIVER
14722 M:      Ezequiel Garcia <ezequiel@collabora.com>
14723 L:      linux-media@vger.kernel.org
14724 L:      linux-rockchip@lists.infradead.org
14725 S:      Maintained
14726 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
14727 F:      drivers/staging/media/rkvdec/
14728
14729 ROCKER DRIVER
14730 M:      Jiri Pirko <jiri@resnulli.us>
14731 L:      netdev@vger.kernel.org
14732 S:      Supported
14733 F:      drivers/net/ethernet/rocker/
14734
14735 ROCKETPORT DRIVER
14736 S:      Maintained
14737 W:      http://www.comtrol.com
14738 F:      Documentation/driver-api/serial/rocket.rst
14739 F:      drivers/tty/rocket*
14740
14741 ROCKETPORT EXPRESS/INFINITY DRIVER
14742 M:      Kevin Cernekee <cernekee@gmail.com>
14743 L:      linux-serial@vger.kernel.org
14744 S:      Odd Fixes
14745 F:      drivers/tty/serial/rp2.*
14746
14747 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
14748 M:      Tomasz Duszynski <tduszyns@gmail.com>
14749 S:      Maintained
14750 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
14751 F:      drivers/iio/light/bh1750.c
14752
14753 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
14754 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14755 L:      linux-kernel@vger.kernel.org
14756 L:      linux-renesas-soc@vger.kernel.org
14757 S:      Supported
14758 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
14759 F:      drivers/gpio/gpio-bd9571mwv.c
14760 F:      drivers/mfd/bd9571mwv.c
14761 F:      drivers/regulator/bd9571mwv-regulator.c
14762 F:      include/linux/mfd/bd9571mwv.h
14763
14764 ROSE NETWORK LAYER
14765 M:      Ralf Baechle <ralf@linux-mips.org>
14766 L:      linux-hams@vger.kernel.org
14767 S:      Maintained
14768 W:      http://www.linux-ax25.org/
14769 F:      include/net/rose.h
14770 F:      include/uapi/linux/rose.h
14771 F:      net/rose/
14772
14773 ROTATION DRIVER FOR ALLWINNER A83T
14774 M:      Jernej Skrabec <jernej.skrabec@siol.net>
14775 L:      linux-media@vger.kernel.org
14776 S:      Maintained
14777 T:      git git://linuxtv.org/media_tree.git
14778 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
14779 F:      drivers/media/platform/sunxi/sun8i-rotate/
14780
14781 RTL2830 MEDIA DRIVER
14782 M:      Antti Palosaari <crope@iki.fi>
14783 L:      linux-media@vger.kernel.org
14784 S:      Maintained
14785 W:      https://linuxtv.org
14786 W:      http://palosaari.fi/linux/
14787 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14788 T:      git git://linuxtv.org/anttip/media_tree.git
14789 F:      drivers/media/dvb-frontends/rtl2830*
14790
14791 RTL2832 MEDIA DRIVER
14792 M:      Antti Palosaari <crope@iki.fi>
14793 L:      linux-media@vger.kernel.org
14794 S:      Maintained
14795 W:      https://linuxtv.org
14796 W:      http://palosaari.fi/linux/
14797 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14798 T:      git git://linuxtv.org/anttip/media_tree.git
14799 F:      drivers/media/dvb-frontends/rtl2832*
14800
14801 RTL2832_SDR MEDIA DRIVER
14802 M:      Antti Palosaari <crope@iki.fi>
14803 L:      linux-media@vger.kernel.org
14804 S:      Maintained
14805 W:      https://linuxtv.org
14806 W:      http://palosaari.fi/linux/
14807 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14808 T:      git git://linuxtv.org/anttip/media_tree.git
14809 F:      drivers/media/dvb-frontends/rtl2832_sdr*
14810
14811 RTL8180 WIRELESS DRIVER
14812 L:      linux-wireless@vger.kernel.org
14813 S:      Orphan
14814 W:      https://wireless.wiki.kernel.org/
14815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14816 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
14817
14818 RTL8187 WIRELESS DRIVER
14819 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
14820 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
14821 M:      Larry Finger <Larry.Finger@lwfinger.net>
14822 L:      linux-wireless@vger.kernel.org
14823 S:      Maintained
14824 W:      https://wireless.wiki.kernel.org/
14825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14826 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
14827
14828 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
14829 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
14830 L:      linux-wireless@vger.kernel.org
14831 S:      Maintained
14832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
14833 F:      drivers/net/wireless/realtek/rtl8xxxu/
14834
14835 RTRS TRANSPORT DRIVERS
14836 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
14837 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14838 L:      linux-rdma@vger.kernel.org
14839 S:      Maintained
14840 F:      drivers/infiniband/ulp/rtrs/
14841
14842 RXRPC SOCKETS (AF_RXRPC)
14843 M:      David Howells <dhowells@redhat.com>
14844 L:      linux-afs@lists.infradead.org
14845 S:      Supported
14846 W:      https://www.infradead.org/~dhowells/kafs/
14847 F:      Documentation/networking/rxrpc.rst
14848 F:      include/keys/rxrpc-type.h
14849 F:      include/net/af_rxrpc.h
14850 F:      include/trace/events/rxrpc.h
14851 F:      include/uapi/linux/rxrpc.h
14852 F:      net/rxrpc/
14853
14854 S3 SAVAGE FRAMEBUFFER DRIVER
14855 M:      Antonino Daplas <adaplas@gmail.com>
14856 L:      linux-fbdev@vger.kernel.org
14857 S:      Maintained
14858 F:      drivers/video/fbdev/savage/
14859
14860 S390
14861 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
14862 M:      Vasily Gorbik <gor@linux.ibm.com>
14863 M:      Christian Borntraeger <borntraeger@de.ibm.com>
14864 L:      linux-s390@vger.kernel.org
14865 S:      Supported
14866 W:      http://www.ibm.com/developerworks/linux/linux390/
14867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
14868 F:      Documentation/driver-api/s390-drivers.rst
14869 F:      Documentation/s390/
14870 F:      arch/s390/
14871 F:      drivers/s390/
14872
14873 S390 COMMON I/O LAYER
14874 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
14875 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
14876 L:      linux-s390@vger.kernel.org
14877 S:      Supported
14878 W:      http://www.ibm.com/developerworks/linux/linux390/
14879 F:      drivers/s390/cio/
14880
14881 S390 DASD DRIVER
14882 M:      Stefan Haberland <sth@linux.ibm.com>
14883 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
14884 L:      linux-s390@vger.kernel.org
14885 S:      Supported
14886 W:      http://www.ibm.com/developerworks/linux/linux390/
14887 F:      block/partitions/ibm.c
14888 F:      drivers/s390/block/dasd*
14889 F:      include/linux/dasd_mod.h
14890
14891 S390 IOMMU (PCI)
14892 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
14893 L:      linux-s390@vger.kernel.org
14894 S:      Supported
14895 W:      http://www.ibm.com/developerworks/linux/linux390/
14896 F:      drivers/iommu/s390-iommu.c
14897
14898 S390 IUCV NETWORK LAYER
14899 M:      Julian Wiedmann <jwi@linux.ibm.com>
14900 M:      Karsten Graul <kgraul@linux.ibm.com>
14901 M:      Ursula Braun <ubraun@linux.ibm.com>
14902 L:      linux-s390@vger.kernel.org
14903 S:      Supported
14904 W:      http://www.ibm.com/developerworks/linux/linux390/
14905 F:      drivers/s390/net/*iucv*
14906 F:      include/net/iucv/
14907 F:      net/iucv/
14908
14909 S390 NETWORK DRIVERS
14910 M:      Julian Wiedmann <jwi@linux.ibm.com>
14911 M:      Karsten Graul <kgraul@linux.ibm.com>
14912 M:      Ursula Braun <ubraun@linux.ibm.com>
14913 L:      linux-s390@vger.kernel.org
14914 S:      Supported
14915 W:      http://www.ibm.com/developerworks/linux/linux390/
14916 F:      drivers/s390/net/
14917
14918 S390 PCI SUBSYSTEM
14919 M:      Niklas Schnelle <schnelle@linux.ibm.com>
14920 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
14921 L:      linux-s390@vger.kernel.org
14922 S:      Supported
14923 W:      http://www.ibm.com/developerworks/linux/linux390/
14924 F:      arch/s390/pci/
14925 F:      drivers/pci/hotplug/s390_pci_hpc.c
14926 F:      Documentation/s390/pci.rst
14927
14928 S390 VFIO AP DRIVER
14929 M:      Tony Krowiak <akrowiak@linux.ibm.com>
14930 M:      Pierre Morel <pmorel@linux.ibm.com>
14931 M:      Halil Pasic <pasic@linux.ibm.com>
14932 L:      linux-s390@vger.kernel.org
14933 S:      Supported
14934 W:      http://www.ibm.com/developerworks/linux/linux390/
14935 F:      Documentation/s390/vfio-ap.rst
14936 F:      drivers/s390/crypto/vfio_ap_drv.c
14937 F:      drivers/s390/crypto/vfio_ap_ops.c
14938 F:      drivers/s390/crypto/vfio_ap_private.h
14939
14940 S390 VFIO-CCW DRIVER
14941 M:      Cornelia Huck <cohuck@redhat.com>
14942 M:      Eric Farman <farman@linux.ibm.com>
14943 R:      Halil Pasic <pasic@linux.ibm.com>
14944 L:      linux-s390@vger.kernel.org
14945 L:      kvm@vger.kernel.org
14946 S:      Supported
14947 F:      Documentation/s390/vfio-ccw.rst
14948 F:      drivers/s390/cio/vfio_ccw*
14949 F:      include/uapi/linux/vfio_ccw.h
14950
14951 S390 ZCRYPT DRIVER
14952 M:      Harald Freudenberger <freude@linux.ibm.com>
14953 L:      linux-s390@vger.kernel.org
14954 S:      Supported
14955 W:      http://www.ibm.com/developerworks/linux/linux390/
14956 F:      drivers/s390/crypto/
14957
14958 S390 ZFCP DRIVER
14959 M:      Steffen Maier <maier@linux.ibm.com>
14960 M:      Benjamin Block <bblock@linux.ibm.com>
14961 L:      linux-s390@vger.kernel.org
14962 S:      Supported
14963 W:      http://www.ibm.com/developerworks/linux/linux390/
14964 F:      drivers/s390/scsi/zfcp_*
14965
14966 S3C24XX SD/MMC Driver
14967 M:      Ben Dooks <ben-linux@fluff.org>
14968 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14969 S:      Supported
14970 F:      drivers/mmc/host/s3cmci.*
14971
14972 SAA6588 RDS RECEIVER DRIVER
14973 M:      Hans Verkuil <hverkuil@xs4all.nl>
14974 L:      linux-media@vger.kernel.org
14975 S:      Odd Fixes
14976 W:      https://linuxtv.org
14977 T:      git git://linuxtv.org/media_tree.git
14978 F:      drivers/media/i2c/saa6588*
14979
14980 SAA7134 VIDEO4LINUX DRIVER
14981 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
14982 L:      linux-media@vger.kernel.org
14983 S:      Odd fixes
14984 W:      https://linuxtv.org
14985 T:      git git://linuxtv.org/media_tree.git
14986 F:      Documentation/driver-api/media/drivers/saa7134*
14987 F:      drivers/media/pci/saa7134/
14988
14989 SAA7146 VIDEO4LINUX-2 DRIVER
14990 M:      Hans Verkuil <hverkuil@xs4all.nl>
14991 L:      linux-media@vger.kernel.org
14992 S:      Maintained
14993 T:      git git://linuxtv.org/media_tree.git
14994 F:      drivers/media/common/saa7146/
14995 F:      drivers/media/pci/saa7146/
14996 F:      include/media/drv-intf/saa7146*
14997
14998 SAFESETID SECURITY MODULE
14999 M:      Micah Morton <mortonm@chromium.org>
15000 S:      Supported
15001 F:      Documentation/admin-guide/LSM/SafeSetID.rst
15002 F:      security/safesetid/
15003
15004 SAMSUNG AUDIO (ASoC) DRIVERS
15005 M:      Krzysztof Kozlowski <krzk@kernel.org>
15006 M:      Sangbeom Kim <sbkim73@samsung.com>
15007 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15008 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15009 S:      Supported
15010 F:      Documentation/devicetree/bindings/sound/samsung*
15011 F:      sound/soc/samsung/
15012
15013 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
15014 M:      Krzysztof Kozlowski <krzk@kernel.org>
15015 L:      linux-crypto@vger.kernel.org
15016 L:      linux-samsung-soc@vger.kernel.org
15017 S:      Maintained
15018 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
15019 F:      drivers/crypto/exynos-rng.c
15020
15021 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
15022 M:      Łukasz Stelmach <l.stelmach@samsung.com>
15023 L:      linux-samsung-soc@vger.kernel.org
15024 S:      Maintained
15025 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
15026 F:      drivers/char/hw_random/exynos-trng.c
15027
15028 SAMSUNG FRAMEBUFFER DRIVER
15029 M:      Jingoo Han <jingoohan1@gmail.com>
15030 L:      linux-fbdev@vger.kernel.org
15031 S:      Maintained
15032 F:      drivers/video/fbdev/s3c-fb.c
15033
15034 SAMSUNG LAPTOP DRIVER
15035 M:      Corentin Chary <corentin.chary@gmail.com>
15036 L:      platform-driver-x86@vger.kernel.org
15037 S:      Maintained
15038 F:      drivers/platform/x86/samsung-laptop.c
15039
15040 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
15041 M:      Sangbeom Kim <sbkim73@samsung.com>
15042 M:      Krzysztof Kozlowski <krzk@kernel.org>
15043 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15044 L:      linux-kernel@vger.kernel.org
15045 L:      linux-samsung-soc@vger.kernel.org
15046 S:      Supported
15047 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
15048 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
15049 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
15050 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
15051 F:      drivers/clk/clk-s2mps11.c
15052 F:      drivers/mfd/sec*.c
15053 F:      drivers/regulator/s2m*.c
15054 F:      drivers/regulator/s5m*.c
15055 F:      drivers/rtc/rtc-s5m.c
15056 F:      include/linux/mfd/samsung/
15057
15058 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
15059 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
15060 L:      linux-media@vger.kernel.org
15061 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
15062 S:      Maintained
15063 F:      drivers/media/platform/s3c-camif/
15064 F:      include/media/drv-intf/s3c_camif.h
15065
15066 SAMSUNG S3FWRN5 NFC DRIVER
15067 M:      Robert Baldyga <r.baldyga@samsung.com>
15068 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
15069 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
15070 S:      Supported
15071 F:      drivers/nfc/s3fwrn5
15072
15073 SAMSUNG S5C73M3 CAMERA DRIVER
15074 M:      Kyungmin Park <kyungmin.park@samsung.com>
15075 M:      Andrzej Hajda <a.hajda@samsung.com>
15076 L:      linux-media@vger.kernel.org
15077 S:      Supported
15078 F:      drivers/media/i2c/s5c73m3/*
15079
15080 SAMSUNG S5K5BAF CAMERA DRIVER
15081 M:      Kyungmin Park <kyungmin.park@samsung.com>
15082 M:      Andrzej Hajda <a.hajda@samsung.com>
15083 L:      linux-media@vger.kernel.org
15084 S:      Supported
15085 F:      drivers/media/i2c/s5k5baf.c
15086
15087 SAMSUNG S5P Security SubSystem (SSS) DRIVER
15088 M:      Krzysztof Kozlowski <krzk@kernel.org>
15089 M:      Vladimir Zapolskiy <vz@mleia.com>
15090 M:      Kamil Konieczny <k.konieczny@samsung.com>
15091 L:      linux-crypto@vger.kernel.org
15092 L:      linux-samsung-soc@vger.kernel.org
15093 S:      Maintained
15094 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
15095 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
15096 F:      drivers/crypto/s5p-sss.c
15097
15098 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
15099 M:      Kyungmin Park <kyungmin.park@samsung.com>
15100 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15101 L:      linux-media@vger.kernel.org
15102 S:      Supported
15103 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
15104 F:      drivers/media/platform/exynos4-is/
15105
15106 SAMSUNG SOC CLOCK DRIVERS
15107 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15108 M:      Tomasz Figa <tomasz.figa@gmail.com>
15109 M:      Chanwoo Choi <cw00.choi@samsung.com>
15110 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
15111 S:      Supported
15112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
15113 F:      Documentation/devicetree/bindings/clock/exynos*.txt
15114 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
15115 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
15116 F:      drivers/clk/samsung/
15117 F:      include/dt-bindings/clock/exynos*.h
15118
15119 SAMSUNG SPI DRIVERS
15120 M:      Kukjin Kim <kgene@kernel.org>
15121 M:      Krzysztof Kozlowski <krzk@kernel.org>
15122 M:      Andi Shyti <andi@etezian.org>
15123 L:      linux-spi@vger.kernel.org
15124 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
15125 S:      Maintained
15126 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
15127 F:      drivers/spi/spi-s3c*
15128 F:      include/linux/platform_data/spi-s3c64xx.h
15129
15130 SAMSUNG SXGBE DRIVERS
15131 M:      Byungho An <bh74.an@samsung.com>
15132 L:      netdev@vger.kernel.org
15133 S:      Supported
15134 F:      drivers/net/ethernet/samsung/sxgbe/
15135
15136 SAMSUNG THERMAL DRIVER
15137 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15138 L:      linux-pm@vger.kernel.org
15139 L:      linux-samsung-soc@vger.kernel.org
15140 S:      Supported
15141 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
15142 F:      drivers/thermal/samsung/
15143
15144 SAMSUNG USB2 PHY DRIVER
15145 M:      Kamil Debski <kamil@wypas.org>
15146 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15147 L:      linux-kernel@vger.kernel.org
15148 S:      Supported
15149 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
15150 F:      Documentation/driver-api/phy/samsung-usb2.rst
15151 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
15152 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
15153 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
15154 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
15155 F:      drivers/phy/samsung/phy-samsung-usb2.c
15156 F:      drivers/phy/samsung/phy-samsung-usb2.h
15157
15158 SC1200 WDT DRIVER
15159 M:      Zwane Mwaikambo <zwanem@gmail.com>
15160 S:      Maintained
15161 F:      drivers/watchdog/sc1200wdt.c
15162
15163 SCHEDULER
15164 M:      Ingo Molnar <mingo@redhat.com>
15165 M:      Peter Zijlstra <peterz@infradead.org>
15166 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
15167 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
15168 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
15169 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
15170 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
15171 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
15172 L:      linux-kernel@vger.kernel.org
15173 S:      Maintained
15174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
15175 F:      include/linux/preempt.h
15176 F:      include/linux/sched.h
15177 F:      include/linux/wait.h
15178 F:      include/uapi/linux/sched.h
15179 F:      kernel/sched/
15180
15181 SCR24X CHIP CARD INTERFACE DRIVER
15182 M:      Lubomir Rintel <lkundrak@v3.sk>
15183 S:      Supported
15184 F:      drivers/char/pcmcia/scr24x_cs.c
15185
15186 SCSI CDROM DRIVER
15187 M:      Jens Axboe <axboe@kernel.dk>
15188 L:      linux-scsi@vger.kernel.org
15189 S:      Maintained
15190 W:      http://www.kernel.dk
15191 F:      drivers/scsi/sr*
15192
15193 SCSI RDMA PROTOCOL (SRP) INITIATOR
15194 M:      Bart Van Assche <bvanassche@acm.org>
15195 L:      linux-rdma@vger.kernel.org
15196 S:      Supported
15197 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15198 F:      drivers/infiniband/ulp/srp/
15199 F:      include/scsi/srp.h
15200
15201 SCSI RDMA PROTOCOL (SRP) TARGET
15202 M:      Bart Van Assche <bvanassche@acm.org>
15203 L:      linux-rdma@vger.kernel.org
15204 L:      target-devel@vger.kernel.org
15205 S:      Supported
15206 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15207 F:      drivers/infiniband/ulp/srpt/
15208
15209 SCSI SG DRIVER
15210 M:      Doug Gilbert <dgilbert@interlog.com>
15211 L:      linux-scsi@vger.kernel.org
15212 S:      Maintained
15213 W:      http://sg.danny.cz/sg
15214 F:      Documentation/scsi/scsi-generic.rst
15215 F:      drivers/scsi/sg.c
15216 F:      include/scsi/sg.h
15217
15218 SCSI SUBSYSTEM
15219 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
15220 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15221 L:      linux-scsi@vger.kernel.org
15222 S:      Maintained
15223 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
15224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
15225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15226 F:      Documentation/devicetree/bindings/scsi/
15227 F:      drivers/scsi/
15228 F:      include/scsi/
15229
15230 SCSI TAPE DRIVER
15231 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
15232 L:      linux-scsi@vger.kernel.org
15233 S:      Maintained
15234 F:      Documentation/scsi/st.rst
15235 F:      drivers/scsi/st.*
15236 F:      drivers/scsi/st_*.h
15237
15238 SCSI TARGET SUBSYSTEM
15239 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15240 L:      linux-scsi@vger.kernel.org
15241 L:      target-devel@vger.kernel.org
15242 S:      Supported
15243 W:      http://www.linux-iscsi.org
15244 Q:      https://patchwork.kernel.org/project/target-devel/list/
15245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15246 F:      Documentation/target/
15247 F:      drivers/target/
15248 F:      include/target/
15249
15250 SCTP PROTOCOL
15251 M:      Vlad Yasevich <vyasevich@gmail.com>
15252 M:      Neil Horman <nhorman@tuxdriver.com>
15253 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
15254 L:      linux-sctp@vger.kernel.org
15255 S:      Maintained
15256 W:      http://lksctp.sourceforge.net
15257 F:      Documentation/networking/sctp.rst
15258 F:      include/linux/sctp.h
15259 F:      include/net/sctp/
15260 F:      include/uapi/linux/sctp.h
15261 F:      net/sctp/
15262
15263 SCx200 CPU SUPPORT
15264 M:      Jim Cromie <jim.cromie@gmail.com>
15265 S:      Odd Fixes
15266 F:      Documentation/i2c/busses/scx200_acb.rst
15267 F:      arch/x86/platform/scx200/
15268 F:      drivers/i2c/busses/scx200*
15269 F:      drivers/mtd/maps/scx200_docflash.c
15270 F:      drivers/watchdog/scx200_wdt.c
15271 F:      include/linux/scx200.h
15272
15273 SCx200 GPIO DRIVER
15274 M:      Jim Cromie <jim.cromie@gmail.com>
15275 S:      Maintained
15276 F:      drivers/char/scx200_gpio.c
15277 F:      include/linux/scx200_gpio.h
15278
15279 SCx200 HRT CLOCKSOURCE DRIVER
15280 M:      Jim Cromie <jim.cromie@gmail.com>
15281 S:      Maintained
15282 F:      drivers/clocksource/scx200_hrt.c
15283
15284 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15285 M:      Sascha Sommer <saschasommer@freenet.de>
15286 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
15287 S:      Maintained
15288 F:      drivers/mmc/host/sdricoh_cs.c
15289
15290 SECO BOARDS CEC DRIVER
15291 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
15292 S:      Maintained
15293 F:      drivers/media/platform/seco-cec/seco-cec.c
15294 F:      drivers/media/platform/seco-cec/seco-cec.h
15295
15296 SECURE COMPUTING
15297 M:      Kees Cook <keescook@chromium.org>
15298 R:      Andy Lutomirski <luto@amacapital.net>
15299 R:      Will Drewry <wad@chromium.org>
15300 S:      Supported
15301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15302 F:      Documentation/userspace-api/seccomp_filter.rst
15303 F:      include/linux/seccomp.h
15304 F:      include/uapi/linux/seccomp.h
15305 F:      kernel/seccomp.c
15306 F:      tools/testing/selftests/kselftest_harness.h
15307 F:      tools/testing/selftests/seccomp/*
15308 K:      \bsecure_computing
15309 K:      \bTIF_SECCOMP\b
15310
15311 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15312 M:      Al Cooper <alcooperx@gmail.com>
15313 L:      linux-mmc@vger.kernel.org
15314 L:      bcm-kernel-feedback-list@broadcom.com
15315 S:      Maintained
15316 F:      drivers/mmc/host/sdhci-brcmstb*
15317
15318 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15319 M:      Adrian Hunter <adrian.hunter@intel.com>
15320 L:      linux-mmc@vger.kernel.org
15321 S:      Maintained
15322 F:      drivers/mmc/host/sdhci*
15323 F:      include/linux/mmc/sdhci*
15324
15325 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15326 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
15327 L:      linux-mmc@vger.kernel.org
15328 S:      Supported
15329 F:      drivers/mmc/host/sdhci-of-at91.c
15330
15331 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15332 M:      Ben Dooks <ben-linux@fluff.org>
15333 M:      Jaehoon Chung <jh80.chung@samsung.com>
15334 L:      linux-mmc@vger.kernel.org
15335 S:      Maintained
15336 F:      drivers/mmc/host/sdhci-s3c*
15337
15338 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15339 M:      Viresh Kumar <vireshk@kernel.org>
15340 L:      linux-mmc@vger.kernel.org
15341 S:      Maintained
15342 F:      drivers/mmc/host/sdhci-spear.c
15343
15344 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15345 M:      Kishon Vijay Abraham I <kishon@ti.com>
15346 L:      linux-mmc@vger.kernel.org
15347 S:      Maintained
15348 F:      drivers/mmc/host/sdhci-omap.c
15349
15350 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15351 M:      Jonathan Derrick <jonathan.derrick@intel.com>
15352 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
15353 L:      linux-block@vger.kernel.org
15354 S:      Supported
15355 F:      block/opal_proto.h
15356 F:      block/sed*
15357 F:      include/linux/sed*
15358 F:      include/uapi/linux/sed*
15359
15360 SECURITY CONTACT
15361 M:      Security Officers <security@kernel.org>
15362 S:      Supported
15363
15364 SECURITY SUBSYSTEM
15365 M:      James Morris <jmorris@namei.org>
15366 M:      "Serge E. Hallyn" <serge@hallyn.com>
15367 L:      linux-security-module@vger.kernel.org (suggested Cc:)
15368 S:      Supported
15369 W:      http://kernsec.org/
15370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15371 F:      security/
15372 X:      security/selinux/
15373
15374 SELINUX SECURITY MODULE
15375 M:      Paul Moore <paul@paul-moore.com>
15376 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
15377 M:      Eric Paris <eparis@parisplace.org>
15378 L:      selinux@vger.kernel.org
15379 S:      Supported
15380 W:      https://selinuxproject.org
15381 W:      https://github.com/SELinuxProject
15382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
15383 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
15384 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
15385 F:      Documentation/admin-guide/LSM/SELinux.rst
15386 F:      include/uapi/linux/selinux_netlink.h
15387 F:      scripts/selinux/
15388 F:      security/selinux/
15389
15390 SENSABLE PHANTOM
15391 M:      Jiri Slaby <jirislaby@gmail.com>
15392 S:      Maintained
15393 F:      drivers/misc/phantom.c
15394 F:      include/uapi/linux/phantom.h
15395
15396 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
15397 M:      Tomasz Duszynski <tduszyns@gmail.com>
15398 S:      Maintained
15399 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
15400 F:      drivers/iio/chemical/sps30.c
15401
15402 SERIAL DEVICE BUS
15403 M:      Rob Herring <robh@kernel.org>
15404 L:      linux-serial@vger.kernel.org
15405 S:      Maintained
15406 F:      Documentation/devicetree/bindings/serial/serial.yaml
15407 F:      drivers/tty/serdev/
15408 F:      include/linux/serdev.h
15409
15410 SERIAL DRIVERS
15411 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15412 L:      linux-serial@vger.kernel.org
15413 S:      Maintained
15414 F:      Documentation/devicetree/bindings/serial/
15415 F:      drivers/tty/serial/
15416
15417 SERIAL IR RECEIVER
15418 M:      Sean Young <sean@mess.org>
15419 L:      linux-media@vger.kernel.org
15420 S:      Maintained
15421 F:      drivers/media/rc/serial_ir.c
15422
15423 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15424 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15425 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15426 S:      Maintained
15427 F:      Documentation/devicetree/bindings/slimbus/
15428 F:      drivers/slimbus/
15429 F:      include/linux/slimbus.h
15430
15431 SFC NETWORK DRIVER
15432 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
15433 M:      Edward Cree <ecree@solarflare.com>
15434 M:      Martin Habets <mhabets@solarflare.com>
15435 L:      netdev@vger.kernel.org
15436 S:      Supported
15437 F:      drivers/net/ethernet/sfc/
15438
15439 SFF/SFP/SFP+ MODULE SUPPORT
15440 M:      Russell King <linux@armlinux.org.uk>
15441 L:      netdev@vger.kernel.org
15442 S:      Maintained
15443 F:      drivers/net/phy/phylink.c
15444 F:      drivers/net/phy/sfp*
15445 F:      include/linux/phylink.h
15446 F:      include/linux/sfp.h
15447 K:      phylink
15448
15449 SGI GRU DRIVER
15450 M:      Dimitri Sivanich <sivanich@sgi.com>
15451 S:      Maintained
15452 F:      drivers/misc/sgi-gru/
15453
15454 SGI XP/XPC/XPNET DRIVER
15455 M:      Cliff Whickman <cpw@sgi.com>
15456 M:      Robin Holt <robinmholt@gmail.com>
15457 S:      Maintained
15458 F:      drivers/misc/sgi-xp/
15459
15460 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
15461 M:      Ursula Braun <ubraun@linux.ibm.com>
15462 M:      Karsten Graul <kgraul@linux.ibm.com>
15463 L:      linux-s390@vger.kernel.org
15464 S:      Supported
15465 W:      http://www.ibm.com/developerworks/linux/linux390/
15466 F:      net/smc/
15467
15468 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
15469 M:      Linus Walleij <linus.walleij@linaro.org>
15470 L:      linux-iio@vger.kernel.org
15471 S:      Maintained
15472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
15473 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
15474 F:      drivers/iio/light/gp2ap002.c
15475
15476 SHARP RJ54N1CB0C SENSOR DRIVER
15477 M:      Jacopo Mondi <jacopo@jmondi.org>
15478 L:      linux-media@vger.kernel.org
15479 S:      Odd fixes
15480 T:      git git://linuxtv.org/media_tree.git
15481 F:      drivers/media/i2c/rj54n1cb0c.c
15482 F:      include/media/i2c/rj54n1cb0c.h
15483
15484 SH_VOU V4L2 OUTPUT DRIVER
15485 L:      linux-media@vger.kernel.org
15486 S:      Orphan
15487 F:      drivers/media/platform/sh_vou.c
15488 F:      include/media/drv-intf/sh_vou.h
15489
15490 SI2157 MEDIA DRIVER
15491 M:      Antti Palosaari <crope@iki.fi>
15492 L:      linux-media@vger.kernel.org
15493 S:      Maintained
15494 W:      https://linuxtv.org
15495 W:      http://palosaari.fi/linux/
15496 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15497 T:      git git://linuxtv.org/anttip/media_tree.git
15498 F:      drivers/media/tuners/si2157*
15499
15500 SI2165 MEDIA DRIVER
15501 M:      Matthias Schwarzott <zzam@gentoo.org>
15502 L:      linux-media@vger.kernel.org
15503 S:      Maintained
15504 W:      https://linuxtv.org
15505 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15506 F:      drivers/media/dvb-frontends/si2165*
15507
15508 SI2168 MEDIA DRIVER
15509 M:      Antti Palosaari <crope@iki.fi>
15510 L:      linux-media@vger.kernel.org
15511 S:      Maintained
15512 W:      https://linuxtv.org
15513 W:      http://palosaari.fi/linux/
15514 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15515 T:      git git://linuxtv.org/anttip/media_tree.git
15516 F:      drivers/media/dvb-frontends/si2168*
15517
15518 SI470X FM RADIO RECEIVER I2C DRIVER
15519 M:      Hans Verkuil <hverkuil@xs4all.nl>
15520 L:      linux-media@vger.kernel.org
15521 S:      Odd Fixes
15522 W:      https://linuxtv.org
15523 T:      git git://linuxtv.org/media_tree.git
15524 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
15525
15526 SI470X FM RADIO RECEIVER USB DRIVER
15527 M:      Hans Verkuil <hverkuil@xs4all.nl>
15528 L:      linux-media@vger.kernel.org
15529 S:      Maintained
15530 W:      https://linuxtv.org
15531 T:      git git://linuxtv.org/media_tree.git
15532 F:      drivers/media/radio/si470x/radio-si470x-common.c
15533 F:      drivers/media/radio/si470x/radio-si470x-usb.c
15534 F:      drivers/media/radio/si470x/radio-si470x.h
15535
15536 SI4713 FM RADIO TRANSMITTER I2C DRIVER
15537 M:      Eduardo Valentin <edubezval@gmail.com>
15538 L:      linux-media@vger.kernel.org
15539 S:      Odd Fixes
15540 W:      https://linuxtv.org
15541 T:      git git://linuxtv.org/media_tree.git
15542 F:      drivers/media/radio/si4713/si4713.?
15543
15544 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
15545 M:      Eduardo Valentin <edubezval@gmail.com>
15546 L:      linux-media@vger.kernel.org
15547 S:      Odd Fixes
15548 W:      https://linuxtv.org
15549 T:      git git://linuxtv.org/media_tree.git
15550 F:      drivers/media/radio/si4713/radio-platform-si4713.c
15551
15552 SI4713 FM RADIO TRANSMITTER USB DRIVER
15553 M:      Hans Verkuil <hverkuil@xs4all.nl>
15554 L:      linux-media@vger.kernel.org
15555 S:      Maintained
15556 W:      https://linuxtv.org
15557 T:      git git://linuxtv.org/media_tree.git
15558 F:      drivers/media/radio/si4713/radio-usb-si4713.c
15559
15560 SIANO DVB DRIVER
15561 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15562 L:      linux-media@vger.kernel.org
15563 S:      Odd fixes
15564 W:      https://linuxtv.org
15565 T:      git git://linuxtv.org/media_tree.git
15566 F:      drivers/media/common/siano/
15567 F:      drivers/media/mmc/siano/
15568 F:      drivers/media/usb/siano/
15569 F:      drivers/media/usb/siano/
15570
15571 SIFIVE DRIVERS
15572 M:      Palmer Dabbelt <palmer@dabbelt.com>
15573 M:      Paul Walmsley <paul.walmsley@sifive.com>
15574 L:      linux-riscv@lists.infradead.org
15575 S:      Supported
15576 T:      git git://github.com/sifive/riscv-linux.git
15577 N:      sifive
15578 K:      [^@]sifive
15579
15580 SIFIVE FU540 SYSTEM-ON-CHIP
15581 M:      Paul Walmsley <paul.walmsley@sifive.com>
15582 M:      Palmer Dabbelt <palmer@dabbelt.com>
15583 L:      linux-riscv@lists.infradead.org
15584 S:      Supported
15585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
15586 N:      fu540
15587 K:      fu540
15588
15589 SIFIVE PDMA DRIVER
15590 M:      Green Wan <green.wan@sifive.com>
15591 S:      Maintained
15592 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
15593 F:      drivers/dma/sf-pdma/
15594
15595 SILEAD TOUCHSCREEN DRIVER
15596 M:      Hans de Goede <hdegoede@redhat.com>
15597 L:      linux-input@vger.kernel.org
15598 L:      platform-driver-x86@vger.kernel.org
15599 S:      Maintained
15600 F:      drivers/input/touchscreen/silead.c
15601 F:      drivers/platform/x86/touchscreen_dmi.c
15602
15603 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
15604 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
15605 S:      Supported
15606 F:      drivers/staging/wfx/
15607
15608 SILICON MOTION SM712 FRAME BUFFER DRIVER
15609 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15610 M:      Teddy Wang <teddy.wang@siliconmotion.com>
15611 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15612 L:      linux-fbdev@vger.kernel.org
15613 S:      Maintained
15614 F:      Documentation/fb/sm712fb.rst
15615 F:      drivers/video/fbdev/sm712*
15616
15617 SIMPLE FIRMWARE INTERFACE (SFI)
15618 S:      Obsolete
15619 W:      http://simplefirmware.org/
15620 F:      arch/x86/platform/sfi/
15621 F:      drivers/sfi/
15622 F:      include/linux/sfi*.h
15623
15624 SIMPLEFB FB DRIVER
15625 M:      Hans de Goede <hdegoede@redhat.com>
15626 L:      linux-fbdev@vger.kernel.org
15627 S:      Maintained
15628 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
15629 F:      drivers/video/fbdev/simplefb.c
15630 F:      include/linux/platform_data/simplefb.h
15631
15632 SIMTEC EB110ATX (Chalice CATS)
15633 M:      Vincent Sanders <vince@simtec.co.uk>
15634 M:      Simtec Linux Team <linux@simtec.co.uk>
15635 S:      Supported
15636 W:      http://www.simtec.co.uk/products/EB110ATX/
15637
15638 SIMTEC EB2410ITX (BAST)
15639 M:      Vincent Sanders <vince@simtec.co.uk>
15640 M:      Simtec Linux Team <linux@simtec.co.uk>
15641 S:      Supported
15642 W:      http://www.simtec.co.uk/products/EB2410ITX/
15643 F:      arch/arm/mach-s3c24xx/bast-ide.c
15644 F:      arch/arm/mach-s3c24xx/bast-irq.c
15645 F:      arch/arm/mach-s3c24xx/mach-bast.c
15646
15647 SIOX
15648 M:      Thorsten Scherer <t.scherer@eckelmann.de>
15649 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15650 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
15651 S:      Supported
15652 F:      drivers/gpio/gpio-siox.c
15653 F:      drivers/siox/*
15654 F:      include/trace/events/siox.h
15655
15656 SIPHASH PRF ROUTINES
15657 M:      Jason A. Donenfeld <Jason@zx2c4.com>
15658 S:      Maintained
15659 F:      include/linux/siphash.h
15660 F:      lib/siphash.c
15661 F:      lib/test_siphash.c
15662
15663 SIS 190 ETHERNET DRIVER
15664 M:      Francois Romieu <romieu@fr.zoreil.com>
15665 L:      netdev@vger.kernel.org
15666 S:      Maintained
15667 F:      drivers/net/ethernet/sis/sis190.c
15668
15669 SIS 900/7016 FAST ETHERNET DRIVER
15670 M:      Daniele Venzano <venza@brownhat.org>
15671 L:      netdev@vger.kernel.org
15672 S:      Maintained
15673 W:      http://www.brownhat.org/sis900.html
15674 F:      drivers/net/ethernet/sis/sis900.*
15675
15676 SIS FRAMEBUFFER DRIVER
15677 M:      Thomas Winischhofer <thomas@winischhofer.net>
15678 S:      Maintained
15679 W:      http://www.winischhofer.net/linuxsisvga.shtml
15680 F:      Documentation/fb/sisfb.rst
15681 F:      drivers/video/fbdev/sis/
15682 F:      include/video/sisfb.h
15683
15684 SIS USB2VGA DRIVER
15685 M:      Thomas Winischhofer <thomas@winischhofer.net>
15686 S:      Maintained
15687 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
15688 F:      drivers/usb/misc/sisusbvga/
15689
15690 SLAB ALLOCATOR
15691 M:      Christoph Lameter <cl@linux.com>
15692 M:      Pekka Enberg <penberg@kernel.org>
15693 M:      David Rientjes <rientjes@google.com>
15694 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
15695 M:      Andrew Morton <akpm@linux-foundation.org>
15696 L:      linux-mm@kvack.org
15697 S:      Maintained
15698 F:      include/linux/sl?b*.h
15699 F:      mm/sl?b*
15700
15701 SLEEPABLE READ-COPY UPDATE (SRCU)
15702 M:      Lai Jiangshan <jiangshanlai@gmail.com>
15703 M:      "Paul E. McKenney" <paulmck@kernel.org>
15704 M:      Josh Triplett <josh@joshtriplett.org>
15705 R:      Steven Rostedt <rostedt@goodmis.org>
15706 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15707 L:      rcu@vger.kernel.org
15708 S:      Supported
15709 W:      http://www.rdrop.com/users/paulmck/RCU/
15710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15711 F:      include/linux/srcu*.h
15712 F:      kernel/rcu/srcu*.c
15713
15714 SMACK SECURITY MODULE
15715 M:      Casey Schaufler <casey@schaufler-ca.com>
15716 L:      linux-security-module@vger.kernel.org
15717 S:      Maintained
15718 W:      http://schaufler-ca.com
15719 T:      git git://github.com/cschaufler/smack-next
15720 F:      Documentation/admin-guide/LSM/Smack.rst
15721 F:      security/smack/
15722
15723 SMC91x ETHERNET DRIVER
15724 M:      Nicolas Pitre <nico@fluxnic.net>
15725 S:      Odd Fixes
15726 F:      drivers/net/ethernet/smsc/smc91x.*
15727
15728 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
15729 M:      Mark Rutland <mark.rutland@arm.com>
15730 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15731 M:      Sudeep Holla <sudeep.holla@arm.com>
15732 L:      linux-arm-kernel@lists.infradead.org
15733 S:      Maintained
15734 F:      drivers/firmware/smccc/
15735 F:      include/linux/arm-smccc.h
15736
15737 SMIA AND SMIA++ IMAGE SENSOR DRIVER
15738 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15739 L:      linux-media@vger.kernel.org
15740 S:      Maintained
15741 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
15742 F:      drivers/media/i2c/smiapp-pll.c
15743 F:      drivers/media/i2c/smiapp-pll.h
15744 F:      drivers/media/i2c/smiapp/
15745 F:      include/uapi/linux/smiapp.h
15746
15747 SMM665 HARDWARE MONITOR DRIVER
15748 M:      Guenter Roeck <linux@roeck-us.net>
15749 L:      linux-hwmon@vger.kernel.org
15750 S:      Maintained
15751 F:      Documentation/hwmon/smm665.rst
15752 F:      drivers/hwmon/smm665.c
15753
15754 SMSC EMC2103 HARDWARE MONITOR DRIVER
15755 M:      Steve Glendinning <steve.glendinning@shawell.net>
15756 L:      linux-hwmon@vger.kernel.org
15757 S:      Maintained
15758 F:      Documentation/hwmon/emc2103.rst
15759 F:      drivers/hwmon/emc2103.c
15760
15761 SMSC SCH5627 HARDWARE MONITOR DRIVER
15762 M:      Hans de Goede <hdegoede@redhat.com>
15763 L:      linux-hwmon@vger.kernel.org
15764 S:      Supported
15765 F:      Documentation/hwmon/sch5627.rst
15766 F:      drivers/hwmon/sch5627.c
15767
15768 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
15769 M:      Steve Glendinning <steve.glendinning@shawell.net>
15770 L:      linux-fbdev@vger.kernel.org
15771 S:      Maintained
15772 F:      drivers/video/fbdev/smscufx.c
15773
15774 SMSC47B397 HARDWARE MONITOR DRIVER
15775 M:      Jean Delvare <jdelvare@suse.com>
15776 L:      linux-hwmon@vger.kernel.org
15777 S:      Maintained
15778 F:      Documentation/hwmon/smsc47b397.rst
15779 F:      drivers/hwmon/smsc47b397.c
15780
15781 SMSC911x ETHERNET DRIVER
15782 M:      Steve Glendinning <steve.glendinning@shawell.net>
15783 L:      netdev@vger.kernel.org
15784 S:      Maintained
15785 F:      drivers/net/ethernet/smsc/smsc911x.*
15786 F:      include/linux/smsc911x.h
15787
15788 SMSC9420 PCI ETHERNET DRIVER
15789 M:      Steve Glendinning <steve.glendinning@shawell.net>
15790 L:      netdev@vger.kernel.org
15791 S:      Maintained
15792 F:      drivers/net/ethernet/smsc/smsc9420.*
15793
15794 SOC-CAMERA V4L2 SUBSYSTEM
15795 L:      linux-media@vger.kernel.org
15796 S:      Orphan
15797 T:      git git://linuxtv.org/media_tree.git
15798 F:      drivers/staging/media/soc_camera/
15799 F:      include/media/soc_camera.h
15800
15801 SOCIONEXT (SNI) AVE NETWORK DRIVER
15802 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15803 L:      netdev@vger.kernel.org
15804 S:      Maintained
15805 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
15806 F:      drivers/net/ethernet/socionext/sni_ave.c
15807
15808 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
15809 M:      Jassi Brar <jaswinder.singh@linaro.org>
15810 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15811 L:      netdev@vger.kernel.org
15812 S:      Maintained
15813 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
15814 F:      drivers/net/ethernet/socionext/netsec.c
15815
15816 SOCIONEXT (SNI) Synquacer SPI DRIVER
15817 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
15818 M:      Jassi Brar <jaswinder.singh@linaro.org>
15819 L:      linux-spi@vger.kernel.org
15820 S:      Maintained
15821 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
15822 F:      drivers/spi/spi-synquacer.c
15823
15824 SOCIONEXT SYNQUACER I2C DRIVER
15825 M:      Ard Biesheuvel <ardb@kernel.org>
15826 L:      linux-i2c@vger.kernel.org
15827 S:      Maintained
15828 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
15829 F:      drivers/i2c/busses/i2c-synquacer.c
15830
15831 SOCIONEXT UNIPHIER SOUND DRIVER
15832 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15833 S:      Orphan
15834 F:      sound/soc/uniphier/
15835
15836 SOEKRIS NET48XX LED SUPPORT
15837 M:      Chris Boot <bootc@bootc.net>
15838 S:      Maintained
15839 F:      drivers/leds/leds-net48xx.c
15840
15841 SOFT-IWARP DRIVER (siw)
15842 M:      Bernard Metzler <bmt@zurich.ibm.com>
15843 L:      linux-rdma@vger.kernel.org
15844 S:      Supported
15845 F:      drivers/infiniband/sw/siw/
15846 F:      include/uapi/rdma/siw-abi.h
15847
15848 SOFT-ROCE DRIVER (rxe)
15849 M:      Zhu Yanjun <yanjunz@mellanox.com>
15850 L:      linux-rdma@vger.kernel.org
15851 S:      Supported
15852 F:      drivers/infiniband/sw/rxe/
15853 F:      include/uapi/rdma/rdma_user_rxe.h
15854
15855 SOFTLOGIC 6x10 MPEG CODEC
15856 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
15857 M:      Anton Sviridenko <anton@corp.bluecherry.net>
15858 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
15859 M:      Andrey Utkin <andrey_utkin@fastmail.com>
15860 M:      Ismael Luceno <ismael@iodev.co.uk>
15861 L:      linux-media@vger.kernel.org
15862 S:      Supported
15863 F:      drivers/media/pci/solo6x10/
15864
15865 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
15866 M:      James Morse <james.morse@arm.com>
15867 L:      linux-arm-kernel@lists.infradead.org
15868 S:      Maintained
15869 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
15870 F:      drivers/firmware/arm_sdei.c
15871 F:      include/linux/arm_sdei.h
15872 F:      include/uapi/linux/arm_sdei.h
15873
15874 SOFTWARE RAID (Multiple Disks) SUPPORT
15875 M:      Song Liu <song@kernel.org>
15876 L:      linux-raid@vger.kernel.org
15877 S:      Supported
15878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
15879 F:      drivers/md/Kconfig
15880 F:      drivers/md/Makefile
15881 F:      drivers/md/md*
15882 F:      drivers/md/raid*
15883 F:      include/linux/raid/
15884 F:      include/uapi/linux/raid/
15885
15886 SOLIDRUN CLEARFOG SUPPORT
15887 M:      Russell King <linux@armlinux.org.uk>
15888 S:      Maintained
15889 F:      arch/arm/boot/dts/armada-388-clearfog*
15890 F:      arch/arm/boot/dts/armada-38x-solidrun-*
15891
15892 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
15893 M:      Russell King <linux@armlinux.org.uk>
15894 S:      Maintained
15895 F:      arch/arm/boot/dts/imx6*-cubox-i*
15896 F:      arch/arm/boot/dts/imx6*-hummingboard*
15897 F:      arch/arm/boot/dts/imx6*-sr-*
15898
15899 SONIC NETWORK DRIVER
15900 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
15901 L:      netdev@vger.kernel.org
15902 S:      Maintained
15903 F:      drivers/net/ethernet/natsemi/sonic.*
15904
15905 SONICS SILICON BACKPLANE DRIVER (SSB)
15906 M:      Michael Buesch <m@bues.ch>
15907 L:      linux-wireless@vger.kernel.org
15908 S:      Maintained
15909 F:      drivers/ssb/
15910 F:      include/linux/ssb/
15911
15912 SONY IMX214 SENSOR DRIVER
15913 M:      Ricardo Ribalda <ribalda@kernel.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/sony,imx214.txt
15918 F:      drivers/media/i2c/imx214.c
15919
15920 SONY IMX219 SENSOR DRIVER
15921 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
15922 L:      linux-media@vger.kernel.org
15923 S:      Maintained
15924 T:      git git://linuxtv.org/media_tree.git
15925 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
15926 F:      drivers/media/i2c/imx219.c
15927
15928 SONY IMX258 SENSOR DRIVER
15929 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15930 L:      linux-media@vger.kernel.org
15931 S:      Maintained
15932 T:      git git://linuxtv.org/media_tree.git
15933 F:      drivers/media/i2c/imx258.c
15934
15935 SONY IMX274 SENSOR DRIVER
15936 M:      Leon Luo <leonl@leopardimaging.com>
15937 L:      linux-media@vger.kernel.org
15938 S:      Maintained
15939 T:      git git://linuxtv.org/media_tree.git
15940 F:      Documentation/devicetree/bindings/media/i2c/imx274.txt
15941 F:      drivers/media/i2c/imx274.c
15942
15943 SONY IMX290 SENSOR DRIVER
15944 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15945 L:      linux-media@vger.kernel.org
15946 S:      Maintained
15947 T:      git git://linuxtv.org/media_tree.git
15948 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
15949 F:      drivers/media/i2c/imx290.c
15950
15951 SONY IMX319 SENSOR DRIVER
15952 M:      Bingbu Cao <bingbu.cao@intel.com>
15953 L:      linux-media@vger.kernel.org
15954 S:      Maintained
15955 T:      git git://linuxtv.org/media_tree.git
15956 F:      drivers/media/i2c/imx319.c
15957
15958 SONY IMX355 SENSOR DRIVER
15959 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15960 L:      linux-media@vger.kernel.org
15961 S:      Maintained
15962 T:      git git://linuxtv.org/media_tree.git
15963 F:      drivers/media/i2c/imx355.c
15964
15965 SONY MEMORYSTICK SUBSYSTEM
15966 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15967 M:      Alex Dubov <oakad@yahoo.com>
15968 M:      Ulf Hansson <ulf.hansson@linaro.org>
15969 L:      linux-mmc@vger.kernel.org
15970 S:      Maintained
15971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
15972 F:      drivers/memstick/
15973 F:      include/linux/memstick.h
15974
15975 SONY VAIO CONTROL DEVICE DRIVER
15976 M:      Mattia Dongili <malattia@linux.it>
15977 L:      platform-driver-x86@vger.kernel.org
15978 S:      Maintained
15979 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
15980 F:      Documentation/admin-guide/laptops/sony-laptop.rst
15981 F:      drivers/char/sonypi.c
15982 F:      drivers/platform/x86/sony-laptop.c
15983 F:      include/linux/sony-laptop.h
15984
15985 SOUND
15986 M:      Jaroslav Kysela <perex@perex.cz>
15987 M:      Takashi Iwai <tiwai@suse.com>
15988 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15989 S:      Maintained
15990 W:      http://www.alsa-project.org/
15991 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
15992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15993 F:      Documentation/sound/
15994 F:      include/sound/
15995 F:      include/uapi/sound/
15996 F:      sound/
15997
15998 SOUND - COMPRESSED AUDIO
15999 M:      Vinod Koul <vkoul@kernel.org>
16000 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16001 S:      Supported
16002 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16003 F:      Documentation/sound/designs/compress-offload.rst
16004 F:      include/sound/compress_driver.h
16005 F:      include/uapi/sound/compress_*
16006 F:      sound/core/compress_offload.c
16007 F:      sound/soc/soc-compress.c
16008
16009 SOUND - DMAENGINE HELPERS
16010 M:      Lars-Peter Clausen <lars@metafoo.de>
16011 S:      Supported
16012 F:      include/sound/dmaengine_pcm.h
16013 F:      sound/core/pcm_dmaengine.c
16014 F:      sound/soc/soc-generic-dmaengine-pcm.c
16015
16016 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
16017 M:      Liam Girdwood <lgirdwood@gmail.com>
16018 M:      Mark Brown <broonie@kernel.org>
16019 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16020 S:      Supported
16021 W:      http://alsa-project.org/main/index.php/ASoC
16022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
16023 F:      Documentation/devicetree/bindings/sound/
16024 F:      Documentation/sound/soc/
16025 F:      include/dt-bindings/sound/
16026 F:      include/sound/soc*
16027 F:      sound/soc/
16028
16029 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
16030 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16031 M:      Liam Girdwood <lgirdwood@gmail.com>
16032 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
16033 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
16034 M:      Daniel Baluta <daniel.baluta@nxp.com>
16035 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
16036 S:      Supported
16037 W:      https://github.com/thesofproject/linux/
16038 F:      sound/soc/sof/
16039
16040 SOUNDWIRE SUBSYSTEM
16041 M:      Vinod Koul <vkoul@kernel.org>
16042 M:      Sanyog Kale <sanyog.r.kale@intel.com>
16043 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16044 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16045 S:      Supported
16046 F:      Documentation/driver-api/soundwire/
16047 F:      drivers/soundwire/
16048 F:      include/linux/soundwire/
16049
16050 SP2 MEDIA DRIVER
16051 M:      Olli Salonen <olli.salonen@iki.fi>
16052 L:      linux-media@vger.kernel.org
16053 S:      Maintained
16054 W:      https://linuxtv.org
16055 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16056 F:      drivers/media/dvb-frontends/sp2*
16057
16058 SPARC + UltraSPARC (sparc/sparc64)
16059 M:      "David S. Miller" <davem@davemloft.net>
16060 L:      sparclinux@vger.kernel.org
16061 S:      Maintained
16062 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
16063 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16065 F:      arch/sparc/
16066 F:      drivers/sbus/
16067
16068 SPARC SERIAL DRIVERS
16069 M:      "David S. Miller" <davem@davemloft.net>
16070 L:      sparclinux@vger.kernel.org
16071 S:      Maintained
16072 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16074 F:      drivers/tty/serial/suncore.c
16075 F:      drivers/tty/serial/sunhv.c
16076 F:      drivers/tty/serial/sunsab.c
16077 F:      drivers/tty/serial/sunsab.h
16078 F:      drivers/tty/serial/sunsu.c
16079 F:      drivers/tty/serial/sunzilog.c
16080 F:      drivers/tty/serial/sunzilog.h
16081 F:      drivers/tty/vcc.c
16082 F:      include/linux/sunserialcore.h
16083
16084 SPARSE CHECKER
16085 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
16086 L:      linux-sparse@vger.kernel.org
16087 S:      Maintained
16088 W:      https://sparse.wiki.kernel.org/
16089 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
16090 F:      include/linux/compiler.h
16091
16092 SPEAR CLOCK FRAMEWORK SUPPORT
16093 M:      Viresh Kumar <vireshk@kernel.org>
16094 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16095 S:      Maintained
16096 W:      http://www.st.com/spear
16097 F:      drivers/clk/spear/
16098
16099 SPEAR PLATFORM SUPPORT
16100 M:      Viresh Kumar <vireshk@kernel.org>
16101 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
16102 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16103 S:      Maintained
16104 W:      http://www.st.com/spear
16105 F:      arch/arm/boot/dts/spear*
16106 F:      arch/arm/mach-spear/
16107
16108 SPI NOR SUBSYSTEM
16109 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
16110 L:      linux-mtd@lists.infradead.org
16111 S:      Maintained
16112 W:      http://www.linux-mtd.infradead.org/
16113 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
16114 C:      irc://irc.oftc.net/mtd
16115 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
16116 F:      drivers/mtd/spi-nor/
16117 F:      include/linux/mtd/spi-nor.h
16118
16119 SPI SUBSYSTEM
16120 M:      Mark Brown <broonie@kernel.org>
16121 L:      linux-spi@vger.kernel.org
16122 S:      Maintained
16123 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
16124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
16125 F:      Documentation/devicetree/bindings/spi/
16126 F:      Documentation/spi/
16127 F:      drivers/spi/
16128 F:      include/linux/spi/
16129 F:      include/uapi/linux/spi/
16130 F:      tools/spi/
16131
16132 SPIDERNET NETWORK DRIVER for CELL
16133 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
16134 L:      netdev@vger.kernel.org
16135 S:      Supported
16136 F:      Documentation/networking/device_drivers/toshiba/spider_net.rst
16137 F:      drivers/net/ethernet/toshiba/spider_net*
16138
16139 SPMI SUBSYSTEM
16140 R:      Stephen Boyd <sboyd@kernel.org>
16141 L:      linux-arm-msm@vger.kernel.org
16142 F:      Documentation/devicetree/bindings/spmi/
16143 F:      drivers/spmi/
16144 F:      include/dt-bindings/spmi/spmi.h
16145 F:      include/linux/spmi.h
16146 F:      include/trace/events/spmi.h
16147
16148 SPU FILE SYSTEM
16149 M:      Jeremy Kerr <jk@ozlabs.org>
16150 L:      linuxppc-dev@lists.ozlabs.org
16151 S:      Supported
16152 W:      http://www.ibm.com/developerworks/power/cell/
16153 F:      Documentation/filesystems/spufs/spufs.rst
16154 F:      arch/powerpc/platforms/cell/spufs/
16155
16156 SQUASHFS FILE SYSTEM
16157 M:      Phillip Lougher <phillip@squashfs.org.uk>
16158 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
16159 S:      Maintained
16160 W:      http://squashfs.org.uk
16161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
16162 F:      Documentation/filesystems/squashfs.rst
16163 F:      fs/squashfs/
16164
16165 SRM (Alpha) environment access
16166 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
16167 S:      Maintained
16168 F:      arch/alpha/kernel/srm_env.c
16169
16170 ST LSM6DSx IMU IIO DRIVER
16171 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
16172 L:      linux-iio@vger.kernel.org
16173 S:      Maintained
16174 W:      http://www.st.com/
16175 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
16176 F:      drivers/iio/imu/st_lsm6dsx/
16177
16178 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
16179 M:      Mickael Guene <mickael.guene@st.com>
16180 L:      linux-media@vger.kernel.org
16181 S:      Maintained
16182 T:      git git://linuxtv.org/media_tree.git
16183 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
16184 F:      drivers/media/i2c/st-mipid02.c
16185
16186 ST STM32 I2C/SMBUS DRIVER
16187 M:      Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
16188 L:      linux-i2c@vger.kernel.org
16189 S:      Maintained
16190 F:      drivers/i2c/busses/i2c-stm32*
16191
16192 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
16193 M:      Song Qiang <songqiang1304521@gmail.com>
16194 L:      linux-iio@vger.kernel.org
16195 S:      Maintained
16196 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
16197 F:      drivers/iio/proximity/vl53l0x-i2c.c
16198
16199 STABLE BRANCH
16200 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16201 M:      Sasha Levin <sashal@kernel.org>
16202 L:      stable@vger.kernel.org
16203 S:      Supported
16204 F:      Documentation/process/stable-kernel-rules.rst
16205
16206 STAGING - ATOMISP DRIVER
16207 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16208 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
16209 L:      linux-media@vger.kernel.org
16210 S:      Maintained
16211 F:      drivers/staging/media/atomisp/
16212
16213 STAGING - COMEDI
16214 M:      Ian Abbott <abbotti@mev.co.uk>
16215 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
16216 S:      Odd Fixes
16217 F:      drivers/staging/comedi/
16218
16219 STAGING - FIELDBUS SUBSYSTEM
16220 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16221 S:      Maintained
16222 F:      drivers/staging/fieldbus/*
16223 F:      drivers/staging/fieldbus/Documentation/
16224
16225 STAGING - HMS ANYBUS-S BUS
16226 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16227 S:      Maintained
16228 F:      drivers/staging/fieldbus/anybuss/
16229
16230 STAGING - INDUSTRIAL IO
16231 M:      Jonathan Cameron <jic23@kernel.org>
16232 L:      linux-iio@vger.kernel.org
16233 S:      Odd Fixes
16234 F:      Documentation/devicetree/bindings/staging/iio/
16235 F:      drivers/staging/iio/
16236
16237 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
16238 M:      Marc Dietrich <marvin24@gmx.de>
16239 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
16240 L:      linux-tegra@vger.kernel.org
16241 S:      Maintained
16242 F:      drivers/staging/nvec/
16243
16244 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
16245 M:      Jens Frederich <jfrederich@gmail.com>
16246 M:      Daniel Drake <dsd@laptop.org>
16247 M:      Jon Nettleton <jon.nettleton@gmail.com>
16248 S:      Maintained
16249 W:      http://wiki.laptop.org/go/DCON
16250 F:      drivers/staging/olpc_dcon/
16251
16252 STAGING - REALTEK RTL8188EU DRIVERS
16253 M:      Larry Finger <Larry.Finger@lwfinger.net>
16254 S:      Odd Fixes
16255 F:      drivers/staging/rtl8188eu/
16256
16257 STAGING - REALTEK RTL8712U DRIVERS
16258 M:      Larry Finger <Larry.Finger@lwfinger.net>
16259 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
16260 S:      Odd Fixes
16261 F:      drivers/staging/rtl8712/
16262
16263 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16264 M:      Michael Hennerich <michael.hennerich@analog.com>
16265 M:      Beniamin Bia <beniamin.bia@analog.com>
16266 L:      linux-fbdev@vger.kernel.org
16267 S:      Supported
16268 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16269 F:      drivers/staging/fbtft/fb_seps525.c
16270
16271 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
16272 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16273 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16274 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16275 L:      linux-fbdev@vger.kernel.org
16276 S:      Maintained
16277 F:      drivers/staging/sm750fb/
16278
16279 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
16280 M:      William Hubbs <w.d.hubbs@gmail.com>
16281 M:      Chris Brannon <chris@the-brannons.com>
16282 M:      Kirk Reiser <kirk@reisers.ca>
16283 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
16284 L:      speakup@linux-speakup.org
16285 S:      Odd Fixes
16286 W:      http://www.linux-speakup.org/
16287 F:      drivers/staging/speakup/
16288
16289 STAGING - VIA VT665X DRIVERS
16290 M:      Forest Bond <forest@alittletooquiet.net>
16291 S:      Odd Fixes
16292 F:      drivers/staging/vt665?/
16293
16294 STAGING - WILC1000 WIFI DRIVER
16295 M:      Adham Abozaeid <adham.abozaeid@microchip.com>
16296 M:      Ajay Singh <ajay.kathat@microchip.com>
16297 L:      linux-wireless@vger.kernel.org
16298 S:      Supported
16299 F:      drivers/staging/wilc1000/
16300
16301 STAGING SUBSYSTEM
16302 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16303 L:      devel@driverdev.osuosl.org
16304 S:      Supported
16305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16306 F:      drivers/staging/
16307
16308 STARFIRE/DURALAN NETWORK DRIVER
16309 M:      Ion Badulescu <ionut@badula.org>
16310 S:      Odd Fixes
16311 F:      drivers/net/ethernet/adaptec/starfire*
16312
16313 STEC S1220 SKD DRIVER
16314 M:      Damien Le Moal <Damien.LeMoal@wdc.com>
16315 L:      linux-block@vger.kernel.org
16316 S:      Maintained
16317 F:      drivers/block/skd*[ch]
16318
16319 STI AUDIO (ASoC) DRIVERS
16320 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16321 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16322 S:      Maintained
16323 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
16324 F:      sound/soc/sti/
16325
16326 STI CEC DRIVER
16327 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
16328 S:      Maintained
16329 F:      Documentation/devicetree/bindings/media/stih-cec.txt
16330 F:      drivers/media/platform/sti/cec/
16331
16332 STK1160 USB VIDEO CAPTURE DRIVER
16333 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16334 L:      linux-media@vger.kernel.org
16335 S:      Maintained
16336 T:      git git://linuxtv.org/media_tree.git
16337 F:      drivers/media/usb/stk1160/
16338
16339 STM32 AUDIO (ASoC) DRIVERS
16340 M:      Olivier Moysan <olivier.moysan@st.com>
16341 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16342 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16343 S:      Maintained
16344 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
16345 F:      sound/soc/stm/
16346
16347 STM32 TIMER/LPTIMER DRIVERS
16348 M:      Fabrice Gasnier <fabrice.gasnier@st.com>
16349 S:      Maintained
16350 F:      Documentation/ABI/testing/*timer-stm32
16351 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
16352 F:      drivers/*/stm32-*timer*
16353 F:      drivers/pwm/pwm-stm32*
16354 F:      include/linux/*/stm32-*tim*
16355
16356 STMMAC ETHERNET DRIVER
16357 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
16358 M:      Alexandre Torgue <alexandre.torgue@st.com>
16359 M:      Jose Abreu <joabreu@synopsys.com>
16360 L:      netdev@vger.kernel.org
16361 S:      Supported
16362 W:      http://www.stlinux.com
16363 F:      Documentation/networking/device_drivers/stmicro/
16364 F:      drivers/net/ethernet/stmicro/stmmac/
16365
16366 SUN3/3X
16367 M:      Sam Creasey <sammy@sammy.net>
16368 S:      Maintained
16369 W:      http://sammy.net/sun3/
16370 F:      arch/m68k/include/asm/sun3*
16371 F:      arch/m68k/kernel/*sun3*
16372 F:      arch/m68k/sun3*/
16373 F:      drivers/net/ethernet/i825xx/sun3*
16374
16375 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
16376 M:      Hans de Goede <hdegoede@redhat.com>
16377 L:      linux-input@vger.kernel.org
16378 S:      Maintained
16379 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
16380 F:      drivers/input/keyboard/sun4i-lradc-keys.c
16381
16382 SUNDANCE NETWORK DRIVER
16383 M:      Denis Kirjanov <kda@linux-powerpc.org>
16384 L:      netdev@vger.kernel.org
16385 S:      Maintained
16386 F:      drivers/net/ethernet/dlink/sundance.c
16387
16388 SUPERH
16389 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
16390 M:      Rich Felker <dalias@libc.org>
16391 L:      linux-sh@vger.kernel.org
16392 S:      Maintained
16393 Q:      http://patchwork.kernel.org/project/linux-sh/list/
16394 F:      Documentation/sh/
16395 F:      arch/sh/
16396 F:      drivers/sh/
16397
16398 SUSPEND TO RAM
16399 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
16400 M:      Len Brown <len.brown@intel.com>
16401 M:      Pavel Machek <pavel@ucw.cz>
16402 L:      linux-pm@vger.kernel.org
16403 S:      Supported
16404 B:      https://bugzilla.kernel.org
16405 F:      Documentation/power/
16406 F:      arch/x86/kernel/acpi/
16407 F:      drivers/base/power/
16408 F:      include/linux/freezer.h
16409 F:      include/linux/pm.h
16410 F:      include/linux/suspend.h
16411 F:      kernel/power/
16412
16413 SVGA HANDLING
16414 M:      Martin Mares <mj@ucw.cz>
16415 L:      linux-video@atrey.karlin.mff.cuni.cz
16416 S:      Maintained
16417 F:      Documentation/admin-guide/svga.rst
16418 F:      arch/x86/boot/video*
16419
16420 SWIOTLB SUBSYSTEM
16421 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
16422 L:      iommu@lists.linux-foundation.org
16423 S:      Supported
16424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
16425 F:      arch/*/kernel/pci-swiotlb.c
16426 F:      include/linux/swiotlb.h
16427 F:      kernel/dma/swiotlb.c
16428
16429 SWITCHDEV
16430 M:      Jiri Pirko <jiri@resnulli.us>
16431 M:      Ivan Vecera <ivecera@redhat.com>
16432 L:      netdev@vger.kernel.org
16433 S:      Supported
16434 F:      include/net/switchdev.h
16435 F:      net/switchdev/
16436
16437 SY8106A REGULATOR DRIVER
16438 M:      Icenowy Zheng <icenowy@aosc.io>
16439 S:      Maintained
16440 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
16441 F:      drivers/regulator/sy8106a-regulator.c
16442
16443 SYNC FILE FRAMEWORK
16444 M:      Sumit Semwal <sumit.semwal@linaro.org>
16445 R:      Gustavo Padovan <gustavo@padovan.org>
16446 L:      linux-media@vger.kernel.org
16447 L:      dri-devel@lists.freedesktop.org
16448 S:      Maintained
16449 T:      git git://anongit.freedesktop.org/drm/drm-misc
16450 F:      Documentation/driver-api/sync_file.rst
16451 F:      drivers/dma-buf/dma-fence*
16452 F:      drivers/dma-buf/sw_sync.c
16453 F:      drivers/dma-buf/sync_*
16454 F:      include/linux/sync_file.h
16455 F:      include/uapi/linux/sync_file.h
16456
16457 SYNOPSYS ARC ARCHITECTURE
16458 M:      Vineet Gupta <vgupta@synopsys.com>
16459 L:      linux-snps-arc@lists.infradead.org
16460 S:      Supported
16461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
16462 F:      Documentation/devicetree/bindings/arc/*
16463 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
16464 F:      arch/arc/
16465 F:      drivers/clocksource/arc_timer.c
16466 F:      drivers/tty/serial/arc_uart.c
16467
16468 SYNOPSYS ARC HSDK SDP pll clock driver
16469 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16470 S:      Supported
16471 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
16472 F:      drivers/clk/clk-hsdk-pll.c
16473
16474 SYNOPSYS ARC SDP clock driver
16475 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16476 S:      Supported
16477 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
16478 F:      drivers/clk/axs10x/*
16479
16480 SYNOPSYS ARC SDP platform support
16481 M:      Alexey Brodkin <abrodkin@synopsys.com>
16482 S:      Supported
16483 F:      Documentation/devicetree/bindings/arc/axs10*
16484 F:      arch/arc/boot/dts/ax*
16485 F:      arch/arc/plat-axs10x
16486
16487 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
16488 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16489 S:      Supported
16490 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
16491 F:      drivers/reset/reset-axs10x.c
16492
16493 SYNOPSYS CREG GPIO DRIVER
16494 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16495 S:      Maintained
16496 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
16497 F:      drivers/gpio/gpio-creg-snps.c
16498
16499 SYNOPSYS DESIGNWARE 8250 UART DRIVER
16500 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16501 S:      Maintained
16502 F:      drivers/tty/serial/8250/8250_dw.c
16503 F:      drivers/tty/serial/8250/8250_dwlib.*
16504 F:      drivers/tty/serial/8250/8250_lpss.c
16505
16506 SYNOPSYS DESIGNWARE APB GPIO DRIVER
16507 M:      Hoan Tran <hoan@os.amperecomputing.com>
16508 M:      Serge Semin <fancer.lancer@gmail.com>
16509 L:      linux-gpio@vger.kernel.org
16510 S:      Maintained
16511 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
16512 F:      drivers/gpio/gpio-dwapb.c
16513
16514 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
16515 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16516 S:      Maintained
16517 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
16518 F:      drivers/dma/dw-axi-dmac/
16519
16520 SYNOPSYS DESIGNWARE DMAC DRIVER
16521 M:      Viresh Kumar <vireshk@kernel.org>
16522 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16523 S:      Maintained
16524 F:      Documentation/devicetree/bindings/dma/snps-dma.txt
16525 F:      drivers/dma/dw/
16526 F:      include/dt-bindings/dma/dw-dmac.h
16527 F:      include/linux/dma/dw.h
16528 F:      include/linux/platform_data/dma-dw.h
16529
16530 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
16531 M:      Jose Abreu <Jose.Abreu@synopsys.com>
16532 L:      netdev@vger.kernel.org
16533 S:      Supported
16534 F:      drivers/net/ethernet/synopsys/
16535
16536 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
16537 M:      Jose Abreu <Jose.Abreu@synopsys.com>
16538 L:      netdev@vger.kernel.org
16539 S:      Supported
16540 F:      drivers/net/phy/mdio-xpcs.c
16541 F:      include/linux/mdio-xpcs.h
16542
16543 SYNOPSYS DESIGNWARE I2C DRIVER
16544 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
16545 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16546 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
16547 L:      linux-i2c@vger.kernel.org
16548 S:      Maintained
16549 F:      drivers/i2c/busses/i2c-designware-*
16550 F:      include/linux/platform_data/i2c-designware.h
16551
16552 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
16553 M:      Jaehoon Chung <jh80.chung@samsung.com>
16554 L:      linux-mmc@vger.kernel.org
16555 S:      Maintained
16556 F:      drivers/mmc/host/dw_mmc*
16557
16558 SYNOPSYS HSDK RESET CONTROLLER DRIVER
16559 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16560 S:      Supported
16561 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
16562 F:      drivers/reset/reset-hsdk.c
16563 F:      include/dt-bindings/reset/snps,hsdk-reset.h
16564
16565 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
16566 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
16567 M:      Manjunath M B <manjumb@synopsys.com>
16568 L:      linux-mmc@vger.kernel.org
16569 S:      Maintained
16570 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
16571
16572 SYSTEM CONFIGURATION (SYSCON)
16573 M:      Lee Jones <lee.jones@linaro.org>
16574 M:      Arnd Bergmann <arnd@arndb.de>
16575 S:      Supported
16576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
16577 F:      drivers/mfd/syscon.c
16578
16579 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
16580 M:      Sudeep Holla <sudeep.holla@arm.com>
16581 L:      linux-arm-kernel@lists.infradead.org
16582 S:      Maintained
16583 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
16584 F:      drivers/clk/clk-sc[mp]i.c
16585 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
16586 F:      drivers/firmware/arm_scmi/
16587 F:      drivers/firmware/arm_scpi.c
16588 F:      drivers/reset/reset-scmi.c
16589 F:      include/linux/sc[mp]i_protocol.h
16590 F:      include/trace/events/scmi.h
16591
16592 SYSTEM RESET/SHUTDOWN DRIVERS
16593 M:      Sebastian Reichel <sre@kernel.org>
16594 L:      linux-pm@vger.kernel.org
16595 S:      Maintained
16596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16597 F:      Documentation/devicetree/bindings/power/reset/
16598 F:      drivers/power/reset/
16599
16600 SYSTEM TRACE MODULE CLASS
16601 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
16602 S:      Maintained
16603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
16604 F:      Documentation/trace/stm.rst
16605 F:      drivers/hwtracing/stm/
16606 F:      include/linux/stm.h
16607 F:      include/uapi/linux/stm.h
16608
16609 SYSTEM76 ACPI DRIVER
16610 M:      Jeremy Soller <jeremy@system76.com>
16611 M:      System76 Product Development <productdev@system76.com>
16612 L:      platform-driver-x86@vger.kernel.org
16613 S:      Maintained
16614 F:      drivers/platform/x86/system76_acpi.c
16615
16616 SYSV FILESYSTEM
16617 M:      Christoph Hellwig <hch@infradead.org>
16618 S:      Maintained
16619 F:      Documentation/filesystems/sysv-fs.rst
16620 F:      fs/sysv/
16621 F:      include/linux/sysv_fs.h
16622
16623 TASKSTATS STATISTICS INTERFACE
16624 M:      Balbir Singh <bsingharora@gmail.com>
16625 S:      Maintained
16626 F:      Documentation/accounting/taskstats*
16627 F:      include/linux/taskstats*
16628 F:      kernel/taskstats.c
16629
16630 TC subsystem
16631 M:      Jamal Hadi Salim <jhs@mojatatu.com>
16632 M:      Cong Wang <xiyou.wangcong@gmail.com>
16633 M:      Jiri Pirko <jiri@resnulli.us>
16634 L:      netdev@vger.kernel.org
16635 S:      Maintained
16636 F:      include/net/pkt_cls.h
16637 F:      include/net/pkt_sched.h
16638 F:      include/net/tc_act/
16639 F:      include/uapi/linux/pkt_cls.h
16640 F:      include/uapi/linux/pkt_sched.h
16641 F:      include/uapi/linux/tc_act/
16642 F:      include/uapi/linux/tc_ematch/
16643 F:      net/sched/
16644
16645 TC90522 MEDIA DRIVER
16646 M:      Akihiro Tsukada <tskd08@gmail.com>
16647 L:      linux-media@vger.kernel.org
16648 S:      Odd Fixes
16649 F:      drivers/media/dvb-frontends/tc90522*
16650
16651 TCP LOW PRIORITY MODULE
16652 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
16653 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
16654 S:      Maintained
16655 W:      http://tcp-lp-mod.sourceforge.net/
16656 F:      net/ipv4/tcp_lp.c
16657
16658 TDA10071 MEDIA DRIVER
16659 M:      Antti Palosaari <crope@iki.fi>
16660 L:      linux-media@vger.kernel.org
16661 S:      Maintained
16662 W:      https://linuxtv.org
16663 W:      http://palosaari.fi/linux/
16664 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16665 T:      git git://linuxtv.org/anttip/media_tree.git
16666 F:      drivers/media/dvb-frontends/tda10071*
16667
16668 TDA18212 MEDIA DRIVER
16669 M:      Antti Palosaari <crope@iki.fi>
16670 L:      linux-media@vger.kernel.org
16671 S:      Maintained
16672 W:      https://linuxtv.org
16673 W:      http://palosaari.fi/linux/
16674 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16675 T:      git git://linuxtv.org/anttip/media_tree.git
16676 F:      drivers/media/tuners/tda18212*
16677
16678 TDA18218 MEDIA DRIVER
16679 M:      Antti Palosaari <crope@iki.fi>
16680 L:      linux-media@vger.kernel.org
16681 S:      Maintained
16682 W:      https://linuxtv.org
16683 W:      http://palosaari.fi/linux/
16684 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16685 T:      git git://linuxtv.org/anttip/media_tree.git
16686 F:      drivers/media/tuners/tda18218*
16687
16688 TDA18250 MEDIA DRIVER
16689 M:      Olli Salonen <olli.salonen@iki.fi>
16690 L:      linux-media@vger.kernel.org
16691 S:      Maintained
16692 W:      https://linuxtv.org
16693 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16694 T:      git git://linuxtv.org/media_tree.git
16695 F:      drivers/media/tuners/tda18250*
16696
16697 TDA18271 MEDIA DRIVER
16698 M:      Michael Krufky <mkrufky@linuxtv.org>
16699 L:      linux-media@vger.kernel.org
16700 S:      Maintained
16701 W:      https://linuxtv.org
16702 W:      http://github.com/mkrufky
16703 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16704 T:      git git://linuxtv.org/mkrufky/tuners.git
16705 F:      drivers/media/tuners/tda18271*
16706
16707 TDA1997x MEDIA DRIVER
16708 M:      Tim Harvey <tharvey@gateworks.com>
16709 L:      linux-media@vger.kernel.org
16710 S:      Maintained
16711 W:      https://linuxtv.org
16712 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16713 F:      drivers/media/i2c/tda1997x.*
16714
16715 TDA827x MEDIA DRIVER
16716 M:      Michael Krufky <mkrufky@linuxtv.org>
16717 L:      linux-media@vger.kernel.org
16718 S:      Maintained
16719 W:      https://linuxtv.org
16720 W:      http://github.com/mkrufky
16721 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16722 T:      git git://linuxtv.org/mkrufky/tuners.git
16723 F:      drivers/media/tuners/tda8290.*
16724
16725 TDA8290 MEDIA DRIVER
16726 M:      Michael Krufky <mkrufky@linuxtv.org>
16727 L:      linux-media@vger.kernel.org
16728 S:      Maintained
16729 W:      https://linuxtv.org
16730 W:      http://github.com/mkrufky
16731 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16732 T:      git git://linuxtv.org/mkrufky/tuners.git
16733 F:      drivers/media/tuners/tda8290.*
16734
16735 TDA9840 MEDIA DRIVER
16736 M:      Hans Verkuil <hverkuil@xs4all.nl>
16737 L:      linux-media@vger.kernel.org
16738 S:      Maintained
16739 W:      https://linuxtv.org
16740 T:      git git://linuxtv.org/media_tree.git
16741 F:      drivers/media/i2c/tda9840*
16742
16743 TEA5761 TUNER DRIVER
16744 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16745 L:      linux-media@vger.kernel.org
16746 S:      Odd fixes
16747 W:      https://linuxtv.org
16748 T:      git git://linuxtv.org/media_tree.git
16749 F:      drivers/media/tuners/tea5761.*
16750
16751 TEA5767 TUNER DRIVER
16752 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16753 L:      linux-media@vger.kernel.org
16754 S:      Maintained
16755 W:      https://linuxtv.org
16756 T:      git git://linuxtv.org/media_tree.git
16757 F:      drivers/media/tuners/tea5767.*
16758
16759 TEA6415C MEDIA DRIVER
16760 M:      Hans Verkuil <hverkuil@xs4all.nl>
16761 L:      linux-media@vger.kernel.org
16762 S:      Maintained
16763 W:      https://linuxtv.org
16764 T:      git git://linuxtv.org/media_tree.git
16765 F:      drivers/media/i2c/tea6415c*
16766
16767 TEA6420 MEDIA DRIVER
16768 M:      Hans Verkuil <hverkuil@xs4all.nl>
16769 L:      linux-media@vger.kernel.org
16770 S:      Maintained
16771 W:      https://linuxtv.org
16772 T:      git git://linuxtv.org/media_tree.git
16773 F:      drivers/media/i2c/tea6420*
16774
16775 TEAM DRIVER
16776 M:      Jiri Pirko <jiri@resnulli.us>
16777 L:      netdev@vger.kernel.org
16778 S:      Supported
16779 F:      drivers/net/team/
16780 F:      include/linux/if_team.h
16781 F:      include/uapi/linux/if_team.h
16782
16783 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
16784 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
16785 S:      Maintained
16786 F:      arch/x86/platform/ts5500/
16787
16788 TECHNOTREND USB IR RECEIVER
16789 M:      Sean Young <sean@mess.org>
16790 L:      linux-media@vger.kernel.org
16791 S:      Maintained
16792 F:      drivers/media/rc/ttusbir.c
16793
16794 TECHWELL TW9910 VIDEO DECODER
16795 L:      linux-media@vger.kernel.org
16796 S:      Orphan
16797 F:      drivers/media/i2c/tw9910.c
16798 F:      include/media/i2c/tw9910.h
16799
16800 TEE SUBSYSTEM
16801 M:      Jens Wiklander <jens.wiklander@linaro.org>
16802 L:      tee-dev@lists.linaro.org
16803 S:      Maintained
16804 F:      Documentation/tee.txt
16805 F:      drivers/tee/
16806 F:      include/linux/tee_drv.h
16807 F:      include/uapi/linux/tee.h
16808
16809 TEGRA ARCHITECTURE SUPPORT
16810 M:      Thierry Reding <thierry.reding@gmail.com>
16811 M:      Jonathan Hunter <jonathanh@nvidia.com>
16812 L:      linux-tegra@vger.kernel.org
16813 S:      Supported
16814 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
16815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
16816 N:      [^a-z]tegra
16817
16818 TEGRA CLOCK DRIVER
16819 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
16820 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
16821 S:      Supported
16822 F:      drivers/clk/tegra/
16823
16824 TEGRA DMA DRIVERS
16825 M:      Laxman Dewangan <ldewangan@nvidia.com>
16826 M:      Jon Hunter <jonathanh@nvidia.com>
16827 S:      Supported
16828 F:      drivers/dma/tegra*
16829
16830 TEGRA I2C DRIVER
16831 M:      Laxman Dewangan <ldewangan@nvidia.com>
16832 R:      Dmitry Osipenko <digetx@gmail.com>
16833 S:      Supported
16834 F:      drivers/i2c/busses/i2c-tegra.c
16835
16836 TEGRA IOMMU DRIVERS
16837 M:      Thierry Reding <thierry.reding@gmail.com>
16838 L:      linux-tegra@vger.kernel.org
16839 S:      Supported
16840 F:      drivers/iommu/tegra*
16841
16842 TEGRA KBC DRIVER
16843 M:      Laxman Dewangan <ldewangan@nvidia.com>
16844 S:      Supported
16845 F:      drivers/input/keyboard/tegra-kbc.c
16846
16847 TEGRA NAND DRIVER
16848 M:      Stefan Agner <stefan@agner.ch>
16849 M:      Lucas Stach <dev@lynxeye.de>
16850 S:      Maintained
16851 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
16852 F:      drivers/mtd/nand/raw/tegra_nand.c
16853
16854 TEGRA PWM DRIVER
16855 M:      Thierry Reding <thierry.reding@gmail.com>
16856 S:      Supported
16857 F:      drivers/pwm/pwm-tegra.c
16858
16859 TEGRA SERIAL DRIVER
16860 M:      Laxman Dewangan <ldewangan@nvidia.com>
16861 S:      Supported
16862 F:      drivers/tty/serial/serial-tegra.c
16863
16864 TEGRA SPI DRIVER
16865 M:      Laxman Dewangan <ldewangan@nvidia.com>
16866 S:      Supported
16867 F:      drivers/spi/spi-tegra*
16868
16869 TEGRA VIDEO DRIVER
16870 M:      Thierry Reding <thierry.reding@gmail.com>
16871 M:      Jonathan Hunter <jonathanh@nvidia.com>
16872 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
16873 L:      linux-media@vger.kernel.org
16874 L:      linux-tegra@vger.kernel.org
16875 S:      Maintained
16876 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
16877 F:      drivers/staging/media/tegra-video/
16878
16879 TEGRA XUSB PADCTL DRIVER
16880 M:      JC Kuo <jckuo@nvidia.com>
16881 S:      Supported
16882 F:      drivers/phy/tegra/xusb*
16883
16884 TEHUTI ETHERNET DRIVER
16885 M:      Andy Gospodarek <andy@greyhouse.net>
16886 L:      netdev@vger.kernel.org
16887 S:      Supported
16888 F:      drivers/net/ethernet/tehuti/*
16889
16890 TELECOM CLOCK DRIVER FOR MCPL0010
16891 M:      Mark Gross <mark.gross@intel.com>
16892 S:      Supported
16893 F:      drivers/char/tlclk.c
16894
16895 TEMPO SEMICONDUCTOR DRIVERS
16896 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
16897 S:      Maintained
16898 F:      Documentation/devicetree/bindings/sound/tscs*.txt
16899 F:      sound/soc/codecs/tscs*.c
16900 F:      sound/soc/codecs/tscs*.h
16901
16902 TENSILICA XTENSA PORT (xtensa)
16903 M:      Chris Zankel <chris@zankel.net>
16904 M:      Max Filippov <jcmvbkbc@gmail.com>
16905 L:      linux-xtensa@linux-xtensa.org
16906 S:      Maintained
16907 T:      git git://github.com/czankel/xtensa-linux.git
16908 F:      arch/xtensa/
16909 F:      drivers/irqchip/irq-xtensa-*
16910
16911 TEXAS INSTRUMENTS ASoC DRIVERS
16912 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
16913 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16914 S:      Maintained
16915 F:      sound/soc/ti/
16916
16917 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
16918 M:      Ricardo Ribalda <ribalda@kernel.org>
16919 L:      linux-iio@vger.kernel.org
16920 S:      Supported
16921 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
16922 F:      drivers/iio/dac/ti-dac7612.c
16923
16924 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
16925 M:      Nishanth Menon <nm@ti.com>
16926 M:      Tero Kristo <t-kristo@ti.com>
16927 M:      Santosh Shilimkar <ssantosh@kernel.org>
16928 L:      linux-arm-kernel@lists.infradead.org
16929 S:      Maintained
16930 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
16931 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
16932 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.txt
16933 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.txt
16934 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
16935 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
16936 F:      drivers/clk/keystone/sci-clk.c
16937 F:      drivers/firmware/ti_sci*
16938 F:      drivers/irqchip/irq-ti-sci-inta.c
16939 F:      drivers/irqchip/irq-ti-sci-intr.c
16940 F:      drivers/reset/reset-ti-sci.c
16941 F:      drivers/soc/ti/ti_sci_inta_msi.c
16942 F:      drivers/soc/ti/ti_sci_pm_domains.c
16943 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
16944 F:      include/linux/soc/ti/ti_sci_inta_msi.h
16945 F:      include/linux/soc/ti/ti_sci_protocol.h
16946
16947 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
16948 M:      Hans Verkuil <hverkuil@xs4all.nl>
16949 L:      linux-media@vger.kernel.org
16950 S:      Maintained
16951 W:      https://linuxtv.org
16952 T:      git git://linuxtv.org/media_tree.git
16953 F:      drivers/media/radio/radio-raremono.c
16954
16955 THERMAL
16956 M:      Zhang Rui <rui.zhang@intel.com>
16957 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
16958 R:      Amit Kucheria <amit.kucheria@verdurent.com>
16959 L:      linux-pm@vger.kernel.org
16960 S:      Supported
16961 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16962 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
16963 F:      Documentation/devicetree/bindings/thermal/
16964 F:      drivers/thermal/
16965 F:      include/linux/cpu_cooling.h
16966 F:      include/linux/thermal.h
16967 F:      include/uapi/linux/thermal.h
16968
16969 THERMAL DRIVER FOR AMLOGIC SOCS
16970 M:      Guillaume La Roque <glaroque@baylibre.com>
16971 L:      linux-pm@vger.kernel.org
16972 L:      linux-amlogic@lists.infradead.org
16973 S:      Supported
16974 W:      http://linux-meson.com/
16975 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
16976 F:      drivers/thermal/amlogic_thermal.c
16977
16978 THERMAL/CPU_COOLING
16979 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
16980 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
16981 M:      Viresh Kumar <viresh.kumar@linaro.org>
16982 M:      Javi Merino <javi.merino@kernel.org>
16983 L:      linux-pm@vger.kernel.org
16984 S:      Supported
16985 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
16986 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
16987 F:      drivers/thermal/cpufreq_cooling.c
16988 F:      drivers/thermal/cpuidle_cooling.c
16989 F:      include/linux/cpu_cooling.h
16990
16991 THINKPAD ACPI EXTRAS DRIVER
16992 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
16993 L:      ibm-acpi-devel@lists.sourceforge.net
16994 L:      platform-driver-x86@vger.kernel.org
16995 S:      Maintained
16996 W:      http://ibm-acpi.sourceforge.net
16997 W:      http://thinkwiki.org/wiki/Ibm-acpi
16998 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
16999 F:      drivers/platform/x86/thinkpad_acpi.c
17000
17001 THUNDERBOLT DRIVER
17002 M:      Andreas Noever <andreas.noever@gmail.com>
17003 M:      Michael Jamet <michael.jamet@intel.com>
17004 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
17005 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
17006 L:      linux-usb@vger.kernel.org
17007 S:      Maintained
17008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
17009 F:      Documentation/admin-guide/thunderbolt.rst
17010 F:      drivers/thunderbolt/
17011 F:      include/linux/thunderbolt.h
17012
17013 THUNDERBOLT NETWORK DRIVER
17014 M:      Michael Jamet <michael.jamet@intel.com>
17015 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
17016 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
17017 L:      netdev@vger.kernel.org
17018 S:      Maintained
17019 F:      drivers/net/thunderbolt.c
17020
17021 THUNDERX GPIO DRIVER
17022 M:      Robert Richter <rrichter@marvell.com>
17023 S:      Maintained
17024 F:      drivers/gpio/gpio-thunderx.c
17025
17026 TI AM437X VPFE DRIVER
17027 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17028 L:      linux-media@vger.kernel.org
17029 S:      Maintained
17030 W:      https://linuxtv.org
17031 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17032 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17033 F:      drivers/media/platform/am437x/
17034
17035 TI BANDGAP AND THERMAL DRIVER
17036 M:      Eduardo Valentin <edubezval@gmail.com>
17037 M:      Keerthy <j-keerthy@ti.com>
17038 L:      linux-pm@vger.kernel.org
17039 L:      linux-omap@vger.kernel.org
17040 S:      Maintained
17041 F:      drivers/thermal/ti-soc-thermal/
17042
17043 TI BQ27XXX POWER SUPPLY DRIVER
17044 R:      Andrew F. Davis <afd@ti.com>
17045 F:      drivers/power/supply/bq27xxx_battery.c
17046 F:      drivers/power/supply/bq27xxx_battery_i2c.c
17047 F:      include/linux/power/bq27xxx_battery.h
17048
17049 TI CDCE706 CLOCK DRIVER
17050 M:      Max Filippov <jcmvbkbc@gmail.com>
17051 S:      Maintained
17052 F:      drivers/clk/clk-cdce706.c
17053
17054 TI CLOCK DRIVER
17055 M:      Tero Kristo <t-kristo@ti.com>
17056 L:      linux-omap@vger.kernel.org
17057 S:      Maintained
17058 F:      drivers/clk/ti/
17059 F:      include/linux/clk/ti.h
17060
17061 TI DAVINCI MACHINE SUPPORT
17062 M:      Sekhar Nori <nsekhar@ti.com>
17063 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
17064 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17065 S:      Supported
17066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
17067 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
17068 F:      arch/arm/boot/dts/da850*
17069 F:      arch/arm/mach-davinci/
17070 F:      drivers/i2c/busses/i2c-davinci.c
17071
17072 TI DAVINCI SERIES CLOCK DRIVER
17073 M:      David Lechner <david@lechnology.com>
17074 R:      Sekhar Nori <nsekhar@ti.com>
17075 S:      Maintained
17076 F:      Documentation/devicetree/bindings/clock/ti/davinci/
17077 F:      drivers/clk/davinci/
17078
17079 TI DAVINCI SERIES GPIO DRIVER
17080 M:      Keerthy <j-keerthy@ti.com>
17081 L:      linux-gpio@vger.kernel.org
17082 S:      Maintained
17083 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
17084 F:      drivers/gpio/gpio-davinci.c
17085
17086 TI DAVINCI SERIES MEDIA DRIVER
17087 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17088 L:      linux-media@vger.kernel.org
17089 S:      Maintained
17090 W:      https://linuxtv.org
17091 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17092 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17093 F:      drivers/media/platform/davinci/
17094 F:      include/media/davinci/
17095
17096 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
17097 R:      David Lechner <david@lechnology.com>
17098 L:      linux-iio@vger.kernel.org
17099 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
17100 F:      drivers/counter/ti-eqep.c
17101
17102 TI ETHERNET SWITCH DRIVER (CPSW)
17103 R:      Grygorii Strashko <grygorii.strashko@ti.com>
17104 L:      linux-omap@vger.kernel.org
17105 L:      netdev@vger.kernel.org
17106 S:      Maintained
17107 F:      drivers/net/ethernet/ti/cpsw*
17108 F:      drivers/net/ethernet/ti/davinci*
17109
17110 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
17111 M:      Alex Dubov <oakad@yahoo.com>
17112 S:      Maintained
17113 W:      http://tifmxx.berlios.de/
17114 F:      drivers/memstick/host/tifm_ms.c
17115 F:      drivers/misc/tifm*
17116 F:      drivers/mmc/host/tifm_sd.c
17117 F:      include/linux/tifm.h
17118
17119 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
17120 M:      Santosh Shilimkar <ssantosh@kernel.org>
17121 L:      linux-kernel@vger.kernel.org
17122 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17123 S:      Maintained
17124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
17125 F:      drivers/soc/ti/*
17126
17127 TI LM49xxx FAMILY ASoC CODEC DRIVERS
17128 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
17129 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
17130 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17131 S:      Maintained
17132 F:      sound/soc/codecs/isabelle*
17133 F:      sound/soc/codecs/lm49453*
17134
17135 TI LP855x BACKLIGHT DRIVER
17136 M:      Milo Kim <milo.kim@ti.com>
17137 S:      Maintained
17138 F:      Documentation/driver-api/backlight/lp855x-driver.rst
17139 F:      drivers/video/backlight/lp855x_bl.c
17140 F:      include/linux/platform_data/lp855x.h
17141
17142 TI LP8727 CHARGER DRIVER
17143 M:      Milo Kim <milo.kim@ti.com>
17144 S:      Maintained
17145 F:      drivers/power/supply/lp8727_charger.c
17146 F:      include/linux/platform_data/lp8727.h
17147
17148 TI LP8788 MFD DRIVER
17149 M:      Milo Kim <milo.kim@ti.com>
17150 S:      Maintained
17151 F:      drivers/iio/adc/lp8788_adc.c
17152 F:      drivers/leds/leds-lp8788.c
17153 F:      drivers/mfd/lp8788*.c
17154 F:      drivers/power/supply/lp8788-charger.c
17155 F:      drivers/regulator/lp8788-*.c
17156 F:      include/linux/mfd/lp8788*.h
17157
17158 TI NETCP ETHERNET DRIVER
17159 M:      Wingman Kwok <w-kwok2@ti.com>
17160 M:      Murali Karicheri <m-karicheri2@ti.com>
17161 L:      netdev@vger.kernel.org
17162 S:      Maintained
17163 F:      drivers/net/ethernet/ti/netcp*
17164
17165 TI PCM3060 ASoC CODEC DRIVER
17166 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
17167 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17168 S:      Maintained
17169 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
17170 F:      sound/soc/codecs/pcm3060*
17171
17172 TI TAS571X FAMILY ASoC CODEC DRIVER
17173 M:      Kevin Cernekee <cernekee@chromium.org>
17174 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17175 S:      Odd Fixes
17176 F:      sound/soc/codecs/tas571x*
17177
17178 TI TCAN4X5X DEVICE DRIVER
17179 M:      Dan Murphy <dmurphy@ti.com>
17180 L:      linux-can@vger.kernel.org
17181 S:      Maintained
17182 F:      Documentation/devicetree/bindings/net/can/tcan4x5x.txt
17183 F:      drivers/net/can/m_can/tcan4x5x.c
17184
17185 TI TRF7970A NFC DRIVER
17186 M:      Mark Greer <mgreer@animalcreek.com>
17187 L:      linux-wireless@vger.kernel.org
17188 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
17189 S:      Supported
17190 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
17191 F:      drivers/nfc/trf7970a.c
17192
17193 TI TWL4030 SERIES SOC CODEC DRIVER
17194 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
17195 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17196 S:      Maintained
17197 F:      sound/soc/codecs/twl4030*
17198
17199 TI VPE/CAL DRIVERS
17200 M:      Benoit Parrot <bparrot@ti.com>
17201 L:      linux-media@vger.kernel.org
17202 S:      Maintained
17203 W:      http://linuxtv.org/
17204 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17205 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
17206 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
17207 F:      drivers/media/platform/ti-vpe/
17208
17209 TI WILINK WIRELESS DRIVERS
17210 L:      linux-wireless@vger.kernel.org
17211 S:      Orphan
17212 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
17213 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
17214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
17215 F:      drivers/net/wireless/ti/
17216 F:      include/linux/wl12xx.h
17217
17218 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
17219 M:      John Stultz <john.stultz@linaro.org>
17220 M:      Thomas Gleixner <tglx@linutronix.de>
17221 R:      Stephen Boyd <sboyd@kernel.org>
17222 L:      linux-kernel@vger.kernel.org
17223 S:      Supported
17224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
17225 F:      include/linux/clocksource.h
17226 F:      include/linux/time.h
17227 F:      include/linux/timex.h
17228 F:      include/uapi/linux/time.h
17229 F:      include/uapi/linux/timex.h
17230 F:      kernel/time/alarmtimer.c
17231 F:      kernel/time/clocksource.c
17232 F:      kernel/time/ntp.c
17233 F:      kernel/time/time*.c
17234 F:      tools/testing/selftests/timers/
17235
17236 TIPC NETWORK LAYER
17237 M:      Jon Maloy <jmaloy@redhat.com>
17238 M:      Ying Xue <ying.xue@windriver.com>
17239 L:      netdev@vger.kernel.org (core kernel code)
17240 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
17241 S:      Maintained
17242 W:      http://tipc.sourceforge.net/
17243 F:      include/uapi/linux/tipc*.h
17244 F:      net/tipc/
17245
17246 TLAN NETWORK DRIVER
17247 M:      Samuel Chessman <chessman@tux.org>
17248 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
17249 S:      Maintained
17250 W:      http://sourceforge.net/projects/tlan/
17251 F:      Documentation/networking/device_drivers/ti/tlan.rst
17252 F:      drivers/net/ethernet/ti/tlan.*
17253
17254 TM6000 VIDEO4LINUX DRIVER
17255 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17256 L:      linux-media@vger.kernel.org
17257 S:      Odd fixes
17258 W:      https://linuxtv.org
17259 T:      git git://linuxtv.org/media_tree.git
17260 F:      Documentation/admin-guide/media/tm6000*
17261 F:      drivers/media/usb/tm6000/
17262
17263 TMIO/SDHI MMC DRIVER
17264 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17265 L:      linux-mmc@vger.kernel.org
17266 S:      Supported
17267 F:      drivers/mmc/host/renesas_sdhi*
17268 F:      drivers/mmc/host/tmio_mmc*
17269 F:      include/linux/mfd/tmio.h
17270
17271 TMP401 HARDWARE MONITOR DRIVER
17272 M:      Guenter Roeck <linux@roeck-us.net>
17273 L:      linux-hwmon@vger.kernel.org
17274 S:      Maintained
17275 F:      Documentation/hwmon/tmp401.rst
17276 F:      drivers/hwmon/tmp401.c
17277
17278 TMP513 HARDWARE MONITOR DRIVER
17279 M:      Eric Tremblay <etremblay@distech-controls.com>
17280 L:      linux-hwmon@vger.kernel.org
17281 S:      Maintained
17282 F:      Documentation/hwmon/tmp513.rst
17283 F:      drivers/hwmon/tmp513.c
17284
17285 TMPFS (SHMEM FILESYSTEM)
17286 M:      Hugh Dickins <hughd@google.com>
17287 L:      linux-mm@kvack.org
17288 S:      Maintained
17289 F:      include/linux/shmem_fs.h
17290 F:      mm/shmem.c
17291
17292 TOMOYO SECURITY MODULE
17293 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
17294 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
17295 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
17296 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
17297 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
17298 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
17299 S:      Maintained
17300 W:      https://tomoyo.osdn.jp/
17301 F:      security/tomoyo/
17302
17303 TOPSTAR LAPTOP EXTRAS DRIVER
17304 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17305 L:      platform-driver-x86@vger.kernel.org
17306 S:      Maintained
17307 F:      drivers/platform/x86/topstar-laptop.c
17308
17309 TORTURE-TEST MODULES
17310 M:      Davidlohr Bueso <dave@stgolabs.net>
17311 M:      "Paul E. McKenney" <paulmck@kernel.org>
17312 M:      Josh Triplett <josh@joshtriplett.org>
17313 L:      linux-kernel@vger.kernel.org
17314 S:      Supported
17315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17316 F:      Documentation/RCU/torture.txt
17317 F:      kernel/locking/locktorture.c
17318 F:      kernel/rcu/rcuperf.c
17319 F:      kernel/rcu/rcutorture.c
17320 F:      kernel/torture.c
17321
17322 TOSHIBA ACPI EXTRAS DRIVER
17323 M:      Azael Avalos <coproscefalo@gmail.com>
17324 L:      platform-driver-x86@vger.kernel.org
17325 S:      Maintained
17326 F:      drivers/platform/x86/toshiba_acpi.c
17327
17328 TOSHIBA BLUETOOTH DRIVER
17329 M:      Azael Avalos <coproscefalo@gmail.com>
17330 L:      platform-driver-x86@vger.kernel.org
17331 S:      Maintained
17332 F:      drivers/platform/x86/toshiba_bluetooth.c
17333
17334 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
17335 M:      Azael Avalos <coproscefalo@gmail.com>
17336 L:      platform-driver-x86@vger.kernel.org
17337 S:      Maintained
17338 F:      drivers/platform/x86/toshiba_haps.c
17339
17340 TOSHIBA SMM DRIVER
17341 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
17342 S:      Maintained
17343 W:      http://www.buzzard.org.uk/toshiba/
17344 F:      drivers/char/toshiba.c
17345 F:      include/linux/toshiba.h
17346 F:      include/uapi/linux/toshiba.h
17347
17348 TOSHIBA TC358743 DRIVER
17349 M:      Mats Randgaard <matrandg@cisco.com>
17350 L:      linux-media@vger.kernel.org
17351 S:      Maintained
17352 F:      drivers/media/i2c/tc358743*
17353 F:      include/media/i2c/tc358743.h
17354
17355 TOSHIBA WMI HOTKEYS DRIVER
17356 M:      Azael Avalos <coproscefalo@gmail.com>
17357 L:      platform-driver-x86@vger.kernel.org
17358 S:      Maintained
17359 F:      drivers/platform/x86/toshiba-wmi.c
17360
17361 TPM DEVICE DRIVER
17362 M:      Peter Huewe <peterhuewe@gmx.de>
17363 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
17364 R:      Jason Gunthorpe <jgg@ziepe.ca>
17365 L:      linux-integrity@vger.kernel.org
17366 S:      Maintained
17367 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
17368 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
17369 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
17370 F:      drivers/char/tpm/
17371
17372 TRACING
17373 M:      Steven Rostedt <rostedt@goodmis.org>
17374 M:      Ingo Molnar <mingo@redhat.com>
17375 S:      Maintained
17376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
17377 F:      Documentation/trace/ftrace.rst
17378 F:      arch/*/*/*/ftrace.h
17379 F:      arch/*/kernel/ftrace.c
17380 F:      include/*/ftrace.h
17381 F:      include/linux/trace*.h
17382 F:      include/trace/
17383 F:      kernel/trace/
17384 F:      tools/testing/selftests/ftrace/
17385
17386 TRACING MMIO ACCESSES (MMIOTRACE)
17387 M:      Steven Rostedt <rostedt@goodmis.org>
17388 M:      Ingo Molnar <mingo@kernel.org>
17389 R:      Karol Herbst <karolherbst@gmail.com>
17390 R:      Pekka Paalanen <ppaalanen@gmail.com>
17391 L:      linux-kernel@vger.kernel.org
17392 L:      nouveau@lists.freedesktop.org
17393 S:      Maintained
17394 F:      arch/x86/mm/kmmio.c
17395 F:      arch/x86/mm/mmio-mod.c
17396 F:      arch/x86/mm/testmmiotrace.c
17397 F:      include/linux/mmiotrace.h
17398 F:      kernel/trace/trace_mmiotrace.c
17399
17400 TRIVIAL PATCHES
17401 M:      Jiri Kosina <trivial@kernel.org>
17402 S:      Maintained
17403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
17404 K:      ^Subject:.*(?i)trivial
17405
17406 TTY LAYER
17407 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17408 M:      Jiri Slaby <jslaby@suse.com>
17409 S:      Supported
17410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
17411 F:      Documentation/driver-api/serial/
17412 F:      drivers/tty/
17413 F:      drivers/tty/serial/serial_core.c
17414 F:      include/linux/serial.h
17415 F:      include/linux/serial_core.h
17416 F:      include/linux/tty.h
17417 F:      include/uapi/linux/serial.h
17418 F:      include/uapi/linux/serial_core.h
17419 F:      include/uapi/linux/tty.h
17420
17421 TUA9001 MEDIA DRIVER
17422 M:      Antti Palosaari <crope@iki.fi>
17423 L:      linux-media@vger.kernel.org
17424 S:      Maintained
17425 W:      https://linuxtv.org
17426 W:      http://palosaari.fi/linux/
17427 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17428 T:      git git://linuxtv.org/anttip/media_tree.git
17429 F:      drivers/media/tuners/tua9001*
17430
17431 TULIP NETWORK DRIVERS
17432 L:      netdev@vger.kernel.org
17433 L:      linux-parisc@vger.kernel.org
17434 S:      Orphan
17435 F:      drivers/net/ethernet/dec/tulip/
17436
17437 TUN/TAP driver
17438 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
17439 S:      Maintained
17440 W:      http://vtun.sourceforge.net/tun
17441 F:      Documentation/networking/tuntap.rst
17442 F:      arch/um/os-Linux/drivers/
17443
17444 TURBOCHANNEL SUBSYSTEM
17445 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
17446 M:      Ralf Baechle <ralf@linux-mips.org>
17447 L:      linux-mips@vger.kernel.org
17448 S:      Maintained
17449 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
17450 F:      drivers/tc/
17451 F:      include/linux/tc.h
17452
17453 TURBOSTAT UTILITY
17454 M:      "Len Brown" <lenb@kernel.org>
17455 L:      linux-pm@vger.kernel.org
17456 S:      Supported
17457 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17458 B:      https://bugzilla.kernel.org
17459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
17460 F:      tools/power/x86/turbostat/
17461
17462 TW5864 VIDEO4LINUX DRIVER
17463 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17464 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17465 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
17466 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17467 L:      linux-media@vger.kernel.org
17468 S:      Supported
17469 F:      drivers/media/pci/tw5864/
17470
17471 TW68 VIDEO4LINUX DRIVER
17472 M:      Hans Verkuil <hverkuil@xs4all.nl>
17473 L:      linux-media@vger.kernel.org
17474 S:      Odd Fixes
17475 W:      https://linuxtv.org
17476 T:      git git://linuxtv.org/media_tree.git
17477 F:      drivers/media/pci/tw68/
17478
17479 TW686X VIDEO4LINUX DRIVER
17480 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17481 L:      linux-media@vger.kernel.org
17482 S:      Maintained
17483 W:      http://linuxtv.org
17484 T:      git git://linuxtv.org/media_tree.git
17485 F:      drivers/media/pci/tw686x/
17486
17487 UACCE ACCELERATOR FRAMEWORK
17488 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
17489 M:      Zhou Wang <wangzhou1@hisilicon.com>
17490 L:      linux-accelerators@lists.ozlabs.org
17491 L:      linux-kernel@vger.kernel.org
17492 S:      Maintained
17493 F:      Documentation/ABI/testing/sysfs-driver-uacce
17494 F:      Documentation/misc-devices/uacce.rst
17495 F:      drivers/misc/uacce/
17496 F:      include/linux/uacce.h
17497 F:      include/uapi/misc/uacce/
17498
17499 UBI FILE SYSTEM (UBIFS)
17500 M:      Richard Weinberger <richard@nod.at>
17501 L:      linux-mtd@lists.infradead.org
17502 S:      Supported
17503 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
17504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17506 F:      Documentation/filesystems/ubifs.rst
17507 F:      fs/ubifs/
17508
17509 UCLINUX (M68KNOMMU AND COLDFIRE)
17510 M:      Greg Ungerer <gerg@linux-m68k.org>
17511 L:      linux-m68k@lists.linux-m68k.org
17512 L:      uclinux-dev@uclinux.org  (subscribers-only)
17513 S:      Maintained
17514 W:      http://www.linux-m68k.org/
17515 W:      http://www.uclinux.org/
17516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
17517 F:      arch/m68k/*/*_no.*
17518 F:      arch/m68k/68*/
17519 F:      arch/m68k/coldfire/
17520 F:      arch/m68k/include/asm/*_no.*
17521
17522 UDF FILESYSTEM
17523 M:      Jan Kara <jack@suse.com>
17524 S:      Maintained
17525 F:      Documentation/filesystems/udf.rst
17526 F:      fs/udf/
17527
17528 UDRAW TABLET
17529 M:      Bastien Nocera <hadess@hadess.net>
17530 L:      linux-input@vger.kernel.org
17531 S:      Maintained
17532 F:      drivers/hid/hid-udraw-ps3.c
17533
17534 UFS FILESYSTEM
17535 M:      Evgeniy Dushistov <dushistov@mail.ru>
17536 S:      Maintained
17537 F:      Documentation/admin-guide/ufs.rst
17538 F:      fs/ufs/
17539
17540 UHID USERSPACE HID IO DRIVER
17541 M:      David Herrmann <dh.herrmann@googlemail.com>
17542 L:      linux-input@vger.kernel.org
17543 S:      Maintained
17544 F:      drivers/hid/uhid.c
17545 F:      include/uapi/linux/uhid.h
17546
17547 ULPI BUS
17548 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17549 L:      linux-usb@vger.kernel.org
17550 S:      Maintained
17551 F:      drivers/usb/common/ulpi.c
17552 F:      include/linux/ulpi/
17553
17554 UNICODE SUBSYSTEM
17555 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
17556 L:      linux-fsdevel@vger.kernel.org
17557 S:      Supported
17558 F:      fs/unicode/
17559
17560 UNICORE32 ARCHITECTURE
17561 M:      Guan Xuetao <gxt@pku.edu.cn>
17562 S:      Maintained
17563 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
17564 T:      git git://github.com/gxt/linux.git
17565 F:      arch/unicore32/
17566
17567 UNIFDEF
17568 M:      Tony Finch <dot@dotat.at>
17569 S:      Maintained
17570 W:      http://dotat.at/prog/unifdef
17571 F:      scripts/unifdef.c
17572
17573 UNIFORM CDROM DRIVER
17574 M:      Jens Axboe <axboe@kernel.dk>
17575 S:      Maintained
17576 W:      http://www.kernel.dk
17577 F:      Documentation/cdrom/
17578 F:      drivers/cdrom/cdrom.c
17579 F:      include/linux/cdrom.h
17580 F:      include/uapi/linux/cdrom.h
17581
17582 UNISYS S-PAR DRIVERS
17583 M:      David Kershner <david.kershner@unisys.com>
17584 L:      sparmaintainer@unisys.com (Unisys internal)
17585 S:      Supported
17586 F:      drivers/staging/unisys/
17587 F:      drivers/visorbus/
17588 F:      include/linux/visorbus.h
17589
17590 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
17591 R:      Alim Akhtar <alim.akhtar@samsung.com>
17592 R:      Avri Altman <avri.altman@wdc.com>
17593 L:      linux-scsi@vger.kernel.org
17594 S:      Supported
17595 F:      Documentation/scsi/ufs.rst
17596 F:      drivers/scsi/ufs/
17597
17598 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
17599 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
17600 L:      linux-scsi@vger.kernel.org
17601 S:      Supported
17602 F:      drivers/scsi/ufs/*dwc*
17603
17604 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
17605 M:      Stanley Chu <stanley.chu@mediatek.com>
17606 L:      linux-scsi@vger.kernel.org
17607 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
17608 S:      Maintained
17609 F:      drivers/scsi/ufs/ufs-mediatek*
17610
17611 UNSORTED BLOCK IMAGES (UBI)
17612 M:      Richard Weinberger <richard@nod.at>
17613 L:      linux-mtd@lists.infradead.org
17614 S:      Supported
17615 W:      http://www.linux-mtd.infradead.org/
17616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17618 F:      drivers/mtd/ubi/
17619 F:      include/linux/mtd/ubi.h
17620 F:      include/uapi/mtd/ubi-user.h
17621
17622 USB "USBNET" DRIVER FRAMEWORK
17623 M:      Oliver Neukum <oneukum@suse.com>
17624 L:      netdev@vger.kernel.org
17625 S:      Maintained
17626 W:      http://www.linux-usb.org/usbnet
17627 F:      drivers/net/usb/usbnet.c
17628 F:      include/linux/usb/usbnet.h
17629
17630 USB ACM DRIVER
17631 M:      Oliver Neukum <oneukum@suse.com>
17632 L:      linux-usb@vger.kernel.org
17633 S:      Maintained
17634 F:      Documentation/usb/acm.rst
17635 F:      drivers/usb/class/cdc-acm.*
17636
17637 USB APPLE MFI FASTCHARGE DRIVER
17638 M:      Bastien Nocera <hadess@hadess.net>
17639 L:      linux-usb@vger.kernel.org
17640 S:      Maintained
17641 F:      drivers/usb/misc/apple-mfi-fastcharge.c
17642
17643 USB AR5523 WIRELESS DRIVER
17644 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
17645 L:      linux-wireless@vger.kernel.org
17646 S:      Maintained
17647 F:      drivers/net/wireless/ath/ar5523/
17648
17649 USB ATTACHED SCSI
17650 M:      Oliver Neukum <oneukum@suse.com>
17651 L:      linux-usb@vger.kernel.org
17652 L:      linux-scsi@vger.kernel.org
17653 S:      Maintained
17654 F:      drivers/usb/storage/uas.c
17655
17656 USB CDC ETHERNET DRIVER
17657 M:      Oliver Neukum <oliver@neukum.org>
17658 L:      linux-usb@vger.kernel.org
17659 S:      Maintained
17660 F:      drivers/net/usb/cdc_*.c
17661 F:      include/uapi/linux/usb/cdc.h
17662
17663 USB CHAOSKEY DRIVER
17664 M:      Keith Packard <keithp@keithp.com>
17665 L:      linux-usb@vger.kernel.org
17666 S:      Maintained
17667 F:      drivers/usb/misc/chaoskey.c
17668
17669 USB CYPRESS C67X00 DRIVER
17670 M:      Peter Korsgaard <jacmet@sunsite.dk>
17671 L:      linux-usb@vger.kernel.org
17672 S:      Maintained
17673 F:      drivers/usb/c67x00/
17674
17675 USB DAVICOM DM9601 DRIVER
17676 M:      Peter Korsgaard <jacmet@sunsite.dk>
17677 L:      netdev@vger.kernel.org
17678 S:      Maintained
17679 W:      http://www.linux-usb.org/usbnet
17680 F:      drivers/net/usb/dm9601.c
17681
17682 USB EHCI DRIVER
17683 M:      Alan Stern <stern@rowland.harvard.edu>
17684 L:      linux-usb@vger.kernel.org
17685 S:      Maintained
17686 F:      Documentation/usb/ehci.rst
17687 F:      drivers/usb/host/ehci*
17688
17689 USB GADGET/PERIPHERAL SUBSYSTEM
17690 M:      Felipe Balbi <balbi@kernel.org>
17691 L:      linux-usb@vger.kernel.org
17692 S:      Maintained
17693 W:      http://www.linux-usb.org/gadget
17694 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17695 F:      drivers/usb/gadget/
17696 F:      include/linux/usb/gadget*
17697
17698 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
17699 M:      Jiri Kosina <jikos@kernel.org>
17700 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
17701 L:      linux-usb@vger.kernel.org
17702 S:      Maintained
17703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
17704 F:      Documentation/hid/hiddev.rst
17705 F:      drivers/hid/usbhid/
17706
17707 USB INTEL XHCI ROLE MUX DRIVER
17708 M:      Hans de Goede <hdegoede@redhat.com>
17709 L:      linux-usb@vger.kernel.org
17710 S:      Maintained
17711 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
17712
17713 USB IP DRIVER FOR HISILICON KIRIN
17714 M:      Yu Chen <chenyu56@huawei.com>
17715 M:      Binghui Wang <wangbinghui@hisilicon.com>
17716 L:      linux-usb@vger.kernel.org
17717 S:      Maintained
17718 F:      Documentation/devicetree/bindings/phy/phy-hi3660-usb3.txt
17719 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
17720
17721 USB ISP116X DRIVER
17722 M:      Olav Kongas <ok@artecdesign.ee>
17723 L:      linux-usb@vger.kernel.org
17724 S:      Maintained
17725 F:      drivers/usb/host/isp116x*
17726 F:      include/linux/usb/isp116x.h
17727
17728 USB LAN78XX ETHERNET DRIVER
17729 M:      Woojung Huh <woojung.huh@microchip.com>
17730 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
17731 L:      netdev@vger.kernel.org
17732 S:      Maintained
17733 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
17734 F:      drivers/net/usb/lan78xx.*
17735 F:      include/dt-bindings/net/microchip-lan78xx.h
17736
17737 USB MASS STORAGE DRIVER
17738 M:      Alan Stern <stern@rowland.harvard.edu>
17739 L:      linux-usb@vger.kernel.org
17740 L:      usb-storage@lists.one-eyed-alien.net
17741 S:      Maintained
17742 F:      drivers/usb/storage/
17743
17744 USB MIDI DRIVER
17745 M:      Clemens Ladisch <clemens@ladisch.de>
17746 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17747 S:      Maintained
17748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17749 F:      sound/usb/midi.*
17750
17751 USB NETWORKING DRIVERS
17752 L:      linux-usb@vger.kernel.org
17753 S:      Odd Fixes
17754 F:      drivers/net/usb/
17755
17756 USB OHCI DRIVER
17757 M:      Alan Stern <stern@rowland.harvard.edu>
17758 L:      linux-usb@vger.kernel.org
17759 S:      Maintained
17760 F:      Documentation/usb/ohci.rst
17761 F:      drivers/usb/host/ohci*
17762
17763 USB OTG FSM (Finite State Machine)
17764 M:      Peter Chen <Peter.Chen@nxp.com>
17765 L:      linux-usb@vger.kernel.org
17766 S:      Maintained
17767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
17768 F:      drivers/usb/common/usb-otg-fsm.c
17769
17770 USB OVER IP DRIVER
17771 M:      Valentina Manea <valentina.manea.m@gmail.com>
17772 M:      Shuah Khan <shuah@kernel.org>
17773 M:      Shuah Khan <skhan@linuxfoundation.org>
17774 L:      linux-usb@vger.kernel.org
17775 S:      Maintained
17776 F:      Documentation/usb/usbip_protocol.rst
17777 F:      drivers/usb/usbip/
17778 F:      tools/testing/selftests/drivers/usb/usbip/
17779 F:      tools/usb/usbip/
17780
17781 USB PEGASUS DRIVER
17782 M:      Petko Manolov <petkan@nucleusys.com>
17783 L:      linux-usb@vger.kernel.org
17784 L:      netdev@vger.kernel.org
17785 S:      Maintained
17786 W:      https://github.com/petkan/pegasus
17787 T:      git git://github.com/petkan/pegasus.git
17788 F:      drivers/net/usb/pegasus.*
17789
17790 USB PHY LAYER
17791 M:      Felipe Balbi <balbi@kernel.org>
17792 L:      linux-usb@vger.kernel.org
17793 S:      Maintained
17794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17795 F:      drivers/usb/phy/
17796
17797 USB PRINTER DRIVER (usblp)
17798 M:      Pete Zaitcev <zaitcev@redhat.com>
17799 L:      linux-usb@vger.kernel.org
17800 S:      Supported
17801 F:      drivers/usb/class/usblp.c
17802
17803 USB QMI WWAN NETWORK DRIVER
17804 M:      Bjørn Mork <bjorn@mork.no>
17805 L:      netdev@vger.kernel.org
17806 S:      Maintained
17807 F:      Documentation/ABI/testing/sysfs-class-net-qmi
17808 F:      drivers/net/usb/qmi_wwan.c
17809
17810 USB RTL8150 DRIVER
17811 M:      Petko Manolov <petkan@nucleusys.com>
17812 L:      linux-usb@vger.kernel.org
17813 L:      netdev@vger.kernel.org
17814 S:      Maintained
17815 W:      https://github.com/petkan/rtl8150
17816 T:      git git://github.com/petkan/rtl8150.git
17817 F:      drivers/net/usb/rtl8150.c
17818
17819 USB SERIAL SUBSYSTEM
17820 M:      Johan Hovold <johan@kernel.org>
17821 L:      linux-usb@vger.kernel.org
17822 S:      Maintained
17823 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
17824 F:      Documentation/usb/usb-serial.rst
17825 F:      drivers/usb/serial/
17826 F:      include/linux/usb/serial.h
17827
17828 USB SMSC75XX ETHERNET DRIVER
17829 M:      Steve Glendinning <steve.glendinning@shawell.net>
17830 L:      netdev@vger.kernel.org
17831 S:      Maintained
17832 F:      drivers/net/usb/smsc75xx.*
17833
17834 USB SMSC95XX ETHERNET DRIVER
17835 M:      Steve Glendinning <steve.glendinning@shawell.net>
17836 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
17837 L:      netdev@vger.kernel.org
17838 S:      Maintained
17839 F:      drivers/net/usb/smsc95xx.*
17840
17841 USB SUBSYSTEM
17842 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17843 L:      linux-usb@vger.kernel.org
17844 S:      Supported
17845 W:      http://www.linux-usb.org
17846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
17847 F:      Documentation/devicetree/bindings/usb/
17848 F:      Documentation/usb/
17849 F:      drivers/usb/
17850 F:      include/linux/usb.h
17851 F:      include/linux/usb/
17852
17853 USB TYPEC BUS FOR ALTERNATE MODES
17854 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17855 L:      linux-usb@vger.kernel.org
17856 S:      Maintained
17857 F:      Documentation/ABI/testing/sysfs-bus-typec
17858 F:      Documentation/driver-api/usb/typec_bus.rst
17859 F:      drivers/usb/typec/altmodes/
17860 F:      include/linux/usb/typec_altmode.h
17861
17862 USB TYPEC CLASS
17863 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17864 L:      linux-usb@vger.kernel.org
17865 S:      Maintained
17866 F:      Documentation/ABI/testing/sysfs-class-typec
17867 F:      Documentation/driver-api/usb/typec.rst
17868 F:      drivers/usb/typec/
17869 F:      include/linux/usb/typec.h
17870
17871 USB TYPEC INTEL PMC MUX DRIVER
17872 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17873 L:      linux-usb@vger.kernel.org
17874 S:      Maintained
17875 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
17876 F:      drivers/usb/typec/mux/intel_pmc_mux.c
17877
17878 USB TYPEC PI3USB30532 MUX DRIVER
17879 M:      Hans de Goede <hdegoede@redhat.com>
17880 L:      linux-usb@vger.kernel.org
17881 S:      Maintained
17882 F:      drivers/usb/typec/mux/pi3usb30532.c
17883
17884 USB TYPEC PORT CONTROLLER DRIVERS
17885 M:      Guenter Roeck <linux@roeck-us.net>
17886 L:      linux-usb@vger.kernel.org
17887 S:      Maintained
17888 F:      drivers/usb/typec/tcpm/
17889
17890 USB UHCI DRIVER
17891 M:      Alan Stern <stern@rowland.harvard.edu>
17892 L:      linux-usb@vger.kernel.org
17893 S:      Maintained
17894 F:      drivers/usb/host/uhci*
17895
17896 USB VIDEO CLASS
17897 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17898 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
17899 L:      linux-media@vger.kernel.org
17900 S:      Maintained
17901 W:      http://www.ideasonboard.org/uvc/
17902 T:      git git://linuxtv.org/media_tree.git
17903 F:      drivers/media/usb/uvc/
17904 F:      include/uapi/linux/uvcvideo.h
17905
17906 USB VISION DRIVER
17907 M:      Hans Verkuil <hverkuil@xs4all.nl>
17908 L:      linux-media@vger.kernel.org
17909 S:      Odd Fixes
17910 W:      https://linuxtv.org
17911 T:      git git://linuxtv.org/media_tree.git
17912 F:      drivers/staging/media/usbvision/
17913
17914 USB WEBCAM GADGET
17915 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17916 L:      linux-usb@vger.kernel.org
17917 S:      Maintained
17918 F:      drivers/usb/gadget/function/*uvc*
17919 F:      drivers/usb/gadget/legacy/webcam.c
17920 F:      include/uapi/linux/usb/g_uvc.h
17921
17922 USB WIRELESS RNDIS DRIVER (rndis_wlan)
17923 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
17924 L:      linux-wireless@vger.kernel.org
17925 S:      Maintained
17926 F:      drivers/net/wireless/rndis_wlan.c
17927
17928 USB XHCI DRIVER
17929 M:      Mathias Nyman <mathias.nyman@intel.com>
17930 L:      linux-usb@vger.kernel.org
17931 S:      Supported
17932 F:      drivers/usb/host/pci-quirks*
17933 F:      drivers/usb/host/xhci*
17934
17935 USB ZD1201 DRIVER
17936 L:      linux-wireless@vger.kernel.org
17937 S:      Orphan
17938 W:      http://linux-lc100020.sourceforge.net
17939 F:      drivers/net/wireless/zydas/zd1201.*
17940
17941 USB ZR364XX DRIVER
17942 M:      Antoine Jacquet <royale@zerezo.com>
17943 L:      linux-usb@vger.kernel.org
17944 L:      linux-media@vger.kernel.org
17945 S:      Maintained
17946 W:      http://royale.zerezo.com/zr364xx/
17947 T:      git git://linuxtv.org/media_tree.git
17948 F:      Documentation/admin-guide/media/zr364xx*
17949 F:      drivers/media/usb/zr364xx/
17950
17951 USER-MODE LINUX (UML)
17952 M:      Jeff Dike <jdike@addtoit.com>
17953 M:      Richard Weinberger <richard@nod.at>
17954 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
17955 L:      linux-um@lists.infradead.org
17956 S:      Maintained
17957 W:      http://user-mode-linux.sourceforge.net
17958 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
17959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
17960 F:      Documentation/virt/uml/
17961 F:      arch/um/
17962 F:      arch/x86/um/
17963 F:      fs/hostfs/
17964
17965 USERSPACE COPYIN/COPYOUT (UIOVEC)
17966 M:      Alexander Viro <viro@zeniv.linux.org.uk>
17967 S:      Maintained
17968 F:      include/linux/uio.h
17969 F:      lib/iov_iter.c
17970
17971 USERSPACE DMA BUFFER DRIVER
17972 M:      Gerd Hoffmann <kraxel@redhat.com>
17973 L:      dri-devel@lists.freedesktop.org
17974 S:      Maintained
17975 T:      git git://anongit.freedesktop.org/drm/drm-misc
17976 F:      drivers/dma-buf/udmabuf.c
17977 F:      include/uapi/linux/udmabuf.h
17978
17979 USERSPACE I/O (UIO)
17980 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17981 S:      Maintained
17982 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17983 F:      Documentation/driver-api/uio-howto.rst
17984 F:      drivers/uio/
17985 F:      include/linux/uio_driver.h
17986
17987 UTIL-LINUX PACKAGE
17988 M:      Karel Zak <kzak@redhat.com>
17989 L:      util-linux@vger.kernel.org
17990 S:      Maintained
17991 W:      http://en.wikipedia.org/wiki/Util-linux
17992 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
17993
17994 UUID HELPERS
17995 M:      Christoph Hellwig <hch@lst.de>
17996 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17997 L:      linux-kernel@vger.kernel.org
17998 S:      Maintained
17999 T:      git git://git.infradead.org/users/hch/uuid.git
18000 F:      include/linux/uuid.h
18001 F:      include/uapi/linux/uuid.h
18002 F:      lib/test_uuid.c
18003 F:      lib/uuid.c
18004
18005 UVESAFB DRIVER
18006 M:      Michal Januszewski <spock@gentoo.org>
18007 L:      linux-fbdev@vger.kernel.org
18008 S:      Maintained
18009 W:      https://github.com/mjanusz/v86d
18010 F:      Documentation/fb/uvesafb.rst
18011 F:      drivers/video/fbdev/uvesafb.*
18012
18013 Ux500 CLOCK DRIVERS
18014 M:      Ulf Hansson <ulf.hansson@linaro.org>
18015 L:      linux-clk@vger.kernel.org
18016 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18017 S:      Maintained
18018 F:      drivers/clk/ux500/
18019
18020 VF610 NAND DRIVER
18021 M:      Stefan Agner <stefan@agner.ch>
18022 L:      linux-mtd@lists.infradead.org
18023 S:      Supported
18024 F:      drivers/mtd/nand/raw/vf610_nfc.c
18025
18026 VFAT/FAT/MSDOS FILESYSTEM
18027 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
18028 S:      Maintained
18029 F:      Documentation/filesystems/vfat.rst
18030 F:      fs/fat/
18031
18032 VFIO DRIVER
18033 M:      Alex Williamson <alex.williamson@redhat.com>
18034 R:      Cornelia Huck <cohuck@redhat.com>
18035 L:      kvm@vger.kernel.org
18036 S:      Maintained
18037 T:      git git://github.com/awilliam/linux-vfio.git
18038 F:      Documentation/driver-api/vfio.rst
18039 F:      drivers/vfio/
18040 F:      include/linux/vfio.h
18041 F:      include/uapi/linux/vfio.h
18042
18043 VFIO MEDIATED DEVICE DRIVERS
18044 M:      Kirti Wankhede <kwankhede@nvidia.com>
18045 L:      kvm@vger.kernel.org
18046 S:      Maintained
18047 F:      Documentation/driver-api/vfio-mediated-device.rst
18048 F:      drivers/vfio/mdev/
18049 F:      include/linux/mdev.h
18050 F:      samples/vfio-mdev/
18051
18052 VFIO PLATFORM DRIVER
18053 M:      Eric Auger <eric.auger@redhat.com>
18054 L:      kvm@vger.kernel.org
18055 S:      Maintained
18056 F:      drivers/vfio/platform/
18057
18058 VGA_SWITCHEROO
18059 R:      Lukas Wunner <lukas@wunner.de>
18060 S:      Maintained
18061 T:      git git://anongit.freedesktop.org/drm/drm-misc
18062 F:      Documentation/gpu/vga-switcheroo.rst
18063 F:      drivers/gpu/vga/vga_switcheroo.c
18064 F:      include/linux/vga_switcheroo.h
18065
18066 VIA RHINE NETWORK DRIVER
18067 S:      Orphan
18068 F:      drivers/net/ethernet/via/via-rhine.c
18069
18070 VIA SD/MMC CARD CONTROLLER DRIVER
18071 M:      Bruce Chang <brucechang@via.com.tw>
18072 M:      Harald Welte <HaraldWelte@viatech.com>
18073 S:      Maintained
18074 F:      drivers/mmc/host/via-sdmmc.c
18075
18076 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
18077 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
18078 L:      linux-fbdev@vger.kernel.org
18079 S:      Maintained
18080 F:      drivers/video/fbdev/via/
18081 F:      include/linux/via-core.h
18082 F:      include/linux/via-gpio.h
18083 F:      include/linux/via_i2c.h
18084
18085 VIA VELOCITY NETWORK DRIVER
18086 M:      Francois Romieu <romieu@fr.zoreil.com>
18087 L:      netdev@vger.kernel.org
18088 S:      Maintained
18089 F:      drivers/net/ethernet/via/via-velocity.*
18090
18091 VICODEC VIRTUAL CODEC DRIVER
18092 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
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/vicodec/*
18098
18099 VIDEO I2C POLLING DRIVER
18100 M:      Matt Ranostay <matt.ranostay@konsulko.com>
18101 L:      linux-media@vger.kernel.org
18102 S:      Maintained
18103 F:      drivers/media/i2c/video-i2c.c
18104
18105 VIDEO MULTIPLEXER DRIVER
18106 M:      Philipp Zabel <p.zabel@pengutronix.de>
18107 L:      linux-media@vger.kernel.org
18108 S:      Maintained
18109 F:      drivers/media/platform/video-mux.c
18110
18111 VIDEOBUF2 FRAMEWORK
18112 M:      Pawel Osciak <pawel@osciak.com>
18113 M:      Marek Szyprowski <m.szyprowski@samsung.com>
18114 M:      Kyungmin Park <kyungmin.park@samsung.com>
18115 R:      Tomasz Figa <tfiga@chromium.org>
18116 L:      linux-media@vger.kernel.org
18117 S:      Maintained
18118 F:      drivers/media/common/videobuf2/*
18119 F:      include/media/videobuf2-*
18120
18121 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
18122 M:      Helen Koike <helen.koike@collabora.com>
18123 R:      Shuah Khan <skhan@linuxfoundation.org>
18124 L:      linux-media@vger.kernel.org
18125 S:      Maintained
18126 W:      https://linuxtv.org
18127 T:      git git://linuxtv.org/media_tree.git
18128 F:      drivers/media/test-drivers/vimc/*
18129
18130 VIRT LIB
18131 M:      Alex Williamson <alex.williamson@redhat.com>
18132 M:      Paolo Bonzini <pbonzini@redhat.com>
18133 L:      kvm@vger.kernel.org
18134 S:      Supported
18135 F:      virt/lib/
18136
18137 VIRTIO AND VHOST VSOCK DRIVER
18138 M:      Stefan Hajnoczi <stefanha@redhat.com>
18139 M:      Stefano Garzarella <sgarzare@redhat.com>
18140 L:      kvm@vger.kernel.org
18141 L:      virtualization@lists.linux-foundation.org
18142 L:      netdev@vger.kernel.org
18143 S:      Maintained
18144 F:      drivers/net/vsockmon.c
18145 F:      drivers/vhost/vsock.c
18146 F:      include/linux/virtio_vsock.h
18147 F:      include/uapi/linux/virtio_vsock.h
18148 F:      include/uapi/linux/vm_sockets_diag.h
18149 F:      include/uapi/linux/vsockmon.h
18150 F:      net/vmw_vsock/af_vsock_tap.c
18151 F:      net/vmw_vsock/diag.c
18152 F:      net/vmw_vsock/virtio_transport.c
18153 F:      net/vmw_vsock/virtio_transport_common.c
18154 F:      net/vmw_vsock/vsock_loopback.c
18155 F:      tools/testing/vsock/
18156
18157 VIRTIO BLOCK AND SCSI DRIVERS
18158 M:      "Michael S. Tsirkin" <mst@redhat.com>
18159 M:      Jason Wang <jasowang@redhat.com>
18160 R:      Paolo Bonzini <pbonzini@redhat.com>
18161 R:      Stefan Hajnoczi <stefanha@redhat.com>
18162 L:      virtualization@lists.linux-foundation.org
18163 S:      Maintained
18164 F:      drivers/block/virtio_blk.c
18165 F:      drivers/scsi/virtio_scsi.c
18166 F:      drivers/vhost/scsi.c
18167 F:      include/uapi/linux/virtio_blk.h
18168 F:      include/uapi/linux/virtio_scsi.h
18169
18170 VIRTIO CONSOLE DRIVER
18171 M:      Amit Shah <amit@kernel.org>
18172 L:      virtualization@lists.linux-foundation.org
18173 S:      Maintained
18174 F:      drivers/char/virtio_console.c
18175 F:      include/linux/virtio_console.h
18176 F:      include/uapi/linux/virtio_console.h
18177
18178 VIRTIO CORE AND NET DRIVERS
18179 M:      "Michael S. Tsirkin" <mst@redhat.com>
18180 M:      Jason Wang <jasowang@redhat.com>
18181 L:      virtualization@lists.linux-foundation.org
18182 S:      Maintained
18183 F:      Documentation/devicetree/bindings/virtio/
18184 F:      drivers/block/virtio_blk.c
18185 F:      drivers/crypto/virtio/
18186 F:      drivers/net/virtio_net.c
18187 F:      drivers/vdpa/
18188 F:      drivers/virtio/
18189 F:      include/linux/vdpa.h
18190 F:      include/linux/virtio*.h
18191 F:      include/uapi/linux/virtio_*.h
18192 F:      tools/virtio/
18193
18194 VIRTIO BALLOON
18195 M:      "Michael S. Tsirkin" <mst@redhat.com>
18196 M:      David Hildenbrand <david@redhat.com>
18197 L:      virtualization@lists.linux-foundation.org
18198 S:      Maintained
18199 F:      drivers/virtio/virtio_balloon.c
18200 F:      include/uapi/linux/virtio_balloon.h
18201 F:      include/linux/balloon_compaction.h
18202 F:      mm/balloon_compaction.c
18203
18204 VIRTIO CRYPTO DRIVER
18205 M:      Gonglei <arei.gonglei@huawei.com>
18206 L:      virtualization@lists.linux-foundation.org
18207 L:      linux-crypto@vger.kernel.org
18208 S:      Maintained
18209 F:      drivers/crypto/virtio/
18210 F:      include/uapi/linux/virtio_crypto.h
18211
18212 VIRTIO DRIVERS FOR S390
18213 M:      Cornelia Huck <cohuck@redhat.com>
18214 M:      Halil Pasic <pasic@linux.ibm.com>
18215 L:      linux-s390@vger.kernel.org
18216 L:      virtualization@lists.linux-foundation.org
18217 L:      kvm@vger.kernel.org
18218 S:      Supported
18219 F:      arch/s390/include/uapi/asm/virtio-ccw.h
18220 F:      drivers/s390/virtio/
18221
18222 VIRTIO FILE SYSTEM
18223 M:      Vivek Goyal <vgoyal@redhat.com>
18224 M:      Stefan Hajnoczi <stefanha@redhat.com>
18225 M:      Miklos Szeredi <miklos@szeredi.hu>
18226 L:      virtualization@lists.linux-foundation.org
18227 L:      linux-fsdevel@vger.kernel.org
18228 S:      Supported
18229 W:      https://virtio-fs.gitlab.io/
18230 F:      Documentation/filesystems/virtiofs.rst
18231 F:      fs/fuse/virtio_fs.c
18232 F:      include/uapi/linux/virtio_fs.h
18233
18234 VIRTIO GPU DRIVER
18235 M:      David Airlie <airlied@linux.ie>
18236 M:      Gerd Hoffmann <kraxel@redhat.com>
18237 L:      dri-devel@lists.freedesktop.org
18238 L:      virtualization@lists.linux-foundation.org
18239 S:      Maintained
18240 T:      git git://anongit.freedesktop.org/drm/drm-misc
18241 F:      drivers/gpu/drm/virtio/
18242 F:      include/uapi/linux/virtio_gpu.h
18243
18244 VIRTIO HOST (VHOST)
18245 M:      "Michael S. Tsirkin" <mst@redhat.com>
18246 M:      Jason Wang <jasowang@redhat.com>
18247 L:      kvm@vger.kernel.org
18248 L:      virtualization@lists.linux-foundation.org
18249 L:      netdev@vger.kernel.org
18250 S:      Maintained
18251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
18252 F:      drivers/vhost/
18253 F:      include/linux/vhost_iotlb.h
18254 F:      include/uapi/linux/vhost.h
18255
18256 VIRTIO INPUT DRIVER
18257 M:      Gerd Hoffmann <kraxel@redhat.com>
18258 S:      Maintained
18259 F:      drivers/virtio/virtio_input.c
18260 F:      include/uapi/linux/virtio_input.h
18261
18262 VIRTIO IOMMU DRIVER
18263 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
18264 L:      virtualization@lists.linux-foundation.org
18265 S:      Maintained
18266 F:      drivers/iommu/virtio-iommu.c
18267 F:      include/uapi/linux/virtio_iommu.h
18268
18269 VIRTIO MEM DRIVER
18270 M:      David Hildenbrand <david@redhat.com>
18271 L:      virtualization@lists.linux-foundation.org
18272 S:      Maintained
18273 F:      drivers/virtio/virtio_mem.c
18274 F:      include/uapi/linux/virtio_mem.h
18275
18276 VIRTUAL BOX GUEST DEVICE DRIVER
18277 M:      Hans de Goede <hdegoede@redhat.com>
18278 M:      Arnd Bergmann <arnd@arndb.de>
18279 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18280 S:      Maintained
18281 F:      drivers/virt/vboxguest/
18282 F:      include/linux/vbox_utils.h
18283 F:      include/uapi/linux/vbox*.h
18284
18285 VIRTUAL BOX SHARED FOLDER VFS DRIVER
18286 M:      Hans de Goede <hdegoede@redhat.com>
18287 L:      linux-fsdevel@vger.kernel.org
18288 S:      Maintained
18289 F:      fs/vboxsf/*
18290
18291 VIRTUAL SERIO DEVICE DRIVER
18292 M:      Stephen Chandler Paul <thatslyude@gmail.com>
18293 S:      Maintained
18294 F:      drivers/input/serio/userio.c
18295 F:      include/uapi/linux/userio.h
18296
18297 VIVID VIRTUAL VIDEO DRIVER
18298 M:      Hans Verkuil <hverkuil@xs4all.nl>
18299 L:      linux-media@vger.kernel.org
18300 S:      Maintained
18301 W:      https://linuxtv.org
18302 T:      git git://linuxtv.org/media_tree.git
18303 F:      drivers/media/test-drivers/vivid/*
18304
18305 VLYNQ BUS
18306 M:      Florian Fainelli <f.fainelli@gmail.com>
18307 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
18308 S:      Maintained
18309 F:      drivers/vlynq/vlynq.c
18310 F:      include/linux/vlynq.h
18311
18312 VME SUBSYSTEM
18313 M:      Martyn Welch <martyn@welchs.me.uk>
18314 M:      Manohar Vanga <manohar.vanga@gmail.com>
18315 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18316 L:      devel@driverdev.osuosl.org
18317 S:      Maintained
18318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18319 F:      Documentation/driver-api/vme.rst
18320 F:      drivers/staging/vme/
18321 F:      drivers/vme/
18322 F:      include/linux/vme*
18323
18324 VMWARE BALLOON DRIVER
18325 M:      Nadav Amit <namit@vmware.com>
18326 M:      "VMware, Inc." <pv-drivers@vmware.com>
18327 L:      linux-kernel@vger.kernel.org
18328 S:      Maintained
18329 F:      drivers/misc/vmw_balloon.c
18330
18331 VMWARE HYPERVISOR INTERFACE
18332 M:      Deep Shah <sdeep@vmware.com>
18333 M:      "VMware, Inc." <pv-drivers@vmware.com>
18334 L:      virtualization@lists.linux-foundation.org
18335 S:      Supported
18336 F:      arch/x86/include/asm/vmware.h
18337 F:      arch/x86/kernel/cpu/vmware.c
18338
18339 VMWARE PVRDMA DRIVER
18340 M:      Adit Ranadive <aditr@vmware.com>
18341 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18342 L:      linux-rdma@vger.kernel.org
18343 S:      Maintained
18344 F:      drivers/infiniband/hw/vmw_pvrdma/
18345
18346 VMware PVSCSI driver
18347 M:      Jim Gill <jgill@vmware.com>
18348 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18349 L:      linux-scsi@vger.kernel.org
18350 S:      Maintained
18351 F:      drivers/scsi/vmw_pvscsi.c
18352 F:      drivers/scsi/vmw_pvscsi.h
18353
18354 VMWARE VIRTUAL PTP CLOCK DRIVER
18355 M:      Vivek Thampi <vithampi@vmware.com>
18356 M:      "VMware, Inc." <pv-drivers@vmware.com>
18357 L:      netdev@vger.kernel.org
18358 S:      Supported
18359 F:      drivers/ptp/ptp_vmw.c
18360
18361 VMWARE VMMOUSE SUBDRIVER
18362 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
18363 M:      "VMware, Inc." <pv-drivers@vmware.com>
18364 L:      linux-input@vger.kernel.org
18365 S:      Maintained
18366 F:      drivers/input/mouse/vmmouse.c
18367 F:      drivers/input/mouse/vmmouse.h
18368
18369 VMWARE VMXNET3 ETHERNET DRIVER
18370 M:      Ronak Doshi <doshir@vmware.com>
18371 M:      "VMware, Inc." <pv-drivers@vmware.com>
18372 L:      netdev@vger.kernel.org
18373 S:      Maintained
18374 F:      drivers/net/vmxnet3/
18375
18376 VOCORE VOCORE2 BOARD
18377 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
18378 L:      linux-mips@vger.kernel.org
18379 S:      Maintained
18380 F:      arch/mips/boot/dts/ralink/vocore2.dts
18381
18382 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
18383 M:      Liam Girdwood <lgirdwood@gmail.com>
18384 M:      Mark Brown <broonie@kernel.org>
18385 L:      linux-kernel@vger.kernel.org
18386 S:      Supported
18387 W:      http://www.slimlogic.co.uk/?p=48
18388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
18389 F:      Documentation/devicetree/bindings/regulator/
18390 F:      Documentation/power/regulator/
18391 F:      drivers/regulator/
18392 F:      include/dt-bindings/regulator/
18393 F:      include/linux/regulator/
18394 K:      regulator_get_optional
18395
18396 VRF
18397 M:      David Ahern <dsahern@kernel.org>
18398 M:      Shrijeet Mukherjee <shrijeet@gmail.com>
18399 L:      netdev@vger.kernel.org
18400 S:      Maintained
18401 F:      Documentation/networking/vrf.rst
18402 F:      drivers/net/vrf.c
18403
18404 VSPRINTF
18405 M:      Petr Mladek <pmladek@suse.com>
18406 M:      Steven Rostedt <rostedt@goodmis.org>
18407 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
18408 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18409 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
18410 S:      Maintained
18411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
18412 F:      Documentation/core-api/printk-formats.rst
18413 F:      lib/test_printf.c
18414 F:      lib/vsprintf.c
18415
18416 VT1211 HARDWARE MONITOR DRIVER
18417 M:      Juerg Haefliger <juergh@gmail.com>
18418 L:      linux-hwmon@vger.kernel.org
18419 S:      Maintained
18420 F:      Documentation/hwmon/vt1211.rst
18421 F:      drivers/hwmon/vt1211.c
18422
18423 VT8231 HARDWARE MONITOR DRIVER
18424 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
18425 L:      linux-hwmon@vger.kernel.org
18426 S:      Maintained
18427 F:      drivers/hwmon/vt8231.c
18428
18429 VUB300 USB to SDIO/SD/MMC bridge chip
18430 L:      linux-mmc@vger.kernel.org
18431 S:      Orphan
18432 F:      drivers/mmc/host/vub300.c
18433
18434 W1 DALLAS'S 1-WIRE BUS
18435 M:      Evgeniy Polyakov <zbr@ioremap.net>
18436 S:      Maintained
18437 F:      Documentation/devicetree/bindings/w1/
18438 F:      Documentation/w1/
18439 F:      drivers/w1/
18440 F:      include/linux/w1.h
18441
18442 W83791D HARDWARE MONITORING DRIVER
18443 M:      Marc Hulsman <m.hulsman@tudelft.nl>
18444 L:      linux-hwmon@vger.kernel.org
18445 S:      Maintained
18446 F:      Documentation/hwmon/w83791d.rst
18447 F:      drivers/hwmon/w83791d.c
18448
18449 W83793 HARDWARE MONITORING DRIVER
18450 M:      Rudolf Marek <r.marek@assembler.cz>
18451 L:      linux-hwmon@vger.kernel.org
18452 S:      Maintained
18453 F:      Documentation/hwmon/w83793.rst
18454 F:      drivers/hwmon/w83793.c
18455
18456 W83795 HARDWARE MONITORING DRIVER
18457 M:      Jean Delvare <jdelvare@suse.com>
18458 L:      linux-hwmon@vger.kernel.org
18459 S:      Maintained
18460 F:      drivers/hwmon/w83795.c
18461
18462 W83L51xD SD/MMC CARD INTERFACE DRIVER
18463 M:      Pierre Ossman <pierre@ossman.eu>
18464 S:      Maintained
18465 F:      drivers/mmc/host/wbsd.*
18466
18467 WACOM PROTOCOL 4 SERIAL TABLETS
18468 M:      Julian Squires <julian@cipht.net>
18469 M:      Hans de Goede <hdegoede@redhat.com>
18470 L:      linux-input@vger.kernel.org
18471 S:      Maintained
18472 F:      drivers/input/tablet/wacom_serial4.c
18473
18474 WATCHDOG DEVICE DRIVERS
18475 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
18476 M:      Guenter Roeck <linux@roeck-us.net>
18477 L:      linux-watchdog@vger.kernel.org
18478 S:      Maintained
18479 W:      http://www.linux-watchdog.org/
18480 T:      git git://www.linux-watchdog.org/linux-watchdog.git
18481 F:      Documentation/devicetree/bindings/watchdog/
18482 F:      Documentation/watchdog/
18483 F:      drivers/watchdog/
18484 F:      include/linux/watchdog.h
18485 F:      include/uapi/linux/watchdog.h
18486
18487 WHISKEYCOVE PMIC GPIO DRIVER
18488 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
18489 L:      linux-gpio@vger.kernel.org
18490 S:      Maintained
18491 F:      drivers/gpio/gpio-wcove.c
18492
18493 WHWAVE RTC DRIVER
18494 M:      Dianlong Li <long17.cool@163.com>
18495 L:      linux-rtc@vger.kernel.org
18496 S:      Maintained
18497 F:      drivers/rtc/rtc-sd3078.c
18498
18499 WIIMOTE HID DRIVER
18500 M:      David Herrmann <dh.herrmann@googlemail.com>
18501 L:      linux-input@vger.kernel.org
18502 S:      Maintained
18503 F:      drivers/hid/hid-wiimote*
18504
18505 WILOCITY WIL6210 WIRELESS DRIVER
18506 M:      Maya Erez <merez@codeaurora.org>
18507 L:      linux-wireless@vger.kernel.org
18508 L:      wil6210@qti.qualcomm.com
18509 S:      Supported
18510 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
18511 F:      drivers/net/wireless/ath/wil6210/
18512
18513 WIMAX STACK
18514 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
18515 M:      linux-wimax@intel.com
18516 L:      wimax@linuxwimax.org (subscribers-only)
18517 S:      Supported
18518 W:      http://linuxwimax.org
18519 F:      Documentation/admin-guide/wimax/wimax.rst
18520 F:      include/linux/wimax/debug.h
18521 F:      include/net/wimax.h
18522 F:      include/uapi/linux/wimax.h
18523 F:      net/wimax/
18524
18525 WINBOND CIR DRIVER
18526 M:      David Härdeman <david@hardeman.nu>
18527 S:      Maintained
18528 F:      drivers/media/rc/winbond-cir.c
18529
18530 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
18531 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
18532 L:      linux-watchdog@vger.kernel.org
18533 S:      Maintained
18534 F:      drivers/watchdog/ebc-c384_wdt.c
18535
18536 WINSYSTEMS WS16C48 GPIO DRIVER
18537 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
18538 L:      linux-gpio@vger.kernel.org
18539 S:      Maintained
18540 F:      drivers/gpio/gpio-ws16c48.c
18541
18542 WIREGUARD SECURE NETWORK TUNNEL
18543 M:      Jason A. Donenfeld <Jason@zx2c4.com>
18544 L:      wireguard@lists.zx2c4.com
18545 L:      netdev@vger.kernel.org
18546 S:      Maintained
18547 F:      drivers/net/wireguard/
18548 F:      tools/testing/selftests/wireguard/
18549
18550 WISTRON LAPTOP BUTTON DRIVER
18551 M:      Miloslav Trmac <mitr@volny.cz>
18552 S:      Maintained
18553 F:      drivers/input/misc/wistron_btns.c
18554
18555 WL3501 WIRELESS PCMCIA CARD DRIVER
18556 L:      linux-wireless@vger.kernel.org
18557 S:      Odd fixes
18558 F:      drivers/net/wireless/wl3501*
18559
18560 WOLFSON MICROELECTRONICS DRIVERS
18561 L:      patches@opensource.cirrus.com
18562 S:      Supported
18563 W:      https://github.com/CirrusLogic/linux-drivers/wiki
18564 T:      git https://github.com/CirrusLogic/linux-drivers.git
18565 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
18566 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
18567 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
18568 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
18569 F:      Documentation/devicetree/bindings/sound/wlf,arizona.yaml
18570 F:      Documentation/hwmon/wm83??.rst
18571 F:      arch/arm/mach-s3c64xx/mach-crag6410*
18572 F:      drivers/clk/clk-wm83*.c
18573 F:      drivers/extcon/extcon-arizona.c
18574 F:      drivers/gpio/gpio-*wm*.c
18575 F:      drivers/gpio/gpio-arizona.c
18576 F:      drivers/hwmon/wm83??-hwmon.c
18577 F:      drivers/input/misc/wm831x-on.c
18578 F:      drivers/input/touchscreen/wm831x-ts.c
18579 F:      drivers/input/touchscreen/wm97*.c
18580 F:      drivers/leds/leds-wm83*.c
18581 F:      drivers/mfd/arizona*
18582 F:      drivers/mfd/cs47l24*
18583 F:      drivers/mfd/wm*.c
18584 F:      drivers/power/supply/wm83*.c
18585 F:      drivers/regulator/arizona*
18586 F:      drivers/regulator/wm8*.c
18587 F:      drivers/rtc/rtc-wm83*.c
18588 F:      drivers/video/backlight/wm83*_bl.c
18589 F:      drivers/watchdog/wm83*_wdt.c
18590 F:      include/linux/mfd/arizona/
18591 F:      include/linux/mfd/wm831x/
18592 F:      include/linux/mfd/wm8350/
18593 F:      include/linux/mfd/wm8400*
18594 F:      include/linux/regulator/arizona*
18595 F:      include/linux/wm97xx.h
18596 F:      include/sound/wm????.h
18597 F:      sound/soc/codecs/arizona.?
18598 F:      sound/soc/codecs/cs47l24*
18599 F:      sound/soc/codecs/wm*
18600
18601 WORKQUEUE
18602 M:      Tejun Heo <tj@kernel.org>
18603 R:      Lai Jiangshan <jiangshanlai@gmail.com>
18604 S:      Maintained
18605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
18606 F:      Documentation/core-api/workqueue.rst
18607 F:      include/linux/workqueue.h
18608 F:      kernel/workqueue.c
18609
18610 X-POWERS AXP288 PMIC DRIVERS
18611 M:      Hans de Goede <hdegoede@redhat.com>
18612 S:      Maintained
18613 F:      drivers/acpi/pmic/intel_pmic_xpower.c
18614 N:      axp288
18615
18616 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
18617 M:      Chen-Yu Tsai <wens@csie.org>
18618 L:      linux-kernel@vger.kernel.org
18619 S:      Maintained
18620 N:      axp[128]
18621
18622 X.25 NETWORK LAYER
18623 M:      Andrew Hendry <andrew.hendry@gmail.com>
18624 L:      linux-x25@vger.kernel.org
18625 S:      Odd Fixes
18626 F:      Documentation/networking/x25*
18627 F:      include/net/x25*
18628 F:      net/x25/
18629
18630 X86 ARCHITECTURE (32-BIT AND 64-BIT)
18631 M:      Thomas Gleixner <tglx@linutronix.de>
18632 M:      Ingo Molnar <mingo@redhat.com>
18633 M:      Borislav Petkov <bp@alien8.de>
18634 M:      x86@kernel.org
18635 R:      "H. Peter Anvin" <hpa@zytor.com>
18636 L:      linux-kernel@vger.kernel.org
18637 S:      Maintained
18638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18639 F:      Documentation/devicetree/bindings/x86/
18640 F:      Documentation/x86/
18641 F:      arch/x86/
18642
18643 X86 ENTRY CODE
18644 M:      Andy Lutomirski <luto@kernel.org>
18645 L:      linux-kernel@vger.kernel.org
18646 S:      Maintained
18647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
18648 F:      arch/x86/entry/
18649
18650 X86 MCE INFRASTRUCTURE
18651 M:      Tony Luck <tony.luck@intel.com>
18652 M:      Borislav Petkov <bp@alien8.de>
18653 L:      linux-edac@vger.kernel.org
18654 S:      Maintained
18655 F:      arch/x86/kernel/cpu/mce/*
18656
18657 X86 MICROCODE UPDATE SUPPORT
18658 M:      Borislav Petkov <bp@alien8.de>
18659 S:      Maintained
18660 F:      arch/x86/kernel/cpu/microcode/*
18661
18662 X86 MM
18663 M:      Dave Hansen <dave.hansen@linux.intel.com>
18664 M:      Andy Lutomirski <luto@kernel.org>
18665 M:      Peter Zijlstra <peterz@infradead.org>
18666 L:      linux-kernel@vger.kernel.org
18667 S:      Maintained
18668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
18669 F:      arch/x86/mm/
18670
18671 X86 PLATFORM DRIVERS
18672 M:      Darren Hart <dvhart@infradead.org>
18673 M:      Andy Shevchenko <andy@infradead.org>
18674 L:      platform-driver-x86@vger.kernel.org
18675 S:      Odd Fixes
18676 T:      git git://git.infradead.org/linux-platform-drivers-x86.git
18677 F:      drivers/platform/olpc/
18678 F:      drivers/platform/x86/
18679
18680 X86 PLATFORM DRIVERS - ARCH
18681 R:      Darren Hart <dvhart@infradead.org>
18682 R:      Andy Shevchenko <andy@infradead.org>
18683 L:      platform-driver-x86@vger.kernel.org
18684 L:      x86@kernel.org
18685 S:      Maintained
18686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18687 F:      arch/x86/platform
18688
18689 X86 VDSO
18690 M:      Andy Lutomirski <luto@kernel.org>
18691 L:      linux-kernel@vger.kernel.org
18692 S:      Maintained
18693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
18694 F:      arch/x86/entry/vdso/
18695
18696 XARRAY
18697 M:      Matthew Wilcox <willy@infradead.org>
18698 L:      linux-fsdevel@vger.kernel.org
18699 S:      Supported
18700 F:      Documentation/core-api/xarray.rst
18701 F:      include/linux/idr.h
18702 F:      include/linux/xarray.h
18703 F:      lib/idr.c
18704 F:      lib/xarray.c
18705 F:      tools/testing/radix-tree
18706
18707 XBOX DVD IR REMOTE
18708 M:      Benjamin Valentin <benpicco@googlemail.com>
18709 S:      Maintained
18710 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
18711 F:      drivers/media/rc/xbox_remote.c
18712
18713 XC2028/3028 TUNER DRIVER
18714 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18715 L:      linux-media@vger.kernel.org
18716 S:      Maintained
18717 W:      https://linuxtv.org
18718 T:      git git://linuxtv.org/media_tree.git
18719 F:      drivers/media/tuners/tuner-xc2028.*
18720
18721 XDP (eXpress Data Path)
18722 M:      Alexei Starovoitov <ast@kernel.org>
18723 M:      Daniel Borkmann <daniel@iogearbox.net>
18724 M:      David S. Miller <davem@davemloft.net>
18725 M:      Jakub Kicinski <kuba@kernel.org>
18726 M:      Jesper Dangaard Brouer <hawk@kernel.org>
18727 M:      John Fastabend <john.fastabend@gmail.com>
18728 L:      netdev@vger.kernel.org
18729 L:      bpf@vger.kernel.org
18730 S:      Supported
18731 F:      include/net/xdp.h
18732 F:      include/trace/events/xdp.h
18733 F:      kernel/bpf/cpumap.c
18734 F:      kernel/bpf/devmap.c
18735 F:      net/core/xdp.c
18736 N:      xdp
18737 K:      xdp
18738
18739 XDP SOCKETS (AF_XDP)
18740 M:      Björn Töpel <bjorn.topel@intel.com>
18741 M:      Magnus Karlsson <magnus.karlsson@intel.com>
18742 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
18743 L:      netdev@vger.kernel.org
18744 L:      bpf@vger.kernel.org
18745 S:      Maintained
18746 F:      include/net/xdp_sock*
18747 F:      include/net/xsk_buff_pool.h
18748 F:      include/uapi/linux/if_xdp.h
18749 F:      net/xdp/
18750 F:      samples/bpf/xdpsock*
18751 F:      tools/lib/bpf/xsk*
18752
18753 XEN BLOCK SUBSYSTEM
18754 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18755 M:      Roger Pau Monné <roger.pau@citrix.com>
18756 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18757 S:      Supported
18758 F:      drivers/block/xen*
18759 F:      drivers/block/xen-blkback/*
18760
18761 XEN HYPERVISOR ARM
18762 M:      Stefano Stabellini <sstabellini@kernel.org>
18763 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18764 S:      Maintained
18765 F:      arch/arm/include/asm/xen/
18766 F:      arch/arm/xen/
18767
18768 XEN HYPERVISOR ARM64
18769 M:      Stefano Stabellini <sstabellini@kernel.org>
18770 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18771 S:      Maintained
18772 F:      arch/arm64/include/asm/xen/
18773 F:      arch/arm64/xen/
18774
18775 XEN HYPERVISOR INTERFACE
18776 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
18777 M:      Juergen Gross <jgross@suse.com>
18778 R:      Stefano Stabellini <sstabellini@kernel.org>
18779 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18780 S:      Supported
18781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
18782 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
18783 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
18784 F:      arch/x86/include/asm/pvclock-abi.h
18785 F:      arch/x86/include/asm/xen/
18786 F:      arch/x86/platform/pvh/
18787 F:      arch/x86/xen/
18788 F:      drivers/*/xen-*front.c
18789 F:      drivers/xen/
18790 F:      include/uapi/xen/
18791 F:      include/xen/
18792
18793 XEN NETWORK BACKEND DRIVER
18794 M:      Wei Liu <wei.liu@kernel.org>
18795 M:      Paul Durrant <paul@xen.org>
18796 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18797 L:      netdev@vger.kernel.org
18798 S:      Supported
18799 F:      drivers/net/xen-netback/*
18800
18801 XEN PCI SUBSYSTEM
18802 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18803 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18804 S:      Supported
18805 F:      arch/x86/pci/*xen*
18806 F:      drivers/pci/*xen*
18807
18808 XEN PVSCSI DRIVERS
18809 M:      Juergen Gross <jgross@suse.com>
18810 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18811 L:      linux-scsi@vger.kernel.org
18812 S:      Supported
18813 F:      drivers/scsi/xen-scsifront.c
18814 F:      drivers/xen/xen-scsiback.c
18815 F:      include/xen/interface/io/vscsiif.h
18816
18817 XEN SOUND FRONTEND DRIVER
18818 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
18819 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18820 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18821 S:      Supported
18822 F:      sound/xen/*
18823
18824 XEN SWIOTLB SUBSYSTEM
18825 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18826 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18827 L:      iommu@lists.linux-foundation.org
18828 S:      Supported
18829 F:      arch/x86/xen/*swiotlb*
18830 F:      drivers/xen/*swiotlb*
18831
18832 XFS FILESYSTEM
18833 M:      Darrick J. Wong <darrick.wong@oracle.com>
18834 M:      linux-xfs@vger.kernel.org
18835 L:      linux-xfs@vger.kernel.org
18836 S:      Supported
18837 W:      http://xfs.org/
18838 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
18839 F:      Documentation/ABI/testing/sysfs-fs-xfs
18840 F:      Documentation/admin-guide/xfs.rst
18841 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
18842 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
18843 F:      fs/xfs/
18844 F:      include/uapi/linux/dqblk_xfs.h
18845 F:      include/uapi/linux/fsmap.h
18846
18847 XILINX AXI ETHERNET DRIVER
18848 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
18849 S:      Maintained
18850 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
18851
18852 XILINX CAN DRIVER
18853 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
18854 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
18855 L:      linux-can@vger.kernel.org
18856 S:      Maintained
18857 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
18858 F:      drivers/net/can/xilinx_can.c
18859
18860 XILINX SD-FEC IP CORES
18861 M:      Derek Kiernan <derek.kiernan@xilinx.com>
18862 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
18863 S:      Maintained
18864 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
18865 F:      Documentation/misc-devices/xilinx_sdfec.rst
18866 F:      drivers/misc/Kconfig
18867 F:      drivers/misc/Makefile
18868 F:      drivers/misc/xilinx_sdfec.c
18869 F:      include/uapi/misc/xilinx_sdfec.h
18870
18871 XILINX UARTLITE SERIAL DRIVER
18872 M:      Peter Korsgaard <jacmet@sunsite.dk>
18873 L:      linux-serial@vger.kernel.org
18874 S:      Maintained
18875 F:      drivers/tty/serial/uartlite.c
18876
18877 XILINX VIDEO IP CORES
18878 M:      Hyun Kwon <hyun.kwon@xilinx.com>
18879 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18880 L:      linux-media@vger.kernel.org
18881 S:      Supported
18882 T:      git git://linuxtv.org/media_tree.git
18883 F:      Documentation/devicetree/bindings/media/xilinx/
18884 F:      drivers/media/platform/xilinx/
18885 F:      include/uapi/linux/xilinx-v4l2-controls.h
18886
18887 XILLYBUS DRIVER
18888 M:      Eli Billauer <eli.billauer@gmail.com>
18889 L:      linux-kernel@vger.kernel.org
18890 S:      Supported
18891 F:      drivers/char/xillybus/
18892
18893 XLP9XX I2C DRIVER
18894 M:      George Cherian <gcherian@marvell.com>
18895 L:      linux-i2c@vger.kernel.org
18896 S:      Supported
18897 W:      http://www.marvell.com
18898 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
18899 F:      drivers/i2c/busses/i2c-xlp9xx.c
18900
18901 XRA1403 GPIO EXPANDER
18902 M:      Nandor Han <nandor.han@ge.com>
18903 M:      Semi Malinen <semi.malinen@ge.com>
18904 L:      linux-gpio@vger.kernel.org
18905 S:      Maintained
18906 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
18907 F:      drivers/gpio/gpio-xra1403.c
18908
18909 XTENSA XTFPGA PLATFORM SUPPORT
18910 M:      Max Filippov <jcmvbkbc@gmail.com>
18911 L:      linux-xtensa@linux-xtensa.org
18912 S:      Maintained
18913 F:      drivers/spi/spi-xtensa-xtfpga.c
18914 F:      sound/soc/xtensa/xtfpga-i2s.c
18915
18916 YAM DRIVER FOR AX.25
18917 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
18918 L:      linux-hams@vger.kernel.org
18919 S:      Maintained
18920 F:      drivers/net/hamradio/yam*
18921 F:      include/linux/yam.h
18922
18923 YAMA SECURITY MODULE
18924 M:      Kees Cook <keescook@chromium.org>
18925 S:      Supported
18926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
18927 F:      Documentation/admin-guide/LSM/Yama.rst
18928 F:      security/yama/
18929
18930 YEALINK PHONE DRIVER
18931 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
18932 L:      usbb2k-api-dev@nongnu.org
18933 S:      Maintained
18934 F:      Documentation/input/devices/yealink.rst
18935 F:      drivers/input/misc/yealink.*
18936
18937 Z8530 DRIVER FOR AX.25
18938 M:      Joerg Reuter <jreuter@yaina.de>
18939 L:      linux-hams@vger.kernel.org
18940 S:      Maintained
18941 W:      http://yaina.de/jreuter/
18942 W:      http://www.qsl.net/dl1bke/
18943 F:      Documentation/networking/z8530drv.rst
18944 F:      drivers/net/hamradio/*scc.c
18945 F:      drivers/net/hamradio/z8530.h
18946
18947 ZBUD COMPRESSED PAGE ALLOCATOR
18948 M:      Seth Jennings <sjenning@redhat.com>
18949 M:      Dan Streetman <ddstreet@ieee.org>
18950 L:      linux-mm@kvack.org
18951 S:      Maintained
18952 F:      include/linux/zbud.h
18953 F:      mm/zbud.c
18954
18955 ZD1211RW WIRELESS DRIVER
18956 M:      Daniel Drake <dsd@gentoo.org>
18957 M:      Ulrich Kunitz <kune@deine-taler.de>
18958 L:      linux-wireless@vger.kernel.org
18959 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
18960 S:      Maintained
18961 W:      http://zd1211.ath.cx/wiki/DriverRewrite
18962 F:      drivers/net/wireless/zydas/zd1211rw/
18963
18964 ZD1301 MEDIA DRIVER
18965 M:      Antti Palosaari <crope@iki.fi>
18966 L:      linux-media@vger.kernel.org
18967 S:      Maintained
18968 W:      https://linuxtv.org/
18969 W:      http://palosaari.fi/linux/
18970 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18971 F:      drivers/media/usb/dvb-usb-v2/zd1301*
18972
18973 ZD1301_DEMOD MEDIA DRIVER
18974 M:      Antti Palosaari <crope@iki.fi>
18975 L:      linux-media@vger.kernel.org
18976 S:      Maintained
18977 W:      https://linuxtv.org/
18978 W:      http://palosaari.fi/linux/
18979 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18980 F:      drivers/media/dvb-frontends/zd1301_demod*
18981
18982 ZHAOXIN PROCESSOR SUPPORT
18983 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
18984 L:      linux-kernel@vger.kernel.org
18985 S:      Maintained
18986 F:      arch/x86/kernel/cpu/zhaoxin.c
18987
18988 ZONEFS FILESYSTEM
18989 M:      Damien Le Moal <damien.lemoal@wdc.com>
18990 M:      Naohiro Aota <naohiro.aota@wdc.com>
18991 R:      Johannes Thumshirn <jth@kernel.org>
18992 L:      linux-fsdevel@vger.kernel.org
18993 S:      Maintained
18994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
18995 F:      Documentation/filesystems/zonefs.rst
18996 F:      fs/zonefs/
18997
18998 ZPOOL COMPRESSED PAGE STORAGE API
18999 M:      Dan Streetman <ddstreet@ieee.org>
19000 L:      linux-mm@kvack.org
19001 S:      Maintained
19002 F:      include/linux/zpool.h
19003 F:      mm/zpool.c
19004
19005 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
19006 M:      Minchan Kim <minchan@kernel.org>
19007 M:      Nitin Gupta <ngupta@vflare.org>
19008 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
19009 L:      linux-kernel@vger.kernel.org
19010 S:      Maintained
19011 F:      Documentation/admin-guide/blockdev/zram.rst
19012 F:      drivers/block/zram/
19013
19014 ZS DECSTATION Z85C30 SERIAL DRIVER
19015 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
19016 S:      Maintained
19017 F:      drivers/tty/serial/zs.*
19018
19019 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
19020 M:      Minchan Kim <minchan@kernel.org>
19021 M:      Nitin Gupta <ngupta@vflare.org>
19022 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
19023 L:      linux-mm@kvack.org
19024 S:      Maintained
19025 F:      Documentation/vm/zsmalloc.rst
19026 F:      include/linux/zsmalloc.h
19027 F:      mm/zsmalloc.c
19028
19029 ZSWAP COMPRESSED SWAP CACHING
19030 M:      Seth Jennings <sjenning@redhat.com>
19031 M:      Dan Streetman <ddstreet@ieee.org>
19032 M:      Vitaly Wool <vitaly.wool@konsulko.com>
19033 L:      linux-mm@kvack.org
19034 S:      Maintained
19035 F:      mm/zswap.c
19036
19037 THE REST
19038 M:      Linus Torvalds <torvalds@linux-foundation.org>
19039 L:      linux-kernel@vger.kernel.org
19040 S:      Buried alive in reporters
19041 Q:      http://patchwork.kernel.org/project/LKML/list/
19042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
19043 F:      *
19044 F:      */