media: Documentation: userspace-api/media: dvb/ca: drop doubled word
[linux-2.6-microblaze.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <klassert@kernel.org>
148 L:      netdev@vger.kernel.org
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <dave@thedillows.org>
155 L:      netdev@vger.kernel.org
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <aradford@gmail.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L:      linux-scsi@vger.kernel.org
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <alex.aring@gmail.com>
174 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L:      linux-bluetooth@vger.kernel.org
176 L:      linux-wpan@vger.kernel.org
177 S:      Maintained
178 F:      Documentation/networking/6lowpan.rst
179 F:      include/net/6lowpan.h
180 F:      net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L:      linux-hams@vger.kernel.org
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <johannes@sipsolutions.net>
190 L:      linux-wireless@vger.kernel.org
191 S:      Maintained
192 W:      https://wireless.wiki.kernel.org/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
195 F:      Documentation/driver-api/80211/cfg80211.rst
196 F:      Documentation/networking/regulatory.rst
197 F:      include/linux/ieee80211.h
198 F:      include/net/cfg80211.h
199 F:      include/net/ieee80211_radiotap.h
200 F:      include/net/iw_handler.h
201 F:      include/net/wext.h
202 F:      include/uapi/linux/nl80211.h
203 F:      net/wireless/
204
205 8169 10/100/1000 GIGABIT ETHERNET DRIVER
206 M:      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 <andy@kernel.org>
409 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
410 L:      linux-acpi@vger.kernel.org
411 S:      Supported
412 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
413 B:      https://bugzilla.kernel.org
414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
415 F:      drivers/acpi/pmic/
416
417 ACPI THERMAL DRIVER
418 M:      Zhang Rui <rui.zhang@intel.com>
419 L:      linux-acpi@vger.kernel.org
420 S:      Supported
421 W:      https://01.org/linux-acpi
422 B:      https://bugzilla.kernel.org
423 F:      drivers/acpi/*thermal*
424
425 ACPI VIDEO DRIVER
426 M:      Zhang Rui <rui.zhang@intel.com>
427 L:      linux-acpi@vger.kernel.org
428 S:      Supported
429 W:      https://01.org/linux-acpi
430 B:      https://bugzilla.kernel.org
431 F:      drivers/acpi/acpi_video.c
432
433 ACPI WMI DRIVER
434 L:      platform-driver-x86@vger.kernel.org
435 S:      Orphan
436 F:      drivers/platform/x86/wmi.c
437 F:      include/uapi/linux/wmi.h
438
439 AD1889 ALSA SOUND DRIVER
440 L:      linux-parisc@vger.kernel.org
441 S:      Maintained
442 W:      https://parisc.wiki.kernel.org/index.php/AD1889
443 F:      sound/pci/ad1889.*
444
445 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
446 M:      Michael Hennerich <michael.hennerich@analog.com>
447 S:      Supported
448 W:      http://wiki.analog.com/AD5254
449 W:      http://ez.analog.com/community/linux-device-drivers
450 F:      drivers/misc/ad525x_dpot.c
451
452 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
453 M:      Michael Hennerich <michael.hennerich@analog.com>
454 S:      Supported
455 W:      http://wiki.analog.com/AD5398
456 W:      http://ez.analog.com/community/linux-device-drivers
457 F:      drivers/regulator/ad5398.c
458
459 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
460 M:      Michael Hennerich <michael.hennerich@analog.com>
461 S:      Supported
462 W:      http://wiki.analog.com/AD7142
463 W:      http://ez.analog.com/community/linux-device-drivers
464 F:      drivers/input/misc/ad714x.c
465
466 AD7877 TOUCHSCREEN DRIVER
467 M:      Michael Hennerich <michael.hennerich@analog.com>
468 S:      Supported
469 W:      http://wiki.analog.com/AD7877
470 W:      http://ez.analog.com/community/linux-device-drivers
471 F:      drivers/input/touchscreen/ad7877.c
472
473 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
474 M:      Michael Hennerich <michael.hennerich@analog.com>
475 S:      Supported
476 W:      http://wiki.analog.com/AD7879
477 W:      http://ez.analog.com/community/linux-device-drivers
478 F:      drivers/input/touchscreen/ad7879.c
479
480 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
481 M:      Jiri Kosina <jikos@kernel.org>
482 S:      Maintained
483
484 ADF7242 IEEE 802.15.4 RADIO DRIVER
485 M:      Michael Hennerich <michael.hennerich@analog.com>
486 L:      linux-wpan@vger.kernel.org
487 S:      Supported
488 W:      https://wiki.analog.com/ADF7242
489 W:      http://ez.analog.com/community/linux-device-drivers
490 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
491 F:      drivers/net/ieee802154/adf7242.c
492
493 ADM1025 HARDWARE MONITOR DRIVER
494 M:      Jean Delvare <jdelvare@suse.com>
495 L:      linux-hwmon@vger.kernel.org
496 S:      Maintained
497 F:      Documentation/hwmon/adm1025.rst
498 F:      drivers/hwmon/adm1025.c
499
500 ADM1029 HARDWARE MONITOR DRIVER
501 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
502 L:      linux-hwmon@vger.kernel.org
503 S:      Maintained
504 F:      drivers/hwmon/adm1029.c
505
506 ADM8211 WIRELESS DRIVER
507 L:      linux-wireless@vger.kernel.org
508 S:      Orphan
509 W:      https://wireless.wiki.kernel.org/
510 F:      drivers/net/wireless/admtek/adm8211.*
511
512 ADP1653 FLASH CONTROLLER DRIVER
513 M:      Sakari Ailus <sakari.ailus@iki.fi>
514 L:      linux-media@vger.kernel.org
515 S:      Maintained
516 F:      drivers/media/i2c/adp1653.c
517 F:      include/media/i2c/adp1653.h
518
519 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
520 M:      Michael Hennerich <michael.hennerich@analog.com>
521 S:      Supported
522 W:      http://wiki.analog.com/ADP5520
523 W:      http://ez.analog.com/community/linux-device-drivers
524 F:      drivers/gpio/gpio-adp5520.c
525 F:      drivers/input/keyboard/adp5520-keys.c
526 F:      drivers/leds/leds-adp5520.c
527 F:      drivers/mfd/adp5520.c
528 F:      drivers/video/backlight/adp5520_bl.c
529
530 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
531 M:      Michael Hennerich <michael.hennerich@analog.com>
532 S:      Supported
533 W:      http://wiki.analog.com/ADP5588
534 W:      http://ez.analog.com/community/linux-device-drivers
535 F:      drivers/gpio/gpio-adp5588.c
536 F:      drivers/input/keyboard/adp5588-keys.c
537
538 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
539 M:      Michael Hennerich <michael.hennerich@analog.com>
540 S:      Supported
541 W:      http://wiki.analog.com/ADP8860
542 W:      http://ez.analog.com/community/linux-device-drivers
543 F:      drivers/video/backlight/adp8860_bl.c
544
545 ADT746X FAN DRIVER
546 M:      Colin Leroy <colin@colino.net>
547 S:      Maintained
548 F:      drivers/macintosh/therm_adt746x.c
549
550 ADT7475 HARDWARE MONITOR DRIVER
551 M:      Jean Delvare <jdelvare@suse.com>
552 L:      linux-hwmon@vger.kernel.org
553 S:      Maintained
554 F:      Documentation/hwmon/adt7475.rst
555 F:      drivers/hwmon/adt7475.c
556
557 ADVANSYS SCSI DRIVER
558 M:      Matthew Wilcox <willy@infradead.org>
559 M:      Hannes Reinecke <hare@suse.com>
560 L:      linux-scsi@vger.kernel.org
561 S:      Maintained
562 F:      Documentation/scsi/advansys.rst
563 F:      drivers/scsi/advansys.c
564
565 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
566 M:      Michael Hennerich <michael.hennerich@analog.com>
567 S:      Supported
568 W:      http://wiki.analog.com/ADXL345
569 W:      http://ez.analog.com/community/linux-device-drivers
570 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
571 F:      drivers/input/misc/adxl34x.c
572
573 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
574 M:      Michael Hennerich <michael.hennerich@analog.com>
575 S:      Supported
576 W:      http://ez.analog.com/community/linux-device-drivers
577 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
578 F:      drivers/iio/accel/adxl372.c
579 F:      drivers/iio/accel/adxl372_i2c.c
580 F:      drivers/iio/accel/adxl372_spi.c
581
582 AF9013 MEDIA DRIVER
583 M:      Antti Palosaari <crope@iki.fi>
584 L:      linux-media@vger.kernel.org
585 S:      Maintained
586 W:      https://linuxtv.org
587 W:      http://palosaari.fi/linux/
588 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
589 T:      git git://linuxtv.org/anttip/media_tree.git
590 F:      drivers/media/dvb-frontends/af9013*
591
592 AF9033 MEDIA DRIVER
593 M:      Antti Palosaari <crope@iki.fi>
594 L:      linux-media@vger.kernel.org
595 S:      Maintained
596 W:      https://linuxtv.org
597 W:      http://palosaari.fi/linux/
598 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
599 T:      git git://linuxtv.org/anttip/media_tree.git
600 F:      drivers/media/dvb-frontends/af9033*
601
602 AFFS FILE SYSTEM
603 M:      David Sterba <dsterba@suse.com>
604 L:      linux-fsdevel@vger.kernel.org
605 S:      Odd Fixes
606 F:      Documentation/filesystems/affs.rst
607 F:      fs/affs/
608
609 AFS FILESYSTEM
610 M:      David Howells <dhowells@redhat.com>
611 L:      linux-afs@lists.infradead.org
612 S:      Supported
613 W:      https://www.infradead.org/~dhowells/kafs/
614 F:      Documentation/filesystems/afs.rst
615 F:      fs/afs/
616 F:      include/trace/events/afs.h
617
618 AGPGART DRIVER
619 M:      David Airlie <airlied@linux.ie>
620 S:      Maintained
621 T:      git git://anongit.freedesktop.org/drm/drm
622 F:      drivers/char/agp/
623 F:      include/linux/agp*
624 F:      include/uapi/linux/agp*
625
626 AHA152X SCSI DRIVER
627 M:      "Juergen E. Fischer" <fischer@norbit.de>
628 L:      linux-scsi@vger.kernel.org
629 S:      Maintained
630 F:      drivers/scsi/aha152x*
631 F:      drivers/scsi/pcmcia/aha152x*
632
633 AIC7XXX / AIC79XX SCSI DRIVER
634 M:      Hannes Reinecke <hare@suse.com>
635 L:      linux-scsi@vger.kernel.org
636 S:      Maintained
637 F:      drivers/scsi/aic7xxx/
638
639 AIMSLAB FM RADIO RECEIVER DRIVER
640 M:      Hans Verkuil <hverkuil@xs4all.nl>
641 L:      linux-media@vger.kernel.org
642 S:      Maintained
643 W:      https://linuxtv.org
644 T:      git git://linuxtv.org/media_tree.git
645 F:      drivers/media/radio/radio-aimslab*
646
647 AIO
648 M:      Benjamin LaHaise <bcrl@kvack.org>
649 L:      linux-aio@kvack.org
650 S:      Supported
651 F:      fs/aio.c
652 F:      include/linux/*aio*.h
653
654 AIRSPY MEDIA DRIVER
655 M:      Antti Palosaari <crope@iki.fi>
656 L:      linux-media@vger.kernel.org
657 S:      Maintained
658 W:      https://linuxtv.org
659 W:      http://palosaari.fi/linux/
660 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
661 T:      git git://linuxtv.org/anttip/media_tree.git
662 F:      drivers/media/usb/airspy/
663
664 ALACRITECH GIGABIT ETHERNET DRIVER
665 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
666 S:      Maintained
667 F:      drivers/net/ethernet/alacritech/*
668
669 ALCATEL SPEEDTOUCH USB DRIVER
670 M:      Duncan Sands <duncan.sands@free.fr>
671 L:      linux-usb@vger.kernel.org
672 S:      Maintained
673 W:      http://www.linux-usb.org/SpeedTouch/
674 F:      drivers/usb/atm/speedtch.c
675 F:      drivers/usb/atm/usbatm.c
676
677 ALCHEMY AU1XX0 MMC DRIVER
678 M:      Manuel Lauss <manuel.lauss@gmail.com>
679 S:      Maintained
680 F:      drivers/mmc/host/au1xmmc.c
681
682 ALI1563 I2C DRIVER
683 M:      Rudolf Marek <r.marek@assembler.cz>
684 L:      linux-i2c@vger.kernel.org
685 S:      Maintained
686 F:      Documentation/i2c/busses/i2c-ali1563.rst
687 F:      drivers/i2c/busses/i2c-ali1563.c
688
689 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
690 M:      Tomislav Denis <tomislav.denis@avl.com>
691 L:      linux-iio@vger.kernel.org
692 S:      Maintained
693 W:      http://www.allsensors.com/
694 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
695 F:      drivers/iio/pressure/dlhl60d.c
696
697 ALLEGRO DVT VIDEO IP CORE DRIVER
698 M:      Michael Tretter <m.tretter@pengutronix.de>
699 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
700 L:      linux-media@vger.kernel.org
701 S:      Maintained
702 F:      drivers/staging/media/allegro-dvt/
703
704 ALLWINNER A10 CSI DRIVER
705 M:      Maxime Ripard <mripard@kernel.org>
706 L:      linux-media@vger.kernel.org
707 S:      Maintained
708 T:      git git://linuxtv.org/media_tree.git
709 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
710 F:      drivers/media/platform/sunxi/sun4i-csi/
711
712 ALLWINNER CPUFREQ DRIVER
713 M:      Yangtao Li <tiny.windzz@gmail.com>
714 L:      linux-pm@vger.kernel.org
715 S:      Maintained
716 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
717 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
718
719 ALLWINNER CRYPTO DRIVERS
720 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
721 L:      linux-crypto@vger.kernel.org
722 S:      Maintained
723 F:      drivers/crypto/allwinner/
724
725 ALLWINNER THERMAL DRIVER
726 M:      Vasily Khoruzhick <anarsoul@gmail.com>
727 M:      Yangtao Li <tiny.windzz@gmail.com>
728 L:      linux-pm@vger.kernel.org
729 S:      Maintained
730 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
731 F:      drivers/thermal/sun8i_thermal.c
732
733 ALLWINNER VPU DRIVER
734 M:      Maxime Ripard <mripard@kernel.org>
735 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
736 L:      linux-media@vger.kernel.org
737 S:      Maintained
738 F:      drivers/staging/media/sunxi/cedrus/
739
740 ALPHA PORT
741 M:      Richard Henderson <rth@twiddle.net>
742 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
743 M:      Matt Turner <mattst88@gmail.com>
744 L:      linux-alpha@vger.kernel.org
745 S:      Odd Fixes
746 F:      arch/alpha/
747
748 ALPS PS/2 TOUCHPAD DRIVER
749 R:      Pali Rohár <pali@kernel.org>
750 F:      drivers/input/mouse/alps.*
751
752 ALTERA I2C CONTROLLER DRIVER
753 M:      Thor Thayer <thor.thayer@linux.intel.com>
754 S:      Maintained
755 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
756 F:      drivers/i2c/busses/i2c-altera.c
757
758 ALTERA MAILBOX DRIVER
759 M:      Ley Foon Tan <ley.foon.tan@intel.com>
760 S:      Maintained
761 F:      drivers/mailbox/mailbox-altera.c
762
763 ALTERA PIO DRIVER
764 M:      Joyce Ooi <joyce.ooi@intel.com>
765 L:      linux-gpio@vger.kernel.org
766 S:      Maintained
767 F:      drivers/gpio/gpio-altera.c
768
769 ALTERA SYSTEM MANAGER DRIVER
770 M:      Thor Thayer <thor.thayer@linux.intel.com>
771 S:      Maintained
772 F:      drivers/mfd/altera-sysmgr.c
773 F:      include/linux/mfd/altera-sysmgr.h
774
775 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
776 M:      Thor Thayer <thor.thayer@linux.intel.com>
777 S:      Maintained
778 F:      drivers/gpio/gpio-altera-a10sr.c
779 F:      drivers/mfd/altera-a10sr.c
780 F:      drivers/reset/reset-a10sr.c
781 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
782 F:      include/linux/mfd/altera-a10sr.h
783
784 ALTERA TRIPLE SPEED ETHERNET DRIVER
785 M:      Joyce Ooi <joyce.ooi@intel.com>
786 L:      netdev@vger.kernel.org
787 S:      Maintained
788 F:      drivers/net/ethernet/altera/
789
790 ALTERA UART/JTAG UART SERIAL DRIVERS
791 M:      Tobias Klauser <tklauser@distanz.ch>
792 L:      linux-serial@vger.kernel.org
793 S:      Maintained
794 F:      drivers/tty/serial/altera_jtaguart.c
795 F:      drivers/tty/serial/altera_uart.c
796 F:      include/linux/altera_jtaguart.h
797 F:      include/linux/altera_uart.h
798
799 AMAZON ANNAPURNA LABS FIC DRIVER
800 M:      Talel Shenhar <talel@amazon.com>
801 S:      Maintained
802 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
803 F:      drivers/irqchip/irq-al-fic.c
804
805 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
806 M:      Talel Shenhar <talel@amazon.com>
807 M:      Talel Shenhar <talelshenhar@gmail.com>
808 S:      Maintained
809 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
810 F:      drivers/edac/al_mc_edac.c
811
812 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
813 M:      Talel Shenhar <talel@amazon.com>
814 S:      Maintained
815 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
816 F:      drivers/thermal/thermal_mmio.c
817
818 AMAZON ETHERNET DRIVERS
819 M:      Netanel Belgazal <netanel@amazon.com>
820 M:      Arthur Kiyanovski <akiyano@amazon.com>
821 R:      Guy Tzalik <gtzalik@amazon.com>
822 R:      Saeed Bishara <saeedb@amazon.com>
823 R:      Zorik Machulsky <zorik@amazon.com>
824 L:      netdev@vger.kernel.org
825 S:      Supported
826 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
827 F:      drivers/net/ethernet/amazon/
828
829 AMAZON RDMA EFA DRIVER
830 M:      Gal Pressman <galpress@amazon.com>
831 R:      Yossi Leybovich <sleybo@amazon.com>
832 L:      linux-rdma@vger.kernel.org
833 S:      Supported
834 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
835 F:      drivers/infiniband/hw/efa/
836 F:      include/uapi/rdma/efa-abi.h
837
838 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
839 M:      Tom Lendacky <thomas.lendacky@amd.com>
840 M:      John Allen <john.allen@amd.com>
841 L:      linux-crypto@vger.kernel.org
842 S:      Supported
843 F:      drivers/crypto/ccp/
844 F:      include/linux/ccp.h
845
846 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
847 M:      Brijesh Singh <brijesh.singh@amd.com>
848 M:      Tom Lendacky <thomas.lendacky@amd.com>
849 L:      linux-crypto@vger.kernel.org
850 S:      Supported
851 F:      drivers/crypto/ccp/sev*
852 F:      include/uapi/linux/psp-sev.h
853
854 AMD DISPLAY CORE
855 M:      Harry Wentland <harry.wentland@amd.com>
856 M:      Leo Li <sunpeng.li@amd.com>
857 L:      amd-gfx@lists.freedesktop.org
858 S:      Supported
859 T:      git git://people.freedesktop.org/~agd5f/linux
860 F:      drivers/gpu/drm/amd/display/
861
862 AMD ENERGY DRIVER
863 M:      Naveen Krishna Chatradhi <nchatrad@amd.com>
864 L:      linux-hwmon@vger.kernel.org
865 S:      Maintained
866 F:      Documentation/hwmon/amd_energy.rst
867 F:      drivers/hwmon/amd_energy.c
868
869 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
870 M:      Huang Rui <ray.huang@amd.com>
871 L:      linux-hwmon@vger.kernel.org
872 S:      Supported
873 F:      Documentation/hwmon/fam15h_power.rst
874 F:      drivers/hwmon/fam15h_power.c
875
876 AMD FCH GPIO DRIVER
877 M:      Enrico Weigelt, metux IT consult <info@metux.net>
878 L:      linux-gpio@vger.kernel.org
879 S:      Maintained
880 F:      drivers/gpio/gpio-amd-fch.c
881 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
882
883 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
884 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
885 S:      Orphan
886 F:      drivers/usb/gadget/udc/amd5536udc.*
887
888 AMD GEODE PROCESSOR/CHIPSET SUPPORT
889 M:      Andres Salomon <dilinger@queued.net>
890 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
891 S:      Supported
892 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
893 F:      arch/x86/include/asm/geode.h
894 F:      drivers/char/hw_random/geode-rng.c
895 F:      drivers/crypto/geode*
896 F:      drivers/video/fbdev/geode/
897
898 AMD IOMMU (AMD-VI)
899 M:      Joerg Roedel <joro@8bytes.org>
900 L:      iommu@lists.linux-foundation.org
901 S:      Maintained
902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
903 F:      drivers/iommu/amd/
904 F:      include/linux/amd-iommu.h
905
906 AMD KFD
907 M:      Felix Kuehling <Felix.Kuehling@amd.com>
908 L:      amd-gfx@lists.freedesktop.org
909 S:      Supported
910 T:      git git://people.freedesktop.org/~agd5f/linux
911 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
912 F:      drivers/gpu/drm/amd/amdkfd/
913 F:      drivers/gpu/drm/amd/include/cik_structs.h
914 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
915 F:      drivers/gpu/drm/amd/include/v9_structs.h
916 F:      drivers/gpu/drm/amd/include/vi_structs.h
917 F:      include/uapi/linux/kfd_ioctl.h
918
919 AMD SPI DRIVER
920 M:      Sanjay R Mehta <sanju.mehta@amd.com>
921 S:      Maintained
922 F:      drivers/spi/spi-amd.c
923
924 AMD MP2 I2C DRIVER
925 M:      Elie Morisse <syniurge@gmail.com>
926 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
927 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
928 L:      linux-i2c@vger.kernel.org
929 S:      Maintained
930 F:      drivers/i2c/busses/i2c-amd-mp2*
931
932 AMD POWERPLAY
933 M:      Evan Quan <evan.quan@amd.com>
934 L:      amd-gfx@lists.freedesktop.org
935 S:      Supported
936 T:      git git://people.freedesktop.org/~agd5f/linux
937 F:      drivers/gpu/drm/amd/powerplay/
938
939 AMD SEATTLE DEVICE TREE SUPPORT
940 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
941 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
942 M:      Tom Lendacky <thomas.lendacky@amd.com>
943 S:      Supported
944 F:      arch/arm64/boot/dts/amd/
945
946 AMD XGBE DRIVER
947 M:      Tom Lendacky <thomas.lendacky@amd.com>
948 L:      netdev@vger.kernel.org
949 S:      Supported
950 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
951 F:      drivers/net/ethernet/amd/xgbe/
952
953 AMS AS73211 DRIVER
954 M:      Christian Eggers <ceggers@arri.de>
955 L:      linux-iio@vger.kernel.org
956 S:      Maintained
957 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
958 F:      drivers/iio/light/as73211.c
959
960 ANALOG DEVICES INC AD7192 DRIVER
961 M:      Alexandru Tachici <alexandru.tachici@analog.com>
962 L:      linux-iio@vger.kernel.org
963 S:      Supported
964 W:      http://ez.analog.com/community/linux-device-drivers
965 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
966 F:      drivers/iio/adc/ad7192.c
967
968 ANALOG DEVICES INC AD7292 DRIVER
969 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
970 L:      linux-iio@vger.kernel.org
971 S:      Supported
972 W:      http://ez.analog.com/community/linux-device-drivers
973 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
974 F:      drivers/iio/adc/ad7292.c
975
976 ANALOG DEVICES INC AD7768-1 DRIVER
977 M:      Michael Hennerich <Michael.Hennerich@analog.com>
978 L:      linux-iio@vger.kernel.org
979 S:      Supported
980 W:      http://ez.analog.com/community/linux-device-drivers
981 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.txt
982 F:      drivers/iio/adc/ad7768-1.c
983
984 ANALOG DEVICES INC AD7780 DRIVER
985 M:      Michael Hennerich <Michael.Hennerich@analog.com>
986 M:      Renato Lui Geh <renatogeh@gmail.com>
987 L:      linux-iio@vger.kernel.org
988 S:      Supported
989 W:      http://ez.analog.com/community/linux-device-drivers
990 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
991 F:      drivers/iio/adc/ad7780.c
992
993 ANALOG DEVICES INC AD9389B DRIVER
994 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
995 L:      linux-media@vger.kernel.org
996 S:      Maintained
997 F:      drivers/media/i2c/ad9389b*
998
999 ANALOG DEVICES INC ADGS1408 DRIVER
1000 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1001 S:      Supported
1002 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1003 F:      drivers/mux/adgs1408.c
1004
1005 ANALOG DEVICES INC ADIN DRIVER
1006 M:      Alexandru Ardelean <alexaundru.ardelean@analog.com>
1007 L:      netdev@vger.kernel.org
1008 S:      Supported
1009 W:      http://ez.analog.com/community/linux-device-drivers
1010 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1011 F:      drivers/net/phy/adin.c
1012
1013 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1014 M:      Alexandru Ardelean <alexandru.ardelean@analog.com>
1015 L:      linux-iio@vger.kernel.org
1016 S:      Supported
1017 F:      drivers/iio/imu/adis.c
1018 F:      include/linux/iio/imu/adis.h
1019
1020 ANALOG DEVICES INC ADIS16460 DRIVER
1021 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1022 L:      linux-iio@vger.kernel.org
1023 S:      Supported
1024 W:      http://ez.analog.com/community/linux-device-drivers
1025 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1026 F:      drivers/iio/imu/adis16460.c
1027
1028 ANALOG DEVICES INC ADIS16475 DRIVER
1029 M:      Nuno Sa <nuno.sa@analog.com>
1030 L:      linux-iio@vger.kernel.org
1031 W:      http://ez.analog.com/community/linux-device-drivers
1032 S:      Supported
1033 F:      drivers/iio/imu/adis16475.c
1034 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1035
1036 ANALOG DEVICES INC ADM1177 DRIVER
1037 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1038 L:      linux-hwmon@vger.kernel.org
1039 S:      Supported
1040 W:      http://ez.analog.com/community/linux-device-drivers
1041 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1042 F:      drivers/hwmon/adm1177.c
1043
1044 ANALOG DEVICES INC ADP5061 DRIVER
1045 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1046 L:      linux-pm@vger.kernel.org
1047 S:      Supported
1048 W:      http://ez.analog.com/community/linux-device-drivers
1049 F:      drivers/power/supply/adp5061.c
1050
1051 ANALOG DEVICES INC ADV7180 DRIVER
1052 M:      Lars-Peter Clausen <lars@metafoo.de>
1053 L:      linux-media@vger.kernel.org
1054 S:      Supported
1055 W:      http://ez.analog.com/community/linux-device-drivers
1056 F:      drivers/media/i2c/adv7180.c
1057 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1058
1059 ANALOG DEVICES INC ADV748X DRIVER
1060 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1061 L:      linux-media@vger.kernel.org
1062 S:      Maintained
1063 F:      drivers/media/i2c/adv748x/*
1064
1065 ANALOG DEVICES INC ADV7511 DRIVER
1066 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1067 L:      linux-media@vger.kernel.org
1068 S:      Maintained
1069 F:      drivers/media/i2c/adv7511*
1070
1071 ANALOG DEVICES INC ADV7604 DRIVER
1072 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1073 L:      linux-media@vger.kernel.org
1074 S:      Maintained
1075 F:      drivers/media/i2c/adv7604*
1076 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1077
1078 ANALOG DEVICES INC ADV7842 DRIVER
1079 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1080 L:      linux-media@vger.kernel.org
1081 S:      Maintained
1082 F:      drivers/media/i2c/adv7842*
1083
1084 ANALOG DEVICES INC ADXRS290 DRIVER
1085 M:      Nishant Malpani <nish.malpani25@gmail.com>
1086 L:      linux-iio@vger.kernel.org
1087 S:      Supported
1088 F:      drivers/iio/gyro/adxrs290.c
1089 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1090
1091 ANALOG DEVICES INC ASOC CODEC DRIVERS
1092 M:      Lars-Peter Clausen <lars@metafoo.de>
1093 M:      Nuno Sá <nuno.sa@analog.com>
1094 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1095 S:      Supported
1096 W:      http://wiki.analog.com/
1097 W:      http://ez.analog.com/community/linux-device-drivers
1098 F:      sound/soc/codecs/ad1*
1099 F:      sound/soc/codecs/ad7*
1100 F:      sound/soc/codecs/adau*
1101 F:      sound/soc/codecs/adav*
1102 F:      sound/soc/codecs/sigmadsp.*
1103 F:      sound/soc/codecs/ssm*
1104
1105 ANALOG DEVICES INC DMA DRIVERS
1106 M:      Lars-Peter Clausen <lars@metafoo.de>
1107 S:      Supported
1108 W:      http://ez.analog.com/community/linux-device-drivers
1109 F:      drivers/dma/dma-axi-dmac.c
1110
1111 ANALOG DEVICES INC IIO DRIVERS
1112 M:      Lars-Peter Clausen <lars@metafoo.de>
1113 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1114 S:      Supported
1115 W:      http://wiki.analog.com/
1116 W:      http://ez.analog.com/community/linux-device-drivers
1117 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1118 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1119 F:      Documentation/devicetree/bindings/iio/*/adi,*
1120 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
1121 F:      drivers/iio/*/ad*
1122 F:      drivers/iio/adc/ltc249*
1123 F:      drivers/iio/amplifiers/hmc425a.c
1124 F:      drivers/staging/iio/*/ad*
1125 X:      drivers/iio/*/adjd*
1126
1127 ANALOGBITS PLL LIBRARIES
1128 M:      Paul Walmsley <paul.walmsley@sifive.com>
1129 S:      Supported
1130 F:      drivers/clk/analogbits/*
1131 F:      include/linux/clk/analogbits*
1132
1133 ANDES ARCHITECTURE
1134 M:      Nick Hu <nickhu@andestech.com>
1135 M:      Greentime Hu <green.hu@gmail.com>
1136 M:      Vincent Chen <deanbo422@gmail.com>
1137 S:      Supported
1138 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1139 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1140 F:      Documentation/devicetree/bindings/nds32/
1141 F:      arch/nds32/
1142 N:      nds32
1143 K:      nds32
1144
1145 ANDROID CONFIG FRAGMENTS
1146 M:      Rob Herring <robh@kernel.org>
1147 S:      Supported
1148 F:      kernel/configs/android*
1149
1150 ANDROID DRIVERS
1151 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1152 M:      Arve Hjønnevåg <arve@android.com>
1153 M:      Todd Kjos <tkjos@android.com>
1154 M:      Martijn Coenen <maco@android.com>
1155 M:      Joel Fernandes <joel@joelfernandes.org>
1156 M:      Christian Brauner <christian@brauner.io>
1157 M:      Hridya Valsaraju <hridya@google.com>
1158 M:      Suren Baghdasaryan <surenb@google.com>
1159 L:      devel@driverdev.osuosl.org
1160 S:      Supported
1161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1162 F:      drivers/android/
1163 F:      drivers/staging/android/
1164
1165 ANDROID GOLDFISH PIC DRIVER
1166 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1167 S:      Supported
1168 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1169 F:      drivers/irqchip/irq-goldfish-pic.c
1170
1171 ANDROID GOLDFISH RTC DRIVER
1172 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1173 S:      Supported
1174 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1175 F:      drivers/rtc/rtc-goldfish.c
1176
1177 ANDROID ION DRIVER
1178 M:      Laura Abbott <labbott@redhat.com>
1179 M:      Sumit Semwal <sumit.semwal@linaro.org>
1180 L:      devel@driverdev.osuosl.org
1181 L:      dri-devel@lists.freedesktop.org
1182 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
1183 S:      Supported
1184 F:      drivers/staging/android/ion
1185 F:      drivers/staging/android/uapi/ion.h
1186
1187 AOA (Apple Onboard Audio) ALSA DRIVER
1188 M:      Johannes Berg <johannes@sipsolutions.net>
1189 L:      linuxppc-dev@lists.ozlabs.org
1190 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1191 S:      Maintained
1192 F:      sound/aoa/
1193
1194 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1195 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1196 L:      linux-iio@vger.kernel.org
1197 S:      Maintained
1198 F:      drivers/iio/adc/stx104.c
1199
1200 APM DRIVER
1201 M:      Jiri Kosina <jikos@kernel.org>
1202 S:      Odd fixes
1203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1204 F:      arch/x86/kernel/apm_32.c
1205 F:      drivers/char/apm-emulation.c
1206 F:      include/linux/apm_bios.h
1207 F:      include/uapi/linux/apm_bios.h
1208
1209 APPARMOR SECURITY MODULE
1210 M:      John Johansen <john.johansen@canonical.com>
1211 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1212 S:      Supported
1213 W:      wiki.apparmor.net
1214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1215 F:      Documentation/admin-guide/LSM/apparmor.rst
1216 F:      security/apparmor/
1217
1218 APPLE BCM5974 MULTITOUCH DRIVER
1219 M:      Henrik Rydberg <rydberg@bitmath.org>
1220 L:      linux-input@vger.kernel.org
1221 S:      Odd fixes
1222 F:      drivers/input/mouse/bcm5974.c
1223
1224 APPLE SMC DRIVER
1225 M:      Henrik Rydberg <rydberg@bitmath.org>
1226 L:      linux-hwmon@vger.kernel.org
1227 S:      Odd fixes
1228 F:      drivers/hwmon/applesmc.c
1229
1230 APPLETALK NETWORK LAYER
1231 L:      netdev@vger.kernel.org
1232 S:      Odd fixes
1233 F:      drivers/net/appletalk/
1234 F:      include/linux/atalk.h
1235 F:      include/uapi/linux/atalk.h
1236 F:      net/appletalk/
1237
1238 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1239 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1240 S:      Supported
1241 F:      arch/arm64/boot/dts/apm/
1242
1243 APPLIED MICRO (APM) X-GENE SOC EDAC
1244 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1245 S:      Supported
1246 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1247 F:      drivers/edac/xgene_edac.c
1248
1249 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1250 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1251 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1252 S:      Supported
1253 F:      drivers/net/ethernet/apm/xgene-v2/
1254
1255 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1256 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1257 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1258 M:      Quan Nguyen <quan@os.amperecomputing.com>
1259 S:      Supported
1260 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1261 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1262 F:      drivers/net/ethernet/apm/xgene/
1263 F:      drivers/net/mdio/mdio-xgene.c
1264
1265 APPLIED MICRO (APM) X-GENE SOC PMU
1266 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1267 S:      Supported
1268 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1269 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1270 F:      drivers/perf/xgene_pmu.c
1271
1272 APTINA CAMERA SENSOR PLL
1273 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1274 L:      linux-media@vger.kernel.org
1275 S:      Maintained
1276 F:      drivers/media/i2c/aptina-pll.*
1277
1278 AQUANTIA ETHERNET DRIVER (atlantic)
1279 M:      Igor Russkikh <irusskikh@marvell.com>
1280 L:      netdev@vger.kernel.org
1281 S:      Supported
1282 W:      https://www.marvell.com/
1283 Q:      http://patchwork.ozlabs.org/project/netdev/list/
1284 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1285 F:      drivers/net/ethernet/aquantia/atlantic/
1286
1287 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1288 M:      Egor Pomozov <epomozov@marvell.com>
1289 L:      netdev@vger.kernel.org
1290 S:      Supported
1291 W:      http://www.aquantia.com
1292 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1293
1294 ARASAN NAND CONTROLLER DRIVER
1295 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1296 L:      linux-mtd@lists.infradead.org
1297 S:      Maintained
1298 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1299 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1300
1301 ARC FRAMEBUFFER DRIVER
1302 M:      Jaya Kumar <jayalk@intworks.biz>
1303 S:      Maintained
1304 F:      drivers/video/fbdev/arcfb.c
1305 F:      drivers/video/fbdev/core/fb_defio.c
1306
1307 ARC PGU DRM DRIVER
1308 M:      Alexey Brodkin <abrodkin@synopsys.com>
1309 S:      Supported
1310 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1311 F:      drivers/gpu/drm/arc/
1312
1313 ARCNET NETWORK LAYER
1314 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1315 L:      netdev@vger.kernel.org
1316 S:      Maintained
1317 F:      drivers/net/arcnet/
1318 F:      include/uapi/linux/if_arcnet.h
1319
1320 ARM ARCHITECTED TIMER DRIVER
1321 M:      Mark Rutland <mark.rutland@arm.com>
1322 M:      Marc Zyngier <maz@kernel.org>
1323 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1324 S:      Maintained
1325 F:      arch/arm/include/asm/arch_timer.h
1326 F:      arch/arm64/include/asm/arch_timer.h
1327 F:      drivers/clocksource/arm_arch_timer.c
1328
1329 ARM HDLCD DRM DRIVER
1330 M:      Liviu Dudau <liviu.dudau@arm.com>
1331 S:      Supported
1332 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1333 F:      drivers/gpu/drm/arm/hdlcd_*
1334
1335 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1336 M:      Linus Walleij <linus.walleij@linaro.org>
1337 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1338 S:      Maintained
1339 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1340 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1341 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1342 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1343 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1344 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1345 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1346 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1347 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1348 F:      arch/arm/boot/dts/arm-realview-*
1349 F:      arch/arm/boot/dts/integrator*
1350 F:      arch/arm/boot/dts/versatile*
1351 F:      arch/arm/mach-integrator/
1352 F:      arch/arm/mach-realview/
1353 F:      arch/arm/mach-versatile/
1354 F:      arch/arm/plat-versatile/
1355 F:      drivers/bus/arm-integrator-lm.c
1356 F:      drivers/clk/versatile/
1357 F:      drivers/i2c/busses/i2c-versatile.c
1358 F:      drivers/irqchip/irq-versatile-fpga.c
1359 F:      drivers/mtd/maps/physmap-versatile.*
1360 F:      drivers/power/reset/arm-versatile-reboot.c
1361 F:      drivers/soc/versatile/
1362
1363 ARM KOMEDA DRM-KMS DRIVER
1364 M:      James (Qian) Wang <james.qian.wang@arm.com>
1365 M:      Liviu Dudau <liviu.dudau@arm.com>
1366 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1367 L:      Mali DP Maintainers <malidp@foss.arm.com>
1368 S:      Supported
1369 T:      git git://anongit.freedesktop.org/drm/drm-misc
1370 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1371 F:      Documentation/gpu/komeda-kms.rst
1372 F:      drivers/gpu/drm/arm/display/include/
1373 F:      drivers/gpu/drm/arm/display/komeda/
1374
1375 ARM MALI PANFROST DRM DRIVER
1376 M:      Rob Herring <robh@kernel.org>
1377 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1378 R:      Steven Price <steven.price@arm.com>
1379 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1380 L:      dri-devel@lists.freedesktop.org
1381 S:      Supported
1382 T:      git git://anongit.freedesktop.org/drm/drm-misc
1383 F:      drivers/gpu/drm/panfrost/
1384 F:      include/uapi/drm/panfrost_drm.h
1385
1386 ARM MALI-DP DRM DRIVER
1387 M:      Liviu Dudau <liviu.dudau@arm.com>
1388 M:      Brian Starkey <brian.starkey@arm.com>
1389 L:      Mali DP Maintainers <malidp@foss.arm.com>
1390 S:      Supported
1391 T:      git git://anongit.freedesktop.org/drm/drm-misc
1392 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1393 F:      Documentation/gpu/afbc.rst
1394 F:      drivers/gpu/drm/arm/
1395
1396 ARM MFM AND FLOPPY DRIVERS
1397 M:      Ian Molton <spyro@f2s.com>
1398 S:      Maintained
1399 F:      arch/arm/include/asm/floppy.h
1400 F:      arch/arm/mach-rpc/floppydma.S
1401
1402 ARM PMU PROFILING AND DEBUGGING
1403 M:      Will Deacon <will@kernel.org>
1404 M:      Mark Rutland <mark.rutland@arm.com>
1405 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1406 S:      Maintained
1407 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1408 F:      Documentation/devicetree/bindings/perf/
1409 F:      arch/arm*/include/asm/hw_breakpoint.h
1410 F:      arch/arm*/include/asm/perf_event.h
1411 F:      arch/arm*/kernel/hw_breakpoint.c
1412 F:      arch/arm*/kernel/perf_*
1413 F:      arch/arm/oprofile/common.c
1414 F:      drivers/perf/
1415 F:      include/linux/perf/arm_pmu.h
1416
1417 ARM PORT
1418 M:      Russell King <linux@armlinux.org.uk>
1419 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1420 S:      Odd Fixes
1421 W:      http://www.armlinux.org.uk/
1422 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1423 F:      arch/arm/
1424 X:      arch/arm/boot/dts/
1425
1426 ARM PRIMECELL AACI PL041 DRIVER
1427 M:      Russell King <linux@armlinux.org.uk>
1428 S:      Odd Fixes
1429 F:      sound/arm/aaci.*
1430
1431 ARM PRIMECELL BUS SUPPORT
1432 M:      Russell King <linux@armlinux.org.uk>
1433 S:      Odd Fixes
1434 F:      drivers/amba/
1435 F:      include/linux/amba/bus.h
1436
1437 ARM PRIMECELL CLCD PL110 DRIVER
1438 M:      Russell King <linux@armlinux.org.uk>
1439 S:      Odd Fixes
1440 F:      drivers/video/fbdev/amba-clcd.*
1441
1442 ARM PRIMECELL KMI PL050 DRIVER
1443 M:      Russell King <linux@armlinux.org.uk>
1444 S:      Odd Fixes
1445 F:      drivers/input/serio/ambakmi.*
1446 F:      include/linux/amba/kmi.h
1447
1448 ARM PRIMECELL MMCI PL180/1 DRIVER
1449 M:      Russell King <linux@armlinux.org.uk>
1450 S:      Odd Fixes
1451 F:      drivers/mmc/host/mmci.*
1452 F:      include/linux/amba/mmci.h
1453
1454 ARM PRIMECELL SSP PL022 SPI DRIVER
1455 M:      Linus Walleij <linus.walleij@linaro.org>
1456 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1457 S:      Maintained
1458 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1459 F:      drivers/spi/spi-pl022.c
1460
1461 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1462 M:      Russell King <linux@armlinux.org.uk>
1463 S:      Odd Fixes
1464 F:      drivers/tty/serial/amba-pl01*.c
1465 F:      include/linux/amba/serial.h
1466
1467 ARM PRIMECELL VIC PL190/PL192 DRIVER
1468 M:      Linus Walleij <linus.walleij@linaro.org>
1469 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1470 S:      Maintained
1471 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1472 F:      drivers/irqchip/irq-vic.c
1473
1474 ARM SMC WATCHDOG DRIVER
1475 M:      Julius Werner <jwerner@chromium.org>
1476 R:      Evan Benn <evanbenn@chromium.org>
1477 S:      Maintained
1478 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1479 F:      drivers/watchdog/arm_smc_wdt.c
1480
1481 ARM SMMU DRIVERS
1482 M:      Will Deacon <will@kernel.org>
1483 R:      Robin Murphy <robin.murphy@arm.com>
1484 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1485 S:      Maintained
1486 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1487 F:      drivers/iommu/arm/
1488 F:      drivers/iommu/io-pgtable-arm*
1489
1490 ARM SUB-ARCHITECTURES
1491 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1492 S:      Maintained
1493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1494 F:      arch/arm/mach-*/
1495 F:      arch/arm/plat-*/
1496
1497 ARM/ACTIONS SEMI ARCHITECTURE
1498 M:      Andreas Färber <afaerber@suse.de>
1499 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1500 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1501 S:      Maintained
1502 F:      Documentation/devicetree/bindings/arm/actions.yaml
1503 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1504 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1505 F:      Documentation/devicetree/bindings/i2c/i2c-owl.txt
1506 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1507 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1508 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1509 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1510 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1511 F:      arch/arm/boot/dts/owl-*
1512 F:      arch/arm/mach-actions/
1513 F:      arch/arm64/boot/dts/actions/
1514 F:      drivers/clk/actions/
1515 F:      drivers/clocksource/timer-owl*
1516 F:      drivers/dma/owl-dma.c
1517 F:      drivers/i2c/busses/i2c-owl.c
1518 F:      drivers/irqchip/irq-owl-sirq.c
1519 F:      drivers/mmc/host/owl-mmc.c
1520 F:      drivers/pinctrl/actions/*
1521 F:      drivers/soc/actions/
1522 F:      include/dt-bindings/power/owl-*
1523 F:      include/dt-bindings/reset/actions,*
1524 F:      include/linux/soc/actions/
1525 N:      owl
1526
1527 ARM/ADS SPHERE MACHINE SUPPORT
1528 M:      Lennert Buytenhek <kernel@wantstofly.org>
1529 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1530 S:      Maintained
1531
1532 ARM/AFEB9260 MACHINE SUPPORT
1533 M:      Sergey Lapin <slapin@ossfans.org>
1534 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1535 S:      Maintained
1536
1537 ARM/AJECO 1ARM MACHINE SUPPORT
1538 M:      Lennert Buytenhek <kernel@wantstofly.org>
1539 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1540 S:      Maintained
1541
1542 ARM/Allwinner SoC Clock Support
1543 M:      Emilio López <emilio@elopez.com.ar>
1544 S:      Maintained
1545 F:      drivers/clk/sunxi/
1546
1547 ARM/Allwinner sunXi SoC support
1548 M:      Maxime Ripard <mripard@kernel.org>
1549 M:      Chen-Yu Tsai <wens@csie.org>
1550 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1551 S:      Maintained
1552 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1553 F:      arch/arm/mach-sunxi/
1554 F:      arch/arm64/boot/dts/allwinner/
1555 F:      drivers/clk/sunxi-ng/
1556 F:      drivers/pinctrl/sunxi/
1557 F:      drivers/soc/sunxi/
1558 N:      sun[x456789]i
1559 N:      sun50i
1560
1561 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1562 M:      Neil Armstrong <narmstrong@baylibre.com>
1563 M:      Jerome Brunet <jbrunet@baylibre.com>
1564 L:      linux-amlogic@lists.infradead.org
1565 S:      Maintained
1566 F:      Documentation/devicetree/bindings/clock/amlogic*
1567 F:      drivers/clk/meson/
1568 F:      include/dt-bindings/clock/gxbb*
1569 F:      include/dt-bindings/clock/meson*
1570
1571 ARM/Amlogic Meson SoC Crypto Drivers
1572 M:      Corentin Labbe <clabbe@baylibre.com>
1573 L:      linux-crypto@vger.kernel.org
1574 L:      linux-amlogic@lists.infradead.org
1575 S:      Maintained
1576 F:      Documentation/devicetree/bindings/crypto/amlogic*
1577 F:      drivers/crypto/amlogic/
1578
1579 ARM/Amlogic Meson SoC Sound Drivers
1580 M:      Jerome Brunet <jbrunet@baylibre.com>
1581 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1582 S:      Maintained
1583 F:      Documentation/devicetree/bindings/sound/amlogic*
1584 F:      sound/soc/meson/
1585
1586 ARM/Amlogic Meson SoC support
1587 M:      Kevin Hilman <khilman@baylibre.com>
1588 R:      Neil Armstrong <narmstrong@baylibre.com>
1589 R:      Jerome Brunet <jbrunet@baylibre.com>
1590 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1591 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1592 L:      linux-amlogic@lists.infradead.org
1593 S:      Maintained
1594 W:      http://linux-meson.com/
1595 F:      arch/arm/boot/dts/meson*
1596 F:      arch/arm/mach-meson/
1597 F:      arch/arm64/boot/dts/amlogic/
1598 F:      drivers/mmc/host/meson*
1599 F:      drivers/pinctrl/meson/
1600 F:      drivers/rtc/rtc-meson*
1601 F:      drivers/soc/amlogic/
1602 N:      meson
1603
1604 ARM/Annapurna Labs ALPINE ARCHITECTURE
1605 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1606 M:      Antoine Tenart <atenart@kernel.org>
1607 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1608 S:      Maintained
1609 F:      arch/arm/boot/dts/alpine*
1610 F:      arch/arm/mach-alpine/
1611 F:      arch/arm64/boot/dts/amazon/
1612 F:      drivers/*/*alpine*
1613
1614 ARM/ARTPEC MACHINE SUPPORT
1615 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1616 M:      Lars Persson <lars.persson@axis.com>
1617 L:      linux-arm-kernel@axis.com
1618 S:      Maintained
1619 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1620 F:      arch/arm/boot/dts/artpec6*
1621 F:      arch/arm/mach-artpec
1622 F:      drivers/clk/axis
1623 F:      drivers/crypto/axis
1624 F:      drivers/mmc/host/usdhi6rol0.c
1625 F:      drivers/pinctrl/pinctrl-artpec*
1626
1627 ARM/ASPEED I2C DRIVER
1628 M:      Brendan Higgins <brendanhiggins@google.com>
1629 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1630 R:      Joel Stanley <joel@jms.id.au>
1631 L:      linux-i2c@vger.kernel.org
1632 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1633 S:      Maintained
1634 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1635 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1636 F:      drivers/i2c/busses/i2c-aspeed.c
1637 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1638
1639 ARM/ASPEED MACHINE SUPPORT
1640 M:      Joel Stanley <joel@jms.id.au>
1641 R:      Andrew Jeffery <andrew@aj.id.au>
1642 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1643 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1644 S:      Supported
1645 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1647 F:      arch/arm/boot/dts/aspeed-*
1648 F:      arch/arm/mach-aspeed/
1649 N:      aspeed
1650
1651 ARM/BITMAIN ARCHITECTURE
1652 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1653 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1654 S:      Maintained
1655 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1656 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1657 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1658 F:      arch/arm64/boot/dts/bitmain/
1659 F:      drivers/clk/clk-bm1880.c
1660 F:      drivers/pinctrl/pinctrl-bm1880.c
1661
1662 ARM/CALXEDA HIGHBANK ARCHITECTURE
1663 M:      Andre Przywara <andre.przywara@arm.com>
1664 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1665 S:      Maintained
1666 F:      arch/arm/boot/dts/ecx-*.dts*
1667 F:      arch/arm/boot/dts/highbank.dts
1668 F:      arch/arm/mach-highbank/
1669
1670 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1671 M:      Krzysztof Halasa <khalasa@piap.pl>
1672 S:      Maintained
1673 F:      arch/arm/mach-cns3xxx/
1674
1675 ARM/CAVIUM THUNDER NETWORK DRIVER
1676 M:      Sunil Goutham <sgoutham@marvell.com>
1677 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1678 S:      Supported
1679 F:      drivers/net/ethernet/cavium/thunder/
1680
1681 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1682 M:      Lukasz Majewski <lukma@denx.de>
1683 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1684 S:      Maintained
1685 F:      arch/arm/mach-ep93xx/ts72xx.c
1686
1687 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1688 M:      Alexander Shiyan <shc_work@mail.ru>
1689 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1690 S:      Odd Fixes
1691 N:      clps711x
1692
1693 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1694 M:      Lennert Buytenhek <kernel@wantstofly.org>
1695 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1696 S:      Maintained
1697
1698 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1699 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1700 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1701 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1702 S:      Maintained
1703 F:      arch/arm/mach-ep93xx/
1704 F:      arch/arm/mach-ep93xx/include/mach/
1705
1706 ARM/CLKDEV SUPPORT
1707 M:      Russell King <linux@armlinux.org.uk>
1708 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1709 S:      Maintained
1710 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1711 F:      drivers/clk/clkdev.c
1712
1713 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1714 M:      Baruch Siach <baruch@tkos.co.il>
1715 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1716 S:      Maintained
1717 F:      arch/arm/boot/dts/cx92755*
1718 N:      digicolor
1719
1720 ARM/CONTEC MICRO9 MACHINE SUPPORT
1721 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1722 S:      Maintained
1723 F:      arch/arm/mach-ep93xx/micro9.c
1724
1725 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1726 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1727 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
1728 R:      Mike Leach <mike.leach@linaro.org>
1729 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1730 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1731 S:      Maintained
1732 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1733 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1734 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1735 F:      Documentation/devicetree/bindings/arm/coresight.txt
1736 F:      Documentation/trace/coresight/*
1737 F:      drivers/hwtracing/coresight/*
1738 F:      include/dt-bindings/arm/coresight-cti-dt.h
1739 F:      tools/perf/arch/arm/util/auxtrace.c
1740 F:      tools/perf/arch/arm/util/cs-etm.c
1741 F:      tools/perf/arch/arm/util/cs-etm.h
1742 F:      tools/perf/arch/arm/util/pmu.c
1743 F:      tools/perf/util/cs-etm-decoder/*
1744 F:      tools/perf/util/cs-etm.*
1745
1746 ARM/CORGI MACHINE SUPPORT
1747 M:      Richard Purdie <rpurdie@rpsys.net>
1748 S:      Maintained
1749
1750 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1751 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1752 M:      Linus Walleij <linus.walleij@linaro.org>
1753 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1754 S:      Maintained
1755 T:      git git://github.com/ulli-kroll/linux.git
1756 F:      Documentation/devicetree/bindings/arm/gemini.txt
1757 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1758 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1759 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1760 F:      arch/arm/mach-gemini/
1761 F:      drivers/net/ethernet/cortina/
1762 F:      drivers/pinctrl/pinctrl-gemini.c
1763 F:      drivers/rtc/rtc-ftrtc010.c
1764
1765 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1766 M:      Barry Song <baohua@kernel.org>
1767 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1768 S:      Maintained
1769 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1770 F:      arch/arm/boot/dts/prima2*
1771 F:      arch/arm/mach-prima2/
1772 F:      drivers/clk/sirf/
1773 F:      drivers/clocksource/timer-atlas7.c
1774 F:      drivers/clocksource/timer-prima2.c
1775 X:      drivers/gnss
1776 N:      [^a-z]sirf
1777
1778 ARM/CZ.NIC TURRIS MOX SUPPORT
1779 M:      Marek Behun <marek.behun@nic.cz>
1780 S:      Maintained
1781 W:      http://mox.turris.cz
1782 F:      Documentation/ABI/testing/debugfs-moxtet
1783 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1784 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1785 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1786 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1787 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1788 F:      drivers/bus/moxtet.c
1789 F:      drivers/firmware/turris-mox-rwtm.c
1790 F:      drivers/gpio/gpio-moxtet.c
1791 F:      include/linux/moxtet.h
1792
1793 ARM/EBSA110 MACHINE SUPPORT
1794 M:      Russell King <linux@armlinux.org.uk>
1795 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1796 S:      Maintained
1797 W:      http://www.armlinux.org.uk/
1798 F:      arch/arm/mach-ebsa110/
1799 F:      drivers/net/ethernet/amd/am79c961a.*
1800
1801 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1802 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1803 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1804 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1805 S:      Maintained
1806 N:      efm32
1807
1808 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1809 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1810 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1811 S:      Maintained
1812 F:      arch/arm/mach-pxa/ezx.c
1813
1814 ARM/FARADAY FA526 PORT
1815 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1816 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1817 S:      Maintained
1818 T:      git git://git.berlios.de/gemini-board
1819 F:      arch/arm/mm/*-fa*
1820
1821 ARM/FOOTBRIDGE ARCHITECTURE
1822 M:      Russell King <linux@armlinux.org.uk>
1823 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1824 S:      Maintained
1825 W:      http://www.armlinux.org.uk/
1826 F:      arch/arm/include/asm/hardware/dec21285.h
1827 F:      arch/arm/mach-footbridge/
1828
1829 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1830 M:      Shawn Guo <shawnguo@kernel.org>
1831 M:      Sascha Hauer <s.hauer@pengutronix.de>
1832 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1833 R:      Fabio Estevam <festevam@gmail.com>
1834 R:      NXP Linux Team <linux-imx@nxp.com>
1835 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1836 S:      Maintained
1837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1838 X:      drivers/media/i2c/
1839 N:      imx
1840 N:      mxs
1841
1842 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1843 M:      Shawn Guo <shawnguo@kernel.org>
1844 M:      Li Yang <leoyang.li@nxp.com>
1845 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1846 S:      Maintained
1847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1848 F:      arch/arm/boot/dts/ls1021a*
1849 F:      arch/arm64/boot/dts/freescale/fsl-*
1850 F:      arch/arm64/boot/dts/freescale/qoriq-*
1851
1852 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1853 M:      Shawn Guo <shawnguo@kernel.org>
1854 M:      Sascha Hauer <s.hauer@pengutronix.de>
1855 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1856 R:      Stefan Agner <stefan@agner.ch>
1857 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1858 S:      Maintained
1859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1860 F:      arch/arm/boot/dts/vf*
1861 F:      arch/arm/mach-imx/*vf610*
1862
1863 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1864 M:      Lennert Buytenhek <kernel@wantstofly.org>
1865 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1866 S:      Maintained
1867
1868 ARM/GUMSTIX MACHINE SUPPORT
1869 M:      Steve Sakoman <sakoman@gmail.com>
1870 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1871 S:      Maintained
1872
1873 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1874 M:      Philipp Zabel <philipp.zabel@gmail.com>
1875 M:      Paul Parsons <lost.distance@yahoo.com>
1876 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1877 S:      Maintained
1878 F:      arch/arm/mach-pxa/hx4700.c
1879 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1880 F:      sound/soc/pxa/hx4700.c
1881
1882 ARM/HISILICON SOC SUPPORT
1883 M:      Wei Xu <xuwei5@hisilicon.com>
1884 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1885 S:      Supported
1886 W:      http://www.hisilicon.com
1887 T:      git git://github.com/hisilicon/linux-hisi.git
1888 F:      arch/arm/boot/dts/hi3*
1889 F:      arch/arm/boot/dts/hip*
1890 F:      arch/arm/boot/dts/hisi*
1891 F:      arch/arm/mach-hisi/
1892 F:      arch/arm64/boot/dts/hisilicon/
1893
1894 ARM/HP JORNADA 7XX MACHINE SUPPORT
1895 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1896 S:      Maintained
1897 W:      www.jlime.com
1898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1899 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1900 F:      arch/arm/mach-sa1100/jornada720.c
1901
1902 ARM/IGEP MACHINE SUPPORT
1903 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1904 M:      Javier Martinez Canillas <javier@dowhile0.org>
1905 L:      linux-omap@vger.kernel.org
1906 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1907 S:      Maintained
1908 F:      arch/arm/boot/dts/omap3-igep*
1909
1910 ARM/INCOME PXA270 SUPPORT
1911 M:      Marek Vasut <marek.vasut@gmail.com>
1912 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1913 S:      Maintained
1914 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1915
1916 ARM/INTEL IOP32X ARM ARCHITECTURE
1917 M:      Lennert Buytenhek <kernel@wantstofly.org>
1918 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1919 S:      Maintained
1920
1921 ARM/INTEL IQ81342EX MACHINE SUPPORT
1922 M:      Lennert Buytenhek <kernel@wantstofly.org>
1923 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1924 S:      Maintained
1925
1926 ARM/INTEL IXDP2850 MACHINE SUPPORT
1927 M:      Lennert Buytenhek <kernel@wantstofly.org>
1928 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1929 S:      Maintained
1930
1931 ARM/INTEL IXP4XX ARM ARCHITECTURE
1932 M:      Linus Walleij <linusw@kernel.org>
1933 M:      Imre Kaloz <kaloz@openwrt.org>
1934 M:      Krzysztof Halasa <khalasa@piap.pl>
1935 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1936 S:      Maintained
1937 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1938 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1939 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1940 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1941 F:      arch/arm/mach-ixp4xx/
1942 F:      drivers/clocksource/timer-ixp4xx.c
1943 F:      drivers/gpio/gpio-ixp4xx.c
1944 F:      drivers/irqchip/irq-ixp4xx.c
1945 F:      include/linux/irqchip/irq-ixp4xx.h
1946 F:      include/linux/platform_data/timer-ixp4xx.h
1947
1948 ARM/INTEL KEEMBAY ARCHITECTURE
1949 M:      Paul J. Murphy <paul.j.murphy@intel.com>
1950 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
1951 S:      Maintained
1952 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
1953 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
1954 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
1955
1956 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1957 M:      Jonathan Cameron <jic23@cam.ac.uk>
1958 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1959 S:      Maintained
1960 F:      arch/arm/mach-pxa/stargate2.c
1961 F:      drivers/pcmcia/pxa2xx_stargate2.c
1962
1963 ARM/INTEL XSC3 (MANZANO) ARM CORE
1964 M:      Lennert Buytenhek <kernel@wantstofly.org>
1965 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1966 S:      Maintained
1967
1968 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1969 M:      Lennert Buytenhek <kernel@wantstofly.org>
1970 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1971 S:      Maintained
1972
1973 ARM/LG1K ARCHITECTURE
1974 M:      Chanho Min <chanho.min@lge.com>
1975 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1976 S:      Maintained
1977 F:      arch/arm64/boot/dts/lg/
1978
1979 ARM/LOGICPD PXA270 MACHINE SUPPORT
1980 M:      Lennert Buytenhek <kernel@wantstofly.org>
1981 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1982 S:      Maintained
1983
1984 ARM/LPC18XX ARCHITECTURE
1985 M:      Vladimir Zapolskiy <vz@mleia.com>
1986 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1987 S:      Maintained
1988 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1989 F:      arch/arm/boot/dts/lpc43*
1990 F:      drivers/i2c/busses/i2c-lpc2k.c
1991 F:      drivers/memory/pl172.c
1992 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
1993 F:      drivers/rtc/rtc-lpc24xx.c
1994 N:      lpc18xx
1995
1996 ARM/LPC32XX SOC SUPPORT
1997 M:      Vladimir Zapolskiy <vz@mleia.com>
1998 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
1999 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2000 S:      Maintained
2001 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2002 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2003 F:      arch/arm/boot/dts/lpc32*
2004 F:      arch/arm/mach-lpc32xx/
2005 F:      drivers/i2c/busses/i2c-pnx.c
2006 F:      drivers/net/ethernet/nxp/lpc_eth.c
2007 F:      drivers/usb/host/ohci-nxp.c
2008 F:      drivers/watchdog/pnx4008_wdt.c
2009 N:      lpc32xx
2010
2011 ARM/MAGICIAN MACHINE SUPPORT
2012 M:      Philipp Zabel <philipp.zabel@gmail.com>
2013 S:      Maintained
2014
2015 ARM/Marvell Dove/MV78xx0/Orion SOC support
2016 M:      Jason Cooper <jason@lakedaemon.net>
2017 M:      Andrew Lunn <andrew@lunn.ch>
2018 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2019 M:      Gregory Clement <gregory.clement@bootlin.com>
2020 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2021 S:      Maintained
2022 T:      git git://git.infradead.org/linux-mvebu.git
2023 F:      Documentation/devicetree/bindings/soc/dove/
2024 F:      arch/arm/boot/dts/dove*
2025 F:      arch/arm/boot/dts/orion5x*
2026 F:      arch/arm/mach-dove/
2027 F:      arch/arm/mach-mv78xx0/
2028 F:      arch/arm/mach-orion5x/
2029 F:      arch/arm/plat-orion/
2030 F:      drivers/soc/dove/
2031
2032 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2033 M:      Jason Cooper <jason@lakedaemon.net>
2034 M:      Andrew Lunn <andrew@lunn.ch>
2035 M:      Gregory Clement <gregory.clement@bootlin.com>
2036 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2037 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2038 S:      Maintained
2039 T:      git git://git.infradead.org/linux-mvebu.git
2040 F:      arch/arm/boot/dts/armada*
2041 F:      arch/arm/boot/dts/kirkwood*
2042 F:      arch/arm/configs/mvebu_*_defconfig
2043 F:      arch/arm/mach-mvebu/
2044 F:      arch/arm64/boot/dts/marvell/armada*
2045 F:      arch/arm64/boot/dts/marvell/cn913*
2046 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2047 F:      drivers/cpufreq/armada-8k-cpufreq.c
2048 F:      drivers/cpufreq/mvebu-cpufreq.c
2049 F:      drivers/irqchip/irq-armada-370-xp.c
2050 F:      drivers/irqchip/irq-mvebu-*
2051 F:      drivers/pinctrl/mvebu/
2052 F:      drivers/rtc/rtc-armada38x.c
2053
2054 ARM/Mediatek RTC DRIVER
2055 M:      Eddie Huang <eddie.huang@mediatek.com>
2056 M:      Sean Wang <sean.wang@mediatek.com>
2057 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2058 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2059 S:      Maintained
2060 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2061 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2062 F:      drivers/rtc/rtc-mt2712.c
2063 F:      drivers/rtc/rtc-mt6397.c
2064 F:      drivers/rtc/rtc-mt7622.c
2065
2066 ARM/Mediatek SoC support
2067 M:      Matthias Brugger <matthias.bgg@gmail.com>
2068 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2069 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2070 S:      Maintained
2071 W:      https://mtk.bcnfs.org/
2072 C:      irc://chat.freenode.net/linux-mediatek
2073 F:      arch/arm/boot/dts/mt6*
2074 F:      arch/arm/boot/dts/mt7*
2075 F:      arch/arm/boot/dts/mt8*
2076 F:      arch/arm/mach-mediatek/
2077 F:      arch/arm64/boot/dts/mediatek/
2078 F:      drivers/soc/mediatek/
2079 N:      mtk
2080 N:      mt[678]
2081 K:      mediatek
2082
2083 ARM/Mediatek USB3 PHY DRIVER
2084 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2085 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2086 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2087 S:      Maintained
2088 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
2089 F:      drivers/phy/mediatek/
2090
2091 ARM/Microchip (AT91) SoC support
2092 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2093 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2094 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2095 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2096 S:      Supported
2097 W:      http://www.linux4sam.org
2098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2099 F:      arch/arm/boot/dts/at91*.dts
2100 F:      arch/arm/boot/dts/at91*.dtsi
2101 F:      arch/arm/boot/dts/sama*.dts
2102 F:      arch/arm/boot/dts/sama*.dtsi
2103 F:      arch/arm/include/debug/at91.S
2104 F:      arch/arm/mach-at91/
2105 F:      drivers/memory/atmel*
2106 F:      drivers/watchdog/sama5d4_wdt.c
2107 F:      include/soc/at91/
2108 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2109 X:      drivers/net/wireless/atmel/
2110 N:      at91
2111 N:      atmel
2112
2113 ARM/Microchip Sparx5 SoC support
2114 M:      Lars Povlsen <lars.povlsen@microchip.com>
2115 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2116 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
2117 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2118 S:      Supported
2119 T:      git git://github.com/microchip-ung/linux-upstream.git
2120 F:      arch/arm64/boot/dts/microchip/
2121 N:      sparx5
2122
2123 ARM/MIOA701 MACHINE SUPPORT
2124 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2125 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2126 S:      Maintained
2127 F:      arch/arm/mach-pxa/mioa701.c
2128
2129 ARM/MStar/Sigmastar Armv7 SoC support
2130 M:      Daniel Palmer <daniel@thingy.jp>
2131 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2132 S:      Maintained
2133 W:      http://linux-chenxing.org/
2134 F:      Documentation/devicetree/bindings/arm/mstar/*
2135 F:      arch/arm/boot/dts/mstar-*
2136 F:      arch/arm/mach-mstar/
2137
2138 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2139 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2140 S:      Maintained
2141
2142 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2143 M:      Linus Walleij <linus.walleij@linaro.org>
2144 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2145 S:      Maintained
2146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2147 F:      Documentation/devicetree/bindings/arm/ste-*
2148 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2149 F:      Documentation/devicetree/bindings/arm/ux500/
2150 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2151 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2152 F:      arch/arm/boot/dts/ste-*
2153 F:      arch/arm/mach-nomadik/
2154 F:      arch/arm/mach-u300/
2155 F:      arch/arm/mach-ux500/
2156 F:      drivers/clk/clk-nomadik.c
2157 F:      drivers/clk/clk-u300.c
2158 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2159 F:      drivers/clocksource/timer-u300.c
2160 F:      drivers/dma/coh901318*
2161 F:      drivers/dma/ste_dma40*
2162 F:      drivers/hwspinlock/u8500_hsem.c
2163 F:      drivers/i2c/busses/i2c-nomadik.c
2164 F:      drivers/i2c/busses/i2c-stu300.c
2165 F:      drivers/iio/adc/ab8500-gpadc.c
2166 F:      drivers/mfd/ab3100*
2167 F:      drivers/mfd/ab8500*
2168 F:      drivers/mfd/abx500*
2169 F:      drivers/mfd/db8500*
2170 F:      drivers/mfd/dbx500*
2171 F:      drivers/pinctrl/nomadik/
2172 F:      drivers/pinctrl/pinctrl-coh901*
2173 F:      drivers/pinctrl/pinctrl-u300.c
2174 F:      drivers/rtc/rtc-ab3100.c
2175 F:      drivers/rtc/rtc-ab8500.c
2176 F:      drivers/rtc/rtc-coh901331.c
2177 F:      drivers/rtc/rtc-pl031.c
2178 F:      drivers/soc/ux500/
2179 F:      drivers/watchdog/coh901327_wdt.c
2180
2181 ARM/NUVOTON NPCM ARCHITECTURE
2182 M:      Avi Fishman <avifishman70@gmail.com>
2183 M:      Tomer Maimon <tmaimon77@gmail.com>
2184 M:      Tali Perry <tali.perry1@gmail.com>
2185 R:      Patrick Venture <venture@google.com>
2186 R:      Nancy Yuen <yuenn@google.com>
2187 R:      Benjamin Fair <benjaminfair@google.com>
2188 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2189 S:      Supported
2190 F:      Documentation/devicetree/bindings/*/*/*npcm*
2191 F:      Documentation/devicetree/bindings/*/*npcm*
2192 F:      arch/arm/boot/dts/nuvoton-npcm*
2193 F:      arch/arm/mach-npcm/
2194 F:      drivers/*/*npcm*
2195 F:      drivers/*/*/*npcm*
2196 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2197
2198 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2199 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2200 S:      Orphan
2201 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2202 F:      arch/arm/mach-s3c/gta02.h
2203 F:      arch/arm/mach-s3c/mach-gta02.c
2204
2205 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2206 M:      Alexander Clouter <alex@digriz.org.uk>
2207 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2208 S:      Maintained
2209 W:      http://www.digriz.org.uk/ts78xx/kernel
2210 F:      arch/arm/mach-orion5x/ts78xx-*
2211
2212 ARM/OXNAS platform support
2213 M:      Neil Armstrong <narmstrong@baylibre.com>
2214 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2215 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2216 S:      Maintained
2217 F:      arch/arm/boot/dts/ox8*.dts*
2218 F:      arch/arm/mach-oxnas/
2219 F:      drivers/power/reset/oxnas-restart.c
2220 N:      oxnas
2221
2222 ARM/PALM TREO SUPPORT
2223 M:      Tomas Cech <sleep_walker@suse.com>
2224 L:      linux-arm-kernel@lists.infradead.org
2225 S:      Maintained
2226 W:      http://hackndev.com
2227 F:      arch/arm/mach-pxa/palmtreo.*
2228
2229 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2230 M:      Marek Vasut <marek.vasut@gmail.com>
2231 L:      linux-arm-kernel@lists.infradead.org
2232 S:      Maintained
2233 W:      http://hackndev.com
2234 F:      arch/arm/mach-pxa/include/mach/palmld.h
2235 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2236 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2237 F:      arch/arm/mach-pxa/palmld.c
2238 F:      arch/arm/mach-pxa/palmt5.*
2239 F:      arch/arm/mach-pxa/palmtc.c
2240 F:      arch/arm/mach-pxa/palmte2.*
2241 F:      arch/arm/mach-pxa/palmtx.c
2242
2243 ARM/PALMZ72 SUPPORT
2244 M:      Sergey Lapin <slapin@ossfans.org>
2245 L:      linux-arm-kernel@lists.infradead.org
2246 S:      Maintained
2247 W:      http://hackndev.com
2248 F:      arch/arm/mach-pxa/palmz72.*
2249
2250 ARM/PLEB SUPPORT
2251 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2252 S:      Maintained
2253 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2254
2255 ARM/PT DIGITAL BOARD PORT
2256 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2257 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2258 S:      Maintained
2259 W:      http://www.armlinux.org.uk/
2260
2261 ARM/QUALCOMM SUPPORT
2262 M:      Andy Gross <agross@kernel.org>
2263 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2264 L:      linux-arm-msm@vger.kernel.org
2265 S:      Maintained
2266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2267 F:      Documentation/devicetree/bindings/*/qcom*
2268 F:      Documentation/devicetree/bindings/soc/qcom/
2269 F:      arch/arm/boot/dts/qcom-*.dts
2270 F:      arch/arm/boot/dts/qcom-*.dtsi
2271 F:      arch/arm/mach-qcom/
2272 F:      arch/arm64/boot/dts/qcom/
2273 F:      drivers/*/*/qcom*
2274 F:      drivers/*/*/qcom/
2275 F:      drivers/*/pm8???-*
2276 F:      drivers/*/qcom*
2277 F:      drivers/*/qcom/
2278 F:      drivers/bluetooth/btqcomsmd.c
2279 F:      drivers/clocksource/timer-qcom.c
2280 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2281 F:      drivers/extcon/extcon-qcom*
2282 F:      drivers/i2c/busses/i2c-qcom-geni.c
2283 F:      drivers/i2c/busses/i2c-qup.c
2284 F:      drivers/iommu/msm*
2285 F:      drivers/mfd/ssbi.c
2286 F:      drivers/mmc/host/mmci_qcom*
2287 F:      drivers/mmc/host/sdhci-msm.c
2288 F:      drivers/pci/controller/dwc/pcie-qcom.c
2289 F:      drivers/phy/qualcomm/
2290 F:      drivers/power/*/msm*
2291 F:      drivers/reset/reset-qcom-*
2292 F:      drivers/scsi/ufs/ufs-qcom*
2293 F:      drivers/spi/spi-geni-qcom.c
2294 F:      drivers/spi/spi-qcom-qspi.c
2295 F:      drivers/spi/spi-qup.c
2296 F:      drivers/tty/serial/msm_serial.c
2297 F:      drivers/usb/dwc3/dwc3-qcom.c
2298 F:      include/dt-bindings/*/qcom*
2299 F:      include/linux/*/qcom*
2300
2301 ARM/RADISYS ENP2611 MACHINE SUPPORT
2302 M:      Lennert Buytenhek <kernel@wantstofly.org>
2303 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2304 S:      Maintained
2305
2306 ARM/RDA MICRO ARCHITECTURE
2307 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2308 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2309 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2310 S:      Maintained
2311 F:      Documentation/devicetree/bindings/arm/rda.yaml
2312 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2313 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2314 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2315 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2316 F:      arch/arm/boot/dts/rda8810pl-*
2317 F:      drivers/clocksource/timer-rda.c
2318 F:      drivers/gpio/gpio-rda.c
2319 F:      drivers/irqchip/irq-rda-intc.c
2320 F:      drivers/tty/serial/rda-uart.c
2321
2322 ARM/REALTEK ARCHITECTURE
2323 M:      Andreas Färber <afaerber@suse.de>
2324 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2325 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2326 S:      Maintained
2327 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2328 F:      arch/arm/boot/dts/rtd*
2329 F:      arch/arm/mach-realtek/
2330 F:      arch/arm64/boot/dts/realtek/
2331
2332 ARM/RENESAS ARM64 ARCHITECTURE
2333 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2334 M:      Magnus Damm <magnus.damm@gmail.com>
2335 L:      linux-renesas-soc@vger.kernel.org
2336 S:      Supported
2337 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2339 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2340 F:      arch/arm64/boot/dts/renesas/
2341 F:      drivers/soc/renesas/
2342 F:      include/linux/soc/renesas/
2343
2344 ARM/RISCPC ARCHITECTURE
2345 M:      Russell King <linux@armlinux.org.uk>
2346 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2347 S:      Maintained
2348 W:      http://www.armlinux.org.uk/
2349 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2350 F:      arch/arm/include/asm/hardware/ioc.h
2351 F:      arch/arm/include/asm/hardware/iomd.h
2352 F:      arch/arm/include/asm/hardware/memc.h
2353 F:      arch/arm/mach-rpc/
2354 F:      drivers/net/ethernet/8390/etherh.c
2355 F:      drivers/net/ethernet/i825xx/ether1*
2356 F:      drivers/net/ethernet/seeq/ether3*
2357 F:      drivers/scsi/arm/
2358
2359 ARM/Rockchip SoC support
2360 M:      Heiko Stuebner <heiko@sntech.de>
2361 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2362 L:      linux-rockchip@lists.infradead.org
2363 S:      Maintained
2364 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2365 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2366 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2367 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2368 F:      arch/arm/boot/dts/rk3*
2369 F:      arch/arm/boot/dts/rv1108*
2370 F:      arch/arm/mach-rockchip/
2371 F:      drivers/*/*/*rockchip*
2372 F:      drivers/*/*rockchip*
2373 F:      drivers/clk/rockchip/
2374 F:      drivers/i2c/busses/i2c-rk3x.c
2375 F:      sound/soc/rockchip/
2376 N:      rockchip
2377
2378 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
2379 M:      Kukjin Kim <kgene@kernel.org>
2380 M:      Krzysztof Kozlowski <krzk@kernel.org>
2381 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2382 L:      linux-samsung-soc@vger.kernel.org
2383 S:      Maintained
2384 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2385 F:      Documentation/arm/samsung/
2386 F:      Documentation/devicetree/bindings/arm/samsung/
2387 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2388 F:      arch/arm/boot/dts/exynos*
2389 F:      arch/arm/boot/dts/s3c*
2390 F:      arch/arm/boot/dts/s5p*
2391 F:      arch/arm/mach-exynos*/
2392 F:      arch/arm/mach-s3c/
2393 F:      arch/arm/mach-s5p*/
2394 F:      arch/arm64/boot/dts/exynos/
2395 F:      drivers/*/*/*s3c24*
2396 F:      drivers/*/*s3c24*
2397 F:      drivers/*/*s3c64xx*
2398 F:      drivers/*/*s5pv210*
2399 F:      drivers/memory/samsung/
2400 F:      drivers/soc/samsung/
2401 F:      drivers/tty/serial/samsung*
2402 F:      include/linux/soc/samsung/
2403 N:      exynos
2404 N:      s3c2410
2405 N:      s3c64xx
2406 N:      s5pv210
2407
2408 ARM/SAMSUNG MOBILE MACHINE SUPPORT
2409 M:      Kyungmin Park <kyungmin.park@samsung.com>
2410 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2411 S:      Maintained
2412 F:      arch/arm/mach-s5pv210/
2413
2414 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2415 M:      Kyungmin Park <kyungmin.park@samsung.com>
2416 M:      Kamil Debski <kamil@wypas.org>
2417 M:      Andrzej Hajda <a.hajda@samsung.com>
2418 L:      linux-arm-kernel@lists.infradead.org
2419 L:      linux-media@vger.kernel.org
2420 S:      Maintained
2421 F:      drivers/media/platform/s5p-g2d/
2422
2423 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2424 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2425 L:      linux-samsung-soc@vger.kernel.org
2426 L:      linux-media@vger.kernel.org
2427 S:      Maintained
2428 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2429 F:      drivers/media/cec/platform/s5p/
2430
2431 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2432 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2433 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2434 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2435 L:      linux-arm-kernel@lists.infradead.org
2436 L:      linux-media@vger.kernel.org
2437 S:      Maintained
2438 F:      drivers/media/platform/s5p-jpeg/
2439
2440 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2441 M:      Kyungmin Park <kyungmin.park@samsung.com>
2442 M:      Kamil Debski <kamil@wypas.org>
2443 M:      Jeongtae Park <jtp.park@samsung.com>
2444 M:      Andrzej Hajda <a.hajda@samsung.com>
2445 L:      linux-arm-kernel@lists.infradead.org
2446 L:      linux-media@vger.kernel.org
2447 S:      Maintained
2448 F:      drivers/media/platform/s5p-mfc/
2449
2450 ARM/SHMOBILE ARM ARCHITECTURE
2451 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2452 M:      Magnus Damm <magnus.damm@gmail.com>
2453 L:      linux-renesas-soc@vger.kernel.org
2454 S:      Supported
2455 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2457 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2458 F:      arch/arm/boot/dts/emev2*
2459 F:      arch/arm/boot/dts/gr-peach*
2460 F:      arch/arm/boot/dts/iwg20d-q7*
2461 F:      arch/arm/boot/dts/r7s*
2462 F:      arch/arm/boot/dts/r8a*
2463 F:      arch/arm/boot/dts/r9a*
2464 F:      arch/arm/boot/dts/sh*
2465 F:      arch/arm/configs/shmobile_defconfig
2466 F:      arch/arm/include/debug/renesas-scif.S
2467 F:      arch/arm/mach-shmobile/
2468 F:      drivers/soc/renesas/
2469 F:      include/linux/soc/renesas/
2470
2471 ARM/SOCFPGA ARCHITECTURE
2472 M:      Dinh Nguyen <dinguyen@kernel.org>
2473 S:      Maintained
2474 W:      http://www.rocketboards.org
2475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2476 F:      arch/arm/boot/dts/socfpga*
2477 F:      arch/arm/configs/socfpga_defconfig
2478 F:      arch/arm/mach-socfpga/
2479 F:      arch/arm64/boot/dts/altera/
2480 F:      arch/arm64/boot/dts/intel/
2481
2482 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2483 M:      Dinh Nguyen <dinguyen@kernel.org>
2484 S:      Maintained
2485 F:      drivers/clk/socfpga/
2486
2487 ARM/SOCFPGA EDAC SUPPORT
2488 M:      Dinh Nguyen <dinguyen@kernel.org>
2489 S:      Maintained
2490 F:      drivers/edac/altera_edac.
2491
2492 ARM/SPREADTRUM SoC SUPPORT
2493 M:      Orson Zhai <orsonzhai@gmail.com>
2494 M:      Baolin Wang <baolin.wang7@gmail.com>
2495 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2496 S:      Maintained
2497 F:      arch/arm64/boot/dts/sprd
2498 N:      sprd
2499 N:      sc27xx
2500 N:      sc2731
2501
2502 ARM/STI ARCHITECTURE
2503 M:      Patrice Chotard <patrice.chotard@st.com>
2504 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2505 S:      Maintained
2506 W:      http://www.stlinux.com
2507 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2508 F:      arch/arm/boot/dts/sti*
2509 F:      arch/arm/mach-sti/
2510 F:      drivers/ata/ahci_st.c
2511 F:      drivers/char/hw_random/st-rng.c
2512 F:      drivers/clocksource/arm_global_timer.c
2513 F:      drivers/clocksource/clksrc_st_lpc.c
2514 F:      drivers/cpufreq/sti-cpufreq.c
2515 F:      drivers/dma/st_fdma*
2516 F:      drivers/i2c/busses/i2c-st.c
2517 F:      drivers/media/platform/sti/c8sectpfe/
2518 F:      drivers/media/rc/st_rc.c
2519 F:      drivers/mmc/host/sdhci-st.c
2520 F:      drivers/phy/st/phy-miphy28lp.c
2521 F:      drivers/phy/st/phy-stih407-usb.c
2522 F:      drivers/pinctrl/pinctrl-st.c
2523 F:      drivers/remoteproc/st_remoteproc.c
2524 F:      drivers/remoteproc/st_slim_rproc.c
2525 F:      drivers/reset/sti/
2526 F:      drivers/rtc/rtc-st-lpc.c
2527 F:      drivers/tty/serial/st-asc.c
2528 F:      drivers/usb/dwc3/dwc3-st.c
2529 F:      drivers/usb/host/ehci-st.c
2530 F:      drivers/usb/host/ohci-st.c
2531 F:      drivers/watchdog/st_lpc_wdt.c
2532 F:      include/linux/remoteproc/st_slim_rproc.h
2533
2534 ARM/STM32 ARCHITECTURE
2535 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2536 M:      Alexandre Torgue <alexandre.torgue@st.com>
2537 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2538 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2539 S:      Maintained
2540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2541 F:      arch/arm/boot/dts/stm32*
2542 F:      arch/arm/mach-stm32/
2543 F:      drivers/clocksource/armv7m_systick.c
2544 N:      stm32
2545 N:      stm
2546
2547 ARM/Synaptics SoC support
2548 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2549 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2550 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2551 S:      Maintained
2552 F:      arch/arm/boot/dts/berlin*
2553 F:      arch/arm/mach-berlin/
2554 F:      arch/arm64/boot/dts/synaptics/
2555
2556 ARM/TANGO ARCHITECTURE
2557 M:      Marc Gonzalez <marc.w.gonzalez@free.fr>
2558 M:      Mans Rullgard <mans@mansr.com>
2559 L:      linux-arm-kernel@lists.infradead.org
2560 S:      Odd Fixes
2561 N:      tango
2562
2563 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2564 M:      Lennert Buytenhek <kernel@wantstofly.org>
2565 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2566 S:      Maintained
2567
2568 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2569 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2570 L:      linux-tegra@vger.kernel.org
2571 L:      linux-media@vger.kernel.org
2572 S:      Maintained
2573 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2574 F:      drivers/media/cec/platform/tegra/
2575
2576 ARM/TETON BGA MACHINE SUPPORT
2577 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2578 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2579 S:      Maintained
2580
2581 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2582 M:      Santosh Shilimkar <ssantosh@kernel.org>
2583 L:      linux-kernel@vger.kernel.org
2584 S:      Maintained
2585 F:      drivers/memory/*emif*
2586
2587 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2588 M:      Santosh Shilimkar <ssantosh@kernel.org>
2589 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2590 S:      Maintained
2591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2592 F:      arch/arm/boot/dts/keystone-*
2593 F:      arch/arm/mach-keystone/
2594
2595 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2596 M:      Santosh Shilimkar <ssantosh@kernel.org>
2597 L:      linux-kernel@vger.kernel.org
2598 S:      Maintained
2599 F:      drivers/clk/keystone/
2600
2601 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2602 M:      Santosh Shilimkar <ssantosh@kernel.org>
2603 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2604 L:      linux-kernel@vger.kernel.org
2605 S:      Maintained
2606 F:      drivers/clocksource/timer-keystone.c
2607
2608 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2609 M:      Santosh Shilimkar <ssantosh@kernel.org>
2610 L:      linux-kernel@vger.kernel.org
2611 S:      Maintained
2612 F:      drivers/power/reset/keystone-reset.c
2613
2614 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2615 M:      Tero Kristo <t-kristo@ti.com>
2616 M:      Nishanth Menon <nm@ti.com>
2617 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2618 S:      Supported
2619 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2620 F:      arch/arm64/boot/dts/ti/Makefile
2621 F:      arch/arm64/boot/dts/ti/k3-*
2622 F:      include/dt-bindings/pinctrl/k3.h
2623
2624 ARM/THECUS N2100 MACHINE SUPPORT
2625 M:      Lennert Buytenhek <kernel@wantstofly.org>
2626 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2627 S:      Maintained
2628
2629 ARM/TOSA MACHINE SUPPORT
2630 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2631 M:      Dirk Opfer <dirk@opfer-online.de>
2632 S:      Maintained
2633
2634 ARM/TOSHIBA VISCONTI ARCHITECTURE
2635 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2636 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2637 S:      Supported
2638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2639 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2640 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2641 F:      arch/arm64/boot/dts/toshiba/
2642 F:      drivers/pinctrl/visconti/
2643 N:      visconti
2644
2645 ARM/UNIPHIER ARCHITECTURE
2646 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
2647 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2648 S:      Maintained
2649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2650 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2651 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2652 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2653 F:      arch/arm/boot/dts/uniphier*
2654 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2655 F:      arch/arm/mach-uniphier/
2656 F:      arch/arm/mm/cache-uniphier.c
2657 F:      arch/arm64/boot/dts/socionext/uniphier*
2658 F:      drivers/bus/uniphier-system-bus.c
2659 F:      drivers/clk/uniphier/
2660 F:      drivers/dma/uniphier-mdmac.c
2661 F:      drivers/gpio/gpio-uniphier.c
2662 F:      drivers/i2c/busses/i2c-uniphier*
2663 F:      drivers/irqchip/irq-uniphier-aidet.c
2664 F:      drivers/mmc/host/uniphier-sd.c
2665 F:      drivers/pinctrl/uniphier/
2666 F:      drivers/reset/reset-uniphier.c
2667 F:      drivers/tty/serial/8250/8250_uniphier.c
2668 N:      uniphier
2669
2670 ARM/VERSATILE EXPRESS PLATFORM
2671 M:      Liviu Dudau <liviu.dudau@arm.com>
2672 M:      Sudeep Holla <sudeep.holla@arm.com>
2673 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2674 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2675 S:      Maintained
2676 F:      */*/*/vexpress*
2677 F:      */*/vexpress*
2678 F:      arch/arm/boot/dts/vexpress*
2679 F:      arch/arm/mach-vexpress/
2680 F:      arch/arm64/boot/dts/arm/
2681 F:      drivers/clk/versatile/clk-vexpress-osc.c
2682 F:      drivers/clocksource/timer-versatile.c
2683 N:      mps2
2684
2685 ARM/VFP SUPPORT
2686 M:      Russell King <linux@armlinux.org.uk>
2687 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2688 S:      Maintained
2689 W:      http://www.armlinux.org.uk/
2690 F:      arch/arm/vfp/
2691
2692 ARM/VOIPAC PXA270 SUPPORT
2693 M:      Marek Vasut <marek.vasut@gmail.com>
2694 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2695 S:      Maintained
2696 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2697 F:      arch/arm/mach-pxa/vpac270.c
2698
2699 ARM/VT8500 ARM ARCHITECTURE
2700 M:      Tony Prisk <linux@prisktech.co.nz>
2701 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2702 S:      Maintained
2703 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2704 F:      arch/arm/mach-vt8500/
2705 F:      drivers/clocksource/timer-vt8500.c
2706 F:      drivers/i2c/busses/i2c-wmt.c
2707 F:      drivers/mmc/host/wmt-sdmmc.c
2708 F:      drivers/pwm/pwm-vt8500.c
2709 F:      drivers/rtc/rtc-vt8500.c
2710 F:      drivers/tty/serial/vt8500_serial.c
2711 F:      drivers/usb/host/ehci-platform.c
2712 F:      drivers/usb/host/uhci-platform.c
2713 F:      drivers/video/fbdev/vt8500lcdfb.*
2714 F:      drivers/video/fbdev/wm8505fb*
2715 F:      drivers/video/fbdev/wmt_ge_rops.*
2716
2717 ARM/ZIPIT Z2 SUPPORT
2718 M:      Marek Vasut <marek.vasut@gmail.com>
2719 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2720 S:      Maintained
2721 F:      arch/arm/mach-pxa/include/mach/z2.h
2722 F:      arch/arm/mach-pxa/z2.c
2723
2724 ARM/ZTE ARCHITECTURE
2725 M:      Jun Nie <jun.nie@linaro.org>
2726 M:      Shawn Guo <shawnguo@kernel.org>
2727 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2728 S:      Maintained
2729 F:      Documentation/devicetree/bindings/arm/zte.yaml
2730 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2731 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2732 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2733 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2734 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2735 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2736 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2737 F:      Documentation/devicetree/bindings/soc/zte/
2738 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2739 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2740 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2741 F:      arch/arm/boot/dts/zx2967*
2742 F:      arch/arm/mach-zx/
2743 F:      arch/arm64/boot/dts/zte/
2744 F:      drivers/clk/zte/
2745 F:      drivers/dma/zx_dma.c
2746 F:      drivers/gpio/gpio-zx.c
2747 F:      drivers/i2c/busses/i2c-zx2967.c
2748 F:      drivers/mmc/host/dw_mmc-zx.*
2749 F:      drivers/pinctrl/zte/
2750 F:      drivers/soc/zte/
2751 F:      drivers/thermal/zx2967_thermal.c
2752 F:      drivers/watchdog/zx2967_wdt.c
2753 F:      include/dt-bindings/clock/zx2967*.h
2754 F:      include/dt-bindings/soc/zte,*.h
2755 F:      sound/soc/codecs/zx_aud96p22.c
2756 F:      sound/soc/zte/
2757
2758 ARM/ZYNQ ARCHITECTURE
2759 M:      Michal Simek <michal.simek@xilinx.com>
2760 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2761 S:      Supported
2762 W:      http://wiki.xilinx.com
2763 T:      git https://github.com/Xilinx/linux-xlnx.git
2764 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2765 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2766 F:      arch/arm/mach-zynq/
2767 F:      drivers/block/xsysace.c
2768 F:      drivers/clocksource/timer-cadence-ttc.c
2769 F:      drivers/cpuidle/cpuidle-zynq.c
2770 F:      drivers/edac/synopsys_edac.c
2771 F:      drivers/i2c/busses/i2c-cadence.c
2772 F:      drivers/i2c/busses/i2c-xiic.c
2773 F:      drivers/mmc/host/sdhci-of-arasan.c
2774 N:      zynq
2775 N:      xilinx
2776
2777 ARM64 PORT (AARCH64 ARCHITECTURE)
2778 M:      Catalin Marinas <catalin.marinas@arm.com>
2779 M:      Will Deacon <will@kernel.org>
2780 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2781 S:      Maintained
2782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2783 F:      Documentation/arm64/
2784 F:      arch/arm64/
2785 F:      tools/testing/selftests/arm64/
2786 X:      arch/arm64/boot/dts/
2787
2788 AS3645A LED FLASH CONTROLLER DRIVER
2789 M:      Sakari Ailus <sakari.ailus@iki.fi>
2790 L:      linux-leds@vger.kernel.org
2791 S:      Maintained
2792 F:      drivers/leds/leds-as3645a.c
2793
2794 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2795 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2796 L:      linux-media@vger.kernel.org
2797 S:      Maintained
2798 T:      git git://linuxtv.org/media_tree.git
2799 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2800 F:      drivers/media/i2c/ak7375.c
2801
2802 ASAHI KASEI AK8974 DRIVER
2803 M:      Linus Walleij <linus.walleij@linaro.org>
2804 L:      linux-iio@vger.kernel.org
2805 S:      Supported
2806 W:      http://www.akm.com/
2807 F:      drivers/iio/magnetometer/ak8974.c
2808
2809 ASC7621 HARDWARE MONITOR DRIVER
2810 M:      George Joseph <george.joseph@fairview5.com>
2811 L:      linux-hwmon@vger.kernel.org
2812 S:      Maintained
2813 F:      Documentation/hwmon/asc7621.rst
2814 F:      drivers/hwmon/asc7621.c
2815
2816 ASPEED PINCTRL DRIVERS
2817 M:      Andrew Jeffery <andrew@aj.id.au>
2818 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2819 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2820 L:      linux-gpio@vger.kernel.org
2821 S:      Maintained
2822 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2823 F:      drivers/pinctrl/aspeed/
2824
2825 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2826 M:      Eddie James <eajames@linux.ibm.com>
2827 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2828 S:      Maintained
2829 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2830 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2831 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2832
2833 ASPEED VIDEO ENGINE DRIVER
2834 M:      Eddie James <eajames@linux.ibm.com>
2835 L:      linux-media@vger.kernel.org
2836 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2837 S:      Maintained
2838 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2839 F:      drivers/media/platform/aspeed-video.c
2840
2841 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2842 M:      Corentin Chary <corentin.chary@gmail.com>
2843 L:      acpi4asus-user@lists.sourceforge.net
2844 L:      platform-driver-x86@vger.kernel.org
2845 S:      Maintained
2846 W:      http://acpi4asus.sf.net
2847 F:      drivers/platform/x86/asus*.c
2848 F:      drivers/platform/x86/eeepc*.c
2849
2850 ASUS WIRELESS RADIO CONTROL DRIVER
2851 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2852 L:      platform-driver-x86@vger.kernel.org
2853 S:      Maintained
2854 F:      drivers/platform/x86/asus-wireless.c
2855
2856 ASYMMETRIC KEYS
2857 M:      David Howells <dhowells@redhat.com>
2858 L:      keyrings@vger.kernel.org
2859 S:      Maintained
2860 F:      Documentation/crypto/asymmetric-keys.rst
2861 F:      crypto/asymmetric_keys/
2862 F:      include/crypto/pkcs7.h
2863 F:      include/crypto/public_key.h
2864 F:      include/linux/verification.h
2865
2866 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2867 R:      Dan Williams <dan.j.williams@intel.com>
2868 S:      Odd fixes
2869 W:      http://sourceforge.net/projects/xscaleiop
2870 F:      Documentation/crypto/async-tx-api.rst
2871 F:      crypto/async_tx/
2872 F:      drivers/dma/
2873 F:      include/linux/async_tx.h
2874 F:      include/linux/dmaengine.h
2875
2876 AT24 EEPROM DRIVER
2877 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2878 L:      linux-i2c@vger.kernel.org
2879 S:      Maintained
2880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2881 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2882 F:      drivers/misc/eeprom/at24.c
2883
2884 ATA OVER ETHERNET (AOE) DRIVER
2885 M:      "Justin Sanders" <justin@coraid.com>
2886 S:      Supported
2887 W:      http://www.openaoe.org/
2888 F:      Documentation/admin-guide/aoe/
2889 F:      drivers/block/aoe/
2890
2891 ATHEROS 71XX/9XXX GPIO DRIVER
2892 M:      Alban Bedel <albeu@free.fr>
2893 S:      Maintained
2894 W:      https://github.com/AlbanBedel/linux
2895 T:      git git://github.com/AlbanBedel/linux
2896 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2897 F:      drivers/gpio/gpio-ath79.c
2898
2899 ATHEROS 71XX/9XXX USB PHY DRIVER
2900 M:      Alban Bedel <albeu@free.fr>
2901 S:      Maintained
2902 W:      https://github.com/AlbanBedel/linux
2903 T:      git git://github.com/AlbanBedel/linux
2904 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2905 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2906
2907 ATHEROS ATH GENERIC UTILITIES
2908 M:      Kalle Valo <kvalo@codeaurora.org>
2909 L:      linux-wireless@vger.kernel.org
2910 S:      Supported
2911 F:      drivers/net/wireless/ath/*
2912
2913 ATHEROS ATH5K WIRELESS DRIVER
2914 M:      Jiri Slaby <jirislaby@kernel.org>
2915 M:      Nick Kossifidis <mickflemm@gmail.com>
2916 M:      Luis Chamberlain <mcgrof@kernel.org>
2917 L:      linux-wireless@vger.kernel.org
2918 S:      Maintained
2919 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2920 F:      drivers/net/wireless/ath/ath5k/
2921
2922 ATHEROS ATH6KL WIRELESS DRIVER
2923 M:      Kalle Valo <kvalo@codeaurora.org>
2924 L:      linux-wireless@vger.kernel.org
2925 S:      Supported
2926 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2928 F:      drivers/net/wireless/ath/ath6kl/
2929
2930 ATI_REMOTE2 DRIVER
2931 M:      Ville Syrjala <syrjala@sci.fi>
2932 S:      Maintained
2933 F:      drivers/input/misc/ati_remote2.c
2934
2935 ATK0110 HWMON DRIVER
2936 M:      Luca Tettamanti <kronos.it@gmail.com>
2937 L:      linux-hwmon@vger.kernel.org
2938 S:      Maintained
2939 F:      drivers/hwmon/asus_atk0110.c
2940
2941 ATLX ETHERNET DRIVERS
2942 M:      Jay Cliburn <jcliburn@gmail.com>
2943 M:      Chris Snook <chris.snook@gmail.com>
2944 L:      netdev@vger.kernel.org
2945 S:      Maintained
2946 W:      http://sourceforge.net/projects/atl1
2947 W:      http://atl1.sourceforge.net
2948 F:      drivers/net/ethernet/atheros/
2949
2950 ATM
2951 M:      Chas Williams <3chas3@gmail.com>
2952 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2953 L:      netdev@vger.kernel.org
2954 S:      Maintained
2955 W:      http://linux-atm.sourceforge.net
2956 F:      drivers/atm/
2957 F:      include/linux/atm*
2958 F:      include/uapi/linux/atm*
2959
2960 ATMEL MACB ETHERNET DRIVER
2961 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2962 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2963 S:      Supported
2964 F:      drivers/net/ethernet/cadence/
2965
2966 ATMEL MAXTOUCH DRIVER
2967 M:      Nick Dyer <nick@shmanahar.org>
2968 S:      Maintained
2969 T:      git git://github.com/ndyer/linux.git
2970 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2971 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2972
2973 ATMEL WIRELESS DRIVER
2974 M:      Simon Kelley <simon@thekelleys.org.uk>
2975 L:      linux-wireless@vger.kernel.org
2976 S:      Maintained
2977 W:      http://www.thekelleys.org.uk/atmel
2978 W:      http://atmelwlandriver.sourceforge.net/
2979 F:      drivers/net/wireless/atmel/atmel*
2980
2981 ATOMIC INFRASTRUCTURE
2982 M:      Will Deacon <will@kernel.org>
2983 M:      Peter Zijlstra <peterz@infradead.org>
2984 R:      Boqun Feng <boqun.feng@gmail.com>
2985 L:      linux-kernel@vger.kernel.org
2986 S:      Maintained
2987 F:      arch/*/include/asm/atomic*.h
2988 F:      include/*/atomic*.h
2989 F:      scripts/atomic/
2990
2991 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2992 M:      Bradley Grove <linuxdrivers@attotech.com>
2993 L:      linux-scsi@vger.kernel.org
2994 S:      Supported
2995 W:      http://www.attotech.com
2996 F:      drivers/scsi/esas2r
2997
2998 ATUSB IEEE 802.15.4 RADIO DRIVER
2999 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3000 L:      linux-wpan@vger.kernel.org
3001 S:      Maintained
3002 F:      drivers/net/ieee802154/at86rf230.h
3003 F:      drivers/net/ieee802154/atusb.c
3004 F:      drivers/net/ieee802154/atusb.h
3005
3006 AUDIT SUBSYSTEM
3007 M:      Paul Moore <paul@paul-moore.com>
3008 M:      Eric Paris <eparis@redhat.com>
3009 L:      linux-audit@redhat.com (moderated for non-subscribers)
3010 S:      Supported
3011 W:      https://github.com/linux-audit
3012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3013 F:      include/linux/audit.h
3014 F:      include/uapi/linux/audit.h
3015 F:      kernel/audit*
3016
3017 AUXILIARY DISPLAY DRIVERS
3018 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3019 S:      Maintained
3020 F:      drivers/auxdisplay/
3021 F:      include/linux/cfag12864b.h
3022
3023 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3024 M:      Andreas Klinger <ak@it-klinger.de>
3025 L:      linux-iio@vger.kernel.org
3026 S:      Maintained
3027 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3028 F:      drivers/iio/adc/hx711.c
3029
3030 AX.25 NETWORK LAYER
3031 M:      Ralf Baechle <ralf@linux-mips.org>
3032 L:      linux-hams@vger.kernel.org
3033 S:      Maintained
3034 W:      http://www.linux-ax25.org/
3035 F:      include/net/ax25.h
3036 F:      include/uapi/linux/ax25.h
3037 F:      net/ax25/
3038
3039 AXENTIA ARM DEVICES
3040 M:      Peter Rosin <peda@axentia.se>
3041 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3042 S:      Maintained
3043 F:      arch/arm/boot/dts/at91-linea.dtsi
3044 F:      arch/arm/boot/dts/at91-natte.dtsi
3045 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3046 F:      arch/arm/boot/dts/at91-tse850-3.dts
3047
3048 AXENTIA ASOC DRIVERS
3049 M:      Peter Rosin <peda@axentia.se>
3050 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3051 S:      Maintained
3052 F:      Documentation/devicetree/bindings/sound/axentia,*
3053 F:      sound/soc/atmel/tse850-pcm5142.c
3054
3055 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3056 M:      Nuno Sá <nuno.sa@analog.com>
3057 L:      linux-hwmon@vger.kernel.org
3058 S:      Supported
3059 W:      http://ez.analog.com/community/linux-device-drivers
3060 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3061 F:      drivers/hwmon/axi-fan-control.c
3062
3063 AXXIA I2C CONTROLLER
3064 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3065 L:      linux-i2c@vger.kernel.org
3066 S:      Maintained
3067 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3068 F:      drivers/i2c/busses/i2c-axxia.c
3069
3070 AZ6007 DVB DRIVER
3071 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3072 L:      linux-media@vger.kernel.org
3073 S:      Maintained
3074 W:      https://linuxtv.org
3075 T:      git git://linuxtv.org/media_tree.git
3076 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3077
3078 AZTECH FM RADIO RECEIVER DRIVER
3079 M:      Hans Verkuil <hverkuil@xs4all.nl>
3080 L:      linux-media@vger.kernel.org
3081 S:      Maintained
3082 W:      https://linuxtv.org
3083 T:      git git://linuxtv.org/media_tree.git
3084 F:      drivers/media/radio/radio-aztech*
3085
3086 B43 WIRELESS DRIVER
3087 L:      linux-wireless@vger.kernel.org
3088 L:      b43-dev@lists.infradead.org
3089 S:      Odd Fixes
3090 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3091 F:      drivers/net/wireless/broadcom/b43/
3092
3093 B43LEGACY WIRELESS DRIVER
3094 M:      Larry Finger <Larry.Finger@lwfinger.net>
3095 L:      linux-wireless@vger.kernel.org
3096 L:      b43-dev@lists.infradead.org
3097 S:      Maintained
3098 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3099 F:      drivers/net/wireless/broadcom/b43legacy/
3100
3101 BACKLIGHT CLASS/SUBSYSTEM
3102 M:      Lee Jones <lee.jones@linaro.org>
3103 M:      Daniel Thompson <daniel.thompson@linaro.org>
3104 M:      Jingoo Han <jingoohan1@gmail.com>
3105 L:      dri-devel@lists.freedesktop.org
3106 S:      Maintained
3107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3108 F:      Documentation/ABI/stable/sysfs-class-backlight
3109 F:      Documentation/ABI/testing/sysfs-class-backlight
3110 F:      Documentation/devicetree/bindings/leds/backlight
3111 F:      drivers/video/backlight/
3112 F:      include/linux/backlight.h
3113 F:      include/linux/pwm_backlight.h
3114
3115 BATMAN ADVANCED
3116 M:      Marek Lindner <mareklindner@neomailbox.ch>
3117 M:      Simon Wunderlich <sw@simonwunderlich.de>
3118 M:      Antonio Quartulli <a@unstable.cc>
3119 M:      Sven Eckelmann <sven@narfation.org>
3120 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3121 S:      Maintained
3122 W:      https://www.open-mesh.org/
3123 Q:      https://patchwork.open-mesh.org/project/batman/list/
3124 B:      https://www.open-mesh.org/projects/batman-adv/issues
3125 C:      irc://chat.freenode.net/batman
3126 T:      git https://git.open-mesh.org/linux-merge.git
3127 F:      Documentation/ABI/obsolete/sysfs-class-net-batman-adv
3128 F:      Documentation/ABI/obsolete/sysfs-class-net-mesh
3129 F:      Documentation/networking/batman-adv.rst
3130 F:      include/uapi/linux/batadv_packet.h
3131 F:      include/uapi/linux/batman_adv.h
3132 F:      net/batman-adv/
3133
3134 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3135 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3136 L:      linux-hams@vger.kernel.org
3137 S:      Maintained
3138 W:      http://www.baycom.org/~tom/ham/ham.html
3139 F:      drivers/net/hamradio/baycom*
3140
3141 BCACHE (BLOCK LAYER CACHE)
3142 M:      Coly Li <colyli@suse.de>
3143 M:      Kent Overstreet <kent.overstreet@gmail.com>
3144 L:      linux-bcache@vger.kernel.org
3145 S:      Maintained
3146 W:      http://bcache.evilpiepirate.org
3147 C:      irc://irc.oftc.net/bcache
3148 F:      drivers/md/bcache/
3149
3150 BDISP ST MEDIA DRIVER
3151 M:      Fabien Dessenne <fabien.dessenne@st.com>
3152 L:      linux-media@vger.kernel.org
3153 S:      Supported
3154 W:      https://linuxtv.org
3155 T:      git git://linuxtv.org/media_tree.git
3156 F:      drivers/media/platform/sti/bdisp
3157
3158 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3159 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3160 L:      netdev@vger.kernel.org
3161 S:      Maintained
3162 F:      drivers/net/ethernet/ec_bhf.c
3163
3164 BEFS FILE SYSTEM
3165 M:      Luis de Bethencourt <luisbg@kernel.org>
3166 M:      Salah Triki <salah.triki@gmail.com>
3167 S:      Maintained
3168 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3169 F:      Documentation/filesystems/befs.rst
3170 F:      fs/befs/
3171
3172 BFQ I/O SCHEDULER
3173 M:      Paolo Valente <paolo.valente@linaro.org>
3174 M:      Jens Axboe <axboe@kernel.dk>
3175 L:      linux-block@vger.kernel.org
3176 S:      Maintained
3177 F:      Documentation/block/bfq-iosched.rst
3178 F:      block/bfq-*
3179
3180 BFS FILE SYSTEM
3181 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3182 S:      Maintained
3183 F:      Documentation/filesystems/bfs.rst
3184 F:      fs/bfs/
3185 F:      include/uapi/linux/bfs_fs.h
3186
3187 BLINKM RGB LED DRIVER
3188 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3189 S:      Maintained
3190 F:      drivers/leds/leds-blinkm.c
3191
3192 BLOCK LAYER
3193 M:      Jens Axboe <axboe@kernel.dk>
3194 L:      linux-block@vger.kernel.org
3195 S:      Maintained
3196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3197 F:      block/
3198 F:      drivers/block/
3199 F:      include/linux/blk*
3200 F:      kernel/trace/blktrace.c
3201 F:      lib/sbitmap.c
3202
3203 BLOCK2MTD DRIVER
3204 M:      Joern Engel <joern@lazybastard.org>
3205 L:      linux-mtd@lists.infradead.org
3206 S:      Maintained
3207 F:      drivers/mtd/devices/block2mtd.c
3208
3209 BLUETOOTH DRIVERS
3210 M:      Marcel Holtmann <marcel@holtmann.org>
3211 M:      Johan Hedberg <johan.hedberg@gmail.com>
3212 L:      linux-bluetooth@vger.kernel.org
3213 S:      Maintained
3214 W:      http://www.bluez.org/
3215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3217 F:      drivers/bluetooth/
3218
3219 BLUETOOTH SUBSYSTEM
3220 M:      Marcel Holtmann <marcel@holtmann.org>
3221 M:      Johan Hedberg <johan.hedberg@gmail.com>
3222 L:      linux-bluetooth@vger.kernel.org
3223 S:      Maintained
3224 W:      http://www.bluez.org/
3225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3227 F:      include/net/bluetooth/
3228 F:      net/bluetooth/
3229
3230 BONDING DRIVER
3231 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3232 M:      Veaceslav Falico <vfalico@gmail.com>
3233 M:      Andy Gospodarek <andy@greyhouse.net>
3234 L:      netdev@vger.kernel.org
3235 S:      Supported
3236 W:      http://sourceforge.net/projects/bonding/
3237 F:      drivers/net/bonding/
3238 F:      include/uapi/linux/if_bonding.h
3239
3240 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3241 M:      Dan Robertson <dan@dlrobertson.com>
3242 L:      linux-iio@vger.kernel.org
3243 S:      Maintained
3244 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3245 F:      drivers/iio/accel/bma400*
3246
3247 BPF (Safe dynamic programs and tools)
3248 M:      Alexei Starovoitov <ast@kernel.org>
3249 M:      Daniel Borkmann <daniel@iogearbox.net>
3250 R:      Martin KaFai Lau <kafai@fb.com>
3251 R:      Song Liu <songliubraving@fb.com>
3252 R:      Yonghong Song <yhs@fb.com>
3253 R:      Andrii Nakryiko <andrii@kernel.org>
3254 R:      John Fastabend <john.fastabend@gmail.com>
3255 R:      KP Singh <kpsingh@chromium.org>
3256 L:      netdev@vger.kernel.org
3257 L:      bpf@vger.kernel.org
3258 S:      Supported
3259 W:      https://bpf.io/
3260 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3263 F:      Documentation/bpf/
3264 F:      Documentation/networking/filter.rst
3265 F:      arch/*/net/*
3266 F:      include/linux/bpf*
3267 F:      include/linux/filter.h
3268 F:      include/trace/events/xdp.h
3269 F:      include/uapi/linux/bpf*
3270 F:      include/uapi/linux/filter.h
3271 F:      kernel/bpf/
3272 F:      kernel/trace/bpf_trace.c
3273 F:      lib/test_bpf.c
3274 F:      net/bpf/
3275 F:      net/core/filter.c
3276 F:      net/sched/act_bpf.c
3277 F:      net/sched/cls_bpf.c
3278 F:      samples/bpf/
3279 F:      tools/bpf/
3280 F:      tools/lib/bpf/
3281 F:      tools/testing/selftests/bpf/
3282 N:      bpf
3283 K:      bpf
3284
3285 BPF JIT for ARM
3286 M:      Shubham Bansal <illusionist.neo@gmail.com>
3287 L:      netdev@vger.kernel.org
3288 L:      bpf@vger.kernel.org
3289 S:      Maintained
3290 F:      arch/arm/net/
3291
3292 BPF JIT for ARM64
3293 M:      Daniel Borkmann <daniel@iogearbox.net>
3294 M:      Alexei Starovoitov <ast@kernel.org>
3295 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3296 L:      netdev@vger.kernel.org
3297 L:      bpf@vger.kernel.org
3298 S:      Supported
3299 F:      arch/arm64/net/
3300
3301 BPF JIT for MIPS (32-BIT AND 64-BIT)
3302 M:      Paul Burton <paulburton@kernel.org>
3303 L:      netdev@vger.kernel.org
3304 L:      bpf@vger.kernel.org
3305 S:      Maintained
3306 F:      arch/mips/net/
3307
3308 BPF JIT for NFP NICs
3309 M:      Jakub Kicinski <kuba@kernel.org>
3310 L:      netdev@vger.kernel.org
3311 L:      bpf@vger.kernel.org
3312 S:      Supported
3313 F:      drivers/net/ethernet/netronome/nfp/bpf/
3314
3315 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3316 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3317 M:      Sandipan Das <sandipan@linux.ibm.com>
3318 L:      netdev@vger.kernel.org
3319 L:      bpf@vger.kernel.org
3320 S:      Maintained
3321 F:      arch/powerpc/net/
3322
3323 BPF JIT for RISC-V (32-bit)
3324 M:      Luke Nelson <luke.r.nels@gmail.com>
3325 M:      Xi Wang <xi.wang@gmail.com>
3326 L:      netdev@vger.kernel.org
3327 L:      bpf@vger.kernel.org
3328 S:      Maintained
3329 F:      arch/riscv/net/
3330 X:      arch/riscv/net/bpf_jit_comp64.c
3331
3332 BPF JIT for RISC-V (64-bit)
3333 M:      Björn Töpel <bjorn.topel@gmail.com>
3334 L:      netdev@vger.kernel.org
3335 L:      bpf@vger.kernel.org
3336 S:      Maintained
3337 F:      arch/riscv/net/
3338 X:      arch/riscv/net/bpf_jit_comp32.c
3339
3340 BPF JIT for S390
3341 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3342 M:      Heiko Carstens <hca@linux.ibm.com>
3343 M:      Vasily Gorbik <gor@linux.ibm.com>
3344 L:      netdev@vger.kernel.org
3345 L:      bpf@vger.kernel.org
3346 S:      Maintained
3347 F:      arch/s390/net/
3348 X:      arch/s390/net/pnet.c
3349
3350 BPF JIT for SPARC (32-BIT AND 64-BIT)
3351 M:      David S. Miller <davem@davemloft.net>
3352 L:      netdev@vger.kernel.org
3353 L:      bpf@vger.kernel.org
3354 S:      Maintained
3355 F:      arch/sparc/net/
3356
3357 BPF JIT for X86 32-BIT
3358 M:      Wang YanQing <udknight@gmail.com>
3359 L:      netdev@vger.kernel.org
3360 L:      bpf@vger.kernel.org
3361 S:      Maintained
3362 F:      arch/x86/net/bpf_jit_comp32.c
3363
3364 BPF JIT for X86 64-BIT
3365 M:      Alexei Starovoitov <ast@kernel.org>
3366 M:      Daniel Borkmann <daniel@iogearbox.net>
3367 L:      netdev@vger.kernel.org
3368 L:      bpf@vger.kernel.org
3369 S:      Supported
3370 F:      arch/x86/net/
3371 X:      arch/x86/net/bpf_jit_comp32.c
3372
3373 BROADCOM B44 10/100 ETHERNET DRIVER
3374 M:      Michael Chan <michael.chan@broadcom.com>
3375 L:      netdev@vger.kernel.org
3376 S:      Supported
3377 F:      drivers/net/ethernet/broadcom/b44.*
3378
3379 BROADCOM B53 ETHERNET SWITCH DRIVER
3380 M:      Florian Fainelli <f.fainelli@gmail.com>
3381 L:      netdev@vger.kernel.org
3382 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3383 S:      Supported
3384 F:      Documentation/devicetree/bindings/net/dsa/b53.txt
3385 F:      drivers/net/dsa/b53/*
3386 F:      include/linux/platform_data/b53.h
3387
3388 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3389 M:      Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
3390 L:      bcm-kernel-feedback-list@broadcom.com
3391 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3392 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3393 S:      Maintained
3394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3395 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3396 F:      drivers/pci/controller/pcie-brcmstb.c
3397 F:      drivers/staging/vc04_services
3398 N:      bcm2711
3399 N:      bcm2835
3400
3401 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3402 M:      Florian Fainelli <f.fainelli@gmail.com>
3403 M:      Ray Jui <rjui@broadcom.com>
3404 M:      Scott Branden <sbranden@broadcom.com>
3405 M:      bcm-kernel-feedback-list@broadcom.com
3406 S:      Maintained
3407 T:      git git://github.com/broadcom/mach-bcm
3408 F:      arch/arm/mach-bcm/
3409 N:      bcm281*
3410 N:      bcm113*
3411 N:      bcm216*
3412 N:      kona
3413
3414 BROADCOM BCM47XX MIPS ARCHITECTURE
3415 M:      Hauke Mehrtens <hauke@hauke-m.de>
3416 M:      Rafał Miłecki <zajec5@gmail.com>
3417 L:      linux-mips@vger.kernel.org
3418 S:      Maintained
3419 F:      Documentation/devicetree/bindings/mips/brcm/
3420 F:      arch/mips/bcm47xx/*
3421 F:      arch/mips/include/asm/mach-bcm47xx/*
3422
3423 BROADCOM BCM5301X ARM ARCHITECTURE
3424 M:      Hauke Mehrtens <hauke@hauke-m.de>
3425 M:      Rafał Miłecki <zajec5@gmail.com>
3426 M:      bcm-kernel-feedback-list@broadcom.com
3427 L:      linux-arm-kernel@lists.infradead.org
3428 S:      Maintained
3429 F:      arch/arm/boot/dts/bcm470*
3430 F:      arch/arm/boot/dts/bcm5301*
3431 F:      arch/arm/boot/dts/bcm953012*
3432 F:      arch/arm/mach-bcm/bcm_5301x.c
3433
3434 BROADCOM BCM53573 ARM ARCHITECTURE
3435 M:      Rafał Miłecki <rafal@milecki.pl>
3436 L:      bcm-kernel-feedback-list@broadcom.com
3437 L:      linux-arm-kernel@lists.infradead.org
3438 S:      Maintained
3439 F:      arch/arm/boot/dts/bcm47189*
3440 F:      arch/arm/boot/dts/bcm53573*
3441
3442 BROADCOM BCM63XX ARM ARCHITECTURE
3443 M:      Florian Fainelli <f.fainelli@gmail.com>
3444 M:      bcm-kernel-feedback-list@broadcom.com
3445 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3446 S:      Maintained
3447 T:      git git://github.com/broadcom/stblinux.git
3448 N:      bcm63xx
3449
3450 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3451 M:      Kevin Cernekee <cernekee@gmail.com>
3452 L:      linux-usb@vger.kernel.org
3453 S:      Maintained
3454 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3455
3456 BROADCOM BCM7XXX ARM ARCHITECTURE
3457 M:      Florian Fainelli <f.fainelli@gmail.com>
3458 M:      bcm-kernel-feedback-list@broadcom.com
3459 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3460 S:      Maintained
3461 T:      git git://github.com/broadcom/stblinux.git
3462 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3463 F:      arch/arm/boot/dts/bcm7*.dts*
3464 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3465 F:      arch/arm/mach-bcm/*brcmstb*
3466 F:      arch/arm/mm/cache-b15-rac.c
3467 F:      drivers/bus/brcmstb_gisb.c
3468 F:      drivers/pci/controller/pcie-brcmstb.c
3469 N:      brcmstb
3470
3471 BROADCOM BDC DRIVER
3472 M:      Al Cooper <alcooperx@gmail.com>
3473 L:      linux-usb@vger.kernel.org
3474 L:      bcm-kernel-feedback-list@broadcom.com
3475 S:      Maintained
3476 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3477 F:      drivers/usb/gadget/udc/bdc/
3478
3479 BROADCOM BMIPS CPUFREQ DRIVER
3480 M:      Markus Mayer <mmayer@broadcom.com>
3481 M:      bcm-kernel-feedback-list@broadcom.com
3482 L:      linux-pm@vger.kernel.org
3483 S:      Maintained
3484 F:      drivers/cpufreq/bmips-cpufreq.c
3485
3486 BROADCOM BMIPS MIPS ARCHITECTURE
3487 M:      Florian Fainelli <f.fainelli@gmail.com>
3488 L:      bcm-kernel-feedback-list@broadcom.com
3489 L:      linux-mips@vger.kernel.org
3490 S:      Maintained
3491 T:      git git://github.com/broadcom/stblinux.git
3492 F:      arch/mips/bmips/*
3493 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3494 F:      arch/mips/include/asm/mach-bmips/*
3495 F:      arch/mips/kernel/*bmips*
3496 F:      drivers/soc/bcm/bcm63xx
3497 F:      drivers/irqchip/irq-bcm63*
3498 F:      drivers/irqchip/irq-bcm7*
3499 F:      drivers/irqchip/irq-brcmstb*
3500 F:      include/linux/bcm963xx_nvram.h
3501 F:      include/linux/bcm963xx_tag.h
3502
3503 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3504 M:      Rasesh Mody <rmody@marvell.com>
3505 M:      GR-Linux-NIC-Dev@marvell.com
3506 L:      netdev@vger.kernel.org
3507 S:      Supported
3508 F:      drivers/net/ethernet/broadcom/bnx2.*
3509 F:      drivers/net/ethernet/broadcom/bnx2_*
3510
3511 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3512 M:      Saurav Kashyap <skashyap@marvell.com>
3513 M:      Javed Hasan <jhasan@marvell.com>
3514 M:      GR-QLogic-Storage-Upstream@marvell.com
3515 L:      linux-scsi@vger.kernel.org
3516 S:      Supported
3517 F:      drivers/scsi/bnx2fc/
3518
3519 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3520 M:      Nilesh Javali <njavali@marvell.com>
3521 M:      Manish Rangankar <mrangankar@marvell.com>
3522 M:      GR-QLogic-Storage-Upstream@marvell.com
3523 L:      linux-scsi@vger.kernel.org
3524 S:      Supported
3525 F:      drivers/scsi/bnx2i/
3526
3527 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3528 M:      Ariel Elior <aelior@marvell.com>
3529 M:      Sudarsana Kalluru <skalluru@marvell.com>
3530 M:      GR-everest-linux-l2@marvell.com
3531 L:      netdev@vger.kernel.org
3532 S:      Supported
3533 F:      drivers/net/ethernet/broadcom/bnx2x/
3534
3535 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3536 M:      Michael Chan <michael.chan@broadcom.com>
3537 L:      netdev@vger.kernel.org
3538 S:      Supported
3539 F:      drivers/net/ethernet/broadcom/bnxt/
3540
3541 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3542 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
3543 M:      Franky Lin <franky.lin@broadcom.com>
3544 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3545 M:      Chi-Hsien Lin <chi-hsien.lin@cypress.com>
3546 M:      Wright Feng <wright.feng@cypress.com>
3547 L:      linux-wireless@vger.kernel.org
3548 L:      brcm80211-dev-list.pdl@broadcom.com
3549 L:      brcm80211-dev-list@cypress.com
3550 S:      Supported
3551 F:      drivers/net/wireless/broadcom/brcm80211/
3552
3553 BROADCOM BRCMSTB GPIO DRIVER
3554 M:      Gregory Fong <gregory.0xf0@gmail.com>
3555 L:      bcm-kernel-feedback-list@broadcom.com
3556 S:      Supported
3557 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3558 F:      drivers/gpio/gpio-brcmstb.c
3559
3560 BROADCOM BRCMSTB I2C DRIVER
3561 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3562 L:      linux-i2c@vger.kernel.org
3563 L:      bcm-kernel-feedback-list@broadcom.com
3564 S:      Supported
3565 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3566 F:      drivers/i2c/busses/i2c-brcmstb.c
3567
3568 BROADCOM BRCMSTB USB EHCI DRIVER
3569 M:      Al Cooper <alcooperx@gmail.com>
3570 L:      linux-usb@vger.kernel.org
3571 L:      bcm-kernel-feedback-list@broadcom.com
3572 S:      Maintained
3573 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3574 F:      drivers/usb/host/ehci-brcm.*
3575
3576 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3577 M:      Al Cooper <alcooperx@gmail.com>
3578 L:      linux-kernel@vger.kernel.org
3579 L:      bcm-kernel-feedback-list@broadcom.com
3580 S:      Maintained
3581 F:      drivers/phy/broadcom/phy-brcm-usb*
3582
3583 BROADCOM ETHERNET PHY DRIVERS
3584 M:      Florian Fainelli <f.fainelli@gmail.com>
3585 L:      bcm-kernel-feedback-list@broadcom.com
3586 L:      netdev@vger.kernel.org
3587 S:      Supported
3588 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3589 F:      drivers/net/phy/bcm*.[ch]
3590 F:      drivers/net/phy/broadcom.c
3591 F:      include/linux/brcmphy.h
3592
3593 BROADCOM GENET ETHERNET DRIVER
3594 M:      Doug Berger <opendmb@gmail.com>
3595 M:      Florian Fainelli <f.fainelli@gmail.com>
3596 L:      bcm-kernel-feedback-list@broadcom.com
3597 L:      netdev@vger.kernel.org
3598 S:      Supported
3599 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3600 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3601 F:      drivers/net/ethernet/broadcom/genet/
3602 F:      drivers/net/mdio/mdio-bcm-unimac.c
3603 F:      include/linux/platform_data/bcmgenet.h
3604 F:      include/linux/platform_data/mdio-bcm-unimac.h
3605
3606 BROADCOM IPROC ARM ARCHITECTURE
3607 M:      Ray Jui <rjui@broadcom.com>
3608 M:      Scott Branden <sbranden@broadcom.com>
3609 M:      bcm-kernel-feedback-list@broadcom.com
3610 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3611 S:      Maintained
3612 T:      git git://github.com/broadcom/cygnus-linux.git
3613 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3614 F:      arch/arm64/boot/dts/broadcom/stingray/*
3615 F:      drivers/clk/bcm/clk-ns*
3616 F:      drivers/clk/bcm/clk-sr*
3617 F:      drivers/pinctrl/bcm/pinctrl-ns*
3618 F:      include/dt-bindings/clock/bcm-sr*
3619 N:      iproc
3620 N:      cygnus
3621 N:      bcm[-_]nsp
3622 N:      bcm9113*
3623 N:      bcm9583*
3624 N:      bcm9585*
3625 N:      bcm9586*
3626 N:      bcm988312
3627 N:      bcm113*
3628 N:      bcm583*
3629 N:      bcm585*
3630 N:      bcm586*
3631 N:      bcm88312
3632 N:      hr2
3633 N:      stingray
3634
3635 BROADCOM KONA GPIO DRIVER
3636 M:      Ray Jui <rjui@broadcom.com>
3637 L:      bcm-kernel-feedback-list@broadcom.com
3638 S:      Supported
3639 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3640 F:      drivers/gpio/gpio-bcm-kona.c
3641
3642 BROADCOM NETXTREME-E ROCE DRIVER
3643 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3644 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3645 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3646 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3647 M:      Naresh Kumar PBS <nareshkumar.pbs@broadcom.com>
3648 L:      linux-rdma@vger.kernel.org
3649 S:      Supported
3650 W:      http://www.broadcom.com
3651 F:      drivers/infiniband/hw/bnxt_re/
3652 F:      include/uapi/rdma/bnxt_re-abi.h
3653
3654 BROADCOM NVRAM DRIVER
3655 M:      Rafał Miłecki <zajec5@gmail.com>
3656 L:      linux-mips@vger.kernel.org
3657 S:      Maintained
3658 F:      drivers/firmware/broadcom/*
3659
3660 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3661 M:      Rafał Miłecki <zajec5@gmail.com>
3662 L:      linux-wireless@vger.kernel.org
3663 S:      Maintained
3664 F:      drivers/bcma/
3665 F:      include/linux/bcma/
3666
3667 BROADCOM SPI DRIVER
3668 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3669 M:      bcm-kernel-feedback-list@broadcom.com
3670 S:      Maintained
3671 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3672 F:      drivers/spi/spi-bcm-qspi.*
3673 F:      drivers/spi/spi-brcmstb-qspi.c
3674 F:      drivers/spi/spi-iproc-qspi.c
3675
3676 BROADCOM STB AVS CPUFREQ DRIVER
3677 M:      Markus Mayer <mmayer@broadcom.com>
3678 M:      bcm-kernel-feedback-list@broadcom.com
3679 L:      linux-pm@vger.kernel.org
3680 S:      Maintained
3681 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3682 F:      drivers/cpufreq/brcmstb*
3683
3684 BROADCOM STB AVS TMON DRIVER
3685 M:      Markus Mayer <mmayer@broadcom.com>
3686 M:      bcm-kernel-feedback-list@broadcom.com
3687 L:      linux-pm@vger.kernel.org
3688 S:      Maintained
3689 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3690 F:      drivers/thermal/broadcom/brcmstb*
3691
3692 BROADCOM STB DPFE DRIVER
3693 M:      Markus Mayer <mmayer@broadcom.com>
3694 M:      bcm-kernel-feedback-list@broadcom.com
3695 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3696 S:      Maintained
3697 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3698 F:      drivers/memory/brcmstb_dpfe.c
3699
3700 BROADCOM STB NAND FLASH DRIVER
3701 M:      Brian Norris <computersforpeace@gmail.com>
3702 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3703 L:      linux-mtd@lists.infradead.org
3704 L:      bcm-kernel-feedback-list@broadcom.com
3705 S:      Maintained
3706 F:      drivers/mtd/nand/raw/brcmnand/
3707
3708 BROADCOM SYSTEMPORT ETHERNET DRIVER
3709 M:      Florian Fainelli <f.fainelli@gmail.com>
3710 L:      bcm-kernel-feedback-list@broadcom.com
3711 L:      netdev@vger.kernel.org
3712 S:      Supported
3713 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3714
3715 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3716 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3717 M:      Prashant Sreedharan <prashant@broadcom.com>
3718 M:      Michael Chan <mchan@broadcom.com>
3719 L:      netdev@vger.kernel.org
3720 S:      Supported
3721 F:      drivers/net/ethernet/broadcom/tg3.*
3722
3723 BROCADE BFA FC SCSI DRIVER
3724 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3725 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3726 L:      linux-scsi@vger.kernel.org
3727 S:      Supported
3728 F:      drivers/scsi/bfa/
3729
3730 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3731 M:      Rasesh Mody <rmody@marvell.com>
3732 M:      Sudarsana Kalluru <skalluru@marvell.com>
3733 M:      GR-Linux-NIC-Dev@marvell.com
3734 L:      netdev@vger.kernel.org
3735 S:      Supported
3736 F:      drivers/net/ethernet/brocade/bna/
3737
3738 BSG (block layer generic sg v4 driver)
3739 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3740 L:      linux-scsi@vger.kernel.org
3741 S:      Supported
3742 F:      block/bsg.c
3743 F:      include/linux/bsg.h
3744 F:      include/uapi/linux/bsg.h
3745
3746 BT87X AUDIO DRIVER
3747 M:      Clemens Ladisch <clemens@ladisch.de>
3748 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3749 S:      Maintained
3750 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3751 F:      Documentation/sound/cards/bt87x.rst
3752 F:      sound/pci/bt87x.c
3753
3754 BT8XXGPIO DRIVER
3755 M:      Michael Buesch <m@bues.ch>
3756 S:      Maintained
3757 W:      http://bu3sch.de/btgpio.php
3758 F:      drivers/gpio/gpio-bt8xx.c
3759
3760 BTRFS FILE SYSTEM
3761 M:      Chris Mason <clm@fb.com>
3762 M:      Josef Bacik <josef@toxicpanda.com>
3763 M:      David Sterba <dsterba@suse.com>
3764 L:      linux-btrfs@vger.kernel.org
3765 S:      Maintained
3766 W:      http://btrfs.wiki.kernel.org/
3767 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3768 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3769 F:      Documentation/filesystems/btrfs.rst
3770 F:      fs/btrfs/
3771 F:      include/linux/btrfs*
3772 F:      include/uapi/linux/btrfs*
3773
3774 BTTV VIDEO4LINUX DRIVER
3775 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3776 L:      linux-media@vger.kernel.org
3777 S:      Odd fixes
3778 W:      https://linuxtv.org
3779 T:      git git://linuxtv.org/media_tree.git
3780 F:      Documentation/driver-api/media/drivers/bttv*
3781 F:      drivers/media/pci/bt8xx/bttv*
3782
3783 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3784 M:      Chanwoo Choi <cw00.choi@samsung.com>
3785 L:      linux-pm@vger.kernel.org
3786 L:      linux-samsung-soc@vger.kernel.org
3787 S:      Maintained
3788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3789 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3790 F:      drivers/devfreq/exynos-bus.c
3791
3792 BUSLOGIC SCSI DRIVER
3793 M:      Khalid Aziz <khalid@gonehiking.org>
3794 L:      linux-scsi@vger.kernel.org
3795 S:      Maintained
3796 F:      drivers/scsi/BusLogic.*
3797 F:      drivers/scsi/FlashPoint.*
3798
3799 C-MEDIA CMI8788 DRIVER
3800 M:      Clemens Ladisch <clemens@ladisch.de>
3801 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3802 S:      Maintained
3803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3804 F:      sound/pci/oxygen/
3805
3806 C-SKY ARCHITECTURE
3807 M:      Guo Ren <guoren@kernel.org>
3808 L:      linux-csky@vger.kernel.org
3809 S:      Supported
3810 T:      git https://github.com/c-sky/csky-linux.git
3811 F:      Documentation/devicetree/bindings/csky/
3812 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3813 F:      Documentation/devicetree/bindings/timer/csky,*
3814 F:      arch/csky/
3815 F:      drivers/clocksource/timer-gx6605s.c
3816 F:      drivers/clocksource/timer-mp-csky.c
3817 F:      drivers/irqchip/irq-csky-*
3818 N:      csky
3819 K:      csky
3820
3821 C6X ARCHITECTURE
3822 M:      Mark Salter <msalter@redhat.com>
3823 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3824 L:      linux-c6x-dev@linux-c6x.org
3825 S:      Maintained
3826 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3827 F:      arch/c6x/
3828
3829 CA8210 IEEE-802.15.4 RADIO DRIVER
3830 M:      Harry Morris <h.morris@cascoda.com>
3831 L:      linux-wpan@vger.kernel.org
3832 S:      Maintained
3833 W:      https://github.com/Cascoda/ca8210-linux.git
3834 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3835 F:      drivers/net/ieee802154/ca8210.c
3836
3837 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3838 M:      David Howells <dhowells@redhat.com>
3839 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3840 S:      Supported
3841 F:      Documentation/filesystems/caching/cachefiles.rst
3842 F:      fs/cachefiles/
3843
3844 CADENCE MIPI-CSI2 BRIDGES
3845 M:      Maxime Ripard <mripard@kernel.org>
3846 L:      linux-media@vger.kernel.org
3847 S:      Maintained
3848 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3849 F:      drivers/media/platform/cadence/cdns-csi2*
3850
3851 CADENCE NAND DRIVER
3852 L:      linux-mtd@lists.infradead.org
3853 S:      Orphan
3854 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3855 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3856
3857 CADENCE USB3 DRD IP DRIVER
3858 M:      Peter Chen <peter.chen@nxp.com>
3859 M:      Pawel Laszczak <pawell@cadence.com>
3860 M:      Roger Quadros <rogerq@ti.com>
3861 L:      linux-usb@vger.kernel.org
3862 S:      Maintained
3863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3864 F:      Documentation/devicetree/bindings/usb/cdns-usb3.txt
3865 F:      drivers/usb/cdns3/
3866
3867 CADET FM/AM RADIO RECEIVER DRIVER
3868 M:      Hans Verkuil <hverkuil@xs4all.nl>
3869 L:      linux-media@vger.kernel.org
3870 S:      Maintained
3871 W:      https://linuxtv.org
3872 T:      git git://linuxtv.org/media_tree.git
3873 F:      drivers/media/radio/radio-cadet*
3874
3875 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3876 M:      Jonathan Corbet <corbet@lwn.net>
3877 L:      linux-media@vger.kernel.org
3878 S:      Maintained
3879 T:      git git://linuxtv.org/media_tree.git
3880 F:      Documentation/admin-guide/media/cafe_ccic*
3881 F:      drivers/media/platform/marvell-ccic/
3882
3883 CAIF NETWORK LAYER
3884 L:      netdev@vger.kernel.org
3885 S:      Orphan
3886 F:      Documentation/networking/caif/
3887 F:      drivers/net/caif/
3888 F:      include/net/caif/
3889 F:      include/uapi/linux/caif/
3890 F:      net/caif/
3891
3892 CAKE QDISC
3893 M:      Toke Høiland-Jørgensen <toke@toke.dk>
3894 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
3895 S:      Maintained
3896 F:      net/sched/sch_cake.c
3897
3898 CAN NETWORK DRIVERS
3899 M:      Wolfgang Grandegger <wg@grandegger.com>
3900 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3901 L:      linux-can@vger.kernel.org
3902 S:      Maintained
3903 W:      https://github.com/linux-can
3904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3906 F:      Documentation/devicetree/bindings/net/can/
3907 F:      drivers/net/can/
3908 F:      include/linux/can/dev.h
3909 F:      include/linux/can/led.h
3910 F:      include/linux/can/platform/
3911 F:      include/linux/can/rx-offload.h
3912 F:      include/uapi/linux/can/error.h
3913 F:      include/uapi/linux/can/netlink.h
3914 F:      include/uapi/linux/can/vxcan.h
3915
3916 CAN NETWORK LAYER
3917 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3918 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3919 L:      linux-can@vger.kernel.org
3920 S:      Maintained
3921 W:      https://github.com/linux-can
3922 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3924 F:      Documentation/networking/can.rst
3925 F:      include/linux/can/core.h
3926 F:      include/linux/can/skb.h
3927 F:      include/net/netns/can.h
3928 F:      include/uapi/linux/can.h
3929 F:      include/uapi/linux/can/bcm.h
3930 F:      include/uapi/linux/can/gw.h
3931 F:      include/uapi/linux/can/isotp.h
3932 F:      include/uapi/linux/can/raw.h
3933 F:      net/can/
3934
3935 CAN-J1939 NETWORK LAYER
3936 M:      Robin van der Gracht <robin@protonic.nl>
3937 M:      Oleksij Rempel <o.rempel@pengutronix.de>
3938 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
3939 L:      linux-can@vger.kernel.org
3940 S:      Maintained
3941 F:      Documentation/networking/j1939.rst
3942 F:      include/uapi/linux/can/j1939.h
3943 F:      net/can/j1939/
3944
3945 CAPABILITIES
3946 M:      Serge Hallyn <serge@hallyn.com>
3947 L:      linux-security-module@vger.kernel.org
3948 S:      Supported
3949 F:      include/linux/capability.h
3950 F:      include/uapi/linux/capability.h
3951 F:      kernel/capability.c
3952 F:      security/commoncap.c
3953
3954 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3955 M:      Kevin Tsai <ktsai@capellamicro.com>
3956 S:      Maintained
3957 F:      drivers/iio/light/cm*
3958
3959 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3960 M:      Christian Lamparter <chunkeey@googlemail.com>
3961 L:      linux-wireless@vger.kernel.org
3962 S:      Maintained
3963 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
3964 F:      drivers/net/wireless/ath/carl9170/
3965
3966 CAVIUM I2C DRIVER
3967 M:      Robert Richter <rric@kernel.org>
3968 S:      Odd Fixes
3969 W:      http://www.marvell.com
3970 F:      drivers/i2c/busses/i2c-octeon*
3971 F:      drivers/i2c/busses/i2c-thunderx*
3972
3973 CAVIUM LIQUIDIO NETWORK DRIVER
3974 M:      Derek Chickles <dchickles@marvell.com>
3975 M:      Satanand Burla <sburla@marvell.com>
3976 M:      Felix Manlunas <fmanlunas@marvell.com>
3977 L:      netdev@vger.kernel.org
3978 S:      Supported
3979 W:      http://www.marvell.com
3980 F:      drivers/net/ethernet/cavium/liquidio/
3981
3982 CAVIUM MMC DRIVER
3983 M:      Robert Richter <rric@kernel.org>
3984 S:      Odd Fixes
3985 W:      http://www.marvell.com
3986 F:      drivers/mmc/host/cavium*
3987
3988 CAVIUM OCTEON-TX CRYPTO DRIVER
3989 M:      George Cherian <gcherian@marvell.com>
3990 L:      linux-crypto@vger.kernel.org
3991 S:      Supported
3992 W:      http://www.marvell.com
3993 F:      drivers/crypto/cavium/cpt/
3994
3995 CAVIUM THUNDERX2 ARM64 SOC
3996 M:      Robert Richter <rric@kernel.org>
3997 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3998 S:      Odd Fixes
3999 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4000 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4001
4002 CC2520 IEEE-802.15.4 RADIO DRIVER
4003 M:      Varka Bhadram <varkabhadram@gmail.com>
4004 L:      linux-wpan@vger.kernel.org
4005 S:      Maintained
4006 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4007 F:      drivers/net/ieee802154/cc2520.c
4008 F:      include/linux/spi/cc2520.h
4009
4010 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4011 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4012 L:      linux-crypto@vger.kernel.org
4013 S:      Supported
4014 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4015 F:      drivers/crypto/ccree/
4016
4017 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4018 M:      Hadar Gat <hadar.gat@arm.com>
4019 L:      linux-crypto@vger.kernel.org
4020 S:      Supported
4021 F:      drivers/char/hw_random/cctrng.c
4022 F:      drivers/char/hw_random/cctrng.h
4023 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4024 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4025
4026 CEC FRAMEWORK
4027 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4028 L:      linux-media@vger.kernel.org
4029 S:      Supported
4030 W:      http://linuxtv.org
4031 T:      git git://linuxtv.org/media_tree.git
4032 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4033 F:      Documentation/devicetree/bindings/media/cec.txt
4034 F:      Documentation/driver-api/media/cec-core.rst
4035 F:      Documentation/userspace-api/media/cec
4036 F:      drivers/media/cec/
4037 F:      drivers/media/rc/keymaps/rc-cec.c
4038 F:      include/media/cec-notifier.h
4039 F:      include/media/cec.h
4040 F:      include/uapi/linux/cec-funcs.h
4041 F:      include/uapi/linux/cec.h
4042
4043 CEC GPIO DRIVER
4044 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4045 L:      linux-media@vger.kernel.org
4046 S:      Supported
4047 W:      http://linuxtv.org
4048 T:      git git://linuxtv.org/media_tree.git
4049 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4050 F:      drivers/media/cec/platform/cec-gpio/
4051
4052 CELL BROADBAND ENGINE ARCHITECTURE
4053 M:      Arnd Bergmann <arnd@arndb.de>
4054 L:      linuxppc-dev@lists.ozlabs.org
4055 S:      Supported
4056 W:      http://www.ibm.com/developerworks/power/cell/
4057 F:      arch/powerpc/include/asm/cell*.h
4058 F:      arch/powerpc/include/asm/spu*.h
4059 F:      arch/powerpc/include/uapi/asm/spu*.h
4060 F:      arch/powerpc/oprofile/*cell*
4061 F:      arch/powerpc/platforms/cell/
4062
4063 CELLWISE CW2015 BATTERY DRIVER
4064 M:      Tobias Schrammm <t.schramm@manjaro.org>
4065 S:      Maintained
4066 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4067 F:      drivers/power/supply/cw2015_battery.c
4068
4069 CEPH COMMON CODE (LIBCEPH)
4070 M:      Ilya Dryomov <idryomov@gmail.com>
4071 M:      Jeff Layton <jlayton@kernel.org>
4072 L:      ceph-devel@vger.kernel.org
4073 S:      Supported
4074 W:      http://ceph.com/
4075 T:      git git://github.com/ceph/ceph-client.git
4076 F:      include/linux/ceph/
4077 F:      include/linux/crush/
4078 F:      net/ceph/
4079
4080 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4081 M:      Jeff Layton <jlayton@kernel.org>
4082 M:      Ilya Dryomov <idryomov@gmail.com>
4083 L:      ceph-devel@vger.kernel.org
4084 S:      Supported
4085 W:      http://ceph.com/
4086 T:      git git://github.com/ceph/ceph-client.git
4087 F:      Documentation/filesystems/ceph.rst
4088 F:      fs/ceph/
4089
4090 CERTIFICATE HANDLING
4091 M:      David Howells <dhowells@redhat.com>
4092 M:      David Woodhouse <dwmw2@infradead.org>
4093 L:      keyrings@vger.kernel.org
4094 S:      Maintained
4095 F:      Documentation/admin-guide/module-signing.rst
4096 F:      certs/
4097 F:      scripts/extract-cert.c
4098 F:      scripts/sign-file.c
4099
4100 CFAG12864B LCD DRIVER
4101 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4102 S:      Maintained
4103 F:      drivers/auxdisplay/cfag12864b.c
4104 F:      include/linux/cfag12864b.h
4105
4106 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4107 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4108 S:      Maintained
4109 F:      drivers/auxdisplay/cfag12864bfb.c
4110 F:      include/linux/cfag12864b.h
4111
4112 CHAR and MISC DRIVERS
4113 M:      Arnd Bergmann <arnd@arndb.de>
4114 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4115 S:      Supported
4116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4117 F:      drivers/char/
4118 F:      drivers/misc/
4119 F:      include/linux/miscdevice.h
4120 X:      drivers/char/agp/
4121 X:      drivers/char/hw_random/
4122 X:      drivers/char/ipmi/
4123 X:      drivers/char/random.c
4124 X:      drivers/char/tpm/
4125
4126 CHECKPATCH
4127 M:      Andy Whitcroft <apw@canonical.com>
4128 M:      Joe Perches <joe@perches.com>
4129 S:      Maintained
4130 F:      scripts/checkpatch.pl
4131
4132 CHINESE DOCUMENTATION
4133 M:      Harry Wei <harryxiyou@gmail.com>
4134 M:      Alex Shi <alex.shi@linux.alibaba.com>
4135 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
4136 S:      Maintained
4137 F:      Documentation/translations/zh_CN/
4138
4139 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4140 M:      Peter Chen <Peter.Chen@nxp.com>
4141 L:      linux-usb@vger.kernel.org
4142 S:      Maintained
4143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4144 F:      drivers/usb/chipidea/
4145
4146 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4147 M:      Hans de Goede <hdegoede@redhat.com>
4148 L:      linux-input@vger.kernel.org
4149 S:      Maintained
4150 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4151 F:      drivers/input/touchscreen/chipone_icn8318.c
4152
4153 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4154 M:      Hans de Goede <hdegoede@redhat.com>
4155 L:      linux-input@vger.kernel.org
4156 S:      Maintained
4157 F:      drivers/input/touchscreen/chipone_icn8505.c
4158
4159 CHROME HARDWARE PLATFORM SUPPORT
4160 M:      Benson Leung <bleung@chromium.org>
4161 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4162 S:      Maintained
4163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4164 F:      drivers/platform/chrome/
4165
4166 CHROMEOS EC CODEC DRIVER
4167 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4168 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4169 R:      Guenter Roeck <groeck@chromium.org>
4170 S:      Maintained
4171 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4172 F:      sound/soc/codecs/cros_ec_codec.*
4173
4174 CHROMEOS EC SUBDRIVERS
4175 M:      Benson Leung <bleung@chromium.org>
4176 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4177 R:      Guenter Roeck <groeck@chromium.org>
4178 S:      Maintained
4179 F:      drivers/power/supply/cros_usbpd-charger.c
4180 N:      cros_ec
4181 N:      cros-ec
4182
4183 CHRONTEL CH7322 CEC DRIVER
4184 M:      Jeff Chase <jnchase@google.com>
4185 L:      linux-media@vger.kernel.org
4186 S:      Maintained
4187 T:      git git://linuxtv.org/media_tree.git
4188 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4189 F:      drivers/media/cec/i2c/ch7322.c
4190
4191 CIRRUS LOGIC AUDIO CODEC DRIVERS
4192 M:      James Schulman <james.schulman@cirrus.com>
4193 M:      David Rhodes <david.rhodes@cirrus.com>
4194 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4195 L:      patches@opensource.cirrus.com
4196 S:      Maintained
4197 F:      sound/soc/codecs/cs*
4198
4199 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4200 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4201 L:      netdev@vger.kernel.org
4202 S:      Maintained
4203 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4204
4205 CIRRUS LOGIC LOCHNAGAR DRIVER
4206 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4207 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4208 L:      patches@opensource.cirrus.com
4209 S:      Supported
4210 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4211 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4212 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4213 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4214 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4215 F:      Documentation/hwmon/lochnagar.rst
4216 F:      drivers/clk/clk-lochnagar.c
4217 F:      drivers/hwmon/lochnagar-hwmon.c
4218 F:      drivers/mfd/lochnagar-i2c.c
4219 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4220 F:      drivers/regulator/lochnagar-regulator.c
4221 F:      include/dt-bindings/clk/lochnagar.h
4222 F:      include/dt-bindings/pinctrl/lochnagar.h
4223 F:      include/linux/mfd/lochnagar*
4224 F:      sound/soc/codecs/lochnagar-sc.c
4225
4226 CIRRUS LOGIC MADERA CODEC DRIVERS
4227 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4228 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4229 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4230 L:      patches@opensource.cirrus.com
4231 S:      Supported
4232 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4233 T:      git https://github.com/CirrusLogic/linux-drivers.git
4234 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4235 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4236 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4237 F:      drivers/gpio/gpio-madera*
4238 F:      drivers/irqchip/irq-madera*
4239 F:      drivers/mfd/cs47l*
4240 F:      drivers/mfd/madera*
4241 F:      drivers/pinctrl/cirrus/*
4242 F:      include/dt-bindings/sound/madera*
4243 F:      include/linux/irqchip/irq-madera*
4244 F:      include/linux/mfd/madera/*
4245 F:      include/sound/madera*
4246 F:      sound/soc/codecs/cs47l*
4247 F:      sound/soc/codecs/madera*
4248
4249 CISCO FCOE HBA DRIVER
4250 M:      Satish Kharat <satishkh@cisco.com>
4251 M:      Sesidhar Baddela <sebaddel@cisco.com>
4252 M:      Karan Tilak Kumar <kartilak@cisco.com>
4253 L:      linux-scsi@vger.kernel.org
4254 S:      Supported
4255 F:      drivers/scsi/fnic/
4256
4257 CISCO SCSI HBA DRIVER
4258 M:      Karan Tilak Kumar <kartilak@cisco.com>
4259 M:      Sesidhar Baddela <sebaddel@cisco.com>
4260 L:      linux-scsi@vger.kernel.org
4261 S:      Supported
4262 F:      drivers/scsi/snic/
4263
4264 CISCO VIC ETHERNET NIC DRIVER
4265 M:      Christian Benvenuti <benve@cisco.com>
4266 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4267 S:      Supported
4268 F:      drivers/net/ethernet/cisco/enic/
4269
4270 CISCO VIC LOW LATENCY NIC DRIVER
4271 M:      Christian Benvenuti <benve@cisco.com>
4272 M:      Nelson Escobar <neescoba@cisco.com>
4273 S:      Supported
4274 F:      drivers/infiniband/hw/usnic/
4275
4276 CLANG-FORMAT FILE
4277 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4278 S:      Maintained
4279 F:      .clang-format
4280
4281 CLANG/LLVM BUILD SUPPORT
4282 M:      Nathan Chancellor <natechancellor@gmail.com>
4283 M:      Nick Desaulniers <ndesaulniers@google.com>
4284 L:      clang-built-linux@googlegroups.com
4285 S:      Supported
4286 W:      https://clangbuiltlinux.github.io/
4287 B:      https://github.com/ClangBuiltLinux/linux/issues
4288 C:      irc://chat.freenode.net/clangbuiltlinux
4289 F:      Documentation/kbuild/llvm.rst
4290 F:      scripts/clang-tools/
4291 K:      \b(?i:clang|llvm)\b
4292
4293 CLEANCACHE API
4294 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4295 L:      linux-kernel@vger.kernel.org
4296 S:      Maintained
4297 F:      include/linux/cleancache.h
4298 F:      mm/cleancache.c
4299
4300 CLK API
4301 M:      Russell King <linux@armlinux.org.uk>
4302 L:      linux-clk@vger.kernel.org
4303 S:      Maintained
4304 F:      include/linux/clk.h
4305
4306 CLOCKSOURCE, CLOCKEVENT DRIVERS
4307 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4308 M:      Thomas Gleixner <tglx@linutronix.de>
4309 L:      linux-kernel@vger.kernel.org
4310 S:      Supported
4311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4312 F:      Documentation/devicetree/bindings/timer/
4313 F:      drivers/clocksource/
4314
4315 CMPC ACPI DRIVER
4316 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4317 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4318 L:      platform-driver-x86@vger.kernel.org
4319 S:      Supported
4320 F:      drivers/platform/x86/classmate-laptop.c
4321
4322 COBALT MEDIA DRIVER
4323 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4324 L:      linux-media@vger.kernel.org
4325 S:      Supported
4326 W:      https://linuxtv.org
4327 T:      git git://linuxtv.org/media_tree.git
4328 F:      drivers/media/pci/cobalt/
4329
4330 COCCINELLE/Semantic Patches (SmPL)
4331 M:      Julia Lawall <Julia.Lawall@lip6.fr>
4332 M:      Gilles Muller <Gilles.Muller@lip6.fr>
4333 M:      Nicolas Palix <nicolas.palix@imag.fr>
4334 M:      Michal Marek <michal.lkml@markovi.net>
4335 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4336 S:      Supported
4337 W:      http://coccinelle.lip6.fr/
4338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4339 F:      Documentation/dev-tools/coccinelle.rst
4340 F:      scripts/coccicheck
4341 F:      scripts/coccinelle/
4342
4343 CODA FILE SYSTEM
4344 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4345 M:      coda@cs.cmu.edu
4346 L:      codalist@coda.cs.cmu.edu
4347 S:      Maintained
4348 W:      http://www.coda.cs.cmu.edu/
4349 F:      Documentation/filesystems/coda.rst
4350 F:      fs/coda/
4351 F:      include/linux/coda*.h
4352 F:      include/uapi/linux/coda*.h
4353
4354 CODA V4L2 MEM2MEM DRIVER
4355 M:      Philipp Zabel <p.zabel@pengutronix.de>
4356 L:      linux-media@vger.kernel.org
4357 S:      Maintained
4358 F:      Documentation/devicetree/bindings/media/coda.yaml
4359 F:      drivers/media/platform/coda/
4360
4361 CODE OF CONDUCT
4362 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4363 S:      Supported
4364 F:      Documentation/process/code-of-conduct-interpretation.rst
4365 F:      Documentation/process/code-of-conduct.rst
4366
4367 COMMON CLK FRAMEWORK
4368 M:      Michael Turquette <mturquette@baylibre.com>
4369 M:      Stephen Boyd <sboyd@kernel.org>
4370 L:      linux-clk@vger.kernel.org
4371 S:      Maintained
4372 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4373 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4374 F:      Documentation/devicetree/bindings/clock/
4375 F:      drivers/clk/
4376 F:      include/linux/clk-pr*
4377 F:      include/linux/clk/
4378 F:      include/linux/of_clk.h
4379 X:      drivers/clk/clkdev.c
4380
4381 COMMON INTERNET FILE SYSTEM (CIFS)
4382 M:      Steve French <sfrench@samba.org>
4383 L:      linux-cifs@vger.kernel.org
4384 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4385 S:      Supported
4386 W:      http://linux-cifs.samba.org/
4387 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4388 F:      Documentation/admin-guide/cifs/
4389 F:      fs/cifs/
4390
4391 COMPACTPCI HOTPLUG CORE
4392 M:      Scott Murray <scott@spiteful.org>
4393 L:      linux-pci@vger.kernel.org
4394 S:      Maintained
4395 F:      drivers/pci/hotplug/cpci_hotplug*
4396
4397 COMPACTPCI HOTPLUG GENERIC DRIVER
4398 M:      Scott Murray <scott@spiteful.org>
4399 L:      linux-pci@vger.kernel.org
4400 S:      Maintained
4401 F:      drivers/pci/hotplug/cpcihp_generic.c
4402
4403 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4404 M:      Scott Murray <scott@spiteful.org>
4405 L:      linux-pci@vger.kernel.org
4406 S:      Maintained
4407 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4408
4409 COMPAL LAPTOP SUPPORT
4410 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4411 L:      platform-driver-x86@vger.kernel.org
4412 S:      Maintained
4413 F:      drivers/platform/x86/compal-laptop.c
4414
4415 COMPILER ATTRIBUTES
4416 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4417 S:      Maintained
4418 F:      include/linux/compiler_attributes.h
4419
4420 CONEXANT ACCESSRUNNER USB DRIVER
4421 L:      accessrunner-general@lists.sourceforge.net
4422 S:      Orphan
4423 W:      http://accessrunner.sourceforge.net/
4424 F:      drivers/usb/atm/cxacru.c
4425
4426 CONFIGFS
4427 M:      Joel Becker <jlbec@evilplan.org>
4428 M:      Christoph Hellwig <hch@lst.de>
4429 S:      Supported
4430 T:      git git://git.infradead.org/users/hch/configfs.git
4431 F:      fs/configfs/
4432 F:      include/linux/configfs.h
4433 F:      samples/configfs/
4434
4435 CONSOLE SUBSYSTEM
4436 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4437 S:      Supported
4438 F:      drivers/video/console/
4439 F:      include/linux/console*
4440
4441 CONTROL GROUP (CGROUP)
4442 M:      Tejun Heo <tj@kernel.org>
4443 M:      Li Zefan <lizefan@huawei.com>
4444 M:      Johannes Weiner <hannes@cmpxchg.org>
4445 L:      cgroups@vger.kernel.org
4446 S:      Maintained
4447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4448 F:      Documentation/admin-guide/cgroup-v1/
4449 F:      Documentation/admin-guide/cgroup-v2.rst
4450 F:      include/linux/cgroup*
4451 F:      kernel/cgroup/
4452
4453 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4454 M:      Tejun Heo <tj@kernel.org>
4455 M:      Jens Axboe <axboe@kernel.dk>
4456 L:      cgroups@vger.kernel.org
4457 L:      linux-block@vger.kernel.org
4458 T:      git git://git.kernel.dk/linux-block
4459 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4460 F:      block/bfq-cgroup.c
4461 F:      block/blk-cgroup.c
4462 F:      block/blk-iolatency.c
4463 F:      block/blk-throttle.c
4464 F:      include/linux/blk-cgroup.h
4465
4466 CONTROL GROUP - CPUSET
4467 M:      Li Zefan <lizefan@huawei.com>
4468 L:      cgroups@vger.kernel.org
4469 S:      Maintained
4470 W:      http://www.bullopensource.org/cpuset/
4471 W:      http://oss.sgi.com/projects/cpusets/
4472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4473 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4474 F:      include/linux/cpuset.h
4475 F:      kernel/cgroup/cpuset.c
4476
4477 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4478 M:      Johannes Weiner <hannes@cmpxchg.org>
4479 M:      Michal Hocko <mhocko@kernel.org>
4480 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4481 L:      cgroups@vger.kernel.org
4482 L:      linux-mm@kvack.org
4483 S:      Maintained
4484 F:      mm/memcontrol.c
4485 F:      mm/swap_cgroup.c
4486
4487 CORETEMP HARDWARE MONITORING DRIVER
4488 M:      Fenghua Yu <fenghua.yu@intel.com>
4489 L:      linux-hwmon@vger.kernel.org
4490 S:      Maintained
4491 F:      Documentation/hwmon/coretemp.rst
4492 F:      drivers/hwmon/coretemp.c
4493
4494 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4495 M:      Marius Zachmann <mail@mariuszachmann.de>
4496 L:      linux-hwmon@vger.kernel.org
4497 S:      Maintained
4498 F:      drivers/hwmon/corsair-cpro.c
4499
4500 COSA/SRP SYNC SERIAL DRIVER
4501 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4502 S:      Maintained
4503 W:      http://www.fi.muni.cz/~kas/cosa/
4504 F:      drivers/net/wan/cosa*
4505
4506 COUNTER SUBSYSTEM
4507 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4508 L:      linux-iio@vger.kernel.org
4509 S:      Maintained
4510 F:      Documentation/ABI/testing/sysfs-bus-counter*
4511 F:      Documentation/driver-api/generic-counter.rst
4512 F:      drivers/counter/
4513 F:      include/linux/counter.h
4514 F:      include/linux/counter_enum.h
4515
4516 CPMAC ETHERNET DRIVER
4517 M:      Florian Fainelli <f.fainelli@gmail.com>
4518 L:      netdev@vger.kernel.org
4519 S:      Maintained
4520 F:      drivers/net/ethernet/ti/cpmac.c
4521
4522 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4523 M:      Viresh Kumar <viresh.kumar@linaro.org>
4524 M:      Sudeep Holla <sudeep.holla@arm.com>
4525 L:      linux-pm@vger.kernel.org
4526 S:      Maintained
4527 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4528 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4529
4530 CPU FREQUENCY SCALING FRAMEWORK
4531 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4532 M:      Viresh Kumar <viresh.kumar@linaro.org>
4533 L:      linux-pm@vger.kernel.org
4534 S:      Maintained
4535 B:      https://bugzilla.kernel.org
4536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4538 F:      Documentation/admin-guide/pm/cpufreq.rst
4539 F:      Documentation/admin-guide/pm/intel_pstate.rst
4540 F:      Documentation/cpu-freq/
4541 F:      Documentation/devicetree/bindings/cpufreq/
4542 F:      drivers/cpufreq/
4543 F:      include/linux/cpufreq.h
4544 F:      include/linux/sched/cpufreq.h
4545 F:      kernel/sched/cpufreq*.c
4546 F:      tools/testing/selftests/cpufreq/
4547
4548 CPU IDLE TIME MANAGEMENT FRAMEWORK
4549 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4550 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4551 L:      linux-pm@vger.kernel.org
4552 S:      Maintained
4553 B:      https://bugzilla.kernel.org
4554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4555 F:      Documentation/admin-guide/pm/cpuidle.rst
4556 F:      Documentation/driver-api/pm/cpuidle.rst
4557 F:      drivers/cpuidle/*
4558 F:      include/linux/cpuidle.h
4559
4560 CPU POWER MONITORING SUBSYSTEM
4561 M:      Thomas Renninger <trenn@suse.com>
4562 M:      Shuah Khan <shuah@kernel.org>
4563 M:      Shuah Khan <skhan@linuxfoundation.org>
4564 L:      linux-pm@vger.kernel.org
4565 S:      Maintained
4566 F:      tools/power/cpupower/
4567
4568 CPUID/MSR DRIVER
4569 M:      "H. Peter Anvin" <hpa@zytor.com>
4570 S:      Maintained
4571 F:      arch/x86/kernel/cpuid.c
4572 F:      arch/x86/kernel/msr.c
4573
4574 CPUIDLE DRIVER - ARM BIG LITTLE
4575 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4576 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4577 L:      linux-pm@vger.kernel.org
4578 L:      linux-arm-kernel@lists.infradead.org
4579 S:      Maintained
4580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4581 F:      drivers/cpuidle/cpuidle-big_little.c
4582
4583 CPUIDLE DRIVER - ARM EXYNOS
4584 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4585 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4586 M:      Kukjin Kim <kgene@kernel.org>
4587 L:      linux-pm@vger.kernel.org
4588 L:      linux-samsung-soc@vger.kernel.org
4589 S:      Supported
4590 F:      arch/arm/mach-exynos/pm.c
4591 F:      drivers/cpuidle/cpuidle-exynos.c
4592
4593 CPUIDLE DRIVER - ARM PSCI
4594 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4595 M:      Sudeep Holla <sudeep.holla@arm.com>
4596 L:      linux-pm@vger.kernel.org
4597 L:      linux-arm-kernel@lists.infradead.org
4598 S:      Supported
4599 F:      drivers/cpuidle/cpuidle-psci.c
4600
4601 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4602 M:      Ulf Hansson <ulf.hansson@linaro.org>
4603 L:      linux-pm@vger.kernel.org
4604 L:      linux-arm-kernel@lists.infradead.org
4605 S:      Supported
4606 F:      drivers/cpuidle/cpuidle-psci.h
4607 F:      drivers/cpuidle/cpuidle-psci-domain.c
4608
4609 CRAMFS FILESYSTEM
4610 M:      Nicolas Pitre <nico@fluxnic.net>
4611 S:      Maintained
4612 F:      Documentation/filesystems/cramfs.rst
4613 F:      fs/cramfs/
4614
4615 CREATIVE SB0540
4616 M:      Bastien Nocera <hadess@hadess.net>
4617 L:      linux-input@vger.kernel.org
4618 S:      Maintained
4619 F:      drivers/hid/hid-creative-sb0540.c
4620
4621 CRYPTO API
4622 M:      Herbert Xu <herbert@gondor.apana.org.au>
4623 M:      "David S. Miller" <davem@davemloft.net>
4624 L:      linux-crypto@vger.kernel.org
4625 S:      Maintained
4626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4628 F:      Documentation/crypto/
4629 F:      Documentation/devicetree/bindings/crypto/
4630 F:      arch/*/crypto/
4631 F:      crypto/
4632 F:      drivers/crypto/
4633 F:      include/crypto/
4634 F:      include/linux/crypto*
4635 F:      lib/crypto/
4636
4637 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4638 M:      Neil Horman <nhorman@tuxdriver.com>
4639 L:      linux-crypto@vger.kernel.org
4640 S:      Maintained
4641 F:      crypto/ansi_cprng.c
4642 F:      crypto/rng.c
4643
4644 CS3308 MEDIA DRIVER
4645 M:      Hans Verkuil <hverkuil@xs4all.nl>
4646 L:      linux-media@vger.kernel.org
4647 S:      Odd Fixes
4648 W:      http://linuxtv.org
4649 T:      git git://linuxtv.org/media_tree.git
4650 F:      drivers/media/i2c/cs3308.c
4651
4652 CS5535 Audio ALSA driver
4653 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4654 S:      Maintained
4655 F:      sound/pci/cs5535audio/
4656
4657 CSI DRIVERS FOR ALLWINNER V3s
4658 M:      Yong Deng <yong.deng@magewell.com>
4659 L:      linux-media@vger.kernel.org
4660 S:      Maintained
4661 T:      git git://linuxtv.org/media_tree.git
4662 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4663 F:      drivers/media/platform/sunxi/sun6i-csi/
4664
4665 CW1200 WLAN driver
4666 M:      Solomon Peachy <pizza@shaftnet.org>
4667 S:      Maintained
4668 F:      drivers/net/wireless/st/cw1200/
4669
4670 CX18 VIDEO4LINUX DRIVER
4671 M:      Andy Walls <awalls@md.metrocast.net>
4672 L:      linux-media@vger.kernel.org
4673 S:      Maintained
4674 W:      https://linuxtv.org
4675 T:      git git://linuxtv.org/media_tree.git
4676 F:      drivers/media/pci/cx18/
4677 F:      include/uapi/linux/ivtv*
4678
4679 CX2341X MPEG ENCODER HELPER MODULE
4680 M:      Hans Verkuil <hverkuil@xs4all.nl>
4681 L:      linux-media@vger.kernel.org
4682 S:      Maintained
4683 W:      https://linuxtv.org
4684 T:      git git://linuxtv.org/media_tree.git
4685 F:      drivers/media/common/cx2341x*
4686 F:      include/media/drv-intf/cx2341x.h
4687
4688 CX24120 MEDIA DRIVER
4689 M:      Jemma Denson <jdenson@gmail.com>
4690 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4691 L:      linux-media@vger.kernel.org
4692 S:      Maintained
4693 W:      https://linuxtv.org
4694 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4695 F:      drivers/media/dvb-frontends/cx24120*
4696
4697 CX88 VIDEO4LINUX DRIVER
4698 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4699 L:      linux-media@vger.kernel.org
4700 S:      Odd fixes
4701 W:      https://linuxtv.org
4702 T:      git git://linuxtv.org/media_tree.git
4703 F:      Documentation/driver-api/media/drivers/cx88*
4704 F:      drivers/media/pci/cx88/
4705
4706 CXD2820R MEDIA DRIVER
4707 M:      Antti Palosaari <crope@iki.fi>
4708 L:      linux-media@vger.kernel.org
4709 S:      Maintained
4710 W:      https://linuxtv.org
4711 W:      http://palosaari.fi/linux/
4712 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4713 T:      git git://linuxtv.org/anttip/media_tree.git
4714 F:      drivers/media/dvb-frontends/cxd2820r*
4715
4716 CXGB3 ETHERNET DRIVER (CXGB3)
4717 M:      Vishal Kulkarni <vishal@chelsio.com>
4718 L:      netdev@vger.kernel.org
4719 S:      Supported
4720 W:      http://www.chelsio.com
4721 F:      drivers/net/ethernet/chelsio/cxgb3/
4722
4723 CXGB3 ISCSI DRIVER (CXGB3I)
4724 M:      Karen Xie <kxie@chelsio.com>
4725 L:      linux-scsi@vger.kernel.org
4726 S:      Supported
4727 W:      http://www.chelsio.com
4728 F:      drivers/scsi/cxgbi/cxgb3i
4729
4730 CXGB4 CRYPTO DRIVER (chcr)
4731 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4732 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4733 M:      Rohit Maheshwari <rohitm@chelsio.com>
4734 L:      linux-crypto@vger.kernel.org
4735 S:      Supported
4736 W:      http://www.chelsio.com
4737 F:      drivers/crypto/chelsio
4738
4739 CXGB4 INLINE CRYPTO DRIVER
4740 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4741 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4742 M:      Rohit Maheshwari <rohitm@chelsio.com>
4743 L:      netdev@vger.kernel.org
4744 S:      Supported
4745 W:      http://www.chelsio.com
4746 F:      drivers/net/ethernet/chelsio/inline_crypto/
4747
4748 CXGB4 ETHERNET DRIVER (CXGB4)
4749 M:      Vishal Kulkarni <vishal@chelsio.com>
4750 L:      netdev@vger.kernel.org
4751 S:      Supported
4752 W:      http://www.chelsio.com
4753 F:      drivers/net/ethernet/chelsio/cxgb4/
4754
4755 CXGB4 ISCSI DRIVER (CXGB4I)
4756 M:      Karen Xie <kxie@chelsio.com>
4757 L:      linux-scsi@vger.kernel.org
4758 S:      Supported
4759 W:      http://www.chelsio.com
4760 F:      drivers/scsi/cxgbi/cxgb4i
4761
4762 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4763 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4764 L:      linux-rdma@vger.kernel.org
4765 S:      Supported
4766 W:      http://www.openfabrics.org
4767 F:      drivers/infiniband/hw/cxgb4/
4768 F:      include/uapi/rdma/cxgb4-abi.h
4769
4770 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4771 M:      Vishal Kulkarni <vishal@gmail.com>
4772 L:      netdev@vger.kernel.org
4773 S:      Supported
4774 W:      http://www.chelsio.com
4775 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4776
4777 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4778 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4779 M:      Andrew Donnellan <ajd@linux.ibm.com>
4780 L:      linuxppc-dev@lists.ozlabs.org
4781 S:      Supported
4782 F:      Documentation/ABI/testing/sysfs-class-cxl
4783 F:      Documentation/powerpc/cxl.rst
4784 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4785 F:      drivers/misc/cxl/
4786 F:      include/misc/cxl*
4787 F:      include/uapi/misc/cxl.h
4788
4789 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4790 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4791 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4792 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4793 L:      linux-scsi@vger.kernel.org
4794 S:      Supported
4795 F:      Documentation/powerpc/cxlflash.rst
4796 F:      drivers/scsi/cxlflash/
4797 F:      include/uapi/scsi/cxlflash_ioctl.h
4798
4799 CYBERPRO FB DRIVER
4800 M:      Russell King <linux@armlinux.org.uk>
4801 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4802 S:      Maintained
4803 W:      http://www.armlinux.org.uk/
4804 F:      drivers/video/fbdev/cyber2000fb.*
4805
4806 CYCLADES ASYNC MUX DRIVER
4807 S:      Orphan
4808 W:      http://www.cyclades.com/
4809 F:      drivers/tty/cyclades.c
4810 F:      include/linux/cyclades.h
4811 F:      include/uapi/linux/cyclades.h
4812
4813 CYCLADES PC300 DRIVER
4814 S:      Orphan
4815 W:      http://www.cyclades.com/
4816 F:      drivers/net/wan/pc300*
4817
4818 CYPRESS_FIRMWARE MEDIA DRIVER
4819 M:      Antti Palosaari <crope@iki.fi>
4820 L:      linux-media@vger.kernel.org
4821 S:      Maintained
4822 W:      https://linuxtv.org
4823 W:      http://palosaari.fi/linux/
4824 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4825 T:      git git://linuxtv.org/anttip/media_tree.git
4826 F:      drivers/media/common/cypress_firmware*
4827
4828 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
4829 M:      Linus Walleij <linus.walleij@linaro.org>
4830 L:      linux-input@vger.kernel.org
4831 S:      Maintained
4832 F:      drivers/input/touchscreen/cy8ctma140.c
4833
4834 CYTTSP TOUCHSCREEN DRIVER
4835 M:      Ferruh Yigit <fery@cypress.com>
4836 L:      linux-input@vger.kernel.org
4837 S:      Supported
4838 F:      drivers/input/touchscreen/cyttsp*
4839 F:      include/linux/input/cyttsp.h
4840
4841 D-LINK DIR-685 TOUCHKEYS DRIVER
4842 M:      Linus Walleij <linus.walleij@linaro.org>
4843 L:      linux-input@vger.kernel.org
4844 S:      Supported
4845 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4846
4847 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4848 M:      Joshua Kinard <kumba@gentoo.org>
4849 S:      Maintained
4850 F:      drivers/rtc/rtc-ds1685.c
4851 F:      include/linux/rtc/ds1685.h
4852
4853 DAMA SLAVE for AX.25
4854 M:      Joerg Reuter <jreuter@yaina.de>
4855 L:      linux-hams@vger.kernel.org
4856 S:      Maintained
4857 W:      http://yaina.de/jreuter/
4858 W:      http://www.qsl.net/dl1bke/
4859 F:      net/ax25/af_ax25.c
4860 F:      net/ax25/ax25_dev.c
4861 F:      net/ax25/ax25_ds_*
4862 F:      net/ax25/ax25_in.c
4863 F:      net/ax25/ax25_out.c
4864 F:      net/ax25/ax25_timer.c
4865 F:      net/ax25/sysctl_net_ax25.c
4866
4867 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4868 L:      netdev@vger.kernel.org
4869 S:      Orphan
4870 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
4871 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4872
4873 DC390/AM53C974 SCSI driver
4874 M:      Hannes Reinecke <hare@suse.com>
4875 L:      linux-scsi@vger.kernel.org
4876 S:      Maintained
4877 F:      drivers/scsi/am53c974.c
4878
4879 DC395x SCSI driver
4880 M:      Oliver Neukum <oliver@neukum.org>
4881 M:      Ali Akcaagac <aliakc@web.de>
4882 M:      Jamie Lenehan <lenehan@twibble.org>
4883 L:      dc395x@twibble.org
4884 S:      Maintained
4885 W:      http://twibble.org/dist/dc395x/
4886 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4887 F:      Documentation/scsi/dc395x.rst
4888 F:      drivers/scsi/dc395x.*
4889
4890 DCCP PROTOCOL
4891 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
4892 L:      dccp@vger.kernel.org
4893 S:      Maintained
4894 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4895 F:      include/linux/dccp.h
4896 F:      include/linux/tfrc.h
4897 F:      include/uapi/linux/dccp.h
4898 F:      net/dccp/
4899
4900 DECnet NETWORK LAYER
4901 L:      linux-decnet-user@lists.sourceforge.net
4902 S:      Orphan
4903 W:      http://linux-decnet.sourceforge.net
4904 F:      Documentation/networking/decnet.rst
4905 F:      net/decnet/
4906
4907 DECSTATION PLATFORM SUPPORT
4908 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4909 L:      linux-mips@vger.kernel.org
4910 S:      Maintained
4911 W:      http://www.linux-mips.org/wiki/DECstation
4912 F:      arch/mips/dec/
4913 F:      arch/mips/include/asm/dec/
4914 F:      arch/mips/include/asm/mach-dec/
4915
4916 DEFXX FDDI NETWORK DRIVER
4917 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4918 S:      Maintained
4919 F:      drivers/net/fddi/defxx.*
4920
4921 DEFZA FDDI NETWORK DRIVER
4922 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4923 S:      Maintained
4924 F:      drivers/net/fddi/defza.*
4925
4926 DEINTERLACE DRIVERS FOR ALLWINNER H3
4927 M:      Jernej Skrabec <jernej.skrabec@siol.net>
4928 L:      linux-media@vger.kernel.org
4929 S:      Maintained
4930 T:      git git://linuxtv.org/media_tree.git
4931 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4932 F:      drivers/media/platform/sunxi/sun8i-di/
4933
4934 DELL LAPTOP DRIVER
4935 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4936 M:      Pali Rohár <pali@kernel.org>
4937 L:      platform-driver-x86@vger.kernel.org
4938 S:      Maintained
4939 F:      drivers/platform/x86/dell-laptop.c
4940
4941 DELL LAPTOP FREEFALL DRIVER
4942 M:      Pali Rohár <pali@kernel.org>
4943 S:      Maintained
4944 F:      drivers/platform/x86/dell-smo8800.c
4945
4946 DELL LAPTOP RBTN DRIVER
4947 M:      Pali Rohár <pali@kernel.org>
4948 S:      Maintained
4949 F:      drivers/platform/x86/dell-rbtn.*
4950
4951 DELL LAPTOP SMM DRIVER
4952 M:      Pali Rohár <pali@kernel.org>
4953 S:      Maintained
4954 F:      drivers/hwmon/dell-smm-hwmon.c
4955 F:      include/uapi/linux/i8k.h
4956
4957 DELL REMOTE BIOS UPDATE DRIVER
4958 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4959 L:      platform-driver-x86@vger.kernel.org
4960 S:      Maintained
4961 F:      drivers/platform/x86/dell_rbu.c
4962
4963 DELL SMBIOS DRIVER
4964 M:      Pali Rohár <pali@kernel.org>
4965 M:      Mario Limonciello <mario.limonciello@dell.com>
4966 L:      platform-driver-x86@vger.kernel.org
4967 S:      Maintained
4968 F:      drivers/platform/x86/dell-smbios.*
4969
4970 DELL SMBIOS SMM DRIVER
4971 M:      Mario Limonciello <mario.limonciello@dell.com>
4972 L:      platform-driver-x86@vger.kernel.org
4973 S:      Maintained
4974 F:      drivers/platform/x86/dell-smbios-smm.c
4975
4976 DELL SMBIOS WMI DRIVER
4977 M:      Mario Limonciello <mario.limonciello@dell.com>
4978 L:      platform-driver-x86@vger.kernel.org
4979 S:      Maintained
4980 F:      drivers/platform/x86/dell-smbios-wmi.c
4981 F:      tools/wmi/dell-smbios-example.c
4982
4983 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4984 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4985 L:      platform-driver-x86@vger.kernel.org
4986 S:      Maintained
4987 F:      Documentation/driver-api/dcdbas.rst
4988 F:      drivers/platform/x86/dcdbas.*
4989
4990 DELL WMI DESCRIPTOR DRIVER
4991 M:      Mario Limonciello <mario.limonciello@dell.com>
4992 S:      Maintained
4993 F:      drivers/platform/x86/dell-wmi-descriptor.c
4994
4995 DELL WMI NOTIFICATIONS DRIVER
4996 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4997 M:      Pali Rohár <pali@kernel.org>
4998 S:      Maintained
4999 F:      drivers/platform/x86/dell-wmi.c
5000
5001 DELTA ST MEDIA DRIVER
5002 M:      Hugues Fruchet <hugues.fruchet@st.com>
5003 L:      linux-media@vger.kernel.org
5004 S:      Supported
5005 W:      https://linuxtv.org
5006 T:      git git://linuxtv.org/media_tree.git
5007 F:      drivers/media/platform/sti/delta
5008
5009 DENALI NAND DRIVER
5010 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
5011 L:      linux-mtd@lists.infradead.org
5012 S:      Supported
5013 F:      drivers/mtd/nand/raw/denali*
5014
5015 DESIGNWARE EDMA CORE IP DRIVER
5016 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5017 L:      dmaengine@vger.kernel.org
5018 S:      Maintained
5019 F:      drivers/dma/dw-edma/
5020 F:      include/linux/dma/edma.h
5021
5022 DESIGNWARE USB2 DRD IP DRIVER
5023 M:      Minas Harutyunyan <hminas@synopsys.com>
5024 L:      linux-usb@vger.kernel.org
5025 S:      Maintained
5026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5027 F:      drivers/usb/dwc2/
5028
5029 DESIGNWARE USB3 DRD IP DRIVER
5030 M:      Felipe Balbi <balbi@kernel.org>
5031 L:      linux-usb@vger.kernel.org
5032 S:      Maintained
5033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5034 F:      drivers/usb/dwc3/
5035
5036 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5037 M:      Andreas Klinger <ak@it-klinger.de>
5038 L:      linux-iio@vger.kernel.org
5039 S:      Maintained
5040 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5041 F:      drivers/iio/proximity/srf*.c
5042
5043 DEVICE COREDUMP (DEV_COREDUMP)
5044 M:      Johannes Berg <johannes@sipsolutions.net>
5045 L:      linux-kernel@vger.kernel.org
5046 S:      Maintained
5047 F:      drivers/base/devcoredump.c
5048 F:      include/linux/devcoredump.h
5049
5050 DEVICE DEPENDENCY HELPER SCRIPT
5051 M:      Saravana Kannan <saravanak@google.com>
5052 L:      linux-kernel@vger.kernel.org
5053 S:      Maintained
5054 F:      scripts/dev-needs.sh
5055
5056 DEVICE DIRECT ACCESS (DAX)
5057 M:      Dan Williams <dan.j.williams@intel.com>
5058 M:      Vishal Verma <vishal.l.verma@intel.com>
5059 M:      Dave Jiang <dave.jiang@intel.com>
5060 L:      linux-nvdimm@lists.01.org
5061 S:      Supported
5062 F:      drivers/dax/
5063
5064 DEVICE FREQUENCY (DEVFREQ)
5065 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5066 M:      Kyungmin Park <kyungmin.park@samsung.com>
5067 M:      Chanwoo Choi <cw00.choi@samsung.com>
5068 L:      linux-pm@vger.kernel.org
5069 S:      Maintained
5070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5071 F:      Documentation/devicetree/bindings/devfreq/
5072 F:      drivers/devfreq/
5073 F:      include/linux/devfreq.h
5074 F:      include/trace/events/devfreq.h
5075
5076 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5077 M:      Chanwoo Choi <cw00.choi@samsung.com>
5078 L:      linux-pm@vger.kernel.org
5079 S:      Supported
5080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5081 F:      Documentation/devicetree/bindings/devfreq/event/
5082 F:      drivers/devfreq/devfreq-event.c
5083 F:      drivers/devfreq/event/
5084 F:      include/dt-bindings/pmu/exynos_ppmu.h
5085 F:      include/linux/devfreq-event.h
5086
5087 DEVICE NUMBER REGISTRY
5088 M:      Torben Mathiasen <device@lanana.org>
5089 S:      Maintained
5090 W:      http://lanana.org/docs/device-list/index.html
5091
5092 DEVICE-MAPPER  (LVM)
5093 M:      Alasdair Kergon <agk@redhat.com>
5094 M:      Mike Snitzer <snitzer@redhat.com>
5095 M:      dm-devel@redhat.com
5096 L:      dm-devel@redhat.com
5097 S:      Maintained
5098 W:      http://sources.redhat.com/dm
5099 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5101 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5102 F:      Documentation/admin-guide/device-mapper/
5103 F:      drivers/md/Kconfig
5104 F:      drivers/md/Makefile
5105 F:      drivers/md/dm*
5106 F:      drivers/md/persistent-data/
5107 F:      include/linux/device-mapper.h
5108 F:      include/linux/dm-*.h
5109 F:      include/uapi/linux/dm-*.h
5110
5111 DEVLINK
5112 M:      Jiri Pirko <jiri@nvidia.com>
5113 L:      netdev@vger.kernel.org
5114 S:      Supported
5115 F:      Documentation/networking/devlink
5116 F:      include/net/devlink.h
5117 F:      include/uapi/linux/devlink.h
5118 F:      net/core/devlink.c
5119
5120 DIALOG SEMICONDUCTOR DRIVERS
5121 M:      Support Opensource <support.opensource@diasemi.com>
5122 S:      Supported
5123 W:      http://www.dialog-semiconductor.com/products
5124 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5125 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5126 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5127 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5128 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5129 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5130 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5131 F:      Documentation/hwmon/da90??.rst
5132 F:      drivers/gpio/gpio-da90??.c
5133 F:      drivers/hwmon/da90??-hwmon.c
5134 F:      drivers/iio/adc/da91??-*.c
5135 F:      drivers/input/misc/da90??_onkey.c
5136 F:      drivers/input/touchscreen/da9052_tsi.c
5137 F:      drivers/leds/leds-da90??.c
5138 F:      drivers/mfd/da903x.c
5139 F:      drivers/mfd/da90??-*.c
5140 F:      drivers/mfd/da91??-*.c
5141 F:      drivers/pinctrl/pinctrl-da90??.c
5142 F:      drivers/power/supply/da9052-battery.c
5143 F:      drivers/power/supply/da91??-*.c
5144 F:      drivers/regulator/da9???-regulator.[ch]
5145 F:      drivers/regulator/slg51000-regulator.[ch]
5146 F:      drivers/rtc/rtc-da90??.c
5147 F:      drivers/thermal/da90??-thermal.c
5148 F:      drivers/video/backlight/da90??_bl.c
5149 F:      drivers/watchdog/da90??_wdt.c
5150 F:      include/linux/mfd/da903x.h
5151 F:      include/linux/mfd/da9052/
5152 F:      include/linux/mfd/da9055/
5153 F:      include/linux/mfd/da9062/
5154 F:      include/linux/mfd/da9063/
5155 F:      include/linux/mfd/da9150/
5156 F:      include/linux/regulator/da9211.h
5157 F:      include/sound/da[79]*.h
5158 F:      sound/soc/codecs/da[79]*.[ch]
5159
5160 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5161 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5162 L:      linux-gpio@vger.kernel.org
5163 S:      Maintained
5164 F:      drivers/gpio/gpio-gpio-mm.c
5165
5166 DIOLAN U2C-12 I2C DRIVER
5167 M:      Guenter Roeck <linux@roeck-us.net>
5168 L:      linux-i2c@vger.kernel.org
5169 S:      Maintained
5170 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5171
5172 DIRECTORY NOTIFICATION (DNOTIFY)
5173 M:      Jan Kara <jack@suse.cz>
5174 R:      Amir Goldstein <amir73il@gmail.com>
5175 L:      linux-fsdevel@vger.kernel.org
5176 S:      Maintained
5177 F:      Documentation/filesystems/dnotify.rst
5178 F:      fs/notify/dnotify/
5179 F:      include/linux/dnotify.h
5180
5181 DISK GEOMETRY AND PARTITION HANDLING
5182 M:      Andries Brouwer <aeb@cwi.nl>
5183 S:      Maintained
5184 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5185 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5186 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5187
5188 DISKQUOTA
5189 M:      Jan Kara <jack@suse.com>
5190 S:      Maintained
5191 F:      Documentation/filesystems/quota.rst
5192 F:      fs/quota/
5193 F:      include/linux/quota*.h
5194 F:      include/uapi/linux/quota*.h
5195
5196 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5197 M:      Bernie Thompson <bernie@plugable.com>
5198 L:      linux-fbdev@vger.kernel.org
5199 S:      Maintained
5200 W:      http://plugable.com/category/projects/udlfb/
5201 F:      Documentation/fb/udlfb.rst
5202 F:      drivers/video/fbdev/udlfb.c
5203 F:      include/video/udlfb.h
5204
5205 DISTRIBUTED LOCK MANAGER (DLM)
5206 M:      Christine Caulfield <ccaulfie@redhat.com>
5207 M:      David Teigland <teigland@redhat.com>
5208 L:      cluster-devel@redhat.com
5209 S:      Supported
5210 W:      http://sources.redhat.com/cluster/
5211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5212 F:      fs/dlm/
5213
5214 DMA BUFFER SHARING FRAMEWORK
5215 M:      Sumit Semwal <sumit.semwal@linaro.org>
5216 M:      Christian König <christian.koenig@amd.com>
5217 L:      linux-media@vger.kernel.org
5218 L:      dri-devel@lists.freedesktop.org
5219 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5220 S:      Maintained
5221 T:      git git://anongit.freedesktop.org/drm/drm-misc
5222 F:      Documentation/driver-api/dma-buf.rst
5223 F:      drivers/dma-buf/
5224 F:      include/linux/*fence.h
5225 F:      include/linux/dma-buf*
5226 F:      include/linux/dma-resv.h
5227 K:      \bdma_(?:buf|fence|resv)\b
5228
5229 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5230 M:      Vinod Koul <vkoul@kernel.org>
5231 L:      dmaengine@vger.kernel.org
5232 S:      Maintained
5233 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5235 F:      Documentation/devicetree/bindings/dma/
5236 F:      Documentation/driver-api/dmaengine/
5237 F:      drivers/dma/
5238 F:      include/linux/dmaengine.h
5239 F:      include/linux/of_dma.h
5240
5241 DMA MAPPING HELPERS
5242 M:      Christoph Hellwig <hch@lst.de>
5243 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5244 R:      Robin Murphy <robin.murphy@arm.com>
5245 L:      iommu@lists.linux-foundation.org
5246 S:      Supported
5247 W:      http://git.infradead.org/users/hch/dma-mapping.git
5248 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5249 F:      include/asm-generic/dma-mapping.h
5250 F:      include/linux/dma-direct.h
5251 F:      include/linux/dma-mapping.h
5252 F:      include/linux/dma-map-ops.h
5253 F:      kernel/dma/
5254
5255 DMA-BUF HEAPS FRAMEWORK
5256 M:      Sumit Semwal <sumit.semwal@linaro.org>
5257 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5258 R:      Liam Mark <lmark@codeaurora.org>
5259 R:      Laura Abbott <labbott@redhat.com>
5260 R:      Brian Starkey <Brian.Starkey@arm.com>
5261 R:      John Stultz <john.stultz@linaro.org>
5262 L:      linux-media@vger.kernel.org
5263 L:      dri-devel@lists.freedesktop.org
5264 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5265 S:      Maintained
5266 T:      git git://anongit.freedesktop.org/drm/drm-misc
5267 F:      drivers/dma-buf/dma-heap.c
5268 F:      drivers/dma-buf/heaps/*
5269 F:      include/linux/dma-heap.h
5270 F:      include/uapi/linux/dma-heap.h
5271
5272 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5273 M:      Lukasz Luba <lukasz.luba@arm.com>
5274 L:      linux-pm@vger.kernel.org
5275 L:      linux-samsung-soc@vger.kernel.org
5276 S:      Maintained
5277 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5278 F:      drivers/memory/samsung/exynos5422-dmc.c
5279
5280 DME1737 HARDWARE MONITOR DRIVER
5281 M:      Juerg Haefliger <juergh@gmail.com>
5282 L:      linux-hwmon@vger.kernel.org
5283 S:      Maintained
5284 F:      Documentation/hwmon/dme1737.rst
5285 F:      drivers/hwmon/dme1737.c
5286
5287 DMI/SMBIOS SUPPORT
5288 M:      Jean Delvare <jdelvare@suse.com>
5289 S:      Maintained
5290 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5291 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5292 F:      drivers/firmware/dmi-id.c
5293 F:      drivers/firmware/dmi_scan.c
5294 F:      include/linux/dmi.h
5295
5296 DOCUMENTATION
5297 M:      Jonathan Corbet <corbet@lwn.net>
5298 L:      linux-doc@vger.kernel.org
5299 S:      Maintained
5300 P:      Documentation/doc-guide/maintainer-profile.rst
5301 T:      git git://git.lwn.net/linux.git docs-next
5302 F:      Documentation/
5303 F:      scripts/documentation-file-ref-check
5304 F:      scripts/kernel-doc
5305 F:      scripts/sphinx-pre-install
5306 X:      Documentation/ABI/
5307 X:      Documentation/admin-guide/media/
5308 X:      Documentation/devicetree/
5309 X:      Documentation/driver-api/media/
5310 X:      Documentation/firmware-guide/acpi/
5311 X:      Documentation/i2c/
5312 X:      Documentation/power/
5313 X:      Documentation/spi/
5314 X:      Documentation/userspace-api/media/
5315
5316 DOCUMENTATION SCRIPTS
5317 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5318 L:      linux-doc@vger.kernel.org
5319 S:      Maintained
5320 F:      Documentation/sphinx/parse-headers.pl
5321 F:      scripts/documentation-file-ref-check
5322 F:      scripts/sphinx-pre-install
5323
5324 DOCUMENTATION/ITALIAN
5325 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5326 L:      linux-doc@vger.kernel.org
5327 S:      Maintained
5328 F:      Documentation/translations/it_IT
5329
5330 DONGWOON DW9714 LENS VOICE COIL DRIVER
5331 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5332 L:      linux-media@vger.kernel.org
5333 S:      Maintained
5334 T:      git git://linuxtv.org/media_tree.git
5335 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5336 F:      drivers/media/i2c/dw9714.c
5337
5338 DONGWOON DW9768 LENS VOICE COIL DRIVER
5339 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5340 L:      linux-media@vger.kernel.org
5341 S:      Maintained
5342 T:      git git://linuxtv.org/media_tree.git
5343 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5344 F:      drivers/media/i2c/dw9768.c
5345
5346 DONGWOON DW9807 LENS VOICE COIL DRIVER
5347 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5348 L:      linux-media@vger.kernel.org
5349 S:      Maintained
5350 T:      git git://linuxtv.org/media_tree.git
5351 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5352 F:      drivers/media/i2c/dw9807-vcm.c
5353
5354 DOUBLETALK DRIVER
5355 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5356 L:      blinux-list@redhat.com
5357 S:      Maintained
5358 F:      drivers/char/dtlk.c
5359 F:      include/linux/dtlk.h
5360
5361 DPAA2 DATAPATH I/O (DPIO) DRIVER
5362 M:      Roy Pledge <Roy.Pledge@nxp.com>
5363 L:      linux-kernel@vger.kernel.org
5364 S:      Maintained
5365 F:      drivers/soc/fsl/dpio
5366
5367 DPAA2 ETHERNET DRIVER
5368 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5369 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5370 L:      netdev@vger.kernel.org
5371 S:      Maintained
5372 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5373 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5374 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5375 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5376 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5377 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5378 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5379 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5380 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5381
5382 DPAA2 ETHERNET SWITCH DRIVER
5383 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5384 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5385 L:      linux-kernel@vger.kernel.org
5386 S:      Maintained
5387 F:      drivers/staging/fsl-dpaa2/ethsw
5388
5389 DPT_I2O SCSI RAID DRIVER
5390 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5391 L:      linux-scsi@vger.kernel.org
5392 S:      Maintained
5393 W:      http://www.adaptec.com/
5394 F:      drivers/scsi/dpt*
5395 F:      drivers/scsi/dpt/
5396
5397 DRBD DRIVER
5398 M:      Philipp Reisner <philipp.reisner@linbit.com>
5399 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5400 L:      drbd-dev@lists.linbit.com
5401 S:      Supported
5402 W:      http://www.drbd.org
5403 T:      git git://git.linbit.com/linux-drbd.git
5404 T:      git git://git.linbit.com/drbd-8.4.git
5405 F:      Documentation/admin-guide/blockdev/
5406 F:      drivers/block/drbd/
5407 F:      lib/lru_cache.c
5408
5409 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5410 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5411 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5412 S:      Supported
5413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5414 F:      Documentation/core-api/kobject.rst
5415 F:      drivers/base/
5416 F:      fs/debugfs/
5417 F:      fs/sysfs/
5418 F:      include/linux/debugfs.h
5419 F:      include/linux/kobj*
5420 F:      lib/kobj*
5421
5422 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5423 M:      Nishanth Menon <nm@ti.com>
5424 L:      linux-pm@vger.kernel.org
5425 S:      Maintained
5426 F:      drivers/soc/ti/smartreflex.c
5427 F:      include/linux/power/smartreflex.h
5428
5429 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5430 M:      Maxime Ripard <mripard@kernel.org>
5431 M:      Chen-Yu Tsai <wens@csie.org>
5432 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5433 L:      dri-devel@lists.freedesktop.org
5434 S:      Supported
5435 T:      git git://anongit.freedesktop.org/drm/drm-misc
5436 F:      drivers/gpu/drm/sun4i/sun8i*
5437
5438 DRM DRIVER FOR ARM PL111 CLCD
5439 M:      Eric Anholt <eric@anholt.net>
5440 S:      Supported
5441 T:      git git://anongit.freedesktop.org/drm/drm-misc
5442 F:      drivers/gpu/drm/pl111/
5443
5444 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5445 M:      Linus Walleij <linus.walleij@linaro.org>
5446 S:      Maintained
5447 T:      git git://anongit.freedesktop.org/drm/drm-misc
5448 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5449 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5450
5451 DRM DRIVER FOR ASPEED BMC GFX
5452 M:      Joel Stanley <joel@jms.id.au>
5453 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5454 S:      Supported
5455 T:      git git://anongit.freedesktop.org/drm/drm-misc
5456 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5457 F:      drivers/gpu/drm/aspeed/
5458
5459 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5460 M:      Dave Airlie <airlied@redhat.com>
5461 R:      Thomas Zimmermann <tzimmermann@suse.de>
5462 L:      dri-devel@lists.freedesktop.org
5463 S:      Supported
5464 T:      git git://anongit.freedesktop.org/drm/drm-misc
5465 F:      drivers/gpu/drm/ast/
5466
5467 DRM DRIVER FOR BOCHS VIRTUAL GPU
5468 M:      Gerd Hoffmann <kraxel@redhat.com>
5469 L:      virtualization@lists.linux-foundation.org
5470 S:      Maintained
5471 T:      git git://anongit.freedesktop.org/drm/drm-misc
5472 F:      drivers/gpu/drm/bochs/
5473
5474 DRM DRIVER FOR BOE HIMAX8279D PANELS
5475 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5476 S:      Maintained
5477 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5478 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5479
5480 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5481 M:      Linus Walleij <linus.walleij@linaro.org>
5482 S:      Maintained
5483 T:      git git://anongit.freedesktop.org/drm/drm-misc
5484 F:      drivers/gpu/drm/tve200/
5485
5486 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5487 M:      Icenowy Zheng <icenowy@aosc.io>
5488 S:      Maintained
5489 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5490 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5491
5492 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5493 M:      Jagan Teki <jagan@amarulasolutions.com>
5494 S:      Maintained
5495 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5496 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5497
5498 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5499 M:      Hans de Goede <hdegoede@redhat.com>
5500 S:      Maintained
5501 T:      git git://anongit.freedesktop.org/drm/drm-misc
5502 F:      drivers/gpu/drm/tiny/gm12u320.c
5503
5504 DRM DRIVER FOR HX8357D PANELS
5505 M:      Eric Anholt <eric@anholt.net>
5506 S:      Maintained
5507 T:      git git://anongit.freedesktop.org/drm/drm-misc
5508 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5509 F:      drivers/gpu/drm/tiny/hx8357d.c
5510
5511 DRM DRIVER FOR ILITEK ILI9225 PANELS
5512 M:      David Lechner <david@lechnology.com>
5513 S:      Maintained
5514 T:      git git://anongit.freedesktop.org/drm/drm-misc
5515 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5516 F:      drivers/gpu/drm/tiny/ili9225.c
5517
5518 DRM DRIVER FOR ILITEK ILI9486 PANELS
5519 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5520 S:      Maintained
5521 T:      git git://anongit.freedesktop.org/drm/drm-misc
5522 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5523 F:      drivers/gpu/drm/tiny/ili9486.c
5524
5525 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5526 S:      Orphan / Obsolete
5527 F:      drivers/gpu/drm/i810/
5528 F:      include/uapi/drm/i810_drm.h
5529
5530 DRM DRIVER FOR LVDS PANELS
5531 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5532 L:      dri-devel@lists.freedesktop.org
5533 T:      git git://anongit.freedesktop.org/drm/drm-misc
5534 S:      Maintained
5535 F:      drivers/gpu/drm/panel/panel-lvds.c
5536 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5537
5538 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5539 M:      Guido Günther <agx@sigxcpu.org>
5540 R:      Purism Kernel Team <kernel@puri.sm>
5541 S:      Maintained
5542 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5543 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5544
5545 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5546 S:      Orphan / Obsolete
5547 F:      drivers/gpu/drm/mga/
5548 F:      include/uapi/drm/mga_drm.h
5549
5550 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5551 M:      Dave Airlie <airlied@redhat.com>
5552 R:      Thomas Zimmermann <tzimmermann@suse.de>
5553 L:      dri-devel@lists.freedesktop.org
5554 S:      Supported
5555 T:      git git://anongit.freedesktop.org/drm/drm-misc
5556 F:      drivers/gpu/drm/mgag200/
5557
5558 DRM DRIVER FOR MI0283QT
5559 M:      Noralf Trønnes <noralf@tronnes.org>
5560 S:      Maintained
5561 T:      git git://anongit.freedesktop.org/drm/drm-misc
5562 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5563 F:      drivers/gpu/drm/tiny/mi0283qt.c
5564
5565 DRM DRIVER FOR MSM ADRENO GPU
5566 M:      Rob Clark <robdclark@gmail.com>
5567 M:      Sean Paul <sean@poorly.run>
5568 L:      linux-arm-msm@vger.kernel.org
5569 L:      dri-devel@lists.freedesktop.org
5570 L:      freedreno@lists.freedesktop.org
5571 S:      Maintained
5572 T:      git https://gitlab.freedesktop.org/drm/msm.git
5573 F:      Documentation/devicetree/bindings/display/msm/
5574 F:      drivers/gpu/drm/msm/
5575 F:      include/uapi/drm/msm_drm.h
5576
5577 DRM DRIVER FOR NOVATEK NT35510 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/novatek,nt35510.yaml
5582 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5583
5584 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5585 M:      Ben Skeggs <bskeggs@redhat.com>
5586 L:      dri-devel@lists.freedesktop.org
5587 L:      nouveau@lists.freedesktop.org
5588 S:      Supported
5589 T:      git git://github.com/skeggsb/linux
5590 F:      drivers/gpu/drm/nouveau/
5591 F:      include/uapi/drm/nouveau_drm.h
5592
5593 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5594 M:      Stefan Mavrodiev <stefan@olimex.com>
5595 S:      Maintained
5596 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5597 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5598
5599 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5600 M:      Noralf Trønnes <noralf@tronnes.org>
5601 S:      Maintained
5602 T:      git git://anongit.freedesktop.org/drm/drm-misc
5603 F:      Documentation/devicetree/bindings/display/repaper.txt
5604 F:      drivers/gpu/drm/tiny/repaper.c
5605
5606 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5607 M:      Dave Airlie <airlied@redhat.com>
5608 M:      Gerd Hoffmann <kraxel@redhat.com>
5609 L:      virtualization@lists.linux-foundation.org
5610 S:      Obsolete
5611 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5612 T:      git git://anongit.freedesktop.org/drm/drm-misc
5613 F:      drivers/gpu/drm/tiny/cirrus.c
5614
5615 DRM DRIVER FOR QXL VIRTUAL GPU
5616 M:      Dave Airlie <airlied@redhat.com>
5617 M:      Gerd Hoffmann <kraxel@redhat.com>
5618 L:      virtualization@lists.linux-foundation.org
5619 L:      spice-devel@lists.freedesktop.org
5620 S:      Maintained
5621 T:      git git://anongit.freedesktop.org/drm/drm-misc
5622 F:      drivers/gpu/drm/qxl/
5623 F:      include/uapi/drm/qxl_drm.h
5624
5625 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5626 S:      Orphan / Obsolete
5627 F:      drivers/gpu/drm/r128/
5628 F:      include/uapi/drm/r128_drm.h
5629
5630 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5631 M:      Robert Chiras <robert.chiras@nxp.com>
5632 S:      Maintained
5633 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
5634 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5635
5636 DRM DRIVER FOR SITRONIX ST7703 PANELS
5637 M:      Guido Günther <agx@sigxcpu.org>
5638 R:      Purism Kernel Team <kernel@puri.sm>
5639 R:      Ondrej Jirman <megous@megous.com>
5640 S:      Maintained
5641 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
5642 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
5643
5644 DRM DRIVER FOR SAVAGE VIDEO CARDS
5645 S:      Orphan / Obsolete
5646 F:      drivers/gpu/drm/savage/
5647 F:      include/uapi/drm/savage_drm.h
5648
5649 DRM DRIVER FOR SIS VIDEO CARDS
5650 S:      Orphan / Obsolete
5651 F:      drivers/gpu/drm/sis/
5652 F:      include/uapi/drm/sis_drm.h
5653
5654 DRM DRIVER FOR SITRONIX ST7586 PANELS
5655 M:      David Lechner <david@lechnology.com>
5656 S:      Maintained
5657 T:      git git://anongit.freedesktop.org/drm/drm-misc
5658 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5659 F:      drivers/gpu/drm/tiny/st7586.c
5660
5661 DRM DRIVER FOR SITRONIX ST7701 PANELS
5662 M:      Jagan Teki <jagan@amarulasolutions.com>
5663 S:      Maintained
5664 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5665 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5666
5667 DRM DRIVER FOR SITRONIX ST7735R PANELS
5668 M:      David Lechner <david@lechnology.com>
5669 S:      Maintained
5670 T:      git git://anongit.freedesktop.org/drm/drm-misc
5671 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5672 F:      drivers/gpu/drm/tiny/st7735r.c
5673
5674 DRM DRIVER FOR SONY ACX424AKP PANELS
5675 M:      Linus Walleij <linus.walleij@linaro.org>
5676 S:      Maintained
5677 T:      git git://anongit.freedesktop.org/drm/drm-misc
5678 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5679
5680 DRM DRIVER FOR ST-ERICSSON MCDE
5681 M:      Linus Walleij <linus.walleij@linaro.org>
5682 S:      Maintained
5683 T:      git git://anongit.freedesktop.org/drm/drm-misc
5684 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5685 F:      drivers/gpu/drm/mcde/
5686
5687 DRM DRIVER FOR TDFX VIDEO CARDS
5688 S:      Orphan / Obsolete
5689 F:      drivers/gpu/drm/tdfx/
5690
5691 DRM DRIVER FOR TPO TPG110 PANELS
5692 M:      Linus Walleij <linus.walleij@linaro.org>
5693 S:      Maintained
5694 T:      git git://anongit.freedesktop.org/drm/drm-misc
5695 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5696 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5697
5698 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5699 M:      Dave Airlie <airlied@redhat.com>
5700 R:      Sean Paul <sean@poorly.run>
5701 R:      Thomas Zimmermann <tzimmermann@suse.de>
5702 L:      dri-devel@lists.freedesktop.org
5703 S:      Supported
5704 T:      git git://anongit.freedesktop.org/drm/drm-misc
5705 F:      drivers/gpu/drm/udl/
5706
5707 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5708 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5709 M:      Melissa Wen <melissa.srw@gmail.com>
5710 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
5711 R:      Daniel Vetter <daniel@ffwll.ch>
5712 L:      dri-devel@lists.freedesktop.org
5713 S:      Maintained
5714 T:      git git://anongit.freedesktop.org/drm/drm-misc
5715 F:      Documentation/gpu/vkms.rst
5716 F:      drivers/gpu/drm/vkms/
5717
5718 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5719 M:      Hans de Goede <hdegoede@redhat.com>
5720 L:      dri-devel@lists.freedesktop.org
5721 S:      Maintained
5722 T:      git git://anongit.freedesktop.org/drm/drm-misc
5723 F:      drivers/gpu/drm/vboxvideo/
5724
5725 DRM DRIVER FOR VMWARE VIRTUAL GPU
5726 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5727 M:      Roland Scheidegger <sroland@vmware.com>
5728 L:      dri-devel@lists.freedesktop.org
5729 S:      Supported
5730 T:      git git://people.freedesktop.org/~sroland/linux
5731 F:      drivers/gpu/drm/vmwgfx/
5732 F:      include/uapi/drm/vmwgfx_drm.h
5733
5734 DRM DRIVERS
5735 M:      David Airlie <airlied@linux.ie>
5736 M:      Daniel Vetter <daniel@ffwll.ch>
5737 L:      dri-devel@lists.freedesktop.org
5738 S:      Maintained
5739 B:      https://bugs.freedesktop.org/
5740 C:      irc://chat.freenode.net/dri-devel
5741 T:      git git://anongit.freedesktop.org/drm/drm
5742 F:      Documentation/devicetree/bindings/display/
5743 F:      Documentation/devicetree/bindings/gpu/
5744 F:      Documentation/gpu/
5745 F:      drivers/gpu/drm/
5746 F:      drivers/gpu/vga/
5747 F:      include/drm/
5748 F:      include/linux/vga*
5749 F:      include/uapi/drm/
5750
5751 DRM DRIVERS AND MISC GPU PATCHES
5752 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5753 M:      Maxime Ripard <mripard@kernel.org>
5754 M:      Thomas Zimmermann <tzimmermann@suse.de>
5755 S:      Maintained
5756 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5757 T:      git git://anongit.freedesktop.org/drm/drm-misc
5758 F:      Documentation/gpu/
5759 F:      drivers/gpu/drm/*
5760 F:      drivers/gpu/vga/
5761 F:      include/drm/drm*
5762 F:      include/linux/vga*
5763 F:      include/uapi/drm/drm*
5764
5765 DRM DRIVERS FOR ALLWINNER A10
5766 M:      Maxime Ripard <mripard@kernel.org>
5767 M:      Chen-Yu Tsai <wens@csie.org>
5768 L:      dri-devel@lists.freedesktop.org
5769 S:      Supported
5770 T:      git git://anongit.freedesktop.org/drm/drm-misc
5771 F:      Documentation/devicetree/bindings/display/allwinner*
5772 F:      drivers/gpu/drm/sun4i/
5773
5774 DRM DRIVERS FOR AMLOGIC SOCS
5775 M:      Neil Armstrong <narmstrong@baylibre.com>
5776 L:      dri-devel@lists.freedesktop.org
5777 L:      linux-amlogic@lists.infradead.org
5778 S:      Supported
5779 W:      http://linux-meson.com/
5780 T:      git git://anongit.freedesktop.org/drm/drm-misc
5781 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5782 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5783 F:      Documentation/gpu/meson.rst
5784 F:      drivers/gpu/drm/meson/
5785
5786 DRM DRIVERS FOR ATMEL HLCDC
5787 M:      Sam Ravnborg <sam@ravnborg.org>
5788 M:      Boris Brezillon <bbrezillon@kernel.org>
5789 L:      dri-devel@lists.freedesktop.org
5790 S:      Supported
5791 T:      git git://anongit.freedesktop.org/drm/drm-misc
5792 F:      Documentation/devicetree/bindings/display/atmel/
5793 F:      drivers/gpu/drm/atmel-hlcdc/
5794
5795 DRM DRIVERS FOR BRIDGE CHIPS
5796 M:      Andrzej Hajda <a.hajda@samsung.com>
5797 M:      Neil Armstrong <narmstrong@baylibre.com>
5798 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5799 R:      Jonas Karlman <jonas@kwiboo.se>
5800 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5801 S:      Maintained
5802 T:      git git://anongit.freedesktop.org/drm/drm-misc
5803 F:      drivers/gpu/drm/bridge/
5804
5805 DRM DRIVERS FOR EXYNOS
5806 M:      Inki Dae <inki.dae@samsung.com>
5807 M:      Joonyoung Shim <jy0922.shim@samsung.com>
5808 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
5809 M:      Kyungmin Park <kyungmin.park@samsung.com>
5810 L:      dri-devel@lists.freedesktop.org
5811 S:      Supported
5812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5813 F:      Documentation/devicetree/bindings/display/exynos/
5814 F:      drivers/gpu/drm/exynos/
5815 F:      include/uapi/drm/exynos_drm.h
5816
5817 DRM DRIVERS FOR FREESCALE DCU
5818 M:      Stefan Agner <stefan@agner.ch>
5819 M:      Alison Wang <alison.wang@nxp.com>
5820 L:      dri-devel@lists.freedesktop.org
5821 S:      Supported
5822 T:      git git://anongit.freedesktop.org/drm/drm-misc
5823 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5824 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5825 F:      drivers/gpu/drm/fsl-dcu/
5826
5827 DRM DRIVERS FOR FREESCALE IMX
5828 M:      Philipp Zabel <p.zabel@pengutronix.de>
5829 L:      dri-devel@lists.freedesktop.org
5830 S:      Maintained
5831 F:      Documentation/devicetree/bindings/display/imx/
5832 F:      drivers/gpu/drm/imx/
5833 F:      drivers/gpu/ipu-v3/
5834
5835 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5836 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5837 L:      dri-devel@lists.freedesktop.org
5838 S:      Maintained
5839 T:      git git://github.com/patjak/drm-gma500
5840 F:      drivers/gpu/drm/gma500/
5841
5842 DRM DRIVERS FOR HISILICON
5843 M:      Xinliang Liu <xinliang.liu@linaro.org>
5844 M:      Tian Tao  <tiantao6@hisilicon.com>
5845 R:      John Stultz <john.stultz@linaro.org>
5846 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
5847 R:      Chen Feng <puck.chen@hisilicon.com>
5848 L:      dri-devel@lists.freedesktop.org
5849 S:      Maintained
5850 T:      git git://anongit.freedesktop.org/drm/drm-misc
5851 F:      Documentation/devicetree/bindings/display/hisilicon/
5852 F:      drivers/gpu/drm/hisilicon/
5853
5854 DRM DRIVERS FOR LIMA
5855 M:      Qiang Yu <yuq825@gmail.com>
5856 L:      dri-devel@lists.freedesktop.org
5857 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
5858 S:      Maintained
5859 T:      git git://anongit.freedesktop.org/drm/drm-misc
5860 F:      drivers/gpu/drm/lima/
5861 F:      include/uapi/drm/lima_drm.h
5862
5863 DRM DRIVERS FOR MEDIATEK
5864 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
5865 M:      Philipp Zabel <p.zabel@pengutronix.de>
5866 L:      dri-devel@lists.freedesktop.org
5867 S:      Supported
5868 F:      Documentation/devicetree/bindings/display/mediatek/
5869 F:      drivers/gpu/drm/mediatek/
5870 F:      drivers/phy/mediatek/phy-mtk-hdmi*
5871
5872 DRM DRIVERS FOR NVIDIA TEGRA
5873 M:      Thierry Reding <thierry.reding@gmail.com>
5874 L:      dri-devel@lists.freedesktop.org
5875 L:      linux-tegra@vger.kernel.org
5876 S:      Supported
5877 T:      git git://anongit.freedesktop.org/tegra/linux.git
5878 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5879 F:      drivers/gpu/drm/tegra/
5880 F:      drivers/gpu/host1x/
5881 F:      include/linux/host1x.h
5882 F:      include/uapi/drm/tegra_drm.h
5883
5884 DRM DRIVERS FOR RENESAS
5885 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5886 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5887 L:      dri-devel@lists.freedesktop.org
5888 L:      linux-renesas-soc@vger.kernel.org
5889 S:      Supported
5890 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5891 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5892 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
5893 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5894 F:      drivers/gpu/drm/rcar-du/
5895 F:      drivers/gpu/drm/shmobile/
5896 F:      include/linux/platform_data/shmob_drm.h
5897
5898 DRM DRIVERS FOR ROCKCHIP
5899 M:      Sandy Huang <hjc@rock-chips.com>
5900 M:      Heiko Stübner <heiko@sntech.de>
5901 L:      dri-devel@lists.freedesktop.org
5902 S:      Maintained
5903 T:      git git://anongit.freedesktop.org/drm/drm-misc
5904 F:      Documentation/devicetree/bindings/display/rockchip/
5905 F:      drivers/gpu/drm/rockchip/
5906
5907 DRM DRIVERS FOR STI
5908 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5909 M:      Vincent Abriou <vincent.abriou@st.com>
5910 L:      dri-devel@lists.freedesktop.org
5911 S:      Maintained
5912 T:      git git://anongit.freedesktop.org/drm/drm-misc
5913 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5914 F:      drivers/gpu/drm/sti
5915
5916 DRM DRIVERS FOR STM
5917 M:      Yannick Fertre <yannick.fertre@st.com>
5918 M:      Philippe Cornu <philippe.cornu@st.com>
5919 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5920 M:      Vincent Abriou <vincent.abriou@st.com>
5921 L:      dri-devel@lists.freedesktop.org
5922 S:      Maintained
5923 T:      git git://anongit.freedesktop.org/drm/drm-misc
5924 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5925 F:      drivers/gpu/drm/stm
5926
5927 DRM DRIVERS FOR TI KEYSTONE
5928 M:      Jyri Sarha <jsarha@ti.com>
5929 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5930 L:      dri-devel@lists.freedesktop.org
5931 S:      Maintained
5932 T:      git git://anongit.freedesktop.org/drm/drm-misc
5933 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5934 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5935 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5936 F:      drivers/gpu/drm/tidss/
5937
5938 DRM DRIVERS FOR TI LCDC
5939 M:      Jyri Sarha <jsarha@ti.com>
5940 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5941 L:      dri-devel@lists.freedesktop.org
5942 S:      Maintained
5943 F:      Documentation/devicetree/bindings/display/tilcdc/
5944 F:      drivers/gpu/drm/tilcdc/
5945
5946 DRM DRIVERS FOR TI OMAP
5947 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5948 L:      dri-devel@lists.freedesktop.org
5949 S:      Maintained
5950 F:      Documentation/devicetree/bindings/display/ti/
5951 F:      drivers/gpu/drm/omapdrm/
5952
5953 DRM DRIVERS FOR V3D
5954 M:      Eric Anholt <eric@anholt.net>
5955 S:      Supported
5956 T:      git git://anongit.freedesktop.org/drm/drm-misc
5957 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5958 F:      drivers/gpu/drm/v3d/
5959 F:      include/uapi/drm/v3d_drm.h
5960
5961 DRM DRIVERS FOR VC4
5962 M:      Eric Anholt <eric@anholt.net>
5963 S:      Supported
5964 T:      git git://github.com/anholt/linux
5965 T:      git git://anongit.freedesktop.org/drm/drm-misc
5966 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
5967 F:      drivers/gpu/drm/vc4/
5968 F:      include/uapi/drm/vc4_drm.h
5969
5970 DRM DRIVERS FOR VIVANTE GPU IP
5971 M:      Lucas Stach <l.stach@pengutronix.de>
5972 R:      Russell King <linux+etnaviv@armlinux.org.uk>
5973 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
5974 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
5975 L:      dri-devel@lists.freedesktop.org
5976 S:      Maintained
5977 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
5978 F:      drivers/gpu/drm/etnaviv/
5979 F:      include/uapi/drm/etnaviv_drm.h
5980
5981 DRM DRIVERS FOR XEN
5982 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
5983 L:      dri-devel@lists.freedesktop.org
5984 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
5985 S:      Supported
5986 T:      git git://anongit.freedesktop.org/drm/drm-misc
5987 F:      Documentation/gpu/xen-front.rst
5988 F:      drivers/gpu/drm/xen/
5989
5990 DRM DRIVERS FOR XILINX
5991 M:      Hyun Kwon <hyun.kwon@xilinx.com>
5992 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5993 L:      dri-devel@lists.freedesktop.org
5994 S:      Maintained
5995 T:      git git://anongit.freedesktop.org/drm/drm-misc
5996 F:      Documentation/devicetree/bindings/display/xlnx/
5997 F:      drivers/gpu/drm/xlnx/
5998
5999 DRM DRIVERS FOR ZTE ZX
6000 M:      Shawn Guo <shawnguo@kernel.org>
6001 L:      dri-devel@lists.freedesktop.org
6002 S:      Maintained
6003 T:      git git://anongit.freedesktop.org/drm/drm-misc
6004 F:      Documentation/devicetree/bindings/display/zte,vou.txt
6005 F:      drivers/gpu/drm/zte/
6006
6007 DRM PANEL DRIVERS
6008 M:      Thierry Reding <thierry.reding@gmail.com>
6009 R:      Sam Ravnborg <sam@ravnborg.org>
6010 L:      dri-devel@lists.freedesktop.org
6011 S:      Maintained
6012 T:      git git://anongit.freedesktop.org/drm/drm-misc
6013 F:      Documentation/devicetree/bindings/display/panel/
6014 F:      drivers/gpu/drm/drm_panel.c
6015 F:      drivers/gpu/drm/panel/
6016 F:      include/drm/drm_panel.h
6017
6018 DRM TTM SUBSYSTEM
6019 M:      Christian Koenig <christian.koenig@amd.com>
6020 M:      Huang Rui <ray.huang@amd.com>
6021 L:      dri-devel@lists.freedesktop.org
6022 S:      Maintained
6023 T:      git git://people.freedesktop.org/~agd5f/linux
6024 F:      drivers/gpu/drm/ttm/
6025 F:      include/drm/ttm/
6026
6027 DSBR100 USB FM RADIO DRIVER
6028 M:      Alexey Klimov <klimov.linux@gmail.com>
6029 L:      linux-media@vger.kernel.org
6030 S:      Maintained
6031 T:      git git://linuxtv.org/media_tree.git
6032 F:      drivers/media/radio/dsbr100.c
6033
6034 DT3155 MEDIA DRIVER
6035 M:      Hans Verkuil <hverkuil@xs4all.nl>
6036 L:      linux-media@vger.kernel.org
6037 S:      Odd Fixes
6038 W:      https://linuxtv.org
6039 T:      git git://linuxtv.org/media_tree.git
6040 F:      drivers/media/pci/dt3155/
6041
6042 DVB_USB_AF9015 MEDIA DRIVER
6043 M:      Antti Palosaari <crope@iki.fi>
6044 L:      linux-media@vger.kernel.org
6045 S:      Maintained
6046 W:      https://linuxtv.org
6047 W:      http://palosaari.fi/linux/
6048 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6049 T:      git git://linuxtv.org/anttip/media_tree.git
6050 F:      drivers/media/usb/dvb-usb-v2/af9015*
6051
6052 DVB_USB_AF9035 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/usb/dvb-usb-v2/af9035*
6061
6062 DVB_USB_ANYSEE MEDIA DRIVER
6063 M:      Antti Palosaari <crope@iki.fi>
6064 L:      linux-media@vger.kernel.org
6065 S:      Maintained
6066 W:      https://linuxtv.org
6067 W:      http://palosaari.fi/linux/
6068 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6069 T:      git git://linuxtv.org/anttip/media_tree.git
6070 F:      drivers/media/usb/dvb-usb-v2/anysee*
6071
6072 DVB_USB_AU6610 MEDIA DRIVER
6073 M:      Antti Palosaari <crope@iki.fi>
6074 L:      linux-media@vger.kernel.org
6075 S:      Maintained
6076 W:      https://linuxtv.org
6077 W:      http://palosaari.fi/linux/
6078 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6079 T:      git git://linuxtv.org/anttip/media_tree.git
6080 F:      drivers/media/usb/dvb-usb-v2/au6610*
6081
6082 DVB_USB_CE6230 MEDIA DRIVER
6083 M:      Antti Palosaari <crope@iki.fi>
6084 L:      linux-media@vger.kernel.org
6085 S:      Maintained
6086 W:      https://linuxtv.org
6087 W:      http://palosaari.fi/linux/
6088 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6089 T:      git git://linuxtv.org/anttip/media_tree.git
6090 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6091
6092 DVB_USB_CXUSB MEDIA DRIVER
6093 M:      Michael Krufky <mkrufky@linuxtv.org>
6094 L:      linux-media@vger.kernel.org
6095 S:      Maintained
6096 W:      https://linuxtv.org
6097 W:      http://github.com/mkrufky
6098 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6099 T:      git git://linuxtv.org/media_tree.git
6100 F:      drivers/media/usb/dvb-usb/cxusb*
6101
6102 DVB_USB_EC168 MEDIA DRIVER
6103 M:      Antti Palosaari <crope@iki.fi>
6104 L:      linux-media@vger.kernel.org
6105 S:      Maintained
6106 W:      https://linuxtv.org
6107 W:      http://palosaari.fi/linux/
6108 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6109 T:      git git://linuxtv.org/anttip/media_tree.git
6110 F:      drivers/media/usb/dvb-usb-v2/ec168*
6111
6112 DVB_USB_GL861 MEDIA DRIVER
6113 M:      Antti Palosaari <crope@iki.fi>
6114 L:      linux-media@vger.kernel.org
6115 S:      Maintained
6116 W:      https://linuxtv.org
6117 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6118 T:      git git://linuxtv.org/anttip/media_tree.git
6119 F:      drivers/media/usb/dvb-usb-v2/gl861*
6120
6121 DVB_USB_MXL111SF MEDIA DRIVER
6122 M:      Michael Krufky <mkrufky@linuxtv.org>
6123 L:      linux-media@vger.kernel.org
6124 S:      Maintained
6125 W:      https://linuxtv.org
6126 W:      http://github.com/mkrufky
6127 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6128 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6129 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6130
6131 DVB_USB_RTL28XXU MEDIA DRIVER
6132 M:      Antti Palosaari <crope@iki.fi>
6133 L:      linux-media@vger.kernel.org
6134 S:      Maintained
6135 W:      https://linuxtv.org
6136 W:      http://palosaari.fi/linux/
6137 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6138 T:      git git://linuxtv.org/anttip/media_tree.git
6139 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6140
6141 DVB_USB_V2 MEDIA DRIVER
6142 M:      Antti Palosaari <crope@iki.fi>
6143 L:      linux-media@vger.kernel.org
6144 S:      Maintained
6145 W:      https://linuxtv.org
6146 W:      http://palosaari.fi/linux/
6147 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6148 T:      git git://linuxtv.org/anttip/media_tree.git
6149 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6150 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6151
6152 DYNAMIC DEBUG
6153 M:      Jason Baron <jbaron@akamai.com>
6154 S:      Maintained
6155 F:      include/linux/dynamic_debug.h
6156 F:      lib/dynamic_debug.c
6157
6158 DYNAMIC INTERRUPT MODERATION
6159 M:      Tal Gilboa <talgi@nvidia.com>
6160 S:      Maintained
6161 F:      Documentation/networking/net_dim.rst
6162 F:      include/linux/dim.h
6163 F:      lib/dim/
6164
6165 DZ DECSTATION DZ11 SERIAL DRIVER
6166 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
6167 S:      Maintained
6168 F:      drivers/tty/serial/dz.*
6169
6170 E3X0 POWER BUTTON DRIVER
6171 M:      Moritz Fischer <moritz.fischer@ettus.com>
6172 L:      usrp-users@lists.ettus.com
6173 S:      Supported
6174 W:      http://www.ettus.com
6175 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6176 F:      drivers/input/misc/e3x0-button.c
6177
6178 E4000 MEDIA DRIVER
6179 M:      Antti Palosaari <crope@iki.fi>
6180 L:      linux-media@vger.kernel.org
6181 S:      Maintained
6182 W:      https://linuxtv.org
6183 W:      http://palosaari.fi/linux/
6184 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6185 T:      git git://linuxtv.org/anttip/media_tree.git
6186 F:      drivers/media/tuners/e4000*
6187
6188 EARTH_PT1 MEDIA DRIVER
6189 M:      Akihiro Tsukada <tskd08@gmail.com>
6190 L:      linux-media@vger.kernel.org
6191 S:      Odd Fixes
6192 F:      drivers/media/pci/pt1/
6193
6194 EARTH_PT3 MEDIA DRIVER
6195 M:      Akihiro Tsukada <tskd08@gmail.com>
6196 L:      linux-media@vger.kernel.org
6197 S:      Odd Fixes
6198 F:      drivers/media/pci/pt3/
6199
6200 EC100 MEDIA DRIVER
6201 M:      Antti Palosaari <crope@iki.fi>
6202 L:      linux-media@vger.kernel.org
6203 S:      Maintained
6204 W:      https://linuxtv.org
6205 W:      http://palosaari.fi/linux/
6206 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6207 T:      git git://linuxtv.org/anttip/media_tree.git
6208 F:      drivers/media/dvb-frontends/ec100*
6209
6210 ECRYPT FILE SYSTEM
6211 M:      Tyler Hicks <code@tyhicks.com>
6212 L:      ecryptfs@vger.kernel.org
6213 S:      Odd Fixes
6214 W:      http://ecryptfs.org
6215 W:      https://launchpad.net/ecryptfs
6216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6217 F:      Documentation/filesystems/ecryptfs.rst
6218 F:      fs/ecryptfs/
6219
6220 EDAC-AMD64
6221 M:      Borislav Petkov <bp@alien8.de>
6222 L:      linux-edac@vger.kernel.org
6223 S:      Maintained
6224 F:      drivers/edac/amd64_edac*
6225
6226 EDAC-ARMADA
6227 M:      Jan Luebbe <jlu@pengutronix.de>
6228 L:      linux-edac@vger.kernel.org
6229 S:      Maintained
6230 F:      drivers/edac/armada_xp_*
6231
6232 EDAC-AST2500
6233 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6234 S:      Supported
6235 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6236 F:      drivers/edac/aspeed_edac.c
6237
6238 EDAC-BLUEFIELD
6239 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6240 S:      Supported
6241 F:      drivers/edac/bluefield_edac.c
6242
6243 EDAC-CALXEDA
6244 M:      Andre Przywara <andre.przywara@arm.com>
6245 L:      linux-edac@vger.kernel.org
6246 S:      Maintained
6247 F:      drivers/edac/highbank*
6248
6249 EDAC-CAVIUM OCTEON
6250 M:      Ralf Baechle <ralf@linux-mips.org>
6251 L:      linux-edac@vger.kernel.org
6252 L:      linux-mips@vger.kernel.org
6253 S:      Supported
6254 F:      drivers/edac/octeon_edac*
6255
6256 EDAC-CAVIUM THUNDERX
6257 M:      Robert Richter <rric@kernel.org>
6258 L:      linux-edac@vger.kernel.org
6259 S:      Odd Fixes
6260 F:      drivers/edac/thunderx_edac*
6261
6262 EDAC-CORE
6263 M:      Borislav Petkov <bp@alien8.de>
6264 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6265 M:      Tony Luck <tony.luck@intel.com>
6266 R:      James Morse <james.morse@arm.com>
6267 R:      Robert Richter <rric@kernel.org>
6268 L:      linux-edac@vger.kernel.org
6269 S:      Supported
6270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6271 F:      Documentation/admin-guide/ras.rst
6272 F:      Documentation/driver-api/edac.rst
6273 F:      drivers/edac/
6274 F:      include/linux/edac.h
6275
6276 EDAC-DMC520
6277 M:      Lei Wang <lewan@microsoft.com>
6278 L:      linux-edac@vger.kernel.org
6279 S:      Supported
6280 F:      drivers/edac/dmc520_edac.c
6281
6282 EDAC-E752X
6283 M:      Mark Gross <mark.gross@intel.com>
6284 L:      linux-edac@vger.kernel.org
6285 S:      Maintained
6286 F:      drivers/edac/e752x_edac.c
6287
6288 EDAC-E7XXX
6289 L:      linux-edac@vger.kernel.org
6290 S:      Maintained
6291 F:      drivers/edac/e7xxx_edac.c
6292
6293 EDAC-FSL_DDR
6294 M:      York Sun <york.sun@nxp.com>
6295 L:      linux-edac@vger.kernel.org
6296 S:      Maintained
6297 F:      drivers/edac/fsl_ddr_edac.*
6298
6299 EDAC-GHES
6300 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6301 L:      linux-edac@vger.kernel.org
6302 S:      Maintained
6303 F:      drivers/edac/ghes_edac.c
6304
6305 EDAC-I10NM
6306 M:      Tony Luck <tony.luck@intel.com>
6307 L:      linux-edac@vger.kernel.org
6308 S:      Maintained
6309 F:      drivers/edac/i10nm_base.c
6310
6311 EDAC-I3000
6312 L:      linux-edac@vger.kernel.org
6313 S:      Orphan
6314 F:      drivers/edac/i3000_edac.c
6315
6316 EDAC-I5000
6317 L:      linux-edac@vger.kernel.org
6318 S:      Maintained
6319 F:      drivers/edac/i5000_edac.c
6320
6321 EDAC-I5400
6322 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6323 L:      linux-edac@vger.kernel.org
6324 S:      Maintained
6325 F:      drivers/edac/i5400_edac.c
6326
6327 EDAC-I7300
6328 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6329 L:      linux-edac@vger.kernel.org
6330 S:      Maintained
6331 F:      drivers/edac/i7300_edac.c
6332
6333 EDAC-I7CORE
6334 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6335 L:      linux-edac@vger.kernel.org
6336 S:      Maintained
6337 F:      drivers/edac/i7core_edac.c
6338
6339 EDAC-I82443BXGX
6340 M:      Tim Small <tim@buttersideup.com>
6341 L:      linux-edac@vger.kernel.org
6342 S:      Maintained
6343 F:      drivers/edac/i82443bxgx_edac.c
6344
6345 EDAC-I82975X
6346 M:      "Arvind R." <arvino55@gmail.com>
6347 L:      linux-edac@vger.kernel.org
6348 S:      Maintained
6349 F:      drivers/edac/i82975x_edac.c
6350
6351 EDAC-IE31200
6352 M:      Jason Baron <jbaron@akamai.com>
6353 L:      linux-edac@vger.kernel.org
6354 S:      Maintained
6355 F:      drivers/edac/ie31200_edac.c
6356
6357 EDAC-MPC85XX
6358 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6359 L:      linux-edac@vger.kernel.org
6360 S:      Maintained
6361 F:      drivers/edac/mpc85xx_edac.[ch]
6362
6363 EDAC-PASEMI
6364 M:      Egor Martovetsky <egor@pasemi.com>
6365 L:      linux-edac@vger.kernel.org
6366 S:      Maintained
6367 F:      drivers/edac/pasemi_edac.c
6368
6369 EDAC-PND2
6370 M:      Tony Luck <tony.luck@intel.com>
6371 L:      linux-edac@vger.kernel.org
6372 S:      Maintained
6373 F:      drivers/edac/pnd2_edac.[ch]
6374
6375 EDAC-QCOM
6376 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6377 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6378 L:      linux-arm-msm@vger.kernel.org
6379 L:      linux-edac@vger.kernel.org
6380 S:      Maintained
6381 F:      drivers/edac/qcom_edac.c
6382
6383 EDAC-R82600
6384 M:      Tim Small <tim@buttersideup.com>
6385 L:      linux-edac@vger.kernel.org
6386 S:      Maintained
6387 F:      drivers/edac/r82600_edac.c
6388
6389 EDAC-SBRIDGE
6390 M:      Tony Luck <tony.luck@intel.com>
6391 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6392 L:      linux-edac@vger.kernel.org
6393 S:      Maintained
6394 F:      drivers/edac/sb_edac.c
6395
6396 EDAC-SIFIVE
6397 M:      Yash Shah <yash.shah@sifive.com>
6398 L:      linux-edac@vger.kernel.org
6399 S:      Supported
6400 F:      drivers/edac/sifive_edac.c
6401
6402 EDAC-SKYLAKE
6403 M:      Tony Luck <tony.luck@intel.com>
6404 L:      linux-edac@vger.kernel.org
6405 S:      Maintained
6406 F:      drivers/edac/skx_*.c
6407
6408 EDAC-TI
6409 M:      Tero Kristo <t-kristo@ti.com>
6410 L:      linux-edac@vger.kernel.org
6411 S:      Maintained
6412 F:      drivers/edac/ti_edac.c
6413
6414 EDIROL UA-101/UA-1000 DRIVER
6415 M:      Clemens Ladisch <clemens@ladisch.de>
6416 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6417 S:      Maintained
6418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6419 F:      sound/usb/misc/ua101.c
6420
6421 EFI TEST DRIVER
6422 M:      Ivan Hu <ivan.hu@canonical.com>
6423 M:      Ard Biesheuvel <ardb@kernel.org>
6424 L:      linux-efi@vger.kernel.org
6425 S:      Maintained
6426 F:      drivers/firmware/efi/test/
6427
6428 EFI VARIABLE FILESYSTEM
6429 M:      Matthew Garrett <matthew.garrett@nebula.com>
6430 M:      Jeremy Kerr <jk@ozlabs.org>
6431 M:      Ard Biesheuvel <ardb@kernel.org>
6432 L:      linux-efi@vger.kernel.org
6433 S:      Maintained
6434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6435 F:      fs/efivarfs/
6436
6437 EFIFB FRAMEBUFFER DRIVER
6438 M:      Peter Jones <pjones@redhat.com>
6439 L:      linux-fbdev@vger.kernel.org
6440 S:      Maintained
6441 F:      drivers/video/fbdev/efifb.c
6442
6443 EFS FILESYSTEM
6444 S:      Orphan
6445 W:      http://aeschi.ch.eu.org/efs/
6446 F:      fs/efs/
6447
6448 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6449 M:      Douglas Miller <dougmill@linux.ibm.com>
6450 L:      netdev@vger.kernel.org
6451 S:      Maintained
6452 F:      drivers/net/ethernet/ibm/ehea/
6453
6454 EM28XX VIDEO4LINUX DRIVER
6455 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6456 L:      linux-media@vger.kernel.org
6457 S:      Maintained
6458 W:      https://linuxtv.org
6459 T:      git git://linuxtv.org/media_tree.git
6460 F:      Documentation/admin-guide/media/em28xx*
6461 F:      drivers/media/usb/em28xx/
6462
6463 EMBEDDED LINUX
6464 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6465 M:      Matt Mackall <mpm@selenic.com>
6466 M:      David Woodhouse <dwmw2@infradead.org>
6467 L:      linux-embedded@vger.kernel.org
6468 S:      Maintained
6469
6470 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6471 M:      Adrian Hunter <adrian.hunter@intel.com>
6472 M:      Ritesh Harjani <riteshh@codeaurora.org>
6473 M:      Asutosh Das <asutoshd@codeaurora.org>
6474 L:      linux-mmc@vger.kernel.org
6475 S:      Maintained
6476 F:      drivers/mmc/host/cqhci*
6477
6478 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6479 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6480 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6481 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6482 L:      linux-scsi@vger.kernel.org
6483 S:      Supported
6484 W:      http://www.broadcom.com
6485 F:      drivers/scsi/be2iscsi/
6486
6487 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6488 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6489 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6490 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6491 L:      netdev@vger.kernel.org
6492 S:      Supported
6493 W:      http://www.emulex.com
6494 F:      drivers/net/ethernet/emulex/benet/
6495
6496 EMULEX ONECONNECT ROCE DRIVER
6497 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6498 M:      Devesh Sharma <devesh.sharma@broadcom.com>
6499 L:      linux-rdma@vger.kernel.org
6500 S:      Odd Fixes
6501 W:      http://www.broadcom.com
6502 F:      drivers/infiniband/hw/ocrdma/
6503 F:      include/uapi/rdma/ocrdma-abi.h
6504
6505 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6506 M:      James Smart <james.smart@broadcom.com>
6507 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6508 L:      linux-scsi@vger.kernel.org
6509 S:      Supported
6510 W:      http://www.broadcom.com
6511 F:      drivers/scsi/lpfc/
6512
6513 ENE CB710 FLASH CARD READER DRIVER
6514 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6515 S:      Maintained
6516 F:      drivers/misc/cb710/
6517 F:      drivers/mmc/host/cb710-mmc.*
6518 F:      include/linux/cb710.h
6519
6520 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6521 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6522 S:      Maintained
6523 F:      drivers/media/rc/ene_ir.*
6524
6525 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6526 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6527 L:      linuxppc-dev@lists.ozlabs.org
6528 S:      Maintained
6529 F:      drivers/tty/ehv_bytechan.c
6530
6531 EPSON S1D13XXX FRAMEBUFFER DRIVER
6532 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6533 S:      Maintained
6534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6535 F:      drivers/video/fbdev/s1d13xxxfb.c
6536 F:      include/video/s1d13xxxfb.h
6537
6538 EROFS FILE SYSTEM
6539 M:      Gao Xiang <xiang@kernel.org>
6540 M:      Chao Yu <yuchao0@huawei.com>
6541 L:      linux-erofs@lists.ozlabs.org
6542 S:      Maintained
6543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6544 F:      Documentation/filesystems/erofs.rst
6545 F:      fs/erofs/
6546 F:      include/trace/events/erofs.h
6547
6548 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6549 M:      Jeff Layton <jlayton@kernel.org>
6550 S:      Maintained
6551 F:      include/linux/errseq.h
6552 F:      lib/errseq.c
6553
6554 ET131X NETWORK DRIVER
6555 M:      Mark Einon <mark.einon@gmail.com>
6556 S:      Odd Fixes
6557 F:      drivers/net/ethernet/agere/
6558
6559 ETHERNET BRIDGE
6560 M:      Roopa Prabhu <roopa@nvidia.com>
6561 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
6562 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6563 L:      netdev@vger.kernel.org
6564 S:      Maintained
6565 W:      http://www.linuxfoundation.org/en/Net:Bridge
6566 F:      include/linux/netfilter_bridge/
6567 F:      net/bridge/
6568
6569 ETHERNET PHY LIBRARY
6570 M:      Andrew Lunn <andrew@lunn.ch>
6571 M:      Heiner Kallweit <hkallweit1@gmail.com>
6572 R:      Russell King <linux@armlinux.org.uk>
6573 L:      netdev@vger.kernel.org
6574 S:      Maintained
6575 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6576 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6577 F:      Documentation/devicetree/bindings/net/mdio*
6578 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6579 F:      Documentation/networking/phy.rst
6580 F:      drivers/net/mdio/
6581 F:      drivers/net/mdio/of_mdio.c
6582 F:      drivers/net/pcs/
6583 F:      drivers/net/phy/
6584 F:      drivers/of/of_net.c
6585 F:      include/dt-bindings/net/qca-ar803x.h
6586 F:      include/linux/*mdio*.h
6587 F:      include/linux/mdio/*.h
6588 F:      include/linux/of_net.h
6589 F:      include/linux/phy.h
6590 F:      include/linux/phy_fixed.h
6591 F:      include/linux/platform_data/mdio-bcm-unimac.h
6592 F:      include/linux/platform_data/mdio-gpio.h
6593 F:      include/trace/events/mdio.h
6594 F:      include/uapi/linux/mdio.h
6595 F:      include/uapi/linux/mii.h
6596
6597 EXFAT FILE SYSTEM
6598 M:      Namjae Jeon <namjae.jeon@samsung.com>
6599 M:      Sungjong Seo <sj1557.seo@samsung.com>
6600 L:      linux-fsdevel@vger.kernel.org
6601 S:      Maintained
6602 F:      fs/exfat/
6603
6604 EXT2 FILE SYSTEM
6605 M:      Jan Kara <jack@suse.com>
6606 L:      linux-ext4@vger.kernel.org
6607 S:      Maintained
6608 F:      Documentation/filesystems/ext2.rst
6609 F:      fs/ext2/
6610 F:      include/linux/ext2*
6611
6612 EXT4 FILE SYSTEM
6613 M:      "Theodore Ts'o" <tytso@mit.edu>
6614 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6615 L:      linux-ext4@vger.kernel.org
6616 S:      Maintained
6617 W:      http://ext4.wiki.kernel.org
6618 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6620 F:      Documentation/filesystems/ext4/
6621 F:      fs/ext4/
6622
6623 Extended Verification Module (EVM)
6624 M:      Mimi Zohar <zohar@linux.ibm.com>
6625 L:      linux-integrity@vger.kernel.org
6626 S:      Supported
6627 F:      security/integrity/evm/
6628
6629 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6630 M:      Ard Biesheuvel <ardb@kernel.org>
6631 L:      linux-efi@vger.kernel.org
6632 S:      Maintained
6633 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6634 F:      Documentation/admin-guide/efi-stub.rst
6635 F:      arch/*/include/asm/efi.h
6636 F:      arch/*/kernel/efi.c
6637 F:      arch/arm/boot/compressed/efi-header.S
6638 F:      arch/arm64/kernel/efi-entry.S
6639 F:      arch/x86/platform/efi/
6640 F:      drivers/firmware/efi/
6641 F:      include/linux/efi*.h
6642
6643 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6644 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6645 M:      Chanwoo Choi <cw00.choi@samsung.com>
6646 L:      linux-kernel@vger.kernel.org
6647 S:      Maintained
6648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6649 F:      Documentation/devicetree/bindings/extcon/
6650 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6651 F:      drivers/extcon/
6652 F:      include/linux/extcon.h
6653 F:      include/linux/extcon/
6654
6655 EXTRA BOOT CONFIG
6656 M:      Masami Hiramatsu <mhiramat@kernel.org>
6657 S:      Maintained
6658 F:      Documentation/admin-guide/bootconfig.rst
6659 F:      fs/proc/bootconfig.c
6660 F:      include/linux/bootconfig.h
6661 F:      lib/bootconfig.c
6662 F:      tools/bootconfig/*
6663 F:      tools/bootconfig/scripts/*
6664
6665 EXYNOS DP DRIVER
6666 M:      Jingoo Han <jingoohan1@gmail.com>
6667 L:      dri-devel@lists.freedesktop.org
6668 S:      Maintained
6669 F:      drivers/gpu/drm/exynos/exynos_dp*
6670
6671 EXYNOS SYSMMU (IOMMU) driver
6672 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6673 L:      iommu@lists.linux-foundation.org
6674 S:      Maintained
6675 F:      drivers/iommu/exynos-iommu.c
6676
6677 F2FS FILE SYSTEM
6678 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6679 M:      Chao Yu <yuchao0@huawei.com>
6680 L:      linux-f2fs-devel@lists.sourceforge.net
6681 S:      Maintained
6682 W:      https://f2fs.wiki.kernel.org/
6683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6684 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6685 F:      Documentation/filesystems/f2fs.rst
6686 F:      fs/f2fs/
6687 F:      include/linux/f2fs_fs.h
6688 F:      include/trace/events/f2fs.h
6689
6690 F71805F HARDWARE MONITORING DRIVER
6691 M:      Jean Delvare <jdelvare@suse.com>
6692 L:      linux-hwmon@vger.kernel.org
6693 S:      Maintained
6694 F:      Documentation/hwmon/f71805f.rst
6695 F:      drivers/hwmon/f71805f.c
6696
6697 FADDR2LINE
6698 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6699 S:      Maintained
6700 F:      scripts/faddr2line
6701
6702 FAILOVER MODULE
6703 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
6704 L:      netdev@vger.kernel.org
6705 S:      Supported
6706 F:      Documentation/networking/failover.rst
6707 F:      include/net/failover.h
6708 F:      net/core/failover.c
6709
6710 FANOTIFY
6711 M:      Jan Kara <jack@suse.cz>
6712 R:      Amir Goldstein <amir73il@gmail.com>
6713 L:      linux-fsdevel@vger.kernel.org
6714 S:      Maintained
6715 F:      fs/notify/fanotify/
6716 F:      include/linux/fanotify.h
6717 F:      include/uapi/linux/fanotify.h
6718
6719 FARSYNC SYNCHRONOUS DRIVER
6720 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
6721 S:      Supported
6722 W:      http://www.farsite.co.uk/
6723 F:      drivers/net/wan/farsync.*
6724
6725 FAULT INJECTION SUPPORT
6726 M:      Akinobu Mita <akinobu.mita@gmail.com>
6727 S:      Supported
6728 F:      Documentation/fault-injection/
6729 F:      lib/fault-inject.c
6730
6731 FBTFT Framebuffer drivers
6732 L:      dri-devel@lists.freedesktop.org
6733 L:      linux-fbdev@vger.kernel.org
6734 S:      Orphan
6735 F:      drivers/staging/fbtft/
6736
6737 FC0011 TUNER DRIVER
6738 M:      Michael Buesch <m@bues.ch>
6739 L:      linux-media@vger.kernel.org
6740 S:      Maintained
6741 F:      drivers/media/tuners/fc0011.c
6742 F:      drivers/media/tuners/fc0011.h
6743
6744 FC2580 MEDIA DRIVER
6745 M:      Antti Palosaari <crope@iki.fi>
6746 L:      linux-media@vger.kernel.org
6747 S:      Maintained
6748 W:      https://linuxtv.org
6749 W:      http://palosaari.fi/linux/
6750 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6751 T:      git git://linuxtv.org/anttip/media_tree.git
6752 F:      drivers/media/tuners/fc2580*
6753
6754 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6755 M:      Hannes Reinecke <hare@suse.de>
6756 L:      linux-scsi@vger.kernel.org
6757 S:      Supported
6758 W:      www.Open-FCoE.org
6759 F:      drivers/scsi/fcoe/
6760 F:      drivers/scsi/libfc/
6761 F:      include/scsi/fc/
6762 F:      include/scsi/libfc.h
6763 F:      include/scsi/libfcoe.h
6764 F:      include/uapi/scsi/fc/
6765
6766 FILE LOCKING (flock() and fcntl()/lockf())
6767 M:      Jeff Layton <jlayton@kernel.org>
6768 M:      "J. Bruce Fields" <bfields@fieldses.org>
6769 L:      linux-fsdevel@vger.kernel.org
6770 S:      Maintained
6771 F:      fs/fcntl.c
6772 F:      fs/locks.c
6773 F:      include/linux/fcntl.h
6774 F:      include/uapi/linux/fcntl.h
6775
6776 FILESYSTEM DIRECT ACCESS (DAX)
6777 M:      Dan Williams <dan.j.williams@intel.com>
6778 R:      Matthew Wilcox <willy@infradead.org>
6779 R:      Jan Kara <jack@suse.cz>
6780 L:      linux-fsdevel@vger.kernel.org
6781 L:      linux-nvdimm@lists.01.org
6782 S:      Supported
6783 F:      fs/dax.c
6784 F:      include/linux/dax.h
6785 F:      include/trace/events/fs_dax.h
6786
6787 FILESYSTEMS (VFS and infrastructure)
6788 M:      Alexander Viro <viro@zeniv.linux.org.uk>
6789 L:      linux-fsdevel@vger.kernel.org
6790 S:      Maintained
6791 F:      fs/*
6792 F:      include/linux/fs.h
6793 F:      include/linux/fs_types.h
6794 F:      include/uapi/linux/fs.h
6795 F:      include/uapi/linux/openat2.h
6796
6797 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6798 M:      Riku Voipio <riku.voipio@iki.fi>
6799 L:      linux-hwmon@vger.kernel.org
6800 S:      Maintained
6801 F:      drivers/hwmon/f75375s.c
6802 F:      include/linux/f75375s.h
6803
6804 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6805 M:      Clemens Ladisch <clemens@ladisch.de>
6806 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
6807 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6808 S:      Maintained
6809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6810 F:      include/uapi/sound/firewire.h
6811 F:      sound/firewire/
6812
6813 FIREWIRE MEDIA DRIVERS (firedtv)
6814 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6815 L:      linux-media@vger.kernel.org
6816 L:      linux1394-devel@lists.sourceforge.net
6817 S:      Maintained
6818 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6819 F:      drivers/media/firewire/
6820
6821 FIREWIRE SBP-2 TARGET
6822 M:      Chris Boot <bootc@bootc.net>
6823 L:      linux-scsi@vger.kernel.org
6824 L:      target-devel@vger.kernel.org
6825 L:      linux1394-devel@lists.sourceforge.net
6826 S:      Maintained
6827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6828 F:      drivers/target/sbp/
6829
6830 FIREWIRE SUBSYSTEM
6831 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6832 L:      linux1394-devel@lists.sourceforge.net
6833 S:      Maintained
6834 W:      http://ieee1394.wiki.kernel.org/
6835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6836 F:      drivers/firewire/
6837 F:      include/linux/firewire.h
6838 F:      include/uapi/linux/firewire*.h
6839 F:      tools/firewire/
6840
6841 FIRMWARE LOADER (request_firmware)
6842 M:      Luis Chamberlain <mcgrof@kernel.org>
6843 L:      linux-kernel@vger.kernel.org
6844 S:      Maintained
6845 F:      Documentation/firmware_class/
6846 F:      drivers/base/firmware_loader/
6847 F:      include/linux/firmware.h
6848
6849 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6850 M:      Joshua Morris <josh.h.morris@us.ibm.com>
6851 M:      Philip Kelleher <pjk1939@linux.ibm.com>
6852 S:      Maintained
6853 F:      drivers/block/rsxx/
6854
6855 FLEXTIMER FTM-QUADDEC DRIVER
6856 M:      Patrick Havelange <patrick.havelange@essensium.com>
6857 L:      linux-iio@vger.kernel.org
6858 S:      Maintained
6859 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6860 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6861 F:      drivers/counter/ftm-quaddec.c
6862
6863 FLOPPY DRIVER
6864 M:      Denis Efremov <efremov@linux.com>
6865 L:      linux-block@vger.kernel.org
6866 S:      Odd Fixes
6867 F:      drivers/block/floppy.c
6868
6869 FLYSKY FSIA6B RC RECEIVER
6870 M:      Markus Koch <markus@notsyncing.net>
6871 L:      linux-input@vger.kernel.org
6872 S:      Maintained
6873 F:      drivers/input/joystick/fsia6b.c
6874
6875 FORCEDETH GIGABIT ETHERNET DRIVER
6876 M:      Rain River <rain.1986.08.12@gmail.com>
6877 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
6878 L:      netdev@vger.kernel.org
6879 S:      Maintained
6880 F:      drivers/net/ethernet/nvidia/*
6881
6882 FPGA DFL DRIVERS
6883 M:      Wu Hao <hao.wu@intel.com>
6884 R:      Tom Rix <trix@redhat.com>
6885 L:      linux-fpga@vger.kernel.org
6886 S:      Maintained
6887 F:      Documentation/ABI/testing/sysfs-bus-dfl
6888 F:      Documentation/fpga/dfl.rst
6889 F:      drivers/fpga/dfl*
6890 F:      include/uapi/linux/fpga-dfl.h
6891
6892 FPGA MANAGER FRAMEWORK
6893 M:      Moritz Fischer <mdf@kernel.org>
6894 R:      Tom Rix <trix@redhat.com>
6895 L:      linux-fpga@vger.kernel.org
6896 S:      Maintained
6897 W:      http://www.rocketboards.org
6898 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6900 F:      Documentation/devicetree/bindings/fpga/
6901 F:      Documentation/driver-api/fpga/
6902 F:      Documentation/fpga/
6903 F:      drivers/fpga/
6904 F:      include/linux/fpga/
6905
6906 FPU EMULATOR
6907 M:      Bill Metzenthen <billm@melbpc.org.au>
6908 S:      Maintained
6909 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6910 F:      arch/x86/math-emu/
6911
6912 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
6913 L:      netdev@vger.kernel.org
6914 S:      Orphan
6915 F:      drivers/net/wan/dlci.c
6916 F:      drivers/net/wan/sdla.c
6917
6918 FRAMEBUFFER LAYER
6919 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6920 L:      dri-devel@lists.freedesktop.org
6921 L:      linux-fbdev@vger.kernel.org
6922 S:      Maintained
6923 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6924 T:      git git://anongit.freedesktop.org/drm/drm-misc
6925 F:      Documentation/fb/
6926 F:      drivers/video/
6927 F:      include/linux/fb.h
6928 F:      include/uapi/linux/fb.h
6929 F:      include/uapi/video/
6930 F:      include/video/
6931
6932 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6933 M:      Horia Geantă <horia.geanta@nxp.com>
6934 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
6935 L:      linux-crypto@vger.kernel.org
6936 S:      Maintained
6937 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6938 F:      drivers/crypto/caam/
6939
6940 FREESCALE COLDFIRE M5441X MMC DRIVER
6941 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
6942 L:      linux-mmc@vger.kernel.org
6943 S:      Maintained
6944 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
6945 F:      include/linux/platform_data/mmc-esdhc-mcf.h
6946
6947 FREESCALE DIU FRAMEBUFFER DRIVER
6948 M:      Timur Tabi <timur@kernel.org>
6949 L:      linux-fbdev@vger.kernel.org
6950 S:      Maintained
6951 F:      drivers/video/fbdev/fsl-diu-fb.*
6952
6953 FREESCALE DMA DRIVER
6954 M:      Li Yang <leoyang.li@nxp.com>
6955 M:      Zhang Wei <zw@zh-kernel.org>
6956 L:      linuxppc-dev@lists.ozlabs.org
6957 S:      Maintained
6958 F:      drivers/dma/fsldma.*
6959
6960 FREESCALE DSPI DRIVER
6961 M:      Vladimir Oltean <olteanv@gmail.com>
6962 L:      linux-spi@vger.kernel.org
6963 S:      Maintained
6964 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
6965 F:      drivers/spi/spi-fsl-dspi.c
6966 F:      include/linux/spi/spi-fsl-dspi.h
6967
6968 FREESCALE ENETC ETHERNET DRIVERS
6969 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6970 L:      netdev@vger.kernel.org
6971 S:      Maintained
6972 F:      drivers/net/ethernet/freescale/enetc/
6973
6974 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6975 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6976 L:      netdev@vger.kernel.org
6977 S:      Maintained
6978 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6979 F:      drivers/net/ethernet/freescale/gianfar*
6980
6981 FREESCALE GPMI NAND DRIVER
6982 M:      Han Xu <han.xu@nxp.com>
6983 L:      linux-mtd@lists.infradead.org
6984 S:      Maintained
6985 F:      drivers/mtd/nand/raw/gpmi-nand/*
6986
6987 FREESCALE I2C CPM DRIVER
6988 M:      Jochen Friedrich <jochen@scram.de>
6989 L:      linuxppc-dev@lists.ozlabs.org
6990 L:      linux-i2c@vger.kernel.org
6991 S:      Maintained
6992 F:      drivers/i2c/busses/i2c-cpm.c
6993
6994 FREESCALE IMX / MXC FEC DRIVER
6995 M:      Fugang Duan <fugang.duan@nxp.com>
6996 L:      netdev@vger.kernel.org
6997 S:      Maintained
6998 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
6999 F:      drivers/net/ethernet/freescale/fec.h
7000 F:      drivers/net/ethernet/freescale/fec_main.c
7001 F:      drivers/net/ethernet/freescale/fec_ptp.c
7002
7003 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7004 M:      Sascha Hauer <s.hauer@pengutronix.de>
7005 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7006 L:      linux-fbdev@vger.kernel.org
7007 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7008 S:      Maintained
7009 F:      drivers/video/fbdev/imxfb.c
7010 F:      include/linux/platform_data/video-imxfb.h
7011
7012 FREESCALE IMX DDR PMU DRIVER
7013 M:      Frank Li <Frank.li@nxp.com>
7014 L:      linux-arm-kernel@lists.infradead.org
7015 S:      Maintained
7016 F:      Documentation/admin-guide/perf/imx-ddr.rst
7017 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7018 F:      drivers/perf/fsl_imx8_ddr_perf.c
7019
7020 FREESCALE IMX I2C DRIVER
7021 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7022 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7023 L:      linux-i2c@vger.kernel.org
7024 S:      Maintained
7025 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7026 F:      drivers/i2c/busses/i2c-imx.c
7027
7028 FREESCALE IMX LPI2C DRIVER
7029 M:      Dong Aisheng <aisheng.dong@nxp.com>
7030 L:      linux-i2c@vger.kernel.org
7031 L:      linux-imx@nxp.com
7032 S:      Maintained
7033 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7034 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7035
7036 FREESCALE QORIQ DPAA ETHERNET DRIVER
7037 M:      Madalin Bucur <madalin.bucur@nxp.com>
7038 L:      netdev@vger.kernel.org
7039 S:      Maintained
7040 F:      drivers/net/ethernet/freescale/dpaa
7041
7042 FREESCALE QORIQ DPAA FMAN DRIVER
7043 M:      Madalin Bucur <madalin.bucur@nxp.com>
7044 L:      netdev@vger.kernel.org
7045 S:      Maintained
7046 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7047 F:      drivers/net/ethernet/freescale/fman
7048
7049 FREESCALE QORIQ PTP CLOCK DRIVER
7050 M:      Yangbo Lu <yangbo.lu@nxp.com>
7051 L:      netdev@vger.kernel.org
7052 S:      Maintained
7053 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7054 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7055 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7056 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7057 F:      drivers/ptp/ptp_qoriq.c
7058 F:      drivers/ptp/ptp_qoriq_debugfs.c
7059 F:      include/linux/fsl/ptp_qoriq.h
7060
7061 FREESCALE QUAD SPI DRIVER
7062 M:      Han Xu <han.xu@nxp.com>
7063 L:      linux-spi@vger.kernel.org
7064 S:      Maintained
7065 F:      drivers/spi/spi-fsl-qspi.c
7066
7067 FREESCALE QUICC ENGINE LIBRARY
7068 M:      Qiang Zhao <qiang.zhao@nxp.com>
7069 L:      linuxppc-dev@lists.ozlabs.org
7070 S:      Maintained
7071 F:      drivers/soc/fsl/qe/
7072 F:      include/soc/fsl/*qe*.h
7073 F:      include/soc/fsl/*ucc*.h
7074
7075 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7076 M:      Li Yang <leoyang.li@nxp.com>
7077 L:      netdev@vger.kernel.org
7078 L:      linuxppc-dev@lists.ozlabs.org
7079 S:      Maintained
7080 F:      drivers/net/ethernet/freescale/ucc_geth*
7081
7082 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7083 M:      Zhao Qiang <qiang.zhao@nxp.com>
7084 L:      netdev@vger.kernel.org
7085 L:      linuxppc-dev@lists.ozlabs.org
7086 S:      Maintained
7087 F:      drivers/net/wan/fsl_ucc_hdlc*
7088
7089 FREESCALE QUICC ENGINE UCC UART DRIVER
7090 M:      Timur Tabi <timur@kernel.org>
7091 L:      linuxppc-dev@lists.ozlabs.org
7092 S:      Maintained
7093 F:      drivers/tty/serial/ucc_uart.c
7094
7095 FREESCALE SOC DRIVERS
7096 M:      Li Yang <leoyang.li@nxp.com>
7097 L:      linuxppc-dev@lists.ozlabs.org
7098 L:      linux-arm-kernel@lists.infradead.org
7099 S:      Maintained
7100 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
7101 F:      Documentation/devicetree/bindings/soc/fsl/
7102 F:      drivers/soc/fsl/
7103 F:      include/linux/fsl/
7104
7105 FREESCALE SOC FS_ENET DRIVER
7106 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7107 L:      linuxppc-dev@lists.ozlabs.org
7108 L:      netdev@vger.kernel.org
7109 S:      Maintained
7110 F:      drivers/net/ethernet/freescale/fs_enet/
7111 F:      include/linux/fs_enet_pd.h
7112
7113 FREESCALE SOC SOUND DRIVERS
7114 M:      Timur Tabi <timur@kernel.org>
7115 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7116 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7117 R:      Fabio Estevam <festevam@gmail.com>
7118 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7119 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7120 L:      linuxppc-dev@lists.ozlabs.org
7121 S:      Maintained
7122 F:      sound/soc/fsl/fsl*
7123 F:      sound/soc/fsl/imx*
7124 F:      sound/soc/fsl/mpc8610_hpcd.c
7125
7126 FREESCALE USB PERIPHERAL DRIVERS
7127 M:      Li Yang <leoyang.li@nxp.com>
7128 L:      linux-usb@vger.kernel.org
7129 L:      linuxppc-dev@lists.ozlabs.org
7130 S:      Maintained
7131 F:      drivers/usb/gadget/udc/fsl*
7132
7133 FREESCALE USB PHY DRIVER
7134 M:      Ran Wang <ran.wang_1@nxp.com>
7135 L:      linux-usb@vger.kernel.org
7136 L:      linuxppc-dev@lists.ozlabs.org
7137 S:      Maintained
7138 F:      drivers/usb/phy/phy-fsl-usb*
7139
7140 FREEVXFS FILESYSTEM
7141 M:      Christoph Hellwig <hch@infradead.org>
7142 S:      Maintained
7143 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7144 F:      fs/freevxfs/
7145
7146 FREEZER
7147 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7148 M:      Pavel Machek <pavel@ucw.cz>
7149 L:      linux-pm@vger.kernel.org
7150 S:      Supported
7151 F:      Documentation/power/freezing-of-tasks.rst
7152 F:      include/linux/freezer.h
7153 F:      kernel/freezer.c
7154
7155 FRONTSWAP API
7156 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7157 L:      linux-kernel@vger.kernel.org
7158 S:      Maintained
7159 F:      include/linux/frontswap.h
7160 F:      mm/frontswap.c
7161
7162 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7163 M:      David Howells <dhowells@redhat.com>
7164 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7165 S:      Supported
7166 F:      Documentation/filesystems/caching/
7167 F:      fs/fscache/
7168 F:      include/linux/fscache*.h
7169
7170 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7171 M:      Theodore Y. Ts'o <tytso@mit.edu>
7172 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7173 M:      Eric Biggers <ebiggers@kernel.org>
7174 L:      linux-fscrypt@vger.kernel.org
7175 S:      Supported
7176 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7177 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7178 F:      Documentation/filesystems/fscrypt.rst
7179 F:      fs/crypto/
7180 F:      include/linux/fscrypt*.h
7181 F:      include/uapi/linux/fscrypt.h
7182
7183 FSI SUBSYSTEM
7184 M:      Jeremy Kerr <jk@ozlabs.org>
7185 M:      Joel Stanley <joel@jms.id.au>
7186 R:      Alistar Popple <alistair@popple.id.au>
7187 R:      Eddie James <eajames@linux.ibm.com>
7188 L:      linux-fsi@lists.ozlabs.org
7189 S:      Supported
7190 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7192 F:      drivers/fsi/
7193 F:      include/linux/fsi*.h
7194 F:      include/trace/events/fsi*.h
7195
7196 FSI-ATTACHED I2C DRIVER
7197 M:      Eddie James <eajames@linux.ibm.com>
7198 L:      linux-i2c@vger.kernel.org
7199 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7200 S:      Maintained
7201 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7202 F:      drivers/i2c/busses/i2c-fsi.c
7203
7204 FSI-ATTACHED SPI DRIVER
7205 M:      Eddie James <eajames@linux.ibm.com>
7206 L:      linux-spi@vger.kernel.org
7207 S:      Maintained
7208 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7209 F:      drivers/spi/spi-fsi.c
7210
7211 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7212 M:      Jan Kara <jack@suse.cz>
7213 R:      Amir Goldstein <amir73il@gmail.com>
7214 L:      linux-fsdevel@vger.kernel.org
7215 S:      Maintained
7216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7217 F:      fs/notify/
7218 F:      include/linux/fsnotify*.h
7219
7220 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7221 M:      Eric Biggers <ebiggers@kernel.org>
7222 M:      Theodore Y. Ts'o <tytso@mit.edu>
7223 L:      linux-fscrypt@vger.kernel.org
7224 S:      Supported
7225 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7226 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7227 F:      Documentation/filesystems/fsverity.rst
7228 F:      fs/verity/
7229 F:      include/linux/fsverity.h
7230 F:      include/uapi/linux/fsverity.h
7231
7232 FUJITSU LAPTOP EXTRAS
7233 M:      Jonathan Woithe <jwoithe@just42.net>
7234 L:      platform-driver-x86@vger.kernel.org
7235 S:      Maintained
7236 F:      drivers/platform/x86/fujitsu-laptop.c
7237
7238 FUJITSU M-5MO LS CAMERA ISP DRIVER
7239 M:      Kyungmin Park <kyungmin.park@samsung.com>
7240 M:      Heungjun Kim <riverful.kim@samsung.com>
7241 L:      linux-media@vger.kernel.org
7242 S:      Maintained
7243 F:      drivers/media/i2c/m5mols/
7244 F:      include/media/i2c/m5mols.h
7245
7246 FUJITSU TABLET EXTRAS
7247 M:      Robert Gerlach <khnz@gmx.de>
7248 L:      platform-driver-x86@vger.kernel.org
7249 S:      Maintained
7250 F:      drivers/platform/x86/fujitsu-tablet.c
7251
7252 FUSE: FILESYSTEM IN USERSPACE
7253 M:      Miklos Szeredi <miklos@szeredi.hu>
7254 L:      linux-fsdevel@vger.kernel.org
7255 S:      Maintained
7256 W:      https://github.com/libfuse/
7257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7258 F:      Documentation/filesystems/fuse.rst
7259 F:      fs/fuse/
7260 F:      include/uapi/linux/fuse.h
7261
7262 FUTEX SUBSYSTEM
7263 M:      Thomas Gleixner <tglx@linutronix.de>
7264 M:      Ingo Molnar <mingo@redhat.com>
7265 R:      Peter Zijlstra <peterz@infradead.org>
7266 R:      Darren Hart <dvhart@infradead.org>
7267 L:      linux-kernel@vger.kernel.org
7268 S:      Maintained
7269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7270 F:      Documentation/locking/*futex*
7271 F:      include/asm-generic/futex.h
7272 F:      include/linux/futex.h
7273 F:      include/uapi/linux/futex.h
7274 F:      kernel/futex.c
7275 F:      tools/perf/bench/futex*
7276 F:      tools/testing/selftests/futex/
7277
7278 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7279 M:      Tim Harvey <tharvey@gateworks.com>
7280 M:      Robert Jones <rjones@gateworks.com>
7281 S:      Maintained
7282 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7283 F:      drivers/mfd/gateworks-gsc.c
7284 F:      include/linux/mfd/gsc.h
7285 F:      Documentation/hwmon/gsc-hwmon.rst
7286 F:      drivers/hwmon/gsc-hwmon.c
7287 F:      include/linux/platform_data/gsc_hwmon.h
7288
7289 GASKET DRIVER FRAMEWORK
7290 M:      Rob Springer <rspringer@google.com>
7291 M:      Todd Poynor <toddpoynor@google.com>
7292 M:      Ben Chan <benchan@chromium.org>
7293 M:      Richard Yeh <rcy@google.com>
7294 S:      Maintained
7295 F:      drivers/staging/gasket/
7296
7297 GCC PLUGINS
7298 M:      Kees Cook <keescook@chromium.org>
7299 R:      Emese Revfy <re.emese@gmail.com>
7300 L:      linux-hardening@vger.kernel.org
7301 S:      Maintained
7302 F:      Documentation/kbuild/gcc-plugins.rst
7303 F:      scripts/Makefile.gcc-plugins
7304 F:      scripts/gcc-plugin.sh
7305 F:      scripts/gcc-plugins/
7306
7307 GCOV BASED KERNEL PROFILING
7308 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7309 S:      Maintained
7310 F:      Documentation/dev-tools/gcov.rst
7311 F:      kernel/gcov/
7312
7313 GDB KERNEL DEBUGGING HELPER SCRIPTS
7314 M:      Jan Kiszka <jan.kiszka@siemens.com>
7315 M:      Kieran Bingham <kbingham@kernel.org>
7316 S:      Supported
7317 F:      scripts/gdb/
7318
7319 GDT SCSI DISK ARRAY CONTROLLER DRIVER
7320 M:      Achim Leubner <achim_leubner@adaptec.com>
7321 L:      linux-scsi@vger.kernel.org
7322 S:      Supported
7323 W:      http://www.icp-vortex.com/
7324 F:      drivers/scsi/gdt*
7325
7326 GEMTEK FM RADIO RECEIVER DRIVER
7327 M:      Hans Verkuil <hverkuil@xs4all.nl>
7328 L:      linux-media@vger.kernel.org
7329 S:      Maintained
7330 W:      https://linuxtv.org
7331 T:      git git://linuxtv.org/media_tree.git
7332 F:      drivers/media/radio/radio-gemtek*
7333
7334 GENERIC ARCHITECTURE TOPOLOGY
7335 M:      Sudeep Holla <sudeep.holla@arm.com>
7336 L:      linux-kernel@vger.kernel.org
7337 S:      Maintained
7338 F:      drivers/base/arch_topology.c
7339 F:      include/linux/arch_topology.h
7340
7341 GENERIC GPIO I2C DRIVER
7342 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7343 S:      Supported
7344 F:      drivers/i2c/busses/i2c-gpio.c
7345 F:      include/linux/platform_data/i2c-gpio.h
7346
7347 GENERIC GPIO I2C MULTIPLEXER DRIVER
7348 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7349 L:      linux-i2c@vger.kernel.org
7350 S:      Supported
7351 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7352 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7353 F:      include/linux/platform_data/i2c-mux-gpio.h
7354
7355 GENERIC HDLC (WAN) DRIVERS
7356 M:      Krzysztof Halasa <khc@pm.waw.pl>
7357 S:      Maintained
7358 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7359 F:      drivers/net/wan/c101.c
7360 F:      drivers/net/wan/hd6457*
7361 F:      drivers/net/wan/hdlc*
7362 F:      drivers/net/wan/n2.c
7363 F:      drivers/net/wan/pc300too.c
7364 F:      drivers/net/wan/pci200syn.c
7365 F:      drivers/net/wan/wanxl*
7366
7367 GENERIC INCLUDE/ASM HEADER FILES
7368 M:      Arnd Bergmann <arnd@arndb.de>
7369 L:      linux-arch@vger.kernel.org
7370 S:      Maintained
7371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7372 F:      include/asm-generic/
7373 F:      include/uapi/asm-generic/
7374
7375 GENERIC PHY FRAMEWORK
7376 M:      Kishon Vijay Abraham I <kishon@ti.com>
7377 M:      Vinod Koul <vkoul@kernel.org>
7378 L:      linux-kernel@vger.kernel.org
7379 S:      Supported
7380 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7381 F:      Documentation/devicetree/bindings/phy/
7382 F:      drivers/phy/
7383 F:      include/linux/phy/
7384
7385 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7386 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7387 S:      Supported
7388 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7389
7390 GENERIC PM DOMAINS
7391 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7392 M:      Kevin Hilman <khilman@kernel.org>
7393 M:      Ulf Hansson <ulf.hansson@linaro.org>
7394 L:      linux-pm@vger.kernel.org
7395 S:      Supported
7396 F:      Documentation/devicetree/bindings/power/power?domain*
7397 F:      drivers/base/power/domain*.c
7398 F:      include/linux/pm_domain.h
7399
7400 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7401 M:      Eugen Hristev <eugen.hristev@microchip.com>
7402 L:      linux-input@vger.kernel.org
7403 S:      Maintained
7404 F:      drivers/input/touchscreen/resistive-adc-touch.c
7405
7406 GENERIC UIO DRIVER FOR PCI DEVICES
7407 M:      "Michael S. Tsirkin" <mst@redhat.com>
7408 L:      kvm@vger.kernel.org
7409 S:      Supported
7410 F:      drivers/uio/uio_pci_generic.c
7411
7412 GENERIC VDSO LIBRARY
7413 M:      Andy Lutomirski <luto@kernel.org>
7414 M:      Thomas Gleixner <tglx@linutronix.de>
7415 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7416 L:      linux-kernel@vger.kernel.org
7417 S:      Maintained
7418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7419 F:      include/asm-generic/vdso/vsyscall.h
7420 F:      include/vdso/
7421 F:      kernel/time/vsyscall.c
7422 F:      lib/vdso/
7423
7424 GENWQE (IBM Generic Workqueue Card)
7425 M:      Frank Haverkamp <haver@linux.ibm.com>
7426 S:      Supported
7427 F:      drivers/misc/genwqe/
7428
7429 GET_MAINTAINER SCRIPT
7430 M:      Joe Perches <joe@perches.com>
7431 S:      Maintained
7432 F:      scripts/get_maintainer.pl
7433
7434 GFS2 FILE SYSTEM
7435 M:      Bob Peterson <rpeterso@redhat.com>
7436 M:      Andreas Gruenbacher <agruenba@redhat.com>
7437 L:      cluster-devel@redhat.com
7438 S:      Supported
7439 W:      http://sources.redhat.com/cluster/
7440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7441 F:      Documentation/filesystems/gfs2*
7442 F:      fs/gfs2/
7443 F:      include/uapi/linux/gfs2_ondisk.h
7444
7445 GNSS SUBSYSTEM
7446 M:      Johan Hovold <johan@kernel.org>
7447 S:      Maintained
7448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7449 F:      Documentation/ABI/testing/sysfs-class-gnss
7450 F:      Documentation/devicetree/bindings/gnss/
7451 F:      drivers/gnss/
7452 F:      include/linux/gnss.h
7453
7454 GO7007 MPEG CODEC
7455 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7456 L:      linux-media@vger.kernel.org
7457 S:      Maintained
7458 F:      drivers/media/usb/go7007/
7459
7460 GOODIX TOUCHSCREEN
7461 M:      Bastien Nocera <hadess@hadess.net>
7462 L:      linux-input@vger.kernel.org
7463 S:      Maintained
7464 F:      drivers/input/touchscreen/goodix.c
7465
7466 GOOGLE ETHERNET DRIVERS
7467 M:      Catherine Sullivan <csully@google.com>
7468 R:      Sagi Shahar <sagis@google.com>
7469 R:      Jon Olson <jonolson@google.com>
7470 L:      netdev@vger.kernel.org
7471 S:      Supported
7472 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
7473 F:      drivers/net/ethernet/google
7474
7475 GPD POCKET FAN DRIVER
7476 M:      Hans de Goede <hdegoede@redhat.com>
7477 L:      platform-driver-x86@vger.kernel.org
7478 S:      Maintained
7479 F:      drivers/platform/x86/gpd-pocket-fan.c
7480
7481 GPIO ACPI SUPPORT
7482 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7483 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7484 L:      linux-gpio@vger.kernel.org
7485 L:      linux-acpi@vger.kernel.org
7486 S:      Maintained
7487 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7488 F:      drivers/gpio/gpiolib-acpi.c
7489 F:      drivers/gpio/gpiolib-acpi.h
7490
7491 GPIO AGGREGATOR
7492 M:      Geert Uytterhoeven <geert+renesas@glider.be>
7493 L:      linux-gpio@vger.kernel.org
7494 S:      Supported
7495 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7496 F:      drivers/gpio/gpio-aggregator.c
7497
7498 GPIO IR Transmitter
7499 M:      Sean Young <sean@mess.org>
7500 L:      linux-media@vger.kernel.org
7501 S:      Maintained
7502 F:      drivers/media/rc/gpio-ir-tx.c
7503
7504 GPIO MOCKUP DRIVER
7505 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7506 L:      linux-gpio@vger.kernel.org
7507 S:      Maintained
7508 F:      drivers/gpio/gpio-mockup.c
7509 F:      tools/testing/selftests/gpio/
7510
7511 GPIO REGMAP
7512 R:      Michael Walle <michael@walle.cc>
7513 S:      Maintained
7514 F:      drivers/gpio/gpio-regmap.c
7515 F:      include/linux/gpio/regmap.h
7516
7517 GPIO SUBSYSTEM
7518 M:      Linus Walleij <linus.walleij@linaro.org>
7519 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7520 L:      linux-gpio@vger.kernel.org
7521 S:      Maintained
7522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7523 F:      Documentation/ABI/obsolete/sysfs-gpio
7524 F:      Documentation/ABI/testing/gpio-cdev
7525 F:      Documentation/admin-guide/gpio/
7526 F:      Documentation/devicetree/bindings/gpio/
7527 F:      Documentation/driver-api/gpio/
7528 F:      drivers/gpio/
7529 F:      include/asm-generic/gpio.h
7530 F:      include/linux/gpio.h
7531 F:      include/linux/gpio/
7532 F:      include/linux/of_gpio.h
7533 F:      include/uapi/linux/gpio.h
7534 F:      tools/gpio/
7535
7536 GRE DEMULTIPLEXER DRIVER
7537 M:      Dmitry Kozlov <xeb@mail.ru>
7538 L:      netdev@vger.kernel.org
7539 S:      Maintained
7540 F:      include/net/gre.h
7541 F:      net/ipv4/gre_demux.c
7542 F:      net/ipv4/gre_offload.c
7543
7544 GRETH 10/100/1G Ethernet MAC device driver
7545 M:      Andreas Larsson <andreas@gaisler.com>
7546 L:      netdev@vger.kernel.org
7547 S:      Maintained
7548 F:      drivers/net/ethernet/aeroflex/
7549
7550 GREYBUS AUDIO PROTOCOLS DRIVERS
7551 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7552 M:      Mark Greer <mgreer@animalcreek.com>
7553 S:      Maintained
7554 F:      drivers/staging/greybus/audio_apbridgea.c
7555 F:      drivers/staging/greybus/audio_apbridgea.h
7556 F:      drivers/staging/greybus/audio_codec.c
7557 F:      drivers/staging/greybus/audio_codec.h
7558 F:      drivers/staging/greybus/audio_gb.c
7559 F:      drivers/staging/greybus/audio_manager.c
7560 F:      drivers/staging/greybus/audio_manager.h
7561 F:      drivers/staging/greybus/audio_manager_module.c
7562 F:      drivers/staging/greybus/audio_manager_private.h
7563 F:      drivers/staging/greybus/audio_manager_sysfs.c
7564 F:      drivers/staging/greybus/audio_module.c
7565 F:      drivers/staging/greybus/audio_topology.c
7566
7567 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7568 M:      Viresh Kumar <vireshk@kernel.org>
7569 S:      Maintained
7570 F:      drivers/staging/greybus/authentication.c
7571 F:      drivers/staging/greybus/bootrom.c
7572 F:      drivers/staging/greybus/firmware.h
7573 F:      drivers/staging/greybus/fw-core.c
7574 F:      drivers/staging/greybus/fw-download.c
7575 F:      drivers/staging/greybus/fw-management.c
7576 F:      drivers/staging/greybus/greybus_authentication.h
7577 F:      drivers/staging/greybus/greybus_firmware.h
7578 F:      drivers/staging/greybus/hid.c
7579 F:      drivers/staging/greybus/i2c.c
7580 F:      drivers/staging/greybus/spi.c
7581 F:      drivers/staging/greybus/spilib.c
7582 F:      drivers/staging/greybus/spilib.h
7583
7584 GREYBUS LOOPBACK DRIVER
7585 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7586 S:      Maintained
7587 F:      drivers/staging/greybus/loopback.c
7588
7589 GREYBUS PLATFORM DRIVERS
7590 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7591 S:      Maintained
7592 F:      drivers/staging/greybus/arche-apb-ctrl.c
7593 F:      drivers/staging/greybus/arche-platform.c
7594 F:      drivers/staging/greybus/arche_platform.h
7595
7596 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7597 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7598 S:      Maintained
7599 F:      drivers/staging/greybus/gpio.c
7600 F:      drivers/staging/greybus/light.c
7601 F:      drivers/staging/greybus/power_supply.c
7602 F:      drivers/staging/greybus/sdio.c
7603 F:      drivers/staging/greybus/spi.c
7604 F:      drivers/staging/greybus/spilib.c
7605
7606 GREYBUS SUBSYSTEM
7607 M:      Johan Hovold <johan@kernel.org>
7608 M:      Alex Elder <elder@kernel.org>
7609 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7610 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7611 S:      Maintained
7612 F:      drivers/greybus/
7613 F:      drivers/staging/greybus/
7614 F:      include/linux/greybus.h
7615 F:      include/linux/greybus/
7616
7617 GREYBUS UART PROTOCOLS DRIVERS
7618 M:      David Lin <dtwlin@gmail.com>
7619 S:      Maintained
7620 F:      drivers/staging/greybus/log.c
7621 F:      drivers/staging/greybus/uart.c
7622
7623 GS1662 VIDEO SERIALIZER
7624 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7625 L:      linux-media@vger.kernel.org
7626 S:      Maintained
7627 T:      git git://linuxtv.org/media_tree.git
7628 F:      drivers/media/spi/gs1662.c
7629
7630 GSPCA FINEPIX SUBDRIVER
7631 M:      Frank Zago <frank@zago.net>
7632 L:      linux-media@vger.kernel.org
7633 S:      Maintained
7634 T:      git git://linuxtv.org/media_tree.git
7635 F:      drivers/media/usb/gspca/finepix.c
7636
7637 GSPCA GL860 SUBDRIVER
7638 M:      Olivier Lorin <o.lorin@laposte.net>
7639 L:      linux-media@vger.kernel.org
7640 S:      Maintained
7641 T:      git git://linuxtv.org/media_tree.git
7642 F:      drivers/media/usb/gspca/gl860/
7643
7644 GSPCA M5602 SUBDRIVER
7645 M:      Erik Andren <erik.andren@gmail.com>
7646 L:      linux-media@vger.kernel.org
7647 S:      Maintained
7648 T:      git git://linuxtv.org/media_tree.git
7649 F:      drivers/media/usb/gspca/m5602/
7650
7651 GSPCA PAC207 SONIXB SUBDRIVER
7652 M:      Hans Verkuil <hverkuil@xs4all.nl>
7653 L:      linux-media@vger.kernel.org
7654 S:      Odd Fixes
7655 T:      git git://linuxtv.org/media_tree.git
7656 F:      drivers/media/usb/gspca/pac207.c
7657
7658 GSPCA SN9C20X SUBDRIVER
7659 M:      Brian Johnson <brijohn@gmail.com>
7660 L:      linux-media@vger.kernel.org
7661 S:      Maintained
7662 T:      git git://linuxtv.org/media_tree.git
7663 F:      drivers/media/usb/gspca/sn9c20x.c
7664
7665 GSPCA T613 SUBDRIVER
7666 M:      Leandro Costantino <lcostantino@gmail.com>
7667 L:      linux-media@vger.kernel.org
7668 S:      Maintained
7669 T:      git git://linuxtv.org/media_tree.git
7670 F:      drivers/media/usb/gspca/t613.c
7671
7672 GSPCA USB WEBCAM DRIVER
7673 M:      Hans Verkuil <hverkuil@xs4all.nl>
7674 L:      linux-media@vger.kernel.org
7675 S:      Odd Fixes
7676 T:      git git://linuxtv.org/media_tree.git
7677 F:      drivers/media/usb/gspca/
7678
7679 GTP (GPRS Tunneling Protocol)
7680 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7681 M:      Harald Welte <laforge@gnumonks.org>
7682 L:      osmocom-net-gprs@lists.osmocom.org
7683 S:      Maintained
7684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7685 F:      drivers/net/gtp.c
7686
7687 GUID PARTITION TABLE (GPT)
7688 M:      Davidlohr Bueso <dave@stgolabs.net>
7689 L:      linux-efi@vger.kernel.org
7690 S:      Maintained
7691 F:      block/partitions/efi.*
7692
7693 H8/300 ARCHITECTURE
7694 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
7695 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7696 S:      Maintained
7697 W:      http://uclinux-h8.sourceforge.jp
7698 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7699 F:      arch/h8300/
7700 F:      drivers/clk/h8300/
7701 F:      drivers/clocksource/h8300_*.c
7702 F:      drivers/irqchip/irq-renesas-h8*.c
7703
7704 HABANALABS PCI DRIVER
7705 M:      Oded Gabbay <oded.gabbay@gmail.com>
7706 S:      Supported
7707 T:      git https://github.com/HabanaAI/linux.git
7708 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7709 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7710 F:      drivers/misc/habanalabs/
7711 F:      include/uapi/misc/habanalabs.h
7712
7713 HACKRF MEDIA DRIVER
7714 M:      Antti Palosaari <crope@iki.fi>
7715 L:      linux-media@vger.kernel.org
7716 S:      Maintained
7717 W:      https://linuxtv.org
7718 W:      http://palosaari.fi/linux/
7719 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7720 T:      git git://linuxtv.org/anttip/media_tree.git
7721 F:      drivers/media/usb/hackrf/
7722
7723 HANTRO VPU CODEC DRIVER
7724 M:      Ezequiel Garcia <ezequiel@collabora.com>
7725 M:      Philipp Zabel <p.zabel@pengutronix.de>
7726 L:      linux-media@vger.kernel.org
7727 L:      linux-rockchip@lists.infradead.org
7728 S:      Maintained
7729 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
7730 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
7731 F:      drivers/staging/media/hantro/
7732
7733 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7734 M:      Frank Seidel <frank@f-seidel.de>
7735 L:      platform-driver-x86@vger.kernel.org
7736 S:      Maintained
7737 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7738 F:      drivers/platform/x86/hdaps.c
7739
7740 HARDWARE MONITORING
7741 M:      Jean Delvare <jdelvare@suse.com>
7742 M:      Guenter Roeck <linux@roeck-us.net>
7743 L:      linux-hwmon@vger.kernel.org
7744 S:      Maintained
7745 W:      http://hwmon.wiki.kernel.org/
7746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7747 F:      Documentation/devicetree/bindings/hwmon/
7748 F:      Documentation/hwmon/
7749 F:      drivers/hwmon/
7750 F:      include/linux/hwmon*.h
7751 F:      include/trace/events/hwmon*.h
7752
7753 HARDWARE RANDOM NUMBER GENERATOR CORE
7754 M:      Matt Mackall <mpm@selenic.com>
7755 M:      Herbert Xu <herbert@gondor.apana.org.au>
7756 L:      linux-crypto@vger.kernel.org
7757 S:      Odd fixes
7758 F:      Documentation/admin-guide/hw_random.rst
7759 F:      Documentation/devicetree/bindings/rng/
7760 F:      drivers/char/hw_random/
7761 F:      include/linux/hw_random.h
7762
7763 HARDWARE SPINLOCK CORE
7764 M:      Ohad Ben-Cohen <ohad@wizery.com>
7765 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
7766 R:      Baolin Wang <baolin.wang7@gmail.com>
7767 L:      linux-remoteproc@vger.kernel.org
7768 S:      Maintained
7769 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7770 F:      Documentation/devicetree/bindings/hwlock/
7771 F:      Documentation/locking/hwspinlock.rst
7772 F:      drivers/hwspinlock/
7773 F:      include/linux/hwspinlock.h
7774
7775 HARDWARE TRACING FACILITIES
7776 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7777 S:      Maintained
7778 F:      drivers/hwtracing/
7779
7780 HARMONY SOUND DRIVER
7781 L:      linux-parisc@vger.kernel.org
7782 S:      Maintained
7783 F:      sound/parisc/harmony.*
7784
7785 HDPVR USB VIDEO ENCODER DRIVER
7786 M:      Hans Verkuil <hverkuil@xs4all.nl>
7787 L:      linux-media@vger.kernel.org
7788 S:      Odd Fixes
7789 W:      https://linuxtv.org
7790 T:      git git://linuxtv.org/media_tree.git
7791 F:      drivers/media/usb/hdpvr/
7792
7793 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7794 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
7795 S:      Supported
7796 F:      Documentation/watchdog/hpwdt.rst
7797 F:      drivers/watchdog/hpwdt.c
7798
7799 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7800 M:      Don Brace <don.brace@microchip.com>
7801 L:      storagedev@microchip.com
7802 L:      linux-scsi@vger.kernel.org
7803 S:      Supported
7804 F:      Documentation/scsi/hpsa.rst
7805 F:      drivers/scsi/hpsa*.[ch]
7806 F:      include/linux/cciss*.h
7807 F:      include/uapi/linux/cciss*.h
7808
7809 HFI1 DRIVER
7810 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
7811 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
7812 L:      linux-rdma@vger.kernel.org
7813 S:      Supported
7814 F:      drivers/infiniband/hw/hfi1
7815
7816 HFS FILESYSTEM
7817 L:      linux-fsdevel@vger.kernel.org
7818 S:      Orphan
7819 F:      Documentation/filesystems/hfs.rst
7820 F:      fs/hfs/
7821
7822 HFSPLUS FILESYSTEM
7823 L:      linux-fsdevel@vger.kernel.org
7824 S:      Orphan
7825 F:      Documentation/filesystems/hfsplus.rst
7826 F:      fs/hfsplus/
7827
7828 HGA FRAMEBUFFER DRIVER
7829 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
7830 L:      linux-nvidia@lists.surfsouth.com
7831 S:      Maintained
7832 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7833 F:      drivers/video/fbdev/hgafb.c
7834
7835 HIBERNATION (aka Software Suspend, aka swsusp)
7836 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7837 M:      Pavel Machek <pavel@ucw.cz>
7838 L:      linux-pm@vger.kernel.org
7839 S:      Supported
7840 B:      https://bugzilla.kernel.org
7841 F:      arch/*/include/asm/suspend*.h
7842 F:      arch/x86/power/
7843 F:      drivers/base/power/
7844 F:      include/linux/freezer.h
7845 F:      include/linux/pm.h
7846 F:      include/linux/suspend.h
7847 F:      kernel/power/
7848
7849 HID CORE LAYER
7850 M:      Jiri Kosina <jikos@kernel.org>
7851 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
7852 L:      linux-input@vger.kernel.org
7853 S:      Maintained
7854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7855 F:      drivers/hid/
7856 F:      include/linux/hid*
7857 F:      include/uapi/linux/hid*
7858
7859 HID SENSOR HUB DRIVERS
7860 M:      Jiri Kosina <jikos@kernel.org>
7861 M:      Jonathan Cameron <jic23@kernel.org>
7862 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7863 L:      linux-input@vger.kernel.org
7864 L:      linux-iio@vger.kernel.org
7865 S:      Maintained
7866 F:      Documentation/hid/hid-sensor*
7867 F:      drivers/hid/hid-sensor-*
7868 F:      drivers/iio/*/hid-*
7869 F:      include/linux/hid-sensor-*
7870
7871 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7872 M:      Thomas Gleixner <tglx@linutronix.de>
7873 L:      linux-kernel@vger.kernel.org
7874 S:      Maintained
7875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7876 F:      Documentation/timers/
7877 F:      include/linux/clockchips.h
7878 F:      include/linux/hrtimer.h
7879 F:      kernel/time/clockevents.c
7880 F:      kernel/time/hrtimer.c
7881 F:      kernel/time/timer_*.c
7882
7883 HIGH-SPEED SCC DRIVER FOR AX.25
7884 L:      linux-hams@vger.kernel.org
7885 S:      Orphan
7886 F:      drivers/net/hamradio/dmascc.c
7887 F:      drivers/net/hamradio/scc.c
7888
7889 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7890 M:      HighPoint Linux Team <linux@highpoint-tech.com>
7891 S:      Supported
7892 W:      http://www.highpoint-tech.com
7893 F:      Documentation/scsi/hptiop.rst
7894 F:      drivers/scsi/hptiop.c
7895
7896 HIPPI
7897 M:      Jes Sorensen <jes@trained-monkey.org>
7898 L:      linux-hippi@sunsite.dk
7899 S:      Maintained
7900 F:      drivers/net/hippi/
7901 F:      include/linux/hippidevice.h
7902 F:      include/uapi/linux/if_hippi.h
7903 F:      net/802/hippi.c
7904
7905 HISILICON DMA DRIVER
7906 M:      Zhou Wang <wangzhou1@hisilicon.com>
7907 L:      dmaengine@vger.kernel.org
7908 S:      Maintained
7909 F:      drivers/dma/hisi_dma.c
7910
7911 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7912 M:      Zaibo Xu <xuzaibo@huawei.com>
7913 L:      linux-crypto@vger.kernel.org
7914 S:      Maintained
7915 F:      Documentation/ABI/testing/debugfs-hisi-hpre
7916 F:      drivers/crypto/hisilicon/hpre/hpre.h
7917 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
7918 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
7919
7920 HISILICON LPC BUS DRIVER
7921 M:      john.garry@huawei.com
7922 S:      Maintained
7923 W:      http://www.hisilicon.com
7924 F:      Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
7925 F:      drivers/bus/hisi_lpc.c
7926
7927 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7928 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7929 M:      Salil Mehta <salil.mehta@huawei.com>
7930 L:      netdev@vger.kernel.org
7931 S:      Maintained
7932 W:      http://www.hisilicon.com
7933 F:      drivers/net/ethernet/hisilicon/hns3/
7934
7935 HISILICON NETWORK SUBSYSTEM DRIVER
7936 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7937 M:      Salil Mehta <salil.mehta@huawei.com>
7938 L:      netdev@vger.kernel.org
7939 S:      Maintained
7940 W:      http://www.hisilicon.com
7941 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
7942 F:      drivers/net/ethernet/hisilicon/
7943
7944 HIKEY960 ONBOARD USB GPIO HUB DRIVER
7945 M:      John Stultz <john.stultz@linaro.org>
7946 L:      linux-kernel@vger.kernel.org
7947 S:      Maintained
7948 F:      drivers/misc/hisi_hikey_usb.c
7949 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
7950
7951 HISILICON PMU DRIVER
7952 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
7953 S:      Supported
7954 W:      http://www.hisilicon.com
7955 F:      Documentation/admin-guide/perf/hisi-pmu.rst
7956 F:      drivers/perf/hisilicon
7957
7958 HISILICON QM AND ZIP Controller DRIVER
7959 M:      Zhou Wang <wangzhou1@hisilicon.com>
7960 L:      linux-crypto@vger.kernel.org
7961 S:      Maintained
7962 F:      Documentation/ABI/testing/debugfs-hisi-zip
7963 F:      drivers/crypto/hisilicon/qm.c
7964 F:      drivers/crypto/hisilicon/qm.h
7965 F:      drivers/crypto/hisilicon/sgl.c
7966 F:      drivers/crypto/hisilicon/zip/
7967
7968 HISILICON ROCE DRIVER
7969 M:      Lijun Ou <oulijun@huawei.com>
7970 M:      Wei Hu(Xavier) <huwei87@hisilicon.com>
7971 M:      Weihang Li <liweihang@huawei.com>
7972 L:      linux-rdma@vger.kernel.org
7973 S:      Maintained
7974 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
7975 F:      drivers/infiniband/hw/hns/
7976
7977 HISILICON SAS Controller
7978 M:      John Garry <john.garry@huawei.com>
7979 S:      Supported
7980 W:      http://www.hisilicon.com
7981 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
7982 F:      drivers/scsi/hisi_sas/
7983
7984 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
7985 M:      Zaibo Xu <xuzaibo@huawei.com>
7986 L:      linux-crypto@vger.kernel.org
7987 S:      Maintained
7988 F:      Documentation/ABI/testing/debugfs-hisi-sec
7989 F:      drivers/crypto/hisilicon/sec2/sec.h
7990 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
7991 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
7992 F:      drivers/crypto/hisilicon/sec2/sec_main.c
7993
7994 HISILICON STAGING DRIVERS FOR HIKEY 960/970
7995 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
7996 L:      devel@driverdev.osuosl.org
7997 S:      Maintained
7998 F:      drivers/staging/hikey9xx/
7999
8000 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8001 M:      Zaibo Xu <xuzaibo@huawei.com>
8002 S:      Maintained
8003 F:      drivers/char/hw_random/hisi-trng-v2.c
8004
8005 HISILICON V3XX SPI NOR FLASH Controller Driver
8006 M:      John Garry <john.garry@huawei.com>
8007 S:      Maintained
8008 W:      http://www.hisilicon.com
8009 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8010
8011 HMM - Heterogeneous Memory Management
8012 M:      Jérôme Glisse <jglisse@redhat.com>
8013 L:      linux-mm@kvack.org
8014 S:      Maintained
8015 F:      Documentation/vm/hmm.rst
8016 F:      include/linux/hmm*
8017 F:      lib/test_hmm*
8018 F:      mm/hmm*
8019 F:      tools/testing/selftests/vm/*hmm*
8020
8021 HOST AP DRIVER
8022 M:      Jouni Malinen <j@w1.fi>
8023 L:      linux-wireless@vger.kernel.org
8024 S:      Obsolete
8025 W:      http://w1.fi/hostap-driver.html
8026 F:      drivers/net/wireless/intersil/hostap/
8027
8028 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8029 L:      platform-driver-x86@vger.kernel.org
8030 S:      Orphan
8031 F:      drivers/platform/x86/tc1100-wmi.c
8032
8033 HPET:   High Precision Event Timers driver
8034 M:      Clemens Ladisch <clemens@ladisch.de>
8035 S:      Maintained
8036 F:      Documentation/timers/hpet.rst
8037 F:      drivers/char/hpet.c
8038 F:      include/linux/hpet.h
8039 F:      include/uapi/linux/hpet.h
8040
8041 HPET:   x86
8042 S:      Orphan
8043 F:      arch/x86/include/asm/hpet.h
8044 F:      arch/x86/kernel/hpet.c
8045
8046 HPFS FILESYSTEM
8047 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8048 S:      Maintained
8049 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8050 F:      fs/hpfs/
8051
8052 HSI SUBSYSTEM
8053 M:      Sebastian Reichel <sre@kernel.org>
8054 S:      Maintained
8055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8056 F:      Documentation/ABI/testing/sysfs-bus-hsi
8057 F:      Documentation/driver-api/hsi.rst
8058 F:      drivers/hsi/
8059 F:      include/linux/hsi/
8060 F:      include/uapi/linux/hsi/
8061
8062 HSO 3G MODEM DRIVER
8063 L:      linux-usb@vger.kernel.org
8064 S:      Orphan
8065 F:      drivers/net/usb/hso.c
8066
8067 HSR NETWORK PROTOCOL
8068 L:      netdev@vger.kernel.org
8069 S:      Orphan
8070 F:      net/hsr/
8071
8072 HT16K33 LED CONTROLLER DRIVER
8073 M:      Robin van der Gracht <robin@protonic.nl>
8074 S:      Maintained
8075 F:      Documentation/devicetree/bindings/display/ht16k33.txt
8076 F:      drivers/auxdisplay/ht16k33.c
8077
8078 HTCPEN TOUCHSCREEN DRIVER
8079 M:      Pau Oliva Fora <pof@eslack.org>
8080 L:      linux-input@vger.kernel.org
8081 S:      Maintained
8082 F:      drivers/input/touchscreen/htcpen.c
8083
8084 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8085 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8086 L:      linux-iio@vger.kernel.org
8087 S:      Maintained
8088 W:      http://www.st.com/
8089 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
8090 F:      drivers/iio/humidity/hts221*
8091
8092 HUAWEI ETHERNET DRIVER
8093 M:      Bin Luo <luobin9@huawei.com>
8094 L:      netdev@vger.kernel.org
8095 S:      Supported
8096 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8097 F:      drivers/net/ethernet/huawei/hinic/
8098
8099 HUGETLB FILESYSTEM
8100 M:      Mike Kravetz <mike.kravetz@oracle.com>
8101 L:      linux-mm@kvack.org
8102 S:      Maintained
8103 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8104 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8105 F:      Documentation/vm/hugetlbfs_reserv.rst
8106 F:      fs/hugetlbfs/
8107 F:      include/linux/hugetlb.h
8108 F:      mm/hugetlb.c
8109
8110 HVA ST MEDIA DRIVER
8111 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
8112 L:      linux-media@vger.kernel.org
8113 S:      Supported
8114 W:      https://linuxtv.org
8115 T:      git git://linuxtv.org/media_tree.git
8116 F:      drivers/media/platform/sti/hva
8117
8118 HWPOISON MEMORY FAILURE HANDLING
8119 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8120 L:      linux-mm@kvack.org
8121 S:      Maintained
8122 F:      mm/hwpoison-inject.c
8123 F:      mm/memory-failure.c
8124
8125 HYGON PROCESSOR SUPPORT
8126 M:      Pu Wen <puwen@hygon.cn>
8127 L:      linux-kernel@vger.kernel.org
8128 S:      Maintained
8129 F:      arch/x86/kernel/cpu/hygon.c
8130
8131 HYNIX HI556 SENSOR DRIVER
8132 M:      Shawn Tu <shawnx.tu@intel.com>
8133 L:      linux-media@vger.kernel.org
8134 S:      Maintained
8135 T:      git git://linuxtv.org/media_tree.git
8136 F:      drivers/media/i2c/hi556.c
8137
8138 Hyper-V CORE AND DRIVERS
8139 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8140 M:      Haiyang Zhang <haiyangz@microsoft.com>
8141 M:      Stephen Hemminger <sthemmin@microsoft.com>
8142 M:      Wei Liu <wei.liu@kernel.org>
8143 L:      linux-hyperv@vger.kernel.org
8144 S:      Supported
8145 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8146 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8147 F:      Documentation/ABI/testing/debugfs-hyperv
8148 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8149 F:      arch/x86/hyperv
8150 F:      arch/x86/include/asm/hyperv-tlfs.h
8151 F:      arch/x86/include/asm/mshyperv.h
8152 F:      arch/x86/include/asm/trace/hyperv.h
8153 F:      arch/x86/kernel/cpu/mshyperv.c
8154 F:      drivers/clocksource/hyperv_timer.c
8155 F:      drivers/hid/hid-hyperv.c
8156 F:      drivers/hv/
8157 F:      drivers/input/serio/hyperv-keyboard.c
8158 F:      drivers/iommu/hyperv-iommu.c
8159 F:      drivers/net/hyperv/
8160 F:      drivers/pci/controller/pci-hyperv-intf.c
8161 F:      drivers/pci/controller/pci-hyperv.c
8162 F:      drivers/scsi/storvsc_drv.c
8163 F:      drivers/uio/uio_hv_generic.c
8164 F:      drivers/video/fbdev/hyperv_fb.c
8165 F:      include/asm-generic/hyperv-tlfs.h
8166 F:      include/asm-generic/mshyperv.h
8167 F:      include/clocksource/hyperv_timer.h
8168 F:      include/linux/hyperv.h
8169 F:      include/uapi/linux/hyperv.h
8170 F:      net/vmw_vsock/hyperv_transport.c
8171 F:      tools/hv/
8172
8173 HYPERBUS SUPPORT
8174 M:      Vignesh Raghavendra <vigneshr@ti.com>
8175 L:      linux-mtd@lists.infradead.org
8176 S:      Supported
8177 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8178 C:      irc://irc.oftc.net/mtd
8179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8180 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8181 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8182 F:      drivers/mtd/hyperbus/
8183 F:      include/linux/mtd/hyperbus.h
8184
8185 HYPERVISOR VIRTUAL CONSOLE DRIVER
8186 L:      linuxppc-dev@lists.ozlabs.org
8187 S:      Odd Fixes
8188 F:      drivers/tty/hvc/
8189
8190 I2C ACPI SUPPORT
8191 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8192 L:      linux-i2c@vger.kernel.org
8193 L:      linux-acpi@vger.kernel.org
8194 S:      Maintained
8195 F:      drivers/i2c/i2c-core-acpi.c
8196
8197 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8198 M:      Ajay Gupta <ajayg@nvidia.com>
8199 L:      linux-i2c@vger.kernel.org
8200 S:      Maintained
8201 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8202 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8203
8204 I2C MUXES
8205 M:      Peter Rosin <peda@axentia.se>
8206 L:      linux-i2c@vger.kernel.org
8207 S:      Maintained
8208 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8209 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8210 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8211 F:      Documentation/i2c/i2c-topology.rst
8212 F:      Documentation/i2c/muxes/
8213 F:      drivers/i2c/i2c-mux.c
8214 F:      drivers/i2c/muxes/
8215 F:      include/linux/i2c-mux.h
8216
8217 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8218 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8219 L:      linux-i2c@vger.kernel.org
8220 S:      Maintained
8221 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8222 F:      drivers/i2c/busses/i2c-mv64xxx.c
8223
8224 I2C OVER PARALLEL PORT
8225 M:      Jean Delvare <jdelvare@suse.com>
8226 L:      linux-i2c@vger.kernel.org
8227 S:      Maintained
8228 F:      Documentation/i2c/busses/i2c-parport.rst
8229 F:      drivers/i2c/busses/i2c-parport.c
8230
8231 I2C SUBSYSTEM
8232 M:      Wolfram Sang <wsa@kernel.org>
8233 L:      linux-i2c@vger.kernel.org
8234 S:      Maintained
8235 W:      https://i2c.wiki.kernel.org/
8236 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8238 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8239 F:      Documentation/i2c/
8240 F:      drivers/i2c/*
8241 F:      include/linux/i2c-dev.h
8242 F:      include/linux/i2c-smbus.h
8243 F:      include/linux/i2c.h
8244 F:      include/uapi/linux/i2c-*.h
8245 F:      include/uapi/linux/i2c.h
8246
8247 I2C SUBSYSTEM HOST DRIVERS
8248 L:      linux-i2c@vger.kernel.org
8249 S:      Odd Fixes
8250 W:      https://i2c.wiki.kernel.org/
8251 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8253 F:      Documentation/devicetree/bindings/i2c/
8254 F:      drivers/i2c/algos/
8255 F:      drivers/i2c/busses/
8256
8257 I2C-TAOS-EVM DRIVER
8258 M:      Jean Delvare <jdelvare@suse.com>
8259 L:      linux-i2c@vger.kernel.org
8260 S:      Maintained
8261 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8262 F:      drivers/i2c/busses/i2c-taos-evm.c
8263
8264 I2C-TINY-USB DRIVER
8265 M:      Till Harbaum <till@harbaum.org>
8266 L:      linux-i2c@vger.kernel.org
8267 S:      Maintained
8268 W:      http://www.harbaum.org/till/i2c_tiny_usb
8269 F:      drivers/i2c/busses/i2c-tiny-usb.c
8270
8271 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8272 M:      Jean Delvare <jdelvare@suse.com>
8273 L:      linux-i2c@vger.kernel.org
8274 S:      Maintained
8275 F:      Documentation/i2c/busses/i2c-ali1535.rst
8276 F:      Documentation/i2c/busses/i2c-ali1563.rst
8277 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8278 F:      Documentation/i2c/busses/i2c-amd756.rst
8279 F:      Documentation/i2c/busses/i2c-amd8111.rst
8280 F:      Documentation/i2c/busses/i2c-i801.rst
8281 F:      Documentation/i2c/busses/i2c-nforce2.rst
8282 F:      Documentation/i2c/busses/i2c-piix4.rst
8283 F:      Documentation/i2c/busses/i2c-sis5595.rst
8284 F:      Documentation/i2c/busses/i2c-sis630.rst
8285 F:      Documentation/i2c/busses/i2c-sis96x.rst
8286 F:      Documentation/i2c/busses/i2c-via.rst
8287 F:      Documentation/i2c/busses/i2c-viapro.rst
8288 F:      drivers/i2c/busses/i2c-ali1535.c
8289 F:      drivers/i2c/busses/i2c-ali1563.c
8290 F:      drivers/i2c/busses/i2c-ali15x3.c
8291 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8292 F:      drivers/i2c/busses/i2c-amd756.c
8293 F:      drivers/i2c/busses/i2c-amd8111.c
8294 F:      drivers/i2c/busses/i2c-i801.c
8295 F:      drivers/i2c/busses/i2c-isch.c
8296 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8297 F:      drivers/i2c/busses/i2c-nforce2.c
8298 F:      drivers/i2c/busses/i2c-piix4.c
8299 F:      drivers/i2c/busses/i2c-sis5595.c
8300 F:      drivers/i2c/busses/i2c-sis630.c
8301 F:      drivers/i2c/busses/i2c-sis96x.c
8302 F:      drivers/i2c/busses/i2c-via.c
8303 F:      drivers/i2c/busses/i2c-viapro.c
8304
8305 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8306 M:      Hans de Goede <hdegoede@redhat.com>
8307 L:      linux-i2c@vger.kernel.org
8308 S:      Maintained
8309 F:      drivers/i2c/busses/i2c-cht-wc.c
8310
8311 I2C/SMBUS ISMT DRIVER
8312 M:      Seth Heasley <seth.heasley@intel.com>
8313 M:      Neil Horman <nhorman@tuxdriver.com>
8314 L:      linux-i2c@vger.kernel.org
8315 F:      Documentation/i2c/busses/i2c-ismt.rst
8316 F:      drivers/i2c/busses/i2c-ismt.c
8317
8318 I2C/SMBUS STUB DRIVER
8319 M:      Jean Delvare <jdelvare@suse.com>
8320 L:      linux-i2c@vger.kernel.org
8321 S:      Maintained
8322 F:      drivers/i2c/i2c-stub.c
8323
8324 I3C DRIVER FOR CADENCE I3C MASTER IP
8325 M:      Przemysław Gaj <pgaj@cadence.com>
8326 S:      Maintained
8327 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8328 F:      drivers/i3c/master/i3c-master-cdns.c
8329
8330 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8331 M:      Vitor Soares <vitor.soares@synopsys.com>
8332 S:      Maintained
8333 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8334 F:      drivers/i3c/master/dw*
8335
8336 I3C SUBSYSTEM
8337 M:      Boris Brezillon <bbrezillon@kernel.org>
8338 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8339 S:      Maintained
8340 C:      irc://chat.freenode.net/linux-i3c
8341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8342 F:      Documentation/ABI/testing/sysfs-bus-i3c
8343 F:      Documentation/devicetree/bindings/i3c/
8344 F:      Documentation/driver-api/i3c
8345 F:      drivers/i3c/
8346 F:      include/linux/i3c/
8347
8348 IA64 (Itanium) PLATFORM
8349 M:      Tony Luck <tony.luck@intel.com>
8350 M:      Fenghua Yu <fenghua.yu@intel.com>
8351 L:      linux-ia64@vger.kernel.org
8352 S:      Odd Fixes
8353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8354 F:      Documentation/ia64/
8355 F:      arch/ia64/
8356
8357 IBM Power 842 compression accelerator
8358 M:      Haren Myneni <haren@us.ibm.com>
8359 S:      Supported
8360 F:      crypto/842.c
8361 F:      drivers/crypto/nx/Kconfig
8362 F:      drivers/crypto/nx/Makefile
8363 F:      drivers/crypto/nx/nx-842*
8364 F:      include/linux/sw842.h
8365 F:      lib/842/
8366
8367 IBM Power in-Nest Crypto Acceleration
8368 M:      Breno Leitão <leitao@debian.org>
8369 M:      Nayna Jain <nayna@linux.ibm.com>
8370 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8371 L:      linux-crypto@vger.kernel.org
8372 S:      Supported
8373 F:      drivers/crypto/nx/Kconfig
8374 F:      drivers/crypto/nx/Makefile
8375 F:      drivers/crypto/nx/nx-aes*
8376 F:      drivers/crypto/nx/nx-sha*
8377 F:      drivers/crypto/nx/nx.*
8378 F:      drivers/crypto/nx/nx_csbcpb.h
8379 F:      drivers/crypto/nx/nx_debugfs.c
8380
8381 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8382 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8383 L:      linux-pci@vger.kernel.org
8384 L:      linuxppc-dev@lists.ozlabs.org
8385 S:      Supported
8386 F:      drivers/pci/hotplug/rpadlpar*
8387
8388 IBM Power Linux RAID adapter
8389 M:      Brian King <brking@us.ibm.com>
8390 S:      Supported
8391 F:      drivers/scsi/ipr.*
8392
8393 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8394 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8395 L:      linux-pci@vger.kernel.org
8396 L:      linuxppc-dev@lists.ozlabs.org
8397 S:      Supported
8398 F:      drivers/pci/hotplug/rpaphp*
8399
8400 IBM Power SRIOV Virtual NIC Device Driver
8401 M:      Dany Madden <drt@linux.ibm.com>
8402 M:      Lijun Pan <ljp@linux.ibm.com>
8403 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8404 L:      netdev@vger.kernel.org
8405 S:      Supported
8406 F:      drivers/net/ethernet/ibm/ibmvnic.*
8407
8408 IBM Power Virtual Accelerator Switchboard
8409 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8410 L:      linuxppc-dev@lists.ozlabs.org
8411 S:      Supported
8412 F:      arch/powerpc/include/asm/vas.h
8413 F:      arch/powerpc/platforms/powernv/copy-paste.h
8414 F:      arch/powerpc/platforms/powernv/vas*
8415
8416 IBM Power Virtual Ethernet Device Driver
8417 M:      Cristobal Forno <cforno12@linux.ibm.com>
8418 L:      netdev@vger.kernel.org
8419 S:      Supported
8420 F:      drivers/net/ethernet/ibm/ibmveth.*
8421
8422 IBM Power Virtual FC Device Drivers
8423 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8424 L:      linux-scsi@vger.kernel.org
8425 S:      Supported
8426 F:      drivers/scsi/ibmvscsi/ibmvfc*
8427
8428 IBM Power Virtual Management Channel Driver
8429 M:      Steven Royer <seroyer@linux.ibm.com>
8430 S:      Supported
8431 F:      drivers/misc/ibmvmc.*
8432
8433 IBM Power Virtual SCSI Device Drivers
8434 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8435 L:      linux-scsi@vger.kernel.org
8436 S:      Supported
8437 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8438 F:      include/scsi/viosrp.h
8439
8440 IBM Power Virtual SCSI Device Target Driver
8441 M:      Michael Cyr <mikecyr@linux.ibm.com>
8442 L:      linux-scsi@vger.kernel.org
8443 L:      target-devel@vger.kernel.org
8444 S:      Supported
8445 F:      drivers/scsi/ibmvscsi_tgt/
8446
8447 IBM Power VMX Cryptographic instructions
8448 M:      Breno Leitão <leitao@debian.org>
8449 M:      Nayna Jain <nayna@linux.ibm.com>
8450 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8451 L:      linux-crypto@vger.kernel.org
8452 S:      Supported
8453 F:      drivers/crypto/vmx/Kconfig
8454 F:      drivers/crypto/vmx/Makefile
8455 F:      drivers/crypto/vmx/aes*
8456 F:      drivers/crypto/vmx/ghash*
8457 F:      drivers/crypto/vmx/ppc-xlate.pl
8458 F:      drivers/crypto/vmx/vmx.c
8459
8460 IBM ServeRAID RAID DRIVER
8461 S:      Orphan
8462 F:      drivers/scsi/ips.*
8463
8464 ICH LPC AND GPIO DRIVER
8465 M:      Peter Tyser <ptyser@xes-inc.com>
8466 S:      Maintained
8467 F:      drivers/gpio/gpio-ich.c
8468 F:      drivers/mfd/lpc_ich.c
8469
8470 ICY I2C DRIVER
8471 M:      Max Staudt <max@enpas.org>
8472 L:      linux-i2c@vger.kernel.org
8473 S:      Maintained
8474 F:      drivers/i2c/busses/i2c-icy.c
8475
8476 IDE SUBSYSTEM
8477 M:      "David S. Miller" <davem@davemloft.net>
8478 L:      linux-ide@vger.kernel.org
8479 S:      Maintained
8480 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8482 F:      Documentation/ide/
8483 F:      drivers/ide/
8484 F:      include/linux/ide.h
8485
8486 IDE/ATAPI DRIVERS
8487 M:      Borislav Petkov <bp@alien8.de>
8488 L:      linux-ide@vger.kernel.org
8489 S:      Maintained
8490 F:      Documentation/cdrom/ide-cd.rst
8491 F:      drivers/ide/ide-cd*
8492
8493 IDEAPAD LAPTOP EXTRAS DRIVER
8494 M:      Ike Panhc <ike.pan@canonical.com>
8495 L:      platform-driver-x86@vger.kernel.org
8496 S:      Maintained
8497 W:      http://launchpad.net/ideapad-laptop
8498 F:      drivers/platform/x86/ideapad-laptop.c
8499
8500 IDEAPAD LAPTOP SLIDEBAR DRIVER
8501 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
8502 L:      linux-input@vger.kernel.org
8503 S:      Maintained
8504 W:      https://github.com/o2genum/ideapad-slidebar
8505 F:      drivers/input/misc/ideapad_slidebar.c
8506
8507 IDT VersaClock 5 CLOCK DRIVER
8508 M:      Luca Ceresoli <luca@lucaceresoli.net>
8509 S:      Maintained
8510 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
8511 F:      drivers/clk/clk-versaclock5.c
8512
8513 IEEE 802.15.4 SUBSYSTEM
8514 M:      Alexander Aring <alex.aring@gmail.com>
8515 M:      Stefan Schmidt <stefan@datenfreihafen.org>
8516 L:      linux-wpan@vger.kernel.org
8517 S:      Maintained
8518 W:      https://linux-wpan.org/
8519 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8521 F:      Documentation/networking/ieee802154.rst
8522 F:      drivers/net/ieee802154/
8523 F:      include/linux/ieee802154.h
8524 F:      include/linux/nl802154.h
8525 F:      include/net/af_ieee802154.h
8526 F:      include/net/cfg802154.h
8527 F:      include/net/ieee802154_netdev.h
8528 F:      include/net/mac802154.h
8529 F:      include/net/nl802154.h
8530 F:      net/ieee802154/
8531 F:      net/mac802154/
8532
8533 IFE PROTOCOL
8534 M:      Yotam Gigi <yotam.gi@gmail.com>
8535 M:      Jamal Hadi Salim <jhs@mojatatu.com>
8536 F:      include/net/ife.h
8537 F:      include/uapi/linux/ife.h
8538 F:      net/ife
8539
8540 IGORPLUG-USB IR RECEIVER
8541 M:      Sean Young <sean@mess.org>
8542 L:      linux-media@vger.kernel.org
8543 S:      Maintained
8544 F:      drivers/media/rc/igorplugusb.c
8545
8546 IGUANAWORKS USB IR TRANSCEIVER
8547 M:      Sean Young <sean@mess.org>
8548 L:      linux-media@vger.kernel.org
8549 S:      Maintained
8550 F:      drivers/media/rc/iguanair.c
8551
8552 IIO DIGITAL POTENTIOMETER DAC
8553 M:      Peter Rosin <peda@axentia.se>
8554 L:      linux-iio@vger.kernel.org
8555 S:      Maintained
8556 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8557 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8558 F:      drivers/iio/dac/dpot-dac.c
8559
8560 IIO ENVELOPE DETECTOR
8561 M:      Peter Rosin <peda@axentia.se>
8562 L:      linux-iio@vger.kernel.org
8563 S:      Maintained
8564 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8565 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8566 F:      drivers/iio/adc/envelope-detector.c
8567
8568 IIO MULTIPLEXER
8569 M:      Peter Rosin <peda@axentia.se>
8570 L:      linux-iio@vger.kernel.org
8571 S:      Maintained
8572 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8573 F:      drivers/iio/multiplexer/iio-mux.c
8574
8575 IIO SUBSYSTEM AND DRIVERS
8576 M:      Jonathan Cameron <jic23@kernel.org>
8577 R:      Lars-Peter Clausen <lars@metafoo.de>
8578 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
8579 L:      linux-iio@vger.kernel.org
8580 S:      Maintained
8581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8582 F:      Documentation/ABI/testing/configfs-iio*
8583 F:      Documentation/ABI/testing/sysfs-bus-iio*
8584 F:      Documentation/devicetree/bindings/iio/
8585 F:      drivers/iio/
8586 F:      drivers/staging/iio/
8587 F:      include/linux/iio/
8588 F:      tools/iio/
8589
8590 IIO UNIT CONVERTER
8591 M:      Peter Rosin <peda@axentia.se>
8592 L:      linux-iio@vger.kernel.org
8593 S:      Maintained
8594 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8595 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8596 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8597 F:      drivers/iio/afe/iio-rescale.c
8598
8599 IKANOS/ADI EAGLE ADSL USB DRIVER
8600 M:      Matthieu Castet <castet.matthieu@free.fr>
8601 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8602 S:      Maintained
8603 F:      drivers/usb/atm/ueagle-atm.c
8604
8605 IMGTEC ASCII LCD DRIVER
8606 M:      Paul Burton <paulburton@kernel.org>
8607 S:      Maintained
8608 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8609 F:      drivers/auxdisplay/img-ascii-lcd.c
8610
8611 IMGTEC IR DECODER DRIVER
8612 S:      Orphan
8613 F:      drivers/media/rc/img-ir/
8614
8615 IMON SOUNDGRAPH USB IR RECEIVER
8616 M:      Sean Young <sean@mess.org>
8617 L:      linux-media@vger.kernel.org
8618 S:      Maintained
8619 F:      drivers/media/rc/imon.c
8620 F:      drivers/media/rc/imon_raw.c
8621
8622 IMS TWINTURBO FRAMEBUFFER DRIVER
8623 L:      linux-fbdev@vger.kernel.org
8624 S:      Orphan
8625 F:      drivers/video/fbdev/imsttfb.c
8626
8627 INA209 HARDWARE MONITOR DRIVER
8628 M:      Guenter Roeck <linux@roeck-us.net>
8629 L:      linux-hwmon@vger.kernel.org
8630 S:      Maintained
8631 F:      Documentation/devicetree/bindings/hwmon/ina2xx.txt
8632 F:      Documentation/hwmon/ina209.rst
8633 F:      drivers/hwmon/ina209.c
8634
8635 INA2XX HARDWARE MONITOR DRIVER
8636 M:      Guenter Roeck <linux@roeck-us.net>
8637 L:      linux-hwmon@vger.kernel.org
8638 S:      Maintained
8639 F:      Documentation/hwmon/ina2xx.rst
8640 F:      drivers/hwmon/ina2xx.c
8641 F:      include/linux/platform_data/ina2xx.h
8642
8643 INDUSTRY PACK SUBSYSTEM (IPACK)
8644 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8645 M:      Jens Taprogge <jens.taprogge@taprogge.org>
8646 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8647 L:      industrypack-devel@lists.sourceforge.net
8648 S:      Maintained
8649 W:      http://industrypack.sourceforge.net
8650 F:      drivers/ipack/
8651
8652 INFINEON DPS310 Driver
8653 M:      Eddie James <eajames@linux.ibm.com>
8654 L:      linux-iio@vger.kernel.org
8655 S:      Maintained
8656 F:      drivers/iio/pressure/dps310.c
8657
8658 INFINIBAND SUBSYSTEM
8659 M:      Doug Ledford <dledford@redhat.com>
8660 M:      Jason Gunthorpe <jgg@nvidia.com>
8661 L:      linux-rdma@vger.kernel.org
8662 S:      Supported
8663 W:      https://github.com/linux-rdma/rdma-core
8664 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8666 F:      Documentation/devicetree/bindings/infiniband/
8667 F:      Documentation/infiniband/
8668 F:      drivers/infiniband/
8669 F:      include/rdma/
8670 F:      include/trace/events/ib_mad.h
8671 F:      include/trace/events/ib_umad.h
8672 F:      include/uapi/linux/if_infiniband.h
8673 F:      include/uapi/rdma/
8674 F:      samples/bpf/ibumad_kern.c
8675 F:      samples/bpf/ibumad_user.c
8676
8677 INGENIC JZ4780 DMA Driver
8678 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
8679 S:      Maintained
8680 F:      drivers/dma/dma-jz4780.c
8681
8682 INGENIC JZ4780 NAND DRIVER
8683 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
8684 L:      linux-mtd@lists.infradead.org
8685 S:      Maintained
8686 F:      drivers/mtd/nand/raw/ingenic/
8687
8688 INGENIC JZ47xx SoCs
8689 M:      Paul Cercueil <paul@crapouillou.net>
8690 S:      Maintained
8691 F:      arch/mips/boot/dts/ingenic/
8692 F:      arch/mips/generic/board-ingenic.c
8693 F:      arch/mips/include/asm/mach-ingenic/
8694 F:      arch/mips/ingenic/Kconfig
8695 F:      drivers/clk/ingenic/
8696 F:      drivers/dma/dma-jz4780.c
8697 F:      drivers/gpu/drm/ingenic/
8698 F:      drivers/i2c/busses/i2c-jz4780.c
8699 F:      drivers/iio/adc/ingenic-adc.c
8700 F:      drivers/irqchip/irq-ingenic.c
8701 F:      drivers/memory/jz4780-nemc.c
8702 F:      drivers/mmc/host/jz4740_mmc.c
8703 F:      drivers/mtd/nand/raw/ingenic/
8704 F:      drivers/pinctrl/pinctrl-ingenic.c
8705 F:      drivers/power/supply/ingenic-battery.c
8706 F:      drivers/pwm/pwm-jz4740.c
8707 F:      drivers/remoteproc/ingenic_rproc.c
8708 F:      drivers/rtc/rtc-jz4740.c
8709 F:      drivers/tty/serial/8250/8250_ingenic.c
8710 F:      drivers/usb/musb/jz4740.c
8711 F:      drivers/watchdog/jz4740_wdt.c
8712 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8713 F:      include/linux/mfd/ingenic-tcu.h
8714 F:      sound/soc/codecs/jz47*
8715 F:      sound/soc/jz4740/
8716
8717 INOTIFY
8718 M:      Jan Kara <jack@suse.cz>
8719 R:      Amir Goldstein <amir73il@gmail.com>
8720 L:      linux-fsdevel@vger.kernel.org
8721 S:      Maintained
8722 F:      Documentation/filesystems/inotify.rst
8723 F:      fs/notify/inotify/
8724 F:      include/linux/inotify.h
8725 F:      include/uapi/linux/inotify.h
8726
8727 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8728 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
8729 L:      linux-input@vger.kernel.org
8730 S:      Maintained
8731 Q:      http://patchwork.kernel.org/project/linux-input/list/
8732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8733 F:      Documentation/devicetree/bindings/input/
8734 F:      Documentation/devicetree/bindings/serio/
8735 F:      Documentation/input/
8736 F:      drivers/input/
8737 F:      include/linux/input.h
8738 F:      include/linux/input/
8739 F:      include/uapi/linux/input-event-codes.h
8740 F:      include/uapi/linux/input.h
8741
8742 INPUT MULTITOUCH (MT) PROTOCOL
8743 M:      Henrik Rydberg <rydberg@bitmath.org>
8744 L:      linux-input@vger.kernel.org
8745 S:      Odd fixes
8746 F:      Documentation/input/multi-touch-protocol.rst
8747 F:      drivers/input/input-mt.c
8748 K:      \b(ABS|SYN)_MT_
8749
8750 INSIDE SECURE CRYPTO DRIVER
8751 M:      Antoine Tenart <atenart@kernel.org>
8752 L:      linux-crypto@vger.kernel.org
8753 S:      Maintained
8754 F:      drivers/crypto/inside-secure/
8755
8756 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8757 M:      Mimi Zohar <zohar@linux.ibm.com>
8758 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
8759 L:      linux-integrity@vger.kernel.org
8760 S:      Supported
8761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8762 F:      security/integrity/ima/
8763
8764 INTEL 810/815 FRAMEBUFFER DRIVER
8765 M:      Antonino Daplas <adaplas@gmail.com>
8766 L:      linux-fbdev@vger.kernel.org
8767 S:      Maintained
8768 F:      drivers/video/fbdev/i810/
8769
8770 INTEL ASoC DRIVERS
8771 M:      Cezary Rojewski <cezary.rojewski@intel.com>
8772 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
8773 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
8774 M:      Jie Yang <yang.jie@linux.intel.com>
8775 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8776 S:      Supported
8777 F:      sound/soc/intel/
8778
8779 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8780 M:      Hans de Goede <hdegoede@redhat.com>
8781 L:      platform-driver-x86@vger.kernel.org
8782 S:      Maintained
8783 F:      drivers/platform/x86/intel_atomisp2_pm.c
8784
8785 INTEL ATOMISP2 LED DRIVER
8786 M:      Hans de Goede <hdegoede@redhat.com>
8787 L:      platform-driver-x86@vger.kernel.org
8788 S:      Maintained
8789 F:      drivers/platform/x86/intel_atomisp2_led.c
8790
8791 INTEL BROXTON PMC DRIVER
8792 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8793 M:      Zha Qipeng <qipeng.zha@intel.com>
8794 S:      Maintained
8795 F:      drivers/mfd/intel_pmc_bxt.c
8796 F:      include/linux/mfd/intel_pmc_bxt.h
8797
8798 INTEL C600 SERIES SAS CONTROLLER DRIVER
8799 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
8800 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
8801 L:      linux-scsi@vger.kernel.org
8802 S:      Supported
8803 T:      git git://git.code.sf.net/p/intel-sas/isci
8804 F:      drivers/scsi/isci/
8805
8806 INTEL CPU family model numbers
8807 M:      Tony Luck <tony.luck@intel.com>
8808 M:      x86@kernel.org
8809 L:      linux-kernel@vger.kernel.org
8810 S:      Supported
8811 F:      arch/x86/include/asm/intel-family.h
8812
8813 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8814 M:      Jani Nikula <jani.nikula@linux.intel.com>
8815 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
8816 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
8817 L:      intel-gfx@lists.freedesktop.org
8818 S:      Supported
8819 W:      https://01.org/linuxgraphics/
8820 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8821 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
8822 C:      irc://chat.freenode.net/intel-gfx
8823 T:      git git://anongit.freedesktop.org/drm-intel
8824 F:      Documentation/gpu/i915.rst
8825 F:      drivers/gpu/drm/i915/
8826 F:      include/drm/i915*
8827 F:      include/uapi/drm/i915_drm.h
8828
8829 INTEL ETHERNET DRIVERS
8830 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
8831 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
8832 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
8833 S:      Supported
8834 W:      http://www.intel.com/support/feedback.htm
8835 W:      http://e1000.sourceforge.net/
8836 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
8838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
8839 F:      Documentation/networking/device_drivers/ethernet/intel/
8840 F:      drivers/net/ethernet/intel/
8841 F:      drivers/net/ethernet/intel/*/
8842 F:      include/linux/avf/virtchnl.h
8843
8844 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8845 M:      Maik Broemme <mbroemme@libmpq.org>
8846 L:      linux-fbdev@vger.kernel.org
8847 S:      Maintained
8848 F:      Documentation/fb/intelfb.rst
8849 F:      drivers/video/fbdev/intelfb/
8850
8851 INTEL GPIO DRIVERS
8852 M:      Andy Shevchenko <andy@kernel.org>
8853 L:      linux-gpio@vger.kernel.org
8854 S:      Maintained
8855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8856 F:      drivers/gpio/gpio-ich.c
8857 F:      drivers/gpio/gpio-intel-mid.c
8858 F:      drivers/gpio/gpio-merrifield.c
8859 F:      drivers/gpio/gpio-ml-ioh.c
8860 F:      drivers/gpio/gpio-pch.c
8861 F:      drivers/gpio/gpio-sch.c
8862 F:      drivers/gpio/gpio-sodaville.c
8863
8864 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8865 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
8866 M:      Zhi Wang <zhi.a.wang@intel.com>
8867 L:      intel-gvt-dev@lists.freedesktop.org
8868 L:      intel-gfx@lists.freedesktop.org
8869 S:      Supported
8870 W:      https://01.org/igvt-g
8871 T:      git https://github.com/intel/gvt-linux.git
8872 F:      drivers/gpu/drm/i915/gvt/
8873
8874 INTEL HID EVENT DRIVER
8875 M:      Alex Hung <alex.hung@canonical.com>
8876 L:      platform-driver-x86@vger.kernel.org
8877 S:      Maintained
8878 F:      drivers/platform/x86/intel-hid.c
8879
8880 INTEL I/OAT DMA DRIVER
8881 M:      Dave Jiang <dave.jiang@intel.com>
8882 R:      Dan Williams <dan.j.williams@intel.com>
8883 L:      dmaengine@vger.kernel.org
8884 S:      Supported
8885 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8886 F:      drivers/dma/ioat*
8887
8888 INTEL IADX DRIVER
8889 M:      Dave Jiang <dave.jiang@intel.com>
8890 L:      dmaengine@vger.kernel.org
8891 S:      Supported
8892 F:      drivers/dma/idxd/*
8893 F:      include/uapi/linux/idxd.h
8894
8895 INTEL IDLE DRIVER
8896 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
8897 M:      Len Brown <lenb@kernel.org>
8898 L:      linux-pm@vger.kernel.org
8899 S:      Supported
8900 B:      https://bugzilla.kernel.org
8901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8902 F:      drivers/idle/intel_idle.c
8903
8904 INTEL INTEGRATED SENSOR HUB DRIVER
8905 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8906 M:      Jiri Kosina <jikos@kernel.org>
8907 L:      linux-input@vger.kernel.org
8908 S:      Maintained
8909 F:      drivers/hid/intel-ish-hid/
8910
8911 INTEL IOMMU (VT-d)
8912 M:      David Woodhouse <dwmw2@infradead.org>
8913 M:      Lu Baolu <baolu.lu@linux.intel.com>
8914 L:      iommu@lists.linux-foundation.org
8915 S:      Supported
8916 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8917 F:      drivers/iommu/intel/
8918 F:      include/linux/intel-iommu.h
8919 F:      include/linux/intel-svm.h
8920
8921 INTEL IOP-ADMA DMA DRIVER
8922 R:      Dan Williams <dan.j.williams@intel.com>
8923 S:      Odd fixes
8924 F:      drivers/dma/iop-adma.c
8925
8926 INTEL IPU3 CSI-2 CIO2 DRIVER
8927 M:      Yong Zhi <yong.zhi@intel.com>
8928 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8929 M:      Bingbu Cao <bingbu.cao@intel.com>
8930 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
8931 L:      linux-media@vger.kernel.org
8932 S:      Maintained
8933 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
8934 F:      drivers/media/pci/intel/ipu3/
8935
8936 INTEL IPU3 CSI-2 IMGU DRIVER
8937 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8938 R:      Bingbu Cao <bingbu.cao@intel.com>
8939 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
8940 L:      linux-media@vger.kernel.org
8941 S:      Maintained
8942 F:      Documentation/admin-guide/media/ipu3.rst
8943 F:      Documentation/admin-guide/media/ipu3_rcb.svg
8944 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
8945 F:      drivers/staging/media/ipu3/
8946
8947 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8948 M:      Krzysztof Halasa <khalasa@piap.pl>
8949 S:      Maintained
8950 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
8951 F:      drivers/net/wan/ixp4xx_hss.c
8952 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
8953 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
8954 F:      include/linux/soc/ixp4xx/npe.h
8955 F:      include/linux/soc/ixp4xx/qmgr.h
8956
8957 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
8958 M:      Deepak Saxena <dsaxena@plexity.net>
8959 S:      Maintained
8960 F:      drivers/char/hw_random/ixp4xx-rng.c
8961
8962 INTEL MANAGEMENT ENGINE (mei)
8963 M:      Tomas Winkler <tomas.winkler@intel.com>
8964 L:      linux-kernel@vger.kernel.org
8965 S:      Supported
8966 F:      Documentation/driver-api/mei/*
8967 F:      drivers/misc/mei/
8968 F:      drivers/watchdog/mei_wdt.c
8969 F:      include/linux/mei_cl_bus.h
8970 F:      include/uapi/linux/mei.h
8971 F:      samples/mei/*
8972
8973 INTEL MENLOW THERMAL DRIVER
8974 M:      Sujith Thomas <sujith.thomas@intel.com>
8975 L:      platform-driver-x86@vger.kernel.org
8976 S:      Supported
8977 W:      https://01.org/linux-acpi
8978 F:      drivers/platform/x86/intel_menlow.c
8979
8980 INTEL MIC DRIVERS (mic)
8981 M:      Sudeep Dutt <sudeep.dutt@intel.com>
8982 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
8983 S:      Supported
8984 W:      https://github.com/sudeepdutt/mic
8985 W:      http://software.intel.com/en-us/mic-developer
8986 F:      Documentation/misc-devices/mic/
8987 F:      drivers/dma/mic_x100_dma.c
8988 F:      drivers/dma/mic_x100_dma.h
8989 F:      drivers/misc/mic/
8990 F:      include/linux/mic_bus.h
8991 F:      include/linux/scif.h
8992 F:      include/uapi/linux/mic_common.h
8993 F:      include/uapi/linux/mic_ioctl.h
8994 F:      include/uapi/linux/scif_ioctl.h
8995
8996 INTEL P-Unit IPC DRIVER
8997 M:      Zha Qipeng <qipeng.zha@intel.com>
8998 L:      platform-driver-x86@vger.kernel.org
8999 S:      Maintained
9000 F:      arch/x86/include/asm/intel_punit_ipc.h
9001 F:      drivers/platform/x86/intel_punit_ipc.c
9002
9003 INTEL PMC CORE DRIVER
9004 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9005 M:      David E Box <david.e.box@intel.com>
9006 L:      platform-driver-x86@vger.kernel.org
9007 S:      Maintained
9008 F:      drivers/platform/x86/intel_pmc_core*
9009
9010 INTEL PMIC GPIO DRIVERS
9011 M:      Andy Shevchenko <andy@kernel.org>
9012 S:      Maintained
9013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9014 F:      drivers/gpio/gpio-*cove.c
9015 F:      drivers/gpio/gpio-msic.c
9016
9017 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9018 M:      Andy Shevchenko <andy@kernel.org>
9019 S:      Maintained
9020 F:      drivers/mfd/intel_msic.c
9021 F:      drivers/mfd/intel_soc_pmic*
9022 F:      include/linux/mfd/intel_msic.h
9023 F:      include/linux/mfd/intel_soc_pmic*
9024
9025 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9026 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9027 L:      linux-wireless@vger.kernel.org
9028 S:      Maintained
9029 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9030 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9031 F:      drivers/net/wireless/intel/ipw2x00/
9032
9033 INTEL PSTATE DRIVER
9034 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9035 M:      Len Brown <lenb@kernel.org>
9036 L:      linux-pm@vger.kernel.org
9037 S:      Supported
9038 F:      drivers/cpufreq/intel_pstate.c
9039
9040 INTEL RDMA RNIC DRIVER
9041 M:      Faisal Latif <faisal.latif@intel.com>
9042 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9043 L:      linux-rdma@vger.kernel.org
9044 S:      Supported
9045 F:      drivers/infiniband/hw/i40iw/
9046 F:      include/uapi/rdma/i40iw-abi.h
9047
9048 INTEL SCU DRIVERS
9049 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9050 S:      Maintained
9051 F:      arch/x86/include/asm/intel_scu_ipc.h
9052 F:      drivers/platform/x86/intel_scu_*
9053
9054 INTEL SPEED SELECT TECHNOLOGY
9055 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9056 L:      platform-driver-x86@vger.kernel.org
9057 S:      Maintained
9058 F:      drivers/platform/x86/intel_speed_select_if/
9059 F:      include/uapi/linux/isst_if.h
9060 F:      tools/power/x86/intel-speed-select/
9061
9062 INTEL STRATIX10 FIRMWARE DRIVERS
9063 M:      Richard Gong <richard.gong@linux.intel.com>
9064 L:      linux-kernel@vger.kernel.org
9065 S:      Maintained
9066 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9067 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9068 F:      drivers/firmware/stratix10-rsu.c
9069 F:      drivers/firmware/stratix10-svc.c
9070 F:      include/linux/firmware/intel/stratix10-smc.h
9071 F:      include/linux/firmware/intel/stratix10-svc-client.h
9072
9073 INTEL TELEMETRY DRIVER
9074 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
9075 M:      "David E. Box" <david.e.box@linux.intel.com>
9076 L:      platform-driver-x86@vger.kernel.org
9077 S:      Maintained
9078 F:      arch/x86/include/asm/intel_telemetry.h
9079 F:      drivers/platform/x86/intel_telemetry*
9080
9081 INTEL UNCORE FREQUENCY CONTROL
9082 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9083 L:      platform-driver-x86@vger.kernel.org
9084 S:      Maintained
9085 F:      drivers/platform/x86/intel-uncore-frequency.c
9086
9087 INTEL VIRTUAL BUTTON DRIVER
9088 M:      AceLan Kao <acelan.kao@canonical.com>
9089 L:      platform-driver-x86@vger.kernel.org
9090 S:      Maintained
9091 F:      drivers/platform/x86/intel-vbtn.c
9092
9093 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9094 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9095 L:      linux-wireless@vger.kernel.org
9096 S:      Supported
9097 F:      drivers/net/wireless/intel/iwlegacy/
9098
9099 INTEL WIRELESS WIFI LINK (iwlwifi)
9100 M:      Johannes Berg <johannes.berg@intel.com>
9101 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
9102 M:      Luca Coelho <luciano.coelho@intel.com>
9103 M:      Intel Linux Wireless <linuxwifi@intel.com>
9104 L:      linux-wireless@vger.kernel.org
9105 S:      Supported
9106 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9108 F:      drivers/net/wireless/intel/iwlwifi/
9109
9110 INTEL WIRELESS WIMAX CONNECTION 2400
9111 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
9112 M:      linux-wimax@intel.com
9113 L:      wimax@linuxwimax.org (subscribers-only)
9114 S:      Supported
9115 W:      http://linuxwimax.org
9116 F:      Documentation/admin-guide/wimax/i2400m.rst
9117 F:      drivers/net/wimax/i2400m/
9118 F:      include/uapi/linux/wimax/i2400m.h
9119
9120 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9121 M:      Jithu Joseph <jithu.joseph@intel.com>
9122 R:      Maurice Ma <maurice.ma@intel.com>
9123 S:      Maintained
9124 W:      https://slimbootloader.github.io/security/firmware-update.html
9125 F:      drivers/platform/x86/intel-wmi-sbl-fw-update.c
9126
9127 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9128 M:      Mario Limonciello <mario.limonciello@dell.com>
9129 S:      Maintained
9130 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
9131
9132 INTEL(R) TRACE HUB
9133 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9134 S:      Supported
9135 F:      Documentation/trace/intel_th.rst
9136 F:      drivers/hwtracing/intel_th/
9137 F:      include/linux/intel_th.h
9138
9139 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9140 M:      Ning Sun <ning.sun@intel.com>
9141 L:      tboot-devel@lists.sourceforge.net
9142 S:      Supported
9143 W:      http://tboot.sourceforge.net
9144 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9145 F:      Documentation/x86/intel_txt.rst
9146 F:      arch/x86/kernel/tboot.c
9147 F:      include/linux/tboot.h
9148
9149 INTERCONNECT API
9150 M:      Georgi Djakov <georgi.djakov@linaro.org>
9151 L:      linux-pm@vger.kernel.org
9152 S:      Maintained
9153 F:      Documentation/devicetree/bindings/interconnect/
9154 F:      Documentation/driver-api/interconnect.rst
9155 F:      drivers/interconnect/
9156 F:      include/dt-bindings/interconnect/
9157 F:      include/linux/interconnect-provider.h
9158 F:      include/linux/interconnect.h
9159
9160 INVENSENSE ICM-426xx IMU DRIVER
9161 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9162 L:      linux-iio@vger.kernel.org
9163 S:      Maintained
9164 W       https://invensense.tdk.com/
9165 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9166 F:      drivers/iio/imu/inv_icm42600/
9167
9168 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9169 M:      Linus Walleij <linus.walleij@linaro.org>
9170 L:      linux-iio@vger.kernel.org
9171 S:      Maintained
9172 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
9173 F:      drivers/iio/gyro/mpu3050*
9174
9175 IOC3 ETHERNET DRIVER
9176 M:      Ralf Baechle <ralf@linux-mips.org>
9177 L:      linux-mips@vger.kernel.org
9178 S:      Maintained
9179 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9180
9181 IOMAP FILESYSTEM LIBRARY
9182 M:      Christoph Hellwig <hch@infradead.org>
9183 M:      Darrick J. Wong <darrick.wong@oracle.com>
9184 M:      linux-xfs@vger.kernel.org
9185 M:      linux-fsdevel@vger.kernel.org
9186 L:      linux-xfs@vger.kernel.org
9187 L:      linux-fsdevel@vger.kernel.org
9188 S:      Supported
9189 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9190 F:      fs/iomap/
9191 F:      include/linux/iomap.h
9192
9193 IOMMU DRIVERS
9194 M:      Joerg Roedel <joro@8bytes.org>
9195 L:      iommu@lists.linux-foundation.org
9196 S:      Maintained
9197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9198 F:      Documentation/devicetree/bindings/iommu/
9199 F:      Documentation/userspace-api/iommu.rst
9200 F:      drivers/iommu/
9201 F:      include/linux/iommu.h
9202 F:      include/linux/iova.h
9203 F:      include/linux/of_iommu.h
9204 F:      include/uapi/linux/iommu.h
9205
9206 IO_URING
9207 M:      Jens Axboe <axboe@kernel.dk>
9208 L:      io-uring@vger.kernel.org
9209 S:      Maintained
9210 T:      git git://git.kernel.dk/linux-block
9211 T:      git git://git.kernel.dk/liburing
9212 F:      fs/io-wq.c
9213 F:      fs/io-wq.h
9214 F:      fs/io_uring.c
9215 F:      include/uapi/linux/io_uring.h
9216
9217 IPMI SUBSYSTEM
9218 M:      Corey Minyard <minyard@acm.org>
9219 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9220 S:      Supported
9221 W:      http://openipmi.sourceforge.net/
9222 F:      Documentation/driver-api/ipmi.rst
9223 F:      Documentation/devicetree/bindings/ipmi/
9224 F:      drivers/char/ipmi/
9225 F:      include/linux/ipmi*
9226 F:      include/uapi/linux/ipmi*
9227
9228 IPS SCSI RAID DRIVER
9229 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9230 L:      linux-scsi@vger.kernel.org
9231 S:      Maintained
9232 W:      http://www.adaptec.com/
9233 F:      drivers/scsi/ips*
9234
9235 IPVS
9236 M:      Wensong Zhang <wensong@linux-vs.org>
9237 M:      Simon Horman <horms@verge.net.au>
9238 M:      Julian Anastasov <ja@ssi.bg>
9239 L:      netdev@vger.kernel.org
9240 L:      lvs-devel@vger.kernel.org
9241 S:      Maintained
9242 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9244 F:      Documentation/networking/ipvs-sysctl.rst
9245 F:      include/net/ip_vs.h
9246 F:      include/uapi/linux/ip_vs.h
9247 F:      net/netfilter/ipvs/
9248
9249 IPWIRELESS DRIVER
9250 M:      Jiri Kosina <jikos@kernel.org>
9251 M:      David Sterba <dsterba@suse.com>
9252 S:      Odd Fixes
9253 F:      drivers/tty/ipwireless/
9254
9255 IPX NETWORK LAYER
9256 L:      netdev@vger.kernel.org
9257 S:      Obsolete
9258 F:      include/uapi/linux/ipx.h
9259
9260 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9261 M:      Marc Zyngier <maz@kernel.org>
9262 S:      Maintained
9263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9264 F:      Documentation/core-api/irq/irq-domain.rst
9265 F:      include/linux/irqdomain.h
9266 F:      kernel/irq/irqdomain.c
9267 F:      kernel/irq/msi.c
9268
9269 IRQ SUBSYSTEM
9270 M:      Thomas Gleixner <tglx@linutronix.de>
9271 L:      linux-kernel@vger.kernel.org
9272 S:      Maintained
9273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9274 F:      kernel/irq/
9275
9276 IRQCHIP DRIVERS
9277 M:      Thomas Gleixner <tglx@linutronix.de>
9278 M:      Jason Cooper <jason@lakedaemon.net>
9279 M:      Marc Zyngier <maz@kernel.org>
9280 L:      linux-kernel@vger.kernel.org
9281 S:      Maintained
9282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9283 F:      Documentation/devicetree/bindings/interrupt-controller/
9284 F:      drivers/irqchip/
9285
9286 ISA
9287 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9288 S:      Maintained
9289 F:      Documentation/driver-api/isa.rst
9290 F:      drivers/base/isa.c
9291 F:      include/linux/isa.h
9292
9293 ISA RADIO MODULE
9294 M:      Hans Verkuil <hverkuil@xs4all.nl>
9295 L:      linux-media@vger.kernel.org
9296 S:      Maintained
9297 W:      https://linuxtv.org
9298 T:      git git://linuxtv.org/media_tree.git
9299 F:      drivers/media/radio/radio-isa*
9300
9301 ISAPNP
9302 M:      Jaroslav Kysela <perex@perex.cz>
9303 S:      Maintained
9304 F:      Documentation/driver-api/isapnp.rst
9305 F:      drivers/pnp/isapnp/
9306 F:      include/linux/isapnp.h
9307
9308 ISCSI
9309 M:      Lee Duncan <lduncan@suse.com>
9310 M:      Chris Leech <cleech@redhat.com>
9311 L:      open-iscsi@googlegroups.com
9312 L:      linux-scsi@vger.kernel.org
9313 S:      Maintained
9314 W:      www.open-iscsi.com
9315 F:      drivers/scsi/*iscsi*
9316 F:      include/scsi/*iscsi*
9317
9318 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9319 M:      Peter Jones <pjones@redhat.com>
9320 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
9321 S:      Maintained
9322 F:      drivers/firmware/iscsi_ibft*
9323
9324 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9325 M:      Sagi Grimberg <sagi@grimberg.me>
9326 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
9327 L:      linux-rdma@vger.kernel.org
9328 S:      Supported
9329 W:      http://www.openfabrics.org
9330 W:      www.open-iscsi.org
9331 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9332 F:      drivers/infiniband/ulp/iser/
9333
9334 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9335 M:      Sagi Grimberg <sagi@grimberg.me>
9336 L:      linux-rdma@vger.kernel.org
9337 L:      target-devel@vger.kernel.org
9338 S:      Supported
9339 W:      http://www.linux-iscsi.org
9340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9341 F:      drivers/infiniband/ulp/isert
9342
9343 ISDN/CMTP OVER BLUETOOTH
9344 M:      Karsten Keil <isdn@linux-pingi.de>
9345 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9346 L:      netdev@vger.kernel.org
9347 S:      Odd Fixes
9348 W:      http://www.isdn4linux.de
9349 F:      Documentation/isdn/
9350 F:      drivers/isdn/capi/
9351 F:      include/linux/isdn/
9352 F:      include/uapi/linux/isdn/
9353 F:      net/bluetooth/cmtp/
9354
9355 ISDN/mISDN SUBSYSTEM
9356 M:      Karsten Keil <isdn@linux-pingi.de>
9357 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9358 L:      netdev@vger.kernel.org
9359 S:      Maintained
9360 W:      http://www.isdn4linux.de
9361 F:      drivers/isdn/Kconfig
9362 F:      drivers/isdn/Makefile
9363 F:      drivers/isdn/hardware/
9364 F:      drivers/isdn/mISDN/
9365
9366 IT87 HARDWARE MONITORING DRIVER
9367 M:      Jean Delvare <jdelvare@suse.com>
9368 L:      linux-hwmon@vger.kernel.org
9369 S:      Maintained
9370 F:      Documentation/hwmon/it87.rst
9371 F:      drivers/hwmon/it87.c
9372
9373 IT913X MEDIA DRIVER
9374 M:      Antti Palosaari <crope@iki.fi>
9375 L:      linux-media@vger.kernel.org
9376 S:      Maintained
9377 W:      https://linuxtv.org
9378 W:      http://palosaari.fi/linux/
9379 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9380 T:      git git://linuxtv.org/anttip/media_tree.git
9381 F:      drivers/media/tuners/it913x*
9382
9383 IVTV VIDEO4LINUX DRIVER
9384 M:      Andy Walls <awalls@md.metrocast.net>
9385 L:      linux-media@vger.kernel.org
9386 S:      Maintained
9387 W:      https://linuxtv.org
9388 T:      git git://linuxtv.org/media_tree.git
9389 F:      Documentation/admin-guide/media/ivtv*
9390 F:      drivers/media/pci/ivtv/
9391 F:      include/uapi/linux/ivtv*
9392
9393 IX2505V MEDIA DRIVER
9394 M:      Malcolm Priestley <tvboxspy@gmail.com>
9395 L:      linux-media@vger.kernel.org
9396 S:      Maintained
9397 W:      https://linuxtv.org
9398 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9399 F:      drivers/media/dvb-frontends/ix2505v*
9400
9401 JAILHOUSE HYPERVISOR INTERFACE
9402 M:      Jan Kiszka <jan.kiszka@siemens.com>
9403 L:      jailhouse-dev@googlegroups.com
9404 S:      Maintained
9405 F:      arch/x86/include/asm/jailhouse_para.h
9406 F:      arch/x86/kernel/jailhouse.c
9407
9408 JC42.4 TEMPERATURE SENSOR DRIVER
9409 M:      Guenter Roeck <linux@roeck-us.net>
9410 L:      linux-hwmon@vger.kernel.org
9411 S:      Maintained
9412 F:      Documentation/hwmon/jc42.rst
9413 F:      drivers/hwmon/jc42.c
9414
9415 JFS FILESYSTEM
9416 M:      Dave Kleikamp <shaggy@kernel.org>
9417 L:      jfs-discussion@lists.sourceforge.net
9418 S:      Maintained
9419 W:      http://jfs.sourceforge.net/
9420 T:      git git://github.com/kleikamp/linux-shaggy.git
9421 F:      Documentation/admin-guide/jfs.rst
9422 F:      fs/jfs/
9423
9424 JME NETWORK DRIVER
9425 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
9426 L:      netdev@vger.kernel.org
9427 S:      Maintained
9428 F:      drivers/net/ethernet/jme.*
9429
9430 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9431 M:      David Woodhouse <dwmw2@infradead.org>
9432 M:      Richard Weinberger <richard@nod.at>
9433 L:      linux-mtd@lists.infradead.org
9434 S:      Odd Fixes
9435 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9436 T:      git git://git.infradead.org/ubifs-2.6.git
9437 F:      fs/jffs2/
9438 F:      include/uapi/linux/jffs2.h
9439
9440 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9441 M:      "Theodore Ts'o" <tytso@mit.edu>
9442 M:      Jan Kara <jack@suse.com>
9443 L:      linux-ext4@vger.kernel.org
9444 S:      Maintained
9445 F:      fs/jbd2/
9446 F:      include/linux/jbd2.h
9447
9448 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9449 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9450 L:      linux-media@vger.kernel.org
9451 S:      Maintained
9452 F:      drivers/media/platform/rcar_jpu.c
9453
9454 JSM Neo PCI based serial card
9455 L:      linux-serial@vger.kernel.org
9456 S:      Orphan
9457 F:      drivers/tty/serial/jsm/
9458
9459 K10TEMP HARDWARE MONITORING DRIVER
9460 M:      Clemens Ladisch <clemens@ladisch.de>
9461 L:      linux-hwmon@vger.kernel.org
9462 S:      Maintained
9463 F:      Documentation/hwmon/k10temp.rst
9464 F:      drivers/hwmon/k10temp.c
9465
9466 K8TEMP HARDWARE MONITORING DRIVER
9467 M:      Rudolf Marek <r.marek@assembler.cz>
9468 L:      linux-hwmon@vger.kernel.org
9469 S:      Maintained
9470 F:      Documentation/hwmon/k8temp.rst
9471 F:      drivers/hwmon/k8temp.c
9472
9473 KASAN
9474 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
9475 R:      Alexander Potapenko <glider@google.com>
9476 R:      Dmitry Vyukov <dvyukov@google.com>
9477 L:      kasan-dev@googlegroups.com
9478 S:      Maintained
9479 F:      Documentation/dev-tools/kasan.rst
9480 F:      arch/*/include/asm/kasan.h
9481 F:      arch/*/mm/kasan_init*
9482 F:      include/linux/kasan*.h
9483 F:      lib/test_kasan.c
9484 F:      mm/kasan/
9485 F:      scripts/Makefile.kasan
9486
9487 KCONFIG
9488 M:      Masahiro Yamada <masahiroy@kernel.org>
9489 L:      linux-kbuild@vger.kernel.org
9490 S:      Maintained
9491 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9492 F:      Documentation/kbuild/kconfig*
9493 F:      scripts/Kconfig.include
9494 F:      scripts/kconfig/
9495
9496 KCOV
9497 R:      Dmitry Vyukov <dvyukov@google.com>
9498 R:      Andrey Konovalov <andreyknvl@google.com>
9499 L:      kasan-dev@googlegroups.com
9500 S:      Maintained
9501 F:      Documentation/dev-tools/kcov.rst
9502 F:      include/linux/kcov.h
9503 F:      include/uapi/linux/kcov.h
9504 F:      kernel/kcov.c
9505 F:      scripts/Makefile.kcov
9506
9507 KCSAN
9508 M:      Marco Elver <elver@google.com>
9509 R:      Dmitry Vyukov <dvyukov@google.com>
9510 L:      kasan-dev@googlegroups.com
9511 S:      Maintained
9512 F:      Documentation/dev-tools/kcsan.rst
9513 F:      include/linux/kcsan*.h
9514 F:      kernel/kcsan/
9515 F:      lib/Kconfig.kcsan
9516 F:      scripts/Makefile.kcsan
9517
9518 KDUMP
9519 M:      Dave Young <dyoung@redhat.com>
9520 M:      Baoquan He <bhe@redhat.com>
9521 R:      Vivek Goyal <vgoyal@redhat.com>
9522 L:      kexec@lists.infradead.org
9523 S:      Maintained
9524 W:      http://lse.sourceforge.net/kdump/
9525 F:      Documentation/admin-guide/kdump/
9526 F:      fs/proc/vmcore.c
9527 F:      include/linux/crash_core.h
9528 F:      include/linux/crash_dump.h
9529 F:      include/uapi/linux/vmcore.h
9530 F:      kernel/crash_*.c
9531
9532 KEENE FM RADIO TRANSMITTER DRIVER
9533 M:      Hans Verkuil <hverkuil@xs4all.nl>
9534 L:      linux-media@vger.kernel.org
9535 S:      Maintained
9536 W:      https://linuxtv.org
9537 T:      git git://linuxtv.org/media_tree.git
9538 F:      drivers/media/radio/radio-keene*
9539
9540 KERNEL AUTOMOUNTER
9541 M:      Ian Kent <raven@themaw.net>
9542 L:      autofs@vger.kernel.org
9543 S:      Maintained
9544 F:      fs/autofs/
9545
9546 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9547 M:      Masahiro Yamada <masahiroy@kernel.org>
9548 M:      Michal Marek <michal.lkml@markovi.net>
9549 L:      linux-kbuild@vger.kernel.org
9550 S:      Maintained
9551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9552 F:      Documentation/kbuild/
9553 F:      Makefile
9554 F:      scripts/*vmlinux*
9555 F:      scripts/Kbuild*
9556 F:      scripts/Makefile*
9557 F:      scripts/basic/
9558 F:      scripts/mk*
9559 F:      scripts/mod/
9560 F:      scripts/package/
9561
9562 KERNEL JANITORS
9563 L:      kernel-janitors@vger.kernel.org
9564 S:      Odd Fixes
9565 W:      http://kernelnewbies.org/KernelJanitors
9566
9567 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9568 M:      "J. Bruce Fields" <bfields@fieldses.org>
9569 M:      Chuck Lever <chuck.lever@oracle.com>
9570 L:      linux-nfs@vger.kernel.org
9571 S:      Supported
9572 W:      http://nfs.sourceforge.net/
9573 T:      git git://linux-nfs.org/~bfields/linux.git
9574 F:      fs/lockd/
9575 F:      fs/nfs_common/
9576 F:      fs/nfsd/
9577 F:      include/linux/lockd/
9578 F:      include/linux/sunrpc/
9579 F:      include/uapi/linux/nfsd/
9580 F:      include/uapi/linux/sunrpc/
9581 F:      net/sunrpc/
9582 F:      Documentation/filesystems/nfs/
9583
9584 KERNEL SELFTEST FRAMEWORK
9585 M:      Shuah Khan <shuah@kernel.org>
9586 M:      Shuah Khan <skhan@linuxfoundation.org>
9587 L:      linux-kselftest@vger.kernel.org
9588 S:      Maintained
9589 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9591 F:      Documentation/dev-tools/kselftest*
9592 F:      tools/testing/selftests/
9593
9594 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9595 M:      Brendan Higgins <brendanhiggins@google.com>
9596 L:      linux-kselftest@vger.kernel.org
9597 L:      kunit-dev@googlegroups.com
9598 S:      Maintained
9599 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9600 F:      Documentation/dev-tools/kunit/
9601 F:      include/kunit/
9602 F:      lib/kunit/
9603 F:      tools/testing/kunit/
9604
9605 KERNEL USERMODE HELPER
9606 M:      Luis Chamberlain <mcgrof@kernel.org>
9607 L:      linux-kernel@vger.kernel.org
9608 S:      Maintained
9609 F:      include/linux/umh.h
9610 F:      kernel/umh.c
9611
9612 KERNEL VIRTUAL MACHINE (KVM)
9613 M:      Paolo Bonzini <pbonzini@redhat.com>
9614 L:      kvm@vger.kernel.org
9615 S:      Supported
9616 W:      http://www.linux-kvm.org
9617 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9618 F:      Documentation/virt/kvm/
9619 F:      include/asm-generic/kvm*
9620 F:      include/kvm/iodev.h
9621 F:      include/linux/kvm*
9622 F:      include/trace/events/kvm.h
9623 F:      include/uapi/asm-generic/kvm*
9624 F:      include/uapi/linux/kvm*
9625 F:      tools/kvm/
9626 F:      tools/testing/selftests/kvm/
9627 F:      virt/kvm/*
9628
9629 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9630 M:      Marc Zyngier <maz@kernel.org>
9631 R:      James Morse <james.morse@arm.com>
9632 R:      Julien Thierry <julien.thierry.kdev@gmail.com>
9633 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
9634 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9635 L:      kvmarm@lists.cs.columbia.edu
9636 S:      Maintained
9637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9638 F:      arch/arm64/include/asm/kvm*
9639 F:      arch/arm64/include/uapi/asm/kvm*
9640 F:      arch/arm64/kvm/
9641 F:      include/kvm/arm_*
9642
9643 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9644 M:      Huacai Chen <chenhc@lemote.com>
9645 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
9646 L:      linux-mips@vger.kernel.org
9647 L:      kvm@vger.kernel.org
9648 S:      Maintained
9649 F:      arch/mips/include/asm/kvm*
9650 F:      arch/mips/include/uapi/asm/kvm*
9651 F:      arch/mips/kvm/
9652
9653 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9654 M:      Paul Mackerras <paulus@ozlabs.org>
9655 L:      kvm-ppc@vger.kernel.org
9656 S:      Supported
9657 W:      http://www.linux-kvm.org/
9658 T:      git git://github.com/agraf/linux-2.6.git
9659 F:      arch/powerpc/include/asm/kvm*
9660 F:      arch/powerpc/include/uapi/asm/kvm*
9661 F:      arch/powerpc/kernel/kvm*
9662 F:      arch/powerpc/kvm/
9663
9664 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9665 M:      Christian Borntraeger <borntraeger@de.ibm.com>
9666 M:      Janosch Frank <frankja@linux.ibm.com>
9667 R:      David Hildenbrand <david@redhat.com>
9668 R:      Cornelia Huck <cohuck@redhat.com>
9669 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
9670 L:      kvm@vger.kernel.org
9671 S:      Supported
9672 W:      http://www.ibm.com/developerworks/linux/linux390/
9673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9674 F:      Documentation/virt/kvm/s390*
9675 F:      arch/s390/include/asm/gmap.h
9676 F:      arch/s390/include/asm/kvm*
9677 F:      arch/s390/include/uapi/asm/kvm*
9678 F:      arch/s390/kvm/
9679 F:      arch/s390/mm/gmap.c
9680 F:      tools/testing/selftests/kvm/*/s390x/
9681 F:      tools/testing/selftests/kvm/s390x/
9682
9683 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9684 M:      Paolo Bonzini <pbonzini@redhat.com>
9685 R:      Sean Christopherson <sean.j.christopherson@intel.com>
9686 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
9687 R:      Wanpeng Li <wanpengli@tencent.com>
9688 R:      Jim Mattson <jmattson@google.com>
9689 R:      Joerg Roedel <joro@8bytes.org>
9690 L:      kvm@vger.kernel.org
9691 S:      Supported
9692 W:      http://www.linux-kvm.org
9693 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9694 F:      arch/x86/include/asm/kvm*
9695 F:      arch/x86/include/asm/pvclock-abi.h
9696 F:      arch/x86/include/asm/svm.h
9697 F:      arch/x86/include/asm/vmx*.h
9698 F:      arch/x86/include/uapi/asm/kvm*
9699 F:      arch/x86/include/uapi/asm/svm.h
9700 F:      arch/x86/include/uapi/asm/vmx.h
9701 F:      arch/x86/kernel/kvm.c
9702 F:      arch/x86/kernel/kvmclock.c
9703 F:      arch/x86/kvm/
9704 F:      arch/x86/kvm/*/
9705
9706 KERNFS
9707 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9708 M:      Tejun Heo <tj@kernel.org>
9709 S:      Supported
9710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9711 F:      fs/kernfs/
9712 F:      include/linux/kernfs.h
9713
9714 KEXEC
9715 M:      Eric Biederman <ebiederm@xmission.com>
9716 L:      kexec@lists.infradead.org
9717 S:      Maintained
9718 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9719 F:      include/linux/kexec.h
9720 F:      include/uapi/linux/kexec.h
9721 F:      kernel/kexec*
9722
9723 KEYS-ENCRYPTED
9724 M:      Mimi Zohar <zohar@linux.ibm.com>
9725 L:      linux-integrity@vger.kernel.org
9726 L:      keyrings@vger.kernel.org
9727 S:      Supported
9728 F:      Documentation/security/keys/trusted-encrypted.rst
9729 F:      include/keys/encrypted-type.h
9730 F:      security/keys/encrypted-keys/
9731
9732 KEYS-TRUSTED
9733 M:      James Bottomley <jejb@linux.ibm.com>
9734 M:      Jarkko Sakkinen <jarkko@kernel.org>
9735 M:      Mimi Zohar <zohar@linux.ibm.com>
9736 L:      linux-integrity@vger.kernel.org
9737 L:      keyrings@vger.kernel.org
9738 S:      Supported
9739 F:      Documentation/security/keys/trusted-encrypted.rst
9740 F:      include/keys/trusted-type.h
9741 F:      include/keys/trusted_tpm.h
9742 F:      security/keys/trusted-keys/
9743
9744 KEYS/KEYRINGS
9745 M:      David Howells <dhowells@redhat.com>
9746 M:      Jarkko Sakkinen <jarkko@kernel.org>
9747 L:      keyrings@vger.kernel.org
9748 S:      Maintained
9749 F:      Documentation/security/keys/core.rst
9750 F:      include/keys/
9751 F:      include/linux/key-type.h
9752 F:      include/linux/key.h
9753 F:      include/linux/keyctl.h
9754 F:      include/uapi/linux/keyctl.h
9755 F:      security/keys/
9756
9757 KFIFO
9758 M:      Stefani Seibold <stefani@seibold.net>
9759 S:      Maintained
9760 F:      include/linux/kfifo.h
9761 F:      lib/kfifo.c
9762 F:      samples/kfifo/
9763
9764 KGDB / KDB /debug_core
9765 M:      Jason Wessel <jason.wessel@windriver.com>
9766 M:      Daniel Thompson <daniel.thompson@linaro.org>
9767 R:      Douglas Anderson <dianders@chromium.org>
9768 L:      kgdb-bugreport@lists.sourceforge.net
9769 S:      Maintained
9770 W:      http://kgdb.wiki.kernel.org/
9771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9772 F:      Documentation/dev-tools/kgdb.rst
9773 F:      drivers/misc/kgdbts.c
9774 F:      drivers/tty/serial/kgdboc.c
9775 F:      include/linux/kdb.h
9776 F:      include/linux/kgdb.h
9777 F:      kernel/debug/
9778
9779 KHADAS MCU MFD DRIVER
9780 M:      Neil Armstrong <narmstrong@baylibre.com>
9781 L:      linux-amlogic@lists.infradead.org
9782 S:      Maintained
9783 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
9784 F:      drivers/mfd/khadas-mcu.c
9785 F:      include/linux/mfd/khadas-mcu.h
9786 F:      drivers/thermal/khadas_mcu_fan.c
9787
9788 KMEMLEAK
9789 M:      Catalin Marinas <catalin.marinas@arm.com>
9790 S:      Maintained
9791 F:      Documentation/dev-tools/kmemleak.rst
9792 F:      include/linux/kmemleak.h
9793 F:      mm/kmemleak.c
9794 F:      samples/kmemleak/kmemleak-test.c
9795
9796 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9797 M:      Luis Chamberlain <mcgrof@kernel.org>
9798 L:      linux-kernel@vger.kernel.org
9799 S:      Maintained
9800 F:      include/linux/kmod.h
9801 F:      kernel/kmod.c
9802 F:      lib/test_kmod.c
9803 F:      tools/testing/selftests/kmod/
9804
9805 KPROBES
9806 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
9807 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9808 M:      "David S. Miller" <davem@davemloft.net>
9809 M:      Masami Hiramatsu <mhiramat@kernel.org>
9810 S:      Maintained
9811 F:      Documentation/trace/kprobes.rst
9812 F:      include/asm-generic/kprobes.h
9813 F:      include/linux/kprobes.h
9814 F:      kernel/kprobes.c
9815
9816 KS0108 LCD CONTROLLER DRIVER
9817 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
9818 S:      Maintained
9819 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9820 F:      drivers/auxdisplay/ks0108.c
9821 F:      include/linux/ks0108.h
9822
9823 KTD253 BACKLIGHT DRIVER
9824 M:      Linus Walleij <linus.walleij@linaro.org>
9825 S:      Maintained
9826 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
9827 F:      drivers/video/backlight/ktd253-backlight.c
9828
9829 L3MDEV
9830 M:      David Ahern <dsahern@kernel.org>
9831 L:      netdev@vger.kernel.org
9832 S:      Maintained
9833 F:      include/net/l3mdev.h
9834 F:      net/l3mdev
9835
9836 L7 BPF FRAMEWORK
9837 M:      John Fastabend <john.fastabend@gmail.com>
9838 M:      Daniel Borkmann <daniel@iogearbox.net>
9839 M:      Jakub Sitnicki <jakub@cloudflare.com>
9840 M:      Lorenz Bauer <lmb@cloudflare.com>
9841 L:      netdev@vger.kernel.org
9842 L:      bpf@vger.kernel.org
9843 S:      Maintained
9844 F:      include/linux/skmsg.h
9845 F:      net/core/skmsg.c
9846 F:      net/core/sock_map.c
9847 F:      net/ipv4/tcp_bpf.c
9848 F:      net/ipv4/udp_bpf.c
9849
9850 LANTIQ / INTEL Ethernet drivers
9851 M:      Hauke Mehrtens <hauke@hauke-m.de>
9852 L:      netdev@vger.kernel.org
9853 S:      Maintained
9854 F:      drivers/net/dsa/lantiq_gswip.c
9855 F:      drivers/net/dsa/lantiq_pce.h
9856 F:      drivers/net/ethernet/lantiq_xrx200.c
9857 F:      net/dsa/tag_gswip.c
9858
9859 LANTIQ MIPS ARCHITECTURE
9860 M:      John Crispin <john@phrozen.org>
9861 L:      linux-mips@vger.kernel.org
9862 S:      Maintained
9863 F:      arch/mips/lantiq
9864 F:      drivers/soc/lantiq
9865
9866 LAPB module
9867 L:      linux-x25@vger.kernel.org
9868 S:      Orphan
9869 F:      Documentation/networking/lapb-module.rst
9870 F:      include/*/lapb.h
9871 F:      net/lapb/
9872
9873 LASI 53c700 driver for PARISC
9874 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9875 L:      linux-scsi@vger.kernel.org
9876 S:      Maintained
9877 F:      Documentation/scsi/53c700.rst
9878 F:      drivers/scsi/53c700*
9879
9880 LEAKING_ADDRESSES
9881 M:      Tobin C. Harding <me@tobin.cc>
9882 M:      Tycho Andersen <tycho@tycho.pizza>
9883 L:      linux-hardening@vger.kernel.org
9884 S:      Maintained
9885 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9886 F:      scripts/leaking_addresses.pl
9887
9888 LED SUBSYSTEM
9889 M:      Pavel Machek <pavel@ucw.cz>
9890 R:      Dan Murphy <dmurphy@ti.com>
9891 L:      linux-leds@vger.kernel.org
9892 S:      Maintained
9893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9894 F:      Documentation/devicetree/bindings/leds/
9895 F:      drivers/leds/
9896 F:      include/linux/leds.h
9897
9898 LEGACY EEPROM DRIVER
9899 M:      Jean Delvare <jdelvare@suse.com>
9900 S:      Maintained
9901 F:      Documentation/misc-devices/eeprom.rst
9902 F:      drivers/misc/eeprom/eeprom.c
9903
9904 LEGO MINDSTORMS EV3
9905 R:      David Lechner <david@lechnology.com>
9906 S:      Maintained
9907 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9908 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9909 F:      drivers/power/supply/lego_ev3_battery.c
9910
9911 LEGO USB Tower driver
9912 M:      Juergen Stuber <starblue@users.sourceforge.net>
9913 L:      legousb-devel@lists.sourceforge.net
9914 S:      Maintained
9915 W:      http://legousb.sourceforge.net/
9916 F:      drivers/usb/misc/legousbtower.c
9917
9918 LG LAPTOP EXTRAS
9919 M:      Matan Ziv-Av <matan@svgalib.org>
9920 L:      platform-driver-x86@vger.kernel.org
9921 S:      Maintained
9922 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9923 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9924 F:      drivers/platform/x86/lg-laptop.c
9925
9926 LG2160 MEDIA DRIVER
9927 M:      Michael Krufky <mkrufky@linuxtv.org>
9928 L:      linux-media@vger.kernel.org
9929 S:      Maintained
9930 W:      https://linuxtv.org
9931 W:      http://github.com/mkrufky
9932 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9933 T:      git git://linuxtv.org/mkrufky/tuners.git
9934 F:      drivers/media/dvb-frontends/lg2160.*
9935
9936 LGDT3305 MEDIA DRIVER
9937 M:      Michael Krufky <mkrufky@linuxtv.org>
9938 L:      linux-media@vger.kernel.org
9939 S:      Maintained
9940 W:      https://linuxtv.org
9941 W:      http://github.com/mkrufky
9942 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9943 T:      git git://linuxtv.org/mkrufky/tuners.git
9944 F:      drivers/media/dvb-frontends/lgdt3305.*
9945
9946 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9947 M:      Viresh Kumar <vireshk@kernel.org>
9948 L:      linux-ide@vger.kernel.org
9949 S:      Maintained
9950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9951 F:      drivers/ata/pata_arasan_cf.c
9952 F:      include/linux/pata_arasan_cf_data.h
9953
9954 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9955 M:      Linus Walleij <linus.walleij@linaro.org>
9956 L:      linux-ide@vger.kernel.org
9957 S:      Maintained
9958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9959 F:      drivers/ata/pata_ftide010.c
9960 F:      drivers/ata/sata_gemini.c
9961 F:      drivers/ata/sata_gemini.h
9962
9963 LIBATA SATA AHCI PLATFORM devices support
9964 M:      Hans de Goede <hdegoede@redhat.com>
9965 M:      Jens Axboe <axboe@kernel.dk>
9966 L:      linux-ide@vger.kernel.org
9967 S:      Maintained
9968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9969 F:      drivers/ata/ahci_platform.c
9970 F:      drivers/ata/libahci_platform.c
9971 F:      include/linux/ahci_platform.h
9972
9973 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
9974 M:      Mikael Pettersson <mikpelinux@gmail.com>
9975 L:      linux-ide@vger.kernel.org
9976 S:      Maintained
9977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9978 F:      drivers/ata/sata_promise.*
9979
9980 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
9981 M:      Jens Axboe <axboe@kernel.dk>
9982 L:      linux-ide@vger.kernel.org
9983 S:      Maintained
9984 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9985 F:      Documentation/devicetree/bindings/ata/
9986 F:      drivers/ata/
9987 F:      include/linux/ata.h
9988 F:      include/linux/libata.h
9989
9990 LIBLOCKDEP
9991 M:      Sasha Levin <alexander.levin@microsoft.com>
9992 S:      Maintained
9993 F:      tools/lib/lockdep/
9994
9995 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
9996 M:      Dan Williams <dan.j.williams@intel.com>
9997 M:      Vishal Verma <vishal.l.verma@intel.com>
9998 M:      Dave Jiang <dave.jiang@intel.com>
9999 L:      linux-nvdimm@lists.01.org
10000 S:      Supported
10001 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10002 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10003 F:      drivers/nvdimm/blk.c
10004 F:      drivers/nvdimm/region_devs.c
10005
10006 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10007 M:      Vishal Verma <vishal.l.verma@intel.com>
10008 M:      Dan Williams <dan.j.williams@intel.com>
10009 M:      Dave Jiang <dave.jiang@intel.com>
10010 L:      linux-nvdimm@lists.01.org
10011 S:      Supported
10012 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10013 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10014 F:      drivers/nvdimm/btt*
10015
10016 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10017 M:      Dan Williams <dan.j.williams@intel.com>
10018 M:      Vishal Verma <vishal.l.verma@intel.com>
10019 M:      Dave Jiang <dave.jiang@intel.com>
10020 L:      linux-nvdimm@lists.01.org
10021 S:      Supported
10022 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10023 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10024 F:      drivers/nvdimm/pmem*
10025
10026 LIBNVDIMM: DEVICETREE BINDINGS
10027 M:      Oliver O'Halloran <oohall@gmail.com>
10028 L:      linux-nvdimm@lists.01.org
10029 S:      Supported
10030 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10031 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10032 F:      drivers/nvdimm/of_pmem.c
10033
10034 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10035 M:      Dan Williams <dan.j.williams@intel.com>
10036 M:      Vishal Verma <vishal.l.verma@intel.com>
10037 M:      Dave Jiang <dave.jiang@intel.com>
10038 M:      Ira Weiny <ira.weiny@intel.com>
10039 L:      linux-nvdimm@lists.01.org
10040 S:      Supported
10041 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10042 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10044 F:      drivers/acpi/nfit/*
10045 F:      drivers/nvdimm/*
10046 F:      include/linux/libnvdimm.h
10047 F:      include/linux/nd.h
10048 F:      include/uapi/linux/ndctl.h
10049 F:      tools/testing/nvdimm/
10050
10051 LICENSES and SPDX stuff
10052 M:      Thomas Gleixner <tglx@linutronix.de>
10053 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10054 L:      linux-spdx@vger.kernel.org
10055 S:      Maintained
10056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10057 F:      COPYING
10058 F:      Documentation/process/license-rules.rst
10059 F:      LICENSES/
10060 F:      scripts/spdxcheck-test.sh
10061 F:      scripts/spdxcheck.py
10062
10063 LIGHTNVM PLATFORM SUPPORT
10064 M:      Matias Bjorling <mb@lightnvm.io>
10065 L:      linux-block@vger.kernel.org
10066 S:      Maintained
10067 W:      http://github/OpenChannelSSD
10068 F:      drivers/lightnvm/
10069 F:      include/linux/lightnvm.h
10070 F:      include/uapi/linux/lightnvm.h
10071
10072 LINEAR RANGES HELPERS
10073 M:      Mark Brown <broonie@kernel.org>
10074 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10075 F:      lib/linear_ranges.c
10076 F:      lib/test_linear_ranges.c
10077 F:      include/linux/linear_range.h
10078
10079 LINUX FOR POWER MACINTOSH
10080 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10081 L:      linuxppc-dev@lists.ozlabs.org
10082 S:      Odd Fixes
10083 F:      arch/powerpc/platforms/powermac/
10084 F:      drivers/macintosh/
10085
10086 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10087 M:      Michael Ellerman <mpe@ellerman.id.au>
10088 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10089 R:      Paul Mackerras <paulus@samba.org>
10090 L:      linuxppc-dev@lists.ozlabs.org
10091 S:      Supported
10092 W:      https://github.com/linuxppc/wiki/wiki
10093 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10094 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10095 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10096 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10097 F:      Documentation/devicetree/bindings/powerpc/
10098 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10099 F:      Documentation/powerpc/
10100 F:      arch/powerpc/
10101 F:      drivers/*/*/*pasemi*
10102 F:      drivers/*/*pasemi*
10103 F:      drivers/char/tpm/tpm_ibmvtpm*
10104 F:      drivers/crypto/nx/
10105 F:      drivers/crypto/vmx/
10106 F:      drivers/i2c/busses/i2c-opal.c
10107 F:      drivers/net/ethernet/ibm/ibmveth.*
10108 F:      drivers/net/ethernet/ibm/ibmvnic.*
10109 F:      drivers/pci/hotplug/pnv_php.c
10110 F:      drivers/pci/hotplug/rpa*
10111 F:      drivers/rtc/rtc-opal.c
10112 F:      drivers/scsi/ibmvscsi/
10113 F:      drivers/tty/hvc/hvc_opal.c
10114 F:      drivers/watchdog/wdrtas.c
10115 F:      tools/testing/selftests/powerpc
10116 N:      /pmac
10117 N:      powermac
10118 N:      powernv
10119 N:      [^a-z0-9]ps3
10120 N:      pseries
10121
10122 LINUX FOR POWERPC EMBEDDED MPC5XXX
10123 M:      Anatolij Gustschin <agust@denx.de>
10124 L:      linuxppc-dev@lists.ozlabs.org
10125 S:      Odd Fixes
10126 F:      arch/powerpc/platforms/512x/
10127 F:      arch/powerpc/platforms/52xx/
10128
10129 LINUX FOR POWERPC EMBEDDED PPC4XX
10130 L:      linuxppc-dev@lists.ozlabs.org
10131 S:      Orphan
10132 F:      arch/powerpc/platforms/40x/
10133 F:      arch/powerpc/platforms/44x/
10134
10135 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10136 M:      Scott Wood <oss@buserror.net>
10137 L:      linuxppc-dev@lists.ozlabs.org
10138 S:      Odd fixes
10139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10140 F:      Documentation/devicetree/bindings/powerpc/fsl/
10141 F:      arch/powerpc/platforms/83xx/
10142 F:      arch/powerpc/platforms/85xx/
10143
10144 LINUX FOR POWERPC EMBEDDED PPC8XX
10145 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10146 L:      linuxppc-dev@lists.ozlabs.org
10147 S:      Maintained
10148 F:      arch/powerpc/platforms/8xx/
10149
10150 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10151 M:      Kees Cook <keescook@chromium.org>
10152 S:      Maintained
10153 F:      drivers/misc/lkdtm/*
10154 F:      tools/testing/selftests/lkdtm/*
10155
10156 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10157 M:      Alan Stern <stern@rowland.harvard.edu>
10158 M:      Andrea Parri <parri.andrea@gmail.com>
10159 M:      Will Deacon <will@kernel.org>
10160 M:      Peter Zijlstra <peterz@infradead.org>
10161 M:      Boqun Feng <boqun.feng@gmail.com>
10162 M:      Nicholas Piggin <npiggin@gmail.com>
10163 M:      David Howells <dhowells@redhat.com>
10164 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10165 M:      Luc Maranget <luc.maranget@inria.fr>
10166 M:      "Paul E. McKenney" <paulmck@kernel.org>
10167 R:      Akira Yokosawa <akiyks@gmail.com>
10168 R:      Daniel Lustig <dlustig@nvidia.com>
10169 R:      Joel Fernandes <joel@joelfernandes.org>
10170 L:      linux-kernel@vger.kernel.org
10171 L:      linux-arch@vger.kernel.org
10172 S:      Supported
10173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10174 F:      Documentation/atomic_bitops.txt
10175 F:      Documentation/atomic_t.txt
10176 F:      Documentation/core-api/atomic_ops.rst
10177 F:      Documentation/core-api/refcount-vs-atomic.rst
10178 F:      Documentation/litmus-tests/
10179 F:      Documentation/memory-barriers.txt
10180 F:      tools/memory-model/
10181
10182 LIS3LV02D ACCELEROMETER DRIVER
10183 M:      Eric Piel <eric.piel@tremplin-utc.net>
10184 S:      Maintained
10185 F:      Documentation/misc-devices/lis3lv02d.rst
10186 F:      drivers/misc/lis3lv02d/
10187 F:      drivers/platform/x86/hp_accel.c
10188
10189 LIST KUNIT TEST
10190 M:      David Gow <davidgow@google.com>
10191 L:      linux-kselftest@vger.kernel.org
10192 L:      kunit-dev@googlegroups.com
10193 S:      Maintained
10194 F:      lib/list-test.c
10195
10196 LIVE PATCHING
10197 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10198 M:      Jiri Kosina <jikos@kernel.org>
10199 M:      Miroslav Benes <mbenes@suse.cz>
10200 M:      Petr Mladek <pmladek@suse.com>
10201 R:      Joe Lawrence <joe.lawrence@redhat.com>
10202 L:      live-patching@vger.kernel.org
10203 S:      Maintained
10204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10205 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10206 F:      Documentation/livepatch/
10207 F:      arch/powerpc/include/asm/livepatch.h
10208 F:      arch/s390/include/asm/livepatch.h
10209 F:      arch/x86/include/asm/livepatch.h
10210 F:      include/linux/livepatch.h
10211 F:      kernel/livepatch/
10212 F:      lib/livepatch/
10213 F:      samples/livepatch/
10214 F:      tools/testing/selftests/livepatch/
10215
10216 LLC (802.2)
10217 L:      netdev@vger.kernel.org
10218 S:      Odd fixes
10219 F:      include/linux/llc.h
10220 F:      include/net/llc*
10221 F:      include/uapi/linux/llc.h
10222 F:      net/llc/
10223
10224 LM73 HARDWARE MONITOR DRIVER
10225 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10226 L:      linux-hwmon@vger.kernel.org
10227 S:      Maintained
10228 F:      drivers/hwmon/lm73.c
10229
10230 LM78 HARDWARE MONITOR DRIVER
10231 M:      Jean Delvare <jdelvare@suse.com>
10232 L:      linux-hwmon@vger.kernel.org
10233 S:      Maintained
10234 F:      Documentation/hwmon/lm78.rst
10235 F:      drivers/hwmon/lm78.c
10236
10237 LM83 HARDWARE MONITOR DRIVER
10238 M:      Jean Delvare <jdelvare@suse.com>
10239 L:      linux-hwmon@vger.kernel.org
10240 S:      Maintained
10241 F:      Documentation/hwmon/lm83.rst
10242 F:      drivers/hwmon/lm83.c
10243
10244 LM90 HARDWARE MONITOR DRIVER
10245 M:      Jean Delvare <jdelvare@suse.com>
10246 L:      linux-hwmon@vger.kernel.org
10247 S:      Maintained
10248 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10249 F:      Documentation/hwmon/lm90.rst
10250 F:      drivers/hwmon/lm90.c
10251 F:      include/dt-bindings/thermal/lm90.h
10252
10253 LM95234 HARDWARE MONITOR DRIVER
10254 M:      Guenter Roeck <linux@roeck-us.net>
10255 L:      linux-hwmon@vger.kernel.org
10256 S:      Maintained
10257 F:      Documentation/hwmon/lm95234.rst
10258 F:      drivers/hwmon/lm95234.c
10259
10260 LME2510 MEDIA DRIVER
10261 M:      Malcolm Priestley <tvboxspy@gmail.com>
10262 L:      linux-media@vger.kernel.org
10263 S:      Maintained
10264 W:      https://linuxtv.org
10265 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10266 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10267
10268 LOADPIN SECURITY MODULE
10269 M:      Kees Cook <keescook@chromium.org>
10270 S:      Supported
10271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10272 F:      Documentation/admin-guide/LSM/LoadPin.rst
10273 F:      security/loadpin/
10274
10275 LOCKING PRIMITIVES
10276 M:      Peter Zijlstra <peterz@infradead.org>
10277 M:      Ingo Molnar <mingo@redhat.com>
10278 M:      Will Deacon <will@kernel.org>
10279 L:      linux-kernel@vger.kernel.org
10280 S:      Maintained
10281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10282 F:      Documentation/locking/
10283 F:      arch/*/include/asm/spinlock*.h
10284 F:      include/linux/lockdep.h
10285 F:      include/linux/mutex*.h
10286 F:      include/linux/rwlock*.h
10287 F:      include/linux/rwsem*.h
10288 F:      include/linux/seqlock.h
10289 F:      include/linux/spinlock*.h
10290 F:      kernel/locking/
10291 F:      lib/locking*.[ch]
10292 X:      kernel/locking/locktorture.c
10293
10294 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10295 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
10296 L:      linux-ntfs-dev@lists.sourceforge.net
10297 S:      Maintained
10298 W:      http://www.linux-ntfs.org/content/view/19/37/
10299 F:      Documentation/admin-guide/ldm.rst
10300 F:      block/partitions/ldm.*
10301
10302 LOGITECH HID GAMING KEYBOARDS
10303 M:      Hans de Goede <hdegoede@redhat.com>
10304 L:      linux-input@vger.kernel.org
10305 S:      Maintained
10306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10307 F:      drivers/hid/hid-lg-g15.c
10308
10309 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10310 M:      Sathya Prakash <sathya.prakash@broadcom.com>
10311 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
10312 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
10313 L:      MPT-FusionLinux.pdl@broadcom.com
10314 L:      linux-scsi@vger.kernel.org
10315 S:      Supported
10316 W:      http://www.avagotech.com/support/
10317 F:      drivers/message/fusion/
10318 F:      drivers/scsi/mpt3sas/
10319
10320 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10321 M:      Matthew Wilcox <willy@infradead.org>
10322 L:      linux-scsi@vger.kernel.org
10323 S:      Maintained
10324 F:      drivers/scsi/sym53c8xx_2/
10325
10326 LTC1660 DAC DRIVER
10327 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10328 L:      linux-iio@vger.kernel.org
10329 S:      Maintained
10330 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10331 F:      drivers/iio/dac/ltc1660.c
10332
10333 LTC2947 HARDWARE MONITOR DRIVER
10334 M:      Nuno Sá <nuno.sa@analog.com>
10335 L:      linux-hwmon@vger.kernel.org
10336 S:      Supported
10337 W:      http://ez.analog.com/community/linux-device-drivers
10338 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10339 F:      drivers/hwmon/ltc2947-core.c
10340 F:      drivers/hwmon/ltc2947-i2c.c
10341 F:      drivers/hwmon/ltc2947-spi.c
10342 F:      drivers/hwmon/ltc2947.h
10343
10344 LTC2983 IIO TEMPERATURE DRIVER
10345 M:      Nuno Sá <nuno.sa@analog.com>
10346 L:      linux-iio@vger.kernel.org
10347 S:      Supported
10348 W:      http://ez.analog.com/community/linux-device-drivers
10349 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10350 F:      drivers/iio/temperature/ltc2983.c
10351
10352 LTC4261 HARDWARE MONITOR DRIVER
10353 M:      Guenter Roeck <linux@roeck-us.net>
10354 L:      linux-hwmon@vger.kernel.org
10355 S:      Maintained
10356 F:      Documentation/hwmon/ltc4261.rst
10357 F:      drivers/hwmon/ltc4261.c
10358
10359 LTC4306 I2C MULTIPLEXER DRIVER
10360 M:      Michael Hennerich <michael.hennerich@analog.com>
10361 L:      linux-i2c@vger.kernel.org
10362 S:      Supported
10363 W:      http://ez.analog.com/community/linux-device-drivers
10364 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10365 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10366
10367 LTP (Linux Test Project)
10368 M:      Mike Frysinger <vapier@gentoo.org>
10369 M:      Cyril Hrubis <chrubis@suse.cz>
10370 M:      Wanlong Gao <wanlong.gao@gmail.com>
10371 M:      Jan Stancek <jstancek@redhat.com>
10372 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
10373 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
10374 L:      ltp@lists.linux.it (subscribers-only)
10375 S:      Maintained
10376 W:      http://linux-test-project.github.io/
10377 T:      git git://github.com/linux-test-project/ltp.git
10378
10379 LYNX PCS MODULE
10380 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
10381 L:      netdev@vger.kernel.org
10382 S:      Supported
10383 F:      drivers/net/pcs/pcs-lynx.c
10384 F:      include/linux/pcs-lynx.h
10385
10386 M68K ARCHITECTURE
10387 M:      Geert Uytterhoeven <geert@linux-m68k.org>
10388 L:      linux-m68k@lists.linux-m68k.org
10389 S:      Maintained
10390 W:      http://www.linux-m68k.org/
10391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10392 F:      arch/m68k/
10393 F:      drivers/zorro/
10394
10395 M68K ON APPLE MACINTOSH
10396 M:      Joshua Thompson <funaho@jurai.org>
10397 L:      linux-m68k@lists.linux-m68k.org
10398 S:      Maintained
10399 W:      http://www.mac.linux-m68k.org/
10400 F:      arch/m68k/mac/
10401
10402 M68K ON HP9000/300
10403 M:      Philip Blundell <philb@gnu.org>
10404 S:      Maintained
10405 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10406 F:      arch/m68k/hp300/
10407
10408 M88DS3103 MEDIA DRIVER
10409 M:      Antti Palosaari <crope@iki.fi>
10410 L:      linux-media@vger.kernel.org
10411 S:      Maintained
10412 W:      https://linuxtv.org
10413 W:      http://palosaari.fi/linux/
10414 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10415 T:      git git://linuxtv.org/anttip/media_tree.git
10416 F:      drivers/media/dvb-frontends/m88ds3103*
10417
10418 M88RS2000 MEDIA DRIVER
10419 M:      Malcolm Priestley <tvboxspy@gmail.com>
10420 L:      linux-media@vger.kernel.org
10421 S:      Maintained
10422 W:      https://linuxtv.org
10423 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10424 F:      drivers/media/dvb-frontends/m88rs2000*
10425
10426 MA901 MASTERKIT USB FM RADIO DRIVER
10427 M:      Alexey Klimov <klimov.linux@gmail.com>
10428 L:      linux-media@vger.kernel.org
10429 S:      Maintained
10430 T:      git git://linuxtv.org/media_tree.git
10431 F:      drivers/media/radio/radio-ma901.c
10432
10433 MAC80211
10434 M:      Johannes Berg <johannes@sipsolutions.net>
10435 L:      linux-wireless@vger.kernel.org
10436 S:      Maintained
10437 W:      https://wireless.wiki.kernel.org/
10438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10440 F:      Documentation/networking/mac80211-injection.rst
10441 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10442 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10443 F:      include/net/mac80211.h
10444 F:      net/mac80211/
10445
10446 MAILBOX API
10447 M:      Jassi Brar <jassisinghbrar@gmail.com>
10448 L:      linux-kernel@vger.kernel.org
10449 S:      Maintained
10450 F:      drivers/mailbox/
10451 F:      include/linux/mailbox_client.h
10452 F:      include/linux/mailbox_controller.h
10453
10454 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10455 M:      Michael Kerrisk <mtk.manpages@gmail.com>
10456 L:      linux-man@vger.kernel.org
10457 S:      Maintained
10458 W:      http://www.kernel.org/doc/man-pages
10459
10460 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10461 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
10462 L:      linux-mips@vger.kernel.org
10463 S:      Maintained
10464 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10465
10466 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10467 M:      Andrew Lunn <andrew@lunn.ch>
10468 M:      Vivien Didelot <vivien.didelot@gmail.com>
10469 L:      netdev@vger.kernel.org
10470 S:      Maintained
10471 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10472 F:      Documentation/networking/devlink/mv88e6xxx.rst
10473 F:      drivers/net/dsa/mv88e6xxx/
10474 F:      include/linux/platform_data/mv88e6xxx.h
10475
10476 MARVELL ARMADA 3700 PHY DRIVERS
10477 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10478 S:      Maintained
10479 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10480 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10481 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10482 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10483
10484 MARVELL ARMADA DRM SUPPORT
10485 M:      Russell King <linux@armlinux.org.uk>
10486 S:      Maintained
10487 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10488 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10489 F:      Documentation/devicetree/bindings/display/armada/
10490 F:      drivers/gpu/drm/armada/
10491 F:      include/uapi/drm/armada_drm.h
10492
10493 MARVELL CRYPTO DRIVER
10494 M:      Boris Brezillon <bbrezillon@kernel.org>
10495 M:      Arnaud Ebalard <arno@natisbad.org>
10496 M:      Srujana Challa <schalla@marvell.com>
10497 L:      linux-crypto@vger.kernel.org
10498 S:      Maintained
10499 F:      drivers/crypto/marvell/
10500
10501 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10502 M:      Mirko Lindner <mlindner@marvell.com>
10503 M:      Stephen Hemminger <stephen@networkplumber.org>
10504 L:      netdev@vger.kernel.org
10505 S:      Maintained
10506 F:      drivers/net/ethernet/marvell/sk*
10507
10508 MARVELL LIBERTAS WIRELESS DRIVER
10509 L:      libertas-dev@lists.infradead.org
10510 S:      Orphan
10511 F:      drivers/net/wireless/marvell/libertas/
10512
10513 MARVELL MACCHIATOBIN SUPPORT
10514 M:      Russell King <linux@armlinux.org.uk>
10515 L:      linux-arm-kernel@lists.infradead.org
10516 S:      Maintained
10517 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10518
10519 MARVELL MV643XX ETHERNET DRIVER
10520 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
10521 L:      netdev@vger.kernel.org
10522 S:      Maintained
10523 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10524 F:      include/linux/mv643xx.h
10525
10526 MARVELL MV88X3310 PHY DRIVER
10527 M:      Russell King <linux@armlinux.org.uk>
10528 L:      netdev@vger.kernel.org
10529 S:      Maintained
10530 F:      drivers/net/phy/marvell10g.c
10531
10532 MARVELL MVEBU THERMAL DRIVER
10533 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10534 S:      Maintained
10535 F:      drivers/thermal/armada_thermal.c
10536
10537 MARVELL MVNETA ETHERNET DRIVER
10538 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
10539 L:      netdev@vger.kernel.org
10540 S:      Maintained
10541 F:      drivers/net/ethernet/marvell/mvneta.*
10542
10543 MARVELL MWIFIEX WIRELESS DRIVER
10544 M:      Amitkumar Karwar <amitkarwar@gmail.com>
10545 M:      Ganapathi Bhat <ganapathi.bhat@nxp.com>
10546 M:      Xinming Hu <huxinming820@gmail.com>
10547 L:      linux-wireless@vger.kernel.org
10548 S:      Maintained
10549 F:      drivers/net/wireless/marvell/mwifiex/
10550
10551 MARVELL MWL8K WIRELESS DRIVER
10552 M:      Lennert Buytenhek <buytenh@wantstofly.org>
10553 L:      linux-wireless@vger.kernel.org
10554 S:      Odd Fixes
10555 F:      drivers/net/wireless/marvell/mwl8k.c
10556
10557 MARVELL NAND CONTROLLER DRIVER
10558 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10559 L:      linux-mtd@lists.infradead.org
10560 S:      Maintained
10561 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10562 F:      drivers/mtd/nand/raw/marvell_nand.c
10563
10564 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10565 M:      Sunil Goutham <sgoutham@marvell.com>
10566 M:      Geetha sowjanya <gakula@marvell.com>
10567 M:      Subbaraya Sundeep <sbhatta@marvell.com>
10568 M:      hariprasad <hkelam@marvell.com>
10569 L:      netdev@vger.kernel.org
10570 S:      Supported
10571 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10572
10573 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10574 M:      Sunil Goutham <sgoutham@marvell.com>
10575 M:      Linu Cherian <lcherian@marvell.com>
10576 M:      Geetha sowjanya <gakula@marvell.com>
10577 M:      Jerin Jacob <jerinj@marvell.com>
10578 L:      netdev@vger.kernel.org
10579 S:      Supported
10580 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
10581 F:      drivers/net/ethernet/marvell/octeontx2/af/
10582
10583 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10584 M:      Nicolas Pitre <nico@fluxnic.net>
10585 S:      Odd Fixes
10586 F:      drivers/mmc/host/mvsdio.*
10587
10588 MARVELL USB MDIO CONTROLLER DRIVER
10589 M:      Tobias Waldekranz <tobias@waldekranz.com>
10590 L:      netdev@vger.kernel.org
10591 S:      Maintained
10592 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10593 F:      drivers/net/mdio/mdio-mvusb.c
10594
10595 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10596 M:      Hu Ziji <huziji@marvell.com>
10597 L:      linux-mmc@vger.kernel.org
10598 S:      Supported
10599 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10600 F:      drivers/mmc/host/sdhci-xenon*
10601
10602 MATROX FRAMEBUFFER DRIVER
10603 L:      linux-fbdev@vger.kernel.org
10604 S:      Orphan
10605 F:      drivers/video/fbdev/matrox/matroxfb_*
10606 F:      include/uapi/linux/matroxfb.h
10607
10608 MAX16065 HARDWARE MONITOR DRIVER
10609 M:      Guenter Roeck <linux@roeck-us.net>
10610 L:      linux-hwmon@vger.kernel.org
10611 S:      Maintained
10612 F:      Documentation/hwmon/max16065.rst
10613 F:      drivers/hwmon/max16065.c
10614
10615 MAX2175 SDR TUNER DRIVER
10616 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10617 L:      linux-media@vger.kernel.org
10618 S:      Maintained
10619 T:      git git://linuxtv.org/media_tree.git
10620 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10621 F:      Documentation/userspace-api/media/drivers/max2175.rst
10622 F:      drivers/media/i2c/max2175*
10623 F:      include/uapi/linux/max2175.h
10624
10625 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10626 L:      linux-hwmon@vger.kernel.org
10627 S:      Orphan
10628 F:      Documentation/hwmon/max6650.rst
10629 F:      drivers/hwmon/max6650.c
10630
10631 MAX6697 HARDWARE MONITOR DRIVER
10632 M:      Guenter Roeck <linux@roeck-us.net>
10633 L:      linux-hwmon@vger.kernel.org
10634 S:      Maintained
10635 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
10636 F:      Documentation/hwmon/max6697.rst
10637 F:      drivers/hwmon/max6697.c
10638 F:      include/linux/platform_data/max6697.h
10639
10640 MAX9286 QUAD GMSL DESERIALIZER DRIVER
10641 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
10642 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10643 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
10644 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
10645 L:      linux-media@vger.kernel.org
10646 S:      Maintained
10647 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
10648 F:      drivers/media/i2c/max9286.c
10649
10650 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10651 M:      Peter Rosin <peda@axentia.se>
10652 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10653 S:      Maintained
10654 F:      Documentation/devicetree/bindings/sound/max9860.txt
10655 F:      sound/soc/codecs/max9860.*
10656
10657 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10658 M:      Andreas Klinger <ak@it-klinger.de>
10659 L:      linux-iio@vger.kernel.org
10660 S:      Maintained
10661 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10662 F:      drivers/iio/proximity/mb1232.c
10663
10664 MAXIM MAX77650 PMIC MFD DRIVER
10665 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
10666 L:      linux-kernel@vger.kernel.org
10667 S:      Maintained
10668 F:      Documentation/devicetree/bindings/*/*max77650.yaml
10669 F:      Documentation/devicetree/bindings/*/max77650*.yaml
10670 F:      drivers/gpio/gpio-max77650.c
10671 F:      drivers/input/misc/max77650-onkey.c
10672 F:      drivers/leds/leds-max77650.c
10673 F:      drivers/mfd/max77650.c
10674 F:      drivers/power/supply/max77650-charger.c
10675 F:      drivers/regulator/max77650-regulator.c
10676 F:      include/linux/mfd/max77650.h
10677
10678 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10679 M:      Javier Martinez Canillas <javier@dowhile0.org>
10680 L:      linux-kernel@vger.kernel.org
10681 S:      Supported
10682 F:      Documentation/devicetree/bindings/*/*max77802.txt
10683 F:      drivers/regulator/max77802-regulator.c
10684 F:      include/dt-bindings/*/*max77802.h
10685
10686 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10687 M:      Krzysztof Kozlowski <krzk@kernel.org>
10688 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10689 L:      linux-pm@vger.kernel.org
10690 S:      Supported
10691 F:      drivers/power/supply/max14577_charger.c
10692 F:      drivers/power/supply/max77693_charger.c
10693
10694 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10695 M:      Chanwoo Choi <cw00.choi@samsung.com>
10696 M:      Krzysztof Kozlowski <krzk@kernel.org>
10697 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10698 L:      linux-kernel@vger.kernel.org
10699 S:      Supported
10700 F:      Documentation/devicetree/bindings/*/max77686.txt
10701 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10702 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10703 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10704 F:      drivers/*/max14577*.c
10705 F:      drivers/*/max77686*.c
10706 F:      drivers/*/max77693*.c
10707 F:      drivers/clk/clk-max77686.c
10708 F:      drivers/extcon/extcon-max14577.c
10709 F:      drivers/extcon/extcon-max77693.c
10710 F:      drivers/rtc/rtc-max77686.c
10711 F:      include/linux/mfd/max14577*.h
10712 F:      include/linux/mfd/max77686*.h
10713 F:      include/linux/mfd/max77693*.h
10714
10715 MAXIRADIO FM RADIO RECEIVER DRIVER
10716 M:      Hans Verkuil <hverkuil@xs4all.nl>
10717 L:      linux-media@vger.kernel.org
10718 S:      Maintained
10719 W:      https://linuxtv.org
10720 T:      git git://linuxtv.org/media_tree.git
10721 F:      drivers/media/radio/radio-maxiradio*
10722
10723 MCAN MMIO DEVICE DRIVER
10724 M:      Dan Murphy <dmurphy@ti.com>
10725 M:      Sriram Dash <sriram.dash@samsung.com>
10726 L:      linux-can@vger.kernel.org
10727 S:      Maintained
10728 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10729 F:      drivers/net/can/m_can/m_can.c
10730 F:      drivers/net/can/m_can/m_can.h
10731 F:      drivers/net/can/m_can/m_can_platform.c
10732
10733 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10734 M:      Rishi Gupta <gupt21@gmail.com>
10735 L:      linux-i2c@vger.kernel.org
10736 L:      linux-input@vger.kernel.org
10737 S:      Maintained
10738 F:      drivers/hid/hid-mcp2221.c
10739
10740 MCP251XFD SPI-CAN NETWORK DRIVER
10741 M:      Marc Kleine-Budde <mkl@pengutronix.de>
10742 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
10743 R:      Thomas Kopp <thomas.kopp@microchip.com>
10744 L:      linux-can@vger.kernel.org
10745 S:      Maintained
10746 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
10747 F:      drivers/net/can/spi/mcp251xfd/
10748
10749 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10750 M:      Peter Rosin <peda@axentia.se>
10751 L:      linux-iio@vger.kernel.org
10752 S:      Maintained
10753 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10754 F:      drivers/iio/potentiometer/mcp4018.c
10755 F:      drivers/iio/potentiometer/mcp4531.c
10756
10757 MCR20A IEEE-802.15.4 RADIO DRIVER
10758 M:      Xue Liu <liuxuenetmail@gmail.com>
10759 L:      linux-wpan@vger.kernel.org
10760 S:      Maintained
10761 W:      https://github.com/xueliu/mcr20a-linux
10762 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10763 F:      drivers/net/ieee802154/mcr20a.c
10764 F:      drivers/net/ieee802154/mcr20a.h
10765
10766 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10767 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10768 L:      linux-iio@vger.kernel.org
10769 S:      Maintained
10770 F:      drivers/iio/dac/cio-dac.c
10771
10772 MEDIA CONTROLLER FRAMEWORK
10773 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10774 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10775 L:      linux-media@vger.kernel.org
10776 S:      Supported
10777 W:      https://www.linuxtv.org
10778 T:      git git://linuxtv.org/media_tree.git
10779 F:      drivers/media/mc/
10780 F:      include/media/media-*.h
10781 F:      include/uapi/linux/media.h
10782
10783 MEDIA DRIVER FOR FREESCALE IMX PXP
10784 M:      Philipp Zabel <p.zabel@pengutronix.de>
10785 L:      linux-media@vger.kernel.org
10786 S:      Maintained
10787 T:      git git://linuxtv.org/media_tree.git
10788 F:      drivers/media/platform/imx-pxp.[ch]
10789
10790 MEDIA DRIVERS FOR ASCOT2E
10791 M:      Sergey Kozlov <serjk@netup.ru>
10792 M:      Abylay Ospan <aospan@netup.ru>
10793 L:      linux-media@vger.kernel.org
10794 S:      Supported
10795 W:      https://linuxtv.org
10796 W:      http://netup.tv/
10797 T:      git git://linuxtv.org/media_tree.git
10798 F:      drivers/media/dvb-frontends/ascot2e*
10799
10800 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10801 M:      Jasmin Jessich <jasmin@anw.at>
10802 L:      linux-media@vger.kernel.org
10803 S:      Maintained
10804 W:      https://linuxtv.org
10805 T:      git git://linuxtv.org/media_tree.git
10806 F:      drivers/media/dvb-frontends/cxd2099*
10807
10808 MEDIA DRIVERS FOR CXD2841ER
10809 M:      Sergey Kozlov <serjk@netup.ru>
10810 M:      Abylay Ospan <aospan@netup.ru>
10811 L:      linux-media@vger.kernel.org
10812 S:      Supported
10813 W:      https://linuxtv.org
10814 W:      http://netup.tv/
10815 T:      git git://linuxtv.org/media_tree.git
10816 F:      drivers/media/dvb-frontends/cxd2841er*
10817
10818 MEDIA DRIVERS FOR CXD2880
10819 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
10820 L:      linux-media@vger.kernel.org
10821 S:      Supported
10822 W:      http://linuxtv.org/
10823 T:      git git://linuxtv.org/media_tree.git
10824 F:      drivers/media/dvb-frontends/cxd2880/*
10825 F:      drivers/media/spi/cxd2880*
10826
10827 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10828 L:      linux-media@vger.kernel.org
10829 S:      Orphan
10830 W:      https://linuxtv.org
10831 T:      git git://linuxtv.org/media_tree.git
10832 F:      drivers/media/pci/ddbridge/*
10833
10834 MEDIA DRIVERS FOR FREESCALE IMX
10835 M:      Steve Longerbeam <slongerbeam@gmail.com>
10836 M:      Philipp Zabel <p.zabel@pengutronix.de>
10837 L:      linux-media@vger.kernel.org
10838 S:      Maintained
10839 T:      git git://linuxtv.org/media_tree.git
10840 F:      Documentation/admin-guide/media/imx.rst
10841 F:      Documentation/devicetree/bindings/media/imx.txt
10842 F:      drivers/staging/media/imx/
10843 F:      include/linux/imx-media.h
10844 F:      include/media/imx.h
10845
10846 MEDIA DRIVERS FOR FREESCALE IMX7
10847 M:      Rui Miguel Silva <rmfrfs@gmail.com>
10848 L:      linux-media@vger.kernel.org
10849 S:      Maintained
10850 T:      git git://linuxtv.org/media_tree.git
10851 F:      Documentation/admin-guide/media/imx7.rst
10852 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
10853 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
10854 F:      drivers/staging/media/imx/imx7-media-csi.c
10855 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10856
10857 MEDIA DRIVERS FOR HELENE
10858 M:      Abylay Ospan <aospan@netup.ru>
10859 L:      linux-media@vger.kernel.org
10860 S:      Supported
10861 W:      https://linuxtv.org
10862 W:      http://netup.tv/
10863 T:      git git://linuxtv.org/media_tree.git
10864 F:      drivers/media/dvb-frontends/helene*
10865
10866 MEDIA DRIVERS FOR HORUS3A
10867 M:      Sergey Kozlov <serjk@netup.ru>
10868 M:      Abylay Ospan <aospan@netup.ru>
10869 L:      linux-media@vger.kernel.org
10870 S:      Supported
10871 W:      https://linuxtv.org
10872 W:      http://netup.tv/
10873 T:      git git://linuxtv.org/media_tree.git
10874 F:      drivers/media/dvb-frontends/horus3a*
10875
10876 MEDIA DRIVERS FOR LNBH25
10877 M:      Sergey Kozlov <serjk@netup.ru>
10878 M:      Abylay Ospan <aospan@netup.ru>
10879 L:      linux-media@vger.kernel.org
10880 S:      Supported
10881 W:      https://linuxtv.org
10882 W:      http://netup.tv/
10883 T:      git git://linuxtv.org/media_tree.git
10884 F:      drivers/media/dvb-frontends/lnbh25*
10885
10886 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10887 L:      linux-media@vger.kernel.org
10888 S:      Orphan
10889 W:      https://linuxtv.org
10890 T:      git git://linuxtv.org/media_tree.git
10891 F:      drivers/media/dvb-frontends/mxl5xx*
10892
10893 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10894 M:      Sergey Kozlov <serjk@netup.ru>
10895 M:      Abylay Ospan <aospan@netup.ru>
10896 L:      linux-media@vger.kernel.org
10897 S:      Supported
10898 W:      https://linuxtv.org
10899 W:      http://netup.tv/
10900 T:      git git://linuxtv.org/media_tree.git
10901 F:      drivers/media/pci/netup_unidvb/*
10902
10903 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10904 M:      Dmitry Osipenko <digetx@gmail.com>
10905 L:      linux-media@vger.kernel.org
10906 L:      linux-tegra@vger.kernel.org
10907 S:      Maintained
10908 T:      git git://linuxtv.org/media_tree.git
10909 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10910 F:      drivers/staging/media/tegra-vde/
10911
10912 MEDIA DRIVERS FOR RENESAS - CEU
10913 M:      Jacopo Mondi <jacopo@jmondi.org>
10914 L:      linux-media@vger.kernel.org
10915 L:      linux-renesas-soc@vger.kernel.org
10916 S:      Supported
10917 T:      git git://linuxtv.org/media_tree.git
10918 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
10919 F:      drivers/media/platform/renesas-ceu.c
10920 F:      include/media/drv-intf/renesas-ceu.h
10921
10922 MEDIA DRIVERS FOR RENESAS - DRIF
10923 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10924 L:      linux-media@vger.kernel.org
10925 L:      linux-renesas-soc@vger.kernel.org
10926 S:      Supported
10927 T:      git git://linuxtv.org/media_tree.git
10928 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
10929 F:      drivers/media/platform/rcar_drif.c
10930
10931 MEDIA DRIVERS FOR RENESAS - FCP
10932 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10933 L:      linux-media@vger.kernel.org
10934 L:      linux-renesas-soc@vger.kernel.org
10935 S:      Supported
10936 T:      git git://linuxtv.org/media_tree.git
10937 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
10938 F:      drivers/media/platform/rcar-fcp.c
10939 F:      include/media/rcar-fcp.h
10940
10941 MEDIA DRIVERS FOR RENESAS - FDP1
10942 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10943 L:      linux-media@vger.kernel.org
10944 L:      linux-renesas-soc@vger.kernel.org
10945 S:      Supported
10946 T:      git git://linuxtv.org/media_tree.git
10947 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
10948 F:      drivers/media/platform/rcar_fdp1.c
10949
10950 MEDIA DRIVERS FOR RENESAS - VIN
10951 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
10952 L:      linux-media@vger.kernel.org
10953 L:      linux-renesas-soc@vger.kernel.org
10954 S:      Supported
10955 T:      git git://linuxtv.org/media_tree.git
10956 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
10957 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
10958 F:      drivers/media/platform/rcar-vin/
10959
10960 MEDIA DRIVERS FOR RENESAS - VSP1
10961 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10962 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10963 L:      linux-media@vger.kernel.org
10964 L:      linux-renesas-soc@vger.kernel.org
10965 S:      Supported
10966 T:      git git://linuxtv.org/media_tree.git
10967 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
10968 F:      drivers/media/platform/vsp1/
10969
10970 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
10971 L:      linux-media@vger.kernel.org
10972 S:      Orphan
10973 W:      https://linuxtv.org
10974 T:      git git://linuxtv.org/media_tree.git
10975 F:      drivers/media/dvb-frontends/stv0910*
10976
10977 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
10978 L:      linux-media@vger.kernel.org
10979 S:      Orphan
10980 W:      https://linuxtv.org
10981 T:      git git://linuxtv.org/media_tree.git
10982 F:      drivers/media/dvb-frontends/stv6111*
10983
10984 MEDIA DRIVERS FOR STM32 - DCMI
10985 M:      Hugues Fruchet <hugues.fruchet@st.com>
10986 L:      linux-media@vger.kernel.org
10987 S:      Supported
10988 T:      git git://linuxtv.org/media_tree.git
10989 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
10990 F:      drivers/media/platform/stm32/stm32-dcmi.c
10991
10992 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
10993 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
10994 L:      linux-media@vger.kernel.org
10995 S:      Maintained
10996 W:      https://linuxtv.org
10997 Q:      http://patchwork.kernel.org/project/linux-media/list/
10998 T:      git git://linuxtv.org/media_tree.git
10999 F:      Documentation/admin-guide/media/
11000 F:      Documentation/devicetree/bindings/media/
11001 F:      Documentation/driver-api/media/
11002 F:      Documentation/userspace-api/media/
11003 F:      drivers/media/
11004 F:      drivers/staging/media/
11005 F:      include/linux/platform_data/media/
11006 F:      include/media/
11007 F:      include/uapi/linux/dvb/
11008 F:      include/uapi/linux/ivtv*
11009 F:      include/uapi/linux/media.h
11010 F:      include/uapi/linux/meye.h
11011 F:      include/uapi/linux/uvcvideo.h
11012 F:      include/uapi/linux/v4l2-*
11013 F:      include/uapi/linux/videodev2.h
11014
11015 MEDIATEK BLUETOOTH DRIVER
11016 M:      Sean Wang <sean.wang@mediatek.com>
11017 L:      linux-bluetooth@vger.kernel.org
11018 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11019 S:      Maintained
11020 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11021 F:      drivers/bluetooth/btmtkuart.c
11022
11023 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11024 M:      Sean Wang <sean.wang@mediatek.com>
11025 L:      linux-pm@vger.kernel.org
11026 S:      Maintained
11027 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11028 F:      drivers/power/reset/mt6323-poweroff.c
11029
11030 MEDIATEK CIR DRIVER
11031 M:      Sean Wang <sean.wang@mediatek.com>
11032 S:      Maintained
11033 F:      drivers/media/rc/mtk-cir.c
11034
11035 MEDIATEK DMA DRIVER
11036 M:      Sean Wang <sean.wang@mediatek.com>
11037 L:      dmaengine@vger.kernel.org
11038 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11039 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11040 S:      Maintained
11041 F:      Documentation/devicetree/bindings/dma/mtk-*
11042 F:      drivers/dma/mediatek/
11043
11044 MEDIATEK ETHERNET DRIVER
11045 M:      Felix Fietkau <nbd@nbd.name>
11046 M:      John Crispin <john@phrozen.org>
11047 M:      Sean Wang <sean.wang@mediatek.com>
11048 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11049 L:      netdev@vger.kernel.org
11050 S:      Maintained
11051 F:      drivers/net/ethernet/mediatek/
11052
11053 MEDIATEK I2C CONTROLLER DRIVER
11054 M:      Qii Wang <qii.wang@mediatek.com>
11055 L:      linux-i2c@vger.kernel.org
11056 S:      Maintained
11057 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11058 F:      drivers/i2c/busses/i2c-mt65xx.c
11059
11060 MEDIATEK JPEG DRIVER
11061 M:      Rick Chang <rick.chang@mediatek.com>
11062 M:      Bin Liu <bin.liu@mediatek.com>
11063 S:      Supported
11064 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11065 F:      drivers/media/platform/mtk-jpeg/
11066
11067 MEDIATEK MDP DRIVER
11068 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11069 M:      Houlong Wei <houlong.wei@mediatek.com>
11070 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11071 S:      Supported
11072 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11073 F:      drivers/media/platform/mtk-mdp/
11074 F:      drivers/media/platform/mtk-vpu/
11075
11076 MEDIATEK MEDIA DRIVER
11077 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11078 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11079 S:      Supported
11080 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11081 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11082 F:      drivers/media/platform/mtk-vcodec/
11083 F:      drivers/media/platform/mtk-vpu/
11084
11085 MEDIATEK MMC/SD/SDIO DRIVER
11086 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11087 S:      Maintained
11088 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
11089 F:      drivers/mmc/host/mtk-sd.c
11090
11091 MEDIATEK MT76 WIRELESS LAN DRIVER
11092 M:      Felix Fietkau <nbd@nbd.name>
11093 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11094 R:      Ryder Lee <ryder.lee@mediatek.com>
11095 L:      linux-wireless@vger.kernel.org
11096 S:      Maintained
11097 F:      drivers/net/wireless/mediatek/mt76/
11098
11099 MEDIATEK MT7601U WIRELESS LAN DRIVER
11100 M:      Jakub Kicinski <kubakici@wp.pl>
11101 L:      linux-wireless@vger.kernel.org
11102 S:      Maintained
11103 F:      drivers/net/wireless/mediatek/mt7601u/
11104
11105 MEDIATEK MT7621/28/88 I2C DRIVER
11106 M:      Stefan Roese <sr@denx.de>
11107 L:      linux-i2c@vger.kernel.org
11108 S:      Maintained
11109 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11110 F:      drivers/i2c/busses/i2c-mt7621.c
11111
11112 MEDIATEK NAND CONTROLLER DRIVER
11113 L:      linux-mtd@lists.infradead.org
11114 S:      Orphan
11115 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11116 F:      drivers/mtd/nand/raw/mtk_*
11117
11118 MEDIATEK PMIC LED DRIVER
11119 M:      Sean Wang <sean.wang@mediatek.com>
11120 S:      Maintained
11121 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11122 F:      drivers/leds/leds-mt6323.c
11123
11124 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11125 M:      Sean Wang <sean.wang@mediatek.com>
11126 S:      Maintained
11127 F:      drivers/char/hw_random/mtk-rng.c
11128
11129 MEDIATEK SWITCH DRIVER
11130 M:      Sean Wang <sean.wang@mediatek.com>
11131 M:      Landen Chao <Landen.Chao@mediatek.com>
11132 L:      netdev@vger.kernel.org
11133 S:      Maintained
11134 F:      drivers/net/dsa/mt7530.*
11135 F:      net/dsa/tag_mtk.c
11136
11137 MEDIATEK USB3 DRD IP DRIVER
11138 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
11139 L:      linux-usb@vger.kernel.org
11140 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11141 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11142 S:      Maintained
11143 F:      drivers/usb/mtu3/
11144
11145 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11146 M:      Peter Senna Tschudin <peter.senna@gmail.com>
11147 M:      Martin Donnelly <martin.donnelly@ge.com>
11148 M:      Martyn Welch <martyn.welch@collabora.co.uk>
11149 S:      Maintained
11150 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11151 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11152
11153 MEGARAID SCSI/SAS DRIVERS
11154 M:      Kashyap Desai <kashyap.desai@broadcom.com>
11155 M:      Sumit Saxena <sumit.saxena@broadcom.com>
11156 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
11157 L:      megaraidlinux.pdl@broadcom.com
11158 L:      linux-scsi@vger.kernel.org
11159 S:      Maintained
11160 W:      http://www.avagotech.com/support/
11161 F:      Documentation/scsi/megaraid.rst
11162 F:      drivers/scsi/megaraid.*
11163 F:      drivers/scsi/megaraid/
11164
11165 MELEXIS MLX90614 DRIVER
11166 M:      Crt Mori <cmo@melexis.com>
11167 L:      linux-iio@vger.kernel.org
11168 S:      Supported
11169 W:      http://www.melexis.com
11170 F:      drivers/iio/temperature/mlx90614.c
11171
11172 MELEXIS MLX90632 DRIVER
11173 M:      Crt Mori <cmo@melexis.com>
11174 L:      linux-iio@vger.kernel.org
11175 S:      Supported
11176 W:      http://www.melexis.com
11177 F:      drivers/iio/temperature/mlx90632.c
11178
11179 MELFAS MIP4 TOUCHSCREEN DRIVER
11180 M:      Sangwon Jee <jeesw@melfas.com>
11181 S:      Supported
11182 W:      http://www.melfas.com
11183 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11184 F:      drivers/input/touchscreen/melfas_mip4.c
11185
11186 MELLANOX BLUEFIELD I2C DRIVER
11187 M:      Khalil Blaiech <kblaiech@mellanox.com>
11188 L:      linux-i2c@vger.kernel.org
11189 S:      Supported
11190 F:      drivers/i2c/busses/i2c-mlxbf.c
11191
11192 MELLANOX ETHERNET DRIVER (mlx4_en)
11193 M:      Tariq Toukan <tariqt@nvidia.com>
11194 L:      netdev@vger.kernel.org
11195 S:      Supported
11196 W:      http://www.mellanox.com
11197 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11198 F:      drivers/net/ethernet/mellanox/mlx4/en_*
11199
11200 MELLANOX ETHERNET DRIVER (mlx5e)
11201 M:      Saeed Mahameed <saeedm@nvidia.com>
11202 L:      netdev@vger.kernel.org
11203 S:      Supported
11204 W:      http://www.mellanox.com
11205 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11206 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
11207
11208 MELLANOX ETHERNET INNOVA DRIVERS
11209 R:      Boris Pismenny <borisp@nvidia.com>
11210 L:      netdev@vger.kernel.org
11211 S:      Supported
11212 W:      http://www.mellanox.com
11213 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11214 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
11215 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
11216 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
11217 F:      include/linux/mlx5/mlx5_ifc_fpga.h
11218
11219 MELLANOX ETHERNET SWITCH DRIVERS
11220 M:      Jiri Pirko <jiri@nvidia.com>
11221 M:      Ido Schimmel <idosch@nvidia.com>
11222 L:      netdev@vger.kernel.org
11223 S:      Supported
11224 W:      http://www.mellanox.com
11225 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11226 F:      drivers/net/ethernet/mellanox/mlxsw/
11227 F:      tools/testing/selftests/drivers/net/mlxsw/
11228
11229 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
11230 M:      mlxsw@nvidia.com
11231 L:      netdev@vger.kernel.org
11232 S:      Supported
11233 W:      http://www.mellanox.com
11234 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11235 F:      drivers/net/ethernet/mellanox/mlxfw/
11236
11237 MELLANOX HARDWARE PLATFORM SUPPORT
11238 M:      Andy Shevchenko <andy@infradead.org>
11239 M:      Darren Hart <dvhart@infradead.org>
11240 M:      Vadim Pasternak <vadimp@nvidia.com>
11241 L:      platform-driver-x86@vger.kernel.org
11242 S:      Supported
11243 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
11244 F:      drivers/platform/mellanox/
11245 F:      include/linux/platform_data/mlxreg.h
11246
11247 MELLANOX MLX4 core VPI driver
11248 M:      Tariq Toukan <tariqt@nvidia.com>
11249 L:      netdev@vger.kernel.org
11250 L:      linux-rdma@vger.kernel.org
11251 S:      Supported
11252 W:      http://www.mellanox.com
11253 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11254 F:      drivers/net/ethernet/mellanox/mlx4/
11255 F:      include/linux/mlx4/
11256
11257 MELLANOX MLX4 IB driver
11258 M:      Yishai Hadas <yishaih@nvidia.com>
11259 L:      linux-rdma@vger.kernel.org
11260 S:      Supported
11261 W:      http://www.mellanox.com
11262 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11263 F:      drivers/infiniband/hw/mlx4/
11264 F:      include/linux/mlx4/
11265 F:      include/uapi/rdma/mlx4-abi.h
11266
11267 MELLANOX MLX5 core VPI driver
11268 M:      Saeed Mahameed <saeedm@nvidia.com>
11269 M:      Leon Romanovsky <leonro@nvidia.com>
11270 L:      netdev@vger.kernel.org
11271 L:      linux-rdma@vger.kernel.org
11272 S:      Supported
11273 W:      http://www.mellanox.com
11274 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11275 F:      Documentation/networking/device_drivers/ethernet/mellanox/
11276 F:      drivers/net/ethernet/mellanox/mlx5/core/
11277 F:      include/linux/mlx5/
11278
11279 MELLANOX MLX5 IB driver
11280 M:      Leon Romanovsky <leonro@nvidia.com>
11281 L:      linux-rdma@vger.kernel.org
11282 S:      Supported
11283 W:      http://www.mellanox.com
11284 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11285 F:      drivers/infiniband/hw/mlx5/
11286 F:      include/linux/mlx5/
11287 F:      include/uapi/rdma/mlx5-abi.h
11288
11289 MELLANOX MLXCPLD I2C AND MUX DRIVER
11290 M:      Vadim Pasternak <vadimp@nvidia.com>
11291 M:      Michael Shych <michaelsh@nvidia.com>
11292 L:      linux-i2c@vger.kernel.org
11293 S:      Supported
11294 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
11295 F:      drivers/i2c/busses/i2c-mlxcpld.c
11296 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
11297
11298 MELLANOX MLXCPLD LED DRIVER
11299 M:      Vadim Pasternak <vadimp@nvidia.com>
11300 L:      linux-leds@vger.kernel.org
11301 S:      Supported
11302 F:      Documentation/leds/leds-mlxcpld.rst
11303 F:      drivers/leds/leds-mlxcpld.c
11304 F:      drivers/leds/leds-mlxreg.c
11305
11306 MELLANOX PLATFORM DRIVER
11307 M:      Vadim Pasternak <vadimp@nvidia.com>
11308 L:      platform-driver-x86@vger.kernel.org
11309 S:      Supported
11310 F:      drivers/platform/x86/mlx-platform.c
11311
11312 MEMBARRIER SUPPORT
11313 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11314 M:      "Paul E. McKenney" <paulmck@kernel.org>
11315 L:      linux-kernel@vger.kernel.org
11316 S:      Supported
11317 F:      arch/powerpc/include/asm/membarrier.h
11318 F:      include/uapi/linux/membarrier.h
11319 F:      kernel/sched/membarrier.c
11320
11321 MEMBLOCK
11322 M:      Mike Rapoport <rppt@linux.ibm.com>
11323 L:      linux-mm@kvack.org
11324 S:      Maintained
11325 F:      Documentation/core-api/boot-time-mm.rst
11326 F:      include/linux/memblock.h
11327 F:      mm/memblock.c
11328
11329 MEMORY CONTROLLER DRIVERS
11330 M:      Krzysztof Kozlowski <krzk@kernel.org>
11331 L:      linux-kernel@vger.kernel.org
11332 S:      Maintained
11333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
11334 F:      Documentation/devicetree/bindings/memory-controllers/
11335 F:      drivers/memory/
11336
11337 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
11338 M:      Dmitry Osipenko <digetx@gmail.com>
11339 L:      linux-pm@vger.kernel.org
11340 L:      linux-tegra@vger.kernel.org
11341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
11342 S:      Maintained
11343 F:      drivers/devfreq/tegra20-devfreq.c
11344 F:      drivers/devfreq/tegra30-devfreq.c
11345
11346 MEMORY MANAGEMENT
11347 M:      Andrew Morton <akpm@linux-foundation.org>
11348 L:      linux-mm@kvack.org
11349 S:      Maintained
11350 W:      http://www.linux-mm.org
11351 T:      quilt https://ozlabs.org/~akpm/mmotm/
11352 T:      quilt https://ozlabs.org/~akpm/mmots/
11353 T:      git git://github.com/hnaz/linux-mm.git
11354 F:      include/linux/gfp.h
11355 F:      include/linux/memory_hotplug.h
11356 F:      include/linux/mm.h
11357 F:      include/linux/mmzone.h
11358 F:      include/linux/vmalloc.h
11359 F:      mm/
11360
11361 MEMORY TECHNOLOGY DEVICES (MTD)
11362 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11363 M:      Richard Weinberger <richard@nod.at>
11364 M:      Vignesh Raghavendra <vigneshr@ti.com>
11365 L:      linux-mtd@lists.infradead.org
11366 S:      Maintained
11367 W:      http://www.linux-mtd.infradead.org/
11368 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11369 C:      irc://irc.oftc.net/mtd
11370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11372 F:      Documentation/devicetree/bindings/mtd/
11373 F:      drivers/mtd/
11374 F:      include/linux/mtd/
11375 F:      include/uapi/mtd/
11376
11377 MEN A21 WATCHDOG DRIVER
11378 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11379 L:      linux-watchdog@vger.kernel.org
11380 S:      Maintained
11381 F:      drivers/watchdog/mena21_wdt.c
11382
11383 MEN CHAMELEON BUS (mcb)
11384 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11385 S:      Maintained
11386 F:      Documentation/driver-api/men-chameleon-bus.rst
11387 F:      drivers/mcb/
11388 F:      include/linux/mcb.h
11389
11390 MEN F21BMC (Board Management Controller)
11391 M:      Andreas Werner <andreas.werner@men.de>
11392 S:      Supported
11393 F:      Documentation/hwmon/menf21bmc.rst
11394 F:      drivers/hwmon/menf21bmc_hwmon.c
11395 F:      drivers/leds/leds-menf21bmc.c
11396 F:      drivers/mfd/menf21bmc.c
11397 F:      drivers/watchdog/menf21bmc_wdt.c
11398
11399 MEN Z069 WATCHDOG DRIVER
11400 M:      Johannes Thumshirn <jth@kernel.org>
11401 L:      linux-watchdog@vger.kernel.org
11402 S:      Maintained
11403 F:      drivers/watchdog/menz69_wdt.c
11404
11405 MESON AO CEC DRIVER FOR AMLOGIC SOCS
11406 M:      Neil Armstrong <narmstrong@baylibre.com>
11407 L:      linux-media@vger.kernel.org
11408 L:      linux-amlogic@lists.infradead.org
11409 S:      Supported
11410 W:      http://linux-meson.com/
11411 T:      git git://linuxtv.org/media_tree.git
11412 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
11413 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
11414 F:      drivers/media/cec/platform/meson/ao-cec.c
11415
11416 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
11417 M:      Liang Yang <liang.yang@amlogic.com>
11418 L:      linux-mtd@lists.infradead.org
11419 S:      Maintained
11420 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
11421 F:      drivers/mtd/nand/raw/meson_*
11422
11423 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
11424 M:      Neil Armstrong <narmstrong@baylibre.com>
11425 L:      linux-media@vger.kernel.org
11426 L:      linux-amlogic@lists.infradead.org
11427 S:      Supported
11428 T:      git git://linuxtv.org/media_tree.git
11429 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
11430 F:      drivers/staging/media/meson/vdec/
11431
11432 METHODE UDPU SUPPORT
11433 M:      Vladimir Vid <vladimir.vid@sartura.hr>
11434 S:      Maintained
11435 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
11436
11437 MHI BUS
11438 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11439 M:      Hemant Kumar <hemantk@codeaurora.org>
11440 L:      linux-arm-msm@vger.kernel.org
11441 S:      Maintained
11442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
11443 F:      Documentation/ABI/stable/sysfs-bus-mhi
11444 F:      Documentation/mhi/
11445 F:      drivers/bus/mhi/
11446 F:      include/linux/mhi.h
11447
11448 MICROBLAZE ARCHITECTURE
11449 M:      Michal Simek <monstr@monstr.eu>
11450 S:      Supported
11451 W:      http://www.monstr.eu/fdt/
11452 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11453 F:      arch/microblaze/
11454
11455 MICROCHIP AT91 DMA DRIVERS
11456 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11457 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11458 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11459 L:      dmaengine@vger.kernel.org
11460 S:      Supported
11461 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11462 F:      drivers/dma/at_hdmac.c
11463 F:      drivers/dma/at_hdmac_regs.h
11464 F:      drivers/dma/at_xdmac.c
11465 F:      include/dt-bindings/dma/at91.h
11466 F:      include/linux/platform_data/dma-atmel.h
11467
11468 MICROCHIP AT91 SERIAL DRIVER
11469 M:      Richard Genoud <richard.genoud@gmail.com>
11470 S:      Maintained
11471 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11472 F:      drivers/tty/serial/atmel_serial.c
11473 F:      drivers/tty/serial/atmel_serial.h
11474
11475 MICROCHIP AT91 USART MFD DRIVER
11476 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11477 L:      linux-kernel@vger.kernel.org
11478 S:      Supported
11479 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11480 F:      drivers/mfd/at91-usart.c
11481 F:      include/dt-bindings/mfd/at91-usart.h
11482
11483 MICROCHIP AT91 USART SPI DRIVER
11484 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11485 L:      linux-spi@vger.kernel.org
11486 S:      Supported
11487 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11488 F:      drivers/spi/spi-at91-usart.c
11489
11490 MICROCHIP AUDIO ASOC DRIVERS
11491 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11492 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11493 S:      Supported
11494 F:      sound/soc/atmel
11495
11496 MICROCHIP ECC DRIVER
11497 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11498 L:      linux-crypto@vger.kernel.org
11499 S:      Maintained
11500 F:      drivers/crypto/atmel-ecc.*
11501
11502 MICROCHIP I2C DRIVER
11503 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11504 L:      linux-i2c@vger.kernel.org
11505 S:      Supported
11506 F:      drivers/i2c/busses/i2c-at91-*.c
11507 F:      drivers/i2c/busses/i2c-at91.h
11508
11509 MICROCHIP ISC DRIVER
11510 M:      Eugen Hristev <eugen.hristev@microchip.com>
11511 L:      linux-media@vger.kernel.org
11512 S:      Supported
11513 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11514 F:      drivers/media/platform/atmel/atmel-isc-base.c
11515 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11516 F:      drivers/media/platform/atmel/atmel-isc.h
11517 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11518 F:      include/linux/atmel-isc-media.h
11519
11520 MICROCHIP ISI DRIVER
11521 M:      Eugen Hristev <eugen.hristev@microchip.com>
11522 L:      linux-media@vger.kernel.org
11523 S:      Supported
11524 F:      drivers/media/platform/atmel/atmel-isi.c
11525 F:      drivers/media/platform/atmel/atmel-isi.h
11526
11527 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11528 M:      Woojung Huh <woojung.huh@microchip.com>
11529 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11530 L:      netdev@vger.kernel.org
11531 S:      Maintained
11532 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
11533 F:      drivers/net/dsa/microchip/*
11534 F:      include/linux/platform_data/microchip-ksz.h
11535 F:      net/dsa/tag_ksz.c
11536
11537 MICROCHIP LAN743X ETHERNET DRIVER
11538 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
11539 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11540 L:      netdev@vger.kernel.org
11541 S:      Maintained
11542 F:      drivers/net/ethernet/microchip/lan743x_*
11543
11544 MICROCHIP LCDFB DRIVER
11545 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11546 L:      linux-fbdev@vger.kernel.org
11547 S:      Maintained
11548 F:      drivers/video/fbdev/atmel_lcdfb.c
11549 F:      include/video/atmel_lcdc.h
11550
11551 MICROCHIP MCP16502 PMIC DRIVER
11552 M:      Andrei Stefanescu <andrei.stefanescu@microchip.com>
11553 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11554 S:      Maintained
11555 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11556 F:      drivers/regulator/mcp16502.c
11557
11558 MICROCHIP MCP3911 ADC DRIVER
11559 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11560 M:      Kent Gustavsson <kent@minoris.se>
11561 L:      linux-iio@vger.kernel.org
11562 S:      Supported
11563 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11564 F:      drivers/iio/adc/mcp3911.c
11565
11566 MICROCHIP MMC/SD/SDIO MCI DRIVER
11567 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11568 S:      Maintained
11569 F:      drivers/mmc/host/atmel-mci.c
11570
11571 MICROCHIP NAND DRIVER
11572 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11573 L:      linux-mtd@lists.infradead.org
11574 S:      Supported
11575 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11576 F:      drivers/mtd/nand/raw/atmel/*
11577
11578 MICROCHIP PWM DRIVER
11579 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11580 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11581 L:      linux-pwm@vger.kernel.org
11582 S:      Supported
11583 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11584 F:      drivers/pwm/pwm-atmel.c
11585
11586 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11587 M:      Eugen Hristev <eugen.hristev@microchip.com>
11588 L:      linux-iio@vger.kernel.org
11589 S:      Supported
11590 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11591 F:      drivers/iio/adc/at91-sama5d2_adc.c
11592 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11593
11594 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11595 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11596 S:      Supported
11597 F:      drivers/power/reset/at91-sama5d2_shdwc.c
11598
11599 MICROCHIP SPI DRIVER
11600 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11601 S:      Supported
11602 F:      drivers/spi/spi-atmel.*
11603
11604 MICROCHIP SSC DRIVER
11605 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11606 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11607 S:      Supported
11608 F:      drivers/misc/atmel-ssc.c
11609 F:      include/linux/atmel-ssc.h
11610
11611 MICROCHIP USB251XB DRIVER
11612 M:      Richard Leitner <richard.leitner@skidata.com>
11613 L:      linux-usb@vger.kernel.org
11614 S:      Maintained
11615 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
11616 F:      drivers/usb/misc/usb251xb.c
11617
11618 MICROCHIP USBA UDC DRIVER
11619 M:      Cristian Birsan <cristian.birsan@microchip.com>
11620 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11621 S:      Supported
11622 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
11623
11624 MICROCHIP WILC1000 WIFI DRIVER
11625 M:      Ajay Singh <ajay.kathat@microchip.com>
11626 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11627 L:      linux-wireless@vger.kernel.org
11628 S:      Supported
11629 F:      drivers/net/wireless/microchip/wilc1000/
11630
11631 MICROSEMI MIPS SOCS
11632 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
11633 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11634 L:      linux-mips@vger.kernel.org
11635 S:      Supported
11636 F:      Documentation/devicetree/bindings/mips/mscc.txt
11637 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
11638 F:      arch/mips/boot/dts/mscc/
11639 F:      arch/mips/configs/generic/board-ocelot.config
11640 F:      arch/mips/generic/board-ocelot.c
11641
11642 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11643 M:      Don Brace <don.brace@microchip.com>
11644 L:      storagedev@microchip.com
11645 L:      linux-scsi@vger.kernel.org
11646 S:      Supported
11647 F:      Documentation/scsi/smartpqi.rst
11648 F:      drivers/scsi/smartpqi/Kconfig
11649 F:      drivers/scsi/smartpqi/Makefile
11650 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
11651 F:      include/linux/cciss*.h
11652 F:      include/uapi/linux/cciss*.h
11653
11654 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11655 M:      Chen Yu <yu.c.chen@intel.com>
11656 L:      platform-driver-x86@vger.kernel.org
11657 S:      Supported
11658 F:      drivers/platform/x86/surfacepro3_button.c
11659
11660 MICROTEK X6 SCANNER
11661 M:      Oliver Neukum <oliver@neukum.org>
11662 S:      Maintained
11663 F:      drivers/usb/image/microtek.*
11664
11665 MIPS
11666 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11667 L:      linux-mips@vger.kernel.org
11668 S:      Maintained
11669 W:      http://www.linux-mips.org/
11670 Q:      https://patchwork.kernel.org/project/linux-mips/list/
11671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11672 F:      Documentation/devicetree/bindings/mips/
11673 F:      Documentation/mips/
11674 F:      arch/mips/
11675 F:      drivers/platform/mips/
11676
11677 MIPS BOSTON DEVELOPMENT BOARD
11678 M:      Paul Burton <paulburton@kernel.org>
11679 L:      linux-mips@vger.kernel.org
11680 S:      Maintained
11681 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
11682 F:      arch/mips/boot/dts/img/boston.dts
11683 F:      arch/mips/configs/generic/board-boston.config
11684 F:      drivers/clk/imgtec/clk-boston.c
11685 F:      include/dt-bindings/clock/boston-clock.h
11686
11687 MIPS CORE DRIVERS
11688 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11689 M:      Serge Semin <fancer.lancer@gmail.com>
11690 L:      linux-mips@vger.kernel.org
11691 S:      Supported
11692 F:      drivers/bus/mips_cdmm.c
11693 F:      drivers/clocksource/mips-gic-timer.c
11694 F:      drivers/cpuidle/cpuidle-cps.c
11695 F:      drivers/irqchip/irq-mips-cpu.c
11696 F:      drivers/irqchip/irq-mips-gic.c
11697
11698 MIPS GENERIC PLATFORM
11699 M:      Paul Burton <paulburton@kernel.org>
11700 L:      linux-mips@vger.kernel.org
11701 S:      Supported
11702 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
11703 F:      arch/mips/generic/
11704 F:      arch/mips/tools/generic-board-config.sh
11705
11706 MIPS RINT INSTRUCTION EMULATION
11707 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
11708 L:      linux-mips@vger.kernel.org
11709 S:      Supported
11710 F:      arch/mips/math-emu/dp_rint.c
11711 F:      arch/mips/math-emu/sp_rint.c
11712
11713 MIPS/LOONGSON1 ARCHITECTURE
11714 M:      Keguang Zhang <keguang.zhang@gmail.com>
11715 L:      linux-mips@vger.kernel.org
11716 S:      Maintained
11717 F:      arch/mips/include/asm/mach-loongson32/
11718 F:      arch/mips/loongson32/
11719 F:      drivers/*/*/*loongson1*
11720 F:      drivers/*/*loongson1*
11721
11722 MIPS/LOONGSON2EF ARCHITECTURE
11723 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11724 L:      linux-mips@vger.kernel.org
11725 S:      Maintained
11726 F:      arch/mips/include/asm/mach-loongson2ef/
11727 F:      arch/mips/loongson2ef/
11728 F:      drivers/*/*/*loongson2*
11729 F:      drivers/*/*loongson2*
11730
11731 MIPS/LOONGSON64 ARCHITECTURE
11732 M:      Huacai Chen <chenhc@lemote.com>
11733 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11734 L:      linux-mips@vger.kernel.org
11735 S:      Maintained
11736 F:      arch/mips/include/asm/mach-loongson64/
11737 F:      arch/mips/loongson64/
11738 F:      drivers/*/*/*loongson3*
11739 F:      drivers/*/*loongson3*
11740 F:      drivers/irqchip/irq-loongson*
11741 F:      drivers/platform/mips/cpu_hwmon.c
11742
11743 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11744 M:      Hans Verkuil <hverkuil@xs4all.nl>
11745 L:      linux-media@vger.kernel.org
11746 S:      Odd Fixes
11747 W:      https://linuxtv.org
11748 T:      git git://linuxtv.org/media_tree.git
11749 F:      drivers/media/radio/radio-miropcm20*
11750
11751 MMP SUPPORT
11752 R:      Lubomir Rintel <lkundrak@v3.sk>
11753 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11754 S:      Odd Fixes
11755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11756 F:      arch/arm/boot/dts/mmp*
11757 F:      arch/arm/mach-mmp/
11758 F:      include/linux/soc/mmp/
11759
11760 MMP USB PHY DRIVERS
11761 R:      Lubomir Rintel <lkundrak@v3.sk>
11762 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11763 S:      Maintained
11764 F:      drivers/phy/marvell/phy-mmp3-usb.c
11765 F:      drivers/phy/marvell/phy-pxa-usb.c
11766
11767 MMU GATHER AND TLB INVALIDATION
11768 M:      Will Deacon <will@kernel.org>
11769 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
11770 M:      Andrew Morton <akpm@linux-foundation.org>
11771 M:      Nick Piggin <npiggin@gmail.com>
11772 M:      Peter Zijlstra <peterz@infradead.org>
11773 L:      linux-arch@vger.kernel.org
11774 L:      linux-mm@kvack.org
11775 S:      Maintained
11776 F:      arch/*/include/asm/tlb.h
11777 F:      include/asm-generic/tlb.h
11778 F:      mm/mmu_gather.c
11779
11780 MN88472 MEDIA DRIVER
11781 M:      Antti Palosaari <crope@iki.fi>
11782 L:      linux-media@vger.kernel.org
11783 S:      Maintained
11784 W:      https://linuxtv.org
11785 W:      http://palosaari.fi/linux/
11786 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11787 F:      drivers/media/dvb-frontends/mn88472*
11788
11789 MN88473 MEDIA DRIVER
11790 M:      Antti Palosaari <crope@iki.fi>
11791 L:      linux-media@vger.kernel.org
11792 S:      Maintained
11793 W:      https://linuxtv.org
11794 W:      http://palosaari.fi/linux/
11795 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11796 F:      drivers/media/dvb-frontends/mn88473*
11797
11798 MODULE SUPPORT
11799 M:      Jessica Yu <jeyu@kernel.org>
11800 S:      Maintained
11801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11802 F:      include/linux/module.h
11803 F:      kernel/module.c
11804
11805 MONOLITHIC POWER SYSTEM PMIC DRIVER
11806 M:      Saravanan Sekar <sravanhome@gmail.com>
11807 S:      Maintained
11808 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
11809 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
11810 F:      drivers/iio/adc/mp2629_adc.c
11811 F:      drivers/mfd/mp2629.c
11812 F:      drivers/power/supply/mp2629_charger.c
11813 F:      drivers/regulator/mp5416.c
11814 F:      drivers/regulator/mpq7920.c
11815 F:      drivers/regulator/mpq7920.h
11816 F:      include/linux/mfd/mp2629.h
11817
11818 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11819 S:      Orphan
11820 W:      http://popies.net/meye/
11821 F:      Documentation/userspace-api/media/drivers/meye*
11822 F:      drivers/media/pci/meye/
11823 F:      include/uapi/linux/meye.h
11824
11825 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
11826 M:      Jiri Slaby <jirislaby@kernel.org>
11827 S:      Maintained
11828 F:      Documentation/driver-api/serial/moxa-smartio.rst
11829 F:      drivers/tty/mxser.*
11830
11831 MR800 AVERMEDIA USB FM RADIO DRIVER
11832 M:      Alexey Klimov <klimov.linux@gmail.com>
11833 L:      linux-media@vger.kernel.org
11834 S:      Maintained
11835 T:      git git://linuxtv.org/media_tree.git
11836 F:      drivers/media/radio/radio-mr800.c
11837
11838 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11839 M:      Alan Ott <alan@signal11.us>
11840 L:      linux-wpan@vger.kernel.org
11841 S:      Maintained
11842 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11843 F:      drivers/net/ieee802154/mrf24j40.c
11844
11845 MSI LAPTOP SUPPORT
11846 M:      "Lee, Chun-Yi" <jlee@suse.com>
11847 L:      platform-driver-x86@vger.kernel.org
11848 S:      Maintained
11849 F:      drivers/platform/x86/msi-laptop.c
11850
11851 MSI WMI SUPPORT
11852 L:      platform-driver-x86@vger.kernel.org
11853 S:      Orphan
11854 F:      drivers/platform/x86/msi-wmi.c
11855
11856 MSI001 MEDIA DRIVER
11857 M:      Antti Palosaari <crope@iki.fi>
11858 L:      linux-media@vger.kernel.org
11859 S:      Maintained
11860 W:      https://linuxtv.org
11861 W:      http://palosaari.fi/linux/
11862 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11863 T:      git git://linuxtv.org/anttip/media_tree.git
11864 F:      drivers/media/tuners/msi001*
11865
11866 MSI2500 MEDIA DRIVER
11867 M:      Antti Palosaari <crope@iki.fi>
11868 L:      linux-media@vger.kernel.org
11869 S:      Maintained
11870 W:      https://linuxtv.org
11871 W:      http://palosaari.fi/linux/
11872 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11873 T:      git git://linuxtv.org/anttip/media_tree.git
11874 F:      drivers/media/usb/msi2500/
11875
11876 MSTAR INTERRUPT CONTROLLER DRIVER
11877 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
11878 M:      Daniel Palmer <daniel@thingy.jp>
11879 S:      Maintained
11880 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
11881 F:      drivers/irqchip/irq-mst-intc.c
11882
11883 MSYSTEMS DISKONCHIP G3 MTD DRIVER
11884 M:      Robert Jarzmik <robert.jarzmik@free.fr>
11885 L:      linux-mtd@lists.infradead.org
11886 S:      Maintained
11887 F:      drivers/mtd/devices/docg3*
11888
11889 MT9M032 APTINA SENSOR DRIVER
11890 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11891 L:      linux-media@vger.kernel.org
11892 S:      Maintained
11893 T:      git git://linuxtv.org/media_tree.git
11894 F:      drivers/media/i2c/mt9m032.c
11895 F:      include/media/i2c/mt9m032.h
11896
11897 MT9P031 APTINA CAMERA SENSOR
11898 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11899 L:      linux-media@vger.kernel.org
11900 S:      Maintained
11901 T:      git git://linuxtv.org/media_tree.git
11902 F:      drivers/media/i2c/mt9p031.c
11903 F:      include/media/i2c/mt9p031.h
11904
11905 MT9T001 APTINA CAMERA SENSOR
11906 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11907 L:      linux-media@vger.kernel.org
11908 S:      Maintained
11909 T:      git git://linuxtv.org/media_tree.git
11910 F:      drivers/media/i2c/mt9t001.c
11911 F:      include/media/i2c/mt9t001.h
11912
11913 MT9T112 APTINA CAMERA SENSOR
11914 M:      Jacopo Mondi <jacopo@jmondi.org>
11915 L:      linux-media@vger.kernel.org
11916 S:      Odd Fixes
11917 T:      git git://linuxtv.org/media_tree.git
11918 F:      drivers/media/i2c/mt9t112.c
11919 F:      include/media/i2c/mt9t112.h
11920
11921 MT9V032 APTINA CAMERA SENSOR
11922 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11923 L:      linux-media@vger.kernel.org
11924 S:      Maintained
11925 T:      git git://linuxtv.org/media_tree.git
11926 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
11927 F:      drivers/media/i2c/mt9v032.c
11928 F:      include/media/i2c/mt9v032.h
11929
11930 MT9V111 APTINA CAMERA SENSOR
11931 M:      Jacopo Mondi <jacopo@jmondi.org>
11932 L:      linux-media@vger.kernel.org
11933 S:      Maintained
11934 T:      git git://linuxtv.org/media_tree.git
11935 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
11936 F:      drivers/media/i2c/mt9v111.c
11937
11938 MULTIFUNCTION DEVICES (MFD)
11939 M:      Lee Jones <lee.jones@linaro.org>
11940 S:      Supported
11941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11942 F:      Documentation/devicetree/bindings/mfd/
11943 F:      drivers/mfd/
11944 F:      include/dt-bindings/mfd/
11945 F:      include/linux/mfd/
11946
11947 MULTIMEDIA CARD (MMC) ETC. OVER SPI
11948 S:      Orphan
11949 F:      drivers/mmc/host/mmc_spi.c
11950 F:      include/linux/spi/mmc_spi.h
11951
11952 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
11953 M:      Ulf Hansson <ulf.hansson@linaro.org>
11954 L:      linux-mmc@vger.kernel.org
11955 S:      Maintained
11956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
11957 F:      Documentation/devicetree/bindings/mmc/
11958 F:      drivers/mmc/
11959 F:      include/linux/mmc/
11960 F:      include/uapi/linux/mmc/
11961
11962 MULTIPLEXER SUBSYSTEM
11963 M:      Peter Rosin <peda@axentia.se>
11964 S:      Maintained
11965 F:      Documentation/ABI/testing/sysfs-class-mux*
11966 F:      Documentation/devicetree/bindings/mux/
11967 F:      drivers/mux/
11968 F:      include/dt-bindings/mux/
11969 F:      include/linux/mux/
11970
11971 MULTITECH MULTIPORT CARD (ISICOM)
11972 S:      Orphan
11973 F:      drivers/tty/isicom.c
11974 F:      include/linux/isicom.h
11975
11976 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
11977 M:      Bin Liu <b-liu@ti.com>
11978 L:      linux-usb@vger.kernel.org
11979 S:      Maintained
11980 F:      drivers/usb/musb/
11981
11982 MXL301RF MEDIA DRIVER
11983 M:      Akihiro Tsukada <tskd08@gmail.com>
11984 L:      linux-media@vger.kernel.org
11985 S:      Odd Fixes
11986 F:      drivers/media/tuners/mxl301rf*
11987
11988 MXL5007T MEDIA DRIVER
11989 M:      Michael Krufky <mkrufky@linuxtv.org>
11990 L:      linux-media@vger.kernel.org
11991 S:      Maintained
11992 W:      https://linuxtv.org
11993 W:      http://github.com/mkrufky
11994 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11995 T:      git git://linuxtv.org/mkrufky/tuners.git
11996 F:      drivers/media/tuners/mxl5007t.*
11997
11998 MXSFB DRM DRIVER
11999 M:      Marek Vasut <marex@denx.de>
12000 M:      Stefan Agner <stefan@agner.ch>
12001 L:      dri-devel@lists.freedesktop.org
12002 S:      Supported
12003 T:      git git://anongit.freedesktop.org/drm/drm-misc
12004 F:      Documentation/devicetree/bindings/display/mxsfb.txt
12005 F:      drivers/gpu/drm/mxsfb/
12006
12007 MYLEX DAC960 PCI RAID Controller
12008 M:      Hannes Reinecke <hare@kernel.org>
12009 L:      linux-scsi@vger.kernel.org
12010 S:      Supported
12011 F:      drivers/scsi/myrb.*
12012 F:      drivers/scsi/myrs.*
12013
12014 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12015 M:      Chris Lee <christopher.lee@cspi.com>
12016 L:      netdev@vger.kernel.org
12017 S:      Supported
12018 W:      https://www.cspi.com/ethernet-products/support/downloads/
12019 F:      drivers/net/ethernet/myricom/myri10ge/
12020
12021 NAND FLASH SUBSYSTEM
12022 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12023 R:      Richard Weinberger <richard@nod.at>
12024 L:      linux-mtd@lists.infradead.org
12025 S:      Maintained
12026 W:      http://www.linux-mtd.infradead.org/
12027 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12028 C:      irc://irc.oftc.net/mtd
12029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12030 F:      drivers/mtd/nand/
12031 F:      include/linux/mtd/*nand*.h
12032
12033 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12034 M:      Daniel Mack <zonque@gmail.com>
12035 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12036 S:      Maintained
12037 W:      http://www.native-instruments.com
12038 F:      sound/usb/caiaq/
12039
12040 NATSEMI ETHERNET DRIVER (DP8381x)
12041 S:      Orphan
12042 F:      drivers/net/ethernet/natsemi/natsemi.c
12043
12044 NCR 5380 SCSI DRIVERS
12045 M:      Finn Thain <fthain@telegraphics.com.au>
12046 M:      Michael Schmitz <schmitzmic@gmail.com>
12047 L:      linux-scsi@vger.kernel.org
12048 S:      Maintained
12049 F:      Documentation/scsi/g_NCR5380.rst
12050 F:      drivers/scsi/NCR5380.*
12051 F:      drivers/scsi/arm/cumana_1.c
12052 F:      drivers/scsi/arm/oak.c
12053 F:      drivers/scsi/atari_scsi.*
12054 F:      drivers/scsi/dmx3191d.c
12055 F:      drivers/scsi/g_NCR5380.*
12056 F:      drivers/scsi/mac_scsi.*
12057 F:      drivers/scsi/sun3_scsi.*
12058 F:      drivers/scsi/sun3_scsi_vme.c
12059
12060 NCSI LIBRARY
12061 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
12062 S:      Maintained
12063 F:      net/ncsi/
12064
12065 NCT6775 HARDWARE MONITOR DRIVER
12066 M:      Guenter Roeck <linux@roeck-us.net>
12067 L:      linux-hwmon@vger.kernel.org
12068 S:      Maintained
12069 F:      Documentation/hwmon/nct6775.rst
12070 F:      drivers/hwmon/nct6775.c
12071
12072 NETDEVSIM
12073 M:      Jakub Kicinski <kuba@kernel.org>
12074 S:      Maintained
12075 F:      drivers/net/netdevsim/*
12076
12077 NETEM NETWORK EMULATOR
12078 M:      Stephen Hemminger <stephen@networkplumber.org>
12079 L:      netdev@vger.kernel.org
12080 S:      Maintained
12081 F:      net/sched/sch_netem.c
12082
12083 NETERION 10GbE DRIVERS (s2io/vxge)
12084 M:      Jon Mason <jdmason@kudzu.us>
12085 L:      netdev@vger.kernel.org
12086 S:      Supported
12087 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12088 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12089 F:      drivers/net/ethernet/neterion/
12090
12091 NETFILTER
12092 M:      Pablo Neira Ayuso <pablo@netfilter.org>
12093 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
12094 M:      Florian Westphal <fw@strlen.de>
12095 L:      netfilter-devel@vger.kernel.org
12096 L:      coreteam@netfilter.org
12097 S:      Maintained
12098 W:      http://www.netfilter.org/
12099 W:      http://www.iptables.org/
12100 W:      http://www.nftables.org/
12101 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
12102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
12103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
12104 F:      include/linux/netfilter*
12105 F:      include/linux/netfilter/
12106 F:      include/net/netfilter/
12107 F:      include/uapi/linux/netfilter*
12108 F:      include/uapi/linux/netfilter/
12109 F:      net/*/netfilter.c
12110 F:      net/*/netfilter/
12111 F:      net/bridge/br_netfilter*.c
12112 F:      net/netfilter/
12113
12114 NETROM NETWORK LAYER
12115 M:      Ralf Baechle <ralf@linux-mips.org>
12116 L:      linux-hams@vger.kernel.org
12117 S:      Maintained
12118 W:      http://www.linux-ax25.org/
12119 F:      include/net/netrom.h
12120 F:      include/uapi/linux/netrom.h
12121 F:      net/netrom/
12122
12123 NETRONOME ETHERNET DRIVERS
12124 M:      Simon Horman <simon.horman@netronome.com>
12125 R:      Jakub Kicinski <kuba@kernel.org>
12126 L:      oss-drivers@netronome.com
12127 S:      Maintained
12128 F:      drivers/net/ethernet/netronome/
12129
12130 NETWORK BLOCK DEVICE (NBD)
12131 M:      Josef Bacik <josef@toxicpanda.com>
12132 L:      linux-block@vger.kernel.org
12133 L:      nbd@other.debian.org
12134 S:      Maintained
12135 F:      Documentation/admin-guide/blockdev/nbd.rst
12136 F:      drivers/block/nbd.c
12137 F:      include/trace/events/nbd.h
12138 F:      include/uapi/linux/nbd.h
12139
12140 NETWORK DROP MONITOR
12141 M:      Neil Horman <nhorman@tuxdriver.com>
12142 L:      netdev@vger.kernel.org
12143 S:      Maintained
12144 W:      https://fedorahosted.org/dropwatch/
12145 F:      include/uapi/linux/net_dropmon.h
12146 F:      net/core/drop_monitor.c
12147
12148 NETWORKING DRIVERS
12149 M:      "David S. Miller" <davem@davemloft.net>
12150 M:      Jakub Kicinski <kuba@kernel.org>
12151 L:      netdev@vger.kernel.org
12152 S:      Maintained
12153 W:      http://www.linuxfoundation.org/en/Net
12154 Q:      http://patchwork.ozlabs.org/project/netdev/list/
12155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12157 F:      Documentation/devicetree/bindings/net/
12158 F:      drivers/connector/
12159 F:      drivers/net/
12160 F:      include/linux/etherdevice.h
12161 F:      include/linux/fcdevice.h
12162 F:      include/linux/fddidevice.h
12163 F:      include/linux/hippidevice.h
12164 F:      include/linux/if_*
12165 F:      include/linux/inetdevice.h
12166 F:      include/linux/netdevice.h
12167 F:      include/uapi/linux/if_*
12168 F:      include/uapi/linux/netdevice.h
12169
12170 NETWORKING DRIVERS (WIRELESS)
12171 M:      Kalle Valo <kvalo@codeaurora.org>
12172 L:      linux-wireless@vger.kernel.org
12173 S:      Maintained
12174 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
12176 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
12177 F:      Documentation/devicetree/bindings/net/wireless/
12178 F:      drivers/net/wireless/
12179
12180 NETWORKING [DSA]
12181 M:      Andrew Lunn <andrew@lunn.ch>
12182 M:      Vivien Didelot <vivien.didelot@gmail.com>
12183 M:      Florian Fainelli <f.fainelli@gmail.com>
12184 M:      Vladimir Oltean <olteanv@gmail.com>
12185 S:      Maintained
12186 F:      Documentation/devicetree/bindings/net/dsa/
12187 F:      drivers/net/dsa/
12188 F:      include/linux/dsa/
12189 F:      include/linux/platform_data/dsa.h
12190 F:      include/net/dsa.h
12191 F:      net/dsa/
12192
12193 NETWORKING [GENERAL]
12194 M:      "David S. Miller" <davem@davemloft.net>
12195 M:      Jakub Kicinski <kuba@kernel.org>
12196 L:      netdev@vger.kernel.org
12197 S:      Maintained
12198 W:      http://www.linuxfoundation.org/en/Net
12199 Q:      http://patchwork.ozlabs.org/project/netdev/list/
12200 B:      mailto:netdev@vger.kernel.org
12201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12203 F:      Documentation/networking/
12204 F:      include/linux/in.h
12205 F:      include/linux/net.h
12206 F:      include/linux/netdevice.h
12207 F:      include/net/
12208 F:      include/uapi/linux/in.h
12209 F:      include/uapi/linux/net.h
12210 F:      include/uapi/linux/net_namespace.h
12211 F:      include/uapi/linux/netdevice.h
12212 F:      lib/net_utils.c
12213 F:      lib/random32.c
12214 F:      net/
12215 F:      tools/testing/selftests/net/
12216
12217 NETWORKING [IPSEC]
12218 M:      Steffen Klassert <steffen.klassert@secunet.com>
12219 M:      Herbert Xu <herbert@gondor.apana.org.au>
12220 M:      "David S. Miller" <davem@davemloft.net>
12221 L:      netdev@vger.kernel.org
12222 S:      Maintained
12223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
12224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
12225 F:      include/net/xfrm.h
12226 F:      include/uapi/linux/xfrm.h
12227 F:      net/ipv4/ah4.c
12228 F:      net/ipv4/esp4*
12229 F:      net/ipv4/ip_vti.c
12230 F:      net/ipv4/ipcomp.c
12231 F:      net/ipv4/xfrm*
12232 F:      net/ipv6/ah6.c
12233 F:      net/ipv6/esp6*
12234 F:      net/ipv6/ip6_vti.c
12235 F:      net/ipv6/ipcomp6.c
12236 F:      net/ipv6/xfrm*
12237 F:      net/key/
12238 F:      net/xfrm/
12239 F:      tools/testing/selftests/net/ipsec.c
12240
12241 NETWORKING [IPv4/IPv6]
12242 M:      "David S. Miller" <davem@davemloft.net>
12243 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
12244 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
12245 L:      netdev@vger.kernel.org
12246 S:      Maintained
12247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12248 F:      arch/x86/net/*
12249 F:      include/net/ip*
12250 F:      net/ipv4/
12251 F:      net/ipv6/
12252
12253 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
12254 M:      Paul Moore <paul@paul-moore.com>
12255 L:      netdev@vger.kernel.org
12256 L:      linux-security-module@vger.kernel.org
12257 S:      Maintained
12258 W:      https://github.com/netlabel
12259 F:      Documentation/netlabel/
12260 F:      include/net/calipso.h
12261 F:      include/net/cipso_ipv4.h
12262 F:      include/net/netlabel.h
12263 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
12264 F:      include/uapi/linux/netfilter/xt_SECMARK.h
12265 F:      net/ipv4/cipso_ipv4.c
12266 F:      net/ipv6/calipso.c
12267 F:      net/netfilter/xt_CONNSECMARK.c
12268 F:      net/netfilter/xt_SECMARK.c
12269 F:      net/netlabel/
12270
12271 NETWORKING [MPTCP]
12272 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
12273 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
12274 L:      netdev@vger.kernel.org
12275 L:      mptcp@lists.01.org
12276 S:      Maintained
12277 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
12278 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
12279 F:      include/net/mptcp.h
12280 F:      include/uapi/linux/mptcp.h
12281 F:      net/mptcp/
12282 F:      tools/testing/selftests/net/mptcp/
12283
12284 NETWORKING [TCP]
12285 M:      Eric Dumazet <edumazet@google.com>
12286 L:      netdev@vger.kernel.org
12287 S:      Maintained
12288 F:      include/linux/tcp.h
12289 F:      include/net/tcp.h
12290 F:      include/trace/events/tcp.h
12291 F:      include/uapi/linux/tcp.h
12292 F:      net/ipv4/syncookies.c
12293 F:      net/ipv4/tcp*.c
12294 F:      net/ipv6/syncookies.c
12295 F:      net/ipv6/tcp*.c
12296
12297 NETWORKING [TLS]
12298 M:      Boris Pismenny <borisp@nvidia.com>
12299 M:      Aviad Yehezkel <aviadye@nvidia.com>
12300 M:      John Fastabend <john.fastabend@gmail.com>
12301 M:      Daniel Borkmann <daniel@iogearbox.net>
12302 M:      Jakub Kicinski <kuba@kernel.org>
12303 L:      netdev@vger.kernel.org
12304 S:      Maintained
12305 F:      include/net/tls.h
12306 F:      include/uapi/linux/tls.h
12307 F:      net/tls/*
12308
12309 NETWORKING [WIRELESS]
12310 L:      linux-wireless@vger.kernel.org
12311 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12312
12313 NETXEN (1/10) GbE SUPPORT
12314 M:      Manish Chopra <manishc@marvell.com>
12315 M:      Rahul Verma <rahulv@marvell.com>
12316 M:      GR-Linux-NIC-Dev@marvell.com
12317 L:      netdev@vger.kernel.org
12318 S:      Supported
12319 F:      drivers/net/ethernet/qlogic/netxen/
12320
12321 NET_FAILOVER MODULE
12322 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
12323 L:      netdev@vger.kernel.org
12324 S:      Supported
12325 F:      Documentation/networking/net_failover.rst
12326 F:      drivers/net/net_failover.c
12327 F:      include/net/net_failover.h
12328
12329 NEXTHOP
12330 M:      David Ahern <dsahern@kernel.org>
12331 L:      netdev@vger.kernel.org
12332 S:      Maintained
12333 F:      include/net/netns/nexthop.h
12334 F:      include/net/nexthop.h
12335 F:      include/uapi/linux/nexthop.h
12336 F:      net/ipv4/nexthop.c
12337
12338 NFC SUBSYSTEM
12339 L:      netdev@vger.kernel.org
12340 S:      Orphan
12341 F:      Documentation/devicetree/bindings/net/nfc/
12342 F:      drivers/nfc/
12343 F:      include/linux/platform_data/nfcmrvl.h
12344 F:      include/net/nfc/
12345 F:      include/uapi/linux/nfc.h
12346 F:      net/nfc/
12347
12348 NFS, SUNRPC, AND LOCKD CLIENTS
12349 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
12350 M:      Anna Schumaker <anna.schumaker@netapp.com>
12351 L:      linux-nfs@vger.kernel.org
12352 S:      Maintained
12353 W:      http://client.linux-nfs.org
12354 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
12355 F:      fs/lockd/
12356 F:      fs/nfs/
12357 F:      fs/nfs_common/
12358 F:      include/linux/lockd/
12359 F:      include/linux/nfs*
12360 F:      include/linux/sunrpc/
12361 F:      include/uapi/linux/nfs*
12362 F:      include/uapi/linux/sunrpc/
12363 F:      net/sunrpc/
12364 F:      Documentation/filesystems/nfs/
12365
12366 NILFS2 FILESYSTEM
12367 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
12368 L:      linux-nilfs@vger.kernel.org
12369 S:      Supported
12370 W:      https://nilfs.sourceforge.io/
12371 W:      https://nilfs.osdn.jp/
12372 T:      git git://github.com/konis/nilfs2.git
12373 F:      Documentation/filesystems/nilfs2.rst
12374 F:      fs/nilfs2/
12375 F:      include/trace/events/nilfs2.h
12376 F:      include/uapi/linux/nilfs2_api.h
12377 F:      include/uapi/linux/nilfs2_ondisk.h
12378
12379 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
12380 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12381 S:      Maintained
12382 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12383 F:      Documentation/scsi/NinjaSCSI.rst
12384 F:      drivers/scsi/pcmcia/nsp_*
12385
12386 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
12387 M:      GOTO Masanori <gotom@debian.or.jp>
12388 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12389 S:      Maintained
12390 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12391 F:      Documentation/scsi/NinjaSCSI.rst
12392 F:      drivers/scsi/nsp32*
12393
12394 NIOS2 ARCHITECTURE
12395 M:      Ley Foon Tan <ley.foon.tan@intel.com>
12396 S:      Maintained
12397 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
12398 F:      arch/nios2/
12399
12400 NITRO ENCLAVES (NE)
12401 M:      Andra Paraschiv <andraprs@amazon.com>
12402 M:      Alexandru Vasile <lexnv@amazon.com>
12403 M:      Alexandru Ciobotaru <alcioa@amazon.com>
12404 L:      linux-kernel@vger.kernel.org
12405 S:      Supported
12406 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
12407 F:      Documentation/virt/ne_overview.rst
12408 F:      drivers/virt/nitro_enclaves/
12409 F:      include/linux/nitro_enclaves.h
12410 F:      include/uapi/linux/nitro_enclaves.h
12411 F:      samples/nitro_enclaves/
12412
12413 NOHZ, DYNTICKS SUPPORT
12414 M:      Frederic Weisbecker <fweisbec@gmail.com>
12415 M:      Thomas Gleixner <tglx@linutronix.de>
12416 M:      Ingo Molnar <mingo@kernel.org>
12417 L:      linux-kernel@vger.kernel.org
12418 S:      Maintained
12419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
12420 F:      include/linux/sched/nohz.h
12421 F:      include/linux/tick.h
12422 F:      kernel/time/tick*.*
12423
12424 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
12425 M:      Pavel Machek <pavel@ucw.cz>
12426 M:      Sakari Ailus <sakari.ailus@iki.fi>
12427 L:      linux-media@vger.kernel.org
12428 S:      Maintained
12429 F:      drivers/media/i2c/ad5820.c
12430 F:      drivers/media/i2c/et8ek8
12431
12432 NOKIA N900 POWER SUPPLY DRIVERS
12433 R:      Pali Rohár <pali@kernel.org>
12434 F:      drivers/power/supply/bq2415x_charger.c
12435 F:      drivers/power/supply/bq27xxx_battery.c
12436 F:      drivers/power/supply/bq27xxx_battery_i2c.c
12437 F:      drivers/power/supply/isp1704_charger.c
12438 F:      drivers/power/supply/rx51_battery.c
12439 F:      include/linux/power/bq2415x_charger.h
12440 F:      include/linux/power/bq27xxx_battery.h
12441
12442 NOLIBC HEADER FILE
12443 M:      Willy Tarreau <w@1wt.eu>
12444 S:      Maintained
12445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
12446 F:      tools/include/nolibc/
12447
12448 NSDEPS
12449 M:      Matthias Maennich <maennich@google.com>
12450 S:      Maintained
12451 F:      Documentation/core-api/symbol-namespaces.rst
12452 F:      scripts/nsdeps
12453
12454 NTB AMD DRIVER
12455 M:      Sanjay R Mehta <sanju.mehta@amd.com>
12456 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
12457 L:      linux-ntb@googlegroups.com
12458 S:      Supported
12459 F:      drivers/ntb/hw/amd/
12460
12461 NTB DRIVER CORE
12462 M:      Jon Mason <jdmason@kudzu.us>
12463 M:      Dave Jiang <dave.jiang@intel.com>
12464 M:      Allen Hubbe <allenbh@gmail.com>
12465 L:      linux-ntb@googlegroups.com
12466 S:      Supported
12467 W:      https://github.com/jonmason/ntb/wiki
12468 T:      git git://github.com/jonmason/ntb.git
12469 F:      drivers/net/ntb_netdev.c
12470 F:      drivers/ntb/
12471 F:      include/linux/ntb.h
12472 F:      include/linux/ntb_transport.h
12473 F:      tools/testing/selftests/ntb/
12474
12475 NTB IDT DRIVER
12476 M:      Serge Semin <fancer.lancer@gmail.com>
12477 L:      linux-ntb@googlegroups.com
12478 S:      Supported
12479 F:      drivers/ntb/hw/idt/
12480
12481 NTB INTEL DRIVER
12482 M:      Dave Jiang <dave.jiang@intel.com>
12483 L:      linux-ntb@googlegroups.com
12484 S:      Supported
12485 W:      https://github.com/davejiang/linux/wiki
12486 T:      git https://github.com/davejiang/linux.git
12487 F:      drivers/ntb/hw/intel/
12488
12489 NTFS FILESYSTEM
12490 M:      Anton Altaparmakov <anton@tuxera.com>
12491 L:      linux-ntfs-dev@lists.sourceforge.net
12492 S:      Supported
12493 W:      http://www.tuxera.com/
12494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12495 F:      Documentation/filesystems/ntfs.rst
12496 F:      fs/ntfs/
12497
12498 NUBUS SUBSYSTEM
12499 M:      Finn Thain <fthain@telegraphics.com.au>
12500 L:      linux-m68k@lists.linux-m68k.org
12501 S:      Maintained
12502 F:      arch/*/include/asm/nubus.h
12503 F:      drivers/nubus/
12504 F:      include/linux/nubus.h
12505 F:      include/uapi/linux/nubus.h
12506
12507 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12508 M:      Antonino Daplas <adaplas@gmail.com>
12509 L:      linux-fbdev@vger.kernel.org
12510 S:      Maintained
12511 F:      drivers/video/fbdev/nvidia/
12512 F:      drivers/video/fbdev/riva/
12513
12514 NVM EXPRESS DRIVER
12515 M:      Keith Busch <kbusch@kernel.org>
12516 M:      Jens Axboe <axboe@fb.com>
12517 M:      Christoph Hellwig <hch@lst.de>
12518 M:      Sagi Grimberg <sagi@grimberg.me>
12519 L:      linux-nvme@lists.infradead.org
12520 S:      Supported
12521 W:      http://git.infradead.org/nvme.git
12522 T:      git://git.infradead.org/nvme.git
12523 F:      drivers/nvme/host/
12524 F:      include/linux/nvme.h
12525 F:      include/uapi/linux/nvme_ioctl.h
12526
12527 NVM EXPRESS FC TRANSPORT DRIVERS
12528 M:      James Smart <james.smart@broadcom.com>
12529 L:      linux-nvme@lists.infradead.org
12530 S:      Supported
12531 F:      drivers/nvme/host/fc.c
12532 F:      drivers/nvme/target/fc.c
12533 F:      drivers/nvme/target/fcloop.c
12534 F:      include/linux/nvme-fc-driver.h
12535 F:      include/linux/nvme-fc.h
12536
12537 NVM EXPRESS TARGET DRIVER
12538 M:      Christoph Hellwig <hch@lst.de>
12539 M:      Sagi Grimberg <sagi@grimberg.me>
12540 M:      Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
12541 L:      linux-nvme@lists.infradead.org
12542 S:      Supported
12543 W:      http://git.infradead.org/nvme.git
12544 T:      git://git.infradead.org/nvme.git
12545 F:      drivers/nvme/target/
12546
12547 NVMEM FRAMEWORK
12548 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
12549 S:      Maintained
12550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
12551 F:      Documentation/ABI/stable/sysfs-bus-nvmem
12552 F:      Documentation/devicetree/bindings/nvmem/
12553 F:      drivers/nvmem/
12554 F:      include/linux/nvmem-consumer.h
12555 F:      include/linux/nvmem-provider.h
12556
12557 NXP FSPI DRIVER
12558 M:      Ashish Kumar <ashish.kumar@nxp.com>
12559 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
12560 L:      linux-spi@vger.kernel.org
12561 S:      Maintained
12562 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12563 F:      drivers/spi/spi-nxp-fspi.c
12564
12565 NXP FXAS21002C DRIVER
12566 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12567 L:      linux-iio@vger.kernel.org
12568 S:      Maintained
12569 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
12570 F:      drivers/iio/gyro/fxas21002c.h
12571 F:      drivers/iio/gyro/fxas21002c_core.c
12572 F:      drivers/iio/gyro/fxas21002c_i2c.c
12573 F:      drivers/iio/gyro/fxas21002c_spi.c
12574
12575 NXP i.MX 8MQ DCSS DRIVER
12576 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
12577 R:      Lucas Stach <l.stach@pengutronix.de>
12578 L:      dri-devel@lists.freedesktop.org
12579 S:      Maintained
12580 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
12581 F:      drivers/gpu/drm/imx/dcss/
12582
12583 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
12584 M:      Krzysztof Kozlowski <krzk@kernel.org>
12585 L:      linux-kernel@vger.kernel.org
12586 S:      Maintained
12587 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
12588 F:      drivers/extcon/extcon-ptn5150.c
12589
12590 NXP SGTL5000 DRIVER
12591 M:      Fabio Estevam <festevam@gmail.com>
12592 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12593 S:      Maintained
12594 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
12595 F:      sound/soc/codecs/sgtl5000*
12596
12597 NXP SJA1105 ETHERNET SWITCH DRIVER
12598 M:      Vladimir Oltean <olteanv@gmail.com>
12599 L:      linux-kernel@vger.kernel.org
12600 S:      Maintained
12601 F:      drivers/net/dsa/sja1105
12602
12603 NXP TDA998X DRM DRIVER
12604 M:      Russell King <linux@armlinux.org.uk>
12605 S:      Maintained
12606 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12607 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12608 F:      drivers/gpu/drm/i2c/tda998x_drv.c
12609 F:      include/drm/i2c/tda998x.h
12610 F:      include/dt-bindings/display/tda998x.h
12611 K:      "nxp,tda998x"
12612
12613 NXP TFA9879 DRIVER
12614 M:      Peter Rosin <peda@axentia.se>
12615 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12616 S:      Maintained
12617 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
12618 F:      sound/soc/codecs/tfa9879*
12619
12620 NXP-NCI NFC DRIVER
12621 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
12622 R:      Charles Gorand <charles.gorand@effinnov.com>
12623 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
12624 S:      Supported
12625 F:      drivers/nfc/nxp-nci
12626
12627 OBJAGG
12628 M:      Jiri Pirko <jiri@nvidia.com>
12629 L:      netdev@vger.kernel.org
12630 S:      Supported
12631 F:      include/linux/objagg.h
12632 F:      lib/objagg.c
12633 F:      lib/test_objagg.c
12634
12635 OBJTOOL
12636 M:      Josh Poimboeuf <jpoimboe@redhat.com>
12637 M:      Peter Zijlstra <peterz@infradead.org>
12638 S:      Supported
12639 F:      tools/objtool/
12640 F:      include/linux/objtool.h
12641
12642 OCELOT ETHERNET SWITCH DRIVER
12643 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
12644 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
12645 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
12646 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12647 L:      netdev@vger.kernel.org
12648 S:      Supported
12649 F:      drivers/net/dsa/ocelot/*
12650 F:      drivers/net/ethernet/mscc/
12651 F:      include/soc/mscc/ocelot*
12652 F:      net/dsa/tag_ocelot.c
12653 F:      tools/testing/selftests/drivers/net/ocelot/*
12654
12655 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12656 M:      Frederic Barrat <fbarrat@linux.ibm.com>
12657 M:      Andrew Donnellan <ajd@linux.ibm.com>
12658 L:      linuxppc-dev@lists.ozlabs.org
12659 S:      Supported
12660 F:      Documentation/userspace-api/accelerators/ocxl.rst
12661 F:      arch/powerpc/include/asm/pnv-ocxl.h
12662 F:      arch/powerpc/platforms/powernv/ocxl.c
12663 F:      drivers/misc/ocxl/
12664 F:      include/misc/ocxl*
12665 F:      include/uapi/misc/ocxl.h
12666
12667 OMAP AUDIO SUPPORT
12668 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
12669 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
12670 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12671 L:      linux-omap@vger.kernel.org
12672 S:      Maintained
12673 F:      sound/soc/ti/n810.c
12674 F:      sound/soc/ti/omap*
12675 F:      sound/soc/ti/rx51.c
12676 F:      sound/soc/ti/sdma-pcm.*
12677
12678 OMAP CLOCK FRAMEWORK SUPPORT
12679 M:      Paul Walmsley <paul@pwsan.com>
12680 L:      linux-omap@vger.kernel.org
12681 S:      Maintained
12682 F:      arch/arm/*omap*/*clock*
12683
12684 OMAP DEVICE TREE SUPPORT
12685 M:      Benoît Cousson <bcousson@baylibre.com>
12686 M:      Tony Lindgren <tony@atomide.com>
12687 L:      linux-omap@vger.kernel.org
12688 L:      devicetree@vger.kernel.org
12689 S:      Maintained
12690 F:      arch/arm/boot/dts/*am3*
12691 F:      arch/arm/boot/dts/*am4*
12692 F:      arch/arm/boot/dts/*am5*
12693 F:      arch/arm/boot/dts/*dra7*
12694 F:      arch/arm/boot/dts/*omap*
12695 F:      arch/arm/boot/dts/logicpd-som-lv*
12696 F:      arch/arm/boot/dts/logicpd-torpedo*
12697
12698 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12699 L:      linux-omap@vger.kernel.org
12700 L:      linux-fbdev@vger.kernel.org
12701 S:      Orphan
12702 F:      Documentation/arm/omap/dss.rst
12703 F:      drivers/video/fbdev/omap2/
12704
12705 OMAP FRAMEBUFFER SUPPORT
12706 L:      linux-fbdev@vger.kernel.org
12707 L:      linux-omap@vger.kernel.org
12708 S:      Orphan
12709 F:      drivers/video/fbdev/omap/
12710
12711 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12712 M:      Roger Quadros <rogerq@ti.com>
12713 M:      Tony Lindgren <tony@atomide.com>
12714 L:      linux-omap@vger.kernel.org
12715 S:      Maintained
12716 F:      arch/arm/mach-omap2/*gpmc*
12717 F:      drivers/memory/omap-gpmc.c
12718
12719 OMAP GPIO DRIVER
12720 M:      Grygorii Strashko <grygorii.strashko@ti.com>
12721 M:      Santosh Shilimkar <ssantosh@kernel.org>
12722 M:      Kevin Hilman <khilman@kernel.org>
12723 L:      linux-omap@vger.kernel.org
12724 S:      Maintained
12725 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
12726 F:      drivers/gpio/gpio-omap.c
12727
12728 OMAP HARDWARE SPINLOCK SUPPORT
12729 M:      Ohad Ben-Cohen <ohad@wizery.com>
12730 L:      linux-omap@vger.kernel.org
12731 S:      Maintained
12732 F:      drivers/hwspinlock/omap_hwspinlock.c
12733
12734 OMAP HS MMC SUPPORT
12735 L:      linux-mmc@vger.kernel.org
12736 L:      linux-omap@vger.kernel.org
12737 S:      Orphan
12738 F:      drivers/mmc/host/omap_hsmmc.c
12739
12740 OMAP HWMOD DATA
12741 M:      Paul Walmsley <paul@pwsan.com>
12742 L:      linux-omap@vger.kernel.org
12743 S:      Maintained
12744 F:      arch/arm/mach-omap2/omap_hwmod*data*
12745
12746 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12747 M:      Benoît Cousson <bcousson@baylibre.com>
12748 L:      linux-omap@vger.kernel.org
12749 S:      Maintained
12750 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12751
12752 OMAP HWMOD SUPPORT
12753 M:      Benoît Cousson <bcousson@baylibre.com>
12754 M:      Paul Walmsley <paul@pwsan.com>
12755 L:      linux-omap@vger.kernel.org
12756 S:      Maintained
12757 F:      arch/arm/mach-omap2/omap_hwmod.*
12758
12759 OMAP I2C DRIVER
12760 M:      Vignesh R <vigneshr@ti.com>
12761 L:      linux-omap@vger.kernel.org
12762 L:      linux-i2c@vger.kernel.org
12763 S:      Maintained
12764 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
12765 F:      drivers/i2c/busses/i2c-omap.c
12766
12767 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12768 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12769 L:      linux-media@vger.kernel.org
12770 S:      Maintained
12771 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
12772 F:      drivers/media/platform/omap3isp/
12773 F:      drivers/staging/media/omap4iss/
12774
12775 OMAP MMC SUPPORT
12776 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12777 L:      linux-omap@vger.kernel.org
12778 S:      Odd Fixes
12779 F:      drivers/mmc/host/omap.c
12780
12781 OMAP POWER MANAGEMENT SUPPORT
12782 M:      Kevin Hilman <khilman@kernel.org>
12783 L:      linux-omap@vger.kernel.org
12784 S:      Maintained
12785 F:      arch/arm/*omap*/*pm*
12786 F:      drivers/cpufreq/omap-cpufreq.c
12787
12788 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12789 M:      Rajendra Nayak <rnayak@codeaurora.org>
12790 M:      Paul Walmsley <paul@pwsan.com>
12791 L:      linux-omap@vger.kernel.org
12792 S:      Maintained
12793 F:      arch/arm/mach-omap2/prm*
12794
12795 OMAP RANDOM NUMBER GENERATOR SUPPORT
12796 M:      Deepak Saxena <dsaxena@plexity.net>
12797 S:      Maintained
12798 F:      drivers/char/hw_random/omap-rng.c
12799
12800 OMAP USB SUPPORT
12801 L:      linux-usb@vger.kernel.org
12802 L:      linux-omap@vger.kernel.org
12803 S:      Orphan
12804 F:      arch/arm/*omap*/usb*
12805 F:      drivers/usb/*/*omap*
12806
12807 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12808 M:      Mark Jackson <mpfj@newflow.co.uk>
12809 L:      linux-omap@vger.kernel.org
12810 S:      Maintained
12811 F:      arch/arm/boot/dts/am335x-nano.dts
12812
12813 OMAP1 SUPPORT
12814 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12815 M:      Tony Lindgren <tony@atomide.com>
12816 L:      linux-omap@vger.kernel.org
12817 S:      Maintained
12818 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12820 F:      arch/arm/configs/omap1_defconfig
12821 F:      arch/arm/mach-omap1/
12822 F:      arch/arm/plat-omap/
12823 F:      drivers/i2c/busses/i2c-omap.c
12824 F:      include/linux/platform_data/ams-delta-fiq.h
12825 F:      include/linux/platform_data/i2c-omap.h
12826
12827 OMAP2+ SUPPORT
12828 M:      Tony Lindgren <tony@atomide.com>
12829 L:      linux-omap@vger.kernel.org
12830 S:      Maintained
12831 W:      http://www.muru.com/linux/omap/
12832 W:      http://linux.omap.com/
12833 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12835 F:      arch/arm/configs/omap2plus_defconfig
12836 F:      arch/arm/mach-omap2/
12837 F:      arch/arm/plat-omap/
12838 F:      drivers/bus/ti-sysc.c
12839 F:      drivers/i2c/busses/i2c-omap.c
12840 F:      drivers/irqchip/irq-omap-intc.c
12841 F:      drivers/mfd/*omap*.c
12842 F:      drivers/mfd/menelaus.c
12843 F:      drivers/mfd/palmas.c
12844 F:      drivers/mfd/tps65217.c
12845 F:      drivers/mfd/tps65218.c
12846 F:      drivers/mfd/tps65910.c
12847 F:      drivers/mfd/twl-core.[ch]
12848 F:      drivers/mfd/twl4030*.c
12849 F:      drivers/mfd/twl6030*.c
12850 F:      drivers/mfd/twl6040*.c
12851 F:      drivers/regulator/palmas-regulator*.c
12852 F:      drivers/regulator/pbias-regulator.c
12853 F:      drivers/regulator/tps65217-regulator.c
12854 F:      drivers/regulator/tps65218-regulator.c
12855 F:      drivers/regulator/tps65910-regulator.c
12856 F:      drivers/regulator/twl-regulator.c
12857 F:      drivers/regulator/twl6030-regulator.c
12858 F:      include/linux/platform_data/i2c-omap.h
12859 F:      include/linux/platform_data/ti-sysc.h
12860
12861 OMFS FILESYSTEM
12862 M:      Bob Copeland <me@bobcopeland.com>
12863 L:      linux-karma-devel@lists.sourceforge.net
12864 S:      Maintained
12865 F:      Documentation/filesystems/omfs.rst
12866 F:      fs/omfs/
12867
12868 OMNIKEY CARDMAN 4000 DRIVER
12869 M:      Harald Welte <laforge@gnumonks.org>
12870 S:      Maintained
12871 F:      drivers/char/pcmcia/cm4000_cs.c
12872 F:      include/linux/cm4000_cs.h
12873 F:      include/uapi/linux/cm4000_cs.h
12874
12875 OMNIKEY CARDMAN 4040 DRIVER
12876 M:      Harald Welte <laforge@gnumonks.org>
12877 S:      Maintained
12878 F:      drivers/char/pcmcia/cm4040_cs.*
12879
12880 OMNIVISION OV13858 SENSOR DRIVER
12881 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12882 L:      linux-media@vger.kernel.org
12883 S:      Maintained
12884 T:      git git://linuxtv.org/media_tree.git
12885 F:      drivers/media/i2c/ov13858.c
12886
12887 OMNIVISION OV2680 SENSOR DRIVER
12888 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12889 L:      linux-media@vger.kernel.org
12890 S:      Maintained
12891 T:      git git://linuxtv.org/media_tree.git
12892 F:      Documentation/devicetree/bindings/media/i2c/ov2680.yaml
12893 F:      drivers/media/i2c/ov2680.c
12894
12895 OMNIVISION OV2685 SENSOR DRIVER
12896 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12897 L:      linux-media@vger.kernel.org
12898 S:      Maintained
12899 T:      git git://linuxtv.org/media_tree.git
12900 F:      drivers/media/i2c/ov2685.c
12901
12902 OMNIVISION OV2740 SENSOR DRIVER
12903 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
12904 R:      Shawn Tu <shawnx.tu@intel.com>
12905 R:      Bingbu Cao <bingbu.cao@intel.com>
12906 L:      linux-media@vger.kernel.org
12907 S:      Maintained
12908 T:      git git://linuxtv.org/media_tree.git
12909 F:      drivers/media/i2c/ov2740.c
12910
12911 OMNIVISION OV5640 SENSOR DRIVER
12912 M:      Steve Longerbeam <slongerbeam@gmail.com>
12913 L:      linux-media@vger.kernel.org
12914 S:      Maintained
12915 T:      git git://linuxtv.org/media_tree.git
12916 F:      drivers/media/i2c/ov5640.c
12917
12918 OMNIVISION OV5647 SENSOR DRIVER
12919 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
12920 M:      Jacopo Mondi <jacopo@jmondi.org>
12921 L:      linux-media@vger.kernel.org
12922 S:      Maintained
12923 T:      git git://linuxtv.org/media_tree.git
12924 F:      Documentation/devicetree/bindings/media/i2c/ov5647.yaml
12925 F:      drivers/media/i2c/ov5647.c
12926
12927 OMNIVISION OV5670 SENSOR DRIVER
12928 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
12929 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
12930 L:      linux-media@vger.kernel.org
12931 S:      Maintained
12932 T:      git git://linuxtv.org/media_tree.git
12933 F:      drivers/media/i2c/ov5670.c
12934
12935 OMNIVISION OV5675 SENSOR DRIVER
12936 M:      Shawn Tu <shawnx.tu@intel.com>
12937 L:      linux-media@vger.kernel.org
12938 S:      Maintained
12939 T:      git git://linuxtv.org/media_tree.git
12940 F:      drivers/media/i2c/ov5675.c
12941
12942 OMNIVISION OV5695 SENSOR DRIVER
12943 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12944 L:      linux-media@vger.kernel.org
12945 S:      Maintained
12946 T:      git git://linuxtv.org/media_tree.git
12947 F:      drivers/media/i2c/ov5695.c
12948
12949 OMNIVISION OV7670 SENSOR DRIVER
12950 M:      Jonathan Corbet <corbet@lwn.net>
12951 L:      linux-media@vger.kernel.org
12952 S:      Maintained
12953 T:      git git://linuxtv.org/media_tree.git
12954 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
12955 F:      drivers/media/i2c/ov7670.c
12956
12957 OMNIVISION OV772x SENSOR DRIVER
12958 M:      Jacopo Mondi <jacopo@jmondi.org>
12959 L:      linux-media@vger.kernel.org
12960 S:      Odd fixes
12961 T:      git git://linuxtv.org/media_tree.git
12962 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
12963 F:      drivers/media/i2c/ov772x.c
12964 F:      include/media/i2c/ov772x.h
12965
12966 OMNIVISION OV7740 SENSOR DRIVER
12967 M:      Wenyou Yang <wenyou.yang@microchip.com>
12968 L:      linux-media@vger.kernel.org
12969 S:      Maintained
12970 T:      git git://linuxtv.org/media_tree.git
12971 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
12972 F:      drivers/media/i2c/ov7740.c
12973
12974 OMNIVISION OV8856 SENSOR DRIVER
12975 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
12976 L:      linux-media@vger.kernel.org
12977 S:      Maintained
12978 T:      git git://linuxtv.org/media_tree.git
12979 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
12980 F:      drivers/media/i2c/ov8856.c
12981
12982 OMNIVISION OV9640 SENSOR DRIVER
12983 M:      Petr Cvek <petrcvekcz@gmail.com>
12984 L:      linux-media@vger.kernel.org
12985 S:      Maintained
12986 F:      drivers/media/i2c/ov9640.*
12987
12988 OMNIVISION OV9650 SENSOR DRIVER
12989 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12990 R:      Akinobu Mita <akinobu.mita@gmail.com>
12991 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12992 L:      linux-media@vger.kernel.org
12993 S:      Maintained
12994 T:      git git://linuxtv.org/media_tree.git
12995 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
12996 F:      drivers/media/i2c/ov9650.c
12997
12998 OMNIVISION OV9734 SENSOR DRIVER
12999 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13000 R:      Bingbu Cao <bingbu.cao@intel.com>
13001 L:      linux-media@vger.kernel.org
13002 S:      Maintained
13003 T:      git git://linuxtv.org/media_tree.git
13004 F:      drivers/media/i2c/ov9734.c
13005
13006 ONENAND FLASH DRIVER
13007 M:      Kyungmin Park <kyungmin.park@samsung.com>
13008 L:      linux-mtd@lists.infradead.org
13009 S:      Maintained
13010 F:      drivers/mtd/nand/onenand/
13011 F:      include/linux/mtd/onenand*.h
13012
13013 ONION OMEGA2+ BOARD
13014 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
13015 L:      linux-mips@vger.kernel.org
13016 S:      Maintained
13017 F:      arch/mips/boot/dts/ralink/omega2p.dts
13018
13019 OP-TEE DRIVER
13020 M:      Jens Wiklander <jens.wiklander@linaro.org>
13021 L:      op-tee@lists.trustedfirmware.org
13022 S:      Maintained
13023 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
13024 F:      drivers/tee/optee/
13025
13026 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
13027 M:      Sumit Garg <sumit.garg@linaro.org>
13028 L:      op-tee@lists.trustedfirmware.org
13029 S:      Maintained
13030 F:      drivers/char/hw_random/optee-rng.c
13031
13032 OPA-VNIC DRIVER
13033 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
13034 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
13035 L:      linux-rdma@vger.kernel.org
13036 S:      Supported
13037 F:      drivers/infiniband/ulp/opa_vnic
13038
13039 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
13040 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
13041 M:      Frank Rowand <frowand.list@gmail.com>
13042 L:      devicetree@vger.kernel.org
13043 S:      Maintained
13044 F:      Documentation/devicetree/dynamic-resolution-notes.rst
13045 F:      Documentation/devicetree/overlay-notes.rst
13046 F:      drivers/of/overlay.c
13047 F:      drivers/of/resolver.c
13048 K:      of_overlay_notifier_
13049
13050 OPEN FIRMWARE AND FLATTENED DEVICE TREE
13051 M:      Rob Herring <robh+dt@kernel.org>
13052 M:      Frank Rowand <frowand.list@gmail.com>
13053 L:      devicetree@vger.kernel.org
13054 S:      Maintained
13055 W:      http://www.devicetree.org/
13056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13057 F:      Documentation/ABI/testing/sysfs-firmware-ofw
13058 F:      drivers/of/
13059 F:      include/linux/of*.h
13060 F:      scripts/dtc/
13061
13062 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
13063 M:      Rob Herring <robh+dt@kernel.org>
13064 L:      devicetree@vger.kernel.org
13065 S:      Maintained
13066 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
13067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13068 F:      Documentation/devicetree/
13069 F:      arch/*/boot/dts/
13070 F:      include/dt-bindings/
13071
13072 OPENCORES I2C BUS DRIVER
13073 M:      Peter Korsgaard <peter@korsgaard.com>
13074 M:      Andrew Lunn <andrew@lunn.ch>
13075 L:      linux-i2c@vger.kernel.org
13076 S:      Maintained
13077 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
13078 F:      Documentation/i2c/busses/i2c-ocores.rst
13079 F:      drivers/i2c/busses/i2c-ocores.c
13080 F:      include/linux/platform_data/i2c-ocores.h
13081
13082 OPENRISC ARCHITECTURE
13083 M:      Jonas Bonn <jonas@southpole.se>
13084 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
13085 M:      Stafford Horne <shorne@gmail.com>
13086 L:      openrisc@lists.librecores.org
13087 S:      Maintained
13088 W:      http://openrisc.io
13089 T:      git git://github.com/openrisc/linux.git
13090 F:      Documentation/devicetree/bindings/openrisc/
13091 F:      Documentation/openrisc/
13092 F:      arch/openrisc/
13093 F:      drivers/irqchip/irq-ompic.c
13094 F:      drivers/irqchip/irq-or1k-*
13095
13096 OPENVSWITCH
13097 M:      Pravin B Shelar <pshelar@ovn.org>
13098 L:      netdev@vger.kernel.org
13099 L:      dev@openvswitch.org
13100 S:      Maintained
13101 W:      http://openvswitch.org
13102 F:      include/uapi/linux/openvswitch.h
13103 F:      net/openvswitch/
13104
13105 OPERATING PERFORMANCE POINTS (OPP)
13106 M:      Viresh Kumar <vireshk@kernel.org>
13107 M:      Nishanth Menon <nm@ti.com>
13108 M:      Stephen Boyd <sboyd@kernel.org>
13109 L:      linux-pm@vger.kernel.org
13110 S:      Maintained
13111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
13112 F:      Documentation/devicetree/bindings/opp/
13113 F:      Documentation/power/opp.rst
13114 F:      drivers/opp/
13115 F:      include/linux/pm_opp.h
13116
13117 OPL4 DRIVER
13118 M:      Clemens Ladisch <clemens@ladisch.de>
13119 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13120 S:      Maintained
13121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
13122 F:      sound/drivers/opl4/
13123
13124 OPROFILE
13125 M:      Robert Richter <rric@kernel.org>
13126 L:      oprofile-list@lists.sf.net
13127 S:      Maintained
13128 F:      arch/*/include/asm/oprofile*.h
13129 F:      arch/*/oprofile/
13130 F:      drivers/oprofile/
13131 F:      include/linux/oprofile.h
13132
13133 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
13134 M:      Mark Fasheh <mark@fasheh.com>
13135 M:      Joel Becker <jlbec@evilplan.org>
13136 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
13137 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
13138 S:      Supported
13139 W:      http://ocfs2.wiki.kernel.org
13140 F:      Documentation/filesystems/dlmfs.rst
13141 F:      Documentation/filesystems/ocfs2.rst
13142 F:      fs/ocfs2/
13143
13144 ORANGEFS FILESYSTEM
13145 M:      Mike Marshall <hubcap@omnibond.com>
13146 R:      Martin Brandenburg <martin@omnibond.com>
13147 L:      devel@lists.orangefs.org
13148 S:      Supported
13149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
13150 F:      Documentation/filesystems/orangefs.rst
13151 F:      fs/orangefs/
13152
13153 ORINOCO DRIVER
13154 L:      linux-wireless@vger.kernel.org
13155 S:      Orphan
13156 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
13157 W:      http://www.nongnu.org/orinoco/
13158 F:      drivers/net/wireless/intersil/orinoco/
13159
13160 OV2659 OMNIVISION SENSOR DRIVER
13161 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
13162 L:      linux-media@vger.kernel.org
13163 S:      Maintained
13164 W:      https://linuxtv.org
13165 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13166 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13167 F:      drivers/media/i2c/ov2659.c
13168 F:      include/media/i2c/ov2659.h
13169
13170 OVERLAY FILESYSTEM
13171 M:      Miklos Szeredi <miklos@szeredi.hu>
13172 L:      linux-unionfs@vger.kernel.org
13173 S:      Supported
13174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
13175 F:      Documentation/filesystems/overlayfs.rst
13176 F:      fs/overlayfs/
13177
13178 P54 WIRELESS DRIVER
13179 M:      Christian Lamparter <chunkeey@googlemail.com>
13180 L:      linux-wireless@vger.kernel.org
13181 S:      Maintained
13182 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
13183 F:      drivers/net/wireless/intersil/p54/
13184
13185 PACKING
13186 M:      Vladimir Oltean <olteanv@gmail.com>
13187 L:      netdev@vger.kernel.org
13188 S:      Supported
13189 F:      Documentation/core-api/packing.rst
13190 F:      include/linux/packing.h
13191 F:      lib/packing.c
13192
13193 PADATA PARALLEL EXECUTION MECHANISM
13194 M:      Steffen Klassert <steffen.klassert@secunet.com>
13195 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
13196 L:      linux-crypto@vger.kernel.org
13197 L:      linux-kernel@vger.kernel.org
13198 S:      Maintained
13199 F:      Documentation/core-api/padata.rst
13200 F:      include/linux/padata.h
13201 F:      kernel/padata.c
13202
13203 PAGE POOL
13204 M:      Jesper Dangaard Brouer <hawk@kernel.org>
13205 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
13206 L:      netdev@vger.kernel.org
13207 S:      Supported
13208 F:      include/net/page_pool.h
13209 F:      net/core/page_pool.c
13210
13211 PANASONIC LAPTOP ACPI EXTRAS DRIVER
13212 M:      Harald Welte <laforge@gnumonks.org>
13213 L:      platform-driver-x86@vger.kernel.org
13214 S:      Maintained
13215 F:      drivers/platform/x86/panasonic-laptop.c
13216
13217 PARALLAX PING IIO SENSOR DRIVER
13218 M:      Andreas Klinger <ak@it-klinger.de>
13219 L:      linux-iio@vger.kernel.org
13220 S:      Maintained
13221 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
13222 F:      drivers/iio/proximity/ping.c
13223
13224 PARALLEL LCD/KEYPAD PANEL DRIVER
13225 M:      Willy Tarreau <willy@haproxy.com>
13226 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
13227 S:      Odd Fixes
13228 F:      Documentation/admin-guide/lcd-panel-cgram.rst
13229 F:      drivers/auxdisplay/panel.c
13230
13231 PARALLEL PORT SUBSYSTEM
13232 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
13233 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
13234 L:      linux-parport@lists.infradead.org (subscribers-only)
13235 S:      Maintained
13236 F:      Documentation/driver-api/parport*.rst
13237 F:      drivers/char/ppdev.c
13238 F:      drivers/parport/
13239 F:      include/linux/parport*.h
13240 F:      include/uapi/linux/ppdev.h
13241
13242 PARAVIRT_OPS INTERFACE
13243 M:      Juergen Gross <jgross@suse.com>
13244 M:      Deep Shah <sdeep@vmware.com>
13245 M:      "VMware, Inc." <pv-drivers@vmware.com>
13246 L:      virtualization@lists.linux-foundation.org
13247 S:      Supported
13248 F:      Documentation/virt/paravirt_ops.rst
13249 F:      arch/*/include/asm/paravirt*.h
13250 F:      arch/*/kernel/paravirt*
13251 F:      include/linux/hypervisor.h
13252
13253 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
13254 M:      Tim Waugh <tim@cyberelk.net>
13255 L:      linux-parport@lists.infradead.org (subscribers-only)
13256 S:      Maintained
13257 F:      Documentation/admin-guide/blockdev/paride.rst
13258 F:      drivers/block/paride/
13259
13260 PARISC ARCHITECTURE
13261 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
13262 M:      Helge Deller <deller@gmx.de>
13263 L:      linux-parisc@vger.kernel.org
13264 S:      Maintained
13265 W:      https://parisc.wiki.kernel.org
13266 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
13267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
13268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
13269 F:      Documentation/parisc/
13270 F:      arch/parisc/
13271 F:      drivers/char/agp/parisc-agp.c
13272 F:      drivers/input/misc/hp_sdc_rtc.c
13273 F:      drivers/input/serio/gscps2.c
13274 F:      drivers/input/serio/hp_sdc*
13275 F:      drivers/parisc/
13276 F:      drivers/parport/parport_gsc.*
13277 F:      drivers/tty/serial/8250/8250_gsc.c
13278 F:      drivers/video/console/sti*
13279 F:      drivers/video/fbdev/sti*
13280 F:      drivers/video/logo/logo_parisc*
13281 F:      include/linux/hp_sdc.h
13282
13283 PARMAN
13284 M:      Jiri Pirko <jiri@nvidia.com>
13285 L:      netdev@vger.kernel.org
13286 S:      Supported
13287 F:      include/linux/parman.h
13288 F:      lib/parman.c
13289 F:      lib/test_parman.c
13290
13291 PC ENGINES APU BOARD DRIVER
13292 M:      Enrico Weigelt, metux IT consult <info@metux.net>
13293 S:      Maintained
13294 F:      drivers/platform/x86/pcengines-apuv2.c
13295
13296 PC87360 HARDWARE MONITORING DRIVER
13297 M:      Jim Cromie <jim.cromie@gmail.com>
13298 L:      linux-hwmon@vger.kernel.org
13299 S:      Maintained
13300 F:      Documentation/hwmon/pc87360.rst
13301 F:      drivers/hwmon/pc87360.c
13302
13303 PC8736x GPIO DRIVER
13304 M:      Jim Cromie <jim.cromie@gmail.com>
13305 S:      Maintained
13306 F:      drivers/char/pc8736x_gpio.c
13307
13308 PC87427 HARDWARE MONITORING DRIVER
13309 M:      Jean Delvare <jdelvare@suse.com>
13310 L:      linux-hwmon@vger.kernel.org
13311 S:      Maintained
13312 F:      Documentation/hwmon/pc87427.rst
13313 F:      drivers/hwmon/pc87427.c
13314
13315 PCA9532 LED DRIVER
13316 M:      Riku Voipio <riku.voipio@iki.fi>
13317 S:      Maintained
13318 F:      drivers/leds/leds-pca9532.c
13319 F:      include/linux/leds-pca9532.h
13320
13321 PCA9541 I2C BUS MASTER SELECTOR DRIVER
13322 M:      Guenter Roeck <linux@roeck-us.net>
13323 L:      linux-i2c@vger.kernel.org
13324 S:      Maintained
13325 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
13326
13327 PCDP - PRIMARY CONSOLE AND DEBUG PORT
13328 M:      Khalid Aziz <khalid@gonehiking.org>
13329 S:      Maintained
13330 F:      drivers/firmware/pcdp.*
13331
13332 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
13333 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13334 M:      Pali Rohár <pali@kernel.org>
13335 L:      linux-pci@vger.kernel.org
13336 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13337 S:      Maintained
13338 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
13339 F:      drivers/pci/controller/pci-aardvark.c
13340
13341 PCI DRIVER FOR ALTERA PCIE IP
13342 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13343 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13344 L:      linux-pci@vger.kernel.org
13345 S:      Supported
13346 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
13347 F:      drivers/pci/controller/pcie-altera.c
13348
13349 PCI DRIVER FOR APPLIEDMICRO XGENE
13350 M:      Toan Le <toan@os.amperecomputing.com>
13351 L:      linux-pci@vger.kernel.org
13352 L:      linux-arm-kernel@lists.infradead.org
13353 S:      Maintained
13354 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
13355 F:      drivers/pci/controller/pci-xgene.c
13356
13357 PCI DRIVER FOR ARM VERSATILE PLATFORM
13358 M:      Rob Herring <robh@kernel.org>
13359 L:      linux-pci@vger.kernel.org
13360 L:      linux-arm-kernel@lists.infradead.org
13361 S:      Maintained
13362 F:      Documentation/devicetree/bindings/pci/versatile.yaml
13363 F:      drivers/pci/controller/pci-versatile.c
13364
13365 PCI DRIVER FOR ARMADA 8K
13366 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13367 L:      linux-pci@vger.kernel.org
13368 L:      linux-arm-kernel@lists.infradead.org
13369 S:      Maintained
13370 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
13371 F:      drivers/pci/controller/dwc/pcie-armada8k.c
13372
13373 PCI DRIVER FOR CADENCE PCIE IP
13374 M:      Tom Joseph <tjoseph@cadence.com>
13375 L:      linux-pci@vger.kernel.org
13376 S:      Maintained
13377 F:      Documentation/devicetree/bindings/pci/cdns,*
13378 F:      drivers/pci/controller/cadence/
13379
13380 PCI DRIVER FOR FREESCALE LAYERSCAPE
13381 M:      Minghuan Lian <minghuan.Lian@nxp.com>
13382 M:      Mingkai Hu <mingkai.hu@nxp.com>
13383 M:      Roy Zang <roy.zang@nxp.com>
13384 L:      linuxppc-dev@lists.ozlabs.org
13385 L:      linux-pci@vger.kernel.org
13386 L:      linux-arm-kernel@lists.infradead.org
13387 S:      Maintained
13388 F:      drivers/pci/controller/dwc/*layerscape*
13389
13390 PCI DRIVER FOR GENERIC OF HOSTS
13391 M:      Will Deacon <will@kernel.org>
13392 L:      linux-pci@vger.kernel.org
13393 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13394 S:      Maintained
13395 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
13396 F:      drivers/pci/controller/pci-host-common.c
13397 F:      drivers/pci/controller/pci-host-generic.c
13398
13399 PCI DRIVER FOR IMX6
13400 M:      Richard Zhu <hongxing.zhu@nxp.com>
13401 M:      Lucas Stach <l.stach@pengutronix.de>
13402 L:      linux-pci@vger.kernel.org
13403 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13404 S:      Maintained
13405 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
13406 F:      drivers/pci/controller/dwc/*imx6*
13407
13408 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
13409 M:      Jonathan Derrick <jonathan.derrick@intel.com>
13410 L:      linux-pci@vger.kernel.org
13411 S:      Supported
13412 F:      drivers/pci/controller/vmd.c
13413
13414 PCI DRIVER FOR MICROSEMI SWITCHTEC
13415 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
13416 M:      Logan Gunthorpe <logang@deltatee.com>
13417 L:      linux-pci@vger.kernel.org
13418 S:      Maintained
13419 F:      Documentation/ABI/testing/sysfs-class-switchtec
13420 F:      Documentation/driver-api/switchtec.rst
13421 F:      drivers/ntb/hw/mscc/
13422 F:      drivers/pci/switch/switchtec*
13423 F:      include/linux/switchtec.h
13424 F:      include/uapi/linux/switchtec_ioctl.h
13425
13426 PCI DRIVER FOR MOBIVEIL PCIE IP
13427 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
13428 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13429 L:      linux-pci@vger.kernel.org
13430 S:      Supported
13431 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
13432 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
13433
13434 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
13435 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13436 M:      Jason Cooper <jason@lakedaemon.net>
13437 L:      linux-pci@vger.kernel.org
13438 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13439 S:      Maintained
13440 F:      drivers/pci/controller/*mvebu*
13441
13442 PCI DRIVER FOR NVIDIA TEGRA
13443 M:      Thierry Reding <thierry.reding@gmail.com>
13444 L:      linux-tegra@vger.kernel.org
13445 L:      linux-pci@vger.kernel.org
13446 S:      Supported
13447 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
13448 F:      drivers/pci/controller/pci-tegra.c
13449
13450 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
13451 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13452 L:      linux-pci@vger.kernel.org
13453 L:      linux-arm-kernel@lists.infradead.org
13454 S:      Maintained
13455 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
13456 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
13457
13458 PCI DRIVER FOR RENESAS R-CAR
13459 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
13460 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
13461 L:      linux-pci@vger.kernel.org
13462 L:      linux-renesas-soc@vger.kernel.org
13463 S:      Maintained
13464 F:      Documentation/devicetree/bindings/pci/*rcar*
13465 F:      drivers/pci/controller/*rcar*
13466
13467 PCI DRIVER FOR SAMSUNG EXYNOS
13468 M:      Jingoo Han <jingoohan1@gmail.com>
13469 L:      linux-pci@vger.kernel.org
13470 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13471 L:      linux-samsung-soc@vger.kernel.org
13472 S:      Maintained
13473 F:      drivers/pci/controller/dwc/pci-exynos.c
13474
13475 PCI DRIVER FOR SYNOPSYS DESIGNWARE
13476 M:      Jingoo Han <jingoohan1@gmail.com>
13477 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
13478 L:      linux-pci@vger.kernel.org
13479 S:      Maintained
13480 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
13481 F:      drivers/pci/controller/dwc/*designware*
13482
13483 PCI DRIVER FOR TI DRA7XX/J721E
13484 M:      Kishon Vijay Abraham I <kishon@ti.com>
13485 L:      linux-omap@vger.kernel.org
13486 L:      linux-pci@vger.kernel.org
13487 L:      linux-arm-kernel@lists.infradead.org
13488 S:      Supported
13489 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
13490 F:      drivers/pci/controller/cadence/pci-j721e.c
13491 F:      drivers/pci/controller/dwc/pci-dra7xx.c
13492
13493 PCI DRIVER FOR TI KEYSTONE
13494 M:      Murali Karicheri <m-karicheri2@ti.com>
13495 L:      linux-pci@vger.kernel.org
13496 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13497 S:      Maintained
13498 F:      drivers/pci/controller/dwc/pci-keystone.c
13499
13500 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13501 M:      Linus Walleij <linus.walleij@linaro.org>
13502 L:      linux-pci@vger.kernel.org
13503 S:      Maintained
13504 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13505 F:      drivers/pci/controller/pci-v3-semi.c
13506
13507 PCI ENDPOINT SUBSYSTEM
13508 M:      Kishon Vijay Abraham I <kishon@ti.com>
13509 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13510 L:      linux-pci@vger.kernel.org
13511 S:      Supported
13512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
13513 F:      drivers/misc/pci_endpoint_test.c
13514 F:      drivers/pci/endpoint/
13515 F:      tools/pci/
13516
13517 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
13518 M:      Russell Currey <ruscur@russell.cc>
13519 M:      Oliver O'Halloran <oohall@gmail.com>
13520 L:      linuxppc-dev@lists.ozlabs.org
13521 S:      Supported
13522 F:      Documentation/PCI/pci-error-recovery.rst
13523 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
13524 F:      arch/powerpc/include/*/eeh*.h
13525 F:      arch/powerpc/kernel/eeh*.c
13526 F:      arch/powerpc/platforms/*/eeh*.c
13527 F:      drivers/pci/pcie/aer.c
13528 F:      drivers/pci/pcie/dpc.c
13529 F:      drivers/pci/pcie/err.c
13530
13531 PCI ERROR RECOVERY
13532 M:      Linas Vepstas <linasvepstas@gmail.com>
13533 L:      linux-pci@vger.kernel.org
13534 S:      Supported
13535 F:      Documentation/PCI/pci-error-recovery.rst
13536
13537 PCI MSI DRIVER FOR ALTERA MSI IP
13538 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13539 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13540 L:      linux-pci@vger.kernel.org
13541 S:      Supported
13542 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
13543 F:      drivers/pci/controller/pcie-altera-msi.c
13544
13545 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13546 M:      Toan Le <toan@os.amperecomputing.com>
13547 L:      linux-pci@vger.kernel.org
13548 L:      linux-arm-kernel@lists.infradead.org
13549 S:      Maintained
13550 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13551 F:      drivers/pci/controller/pci-xgene-msi.c
13552
13553 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13554 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13555 R:      Rob Herring <robh@kernel.org>
13556 L:      linux-pci@vger.kernel.org
13557 S:      Supported
13558 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13560 F:      drivers/pci/controller/
13561
13562 PCI SUBSYSTEM
13563 M:      Bjorn Helgaas <bhelgaas@google.com>
13564 L:      linux-pci@vger.kernel.org
13565 S:      Supported
13566 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13568 F:      Documentation/PCI/
13569 F:      Documentation/devicetree/bindings/pci/
13570 F:      arch/x86/kernel/early-quirks.c
13571 F:      arch/x86/kernel/quirks.c
13572 F:      arch/x86/pci/
13573 F:      drivers/acpi/pci*
13574 F:      drivers/pci/
13575 F:      include/asm-generic/pci*
13576 F:      include/linux/of_pci.h
13577 F:      include/linux/pci*
13578 F:      include/uapi/linux/pci*
13579 F:      lib/pci*
13580
13581 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13582 M:      Jonathan Chocron <jonnyc@amazon.com>
13583 L:      linux-pci@vger.kernel.org
13584 S:      Maintained
13585 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
13586 F:      drivers/pci/controller/dwc/pcie-al.c
13587
13588 PCIE DRIVER FOR AMLOGIC MESON
13589 M:      Yue Wang <yue.wang@Amlogic.com>
13590 L:      linux-pci@vger.kernel.org
13591 L:      linux-amlogic@lists.infradead.org
13592 S:      Maintained
13593 F:      drivers/pci/controller/dwc/pci-meson.c
13594
13595 PCIE DRIVER FOR AXIS ARTPEC
13596 M:      Jesper Nilsson <jesper.nilsson@axis.com>
13597 L:      linux-arm-kernel@axis.com
13598 L:      linux-pci@vger.kernel.org
13599 S:      Maintained
13600 F:      Documentation/devicetree/bindings/pci/axis,artpec*
13601 F:      drivers/pci/controller/dwc/*artpec*
13602
13603 PCIE DRIVER FOR CAVIUM THUNDERX
13604 M:      Robert Richter <rric@kernel.org>
13605 L:      linux-pci@vger.kernel.org
13606 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13607 S:      Odd Fixes
13608 F:      drivers/pci/controller/pci-thunder-*
13609
13610 PCIE DRIVER FOR HISILICON
13611 M:      Zhou Wang <wangzhou1@hisilicon.com>
13612 L:      linux-pci@vger.kernel.org
13613 S:      Maintained
13614 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13615 F:      drivers/pci/controller/dwc/pcie-hisi.c
13616
13617 PCIE DRIVER FOR HISILICON KIRIN
13618 M:      Xiaowei Song <songxiaowei@hisilicon.com>
13619 M:      Binghui Wang <wangbinghui@hisilicon.com>
13620 L:      linux-pci@vger.kernel.org
13621 S:      Maintained
13622 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
13623 F:      drivers/pci/controller/dwc/pcie-kirin.c
13624
13625 PCIE DRIVER FOR HISILICON STB
13626 M:      Shawn Guo <shawn.guo@linaro.org>
13627 L:      linux-pci@vger.kernel.org
13628 S:      Maintained
13629 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13630 F:      drivers/pci/controller/dwc/pcie-histb.c
13631
13632 PCIE DRIVER FOR MEDIATEK
13633 M:      Ryder Lee <ryder.lee@mediatek.com>
13634 L:      linux-pci@vger.kernel.org
13635 L:      linux-mediatek@lists.infradead.org
13636 S:      Supported
13637 F:      Documentation/devicetree/bindings/pci/mediatek*
13638 F:      drivers/pci/controller/*mediatek*
13639
13640 PCIE DRIVER FOR QUALCOMM MSM
13641 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
13642 L:      linux-pci@vger.kernel.org
13643 L:      linux-arm-msm@vger.kernel.org
13644 S:      Maintained
13645 F:      drivers/pci/controller/dwc/*qcom*
13646
13647 PCIE DRIVER FOR ROCKCHIP
13648 M:      Shawn Lin <shawn.lin@rock-chips.com>
13649 L:      linux-pci@vger.kernel.org
13650 L:      linux-rockchip@lists.infradead.org
13651 S:      Maintained
13652 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
13653 F:      drivers/pci/controller/pcie-rockchip*
13654
13655 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13656 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
13657 L:      linux-pci@vger.kernel.org
13658 S:      Maintained
13659 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
13660 F:      drivers/pci/controller/dwc/pcie-uniphier*
13661
13662 PCIE DRIVER FOR ST SPEAR13XX
13663 M:      Pratyush Anand <pratyush.anand@gmail.com>
13664 L:      linux-pci@vger.kernel.org
13665 S:      Maintained
13666 F:      drivers/pci/controller/dwc/*spear*
13667
13668 PCMCIA SUBSYSTEM
13669 M:      Dominik Brodowski <linux@dominikbrodowski.net>
13670 S:      Odd Fixes
13671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13672 F:      Documentation/pcmcia/
13673 F:      drivers/pcmcia/
13674 F:      include/pcmcia/
13675 F:      tools/pcmcia/
13676
13677 PCNET32 NETWORK DRIVER
13678 M:      Don Fry <pcnet32@frontier.com>
13679 L:      netdev@vger.kernel.org
13680 S:      Maintained
13681 F:      drivers/net/ethernet/amd/pcnet32.c
13682
13683 PCRYPT PARALLEL CRYPTO ENGINE
13684 M:      Steffen Klassert <steffen.klassert@secunet.com>
13685 L:      linux-crypto@vger.kernel.org
13686 S:      Maintained
13687 F:      crypto/pcrypt.c
13688 F:      include/crypto/pcrypt.h
13689
13690 PEAQ WMI HOTKEYS DRIVER
13691 M:      Hans de Goede <hdegoede@redhat.com>
13692 L:      platform-driver-x86@vger.kernel.org
13693 S:      Maintained
13694 F:      drivers/platform/x86/peaq-wmi.c
13695
13696 PENSANDO ETHERNET DRIVERS
13697 M:      Shannon Nelson <snelson@pensando.io>
13698 M:      Pensando Drivers <drivers@pensando.io>
13699 L:      netdev@vger.kernel.org
13700 S:      Supported
13701 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
13702 F:      drivers/net/ethernet/pensando/
13703
13704 PER-CPU MEMORY ALLOCATOR
13705 M:      Dennis Zhou <dennis@kernel.org>
13706 M:      Tejun Heo <tj@kernel.org>
13707 M:      Christoph Lameter <cl@linux.com>
13708 S:      Maintained
13709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13710 F:      arch/*/include/asm/percpu.h
13711 F:      include/linux/percpu*.h
13712 F:      mm/percpu*.c
13713
13714 PER-TASK DELAY ACCOUNTING
13715 M:      Balbir Singh <bsingharora@gmail.com>
13716 S:      Maintained
13717 F:      include/linux/delayacct.h
13718 F:      kernel/delayacct.c
13719
13720 PERFORMANCE EVENTS SUBSYSTEM
13721 M:      Peter Zijlstra <peterz@infradead.org>
13722 M:      Ingo Molnar <mingo@redhat.com>
13723 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
13724 R:      Mark Rutland <mark.rutland@arm.com>
13725 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
13726 R:      Jiri Olsa <jolsa@redhat.com>
13727 R:      Namhyung Kim <namhyung@kernel.org>
13728 L:      linux-kernel@vger.kernel.org
13729 S:      Supported
13730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13731 F:      arch/*/events/*
13732 F:      arch/*/events/*/*
13733 F:      arch/*/include/asm/perf_event.h
13734 F:      arch/*/kernel/*/*/perf_event*.c
13735 F:      arch/*/kernel/*/perf_event*.c
13736 F:      arch/*/kernel/perf_callchain.c
13737 F:      arch/*/kernel/perf_event*.c
13738 F:      include/linux/perf_event.h
13739 F:      include/uapi/linux/perf_event.h
13740 F:      kernel/events/*
13741 F:      tools/lib/perf/
13742 F:      tools/perf/
13743
13744 PERFORMANCE EVENTS TOOLING ARM64
13745 R:      John Garry <john.garry@huawei.com>
13746 R:      Will Deacon <will@kernel.org>
13747 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
13748 R:      Leo Yan <leo.yan@linaro.org>
13749 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13750 S:      Supported
13751 F:      tools/build/feature/test-libopencsd.c
13752 F:      tools/perf/arch/arm*/
13753 F:      tools/perf/pmu-events/arch/arm64/
13754 F:      tools/perf/util/arm-spe*
13755 F:      tools/perf/util/cs-etm*
13756
13757 PERSONALITY HANDLING
13758 M:      Christoph Hellwig <hch@infradead.org>
13759 L:      linux-abi-devel@lists.sourceforge.net
13760 S:      Maintained
13761 F:      include/linux/personality.h
13762 F:      include/uapi/linux/personality.h
13763
13764 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13765 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13766 L:      linux-input@vger.kernel.org
13767 S:      Maintained
13768 F:      Documentation/input/devices/pxrc.rst
13769 F:      drivers/input/joystick/pxrc.c
13770
13771 PHONET PROTOCOL
13772 M:      Remi Denis-Courmont <courmisch@gmail.com>
13773 S:      Supported
13774 F:      Documentation/networking/phonet.rst
13775 F:      include/linux/phonet.h
13776 F:      include/net/phonet/
13777 F:      include/uapi/linux/phonet.h
13778 F:      net/phonet/
13779
13780 PHRAM MTD DRIVER
13781 M:      Joern Engel <joern@lazybastard.org>
13782 L:      linux-mtd@lists.infradead.org
13783 S:      Maintained
13784 F:      drivers/mtd/devices/phram.c
13785
13786 PICOLCD HID DRIVER
13787 M:      Bruno Prémont <bonbons@linux-vserver.org>
13788 L:      linux-input@vger.kernel.org
13789 S:      Maintained
13790 F:      drivers/hid/hid-picolcd*
13791
13792 PICOXCELL SUPPORT
13793 M:      Jamie Iles <jamie@jamieiles.com>
13794 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13795 S:      Supported
13796 T:      git git://github.com/jamieiles/linux-2.6-ji.git
13797 F:      arch/arm/boot/dts/picoxcell*
13798 F:      arch/arm/mach-picoxcell/
13799 F:      drivers/crypto/picoxcell*
13800
13801 PIDFD API
13802 M:      Christian Brauner <christian@brauner.io>
13803 L:      linux-kernel@vger.kernel.org
13804 S:      Maintained
13805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
13806 F:      samples/pidfd/
13807 F:      tools/testing/selftests/clone3/
13808 F:      tools/testing/selftests/pid_namespace/
13809 F:      tools/testing/selftests/pidfd/
13810 K:      (?i)pidfd
13811 K:      (?i)clone3
13812 K:      \b(clone_args|kernel_clone_args)\b
13813
13814 PIN CONTROL SUBSYSTEM
13815 M:      Linus Walleij <linus.walleij@linaro.org>
13816 L:      linux-gpio@vger.kernel.org
13817 S:      Maintained
13818 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
13819 F:      Documentation/devicetree/bindings/pinctrl/
13820 F:      Documentation/driver-api/pinctl.rst
13821 F:      drivers/pinctrl/
13822 F:      include/linux/pinctrl/
13823
13824 PIN CONTROLLER - FREESCALE
13825 M:      Dong Aisheng <aisheng.dong@nxp.com>
13826 M:      Fabio Estevam <festevam@gmail.com>
13827 M:      Shawn Guo <shawnguo@kernel.org>
13828 M:      Stefan Agner <stefan@agner.ch>
13829 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
13830 L:      linux-gpio@vger.kernel.org
13831 S:      Maintained
13832 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
13833 F:      drivers/pinctrl/freescale/
13834
13835 PIN CONTROLLER - INTEL
13836 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
13837 M:      Andy Shevchenko <andy@kernel.org>
13838 S:      Maintained
13839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
13840 F:      drivers/pinctrl/intel/
13841
13842 PIN CONTROLLER - MEDIATEK
13843 M:      Sean Wang <sean.wang@kernel.org>
13844 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13845 S:      Maintained
13846 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
13847 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
13848 F:      drivers/pinctrl/mediatek/
13849
13850 PIN CONTROLLER - MICROCHIP AT91
13851 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13852 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13853 L:      linux-gpio@vger.kernel.org
13854 S:      Supported
13855 F:      drivers/gpio/gpio-sama5d2-piobu.c
13856 F:      drivers/pinctrl/pinctrl-at91*
13857
13858 PIN CONTROLLER - QUALCOMM
13859 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13860 L:      linux-arm-msm@vger.kernel.org
13861 S:      Maintained
13862 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
13863 F:      drivers/pinctrl/qcom/
13864
13865 PIN CONTROLLER - RENESAS
13866 M:      Geert Uytterhoeven <geert+renesas@glider.be>
13867 L:      linux-renesas-soc@vger.kernel.org
13868 S:      Supported
13869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
13870 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
13871 F:      drivers/pinctrl/renesas/
13872
13873 PIN CONTROLLER - SAMSUNG
13874 M:      Tomasz Figa <tomasz.figa@gmail.com>
13875 M:      Krzysztof Kozlowski <krzk@kernel.org>
13876 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13877 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13878 L:      linux-samsung-soc@vger.kernel.org
13879 S:      Maintained
13880 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
13881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
13882 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
13883 F:      drivers/pinctrl/samsung/
13884 F:      include/dt-bindings/pinctrl/samsung.h
13885
13886 PIN CONTROLLER - SINGLE
13887 M:      Tony Lindgren <tony@atomide.com>
13888 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
13889 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13890 L:      linux-omap@vger.kernel.org
13891 S:      Maintained
13892 F:      drivers/pinctrl/pinctrl-single.c
13893
13894 PIN CONTROLLER - ST SPEAR
13895 M:      Viresh Kumar <vireshk@kernel.org>
13896 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13897 S:      Maintained
13898 W:      http://www.st.com/spear
13899 F:      drivers/pinctrl/spear/
13900
13901 PISTACHIO SOC SUPPORT
13902 M:      James Hartley <james.hartley@sondrel.com>
13903 L:      linux-mips@vger.kernel.org
13904 S:      Odd Fixes
13905 F:      arch/mips/boot/dts/img/pistachio*
13906 F:      arch/mips/configs/pistachio*_defconfig
13907 F:      arch/mips/include/asm/mach-pistachio/
13908 F:      arch/mips/pistachio/
13909
13910 PKTCDVD DRIVER
13911 M:      linux-block@vger.kernel.org
13912 S:      Orphan
13913 F:      drivers/block/pktcdvd.c
13914 F:      include/linux/pktcdvd.h
13915 F:      include/uapi/linux/pktcdvd.h
13916
13917 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
13918 M:      Tomasz Duszynski <tduszyns@gmail.com>
13919 S:      Maintained
13920 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
13921 F:      drivers/iio/chemical/pms7003.c
13922
13923 PLDMFW LIBRARY
13924 M:      Jacob Keller <jacob.e.keller@intel.com>
13925 S:      Maintained
13926 F:      Documentation/driver-api/pldmfw/
13927 F:      include/linux/pldmfw.h
13928 F:      lib/pldmfw/
13929
13930 PLX DMA DRIVER
13931 M:      Logan Gunthorpe <logang@deltatee.com>
13932 S:      Maintained
13933 F:      drivers/dma/plx_dma.c
13934
13935 PM-GRAPH UTILITY
13936 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
13937 L:      linux-pm@vger.kernel.org
13938 S:      Supported
13939 W:      https://01.org/pm-graph
13940 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
13941 T:      git git://github.com/intel/pm-graph
13942 F:      tools/power/pm-graph
13943
13944 PMBUS HARDWARE MONITORING DRIVERS
13945 M:      Guenter Roeck <linux@roeck-us.net>
13946 L:      linux-hwmon@vger.kernel.org
13947 S:      Maintained
13948 W:      http://hwmon.wiki.kernel.org/
13949 W:      http://www.roeck-us.net/linux/drivers/
13950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
13951 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
13952 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
13953 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
13954 F:      Documentation/hwmon/adm1275.rst
13955 F:      Documentation/hwmon/ibm-cffps.rst
13956 F:      Documentation/hwmon/ir35221.rst
13957 F:      Documentation/hwmon/lm25066.rst
13958 F:      Documentation/hwmon/ltc2978.rst
13959 F:      Documentation/hwmon/ltc3815.rst
13960 F:      Documentation/hwmon/max16064.rst
13961 F:      Documentation/hwmon/max20751.rst
13962 F:      Documentation/hwmon/max31785.rst
13963 F:      Documentation/hwmon/max34440.rst
13964 F:      Documentation/hwmon/max8688.rst
13965 F:      Documentation/hwmon/pmbus-core.rst
13966 F:      Documentation/hwmon/pmbus.rst
13967 F:      Documentation/hwmon/tps40422.rst
13968 F:      Documentation/hwmon/ucd9000.rst
13969 F:      Documentation/hwmon/ucd9200.rst
13970 F:      Documentation/hwmon/zl6100.rst
13971 F:      drivers/hwmon/pmbus/
13972 F:      include/linux/pmbus.h
13973
13974 PMC SIERRA MaxRAID DRIVER
13975 L:      linux-scsi@vger.kernel.org
13976 S:      Orphan
13977 W:      http://www.pmc-sierra.com/
13978 F:      drivers/scsi/pmcraid.*
13979
13980 PMC SIERRA PM8001 DRIVER
13981 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
13982 L:      linux-scsi@vger.kernel.org
13983 S:      Supported
13984 F:      drivers/scsi/pm8001/
13985
13986 PNI RM3100 IIO DRIVER
13987 M:      Song Qiang <songqiang1304521@gmail.com>
13988 L:      linux-iio@vger.kernel.org
13989 S:      Maintained
13990 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
13991 F:      drivers/iio/magnetometer/rm3100*
13992
13993 PNP SUPPORT
13994 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
13995 L:      linux-acpi@vger.kernel.org
13996 S:      Maintained
13997 F:      drivers/pnp/
13998 F:      include/linux/pnp.h
13999
14000 POSIX CLOCKS and TIMERS
14001 M:      Thomas Gleixner <tglx@linutronix.de>
14002 L:      linux-kernel@vger.kernel.org
14003 S:      Maintained
14004 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
14005 F:      fs/timerfd.c
14006 F:      include/linux/time_namespace.h
14007 F:      include/linux/timer*
14008 F:      kernel/time/*timer*
14009 F:      kernel/time/namespace.c
14010
14011 POWER MANAGEMENT CORE
14012 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
14013 L:      linux-pm@vger.kernel.org
14014 S:      Supported
14015 B:      https://bugzilla.kernel.org
14016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14017 F:      drivers/base/power/
14018 F:      drivers/powercap/
14019 F:      include/linux/intel_rapl.h
14020 F:      include/linux/pm.h
14021 F:      include/linux/pm_*
14022 F:      include/linux/powercap.h
14023 F:      kernel/configs/nopm.config
14024
14025 POWER STATE COORDINATION INTERFACE (PSCI)
14026 M:      Mark Rutland <mark.rutland@arm.com>
14027 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14028 L:      linux-arm-kernel@lists.infradead.org
14029 S:      Maintained
14030 F:      drivers/firmware/psci/
14031 F:      include/linux/psci.h
14032 F:      include/uapi/linux/psci.h
14033
14034 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
14035 M:      Sebastian Reichel <sre@kernel.org>
14036 L:      linux-pm@vger.kernel.org
14037 S:      Maintained
14038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
14039 F:      Documentation/ABI/testing/sysfs-class-power
14040 F:      Documentation/devicetree/bindings/power/supply/
14041 F:      drivers/power/supply/
14042 F:      include/linux/power_supply.h
14043
14044 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
14045 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
14046 L:      linuxppc-dev@lists.ozlabs.org
14047 S:      Maintained
14048 F:      drivers/char/powernv-op-panel.c
14049
14050 PPP OVER ATM (RFC 2364)
14051 M:      Mitchell Blank Jr <mitch@sfgoth.com>
14052 S:      Maintained
14053 F:      include/uapi/linux/atmppp.h
14054 F:      net/atm/pppoatm.c
14055
14056 PPP OVER ETHERNET
14057 M:      Michal Ostrowski <mostrows@earthlink.net>
14058 S:      Maintained
14059 F:      drivers/net/ppp/pppoe.c
14060 F:      drivers/net/ppp/pppox.c
14061
14062 PPP OVER L2TP
14063 M:      James Chapman <jchapman@katalix.com>
14064 S:      Maintained
14065 F:      include/linux/if_pppol2tp.h
14066 F:      include/uapi/linux/if_pppol2tp.h
14067 F:      net/l2tp/l2tp_ppp.c
14068
14069 PPP PROTOCOL DRIVERS AND COMPRESSORS
14070 M:      Paul Mackerras <paulus@samba.org>
14071 L:      linux-ppp@vger.kernel.org
14072 S:      Maintained
14073 F:      drivers/net/ppp/ppp_*
14074
14075 PPS SUPPORT
14076 M:      Rodolfo Giometti <giometti@enneenne.com>
14077 L:      linuxpps@ml.enneenne.com (subscribers-only)
14078 S:      Maintained
14079 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
14080 F:      Documentation/ABI/testing/sysfs-pps
14081 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
14082 F:      Documentation/driver-api/pps.rst
14083 F:      drivers/pps/
14084 F:      include/linux/pps*.h
14085 F:      include/uapi/linux/pps.h
14086
14087 PPTP DRIVER
14088 M:      Dmitry Kozlov <xeb@mail.ru>
14089 L:      netdev@vger.kernel.org
14090 S:      Maintained
14091 W:      http://sourceforge.net/projects/accel-pptp
14092 F:      drivers/net/ppp/pptp.c
14093
14094 PRESSURE STALL INFORMATION (PSI)
14095 M:      Johannes Weiner <hannes@cmpxchg.org>
14096 S:      Maintained
14097 F:      include/linux/psi*
14098 F:      kernel/sched/psi.c
14099
14100 PRINTK
14101 M:      Petr Mladek <pmladek@suse.com>
14102 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
14103 R:      Steven Rostedt <rostedt@goodmis.org>
14104 R:      John Ogness <john.ogness@linutronix.de>
14105 S:      Maintained
14106 F:      include/linux/printk.h
14107 F:      kernel/printk/
14108
14109 PRISM54 WIRELESS DRIVER
14110 M:      Luis Chamberlain <mcgrof@kernel.org>
14111 L:      linux-wireless@vger.kernel.org
14112 S:      Obsolete
14113 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14114 F:      drivers/net/wireless/intersil/prism54/
14115
14116 PROC FILESYSTEM
14117 R:      Alexey Dobriyan <adobriyan@gmail.com>
14118 L:      linux-kernel@vger.kernel.org
14119 L:      linux-fsdevel@vger.kernel.org
14120 S:      Maintained
14121 F:      Documentation/filesystems/proc.rst
14122 F:      fs/proc/
14123 F:      include/linux/proc_fs.h
14124 F:      tools/testing/selftests/proc/
14125
14126 PROC SYSCTL
14127 M:      Luis Chamberlain <mcgrof@kernel.org>
14128 M:      Kees Cook <keescook@chromium.org>
14129 M:      Iurii Zaikin <yzaikin@google.com>
14130 L:      linux-kernel@vger.kernel.org
14131 L:      linux-fsdevel@vger.kernel.org
14132 S:      Maintained
14133 F:      fs/proc/proc_sysctl.c
14134 F:      include/linux/sysctl.h
14135 F:      kernel/sysctl-test.c
14136 F:      kernel/sysctl.c
14137 F:      tools/testing/selftests/sysctl/
14138
14139 PS3 NETWORK SUPPORT
14140 M:      Geoff Levand <geoff@infradead.org>
14141 L:      netdev@vger.kernel.org
14142 L:      linuxppc-dev@lists.ozlabs.org
14143 S:      Maintained
14144 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
14145
14146 PS3 PLATFORM SUPPORT
14147 M:      Geoff Levand <geoff@infradead.org>
14148 L:      linuxppc-dev@lists.ozlabs.org
14149 S:      Maintained
14150 F:      arch/powerpc/boot/ps3*
14151 F:      arch/powerpc/include/asm/lv1call.h
14152 F:      arch/powerpc/include/asm/ps3*.h
14153 F:      arch/powerpc/platforms/ps3/
14154 F:      drivers/*/ps3*
14155 F:      drivers/ps3/
14156 F:      drivers/rtc/rtc-ps3.c
14157 F:      drivers/usb/host/*ps3.c
14158 F:      sound/ppc/snd_ps3*
14159
14160 PS3VRAM DRIVER
14161 M:      Jim Paris <jim@jtan.com>
14162 M:      Geoff Levand <geoff@infradead.org>
14163 L:      linuxppc-dev@lists.ozlabs.org
14164 S:      Maintained
14165 F:      drivers/block/ps3vram.c
14166
14167 PSAMPLE PACKET SAMPLING SUPPORT
14168 M:      Yotam Gigi <yotam.gi@gmail.com>
14169 S:      Maintained
14170 F:      include/net/psample.h
14171 F:      include/uapi/linux/psample.h
14172 F:      net/psample
14173
14174 PSTORE FILESYSTEM
14175 M:      Kees Cook <keescook@chromium.org>
14176 M:      Anton Vorontsov <anton@enomsg.org>
14177 M:      Colin Cross <ccross@android.com>
14178 M:      Tony Luck <tony.luck@intel.com>
14179 S:      Maintained
14180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
14181 F:      Documentation/admin-guide/ramoops.rst
14182 F:      Documentation/admin-guide/pstore-blk.rst
14183 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
14184 F:      drivers/acpi/apei/erst.c
14185 F:      drivers/firmware/efi/efi-pstore.c
14186 F:      fs/pstore/
14187 F:      include/linux/pstore*
14188 K:      \b(pstore|ramoops)
14189
14190 PTP HARDWARE CLOCK SUPPORT
14191 M:      Richard Cochran <richardcochran@gmail.com>
14192 L:      netdev@vger.kernel.org
14193 S:      Maintained
14194 W:      http://linuxptp.sourceforge.net/
14195 F:      Documentation/ABI/testing/sysfs-ptp
14196 F:      Documentation/driver-api/ptp.rst
14197 F:      drivers/net/phy/dp83640*
14198 F:      drivers/ptp/*
14199 F:      include/linux/ptp_cl*
14200
14201 PTRACE SUPPORT
14202 M:      Oleg Nesterov <oleg@redhat.com>
14203 S:      Maintained
14204 F:      arch/*/*/ptrace*.c
14205 F:      arch/*/include/asm/ptrace*.h
14206 F:      arch/*/ptrace*.c
14207 F:      include/asm-generic/syscall.h
14208 F:      include/linux/ptrace.h
14209 F:      include/linux/regset.h
14210 F:      include/linux/tracehook.h
14211 F:      include/uapi/linux/ptrace.h
14212 F:      include/uapi/linux/ptrace.h
14213 F:      kernel/ptrace.c
14214
14215 PULSE8-CEC DRIVER
14216 M:      Hans Verkuil <hverkuil@xs4all.nl>
14217 L:      linux-media@vger.kernel.org
14218 S:      Maintained
14219 T:      git git://linuxtv.org/media_tree.git
14220 F:      Documentation/admin-guide/media/pulse8-cec.rst
14221 F:      drivers/media/cec/usb/pulse8/
14222
14223 PVRUSB2 VIDEO4LINUX DRIVER
14224 M:      Mike Isely <isely@pobox.com>
14225 L:      pvrusb2@isely.net       (subscribers-only)
14226 L:      linux-media@vger.kernel.org
14227 S:      Maintained
14228 W:      http://www.isely.net/pvrusb2/
14229 T:      git git://linuxtv.org/media_tree.git
14230 F:      Documentation/driver-api/media/drivers/pvrusb2*
14231 F:      drivers/media/usb/pvrusb2/
14232
14233 PWC WEBCAM DRIVER
14234 M:      Hans Verkuil <hverkuil@xs4all.nl>
14235 L:      linux-media@vger.kernel.org
14236 S:      Odd Fixes
14237 T:      git git://linuxtv.org/media_tree.git
14238 F:      drivers/media/usb/pwc/*
14239 F:      include/trace/events/pwc.h
14240
14241 PWM FAN DRIVER
14242 M:      Kamil Debski <kamil@wypas.org>
14243 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14244 L:      linux-hwmon@vger.kernel.org
14245 S:      Supported
14246 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
14247 F:      Documentation/hwmon/pwm-fan.rst
14248 F:      drivers/hwmon/pwm-fan.c
14249
14250 PWM IR Transmitter
14251 M:      Sean Young <sean@mess.org>
14252 L:      linux-media@vger.kernel.org
14253 S:      Maintained
14254 F:      drivers/media/rc/pwm-ir-tx.c
14255
14256 PWM SUBSYSTEM
14257 M:      Thierry Reding <thierry.reding@gmail.com>
14258 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
14259 M:      Lee Jones <lee.jones@linaro.org>
14260 L:      linux-pwm@vger.kernel.org
14261 S:      Maintained
14262 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
14263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
14264 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
14265 F:      Documentation/devicetree/bindings/pwm/
14266 F:      Documentation/driver-api/pwm.rst
14267 F:      drivers/gpio/gpio-mvebu.c
14268 F:      drivers/pwm/
14269 F:      drivers/video/backlight/pwm_bl.c
14270 F:      include/linux/pwm.h
14271 F:      include/linux/pwm_backlight.h
14272 K:      pwm_(config|apply_state|ops)
14273
14274 PXA GPIO DRIVER
14275 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14276 L:      linux-gpio@vger.kernel.org
14277 S:      Maintained
14278 F:      drivers/gpio/gpio-pxa.c
14279
14280 PXA MMCI DRIVER
14281 S:      Orphan
14282
14283 PXA RTC DRIVER
14284 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14285 L:      linux-rtc@vger.kernel.org
14286 S:      Maintained
14287
14288 PXA2xx/PXA3xx SUPPORT
14289 M:      Daniel Mack <daniel@zonque.org>
14290 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
14291 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14292 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14293 S:      Maintained
14294 T:      git git://github.com/hzhuang1/linux.git
14295 T:      git git://github.com/rjarzmik/linux.git
14296 F:      arch/arm/boot/dts/pxa*
14297 F:      arch/arm/mach-pxa/
14298 F:      drivers/dma/pxa*
14299 F:      drivers/pcmcia/pxa2xx*
14300 F:      drivers/pinctrl/pxa/
14301 F:      drivers/spi/spi-pxa2xx*
14302 F:      drivers/usb/gadget/udc/pxa2*
14303 F:      include/sound/pxa2xx-lib.h
14304 F:      sound/arm/pxa*
14305 F:      sound/soc/pxa/
14306
14307 QAT DRIVER
14308 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
14309 L:      qat-linux@intel.com
14310 S:      Supported
14311 F:      drivers/crypto/qat/
14312
14313 QCOM AUDIO (ASoC) DRIVERS
14314 M:      Patrick Lai <plai@codeaurora.org>
14315 M:      Banajit Goswami <bgoswami@codeaurora.org>
14316 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14317 S:      Supported
14318 F:      sound/soc/qcom/
14319
14320 QCOM IPA DRIVER
14321 M:      Alex Elder <elder@kernel.org>
14322 L:      netdev@vger.kernel.org
14323 S:      Supported
14324 F:      drivers/net/ipa/
14325
14326 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
14327 M:      Gabriel Somlo <somlo@cmu.edu>
14328 M:      "Michael S. Tsirkin" <mst@redhat.com>
14329 L:      qemu-devel@nongnu.org
14330 S:      Maintained
14331 F:      drivers/firmware/qemu_fw_cfg.c
14332 F:      include/uapi/linux/qemu_fw_cfg.h
14333
14334 QIB DRIVER
14335 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14336 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14337 L:      linux-rdma@vger.kernel.org
14338 S:      Supported
14339 F:      drivers/infiniband/hw/qib/
14340
14341 QLOGIC QL41xxx FCOE DRIVER
14342 M:      Saurav Kashyap <skashyap@marvell.com>
14343 M:      Javed Hasan <jhasan@marvell.com>
14344 M:      GR-QLogic-Storage-Upstream@marvell.com
14345 L:      linux-scsi@vger.kernel.org
14346 S:      Supported
14347 F:      drivers/scsi/qedf/
14348
14349 QLOGIC QL41xxx ISCSI DRIVER
14350 M:      Nilesh Javali <njavali@marvell.com>
14351 M:      Manish Rangankar <mrangankar@marvell.com>
14352 M:      GR-QLogic-Storage-Upstream@marvell.com
14353 L:      linux-scsi@vger.kernel.org
14354 S:      Supported
14355 F:      drivers/scsi/qedi/
14356
14357 QLOGIC QL4xxx ETHERNET DRIVER
14358 M:      Ariel Elior <aelior@marvell.com>
14359 M:      GR-everest-linux-l2@marvell.com
14360 L:      netdev@vger.kernel.org
14361 S:      Supported
14362 F:      drivers/net/ethernet/qlogic/qed/
14363 F:      drivers/net/ethernet/qlogic/qede/
14364 F:      include/linux/qed/
14365
14366 QLOGIC QL4xxx RDMA DRIVER
14367 M:      Michal Kalderon <mkalderon@marvell.com>
14368 M:      Ariel Elior <aelior@marvell.com>
14369 L:      linux-rdma@vger.kernel.org
14370 S:      Supported
14371 F:      drivers/infiniband/hw/qedr/
14372 F:      include/uapi/rdma/qedr-abi.h
14373
14374 QLOGIC QLA1280 SCSI DRIVER
14375 M:      Michael Reed <mdr@sgi.com>
14376 L:      linux-scsi@vger.kernel.org
14377 S:      Maintained
14378 F:      drivers/scsi/qla1280.[ch]
14379
14380 QLOGIC QLA2XXX FC-SCSI DRIVER
14381 M:      Nilesh Javali <njavali@marvell.com>
14382 M:      GR-QLogic-Storage-Upstream@marvell.com
14383 L:      linux-scsi@vger.kernel.org
14384 S:      Supported
14385 F:      drivers/scsi/qla2xxx/
14386
14387 QLOGIC QLA3XXX NETWORK DRIVER
14388 M:      GR-Linux-NIC-Dev@marvell.com
14389 L:      netdev@vger.kernel.org
14390 S:      Supported
14391 F:      drivers/net/ethernet/qlogic/qla3xxx.*
14392
14393 QLOGIC QLA4XXX iSCSI DRIVER
14394 M:      Nilesh Javali <njavali@marvell.com>
14395 M:      Manish Rangankar <mrangankar@marvell.com>
14396 M:      GR-QLogic-Storage-Upstream@marvell.com
14397 L:      linux-scsi@vger.kernel.org
14398 S:      Supported
14399 F:      drivers/scsi/qla4xxx/
14400
14401 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
14402 M:      Shahed Shaikh <shshaikh@marvell.com>
14403 M:      Manish Chopra <manishc@marvell.com>
14404 M:      GR-Linux-NIC-Dev@marvell.com
14405 L:      netdev@vger.kernel.org
14406 S:      Supported
14407 F:      drivers/net/ethernet/qlogic/qlcnic/
14408
14409 QLOGIC QLGE 10Gb ETHERNET DRIVER
14410 M:      Manish Chopra <manishc@marvell.com>
14411 M:      GR-Linux-NIC-Dev@marvell.com
14412 L:      netdev@vger.kernel.org
14413 S:      Supported
14414 F:      drivers/staging/qlge/
14415
14416 QM1D1B0004 MEDIA DRIVER
14417 M:      Akihiro Tsukada <tskd08@gmail.com>
14418 L:      linux-media@vger.kernel.org
14419 S:      Odd Fixes
14420 F:      drivers/media/tuners/qm1d1b0004*
14421
14422 QM1D1C0042 MEDIA DRIVER
14423 M:      Akihiro Tsukada <tskd08@gmail.com>
14424 L:      linux-media@vger.kernel.org
14425 S:      Odd Fixes
14426 F:      drivers/media/tuners/qm1d1c0042*
14427
14428 QNX4 FILESYSTEM
14429 M:      Anders Larsen <al@alarsen.net>
14430 S:      Maintained
14431 W:      http://www.alarsen.net/linux/qnx4fs/
14432 F:      fs/qnx4/
14433 F:      include/uapi/linux/qnx4_fs.h
14434 F:      include/uapi/linux/qnxtypes.h
14435
14436 QORIQ DPAA2 FSL-MC BUS DRIVER
14437 M:      Stuart Yoder <stuyoder@gmail.com>
14438 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
14439 L:      linux-kernel@vger.kernel.org
14440 S:      Maintained
14441 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
14442 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
14443 F:      drivers/bus/fsl-mc/
14444
14445 QT1010 MEDIA DRIVER
14446 M:      Antti Palosaari <crope@iki.fi>
14447 L:      linux-media@vger.kernel.org
14448 S:      Maintained
14449 W:      https://linuxtv.org
14450 W:      http://palosaari.fi/linux/
14451 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14452 T:      git git://linuxtv.org/anttip/media_tree.git
14453 F:      drivers/media/tuners/qt1010*
14454
14455 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
14456 M:      Kalle Valo <kvalo@codeaurora.org>
14457 L:      ath10k@lists.infradead.org
14458 S:      Supported
14459 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
14460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14461 F:      drivers/net/wireless/ath/ath10k/
14462
14463 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
14464 M:      Kalle Valo <kvalo@codeaurora.org>
14465 L:      ath11k@lists.infradead.org
14466 S:      Supported
14467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14468 F:      drivers/net/wireless/ath/ath11k/
14469
14470 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
14471 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
14472 L:      linux-wireless@vger.kernel.org
14473 S:      Supported
14474 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
14475 F:      drivers/net/wireless/ath/ath9k/
14476
14477 QUALCOMM CAMERA SUBSYSTEM DRIVER
14478 M:      Robert Foss <robert.foss@linaro.org>
14479 M:      Todor Tomov <todor.too@gmail.com>
14480 L:      linux-media@vger.kernel.org
14481 S:      Maintained
14482 F:      Documentation/admin-guide/media/qcom_camss.rst
14483 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
14484 F:      drivers/media/platform/qcom/camss/
14485
14486 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
14487 M:      Niklas Cassel <nks@flawful.org>
14488 L:      linux-pm@vger.kernel.org
14489 L:      linux-arm-msm@vger.kernel.org
14490 S:      Maintained
14491 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
14492 F:      drivers/soc/qcom/cpr.c
14493
14494 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
14495 M:      Ilia Lin <ilia.lin@kernel.org>
14496 L:      linux-pm@vger.kernel.org
14497 S:      Maintained
14498 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
14499 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
14500
14501 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
14502 M:      Timur Tabi <timur@kernel.org>
14503 L:      netdev@vger.kernel.org
14504 S:      Maintained
14505 F:      drivers/net/ethernet/qualcomm/emac/
14506
14507 QUALCOMM ETHQOS ETHERNET DRIVER
14508 M:      Vinod Koul <vkoul@kernel.org>
14509 L:      netdev@vger.kernel.org
14510 S:      Maintained
14511 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
14512 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
14513
14514 QUALCOMM GENERIC INTERFACE I2C DRIVER
14515 M:      Akash Asthana <akashast@codeaurora.org>
14516 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
14517 L:      linux-i2c@vger.kernel.org
14518 L:      linux-arm-msm@vger.kernel.org
14519 S:      Supported
14520 F:      drivers/i2c/busses/i2c-qcom-geni.c
14521
14522 QUALCOMM HEXAGON ARCHITECTURE
14523 M:      Brian Cain <bcain@codeaurora.org>
14524 L:      linux-hexagon@vger.kernel.org
14525 S:      Supported
14526 F:      arch/hexagon/
14527
14528 QUALCOMM HIDMA DRIVER
14529 M:      Sinan Kaya <okaya@kernel.org>
14530 L:      linux-arm-kernel@lists.infradead.org
14531 L:      linux-arm-msm@vger.kernel.org
14532 L:      dmaengine@vger.kernel.org
14533 S:      Supported
14534 F:      drivers/dma/qcom/hidma*
14535
14536 QUALCOMM I2C CCI DRIVER
14537 M:      Loic Poulain <loic.poulain@linaro.org>
14538 M:      Robert Foss <robert.foss@linaro.org>
14539 L:      linux-i2c@vger.kernel.org
14540 L:      linux-arm-msm@vger.kernel.org
14541 S:      Maintained
14542 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
14543 F:      drivers/i2c/busses/i2c-qcom-cci.c
14544
14545 QUALCOMM IOMMU
14546 M:      Rob Clark <robdclark@gmail.com>
14547 L:      iommu@lists.linux-foundation.org
14548 L:      linux-arm-msm@vger.kernel.org
14549 S:      Maintained
14550 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
14551
14552 QUALCOMM IPCC MAILBOX DRIVER
14553 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
14554 L:      linux-arm-msm@vger.kernel.org
14555 S:      Supported
14556 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
14557 F:      drivers/mailbox/qcom-ipcc.c
14558 F:      include/dt-bindings/mailbox/qcom-ipcc.h
14559
14560 QUALCOMM RMNET DRIVER
14561 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
14562 M:      Sean Tranchetti <stranche@codeaurora.org>
14563 L:      netdev@vger.kernel.org
14564 S:      Maintained
14565 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
14566 F:      drivers/net/ethernet/qualcomm/rmnet/
14567 F:      include/linux/if_rmnet.h
14568
14569 QUALCOMM TSENS THERMAL DRIVER
14570 M:      Amit Kucheria <amitk@kernel.org>
14571 L:      linux-pm@vger.kernel.org
14572 L:      linux-arm-msm@vger.kernel.org
14573 S:      Maintained
14574 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14575 F:      drivers/thermal/qcom/
14576
14577 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14578 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
14579 L:      linux-media@vger.kernel.org
14580 L:      linux-arm-msm@vger.kernel.org
14581 S:      Maintained
14582 T:      git git://linuxtv.org/media_tree.git
14583 F:      Documentation/devicetree/bindings/media/*venus*
14584 F:      drivers/media/platform/qcom/venus/
14585
14586 QUALCOMM WCN36XX WIRELESS DRIVER
14587 M:      Kalle Valo <kvalo@codeaurora.org>
14588 L:      wcn36xx@lists.infradead.org
14589 S:      Supported
14590 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
14591 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
14592 F:      drivers/net/wireless/ath/wcn36xx/
14593
14594 QUANTENNA QTNFMAC WIRELESS DRIVER
14595 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
14596 R:      Sergey Matyukevich <geomatsi@gmail.com>
14597 L:      linux-wireless@vger.kernel.org
14598 S:      Maintained
14599 F:      drivers/net/wireless/quantenna
14600
14601 RADEON and AMDGPU DRM DRIVERS
14602 M:      Alex Deucher <alexander.deucher@amd.com>
14603 M:      Christian König <christian.koenig@amd.com>
14604 L:      amd-gfx@lists.freedesktop.org
14605 S:      Supported
14606 T:      git git://people.freedesktop.org/~agd5f/linux
14607 F:      drivers/gpu/drm/amd/
14608 F:      drivers/gpu/drm/radeon/
14609 F:      include/uapi/drm/amdgpu_drm.h
14610 F:      include/uapi/drm/radeon_drm.h
14611
14612 RADEON FRAMEBUFFER DISPLAY DRIVER
14613 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
14614 L:      linux-fbdev@vger.kernel.org
14615 S:      Maintained
14616 F:      drivers/video/fbdev/aty/radeon*
14617 F:      include/uapi/linux/radeonfb.h
14618
14619 RADIOSHARK RADIO DRIVER
14620 M:      Hans Verkuil <hverkuil@xs4all.nl>
14621 L:      linux-media@vger.kernel.org
14622 S:      Maintained
14623 T:      git git://linuxtv.org/media_tree.git
14624 F:      drivers/media/radio/radio-shark.c
14625
14626 RADIOSHARK2 RADIO DRIVER
14627 M:      Hans Verkuil <hverkuil@xs4all.nl>
14628 L:      linux-media@vger.kernel.org
14629 S:      Maintained
14630 T:      git git://linuxtv.org/media_tree.git
14631 F:      drivers/media/radio/radio-shark2.c
14632 F:      drivers/media/radio/radio-tea5777.c
14633
14634 RADOS BLOCK DEVICE (RBD)
14635 M:      Ilya Dryomov <idryomov@gmail.com>
14636 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
14637 L:      ceph-devel@vger.kernel.org
14638 S:      Supported
14639 W:      http://ceph.com/
14640 T:      git git://github.com/ceph/ceph-client.git
14641 F:      Documentation/ABI/testing/sysfs-bus-rbd
14642 F:      drivers/block/rbd.c
14643 F:      drivers/block/rbd_types.h
14644
14645 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14646 M:      Paul Mackerras <paulus@samba.org>
14647 L:      linux-fbdev@vger.kernel.org
14648 S:      Maintained
14649 F:      drivers/video/fbdev/aty/aty128fb.c
14650
14651 RAINSHADOW-CEC DRIVER
14652 M:      Hans Verkuil <hverkuil@xs4all.nl>
14653 L:      linux-media@vger.kernel.org
14654 S:      Maintained
14655 T:      git git://linuxtv.org/media_tree.git
14656 F:      drivers/media/cec/usb/rainshadow/
14657
14658 RALINK MIPS ARCHITECTURE
14659 M:      John Crispin <john@phrozen.org>
14660 L:      linux-mips@vger.kernel.org
14661 S:      Maintained
14662 F:      arch/mips/ralink
14663
14664 RALINK RT2X00 WIRELESS LAN DRIVER
14665 M:      Stanislaw Gruszka <stf_xl@wp.pl>
14666 M:      Helmut Schaa <helmut.schaa@googlemail.com>
14667 L:      linux-wireless@vger.kernel.org
14668 S:      Maintained
14669 F:      drivers/net/wireless/ralink/rt2x00/
14670
14671 RAMDISK RAM BLOCK DEVICE DRIVER
14672 M:      Jens Axboe <axboe@kernel.dk>
14673 S:      Maintained
14674 F:      Documentation/admin-guide/blockdev/ramdisk.rst
14675 F:      drivers/block/brd.c
14676
14677 RANCHU VIRTUAL BOARD FOR MIPS
14678 M:      Miodrag Dinic <miodrag.dinic@mips.com>
14679 L:      linux-mips@vger.kernel.org
14680 S:      Supported
14681 F:      arch/mips/configs/generic/board-ranchu.config
14682 F:      arch/mips/generic/board-ranchu.c
14683
14684 RANDOM NUMBER DRIVER
14685 M:      "Theodore Ts'o" <tytso@mit.edu>
14686 S:      Maintained
14687 F:      drivers/char/random.c
14688
14689 RAPIDIO SUBSYSTEM
14690 M:      Matt Porter <mporter@kernel.crashing.org>
14691 M:      Alexandre Bounine <alex.bou9@gmail.com>
14692 S:      Maintained
14693 F:      drivers/rapidio/
14694
14695 RAS INFRASTRUCTURE
14696 M:      Tony Luck <tony.luck@intel.com>
14697 M:      Borislav Petkov <bp@alien8.de>
14698 L:      linux-edac@vger.kernel.org
14699 S:      Maintained
14700 F:      Documentation/admin-guide/ras.rst
14701 F:      drivers/ras/
14702 F:      include/linux/ras.h
14703 F:      include/ras/ras_event.h
14704
14705 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14706 L:      linux-wireless@vger.kernel.org
14707 S:      Orphan
14708 F:      drivers/net/wireless/ray*
14709
14710 RC-CORE / LIRC FRAMEWORK
14711 M:      Sean Young <sean@mess.org>
14712 L:      linux-media@vger.kernel.org
14713 S:      Maintained
14714 W:      http://linuxtv.org
14715 T:      git git://linuxtv.org/media_tree.git
14716 F:      Documentation/driver-api/media/rc-core.rst
14717 F:      Documentation/userspace-api/media/rc/
14718 F:      drivers/media/rc/
14719 F:      include/media/rc-map.h
14720 F:      include/media/rc-core.h
14721 F:      include/uapi/linux/lirc.h
14722
14723 RCMM REMOTE CONTROLS DECODER
14724 M:      Patrick Lerda <patrick9876@free.fr>
14725 S:      Maintained
14726 F:      drivers/media/rc/ir-rcmm-decoder.c
14727
14728 RCUTORTURE TEST FRAMEWORK
14729 M:      "Paul E. McKenney" <paulmck@kernel.org>
14730 M:      Josh Triplett <josh@joshtriplett.org>
14731 R:      Steven Rostedt <rostedt@goodmis.org>
14732 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14733 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14734 L:      rcu@vger.kernel.org
14735 S:      Supported
14736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14737 F:      tools/testing/selftests/rcutorture
14738
14739 RDACM20 Camera Sensor
14740 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
14741 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
14742 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
14743 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
14744 L:      linux-media@vger.kernel.org
14745 S:      Maintained
14746 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
14747 F:      drivers/media/i2c/max9271.c
14748 F:      drivers/media/i2c/max9271.h
14749 F:      drivers/media/i2c/rdacm20.c
14750
14751 RDC R-321X SoC
14752 M:      Florian Fainelli <florian@openwrt.org>
14753 S:      Maintained
14754
14755 RDC R6040 FAST ETHERNET DRIVER
14756 M:      Florian Fainelli <f.fainelli@gmail.com>
14757 L:      netdev@vger.kernel.org
14758 S:      Maintained
14759 F:      drivers/net/ethernet/rdc/r6040.c
14760
14761 RDMAVT - RDMA verbs software
14762 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14763 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14764 L:      linux-rdma@vger.kernel.org
14765 S:      Supported
14766 F:      drivers/infiniband/sw/rdmavt
14767
14768 RDS - RELIABLE DATAGRAM SOCKETS
14769 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
14770 L:      netdev@vger.kernel.org
14771 L:      linux-rdma@vger.kernel.org
14772 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
14773 S:      Supported
14774 W:      https://oss.oracle.com/projects/rds/
14775 F:      Documentation/networking/rds.rst
14776 F:      net/rds/
14777
14778 RDT - RESOURCE ALLOCATION
14779 M:      Fenghua Yu <fenghua.yu@intel.com>
14780 M:      Reinette Chatre <reinette.chatre@intel.com>
14781 L:      linux-kernel@vger.kernel.org
14782 S:      Supported
14783 F:      Documentation/x86/resctrl*
14784 F:      arch/x86/include/asm/resctrl.h
14785 F:      arch/x86/kernel/cpu/resctrl/
14786 F:      tools/testing/selftests/resctrl/
14787
14788 READ-COPY UPDATE (RCU)
14789 M:      "Paul E. McKenney" <paulmck@kernel.org>
14790 M:      Josh Triplett <josh@joshtriplett.org>
14791 R:      Steven Rostedt <rostedt@goodmis.org>
14792 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14793 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14794 R:      Joel Fernandes <joel@joelfernandes.org>
14795 L:      rcu@vger.kernel.org
14796 S:      Supported
14797 W:      http://www.rdrop.com/users/paulmck/RCU/
14798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14799 F:      Documentation/RCU/
14800 F:      include/linux/rcu*
14801 F:      kernel/rcu/
14802 X:      Documentation/RCU/torture.rst
14803 X:      include/linux/srcu*.h
14804 X:      kernel/rcu/srcu*.c
14805
14806 REAL TIME CLOCK (RTC) SUBSYSTEM
14807 M:      Alessandro Zummo <a.zummo@towertech.it>
14808 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14809 L:      linux-rtc@vger.kernel.org
14810 S:      Maintained
14811 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
14812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
14813 F:      Documentation/admin-guide/rtc.rst
14814 F:      Documentation/devicetree/bindings/rtc/
14815 F:      drivers/rtc/
14816 F:      include/linux/platform_data/rtc-*
14817 F:      include/linux/rtc.h
14818 F:      include/linux/rtc/
14819 F:      include/uapi/linux/rtc.h
14820 F:      tools/testing/selftests/rtc/
14821
14822 REALTEK AUDIO CODECS
14823 M:      Oder Chiou <oder_chiou@realtek.com>
14824 S:      Maintained
14825 F:      include/sound/rt*.h
14826 F:      sound/soc/codecs/rt*
14827
14828 REALTEK RTL83xx SMI DSA ROUTER CHIPS
14829 M:      Linus Walleij <linus.walleij@linaro.org>
14830 S:      Maintained
14831 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
14832 F:      drivers/net/dsa/realtek-smi*
14833 F:      drivers/net/dsa/rtl83*
14834
14835 REALTEK WIRELESS DRIVER (rtlwifi family)
14836 M:      Ping-Ke Shih <pkshih@realtek.com>
14837 L:      linux-wireless@vger.kernel.org
14838 S:      Maintained
14839 W:      https://wireless.wiki.kernel.org/
14840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14841 F:      drivers/net/wireless/realtek/rtlwifi/
14842
14843 REALTEK WIRELESS DRIVER (rtw88)
14844 M:      Yan-Hsuan Chuang <yhchuang@realtek.com>
14845 L:      linux-wireless@vger.kernel.org
14846 S:      Maintained
14847 F:      drivers/net/wireless/realtek/rtw88/
14848
14849 REDPINE WIRELESS DRIVER
14850 M:      Amitkumar Karwar <amitkarwar@gmail.com>
14851 M:      Siva Rebbagondla <siva8118@gmail.com>
14852 L:      linux-wireless@vger.kernel.org
14853 S:      Maintained
14854 F:      drivers/net/wireless/rsi/
14855
14856 REGISTER MAP ABSTRACTION
14857 M:      Mark Brown <broonie@kernel.org>
14858 L:      linux-kernel@vger.kernel.org
14859 S:      Supported
14860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
14861 F:      Documentation/devicetree/bindings/regmap/
14862 F:      drivers/base/regmap/
14863 F:      include/linux/regmap.h
14864
14865 REISERFS FILE SYSTEM
14866 L:      reiserfs-devel@vger.kernel.org
14867 S:      Supported
14868 F:      fs/reiserfs/
14869
14870 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
14871 M:      Ohad Ben-Cohen <ohad@wizery.com>
14872 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14873 L:      linux-remoteproc@vger.kernel.org
14874 S:      Maintained
14875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
14876 F:      Documentation/ABI/testing/sysfs-class-remoteproc
14877 F:      Documentation/devicetree/bindings/remoteproc/
14878 F:      Documentation/staging/remoteproc.rst
14879 F:      drivers/remoteproc/
14880 F:      include/linux/remoteproc.h
14881 F:      include/linux/remoteproc/
14882
14883 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
14884 M:      Ohad Ben-Cohen <ohad@wizery.com>
14885 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14886 L:      linux-remoteproc@vger.kernel.org
14887 S:      Maintained
14888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
14889 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
14890 F:      Documentation/staging/rpmsg.rst
14891 F:      drivers/rpmsg/
14892 F:      include/linux/rpmsg.h
14893 F:      include/linux/rpmsg/
14894 F:      include/uapi/linux/rpmsg.h
14895 F:      samples/rpmsg/
14896
14897 RENESAS CLOCK DRIVERS
14898 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14899 L:      linux-renesas-soc@vger.kernel.org
14900 S:      Supported
14901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
14902 F:      Documentation/devicetree/bindings/clock/renesas,*
14903 F:      drivers/clk/renesas/
14904
14905 RENESAS EMEV2 I2C DRIVER
14906 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
14907 S:      Supported
14908 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
14909 F:      drivers/i2c/busses/i2c-emev2.c
14910
14911 RENESAS ETHERNET DRIVERS
14912 R:      Sergei Shtylyov <sergei.shtylyov@gmail.com>
14913 L:      netdev@vger.kernel.org
14914 L:      linux-renesas-soc@vger.kernel.org
14915 F:      Documentation/devicetree/bindings/net/renesas,*.txt
14916 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
14917 F:      drivers/net/ethernet/renesas/
14918 F:      include/linux/sh_eth.h
14919
14920 RENESAS R-CAR GYROADC DRIVER
14921 M:      Marek Vasut <marek.vasut@gmail.com>
14922 L:      linux-iio@vger.kernel.org
14923 S:      Supported
14924 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
14925 F:      drivers/iio/adc/rcar-gyroadc.c
14926
14927 RENESAS R-CAR I2C DRIVERS
14928 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
14929 S:      Supported
14930 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
14931 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
14932 F:      drivers/i2c/busses/i2c-rcar.c
14933 F:      drivers/i2c/busses/i2c-sh_mobile.c
14934
14935 RENESAS R-CAR THERMAL DRIVERS
14936 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
14937 L:      linux-renesas-soc@vger.kernel.org
14938 S:      Supported
14939 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
14940 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
14941 F:      drivers/thermal/rcar_gen3_thermal.c
14942 F:      drivers/thermal/rcar_thermal.c
14943
14944 RENESAS RIIC DRIVER
14945 M:      Chris Brandt <chris.brandt@renesas.com>
14946 S:      Supported
14947 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
14948 F:      drivers/i2c/busses/i2c-riic.c
14949
14950 RENESAS USB PHY DRIVER
14951 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14952 L:      linux-renesas-soc@vger.kernel.org
14953 S:      Maintained
14954 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
14955
14956 RESET CONTROLLER FRAMEWORK
14957 M:      Philipp Zabel <p.zabel@pengutronix.de>
14958 S:      Maintained
14959 T:      git git://git.pengutronix.de/git/pza/linux
14960 F:      Documentation/devicetree/bindings/reset/
14961 F:      drivers/reset/
14962 F:      include/dt-bindings/reset/
14963 F:      include/linux/reset-controller.h
14964 F:      include/linux/reset.h
14965 F:      include/linux/reset/
14966 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
14967
14968 RESTARTABLE SEQUENCES SUPPORT
14969 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14970 M:      Peter Zijlstra <peterz@infradead.org>
14971 M:      "Paul E. McKenney" <paulmck@kernel.org>
14972 M:      Boqun Feng <boqun.feng@gmail.com>
14973 L:      linux-kernel@vger.kernel.org
14974 S:      Supported
14975 F:      include/trace/events/rseq.h
14976 F:      include/uapi/linux/rseq.h
14977 F:      kernel/rseq.c
14978 F:      tools/testing/selftests/rseq/
14979
14980 RFKILL
14981 M:      Johannes Berg <johannes@sipsolutions.net>
14982 L:      linux-wireless@vger.kernel.org
14983 S:      Maintained
14984 W:      https://wireless.wiki.kernel.org/
14985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
14986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
14987 F:      Documentation/ABI/stable/sysfs-class-rfkill
14988 F:      Documentation/driver-api/rfkill.rst
14989 F:      include/linux/rfkill.h
14990 F:      include/uapi/linux/rfkill.h
14991 F:      net/rfkill/
14992
14993 RHASHTABLE
14994 M:      Thomas Graf <tgraf@suug.ch>
14995 M:      Herbert Xu <herbert@gondor.apana.org.au>
14996 L:      netdev@vger.kernel.org
14997 S:      Maintained
14998 F:      include/linux/rhashtable-types.h
14999 F:      include/linux/rhashtable.h
15000 F:      lib/rhashtable.c
15001 F:      lib/test_rhashtable.c
15002
15003 RICOH R5C592 MEMORYSTICK DRIVER
15004 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15005 S:      Maintained
15006 F:      drivers/memstick/host/r592.*
15007
15008 RICOH SMARTMEDIA/XD DRIVER
15009 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15010 S:      Maintained
15011 F:      drivers/mtd/nand/raw/r852.c
15012 F:      drivers/mtd/nand/raw/r852.h
15013
15014 RISC-V ARCHITECTURE
15015 M:      Paul Walmsley <paul.walmsley@sifive.com>
15016 M:      Palmer Dabbelt <palmer@dabbelt.com>
15017 M:      Albert Ou <aou@eecs.berkeley.edu>
15018 L:      linux-riscv@lists.infradead.org
15019 S:      Supported
15020 P:      Documentation/riscv/patch-acceptance.rst
15021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
15022 F:      arch/riscv/
15023 N:      riscv
15024 K:      riscv
15025
15026 RNBD BLOCK DRIVERS
15027 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
15028 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15029 L:      linux-block@vger.kernel.org
15030 S:      Maintained
15031 F:      drivers/block/rnbd/
15032
15033 ROCCAT DRIVERS
15034 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
15035 S:      Maintained
15036 W:      http://sourceforge.net/projects/roccat/
15037 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
15038 F:      drivers/hid/hid-roccat*
15039 F:      include/linux/hid-roccat*
15040
15041 ROCKCHIP ISP V1 DRIVER
15042 M:      Helen Koike <helen.koike@collabora.com>
15043 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
15044 L:      linux-media@vger.kernel.org
15045 L:      linux-rockchip@lists.infradead.org
15046 S:      Maintained
15047 F:      Documentation/admin-guide/media/rkisp1.rst
15048 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
15049 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
15050 F:      drivers/media/platform/rockchip/rkisp1
15051 F:      include/uapi/linux/rkisp1-config.h
15052
15053 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
15054 M:      Jacob Chen <jacob-chen@iotwrt.com>
15055 M:      Ezequiel Garcia <ezequiel@collabora.com>
15056 L:      linux-media@vger.kernel.org
15057 L:      linux-rockchip@lists.infradead.org
15058 S:      Maintained
15059 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
15060 F:      drivers/media/platform/rockchip/rga/
15061
15062 ROCKCHIP VIDEO DECODER DRIVER
15063 M:      Ezequiel Garcia <ezequiel@collabora.com>
15064 L:      linux-media@vger.kernel.org
15065 L:      linux-rockchip@lists.infradead.org
15066 S:      Maintained
15067 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
15068 F:      drivers/staging/media/rkvdec/
15069
15070 ROCKER DRIVER
15071 M:      Jiri Pirko <jiri@resnulli.us>
15072 L:      netdev@vger.kernel.org
15073 S:      Supported
15074 F:      drivers/net/ethernet/rocker/
15075
15076 ROCKETPORT DRIVER
15077 S:      Maintained
15078 W:      http://www.comtrol.com
15079 F:      Documentation/driver-api/serial/rocket.rst
15080 F:      drivers/tty/rocket*
15081
15082 ROCKETPORT EXPRESS/INFINITY DRIVER
15083 M:      Kevin Cernekee <cernekee@gmail.com>
15084 L:      linux-serial@vger.kernel.org
15085 S:      Odd Fixes
15086 F:      drivers/tty/serial/rp2.*
15087
15088 ROHM BD99954 CHARGER IC
15089 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15090 L:      linux-power@fi.rohmeurope.com
15091 S:      Supported
15092 F:      drivers/power/supply/bd99954-charger.c
15093 F:      drivers/power/supply/bd99954-charger.h
15094
15095 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
15096 M:      Tomasz Duszynski <tduszyns@gmail.com>
15097 S:      Maintained
15098 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
15099 F:      drivers/iio/light/bh1750.c
15100
15101 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
15102 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15103 L:      linux-kernel@vger.kernel.org
15104 L:      linux-renesas-soc@vger.kernel.org
15105 S:      Supported
15106 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
15107 F:      drivers/gpio/gpio-bd9571mwv.c
15108 F:      drivers/mfd/bd9571mwv.c
15109 F:      drivers/regulator/bd9571mwv-regulator.c
15110 F:      include/linux/mfd/bd9571mwv.h
15111
15112 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
15113 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15114 L:      linux-power@fi.rohmeurope.com
15115 S:      Supported
15116 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
15117 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
15118 F:      drivers/clk/clk-bd718x7.c
15119 F:      drivers/gpio/gpio-bd70528.c
15120 F:      drivers/gpio/gpio-bd71828.c
15121 F:      drivers/mfd/rohm-bd70528.c
15122 F:      drivers/mfd/rohm-bd71828.c
15123 F:      drivers/mfd/rohm-bd718x7.c
15124 F:      drivers/power/supply/bd70528-charger.c
15125 F:      drivers/regulator/bd70528-regulator.c
15126 F:      drivers/regulator/bd71828-regulator.c
15127 F:      drivers/regulator/bd718x7-regulator.c
15128 F:      drivers/regulator/rohm-regulator.c
15129 F:      drivers/rtc/rtc-bd70528.c
15130 F:      drivers/watchdog/bd70528_wdt.c
15131 F:      include/linux/mfd/rohm-bd70528.h
15132 F:      include/linux/mfd/rohm-bd71828.h
15133 F:      include/linux/mfd/rohm-bd718x7.h
15134 F:      include/linux/mfd/rohm-generic.h
15135 F:      include/linux/mfd/rohm-shared.h
15136
15137 ROSE NETWORK LAYER
15138 M:      Ralf Baechle <ralf@linux-mips.org>
15139 L:      linux-hams@vger.kernel.org
15140 S:      Maintained
15141 W:      http://www.linux-ax25.org/
15142 F:      include/net/rose.h
15143 F:      include/uapi/linux/rose.h
15144 F:      net/rose/
15145
15146 ROTATION DRIVER FOR ALLWINNER A83T
15147 M:      Jernej Skrabec <jernej.skrabec@siol.net>
15148 L:      linux-media@vger.kernel.org
15149 S:      Maintained
15150 T:      git git://linuxtv.org/media_tree.git
15151 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
15152 F:      drivers/media/platform/sunxi/sun8i-rotate/
15153
15154 RTL2830 MEDIA DRIVER
15155 M:      Antti Palosaari <crope@iki.fi>
15156 L:      linux-media@vger.kernel.org
15157 S:      Maintained
15158 W:      https://linuxtv.org
15159 W:      http://palosaari.fi/linux/
15160 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15161 T:      git git://linuxtv.org/anttip/media_tree.git
15162 F:      drivers/media/dvb-frontends/rtl2830*
15163
15164 RTL2832 MEDIA DRIVER
15165 M:      Antti Palosaari <crope@iki.fi>
15166 L:      linux-media@vger.kernel.org
15167 S:      Maintained
15168 W:      https://linuxtv.org
15169 W:      http://palosaari.fi/linux/
15170 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15171 T:      git git://linuxtv.org/anttip/media_tree.git
15172 F:      drivers/media/dvb-frontends/rtl2832*
15173
15174 RTL2832_SDR MEDIA DRIVER
15175 M:      Antti Palosaari <crope@iki.fi>
15176 L:      linux-media@vger.kernel.org
15177 S:      Maintained
15178 W:      https://linuxtv.org
15179 W:      http://palosaari.fi/linux/
15180 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15181 T:      git git://linuxtv.org/anttip/media_tree.git
15182 F:      drivers/media/dvb-frontends/rtl2832_sdr*
15183
15184 RTL8180 WIRELESS DRIVER
15185 L:      linux-wireless@vger.kernel.org
15186 S:      Orphan
15187 W:      https://wireless.wiki.kernel.org/
15188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15189 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
15190
15191 RTL8187 WIRELESS DRIVER
15192 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
15193 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
15194 M:      Larry Finger <Larry.Finger@lwfinger.net>
15195 L:      linux-wireless@vger.kernel.org
15196 S:      Maintained
15197 W:      https://wireless.wiki.kernel.org/
15198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15199 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
15200
15201 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
15202 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
15203 L:      linux-wireless@vger.kernel.org
15204 S:      Maintained
15205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
15206 F:      drivers/net/wireless/realtek/rtl8xxxu/
15207
15208 RTRS TRANSPORT DRIVERS
15209 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
15210 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15211 L:      linux-rdma@vger.kernel.org
15212 S:      Maintained
15213 F:      drivers/infiniband/ulp/rtrs/
15214
15215 RXRPC SOCKETS (AF_RXRPC)
15216 M:      David Howells <dhowells@redhat.com>
15217 L:      linux-afs@lists.infradead.org
15218 S:      Supported
15219 W:      https://www.infradead.org/~dhowells/kafs/
15220 F:      Documentation/networking/rxrpc.rst
15221 F:      include/keys/rxrpc-type.h
15222 F:      include/net/af_rxrpc.h
15223 F:      include/trace/events/rxrpc.h
15224 F:      include/uapi/linux/rxrpc.h
15225 F:      net/rxrpc/
15226
15227 S3 SAVAGE FRAMEBUFFER DRIVER
15228 M:      Antonino Daplas <adaplas@gmail.com>
15229 L:      linux-fbdev@vger.kernel.org
15230 S:      Maintained
15231 F:      drivers/video/fbdev/savage/
15232
15233 S390
15234 M:      Heiko Carstens <hca@linux.ibm.com>
15235 M:      Vasily Gorbik <gor@linux.ibm.com>
15236 M:      Christian Borntraeger <borntraeger@de.ibm.com>
15237 L:      linux-s390@vger.kernel.org
15238 S:      Supported
15239 W:      http://www.ibm.com/developerworks/linux/linux390/
15240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
15241 F:      Documentation/driver-api/s390-drivers.rst
15242 F:      Documentation/s390/
15243 F:      arch/s390/
15244 F:      drivers/s390/
15245
15246 S390 COMMON I/O LAYER
15247 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
15248 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
15249 L:      linux-s390@vger.kernel.org
15250 S:      Supported
15251 W:      http://www.ibm.com/developerworks/linux/linux390/
15252 F:      drivers/s390/cio/
15253
15254 S390 DASD DRIVER
15255 M:      Stefan Haberland <sth@linux.ibm.com>
15256 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
15257 L:      linux-s390@vger.kernel.org
15258 S:      Supported
15259 W:      http://www.ibm.com/developerworks/linux/linux390/
15260 F:      block/partitions/ibm.c
15261 F:      drivers/s390/block/dasd*
15262 F:      include/linux/dasd_mod.h
15263
15264 S390 IOMMU (PCI)
15265 M:      Matthew Rosato <mjrosato@linux.ibm.com>
15266 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
15267 L:      linux-s390@vger.kernel.org
15268 S:      Supported
15269 W:      http://www.ibm.com/developerworks/linux/linux390/
15270 F:      drivers/iommu/s390-iommu.c
15271
15272 S390 IUCV NETWORK LAYER
15273 M:      Julian Wiedmann <jwi@linux.ibm.com>
15274 M:      Karsten Graul <kgraul@linux.ibm.com>
15275 M:      Ursula Braun <ubraun@linux.ibm.com>
15276 L:      linux-s390@vger.kernel.org
15277 S:      Supported
15278 W:      http://www.ibm.com/developerworks/linux/linux390/
15279 F:      drivers/s390/net/*iucv*
15280 F:      include/net/iucv/
15281 F:      net/iucv/
15282
15283 S390 NETWORK DRIVERS
15284 M:      Julian Wiedmann <jwi@linux.ibm.com>
15285 M:      Karsten Graul <kgraul@linux.ibm.com>
15286 M:      Ursula Braun <ubraun@linux.ibm.com>
15287 L:      linux-s390@vger.kernel.org
15288 S:      Supported
15289 W:      http://www.ibm.com/developerworks/linux/linux390/
15290 F:      drivers/s390/net/
15291
15292 S390 PCI SUBSYSTEM
15293 M:      Niklas Schnelle <schnelle@linux.ibm.com>
15294 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
15295 L:      linux-s390@vger.kernel.org
15296 S:      Supported
15297 W:      http://www.ibm.com/developerworks/linux/linux390/
15298 F:      arch/s390/pci/
15299 F:      drivers/pci/hotplug/s390_pci_hpc.c
15300 F:      Documentation/s390/pci.rst
15301
15302 S390 VFIO AP DRIVER
15303 M:      Tony Krowiak <akrowiak@linux.ibm.com>
15304 M:      Pierre Morel <pmorel@linux.ibm.com>
15305 M:      Halil Pasic <pasic@linux.ibm.com>
15306 L:      linux-s390@vger.kernel.org
15307 S:      Supported
15308 W:      http://www.ibm.com/developerworks/linux/linux390/
15309 F:      Documentation/s390/vfio-ap.rst
15310 F:      drivers/s390/crypto/vfio_ap_drv.c
15311 F:      drivers/s390/crypto/vfio_ap_ops.c
15312 F:      drivers/s390/crypto/vfio_ap_private.h
15313
15314 S390 VFIO-CCW DRIVER
15315 M:      Cornelia Huck <cohuck@redhat.com>
15316 M:      Eric Farman <farman@linux.ibm.com>
15317 R:      Halil Pasic <pasic@linux.ibm.com>
15318 L:      linux-s390@vger.kernel.org
15319 L:      kvm@vger.kernel.org
15320 S:      Supported
15321 F:      Documentation/s390/vfio-ccw.rst
15322 F:      drivers/s390/cio/vfio_ccw*
15323 F:      include/uapi/linux/vfio_ccw.h
15324
15325 S390 VFIO-PCI DRIVER
15326 M:      Matthew Rosato <mjrosato@linux.ibm.com>
15327 L:      linux-s390@vger.kernel.org
15328 L:      kvm@vger.kernel.org
15329 S:      Supported
15330 F:      drivers/vfio/pci/vfio_pci_zdev.c
15331 F:      include/uapi/linux/vfio_zdev.h
15332
15333 S390 ZCRYPT DRIVER
15334 M:      Harald Freudenberger <freude@linux.ibm.com>
15335 L:      linux-s390@vger.kernel.org
15336 S:      Supported
15337 W:      http://www.ibm.com/developerworks/linux/linux390/
15338 F:      drivers/s390/crypto/
15339
15340 S390 ZFCP DRIVER
15341 M:      Steffen Maier <maier@linux.ibm.com>
15342 M:      Benjamin Block <bblock@linux.ibm.com>
15343 L:      linux-s390@vger.kernel.org
15344 S:      Supported
15345 W:      http://www.ibm.com/developerworks/linux/linux390/
15346 F:      drivers/s390/scsi/zfcp_*
15347
15348 S3C24XX SD/MMC Driver
15349 M:      Ben Dooks <ben-linux@fluff.org>
15350 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15351 S:      Supported
15352 F:      drivers/mmc/host/s3cmci.*
15353
15354 SAA6588 RDS RECEIVER DRIVER
15355 M:      Hans Verkuil <hverkuil@xs4all.nl>
15356 L:      linux-media@vger.kernel.org
15357 S:      Odd Fixes
15358 W:      https://linuxtv.org
15359 T:      git git://linuxtv.org/media_tree.git
15360 F:      drivers/media/i2c/saa6588*
15361
15362 SAA7134 VIDEO4LINUX DRIVER
15363 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15364 L:      linux-media@vger.kernel.org
15365 S:      Odd fixes
15366 W:      https://linuxtv.org
15367 T:      git git://linuxtv.org/media_tree.git
15368 F:      Documentation/driver-api/media/drivers/saa7134*
15369 F:      drivers/media/pci/saa7134/
15370
15371 SAA7146 VIDEO4LINUX-2 DRIVER
15372 M:      Hans Verkuil <hverkuil@xs4all.nl>
15373 L:      linux-media@vger.kernel.org
15374 S:      Maintained
15375 T:      git git://linuxtv.org/media_tree.git
15376 F:      drivers/media/common/saa7146/
15377 F:      drivers/media/pci/saa7146/
15378 F:      include/media/drv-intf/saa7146*
15379
15380 SAFESETID SECURITY MODULE
15381 M:      Micah Morton <mortonm@chromium.org>
15382 S:      Supported
15383 F:      Documentation/admin-guide/LSM/SafeSetID.rst
15384 F:      security/safesetid/
15385
15386 SAMSUNG AUDIO (ASoC) DRIVERS
15387 M:      Krzysztof Kozlowski <krzk@kernel.org>
15388 M:      Sangbeom Kim <sbkim73@samsung.com>
15389 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15390 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15391 S:      Supported
15392 F:      Documentation/devicetree/bindings/sound/samsung*
15393 F:      sound/soc/samsung/
15394
15395 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
15396 M:      Krzysztof Kozlowski <krzk@kernel.org>
15397 L:      linux-crypto@vger.kernel.org
15398 L:      linux-samsung-soc@vger.kernel.org
15399 S:      Maintained
15400 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
15401 F:      drivers/crypto/exynos-rng.c
15402
15403 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
15404 M:      Łukasz Stelmach <l.stelmach@samsung.com>
15405 L:      linux-samsung-soc@vger.kernel.org
15406 S:      Maintained
15407 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
15408 F:      drivers/char/hw_random/exynos-trng.c
15409
15410 SAMSUNG FRAMEBUFFER DRIVER
15411 M:      Jingoo Han <jingoohan1@gmail.com>
15412 L:      linux-fbdev@vger.kernel.org
15413 S:      Maintained
15414 F:      drivers/video/fbdev/s3c-fb.c
15415
15416 SAMSUNG LAPTOP DRIVER
15417 M:      Corentin Chary <corentin.chary@gmail.com>
15418 L:      platform-driver-x86@vger.kernel.org
15419 S:      Maintained
15420 F:      drivers/platform/x86/samsung-laptop.c
15421
15422 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
15423 M:      Sangbeom Kim <sbkim73@samsung.com>
15424 M:      Krzysztof Kozlowski <krzk@kernel.org>
15425 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15426 L:      linux-kernel@vger.kernel.org
15427 L:      linux-samsung-soc@vger.kernel.org
15428 S:      Supported
15429 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
15430 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
15431 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
15432 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
15433 F:      drivers/clk/clk-s2mps11.c
15434 F:      drivers/mfd/sec*.c
15435 F:      drivers/regulator/s2m*.c
15436 F:      drivers/regulator/s5m*.c
15437 F:      drivers/rtc/rtc-s5m.c
15438 F:      include/linux/mfd/samsung/
15439
15440 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
15441 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
15442 L:      linux-media@vger.kernel.org
15443 L:      linux-samsung-soc@vger.kernel.org
15444 S:      Maintained
15445 F:      drivers/media/platform/s3c-camif/
15446 F:      include/media/drv-intf/s3c_camif.h
15447
15448 SAMSUNG S3FWRN5 NFC DRIVER
15449 M:      Krzysztof Kozlowski <krzk@kernel.org>
15450 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
15451 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
15452 S:      Maintained
15453 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
15454 F:      drivers/nfc/s3fwrn5
15455
15456 SAMSUNG S5C73M3 CAMERA DRIVER
15457 M:      Kyungmin Park <kyungmin.park@samsung.com>
15458 M:      Andrzej Hajda <a.hajda@samsung.com>
15459 L:      linux-media@vger.kernel.org
15460 S:      Supported
15461 F:      drivers/media/i2c/s5c73m3/*
15462
15463 SAMSUNG S5K5BAF CAMERA DRIVER
15464 M:      Kyungmin Park <kyungmin.park@samsung.com>
15465 M:      Andrzej Hajda <a.hajda@samsung.com>
15466 L:      linux-media@vger.kernel.org
15467 S:      Supported
15468 F:      drivers/media/i2c/s5k5baf.c
15469
15470 SAMSUNG S5P Security SubSystem (SSS) DRIVER
15471 M:      Krzysztof Kozlowski <krzk@kernel.org>
15472 M:      Vladimir Zapolskiy <vz@mleia.com>
15473 M:      Kamil Konieczny <k.konieczny@samsung.com>
15474 L:      linux-crypto@vger.kernel.org
15475 L:      linux-samsung-soc@vger.kernel.org
15476 S:      Maintained
15477 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
15478 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
15479 F:      drivers/crypto/s5p-sss.c
15480
15481 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
15482 M:      Kyungmin Park <kyungmin.park@samsung.com>
15483 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15484 L:      linux-media@vger.kernel.org
15485 S:      Supported
15486 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
15487 F:      drivers/media/platform/exynos4-is/
15488
15489 SAMSUNG SOC CLOCK DRIVERS
15490 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15491 M:      Tomasz Figa <tomasz.figa@gmail.com>
15492 M:      Chanwoo Choi <cw00.choi@samsung.com>
15493 L:      linux-samsung-soc@vger.kernel.org
15494 S:      Supported
15495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
15496 F:      Documentation/devicetree/bindings/clock/exynos*.txt
15497 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
15498 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
15499 F:      drivers/clk/samsung/
15500 F:      include/dt-bindings/clock/exynos*.h
15501 F:      include/linux/clk/samsung.h
15502 F:      include/linux/platform_data/clk-s3c2410.h
15503
15504 SAMSUNG SPI DRIVERS
15505 M:      Kukjin Kim <kgene@kernel.org>
15506 M:      Krzysztof Kozlowski <krzk@kernel.org>
15507 M:      Andi Shyti <andi@etezian.org>
15508 L:      linux-spi@vger.kernel.org
15509 L:      linux-samsung-soc@vger.kernel.org
15510 S:      Maintained
15511 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
15512 F:      drivers/spi/spi-s3c*
15513 F:      include/linux/platform_data/spi-s3c64xx.h
15514 F:      include/linux/spi/s3c24xx-fiq.h
15515
15516 SAMSUNG SXGBE DRIVERS
15517 M:      Byungho An <bh74.an@samsung.com>
15518 L:      netdev@vger.kernel.org
15519 S:      Supported
15520 F:      drivers/net/ethernet/samsung/sxgbe/
15521
15522 SAMSUNG THERMAL DRIVER
15523 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15524 L:      linux-pm@vger.kernel.org
15525 L:      linux-samsung-soc@vger.kernel.org
15526 S:      Supported
15527 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
15528 F:      drivers/thermal/samsung/
15529
15530 SAMSUNG USB2 PHY DRIVER
15531 M:      Kamil Debski <kamil@wypas.org>
15532 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15533 L:      linux-kernel@vger.kernel.org
15534 S:      Supported
15535 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
15536 F:      Documentation/driver-api/phy/samsung-usb2.rst
15537 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
15538 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
15539 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
15540 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
15541 F:      drivers/phy/samsung/phy-samsung-usb2.c
15542 F:      drivers/phy/samsung/phy-samsung-usb2.h
15543
15544 SC1200 WDT DRIVER
15545 M:      Zwane Mwaikambo <zwanem@gmail.com>
15546 S:      Maintained
15547 F:      drivers/watchdog/sc1200wdt.c
15548
15549 SCHEDULER
15550 M:      Ingo Molnar <mingo@redhat.com>
15551 M:      Peter Zijlstra <peterz@infradead.org>
15552 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
15553 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
15554 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
15555 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
15556 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
15557 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
15558 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
15559 L:      linux-kernel@vger.kernel.org
15560 S:      Maintained
15561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
15562 F:      include/linux/preempt.h
15563 F:      include/linux/sched.h
15564 F:      include/linux/wait.h
15565 F:      include/uapi/linux/sched.h
15566 F:      kernel/sched/
15567
15568 SCR24X CHIP CARD INTERFACE DRIVER
15569 M:      Lubomir Rintel <lkundrak@v3.sk>
15570 S:      Supported
15571 F:      drivers/char/pcmcia/scr24x_cs.c
15572
15573 SCSI CDROM DRIVER
15574 M:      Jens Axboe <axboe@kernel.dk>
15575 L:      linux-scsi@vger.kernel.org
15576 S:      Maintained
15577 W:      http://www.kernel.dk
15578 F:      drivers/scsi/sr*
15579
15580 SCSI RDMA PROTOCOL (SRP) INITIATOR
15581 M:      Bart Van Assche <bvanassche@acm.org>
15582 L:      linux-rdma@vger.kernel.org
15583 S:      Supported
15584 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15585 F:      drivers/infiniband/ulp/srp/
15586 F:      include/scsi/srp.h
15587
15588 SCSI RDMA PROTOCOL (SRP) TARGET
15589 M:      Bart Van Assche <bvanassche@acm.org>
15590 L:      linux-rdma@vger.kernel.org
15591 L:      target-devel@vger.kernel.org
15592 S:      Supported
15593 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15594 F:      drivers/infiniband/ulp/srpt/
15595
15596 SCSI SG DRIVER
15597 M:      Doug Gilbert <dgilbert@interlog.com>
15598 L:      linux-scsi@vger.kernel.org
15599 S:      Maintained
15600 W:      http://sg.danny.cz/sg
15601 F:      Documentation/scsi/scsi-generic.rst
15602 F:      drivers/scsi/sg.c
15603 F:      include/scsi/sg.h
15604
15605 SCSI SUBSYSTEM
15606 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
15607 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15608 L:      linux-scsi@vger.kernel.org
15609 S:      Maintained
15610 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
15611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
15612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15613 F:      Documentation/devicetree/bindings/scsi/
15614 F:      drivers/scsi/
15615 F:      include/scsi/
15616
15617 SCSI TAPE DRIVER
15618 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
15619 L:      linux-scsi@vger.kernel.org
15620 S:      Maintained
15621 F:      Documentation/scsi/st.rst
15622 F:      drivers/scsi/st.*
15623 F:      drivers/scsi/st_*.h
15624
15625 SCSI TARGET SUBSYSTEM
15626 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15627 L:      linux-scsi@vger.kernel.org
15628 L:      target-devel@vger.kernel.org
15629 S:      Supported
15630 W:      http://www.linux-iscsi.org
15631 Q:      https://patchwork.kernel.org/project/target-devel/list/
15632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15633 F:      Documentation/target/
15634 F:      drivers/target/
15635 F:      include/target/
15636
15637 SCTP PROTOCOL
15638 M:      Vlad Yasevich <vyasevich@gmail.com>
15639 M:      Neil Horman <nhorman@tuxdriver.com>
15640 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
15641 L:      linux-sctp@vger.kernel.org
15642 S:      Maintained
15643 W:      http://lksctp.sourceforge.net
15644 F:      Documentation/networking/sctp.rst
15645 F:      include/linux/sctp.h
15646 F:      include/net/sctp/
15647 F:      include/uapi/linux/sctp.h
15648 F:      net/sctp/
15649
15650 SCx200 CPU SUPPORT
15651 M:      Jim Cromie <jim.cromie@gmail.com>
15652 S:      Odd Fixes
15653 F:      Documentation/i2c/busses/scx200_acb.rst
15654 F:      arch/x86/platform/scx200/
15655 F:      drivers/i2c/busses/scx200*
15656 F:      drivers/mtd/maps/scx200_docflash.c
15657 F:      drivers/watchdog/scx200_wdt.c
15658 F:      include/linux/scx200.h
15659
15660 SCx200 GPIO DRIVER
15661 M:      Jim Cromie <jim.cromie@gmail.com>
15662 S:      Maintained
15663 F:      drivers/char/scx200_gpio.c
15664 F:      include/linux/scx200_gpio.h
15665
15666 SCx200 HRT CLOCKSOURCE DRIVER
15667 M:      Jim Cromie <jim.cromie@gmail.com>
15668 S:      Maintained
15669 F:      drivers/clocksource/scx200_hrt.c
15670
15671 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15672 M:      Sascha Sommer <saschasommer@freenet.de>
15673 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
15674 S:      Maintained
15675 F:      drivers/mmc/host/sdricoh_cs.c
15676
15677 SECO BOARDS CEC DRIVER
15678 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
15679 S:      Maintained
15680 F:      drivers/media/cec/platform/seco/seco-cec.c
15681 F:      drivers/media/cec/platform/seco/seco-cec.h
15682
15683 SECURE COMPUTING
15684 M:      Kees Cook <keescook@chromium.org>
15685 R:      Andy Lutomirski <luto@amacapital.net>
15686 R:      Will Drewry <wad@chromium.org>
15687 S:      Supported
15688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15689 F:      Documentation/userspace-api/seccomp_filter.rst
15690 F:      include/linux/seccomp.h
15691 F:      include/uapi/linux/seccomp.h
15692 F:      kernel/seccomp.c
15693 F:      tools/testing/selftests/kselftest_harness.h
15694 F:      tools/testing/selftests/seccomp/*
15695 K:      \bsecure_computing
15696 K:      \bTIF_SECCOMP\b
15697
15698 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15699 M:      Al Cooper <alcooperx@gmail.com>
15700 L:      linux-mmc@vger.kernel.org
15701 L:      bcm-kernel-feedback-list@broadcom.com
15702 S:      Maintained
15703 F:      drivers/mmc/host/sdhci-brcmstb*
15704
15705 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15706 M:      Adrian Hunter <adrian.hunter@intel.com>
15707 L:      linux-mmc@vger.kernel.org
15708 S:      Maintained
15709 F:      drivers/mmc/host/sdhci*
15710 F:      include/linux/mmc/sdhci*
15711
15712 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15713 M:      Eugen Hristev <eugen.hristev@microchip.com>
15714 L:      linux-mmc@vger.kernel.org
15715 S:      Supported
15716 F:      drivers/mmc/host/sdhci-of-at91.c
15717
15718 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15719 M:      Ben Dooks <ben-linux@fluff.org>
15720 M:      Jaehoon Chung <jh80.chung@samsung.com>
15721 L:      linux-mmc@vger.kernel.org
15722 S:      Maintained
15723 F:      drivers/mmc/host/sdhci-s3c*
15724
15725 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15726 M:      Viresh Kumar <vireshk@kernel.org>
15727 L:      linux-mmc@vger.kernel.org
15728 S:      Maintained
15729 F:      drivers/mmc/host/sdhci-spear.c
15730
15731 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15732 M:      Kishon Vijay Abraham I <kishon@ti.com>
15733 L:      linux-mmc@vger.kernel.org
15734 S:      Maintained
15735 F:      drivers/mmc/host/sdhci-omap.c
15736
15737 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15738 M:      Jonathan Derrick <jonathan.derrick@intel.com>
15739 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
15740 L:      linux-block@vger.kernel.org
15741 S:      Supported
15742 F:      block/opal_proto.h
15743 F:      block/sed*
15744 F:      include/linux/sed*
15745 F:      include/uapi/linux/sed*
15746
15747 SECURITY CONTACT
15748 M:      Security Officers <security@kernel.org>
15749 S:      Supported
15750 F:      Documentation/admin-guide/security-bugs.rst
15751
15752 SECURITY SUBSYSTEM
15753 M:      James Morris <jmorris@namei.org>
15754 M:      "Serge E. Hallyn" <serge@hallyn.com>
15755 L:      linux-security-module@vger.kernel.org (suggested Cc:)
15756 S:      Supported
15757 W:      http://kernsec.org/
15758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15759 F:      security/
15760 X:      security/selinux/
15761
15762 SELINUX SECURITY MODULE
15763 M:      Paul Moore <paul@paul-moore.com>
15764 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
15765 M:      Eric Paris <eparis@parisplace.org>
15766 L:      selinux@vger.kernel.org
15767 S:      Supported
15768 W:      https://selinuxproject.org
15769 W:      https://github.com/SELinuxProject
15770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
15771 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
15772 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
15773 F:      Documentation/admin-guide/LSM/SELinux.rst
15774 F:      include/trace/events/avc.h
15775 F:      include/uapi/linux/selinux_netlink.h
15776 F:      scripts/selinux/
15777 F:      security/selinux/
15778
15779 SENSABLE PHANTOM
15780 M:      Jiri Slaby <jirislaby@kernel.org>
15781 S:      Maintained
15782 F:      drivers/misc/phantom.c
15783 F:      include/uapi/linux/phantom.h
15784
15785 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
15786 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
15787 S:      Maintained
15788 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
15789 F:      drivers/iio/chemical/scd30.h
15790 F:      drivers/iio/chemical/scd30_core.c
15791 F:      drivers/iio/chemical/scd30_i2c.c
15792 F:      drivers/iio/chemical/scd30_serial.c
15793
15794 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
15795 M:      Tomasz Duszynski <tduszyns@gmail.com>
15796 S:      Maintained
15797 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
15798 F:      drivers/iio/chemical/sps30.c
15799
15800 SERIAL DEVICE BUS
15801 M:      Rob Herring <robh@kernel.org>
15802 L:      linux-serial@vger.kernel.org
15803 S:      Maintained
15804 F:      Documentation/devicetree/bindings/serial/serial.yaml
15805 F:      drivers/tty/serdev/
15806 F:      include/linux/serdev.h
15807
15808 SERIAL DRIVERS
15809 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15810 L:      linux-serial@vger.kernel.org
15811 S:      Maintained
15812 F:      Documentation/devicetree/bindings/serial/
15813 F:      drivers/tty/serial/
15814
15815 SERIAL IR RECEIVER
15816 M:      Sean Young <sean@mess.org>
15817 L:      linux-media@vger.kernel.org
15818 S:      Maintained
15819 F:      drivers/media/rc/serial_ir.c
15820
15821 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15822 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15823 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15824 S:      Maintained
15825 F:      Documentation/devicetree/bindings/slimbus/
15826 F:      drivers/slimbus/
15827 F:      include/linux/slimbus.h
15828
15829 SFC NETWORK DRIVER
15830 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
15831 M:      Edward Cree <ecree@solarflare.com>
15832 M:      Martin Habets <mhabets@solarflare.com>
15833 L:      netdev@vger.kernel.org
15834 S:      Supported
15835 F:      drivers/net/ethernet/sfc/
15836
15837 SFF/SFP/SFP+ MODULE SUPPORT
15838 M:      Russell King <linux@armlinux.org.uk>
15839 L:      netdev@vger.kernel.org
15840 S:      Maintained
15841 F:      drivers/net/phy/phylink.c
15842 F:      drivers/net/phy/sfp*
15843 F:      include/linux/mdio/mdio-i2c.h
15844 F:      include/linux/phylink.h
15845 F:      include/linux/sfp.h
15846 K:      phylink\.h|struct\s+phylink|\.phylink|>phylink_|phylink_(autoneg|clear|connect|create|destroy|disconnect|ethtool|helper|mac|mii|of|set|start|stop|test|validate)
15847
15848 SGI GRU DRIVER
15849 M:      Dimitri Sivanich <sivanich@sgi.com>
15850 S:      Maintained
15851 F:      drivers/misc/sgi-gru/
15852
15853 SGI XP/XPC/XPNET DRIVER
15854 M:      Cliff Whickman <cpw@sgi.com>
15855 M:      Robin Holt <robinmholt@gmail.com>
15856 S:      Maintained
15857 F:      drivers/misc/sgi-xp/
15858
15859 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
15860 M:      Ursula Braun <ubraun@linux.ibm.com>
15861 M:      Karsten Graul <kgraul@linux.ibm.com>
15862 L:      linux-s390@vger.kernel.org
15863 S:      Supported
15864 W:      http://www.ibm.com/developerworks/linux/linux390/
15865 F:      net/smc/
15866
15867 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
15868 M:      Linus Walleij <linus.walleij@linaro.org>
15869 L:      linux-iio@vger.kernel.org
15870 S:      Maintained
15871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
15872 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
15873 F:      drivers/iio/light/gp2ap002.c
15874
15875 SHARP RJ54N1CB0C SENSOR DRIVER
15876 M:      Jacopo Mondi <jacopo@jmondi.org>
15877 L:      linux-media@vger.kernel.org
15878 S:      Odd fixes
15879 T:      git git://linuxtv.org/media_tree.git
15880 F:      drivers/media/i2c/rj54n1cb0c.c
15881 F:      include/media/i2c/rj54n1cb0c.h
15882
15883 SH_VOU V4L2 OUTPUT DRIVER
15884 L:      linux-media@vger.kernel.org
15885 S:      Orphan
15886 F:      drivers/media/platform/sh_vou.c
15887 F:      include/media/drv-intf/sh_vou.h
15888
15889 SI2157 MEDIA DRIVER
15890 M:      Antti Palosaari <crope@iki.fi>
15891 L:      linux-media@vger.kernel.org
15892 S:      Maintained
15893 W:      https://linuxtv.org
15894 W:      http://palosaari.fi/linux/
15895 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15896 T:      git git://linuxtv.org/anttip/media_tree.git
15897 F:      drivers/media/tuners/si2157*
15898
15899 SI2165 MEDIA DRIVER
15900 M:      Matthias Schwarzott <zzam@gentoo.org>
15901 L:      linux-media@vger.kernel.org
15902 S:      Maintained
15903 W:      https://linuxtv.org
15904 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15905 F:      drivers/media/dvb-frontends/si2165*
15906
15907 SI2168 MEDIA DRIVER
15908 M:      Antti Palosaari <crope@iki.fi>
15909 L:      linux-media@vger.kernel.org
15910 S:      Maintained
15911 W:      https://linuxtv.org
15912 W:      http://palosaari.fi/linux/
15913 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15914 T:      git git://linuxtv.org/anttip/media_tree.git
15915 F:      drivers/media/dvb-frontends/si2168*
15916
15917 SI470X FM RADIO RECEIVER I2C DRIVER
15918 M:      Hans Verkuil <hverkuil@xs4all.nl>
15919 L:      linux-media@vger.kernel.org
15920 S:      Odd Fixes
15921 W:      https://linuxtv.org
15922 T:      git git://linuxtv.org/media_tree.git
15923 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
15924
15925 SI470X FM RADIO RECEIVER USB DRIVER
15926 M:      Hans Verkuil <hverkuil@xs4all.nl>
15927 L:      linux-media@vger.kernel.org
15928 S:      Maintained
15929 W:      https://linuxtv.org
15930 T:      git git://linuxtv.org/media_tree.git
15931 F:      drivers/media/radio/si470x/radio-si470x-common.c
15932 F:      drivers/media/radio/si470x/radio-si470x-usb.c
15933 F:      drivers/media/radio/si470x/radio-si470x.h
15934
15935 SI4713 FM RADIO TRANSMITTER I2C DRIVER
15936 M:      Eduardo Valentin <edubezval@gmail.com>
15937 L:      linux-media@vger.kernel.org
15938 S:      Odd Fixes
15939 W:      https://linuxtv.org
15940 T:      git git://linuxtv.org/media_tree.git
15941 F:      drivers/media/radio/si4713/si4713.?
15942
15943 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
15944 M:      Eduardo Valentin <edubezval@gmail.com>
15945 L:      linux-media@vger.kernel.org
15946 S:      Odd Fixes
15947 W:      https://linuxtv.org
15948 T:      git git://linuxtv.org/media_tree.git
15949 F:      drivers/media/radio/si4713/radio-platform-si4713.c
15950
15951 SI4713 FM RADIO TRANSMITTER USB DRIVER
15952 M:      Hans Verkuil <hverkuil@xs4all.nl>
15953 L:      linux-media@vger.kernel.org
15954 S:      Maintained
15955 W:      https://linuxtv.org
15956 T:      git git://linuxtv.org/media_tree.git
15957 F:      drivers/media/radio/si4713/radio-usb-si4713.c
15958
15959 SIANO DVB DRIVER
15960 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15961 L:      linux-media@vger.kernel.org
15962 S:      Odd fixes
15963 W:      https://linuxtv.org
15964 T:      git git://linuxtv.org/media_tree.git
15965 F:      drivers/media/common/siano/
15966 F:      drivers/media/mmc/siano/
15967 F:      drivers/media/usb/siano/
15968 F:      drivers/media/usb/siano/
15969
15970 SIFIVE DRIVERS
15971 M:      Palmer Dabbelt <palmer@dabbelt.com>
15972 M:      Paul Walmsley <paul.walmsley@sifive.com>
15973 L:      linux-riscv@lists.infradead.org
15974 S:      Supported
15975 T:      git git://github.com/sifive/riscv-linux.git
15976 N:      sifive
15977 K:      [^@]sifive
15978
15979 SIFIVE FU540 SYSTEM-ON-CHIP
15980 M:      Paul Walmsley <paul.walmsley@sifive.com>
15981 M:      Palmer Dabbelt <palmer@dabbelt.com>
15982 L:      linux-riscv@lists.infradead.org
15983 S:      Supported
15984 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
15985 N:      fu540
15986 K:      fu540
15987
15988 SIFIVE PDMA DRIVER
15989 M:      Green Wan <green.wan@sifive.com>
15990 S:      Maintained
15991 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
15992 F:      drivers/dma/sf-pdma/
15993
15994 SILEAD TOUCHSCREEN DRIVER
15995 M:      Hans de Goede <hdegoede@redhat.com>
15996 L:      linux-input@vger.kernel.org
15997 L:      platform-driver-x86@vger.kernel.org
15998 S:      Maintained
15999 F:      drivers/input/touchscreen/silead.c
16000 F:      drivers/platform/x86/touchscreen_dmi.c
16001
16002 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
16003 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
16004 S:      Supported
16005 F:      drivers/staging/wfx/
16006
16007 SILICON MOTION SM712 FRAME BUFFER DRIVER
16008 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16009 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16010 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16011 L:      linux-fbdev@vger.kernel.org
16012 S:      Maintained
16013 F:      Documentation/fb/sm712fb.rst
16014 F:      drivers/video/fbdev/sm712*
16015
16016 SIMPLE FIRMWARE INTERFACE (SFI)
16017 S:      Obsolete
16018 W:      http://simplefirmware.org/
16019 F:      arch/x86/platform/sfi/
16020 F:      drivers/sfi/
16021 F:      include/linux/sfi*.h
16022
16023 SIMPLEFB FB DRIVER
16024 M:      Hans de Goede <hdegoede@redhat.com>
16025 L:      linux-fbdev@vger.kernel.org
16026 S:      Maintained
16027 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
16028 F:      drivers/video/fbdev/simplefb.c
16029 F:      include/linux/platform_data/simplefb.h
16030
16031 SIMTEC EB110ATX (Chalice CATS)
16032 M:      Simtec Linux Team <linux@simtec.co.uk>
16033 S:      Supported
16034 W:      http://www.simtec.co.uk/products/EB110ATX/
16035
16036 SIMTEC EB2410ITX (BAST)
16037 M:      Simtec Linux Team <linux@simtec.co.uk>
16038 S:      Supported
16039 W:      http://www.simtec.co.uk/products/EB2410ITX/
16040 F:      arch/arm/mach-s3c/bast-ide.c
16041 F:      arch/arm/mach-s3c/bast-irq.c
16042 F:      arch/arm/mach-s3c/mach-bast.c
16043
16044 SIOX
16045 M:      Thorsten Scherer <t.scherer@eckelmann.de>
16046 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16047 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
16048 S:      Supported
16049 F:      drivers/gpio/gpio-siox.c
16050 F:      drivers/siox/*
16051 F:      include/trace/events/siox.h
16052
16053 SIPHASH PRF ROUTINES
16054 M:      Jason A. Donenfeld <Jason@zx2c4.com>
16055 S:      Maintained
16056 F:      include/linux/siphash.h
16057 F:      lib/siphash.c
16058 F:      lib/test_siphash.c
16059
16060 SIS 190 ETHERNET DRIVER
16061 M:      Francois Romieu <romieu@fr.zoreil.com>
16062 L:      netdev@vger.kernel.org
16063 S:      Maintained
16064 F:      drivers/net/ethernet/sis/sis190.c
16065
16066 SIS 900/7016 FAST ETHERNET DRIVER
16067 M:      Daniele Venzano <venza@brownhat.org>
16068 L:      netdev@vger.kernel.org
16069 S:      Maintained
16070 W:      http://www.brownhat.org/sis900.html
16071 F:      drivers/net/ethernet/sis/sis900.*
16072
16073 SIS FRAMEBUFFER DRIVER
16074 M:      Thomas Winischhofer <thomas@winischhofer.net>
16075 S:      Maintained
16076 W:      http://www.winischhofer.net/linuxsisvga.shtml
16077 F:      Documentation/fb/sisfb.rst
16078 F:      drivers/video/fbdev/sis/
16079 F:      include/video/sisfb.h
16080
16081 SIS I2C TOUCHSCREEN DRIVER
16082 M:      Mika Penttilä <mika.penttila@nextfour.com>
16083 L:      linux-input@vger.kernel.org
16084 S:      Maintained
16085 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
16086 F:      drivers/input/touchscreen/sis_i2c.c
16087
16088 SIS USB2VGA DRIVER
16089 M:      Thomas Winischhofer <thomas@winischhofer.net>
16090 S:      Maintained
16091 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
16092 F:      drivers/usb/misc/sisusbvga/
16093
16094 SLAB ALLOCATOR
16095 M:      Christoph Lameter <cl@linux.com>
16096 M:      Pekka Enberg <penberg@kernel.org>
16097 M:      David Rientjes <rientjes@google.com>
16098 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
16099 M:      Andrew Morton <akpm@linux-foundation.org>
16100 L:      linux-mm@kvack.org
16101 S:      Maintained
16102 F:      include/linux/sl?b*.h
16103 F:      mm/sl?b*
16104
16105 SLEEPABLE READ-COPY UPDATE (SRCU)
16106 M:      Lai Jiangshan <jiangshanlai@gmail.com>
16107 M:      "Paul E. McKenney" <paulmck@kernel.org>
16108 M:      Josh Triplett <josh@joshtriplett.org>
16109 R:      Steven Rostedt <rostedt@goodmis.org>
16110 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16111 L:      rcu@vger.kernel.org
16112 S:      Supported
16113 W:      http://www.rdrop.com/users/paulmck/RCU/
16114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16115 F:      include/linux/srcu*.h
16116 F:      kernel/rcu/srcu*.c
16117
16118 SMACK SECURITY MODULE
16119 M:      Casey Schaufler <casey@schaufler-ca.com>
16120 L:      linux-security-module@vger.kernel.org
16121 S:      Maintained
16122 W:      http://schaufler-ca.com
16123 T:      git git://github.com/cschaufler/smack-next
16124 F:      Documentation/admin-guide/LSM/Smack.rst
16125 F:      security/smack/
16126
16127 SMC91x ETHERNET DRIVER
16128 M:      Nicolas Pitre <nico@fluxnic.net>
16129 S:      Odd Fixes
16130 F:      drivers/net/ethernet/smsc/smc91x.*
16131
16132 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
16133 M:      Mark Rutland <mark.rutland@arm.com>
16134 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
16135 M:      Sudeep Holla <sudeep.holla@arm.com>
16136 L:      linux-arm-kernel@lists.infradead.org
16137 S:      Maintained
16138 F:      drivers/firmware/smccc/
16139 F:      include/linux/arm-smccc.h
16140
16141 SMIA AND SMIA++ IMAGE SENSOR DRIVER
16142 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
16143 L:      linux-media@vger.kernel.org
16144 S:      Maintained
16145 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
16146 F:      drivers/media/i2c/smiapp-pll.c
16147 F:      drivers/media/i2c/smiapp-pll.h
16148 F:      drivers/media/i2c/smiapp/
16149 F:      include/uapi/linux/smiapp.h
16150
16151 SMM665 HARDWARE MONITOR DRIVER
16152 M:      Guenter Roeck <linux@roeck-us.net>
16153 L:      linux-hwmon@vger.kernel.org
16154 S:      Maintained
16155 F:      Documentation/hwmon/smm665.rst
16156 F:      drivers/hwmon/smm665.c
16157
16158 SMSC EMC2103 HARDWARE MONITOR DRIVER
16159 M:      Steve Glendinning <steve.glendinning@shawell.net>
16160 L:      linux-hwmon@vger.kernel.org
16161 S:      Maintained
16162 F:      Documentation/hwmon/emc2103.rst
16163 F:      drivers/hwmon/emc2103.c
16164
16165 SMSC SCH5627 HARDWARE MONITOR DRIVER
16166 M:      Hans de Goede <hdegoede@redhat.com>
16167 L:      linux-hwmon@vger.kernel.org
16168 S:      Supported
16169 F:      Documentation/hwmon/sch5627.rst
16170 F:      drivers/hwmon/sch5627.c
16171
16172 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
16173 M:      Steve Glendinning <steve.glendinning@shawell.net>
16174 L:      linux-fbdev@vger.kernel.org
16175 S:      Maintained
16176 F:      drivers/video/fbdev/smscufx.c
16177
16178 SMSC47B397 HARDWARE MONITOR DRIVER
16179 M:      Jean Delvare <jdelvare@suse.com>
16180 L:      linux-hwmon@vger.kernel.org
16181 S:      Maintained
16182 F:      Documentation/hwmon/smsc47b397.rst
16183 F:      drivers/hwmon/smsc47b397.c
16184
16185 SMSC911x ETHERNET DRIVER
16186 M:      Steve Glendinning <steve.glendinning@shawell.net>
16187 L:      netdev@vger.kernel.org
16188 S:      Maintained
16189 F:      drivers/net/ethernet/smsc/smsc911x.*
16190 F:      include/linux/smsc911x.h
16191
16192 SMSC9420 PCI ETHERNET DRIVER
16193 M:      Steve Glendinning <steve.glendinning@shawell.net>
16194 L:      netdev@vger.kernel.org
16195 S:      Maintained
16196 F:      drivers/net/ethernet/smsc/smsc9420.*
16197
16198 SOCIONEXT (SNI) AVE NETWORK DRIVER
16199 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
16200 L:      netdev@vger.kernel.org
16201 S:      Maintained
16202 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
16203 F:      drivers/net/ethernet/socionext/sni_ave.c
16204
16205 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
16206 M:      Jassi Brar <jaswinder.singh@linaro.org>
16207 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
16208 L:      netdev@vger.kernel.org
16209 S:      Maintained
16210 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
16211 F:      drivers/net/ethernet/socionext/netsec.c
16212
16213 SOCIONEXT (SNI) Synquacer SPI DRIVER
16214 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
16215 M:      Jassi Brar <jaswinder.singh@linaro.org>
16216 L:      linux-spi@vger.kernel.org
16217 S:      Maintained
16218 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
16219 F:      drivers/spi/spi-synquacer.c
16220
16221 SOCIONEXT SYNQUACER I2C DRIVER
16222 M:      Ard Biesheuvel <ardb@kernel.org>
16223 L:      linux-i2c@vger.kernel.org
16224 S:      Maintained
16225 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
16226 F:      drivers/i2c/busses/i2c-synquacer.c
16227
16228 SOCIONEXT UNIPHIER SOUND DRIVER
16229 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16230 S:      Orphan
16231 F:      sound/soc/uniphier/
16232
16233 SOEKRIS NET48XX LED SUPPORT
16234 M:      Chris Boot <bootc@bootc.net>
16235 S:      Maintained
16236 F:      drivers/leds/leds-net48xx.c
16237
16238 SOFT-IWARP DRIVER (siw)
16239 M:      Bernard Metzler <bmt@zurich.ibm.com>
16240 L:      linux-rdma@vger.kernel.org
16241 S:      Supported
16242 F:      drivers/infiniband/sw/siw/
16243 F:      include/uapi/rdma/siw-abi.h
16244
16245 SOFT-ROCE DRIVER (rxe)
16246 M:      Zhu Yanjun <yanjunz@nvidia.com>
16247 L:      linux-rdma@vger.kernel.org
16248 S:      Supported
16249 F:      drivers/infiniband/sw/rxe/
16250 F:      include/uapi/rdma/rdma_user_rxe.h
16251
16252 SOFTLOGIC 6x10 MPEG CODEC
16253 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
16254 M:      Anton Sviridenko <anton@corp.bluecherry.net>
16255 M:      Andrey Utkin <andrey_utkin@fastmail.com>
16256 M:      Ismael Luceno <ismael@iodev.co.uk>
16257 L:      linux-media@vger.kernel.org
16258 S:      Supported
16259 F:      drivers/media/pci/solo6x10/
16260
16261 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
16262 M:      James Morse <james.morse@arm.com>
16263 L:      linux-arm-kernel@lists.infradead.org
16264 S:      Maintained
16265 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
16266 F:      drivers/firmware/arm_sdei.c
16267 F:      include/linux/arm_sdei.h
16268 F:      include/uapi/linux/arm_sdei.h
16269
16270 SOFTWARE RAID (Multiple Disks) SUPPORT
16271 M:      Song Liu <song@kernel.org>
16272 L:      linux-raid@vger.kernel.org
16273 S:      Supported
16274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
16275 F:      drivers/md/Kconfig
16276 F:      drivers/md/Makefile
16277 F:      drivers/md/md*
16278 F:      drivers/md/raid*
16279 F:      include/linux/raid/
16280 F:      include/uapi/linux/raid/
16281
16282 SOLIDRUN CLEARFOG SUPPORT
16283 M:      Russell King <linux@armlinux.org.uk>
16284 S:      Maintained
16285 F:      arch/arm/boot/dts/armada-388-clearfog*
16286 F:      arch/arm/boot/dts/armada-38x-solidrun-*
16287
16288 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
16289 M:      Russell King <linux@armlinux.org.uk>
16290 S:      Maintained
16291 F:      arch/arm/boot/dts/imx6*-cubox-i*
16292 F:      arch/arm/boot/dts/imx6*-hummingboard*
16293 F:      arch/arm/boot/dts/imx6*-sr-*
16294
16295 SONIC NETWORK DRIVER
16296 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
16297 L:      netdev@vger.kernel.org
16298 S:      Maintained
16299 F:      drivers/net/ethernet/natsemi/sonic.*
16300
16301 SONICS SILICON BACKPLANE DRIVER (SSB)
16302 M:      Michael Buesch <m@bues.ch>
16303 L:      linux-wireless@vger.kernel.org
16304 S:      Maintained
16305 F:      drivers/ssb/
16306 F:      include/linux/ssb/
16307
16308 SONY IMX214 SENSOR DRIVER
16309 M:      Ricardo Ribalda <ribalda@kernel.org>
16310 L:      linux-media@vger.kernel.org
16311 S:      Maintained
16312 T:      git git://linuxtv.org/media_tree.git
16313 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
16314 F:      drivers/media/i2c/imx214.c
16315
16316 SONY IMX219 SENSOR DRIVER
16317 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
16318 L:      linux-media@vger.kernel.org
16319 S:      Maintained
16320 T:      git git://linuxtv.org/media_tree.git
16321 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
16322 F:      drivers/media/i2c/imx219.c
16323
16324 SONY IMX258 SENSOR DRIVER
16325 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
16326 L:      linux-media@vger.kernel.org
16327 S:      Maintained
16328 T:      git git://linuxtv.org/media_tree.git
16329 F:      drivers/media/i2c/imx258.c
16330
16331 SONY IMX274 SENSOR DRIVER
16332 M:      Leon Luo <leonl@leopardimaging.com>
16333 L:      linux-media@vger.kernel.org
16334 S:      Maintained
16335 T:      git git://linuxtv.org/media_tree.git
16336 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
16337 F:      drivers/media/i2c/imx274.c
16338
16339 SONY IMX290 SENSOR DRIVER
16340 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16341 L:      linux-media@vger.kernel.org
16342 S:      Maintained
16343 T:      git git://linuxtv.org/media_tree.git
16344 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
16345 F:      drivers/media/i2c/imx290.c
16346
16347 SONY IMX319 SENSOR DRIVER
16348 M:      Bingbu Cao <bingbu.cao@intel.com>
16349 L:      linux-media@vger.kernel.org
16350 S:      Maintained
16351 T:      git git://linuxtv.org/media_tree.git
16352 F:      drivers/media/i2c/imx319.c
16353
16354 SONY IMX355 SENSOR DRIVER
16355 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
16356 L:      linux-media@vger.kernel.org
16357 S:      Maintained
16358 T:      git git://linuxtv.org/media_tree.git
16359 F:      drivers/media/i2c/imx355.c
16360
16361 SONY MEMORYSTICK SUBSYSTEM
16362 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16363 M:      Alex Dubov <oakad@yahoo.com>
16364 M:      Ulf Hansson <ulf.hansson@linaro.org>
16365 L:      linux-mmc@vger.kernel.org
16366 S:      Maintained
16367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
16368 F:      drivers/memstick/
16369 F:      include/linux/memstick.h
16370
16371 SONY VAIO CONTROL DEVICE DRIVER
16372 M:      Mattia Dongili <malattia@linux.it>
16373 L:      platform-driver-x86@vger.kernel.org
16374 S:      Maintained
16375 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
16376 F:      Documentation/admin-guide/laptops/sony-laptop.rst
16377 F:      drivers/char/sonypi.c
16378 F:      drivers/platform/x86/sony-laptop.c
16379 F:      include/linux/sony-laptop.h
16380
16381 SOUND
16382 M:      Jaroslav Kysela <perex@perex.cz>
16383 M:      Takashi Iwai <tiwai@suse.com>
16384 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16385 S:      Maintained
16386 W:      http://www.alsa-project.org/
16387 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
16388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16389 F:      Documentation/sound/
16390 F:      include/sound/
16391 F:      include/uapi/sound/
16392 F:      sound/
16393
16394 SOUND - COMPRESSED AUDIO
16395 M:      Vinod Koul <vkoul@kernel.org>
16396 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16397 S:      Supported
16398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16399 F:      Documentation/sound/designs/compress-offload.rst
16400 F:      include/sound/compress_driver.h
16401 F:      include/uapi/sound/compress_*
16402 F:      sound/core/compress_offload.c
16403 F:      sound/soc/soc-compress.c
16404
16405 SOUND - DMAENGINE HELPERS
16406 M:      Lars-Peter Clausen <lars@metafoo.de>
16407 S:      Supported
16408 F:      include/sound/dmaengine_pcm.h
16409 F:      sound/core/pcm_dmaengine.c
16410 F:      sound/soc/soc-generic-dmaengine-pcm.c
16411
16412 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
16413 M:      Liam Girdwood <lgirdwood@gmail.com>
16414 M:      Mark Brown <broonie@kernel.org>
16415 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16416 S:      Supported
16417 W:      http://alsa-project.org/main/index.php/ASoC
16418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
16419 F:      Documentation/devicetree/bindings/sound/
16420 F:      Documentation/sound/soc/
16421 F:      include/dt-bindings/sound/
16422 F:      include/sound/soc*
16423 F:      sound/soc/
16424
16425 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
16426 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16427 M:      Liam Girdwood <lgirdwood@gmail.com>
16428 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
16429 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
16430 M:      Daniel Baluta <daniel.baluta@nxp.com>
16431 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
16432 S:      Supported
16433 W:      https://github.com/thesofproject/linux/
16434 F:      sound/soc/sof/
16435
16436 SOUNDWIRE SUBSYSTEM
16437 M:      Vinod Koul <vkoul@kernel.org>
16438 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
16439 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16440 R:      Sanyog Kale <sanyog.r.kale@intel.com>
16441 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16442 S:      Supported
16443 F:      Documentation/driver-api/soundwire/
16444 F:      drivers/soundwire/
16445 F:      include/linux/soundwire/
16446
16447 SP2 MEDIA DRIVER
16448 M:      Olli Salonen <olli.salonen@iki.fi>
16449 L:      linux-media@vger.kernel.org
16450 S:      Maintained
16451 W:      https://linuxtv.org
16452 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16453 F:      drivers/media/dvb-frontends/sp2*
16454
16455 SPARC + UltraSPARC (sparc/sparc64)
16456 M:      "David S. Miller" <davem@davemloft.net>
16457 L:      sparclinux@vger.kernel.org
16458 S:      Maintained
16459 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
16460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16462 F:      arch/sparc/
16463 F:      drivers/sbus/
16464
16465 SPARC SERIAL DRIVERS
16466 M:      "David S. Miller" <davem@davemloft.net>
16467 L:      sparclinux@vger.kernel.org
16468 S:      Maintained
16469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16471 F:      drivers/tty/serial/suncore.c
16472 F:      drivers/tty/serial/sunhv.c
16473 F:      drivers/tty/serial/sunsab.c
16474 F:      drivers/tty/serial/sunsab.h
16475 F:      drivers/tty/serial/sunsu.c
16476 F:      drivers/tty/serial/sunzilog.c
16477 F:      drivers/tty/serial/sunzilog.h
16478 F:      drivers/tty/vcc.c
16479 F:      include/linux/sunserialcore.h
16480
16481 SPARSE CHECKER
16482 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
16483 L:      linux-sparse@vger.kernel.org
16484 S:      Maintained
16485 W:      https://sparse.docs.kernel.org/
16486 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
16487 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
16488 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
16489 F:      include/linux/compiler.h
16490
16491 SPEAKUP CONSOLE SPEECH DRIVER
16492 M:      William Hubbs <w.d.hubbs@gmail.com>
16493 M:      Chris Brannon <chris@the-brannons.com>
16494 M:      Kirk Reiser <kirk@reisers.ca>
16495 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
16496 L:      speakup@linux-speakup.org
16497 S:      Odd Fixes
16498 W:      http://www.linux-speakup.org/
16499 F:      drivers/accessibility/speakup/
16500
16501 SPEAR CLOCK FRAMEWORK SUPPORT
16502 M:      Viresh Kumar <vireshk@kernel.org>
16503 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16504 S:      Maintained
16505 W:      http://www.st.com/spear
16506 F:      drivers/clk/spear/
16507
16508 SPEAR PLATFORM SUPPORT
16509 M:      Viresh Kumar <vireshk@kernel.org>
16510 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
16511 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16512 S:      Maintained
16513 W:      http://www.st.com/spear
16514 F:      arch/arm/boot/dts/spear*
16515 F:      arch/arm/mach-spear/
16516
16517 SPI NOR SUBSYSTEM
16518 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
16519 L:      linux-mtd@lists.infradead.org
16520 S:      Maintained
16521 W:      http://www.linux-mtd.infradead.org/
16522 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
16523 C:      irc://irc.oftc.net/mtd
16524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
16525 F:      drivers/mtd/spi-nor/
16526 F:      include/linux/mtd/spi-nor.h
16527
16528 SPI SUBSYSTEM
16529 M:      Mark Brown <broonie@kernel.org>
16530 L:      linux-spi@vger.kernel.org
16531 S:      Maintained
16532 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
16533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
16534 F:      Documentation/devicetree/bindings/spi/
16535 F:      Documentation/spi/
16536 F:      drivers/spi/
16537 F:      include/linux/spi/
16538 F:      include/uapi/linux/spi/
16539 F:      tools/spi/
16540
16541 SPIDERNET NETWORK DRIVER for CELL
16542 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
16543 L:      netdev@vger.kernel.org
16544 S:      Supported
16545 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
16546 F:      drivers/net/ethernet/toshiba/spider_net*
16547
16548 SPMI SUBSYSTEM
16549 R:      Stephen Boyd <sboyd@kernel.org>
16550 L:      linux-arm-msm@vger.kernel.org
16551 F:      Documentation/devicetree/bindings/spmi/
16552 F:      drivers/spmi/
16553 F:      include/dt-bindings/spmi/spmi.h
16554 F:      include/linux/spmi.h
16555 F:      include/trace/events/spmi.h
16556
16557 SPU FILE SYSTEM
16558 M:      Jeremy Kerr <jk@ozlabs.org>
16559 L:      linuxppc-dev@lists.ozlabs.org
16560 S:      Supported
16561 W:      http://www.ibm.com/developerworks/power/cell/
16562 F:      Documentation/filesystems/spufs/spufs.rst
16563 F:      arch/powerpc/platforms/cell/spufs/
16564
16565 SQUASHFS FILE SYSTEM
16566 M:      Phillip Lougher <phillip@squashfs.org.uk>
16567 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
16568 S:      Maintained
16569 W:      http://squashfs.org.uk
16570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
16571 F:      Documentation/filesystems/squashfs.rst
16572 F:      fs/squashfs/
16573
16574 SRM (Alpha) environment access
16575 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
16576 S:      Maintained
16577 F:      arch/alpha/kernel/srm_env.c
16578
16579 ST LSM6DSx IMU IIO DRIVER
16580 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
16581 L:      linux-iio@vger.kernel.org
16582 S:      Maintained
16583 W:      http://www.st.com/
16584 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
16585 F:      drivers/iio/imu/st_lsm6dsx/
16586
16587 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
16588 M:      Mickael Guene <mickael.guene@st.com>
16589 L:      linux-media@vger.kernel.org
16590 S:      Maintained
16591 T:      git git://linuxtv.org/media_tree.git
16592 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
16593 F:      drivers/media/i2c/st-mipid02.c
16594
16595 ST STM32 I2C/SMBUS DRIVER
16596 M:      Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
16597 L:      linux-i2c@vger.kernel.org
16598 S:      Maintained
16599 F:      drivers/i2c/busses/i2c-stm32*
16600
16601 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
16602 M:      Song Qiang <songqiang1304521@gmail.com>
16603 L:      linux-iio@vger.kernel.org
16604 S:      Maintained
16605 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
16606 F:      drivers/iio/proximity/vl53l0x-i2c.c
16607
16608 STABLE BRANCH
16609 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16610 M:      Sasha Levin <sashal@kernel.org>
16611 L:      stable@vger.kernel.org
16612 S:      Supported
16613 F:      Documentation/process/stable-kernel-rules.rst
16614
16615 STAGING - ATOMISP DRIVER
16616 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16617 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
16618 L:      linux-media@vger.kernel.org
16619 S:      Maintained
16620 F:      drivers/staging/media/atomisp/
16621
16622 STAGING - COMEDI
16623 M:      Ian Abbott <abbotti@mev.co.uk>
16624 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
16625 S:      Odd Fixes
16626 F:      drivers/staging/comedi/
16627
16628 STAGING - FIELDBUS SUBSYSTEM
16629 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16630 S:      Maintained
16631 F:      drivers/staging/fieldbus/*
16632 F:      drivers/staging/fieldbus/Documentation/
16633
16634 STAGING - HMS ANYBUS-S BUS
16635 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16636 S:      Maintained
16637 F:      drivers/staging/fieldbus/anybuss/
16638
16639 STAGING - INDUSTRIAL IO
16640 M:      Jonathan Cameron <jic23@kernel.org>
16641 L:      linux-iio@vger.kernel.org
16642 S:      Odd Fixes
16643 F:      Documentation/devicetree/bindings/staging/iio/
16644 F:      drivers/staging/iio/
16645
16646 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
16647 M:      Marc Dietrich <marvin24@gmx.de>
16648 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
16649 L:      linux-tegra@vger.kernel.org
16650 S:      Maintained
16651 F:      drivers/staging/nvec/
16652
16653 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
16654 M:      Jens Frederich <jfrederich@gmail.com>
16655 M:      Daniel Drake <dsd@laptop.org>
16656 M:      Jon Nettleton <jon.nettleton@gmail.com>
16657 S:      Maintained
16658 W:      http://wiki.laptop.org/go/DCON
16659 F:      drivers/staging/olpc_dcon/
16660
16661 STAGING - REALTEK RTL8188EU DRIVERS
16662 M:      Larry Finger <Larry.Finger@lwfinger.net>
16663 S:      Odd Fixes
16664 F:      drivers/staging/rtl8188eu/
16665
16666 STAGING - REALTEK RTL8712U DRIVERS
16667 M:      Larry Finger <Larry.Finger@lwfinger.net>
16668 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
16669 S:      Odd Fixes
16670 F:      drivers/staging/rtl8712/
16671
16672 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16673 M:      Michael Hennerich <michael.hennerich@analog.com>
16674 L:      linux-fbdev@vger.kernel.org
16675 S:      Supported
16676 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16677 F:      drivers/staging/fbtft/fb_seps525.c
16678
16679 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
16680 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16681 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16682 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16683 L:      linux-fbdev@vger.kernel.org
16684 S:      Maintained
16685 F:      drivers/staging/sm750fb/
16686
16687 STAGING - VIA VT665X DRIVERS
16688 M:      Forest Bond <forest@alittletooquiet.net>
16689 S:      Odd Fixes
16690 F:      drivers/staging/vt665?/
16691
16692 STAGING SUBSYSTEM
16693 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16694 L:      devel@driverdev.osuosl.org
16695 S:      Supported
16696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16697 F:      drivers/staging/
16698
16699 STARFIRE/DURALAN NETWORK DRIVER
16700 M:      Ion Badulescu <ionut@badula.org>
16701 S:      Odd Fixes
16702 F:      drivers/net/ethernet/adaptec/starfire*
16703
16704 STEC S1220 SKD DRIVER
16705 M:      Damien Le Moal <Damien.LeMoal@wdc.com>
16706 L:      linux-block@vger.kernel.org
16707 S:      Maintained
16708 F:      drivers/block/skd*[ch]
16709
16710 STI AUDIO (ASoC) DRIVERS
16711 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16712 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16713 S:      Maintained
16714 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
16715 F:      sound/soc/sti/
16716
16717 STI CEC DRIVER
16718 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
16719 S:      Maintained
16720 F:      Documentation/devicetree/bindings/media/stih-cec.txt
16721 F:      drivers/media/cec/platform/sti/
16722
16723 STK1160 USB VIDEO CAPTURE DRIVER
16724 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16725 L:      linux-media@vger.kernel.org
16726 S:      Maintained
16727 T:      git git://linuxtv.org/media_tree.git
16728 F:      drivers/media/usb/stk1160/
16729
16730 STM32 AUDIO (ASoC) DRIVERS
16731 M:      Olivier Moysan <olivier.moysan@st.com>
16732 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16733 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16734 S:      Maintained
16735 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
16736 F:      sound/soc/stm/
16737
16738 STM32 TIMER/LPTIMER DRIVERS
16739 M:      Fabrice Gasnier <fabrice.gasnier@st.com>
16740 S:      Maintained
16741 F:      Documentation/ABI/testing/*timer-stm32
16742 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
16743 F:      drivers/*/stm32-*timer*
16744 F:      drivers/pwm/pwm-stm32*
16745 F:      include/linux/*/stm32-*tim*
16746
16747 STMMAC ETHERNET DRIVER
16748 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
16749 M:      Alexandre Torgue <alexandre.torgue@st.com>
16750 M:      Jose Abreu <joabreu@synopsys.com>
16751 L:      netdev@vger.kernel.org
16752 S:      Supported
16753 W:      http://www.stlinux.com
16754 F:      Documentation/networking/device_drivers/ethernet/stmicro/
16755 F:      drivers/net/ethernet/stmicro/stmmac/
16756
16757 SUN3/3X
16758 M:      Sam Creasey <sammy@sammy.net>
16759 S:      Maintained
16760 W:      http://sammy.net/sun3/
16761 F:      arch/m68k/include/asm/sun3*
16762 F:      arch/m68k/kernel/*sun3*
16763 F:      arch/m68k/sun3*/
16764 F:      drivers/net/ethernet/i825xx/sun3*
16765
16766 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
16767 M:      Hans de Goede <hdegoede@redhat.com>
16768 L:      linux-input@vger.kernel.org
16769 S:      Maintained
16770 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
16771 F:      drivers/input/keyboard/sun4i-lradc-keys.c
16772
16773 SUNDANCE NETWORK DRIVER
16774 M:      Denis Kirjanov <kda@linux-powerpc.org>
16775 L:      netdev@vger.kernel.org
16776 S:      Maintained
16777 F:      drivers/net/ethernet/dlink/sundance.c
16778
16779 SUPERH
16780 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
16781 M:      Rich Felker <dalias@libc.org>
16782 L:      linux-sh@vger.kernel.org
16783 S:      Maintained
16784 Q:      http://patchwork.kernel.org/project/linux-sh/list/
16785 F:      Documentation/sh/
16786 F:      arch/sh/
16787 F:      drivers/sh/
16788
16789 SUSPEND TO RAM
16790 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
16791 M:      Len Brown <len.brown@intel.com>
16792 M:      Pavel Machek <pavel@ucw.cz>
16793 L:      linux-pm@vger.kernel.org
16794 S:      Supported
16795 B:      https://bugzilla.kernel.org
16796 F:      Documentation/power/
16797 F:      arch/x86/kernel/acpi/
16798 F:      drivers/base/power/
16799 F:      include/linux/freezer.h
16800 F:      include/linux/pm.h
16801 F:      include/linux/suspend.h
16802 F:      kernel/power/
16803
16804 SVGA HANDLING
16805 M:      Martin Mares <mj@ucw.cz>
16806 L:      linux-video@atrey.karlin.mff.cuni.cz
16807 S:      Maintained
16808 F:      Documentation/admin-guide/svga.rst
16809 F:      arch/x86/boot/video*
16810
16811 SWIOTLB SUBSYSTEM
16812 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
16813 L:      iommu@lists.linux-foundation.org
16814 S:      Supported
16815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
16816 F:      arch/*/kernel/pci-swiotlb.c
16817 F:      include/linux/swiotlb.h
16818 F:      kernel/dma/swiotlb.c
16819
16820 SWITCHDEV
16821 M:      Jiri Pirko <jiri@resnulli.us>
16822 M:      Ivan Vecera <ivecera@redhat.com>
16823 L:      netdev@vger.kernel.org
16824 S:      Supported
16825 F:      include/net/switchdev.h
16826 F:      net/switchdev/
16827
16828 SY8106A REGULATOR DRIVER
16829 M:      Icenowy Zheng <icenowy@aosc.io>
16830 S:      Maintained
16831 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
16832 F:      drivers/regulator/sy8106a-regulator.c
16833
16834 SYNC FILE FRAMEWORK
16835 M:      Sumit Semwal <sumit.semwal@linaro.org>
16836 R:      Gustavo Padovan <gustavo@padovan.org>
16837 L:      linux-media@vger.kernel.org
16838 L:      dri-devel@lists.freedesktop.org
16839 S:      Maintained
16840 T:      git git://anongit.freedesktop.org/drm/drm-misc
16841 F:      Documentation/driver-api/sync_file.rst
16842 F:      drivers/dma-buf/dma-fence*
16843 F:      drivers/dma-buf/sw_sync.c
16844 F:      drivers/dma-buf/sync_*
16845 F:      include/linux/sync_file.h
16846 F:      include/uapi/linux/sync_file.h
16847
16848 SYNOPSYS ARC ARCHITECTURE
16849 M:      Vineet Gupta <vgupta@synopsys.com>
16850 L:      linux-snps-arc@lists.infradead.org
16851 S:      Supported
16852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
16853 F:      Documentation/devicetree/bindings/arc/*
16854 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
16855 F:      arch/arc/
16856 F:      drivers/clocksource/arc_timer.c
16857 F:      drivers/tty/serial/arc_uart.c
16858
16859 SYNOPSYS ARC HSDK SDP pll clock driver
16860 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16861 S:      Supported
16862 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
16863 F:      drivers/clk/clk-hsdk-pll.c
16864
16865 SYNOPSYS ARC SDP clock driver
16866 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16867 S:      Supported
16868 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
16869 F:      drivers/clk/axs10x/*
16870
16871 SYNOPSYS ARC SDP platform support
16872 M:      Alexey Brodkin <abrodkin@synopsys.com>
16873 S:      Supported
16874 F:      Documentation/devicetree/bindings/arc/axs10*
16875 F:      arch/arc/boot/dts/ax*
16876 F:      arch/arc/plat-axs10x
16877
16878 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
16879 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16880 S:      Supported
16881 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
16882 F:      drivers/reset/reset-axs10x.c
16883
16884 SYNOPSYS CREG GPIO DRIVER
16885 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16886 S:      Maintained
16887 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
16888 F:      drivers/gpio/gpio-creg-snps.c
16889
16890 SYNOPSYS DESIGNWARE 8250 UART DRIVER
16891 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16892 S:      Maintained
16893 F:      drivers/tty/serial/8250/8250_dw.c
16894 F:      drivers/tty/serial/8250/8250_dwlib.*
16895 F:      drivers/tty/serial/8250/8250_lpss.c
16896
16897 SYNOPSYS DESIGNWARE APB GPIO DRIVER
16898 M:      Hoan Tran <hoan@os.amperecomputing.com>
16899 M:      Serge Semin <fancer.lancer@gmail.com>
16900 L:      linux-gpio@vger.kernel.org
16901 S:      Maintained
16902 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
16903 F:      drivers/gpio/gpio-dwapb.c
16904
16905 SYNOPSYS DESIGNWARE APB SSI DRIVER
16906 M:      Serge Semin <fancer.lancer@gmail.com>
16907 L:      linux-spi@vger.kernel.org
16908 S:      Supported
16909 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
16910 F:      drivers/spi/spi-dw*
16911
16912 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
16913 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16914 S:      Maintained
16915 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
16916 F:      drivers/dma/dw-axi-dmac/
16917
16918 SYNOPSYS DESIGNWARE DMAC DRIVER
16919 M:      Viresh Kumar <vireshk@kernel.org>
16920 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16921 S:      Maintained
16922 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
16923 F:      drivers/dma/dw/
16924 F:      include/dt-bindings/dma/dw-dmac.h
16925 F:      include/linux/dma/dw.h
16926 F:      include/linux/platform_data/dma-dw.h
16927
16928 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
16929 M:      Jose Abreu <Jose.Abreu@synopsys.com>
16930 L:      netdev@vger.kernel.org
16931 S:      Supported
16932 F:      drivers/net/ethernet/synopsys/
16933
16934 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
16935 M:      Jose Abreu <Jose.Abreu@synopsys.com>
16936 L:      netdev@vger.kernel.org
16937 S:      Supported
16938 F:      drivers/net/pcs/pcs-xpcs.c
16939 F:      include/linux/pcs/pcs-xpcs.h
16940
16941 SYNOPSYS DESIGNWARE I2C DRIVER
16942 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
16943 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16944 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
16945 L:      linux-i2c@vger.kernel.org
16946 S:      Maintained
16947 F:      drivers/i2c/busses/i2c-designware-*
16948 F:      include/linux/platform_data/i2c-designware.h
16949
16950 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
16951 M:      Jaehoon Chung <jh80.chung@samsung.com>
16952 L:      linux-mmc@vger.kernel.org
16953 S:      Maintained
16954 F:      drivers/mmc/host/dw_mmc*
16955
16956 SYNOPSYS HSDK RESET CONTROLLER DRIVER
16957 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16958 S:      Supported
16959 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
16960 F:      drivers/reset/reset-hsdk.c
16961 F:      include/dt-bindings/reset/snps,hsdk-reset.h
16962
16963 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
16964 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
16965 M:      Manjunath M B <manjumb@synopsys.com>
16966 L:      linux-mmc@vger.kernel.org
16967 S:      Maintained
16968 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
16969
16970 SYSTEM CONFIGURATION (SYSCON)
16971 M:      Lee Jones <lee.jones@linaro.org>
16972 M:      Arnd Bergmann <arnd@arndb.de>
16973 S:      Supported
16974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
16975 F:      drivers/mfd/syscon.c
16976
16977 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
16978 M:      Sudeep Holla <sudeep.holla@arm.com>
16979 L:      linux-arm-kernel@lists.infradead.org
16980 S:      Maintained
16981 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
16982 F:      drivers/clk/clk-sc[mp]i.c
16983 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
16984 F:      drivers/firmware/arm_scmi/
16985 F:      drivers/firmware/arm_scpi.c
16986 F:      drivers/reset/reset-scmi.c
16987 F:      include/linux/sc[mp]i_protocol.h
16988 F:      include/trace/events/scmi.h
16989
16990 SYSTEM RESET/SHUTDOWN DRIVERS
16991 M:      Sebastian Reichel <sre@kernel.org>
16992 L:      linux-pm@vger.kernel.org
16993 S:      Maintained
16994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16995 F:      Documentation/devicetree/bindings/power/reset/
16996 F:      drivers/power/reset/
16997
16998 SYSTEM TRACE MODULE CLASS
16999 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
17000 S:      Maintained
17001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
17002 F:      Documentation/trace/stm.rst
17003 F:      drivers/hwtracing/stm/
17004 F:      include/linux/stm.h
17005 F:      include/uapi/linux/stm.h
17006
17007 SYSTEM76 ACPI DRIVER
17008 M:      Jeremy Soller <jeremy@system76.com>
17009 M:      System76 Product Development <productdev@system76.com>
17010 L:      platform-driver-x86@vger.kernel.org
17011 S:      Maintained
17012 F:      drivers/platform/x86/system76_acpi.c
17013
17014 SYSV FILESYSTEM
17015 M:      Christoph Hellwig <hch@infradead.org>
17016 S:      Maintained
17017 F:      Documentation/filesystems/sysv-fs.rst
17018 F:      fs/sysv/
17019 F:      include/linux/sysv_fs.h
17020
17021 TASKSTATS STATISTICS INTERFACE
17022 M:      Balbir Singh <bsingharora@gmail.com>
17023 S:      Maintained
17024 F:      Documentation/accounting/taskstats*
17025 F:      include/linux/taskstats*
17026 F:      kernel/taskstats.c
17027
17028 TC subsystem
17029 M:      Jamal Hadi Salim <jhs@mojatatu.com>
17030 M:      Cong Wang <xiyou.wangcong@gmail.com>
17031 M:      Jiri Pirko <jiri@resnulli.us>
17032 L:      netdev@vger.kernel.org
17033 S:      Maintained
17034 F:      include/net/pkt_cls.h
17035 F:      include/net/pkt_sched.h
17036 F:      include/net/tc_act/
17037 F:      include/uapi/linux/pkt_cls.h
17038 F:      include/uapi/linux/pkt_sched.h
17039 F:      include/uapi/linux/tc_act/
17040 F:      include/uapi/linux/tc_ematch/
17041 F:      net/sched/
17042
17043 TC90522 MEDIA DRIVER
17044 M:      Akihiro Tsukada <tskd08@gmail.com>
17045 L:      linux-media@vger.kernel.org
17046 S:      Odd Fixes
17047 F:      drivers/media/dvb-frontends/tc90522*
17048
17049 TCP LOW PRIORITY MODULE
17050 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
17051 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
17052 S:      Maintained
17053 W:      http://tcp-lp-mod.sourceforge.net/
17054 F:      net/ipv4/tcp_lp.c
17055
17056 TDA10071 MEDIA DRIVER
17057 M:      Antti Palosaari <crope@iki.fi>
17058 L:      linux-media@vger.kernel.org
17059 S:      Maintained
17060 W:      https://linuxtv.org
17061 W:      http://palosaari.fi/linux/
17062 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17063 T:      git git://linuxtv.org/anttip/media_tree.git
17064 F:      drivers/media/dvb-frontends/tda10071*
17065
17066 TDA18212 MEDIA DRIVER
17067 M:      Antti Palosaari <crope@iki.fi>
17068 L:      linux-media@vger.kernel.org
17069 S:      Maintained
17070 W:      https://linuxtv.org
17071 W:      http://palosaari.fi/linux/
17072 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17073 T:      git git://linuxtv.org/anttip/media_tree.git
17074 F:      drivers/media/tuners/tda18212*
17075
17076 TDA18218 MEDIA DRIVER
17077 M:      Antti Palosaari <crope@iki.fi>
17078 L:      linux-media@vger.kernel.org
17079 S:      Maintained
17080 W:      https://linuxtv.org
17081 W:      http://palosaari.fi/linux/
17082 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17083 T:      git git://linuxtv.org/anttip/media_tree.git
17084 F:      drivers/media/tuners/tda18218*
17085
17086 TDA18250 MEDIA DRIVER
17087 M:      Olli Salonen <olli.salonen@iki.fi>
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/media_tree.git
17093 F:      drivers/media/tuners/tda18250*
17094
17095 TDA18271 MEDIA DRIVER
17096 M:      Michael Krufky <mkrufky@linuxtv.org>
17097 L:      linux-media@vger.kernel.org
17098 S:      Maintained
17099 W:      https://linuxtv.org
17100 W:      http://github.com/mkrufky
17101 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17102 T:      git git://linuxtv.org/mkrufky/tuners.git
17103 F:      drivers/media/tuners/tda18271*
17104
17105 TDA1997x MEDIA DRIVER
17106 M:      Tim Harvey <tharvey@gateworks.com>
17107 L:      linux-media@vger.kernel.org
17108 S:      Maintained
17109 W:      https://linuxtv.org
17110 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17111 F:      drivers/media/i2c/tda1997x.*
17112
17113 TDA827x MEDIA DRIVER
17114 M:      Michael Krufky <mkrufky@linuxtv.org>
17115 L:      linux-media@vger.kernel.org
17116 S:      Maintained
17117 W:      https://linuxtv.org
17118 W:      http://github.com/mkrufky
17119 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17120 T:      git git://linuxtv.org/mkrufky/tuners.git
17121 F:      drivers/media/tuners/tda8290.*
17122
17123 TDA8290 MEDIA DRIVER
17124 M:      Michael Krufky <mkrufky@linuxtv.org>
17125 L:      linux-media@vger.kernel.org
17126 S:      Maintained
17127 W:      https://linuxtv.org
17128 W:      http://github.com/mkrufky
17129 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17130 T:      git git://linuxtv.org/mkrufky/tuners.git
17131 F:      drivers/media/tuners/tda8290.*
17132
17133 TDA9840 MEDIA DRIVER
17134 M:      Hans Verkuil <hverkuil@xs4all.nl>
17135 L:      linux-media@vger.kernel.org
17136 S:      Maintained
17137 W:      https://linuxtv.org
17138 T:      git git://linuxtv.org/media_tree.git
17139 F:      drivers/media/i2c/tda9840*
17140
17141 TEA5761 TUNER DRIVER
17142 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17143 L:      linux-media@vger.kernel.org
17144 S:      Odd fixes
17145 W:      https://linuxtv.org
17146 T:      git git://linuxtv.org/media_tree.git
17147 F:      drivers/media/tuners/tea5761.*
17148
17149 TEA5767 TUNER DRIVER
17150 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17151 L:      linux-media@vger.kernel.org
17152 S:      Maintained
17153 W:      https://linuxtv.org
17154 T:      git git://linuxtv.org/media_tree.git
17155 F:      drivers/media/tuners/tea5767.*
17156
17157 TEA6415C MEDIA DRIVER
17158 M:      Hans Verkuil <hverkuil@xs4all.nl>
17159 L:      linux-media@vger.kernel.org
17160 S:      Maintained
17161 W:      https://linuxtv.org
17162 T:      git git://linuxtv.org/media_tree.git
17163 F:      drivers/media/i2c/tea6415c*
17164
17165 TEA6420 MEDIA DRIVER
17166 M:      Hans Verkuil <hverkuil@xs4all.nl>
17167 L:      linux-media@vger.kernel.org
17168 S:      Maintained
17169 W:      https://linuxtv.org
17170 T:      git git://linuxtv.org/media_tree.git
17171 F:      drivers/media/i2c/tea6420*
17172
17173 TEAM DRIVER
17174 M:      Jiri Pirko <jiri@resnulli.us>
17175 L:      netdev@vger.kernel.org
17176 S:      Supported
17177 F:      drivers/net/team/
17178 F:      include/linux/if_team.h
17179 F:      include/uapi/linux/if_team.h
17180
17181 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
17182 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
17183 S:      Maintained
17184 F:      arch/x86/platform/ts5500/
17185
17186 TECHNOTREND USB IR RECEIVER
17187 M:      Sean Young <sean@mess.org>
17188 L:      linux-media@vger.kernel.org
17189 S:      Maintained
17190 F:      drivers/media/rc/ttusbir.c
17191
17192 TECHWELL TW9910 VIDEO DECODER
17193 L:      linux-media@vger.kernel.org
17194 S:      Orphan
17195 F:      drivers/media/i2c/tw9910.c
17196 F:      include/media/i2c/tw9910.h
17197
17198 TEE SUBSYSTEM
17199 M:      Jens Wiklander <jens.wiklander@linaro.org>
17200 L:      op-tee@lists.trustedfirmware.org
17201 S:      Maintained
17202 F:      Documentation/staging/tee.rst
17203 F:      drivers/tee/
17204 F:      include/linux/tee_drv.h
17205 F:      include/uapi/linux/tee.h
17206
17207 TEGRA ARCHITECTURE SUPPORT
17208 M:      Thierry Reding <thierry.reding@gmail.com>
17209 M:      Jonathan Hunter <jonathanh@nvidia.com>
17210 L:      linux-tegra@vger.kernel.org
17211 S:      Supported
17212 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
17213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
17214 N:      [^a-z]tegra
17215
17216 TEGRA CLOCK DRIVER
17217 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
17218 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
17219 S:      Supported
17220 F:      drivers/clk/tegra/
17221
17222 TEGRA DMA DRIVERS
17223 M:      Laxman Dewangan <ldewangan@nvidia.com>
17224 M:      Jon Hunter <jonathanh@nvidia.com>
17225 S:      Supported
17226 F:      drivers/dma/tegra*
17227
17228 TEGRA I2C DRIVER
17229 M:      Laxman Dewangan <ldewangan@nvidia.com>
17230 R:      Dmitry Osipenko <digetx@gmail.com>
17231 S:      Supported
17232 F:      drivers/i2c/busses/i2c-tegra.c
17233
17234 TEGRA IOMMU DRIVERS
17235 M:      Thierry Reding <thierry.reding@gmail.com>
17236 R:      Krishna Reddy <vdumpa@nvidia.com>
17237 L:      linux-tegra@vger.kernel.org
17238 S:      Supported
17239 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
17240 F:      drivers/iommu/tegra*
17241
17242 TEGRA KBC DRIVER
17243 M:      Laxman Dewangan <ldewangan@nvidia.com>
17244 S:      Supported
17245 F:      drivers/input/keyboard/tegra-kbc.c
17246
17247 TEGRA NAND DRIVER
17248 M:      Stefan Agner <stefan@agner.ch>
17249 M:      Lucas Stach <dev@lynxeye.de>
17250 S:      Maintained
17251 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
17252 F:      drivers/mtd/nand/raw/tegra_nand.c
17253
17254 TEGRA PWM DRIVER
17255 M:      Thierry Reding <thierry.reding@gmail.com>
17256 S:      Supported
17257 F:      drivers/pwm/pwm-tegra.c
17258
17259 TEGRA SERIAL DRIVER
17260 M:      Laxman Dewangan <ldewangan@nvidia.com>
17261 S:      Supported
17262 F:      drivers/tty/serial/serial-tegra.c
17263
17264 TEGRA SPI DRIVER
17265 M:      Laxman Dewangan <ldewangan@nvidia.com>
17266 S:      Supported
17267 F:      drivers/spi/spi-tegra*
17268
17269 TEGRA VIDEO DRIVER
17270 M:      Thierry Reding <thierry.reding@gmail.com>
17271 M:      Jonathan Hunter <jonathanh@nvidia.com>
17272 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
17273 L:      linux-media@vger.kernel.org
17274 L:      linux-tegra@vger.kernel.org
17275 S:      Maintained
17276 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
17277 F:      drivers/staging/media/tegra-video/
17278
17279 TEGRA XUSB PADCTL DRIVER
17280 M:      JC Kuo <jckuo@nvidia.com>
17281 S:      Supported
17282 F:      drivers/phy/tegra/xusb*
17283
17284 TEHUTI ETHERNET DRIVER
17285 M:      Andy Gospodarek <andy@greyhouse.net>
17286 L:      netdev@vger.kernel.org
17287 S:      Supported
17288 F:      drivers/net/ethernet/tehuti/*
17289
17290 TELECOM CLOCK DRIVER FOR MCPL0010
17291 M:      Mark Gross <mark.gross@intel.com>
17292 S:      Supported
17293 F:      drivers/char/tlclk.c
17294
17295 TEMPO SEMICONDUCTOR DRIVERS
17296 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
17297 S:      Maintained
17298 F:      Documentation/devicetree/bindings/sound/tscs*.txt
17299 F:      sound/soc/codecs/tscs*.c
17300 F:      sound/soc/codecs/tscs*.h
17301
17302 TENSILICA XTENSA PORT (xtensa)
17303 M:      Chris Zankel <chris@zankel.net>
17304 M:      Max Filippov <jcmvbkbc@gmail.com>
17305 L:      linux-xtensa@linux-xtensa.org
17306 S:      Maintained
17307 T:      git git://github.com/czankel/xtensa-linux.git
17308 F:      arch/xtensa/
17309 F:      drivers/irqchip/irq-xtensa-*
17310
17311 TEXAS INSTRUMENTS ASoC DRIVERS
17312 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
17313 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17314 S:      Maintained
17315 F:      sound/soc/ti/
17316
17317 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
17318 M:      Ricardo Ribalda <ribalda@kernel.org>
17319 L:      linux-iio@vger.kernel.org
17320 S:      Supported
17321 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
17322 F:      drivers/iio/dac/ti-dac7612.c
17323
17324 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
17325 M:      Nishanth Menon <nm@ti.com>
17326 M:      Tero Kristo <t-kristo@ti.com>
17327 M:      Santosh Shilimkar <ssantosh@kernel.org>
17328 L:      linux-arm-kernel@lists.infradead.org
17329 S:      Maintained
17330 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
17331 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
17332 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
17333 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
17334 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
17335 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
17336 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
17337 F:      drivers/clk/keystone/sci-clk.c
17338 F:      drivers/firmware/ti_sci*
17339 F:      drivers/irqchip/irq-ti-sci-inta.c
17340 F:      drivers/irqchip/irq-ti-sci-intr.c
17341 F:      drivers/reset/reset-ti-sci.c
17342 F:      drivers/soc/ti/ti_sci_inta_msi.c
17343 F:      drivers/soc/ti/ti_sci_pm_domains.c
17344 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
17345 F:      include/linux/soc/ti/ti_sci_inta_msi.h
17346 F:      include/linux/soc/ti/ti_sci_protocol.h
17347
17348 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
17349 M:      Hans Verkuil <hverkuil@xs4all.nl>
17350 L:      linux-media@vger.kernel.org
17351 S:      Maintained
17352 W:      https://linuxtv.org
17353 T:      git git://linuxtv.org/media_tree.git
17354 F:      drivers/media/radio/radio-raremono.c
17355
17356 THERMAL
17357 M:      Zhang Rui <rui.zhang@intel.com>
17358 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
17359 R:      Amit Kucheria <amitk@kernel.org>
17360 L:      linux-pm@vger.kernel.org
17361 S:      Supported
17362 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17363 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
17364 F:      Documentation/devicetree/bindings/thermal/
17365 F:      drivers/thermal/
17366 F:      include/linux/cpu_cooling.h
17367 F:      include/linux/thermal.h
17368 F:      include/uapi/linux/thermal.h
17369
17370 THERMAL DRIVER FOR AMLOGIC SOCS
17371 M:      Guillaume La Roque <glaroque@baylibre.com>
17372 L:      linux-pm@vger.kernel.org
17373 L:      linux-amlogic@lists.infradead.org
17374 S:      Supported
17375 W:      http://linux-meson.com/
17376 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
17377 F:      drivers/thermal/amlogic_thermal.c
17378
17379 THERMAL/CPU_COOLING
17380 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
17381 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
17382 M:      Viresh Kumar <viresh.kumar@linaro.org>
17383 M:      Javi Merino <javi.merino@kernel.org>
17384 L:      linux-pm@vger.kernel.org
17385 S:      Supported
17386 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
17387 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
17388 F:      drivers/thermal/cpufreq_cooling.c
17389 F:      drivers/thermal/cpuidle_cooling.c
17390 F:      include/linux/cpu_cooling.h
17391
17392 THERMAL/POWER_ALLOCATOR
17393 M:      Lukasz Luba <lukasz.luba@arm.com>
17394 L:      linux-pm@vger.kernel.org
17395 S:      Maintained
17396 F:      Documentation/driver-api/thermal/power_allocator.rst
17397 F:      drivers/thermal/gov_power_allocator.c
17398 F:      include/trace/events/thermal_power_allocator.h
17399
17400 THINKPAD ACPI EXTRAS DRIVER
17401 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
17402 L:      ibm-acpi-devel@lists.sourceforge.net
17403 L:      platform-driver-x86@vger.kernel.org
17404 S:      Maintained
17405 W:      http://ibm-acpi.sourceforge.net
17406 W:      http://thinkwiki.org/wiki/Ibm-acpi
17407 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
17408 F:      drivers/platform/x86/thinkpad_acpi.c
17409
17410 THUNDERBOLT DRIVER
17411 M:      Andreas Noever <andreas.noever@gmail.com>
17412 M:      Michael Jamet <michael.jamet@intel.com>
17413 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
17414 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
17415 L:      linux-usb@vger.kernel.org
17416 S:      Maintained
17417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
17418 F:      Documentation/admin-guide/thunderbolt.rst
17419 F:      drivers/thunderbolt/
17420 F:      include/linux/thunderbolt.h
17421
17422 THUNDERBOLT NETWORK DRIVER
17423 M:      Michael Jamet <michael.jamet@intel.com>
17424 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
17425 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
17426 L:      netdev@vger.kernel.org
17427 S:      Maintained
17428 F:      drivers/net/thunderbolt.c
17429
17430 THUNDERX GPIO DRIVER
17431 M:      Robert Richter <rric@kernel.org>
17432 S:      Odd Fixes
17433 F:      drivers/gpio/gpio-thunderx.c
17434
17435 TI AM437X VPFE DRIVER
17436 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17437 L:      linux-media@vger.kernel.org
17438 S:      Maintained
17439 W:      https://linuxtv.org
17440 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17441 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17442 F:      drivers/media/platform/am437x/
17443
17444 TI BANDGAP AND THERMAL DRIVER
17445 M:      Eduardo Valentin <edubezval@gmail.com>
17446 M:      Keerthy <j-keerthy@ti.com>
17447 L:      linux-pm@vger.kernel.org
17448 L:      linux-omap@vger.kernel.org
17449 S:      Maintained
17450 F:      drivers/thermal/ti-soc-thermal/
17451
17452 TI BQ27XXX POWER SUPPLY DRIVER
17453 R:      Dan Murphy <dmurphy@ti.com>
17454 F:      drivers/power/supply/bq27xxx_battery.c
17455 F:      drivers/power/supply/bq27xxx_battery_i2c.c
17456 F:      include/linux/power/bq27xxx_battery.h
17457
17458 TI CDCE706 CLOCK DRIVER
17459 M:      Max Filippov <jcmvbkbc@gmail.com>
17460 S:      Maintained
17461 F:      drivers/clk/clk-cdce706.c
17462
17463 TI CLOCK DRIVER
17464 M:      Tero Kristo <t-kristo@ti.com>
17465 L:      linux-omap@vger.kernel.org
17466 S:      Maintained
17467 F:      drivers/clk/ti/
17468 F:      include/linux/clk/ti.h
17469
17470 TI DAVINCI MACHINE SUPPORT
17471 M:      Sekhar Nori <nsekhar@ti.com>
17472 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
17473 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17474 S:      Supported
17475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
17476 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
17477 F:      arch/arm/boot/dts/da850*
17478 F:      arch/arm/mach-davinci/
17479 F:      drivers/i2c/busses/i2c-davinci.c
17480
17481 TI DAVINCI SERIES CLOCK DRIVER
17482 M:      David Lechner <david@lechnology.com>
17483 R:      Sekhar Nori <nsekhar@ti.com>
17484 S:      Maintained
17485 F:      Documentation/devicetree/bindings/clock/ti/davinci/
17486 F:      drivers/clk/davinci/
17487
17488 TI DAVINCI SERIES GPIO DRIVER
17489 M:      Keerthy <j-keerthy@ti.com>
17490 L:      linux-gpio@vger.kernel.org
17491 S:      Maintained
17492 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
17493 F:      drivers/gpio/gpio-davinci.c
17494
17495 TI DAVINCI SERIES MEDIA DRIVER
17496 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17497 L:      linux-media@vger.kernel.org
17498 S:      Maintained
17499 W:      https://linuxtv.org
17500 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17501 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17502 F:      drivers/media/platform/davinci/
17503 F:      include/media/davinci/
17504
17505 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
17506 R:      David Lechner <david@lechnology.com>
17507 L:      linux-iio@vger.kernel.org
17508 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
17509 F:      drivers/counter/ti-eqep.c
17510
17511 TI ETHERNET SWITCH DRIVER (CPSW)
17512 R:      Grygorii Strashko <grygorii.strashko@ti.com>
17513 L:      linux-omap@vger.kernel.org
17514 L:      netdev@vger.kernel.org
17515 S:      Maintained
17516 F:      drivers/net/ethernet/ti/cpsw*
17517 F:      drivers/net/ethernet/ti/davinci*
17518
17519 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
17520 M:      Alex Dubov <oakad@yahoo.com>
17521 S:      Maintained
17522 W:      http://tifmxx.berlios.de/
17523 F:      drivers/memstick/host/tifm_ms.c
17524 F:      drivers/misc/tifm*
17525 F:      drivers/mmc/host/tifm_sd.c
17526 F:      include/linux/tifm.h
17527
17528 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
17529 M:      Santosh Shilimkar <ssantosh@kernel.org>
17530 L:      linux-kernel@vger.kernel.org
17531 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17532 S:      Maintained
17533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
17534 F:      drivers/soc/ti/*
17535
17536 TI LM49xxx FAMILY ASoC CODEC DRIVERS
17537 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
17538 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
17539 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17540 S:      Maintained
17541 F:      sound/soc/codecs/isabelle*
17542 F:      sound/soc/codecs/lm49453*
17543
17544 TI LP855x BACKLIGHT DRIVER
17545 M:      Milo Kim <milo.kim@ti.com>
17546 S:      Maintained
17547 F:      Documentation/driver-api/backlight/lp855x-driver.rst
17548 F:      drivers/video/backlight/lp855x_bl.c
17549 F:      include/linux/platform_data/lp855x.h
17550
17551 TI LP8727 CHARGER DRIVER
17552 M:      Milo Kim <milo.kim@ti.com>
17553 S:      Maintained
17554 F:      drivers/power/supply/lp8727_charger.c
17555 F:      include/linux/platform_data/lp8727.h
17556
17557 TI LP8788 MFD DRIVER
17558 M:      Milo Kim <milo.kim@ti.com>
17559 S:      Maintained
17560 F:      drivers/iio/adc/lp8788_adc.c
17561 F:      drivers/leds/leds-lp8788.c
17562 F:      drivers/mfd/lp8788*.c
17563 F:      drivers/power/supply/lp8788-charger.c
17564 F:      drivers/regulator/lp8788-*.c
17565 F:      include/linux/mfd/lp8788*.h
17566
17567 TI NETCP ETHERNET DRIVER
17568 M:      Wingman Kwok <w-kwok2@ti.com>
17569 M:      Murali Karicheri <m-karicheri2@ti.com>
17570 L:      netdev@vger.kernel.org
17571 S:      Maintained
17572 F:      drivers/net/ethernet/ti/netcp*
17573
17574 TI PCM3060 ASoC CODEC DRIVER
17575 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
17576 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17577 S:      Maintained
17578 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
17579 F:      sound/soc/codecs/pcm3060*
17580
17581 TI TAS571X FAMILY ASoC CODEC DRIVER
17582 M:      Kevin Cernekee <cernekee@chromium.org>
17583 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17584 S:      Odd Fixes
17585 F:      sound/soc/codecs/tas571x*
17586
17587 TI TCAN4X5X DEVICE DRIVER
17588 M:      Dan Murphy <dmurphy@ti.com>
17589 L:      linux-can@vger.kernel.org
17590 S:      Maintained
17591 F:      Documentation/devicetree/bindings/net/can/tcan4x5x.txt
17592 F:      drivers/net/can/m_can/tcan4x5x.c
17593
17594 TI TRF7970A NFC DRIVER
17595 M:      Mark Greer <mgreer@animalcreek.com>
17596 L:      linux-wireless@vger.kernel.org
17597 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
17598 S:      Supported
17599 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
17600 F:      drivers/nfc/trf7970a.c
17601
17602 TI TWL4030 SERIES SOC CODEC DRIVER
17603 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
17604 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17605 S:      Maintained
17606 F:      sound/soc/codecs/twl4030*
17607
17608 TI VPE/CAL DRIVERS
17609 M:      Benoit Parrot <bparrot@ti.com>
17610 L:      linux-media@vger.kernel.org
17611 S:      Maintained
17612 W:      http://linuxtv.org/
17613 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17614 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
17615 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
17616 F:      drivers/media/platform/ti-vpe/
17617
17618 TI WILINK WIRELESS DRIVERS
17619 L:      linux-wireless@vger.kernel.org
17620 S:      Orphan
17621 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
17622 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
17623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
17624 F:      drivers/net/wireless/ti/
17625 F:      include/linux/wl12xx.h
17626
17627 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
17628 M:      John Stultz <john.stultz@linaro.org>
17629 M:      Thomas Gleixner <tglx@linutronix.de>
17630 R:      Stephen Boyd <sboyd@kernel.org>
17631 L:      linux-kernel@vger.kernel.org
17632 S:      Supported
17633 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
17634 F:      include/linux/clocksource.h
17635 F:      include/linux/time.h
17636 F:      include/linux/timex.h
17637 F:      include/uapi/linux/time.h
17638 F:      include/uapi/linux/timex.h
17639 F:      kernel/time/alarmtimer.c
17640 F:      kernel/time/clocksource.c
17641 F:      kernel/time/ntp.c
17642 F:      kernel/time/time*.c
17643 F:      tools/testing/selftests/timers/
17644
17645 TIPC NETWORK LAYER
17646 M:      Jon Maloy <jmaloy@redhat.com>
17647 M:      Ying Xue <ying.xue@windriver.com>
17648 L:      netdev@vger.kernel.org (core kernel code)
17649 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
17650 S:      Maintained
17651 W:      http://tipc.sourceforge.net/
17652 F:      include/uapi/linux/tipc*.h
17653 F:      net/tipc/
17654
17655 TLAN NETWORK DRIVER
17656 M:      Samuel Chessman <chessman@tux.org>
17657 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
17658 S:      Maintained
17659 W:      http://sourceforge.net/projects/tlan/
17660 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
17661 F:      drivers/net/ethernet/ti/tlan.*
17662
17663 TM6000 VIDEO4LINUX DRIVER
17664 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17665 L:      linux-media@vger.kernel.org
17666 S:      Odd fixes
17667 W:      https://linuxtv.org
17668 T:      git git://linuxtv.org/media_tree.git
17669 F:      Documentation/admin-guide/media/tm6000*
17670 F:      drivers/media/usb/tm6000/
17671
17672 TMIO/SDHI MMC DRIVER
17673 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17674 L:      linux-mmc@vger.kernel.org
17675 S:      Supported
17676 F:      drivers/mmc/host/renesas_sdhi*
17677 F:      drivers/mmc/host/tmio_mmc*
17678 F:      include/linux/mfd/tmio.h
17679
17680 TMP401 HARDWARE MONITOR DRIVER
17681 M:      Guenter Roeck <linux@roeck-us.net>
17682 L:      linux-hwmon@vger.kernel.org
17683 S:      Maintained
17684 F:      Documentation/hwmon/tmp401.rst
17685 F:      drivers/hwmon/tmp401.c
17686
17687 TMP513 HARDWARE MONITOR DRIVER
17688 M:      Eric Tremblay <etremblay@distech-controls.com>
17689 L:      linux-hwmon@vger.kernel.org
17690 S:      Maintained
17691 F:      Documentation/hwmon/tmp513.rst
17692 F:      drivers/hwmon/tmp513.c
17693
17694 TMPFS (SHMEM FILESYSTEM)
17695 M:      Hugh Dickins <hughd@google.com>
17696 L:      linux-mm@kvack.org
17697 S:      Maintained
17698 F:      include/linux/shmem_fs.h
17699 F:      mm/shmem.c
17700
17701 TOMOYO SECURITY MODULE
17702 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
17703 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
17704 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
17705 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
17706 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
17707 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
17708 S:      Maintained
17709 W:      https://tomoyo.osdn.jp/
17710 F:      security/tomoyo/
17711
17712 TOPSTAR LAPTOP EXTRAS DRIVER
17713 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17714 L:      platform-driver-x86@vger.kernel.org
17715 S:      Maintained
17716 F:      drivers/platform/x86/topstar-laptop.c
17717
17718 TORTURE-TEST MODULES
17719 M:      Davidlohr Bueso <dave@stgolabs.net>
17720 M:      "Paul E. McKenney" <paulmck@kernel.org>
17721 M:      Josh Triplett <josh@joshtriplett.org>
17722 L:      linux-kernel@vger.kernel.org
17723 S:      Supported
17724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17725 F:      Documentation/RCU/torture.rst
17726 F:      kernel/locking/locktorture.c
17727 F:      kernel/rcu/rcuscale.c
17728 F:      kernel/rcu/rcutorture.c
17729 F:      kernel/rcu/refscale.c
17730 F:      kernel/torture.c
17731
17732 TOSHIBA ACPI EXTRAS DRIVER
17733 M:      Azael Avalos <coproscefalo@gmail.com>
17734 L:      platform-driver-x86@vger.kernel.org
17735 S:      Maintained
17736 F:      drivers/platform/x86/toshiba_acpi.c
17737
17738 TOSHIBA BLUETOOTH DRIVER
17739 M:      Azael Avalos <coproscefalo@gmail.com>
17740 L:      platform-driver-x86@vger.kernel.org
17741 S:      Maintained
17742 F:      drivers/platform/x86/toshiba_bluetooth.c
17743
17744 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
17745 M:      Azael Avalos <coproscefalo@gmail.com>
17746 L:      platform-driver-x86@vger.kernel.org
17747 S:      Maintained
17748 F:      drivers/platform/x86/toshiba_haps.c
17749
17750 TOSHIBA SMM DRIVER
17751 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
17752 S:      Maintained
17753 W:      http://www.buzzard.org.uk/toshiba/
17754 F:      drivers/char/toshiba.c
17755 F:      include/linux/toshiba.h
17756 F:      include/uapi/linux/toshiba.h
17757
17758 TOSHIBA TC358743 DRIVER
17759 M:      Mats Randgaard <matrandg@cisco.com>
17760 L:      linux-media@vger.kernel.org
17761 S:      Maintained
17762 F:      drivers/media/i2c/tc358743*
17763 F:      include/media/i2c/tc358743.h
17764
17765 TOSHIBA WMI HOTKEYS DRIVER
17766 M:      Azael Avalos <coproscefalo@gmail.com>
17767 L:      platform-driver-x86@vger.kernel.org
17768 S:      Maintained
17769 F:      drivers/platform/x86/toshiba-wmi.c
17770
17771 TPM DEVICE DRIVER
17772 M:      Peter Huewe <peterhuewe@gmx.de>
17773 M:      Jarkko Sakkinen <jarkko@kernel.org>
17774 R:      Jason Gunthorpe <jgg@ziepe.ca>
17775 L:      linux-integrity@vger.kernel.org
17776 S:      Maintained
17777 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
17778 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
17779 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
17780 F:      drivers/char/tpm/
17781
17782 TRACING
17783 M:      Steven Rostedt <rostedt@goodmis.org>
17784 M:      Ingo Molnar <mingo@redhat.com>
17785 S:      Maintained
17786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
17787 F:      Documentation/trace/ftrace.rst
17788 F:      arch/*/*/*/ftrace.h
17789 F:      arch/*/kernel/ftrace.c
17790 F:      include/*/ftrace.h
17791 F:      include/linux/trace*.h
17792 F:      include/trace/
17793 F:      kernel/trace/
17794 F:      tools/testing/selftests/ftrace/
17795
17796 TRACING MMIO ACCESSES (MMIOTRACE)
17797 M:      Steven Rostedt <rostedt@goodmis.org>
17798 M:      Ingo Molnar <mingo@kernel.org>
17799 R:      Karol Herbst <karolherbst@gmail.com>
17800 R:      Pekka Paalanen <ppaalanen@gmail.com>
17801 L:      linux-kernel@vger.kernel.org
17802 L:      nouveau@lists.freedesktop.org
17803 S:      Maintained
17804 F:      arch/x86/mm/kmmio.c
17805 F:      arch/x86/mm/mmio-mod.c
17806 F:      arch/x86/mm/testmmiotrace.c
17807 F:      include/linux/mmiotrace.h
17808 F:      kernel/trace/trace_mmiotrace.c
17809
17810 TRIVIAL PATCHES
17811 M:      Jiri Kosina <trivial@kernel.org>
17812 S:      Maintained
17813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
17814 K:      ^Subject:.*(?i)trivial
17815
17816 TTY LAYER
17817 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17818 M:      Jiri Slaby <jirislaby@kernel.org>
17819 S:      Supported
17820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
17821 F:      Documentation/driver-api/serial/
17822 F:      drivers/tty/
17823 F:      drivers/tty/serial/serial_core.c
17824 F:      include/linux/serial.h
17825 F:      include/linux/serial_core.h
17826 F:      include/linux/tty.h
17827 F:      include/uapi/linux/serial.h
17828 F:      include/uapi/linux/serial_core.h
17829 F:      include/uapi/linux/tty.h
17830
17831 TUA9001 MEDIA DRIVER
17832 M:      Antti Palosaari <crope@iki.fi>
17833 L:      linux-media@vger.kernel.org
17834 S:      Maintained
17835 W:      https://linuxtv.org
17836 W:      http://palosaari.fi/linux/
17837 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17838 T:      git git://linuxtv.org/anttip/media_tree.git
17839 F:      drivers/media/tuners/tua9001*
17840
17841 TULIP NETWORK DRIVERS
17842 L:      netdev@vger.kernel.org
17843 L:      linux-parisc@vger.kernel.org
17844 S:      Orphan
17845 F:      drivers/net/ethernet/dec/tulip/
17846
17847 TUN/TAP driver
17848 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
17849 S:      Maintained
17850 W:      http://vtun.sourceforge.net/tun
17851 F:      Documentation/networking/tuntap.rst
17852 F:      arch/um/os-Linux/drivers/
17853
17854 TURBOCHANNEL SUBSYSTEM
17855 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
17856 M:      Ralf Baechle <ralf@linux-mips.org>
17857 L:      linux-mips@vger.kernel.org
17858 S:      Maintained
17859 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
17860 F:      drivers/tc/
17861 F:      include/linux/tc.h
17862
17863 TURBOSTAT UTILITY
17864 M:      "Len Brown" <lenb@kernel.org>
17865 L:      linux-pm@vger.kernel.org
17866 S:      Supported
17867 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17868 B:      https://bugzilla.kernel.org
17869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
17870 F:      tools/power/x86/turbostat/
17871
17872 TW5864 VIDEO4LINUX DRIVER
17873 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17874 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17875 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
17876 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17877 L:      linux-media@vger.kernel.org
17878 S:      Supported
17879 F:      drivers/media/pci/tw5864/
17880
17881 TW68 VIDEO4LINUX DRIVER
17882 M:      Hans Verkuil <hverkuil@xs4all.nl>
17883 L:      linux-media@vger.kernel.org
17884 S:      Odd Fixes
17885 W:      https://linuxtv.org
17886 T:      git git://linuxtv.org/media_tree.git
17887 F:      drivers/media/pci/tw68/
17888
17889 TW686X VIDEO4LINUX DRIVER
17890 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17891 L:      linux-media@vger.kernel.org
17892 S:      Maintained
17893 W:      http://linuxtv.org
17894 T:      git git://linuxtv.org/media_tree.git
17895 F:      drivers/media/pci/tw686x/
17896
17897 UACCE ACCELERATOR FRAMEWORK
17898 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
17899 M:      Zhou Wang <wangzhou1@hisilicon.com>
17900 L:      linux-accelerators@lists.ozlabs.org
17901 L:      linux-kernel@vger.kernel.org
17902 S:      Maintained
17903 F:      Documentation/ABI/testing/sysfs-driver-uacce
17904 F:      Documentation/misc-devices/uacce.rst
17905 F:      drivers/misc/uacce/
17906 F:      include/linux/uacce.h
17907 F:      include/uapi/misc/uacce/
17908
17909 UBI FILE SYSTEM (UBIFS)
17910 M:      Richard Weinberger <richard@nod.at>
17911 L:      linux-mtd@lists.infradead.org
17912 S:      Supported
17913 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
17914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17916 F:      Documentation/filesystems/ubifs-authentication.rst
17917 F:      Documentation/filesystems/ubifs.rst
17918 F:      fs/ubifs/
17919
17920 UCLINUX (M68KNOMMU AND COLDFIRE)
17921 M:      Greg Ungerer <gerg@linux-m68k.org>
17922 L:      linux-m68k@lists.linux-m68k.org
17923 L:      uclinux-dev@uclinux.org  (subscribers-only)
17924 S:      Maintained
17925 W:      http://www.linux-m68k.org/
17926 W:      http://www.uclinux.org/
17927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
17928 F:      arch/m68k/*/*_no.*
17929 F:      arch/m68k/68*/
17930 F:      arch/m68k/coldfire/
17931 F:      arch/m68k/include/asm/*_no.*
17932
17933 UDF FILESYSTEM
17934 M:      Jan Kara <jack@suse.com>
17935 S:      Maintained
17936 F:      Documentation/filesystems/udf.rst
17937 F:      fs/udf/
17938
17939 UDRAW TABLET
17940 M:      Bastien Nocera <hadess@hadess.net>
17941 L:      linux-input@vger.kernel.org
17942 S:      Maintained
17943 F:      drivers/hid/hid-udraw-ps3.c
17944
17945 UFS FILESYSTEM
17946 M:      Evgeniy Dushistov <dushistov@mail.ru>
17947 S:      Maintained
17948 F:      Documentation/admin-guide/ufs.rst
17949 F:      fs/ufs/
17950
17951 UHID USERSPACE HID IO DRIVER
17952 M:      David Rheinsberg <david.rheinsberg@gmail.com>
17953 L:      linux-input@vger.kernel.org
17954 S:      Maintained
17955 F:      drivers/hid/uhid.c
17956 F:      include/uapi/linux/uhid.h
17957
17958 ULPI BUS
17959 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17960 L:      linux-usb@vger.kernel.org
17961 S:      Maintained
17962 F:      drivers/usb/common/ulpi.c
17963 F:      include/linux/ulpi/
17964
17965 UNICODE SUBSYSTEM
17966 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
17967 L:      linux-fsdevel@vger.kernel.org
17968 S:      Supported
17969 F:      fs/unicode/
17970
17971 UNIFDEF
17972 M:      Tony Finch <dot@dotat.at>
17973 S:      Maintained
17974 W:      http://dotat.at/prog/unifdef
17975 F:      scripts/unifdef.c
17976
17977 UNIFORM CDROM DRIVER
17978 M:      Jens Axboe <axboe@kernel.dk>
17979 S:      Maintained
17980 W:      http://www.kernel.dk
17981 F:      Documentation/cdrom/
17982 F:      drivers/cdrom/cdrom.c
17983 F:      include/linux/cdrom.h
17984 F:      include/uapi/linux/cdrom.h
17985
17986 UNISYS S-PAR DRIVERS
17987 M:      David Kershner <david.kershner@unisys.com>
17988 L:      sparmaintainer@unisys.com (Unisys internal)
17989 S:      Supported
17990 F:      drivers/staging/unisys/
17991 F:      drivers/visorbus/
17992 F:      include/linux/visorbus.h
17993
17994 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
17995 R:      Alim Akhtar <alim.akhtar@samsung.com>
17996 R:      Avri Altman <avri.altman@wdc.com>
17997 L:      linux-scsi@vger.kernel.org
17998 S:      Supported
17999 F:      Documentation/scsi/ufs.rst
18000 F:      drivers/scsi/ufs/
18001
18002 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
18003 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
18004 L:      linux-scsi@vger.kernel.org
18005 S:      Supported
18006 F:      drivers/scsi/ufs/*dwc*
18007
18008 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
18009 M:      Stanley Chu <stanley.chu@mediatek.com>
18010 L:      linux-scsi@vger.kernel.org
18011 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
18012 S:      Maintained
18013 F:      drivers/scsi/ufs/ufs-mediatek*
18014
18015 UNSORTED BLOCK IMAGES (UBI)
18016 M:      Richard Weinberger <richard@nod.at>
18017 L:      linux-mtd@lists.infradead.org
18018 S:      Supported
18019 W:      http://www.linux-mtd.infradead.org/
18020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18022 F:      drivers/mtd/ubi/
18023 F:      include/linux/mtd/ubi.h
18024 F:      include/uapi/mtd/ubi-user.h
18025
18026 USB "USBNET" DRIVER FRAMEWORK
18027 M:      Oliver Neukum <oneukum@suse.com>
18028 L:      netdev@vger.kernel.org
18029 S:      Maintained
18030 W:      http://www.linux-usb.org/usbnet
18031 F:      drivers/net/usb/usbnet.c
18032 F:      include/linux/usb/usbnet.h
18033
18034 USB ACM DRIVER
18035 M:      Oliver Neukum <oneukum@suse.com>
18036 L:      linux-usb@vger.kernel.org
18037 S:      Maintained
18038 F:      Documentation/usb/acm.rst
18039 F:      drivers/usb/class/cdc-acm.*
18040
18041 USB APPLE MFI FASTCHARGE DRIVER
18042 M:      Bastien Nocera <hadess@hadess.net>
18043 L:      linux-usb@vger.kernel.org
18044 S:      Maintained
18045 F:      drivers/usb/misc/apple-mfi-fastcharge.c
18046
18047 USB AR5523 WIRELESS DRIVER
18048 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
18049 L:      linux-wireless@vger.kernel.org
18050 S:      Maintained
18051 F:      drivers/net/wireless/ath/ar5523/
18052
18053 USB ATTACHED SCSI
18054 M:      Oliver Neukum <oneukum@suse.com>
18055 L:      linux-usb@vger.kernel.org
18056 L:      linux-scsi@vger.kernel.org
18057 S:      Maintained
18058 F:      drivers/usb/storage/uas.c
18059
18060 USB CDC ETHERNET DRIVER
18061 M:      Oliver Neukum <oliver@neukum.org>
18062 L:      linux-usb@vger.kernel.org
18063 S:      Maintained
18064 F:      drivers/net/usb/cdc_*.c
18065 F:      include/uapi/linux/usb/cdc.h
18066
18067 USB CHAOSKEY DRIVER
18068 M:      Keith Packard <keithp@keithp.com>
18069 L:      linux-usb@vger.kernel.org
18070 S:      Maintained
18071 F:      drivers/usb/misc/chaoskey.c
18072
18073 USB CYPRESS C67X00 DRIVER
18074 M:      Peter Korsgaard <jacmet@sunsite.dk>
18075 L:      linux-usb@vger.kernel.org
18076 S:      Maintained
18077 F:      drivers/usb/c67x00/
18078
18079 USB DAVICOM DM9601 DRIVER
18080 M:      Peter Korsgaard <jacmet@sunsite.dk>
18081 L:      netdev@vger.kernel.org
18082 S:      Maintained
18083 W:      http://www.linux-usb.org/usbnet
18084 F:      drivers/net/usb/dm9601.c
18085
18086 USB EHCI DRIVER
18087 M:      Alan Stern <stern@rowland.harvard.edu>
18088 L:      linux-usb@vger.kernel.org
18089 S:      Maintained
18090 F:      Documentation/usb/ehci.rst
18091 F:      drivers/usb/host/ehci*
18092
18093 USB GADGET/PERIPHERAL SUBSYSTEM
18094 M:      Felipe Balbi <balbi@kernel.org>
18095 L:      linux-usb@vger.kernel.org
18096 S:      Maintained
18097 W:      http://www.linux-usb.org/gadget
18098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18099 F:      drivers/usb/gadget/
18100 F:      include/linux/usb/gadget*
18101
18102 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
18103 M:      Jiri Kosina <jikos@kernel.org>
18104 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
18105 L:      linux-usb@vger.kernel.org
18106 S:      Maintained
18107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
18108 F:      Documentation/hid/hiddev.rst
18109 F:      drivers/hid/usbhid/
18110
18111 USB INTEL XHCI ROLE MUX DRIVER
18112 M:      Hans de Goede <hdegoede@redhat.com>
18113 L:      linux-usb@vger.kernel.org
18114 S:      Maintained
18115 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
18116
18117 USB IP DRIVER FOR HISILICON KIRIN
18118 M:      Yu Chen <chenyu56@huawei.com>
18119 M:      Binghui Wang <wangbinghui@hisilicon.com>
18120 L:      linux-usb@vger.kernel.org
18121 S:      Maintained
18122 F:      Documentation/devicetree/bindings/phy/phy-hi3660-usb3.txt
18123 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
18124
18125 USB ISP116X DRIVER
18126 M:      Olav Kongas <ok@artecdesign.ee>
18127 L:      linux-usb@vger.kernel.org
18128 S:      Maintained
18129 F:      drivers/usb/host/isp116x*
18130 F:      include/linux/usb/isp116x.h
18131
18132 USB LAN78XX ETHERNET DRIVER
18133 M:      Woojung Huh <woojung.huh@microchip.com>
18134 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
18135 L:      netdev@vger.kernel.org
18136 S:      Maintained
18137 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
18138 F:      drivers/net/usb/lan78xx.*
18139 F:      include/dt-bindings/net/microchip-lan78xx.h
18140
18141 USB MASS STORAGE DRIVER
18142 M:      Alan Stern <stern@rowland.harvard.edu>
18143 L:      linux-usb@vger.kernel.org
18144 L:      usb-storage@lists.one-eyed-alien.net
18145 S:      Maintained
18146 F:      drivers/usb/storage/
18147
18148 USB MIDI DRIVER
18149 M:      Clemens Ladisch <clemens@ladisch.de>
18150 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18151 S:      Maintained
18152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18153 F:      sound/usb/midi.*
18154
18155 USB NETWORKING DRIVERS
18156 L:      linux-usb@vger.kernel.org
18157 S:      Odd Fixes
18158 F:      drivers/net/usb/
18159
18160 USB OHCI DRIVER
18161 M:      Alan Stern <stern@rowland.harvard.edu>
18162 L:      linux-usb@vger.kernel.org
18163 S:      Maintained
18164 F:      Documentation/usb/ohci.rst
18165 F:      drivers/usb/host/ohci*
18166
18167 USB OTG FSM (Finite State Machine)
18168 M:      Peter Chen <Peter.Chen@nxp.com>
18169 L:      linux-usb@vger.kernel.org
18170 S:      Maintained
18171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
18172 F:      drivers/usb/common/usb-otg-fsm.c
18173
18174 USB OVER IP DRIVER
18175 M:      Valentina Manea <valentina.manea.m@gmail.com>
18176 M:      Shuah Khan <shuah@kernel.org>
18177 M:      Shuah Khan <skhan@linuxfoundation.org>
18178 L:      linux-usb@vger.kernel.org
18179 S:      Maintained
18180 F:      Documentation/usb/usbip_protocol.rst
18181 F:      drivers/usb/usbip/
18182 F:      tools/testing/selftests/drivers/usb/usbip/
18183 F:      tools/usb/usbip/
18184
18185 USB PEGASUS DRIVER
18186 M:      Petko Manolov <petkan@nucleusys.com>
18187 L:      linux-usb@vger.kernel.org
18188 L:      netdev@vger.kernel.org
18189 S:      Maintained
18190 W:      https://github.com/petkan/pegasus
18191 T:      git git://github.com/petkan/pegasus.git
18192 F:      drivers/net/usb/pegasus.*
18193
18194 USB PHY LAYER
18195 M:      Felipe Balbi <balbi@kernel.org>
18196 L:      linux-usb@vger.kernel.org
18197 S:      Maintained
18198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18199 F:      drivers/usb/phy/
18200
18201 USB PRINTER DRIVER (usblp)
18202 M:      Pete Zaitcev <zaitcev@redhat.com>
18203 L:      linux-usb@vger.kernel.org
18204 S:      Supported
18205 F:      drivers/usb/class/usblp.c
18206
18207 USB QMI WWAN NETWORK DRIVER
18208 M:      Bjørn Mork <bjorn@mork.no>
18209 L:      netdev@vger.kernel.org
18210 S:      Maintained
18211 F:      Documentation/ABI/testing/sysfs-class-net-qmi
18212 F:      drivers/net/usb/qmi_wwan.c
18213
18214 USB RTL8150 DRIVER
18215 M:      Petko Manolov <petkan@nucleusys.com>
18216 L:      linux-usb@vger.kernel.org
18217 L:      netdev@vger.kernel.org
18218 S:      Maintained
18219 W:      https://github.com/petkan/rtl8150
18220 T:      git git://github.com/petkan/rtl8150.git
18221 F:      drivers/net/usb/rtl8150.c
18222
18223 USB SERIAL SUBSYSTEM
18224 M:      Johan Hovold <johan@kernel.org>
18225 L:      linux-usb@vger.kernel.org
18226 S:      Maintained
18227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
18228 F:      Documentation/usb/usb-serial.rst
18229 F:      drivers/usb/serial/
18230 F:      include/linux/usb/serial.h
18231
18232 USB SMSC75XX ETHERNET DRIVER
18233 M:      Steve Glendinning <steve.glendinning@shawell.net>
18234 L:      netdev@vger.kernel.org
18235 S:      Maintained
18236 F:      drivers/net/usb/smsc75xx.*
18237
18238 USB SMSC95XX ETHERNET DRIVER
18239 M:      Steve Glendinning <steve.glendinning@shawell.net>
18240 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
18241 L:      netdev@vger.kernel.org
18242 S:      Maintained
18243 F:      drivers/net/usb/smsc95xx.*
18244
18245 USB SUBSYSTEM
18246 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18247 L:      linux-usb@vger.kernel.org
18248 S:      Supported
18249 W:      http://www.linux-usb.org
18250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
18251 F:      Documentation/devicetree/bindings/usb/
18252 F:      Documentation/usb/
18253 F:      drivers/usb/
18254 F:      include/linux/usb.h
18255 F:      include/linux/usb/
18256
18257 USB TYPEC BUS FOR ALTERNATE MODES
18258 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18259 L:      linux-usb@vger.kernel.org
18260 S:      Maintained
18261 F:      Documentation/ABI/testing/sysfs-bus-typec
18262 F:      Documentation/driver-api/usb/typec_bus.rst
18263 F:      drivers/usb/typec/altmodes/
18264 F:      include/linux/usb/typec_altmode.h
18265
18266 USB TYPEC CLASS
18267 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18268 L:      linux-usb@vger.kernel.org
18269 S:      Maintained
18270 F:      Documentation/ABI/testing/sysfs-class-typec
18271 F:      Documentation/driver-api/usb/typec.rst
18272 F:      drivers/usb/typec/
18273 F:      include/linux/usb/typec.h
18274
18275 USB TYPEC INTEL PMC MUX DRIVER
18276 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18277 L:      linux-usb@vger.kernel.org
18278 S:      Maintained
18279 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
18280 F:      drivers/usb/typec/mux/intel_pmc_mux.c
18281
18282 USB TYPEC PI3USB30532 MUX DRIVER
18283 M:      Hans de Goede <hdegoede@redhat.com>
18284 L:      linux-usb@vger.kernel.org
18285 S:      Maintained
18286 F:      drivers/usb/typec/mux/pi3usb30532.c
18287
18288 USB TYPEC PORT CONTROLLER DRIVERS
18289 M:      Guenter Roeck <linux@roeck-us.net>
18290 L:      linux-usb@vger.kernel.org
18291 S:      Maintained
18292 F:      drivers/usb/typec/tcpm/
18293
18294 USB UHCI DRIVER
18295 M:      Alan Stern <stern@rowland.harvard.edu>
18296 L:      linux-usb@vger.kernel.org
18297 S:      Maintained
18298 F:      drivers/usb/host/uhci*
18299
18300 USB VIDEO CLASS
18301 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18302 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
18303 L:      linux-media@vger.kernel.org
18304 S:      Maintained
18305 W:      http://www.ideasonboard.org/uvc/
18306 T:      git git://linuxtv.org/media_tree.git
18307 F:      drivers/media/usb/uvc/
18308 F:      include/uapi/linux/uvcvideo.h
18309
18310 USB WEBCAM GADGET
18311 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18312 L:      linux-usb@vger.kernel.org
18313 S:      Maintained
18314 F:      drivers/usb/gadget/function/*uvc*
18315 F:      drivers/usb/gadget/legacy/webcam.c
18316 F:      include/uapi/linux/usb/g_uvc.h
18317
18318 USB WIRELESS RNDIS DRIVER (rndis_wlan)
18319 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
18320 L:      linux-wireless@vger.kernel.org
18321 S:      Maintained
18322 F:      drivers/net/wireless/rndis_wlan.c
18323
18324 USB XHCI DRIVER
18325 M:      Mathias Nyman <mathias.nyman@intel.com>
18326 L:      linux-usb@vger.kernel.org
18327 S:      Supported
18328 F:      drivers/usb/host/pci-quirks*
18329 F:      drivers/usb/host/xhci*
18330
18331 USB ZD1201 DRIVER
18332 L:      linux-wireless@vger.kernel.org
18333 S:      Orphan
18334 W:      http://linux-lc100020.sourceforge.net
18335 F:      drivers/net/wireless/zydas/zd1201.*
18336
18337 USB ZR364XX DRIVER
18338 M:      Antoine Jacquet <royale@zerezo.com>
18339 L:      linux-usb@vger.kernel.org
18340 L:      linux-media@vger.kernel.org
18341 S:      Maintained
18342 W:      http://royale.zerezo.com/zr364xx/
18343 T:      git git://linuxtv.org/media_tree.git
18344 F:      Documentation/admin-guide/media/zr364xx*
18345 F:      drivers/media/usb/zr364xx/
18346
18347 USER-MODE LINUX (UML)
18348 M:      Jeff Dike <jdike@addtoit.com>
18349 M:      Richard Weinberger <richard@nod.at>
18350 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
18351 L:      linux-um@lists.infradead.org
18352 S:      Maintained
18353 W:      http://user-mode-linux.sourceforge.net
18354 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
18355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
18356 F:      Documentation/virt/uml/
18357 F:      arch/um/
18358 F:      arch/x86/um/
18359 F:      fs/hostfs/
18360
18361 USERSPACE COPYIN/COPYOUT (UIOVEC)
18362 M:      Alexander Viro <viro@zeniv.linux.org.uk>
18363 S:      Maintained
18364 F:      include/linux/uio.h
18365 F:      lib/iov_iter.c
18366
18367 USERSPACE DMA BUFFER DRIVER
18368 M:      Gerd Hoffmann <kraxel@redhat.com>
18369 L:      dri-devel@lists.freedesktop.org
18370 S:      Maintained
18371 T:      git git://anongit.freedesktop.org/drm/drm-misc
18372 F:      drivers/dma-buf/udmabuf.c
18373 F:      include/uapi/linux/udmabuf.h
18374
18375 USERSPACE I/O (UIO)
18376 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18377 S:      Maintained
18378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18379 F:      Documentation/driver-api/uio-howto.rst
18380 F:      drivers/uio/
18381 F:      include/linux/uio_driver.h
18382
18383 UTIL-LINUX PACKAGE
18384 M:      Karel Zak <kzak@redhat.com>
18385 L:      util-linux@vger.kernel.org
18386 S:      Maintained
18387 W:      http://en.wikipedia.org/wiki/Util-linux
18388 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
18389
18390 UUID HELPERS
18391 M:      Christoph Hellwig <hch@lst.de>
18392 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18393 L:      linux-kernel@vger.kernel.org
18394 S:      Maintained
18395 T:      git git://git.infradead.org/users/hch/uuid.git
18396 F:      include/linux/uuid.h
18397 F:      include/uapi/linux/uuid.h
18398 F:      lib/test_uuid.c
18399 F:      lib/uuid.c
18400
18401 UVESAFB DRIVER
18402 M:      Michal Januszewski <spock@gentoo.org>
18403 L:      linux-fbdev@vger.kernel.org
18404 S:      Maintained
18405 W:      https://github.com/mjanusz/v86d
18406 F:      Documentation/fb/uvesafb.rst
18407 F:      drivers/video/fbdev/uvesafb.*
18408
18409 Ux500 CLOCK DRIVERS
18410 M:      Ulf Hansson <ulf.hansson@linaro.org>
18411 L:      linux-clk@vger.kernel.org
18412 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18413 S:      Maintained
18414 F:      drivers/clk/ux500/
18415
18416 VF610 NAND DRIVER
18417 M:      Stefan Agner <stefan@agner.ch>
18418 L:      linux-mtd@lists.infradead.org
18419 S:      Supported
18420 F:      drivers/mtd/nand/raw/vf610_nfc.c
18421
18422 VFAT/FAT/MSDOS FILESYSTEM
18423 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
18424 S:      Maintained
18425 F:      Documentation/filesystems/vfat.rst
18426 F:      fs/fat/
18427
18428 VFIO DRIVER
18429 M:      Alex Williamson <alex.williamson@redhat.com>
18430 R:      Cornelia Huck <cohuck@redhat.com>
18431 L:      kvm@vger.kernel.org
18432 S:      Maintained
18433 T:      git git://github.com/awilliam/linux-vfio.git
18434 F:      Documentation/driver-api/vfio.rst
18435 F:      drivers/vfio/
18436 F:      include/linux/vfio.h
18437 F:      include/uapi/linux/vfio.h
18438
18439 VFIO FSL-MC DRIVER
18440 M:      Diana Craciun <diana.craciun@oss.nxp.com>
18441 L:      kvm@vger.kernel.org
18442 S:      Maintained
18443 F:      drivers/vfio/fsl-mc/
18444
18445 VFIO MEDIATED DEVICE DRIVERS
18446 M:      Kirti Wankhede <kwankhede@nvidia.com>
18447 L:      kvm@vger.kernel.org
18448 S:      Maintained
18449 F:      Documentation/driver-api/vfio-mediated-device.rst
18450 F:      drivers/vfio/mdev/
18451 F:      include/linux/mdev.h
18452 F:      samples/vfio-mdev/
18453
18454 VFIO PLATFORM DRIVER
18455 M:      Eric Auger <eric.auger@redhat.com>
18456 L:      kvm@vger.kernel.org
18457 S:      Maintained
18458 F:      drivers/vfio/platform/
18459
18460 VGA_SWITCHEROO
18461 R:      Lukas Wunner <lukas@wunner.de>
18462 S:      Maintained
18463 T:      git git://anongit.freedesktop.org/drm/drm-misc
18464 F:      Documentation/gpu/vga-switcheroo.rst
18465 F:      drivers/gpu/vga/vga_switcheroo.c
18466 F:      include/linux/vga_switcheroo.h
18467
18468 VIA RHINE NETWORK DRIVER
18469 S:      Maintained
18470 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
18471 F:      drivers/net/ethernet/via/via-rhine.c
18472
18473 VIA SD/MMC CARD CONTROLLER DRIVER
18474 M:      Bruce Chang <brucechang@via.com.tw>
18475 M:      Harald Welte <HaraldWelte@viatech.com>
18476 S:      Maintained
18477 F:      drivers/mmc/host/via-sdmmc.c
18478
18479 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
18480 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
18481 L:      linux-fbdev@vger.kernel.org
18482 S:      Maintained
18483 F:      drivers/video/fbdev/via/
18484 F:      include/linux/via-core.h
18485 F:      include/linux/via-gpio.h
18486 F:      include/linux/via_i2c.h
18487
18488 VIA VELOCITY NETWORK DRIVER
18489 M:      Francois Romieu <romieu@fr.zoreil.com>
18490 L:      netdev@vger.kernel.org
18491 S:      Maintained
18492 F:      drivers/net/ethernet/via/via-velocity.*
18493
18494 VICODEC VIRTUAL CODEC DRIVER
18495 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
18496 L:      linux-media@vger.kernel.org
18497 S:      Maintained
18498 W:      https://linuxtv.org
18499 T:      git git://linuxtv.org/media_tree.git
18500 F:      drivers/media/test-drivers/vicodec/*
18501
18502 VIDEO I2C POLLING DRIVER
18503 M:      Matt Ranostay <matt.ranostay@konsulko.com>
18504 L:      linux-media@vger.kernel.org
18505 S:      Maintained
18506 F:      drivers/media/i2c/video-i2c.c
18507
18508 VIDEO MULTIPLEXER DRIVER
18509 M:      Philipp Zabel <p.zabel@pengutronix.de>
18510 L:      linux-media@vger.kernel.org
18511 S:      Maintained
18512 F:      drivers/media/platform/video-mux.c
18513
18514 VIDEOBUF2 FRAMEWORK
18515 M:      Tomasz Figa <tfiga@chromium.org>
18516 M:      Marek Szyprowski <m.szyprowski@samsung.com>
18517 L:      linux-media@vger.kernel.org
18518 S:      Maintained
18519 F:      drivers/media/common/videobuf2/*
18520 F:      include/media/videobuf2-*
18521
18522 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
18523 M:      Helen Koike <helen.koike@collabora.com>
18524 R:      Shuah Khan <skhan@linuxfoundation.org>
18525 L:      linux-media@vger.kernel.org
18526 S:      Maintained
18527 W:      https://linuxtv.org
18528 T:      git git://linuxtv.org/media_tree.git
18529 F:      drivers/media/test-drivers/vimc/*
18530
18531 VIRT LIB
18532 M:      Alex Williamson <alex.williamson@redhat.com>
18533 M:      Paolo Bonzini <pbonzini@redhat.com>
18534 L:      kvm@vger.kernel.org
18535 S:      Supported
18536 F:      virt/lib/
18537
18538 VIRTIO AND VHOST VSOCK DRIVER
18539 M:      Stefan Hajnoczi <stefanha@redhat.com>
18540 M:      Stefano Garzarella <sgarzare@redhat.com>
18541 L:      kvm@vger.kernel.org
18542 L:      virtualization@lists.linux-foundation.org
18543 L:      netdev@vger.kernel.org
18544 S:      Maintained
18545 F:      drivers/net/vsockmon.c
18546 F:      drivers/vhost/vsock.c
18547 F:      include/linux/virtio_vsock.h
18548 F:      include/uapi/linux/virtio_vsock.h
18549 F:      include/uapi/linux/vm_sockets_diag.h
18550 F:      include/uapi/linux/vsockmon.h
18551 F:      net/vmw_vsock/af_vsock_tap.c
18552 F:      net/vmw_vsock/diag.c
18553 F:      net/vmw_vsock/virtio_transport.c
18554 F:      net/vmw_vsock/virtio_transport_common.c
18555 F:      net/vmw_vsock/vsock_loopback.c
18556 F:      tools/testing/vsock/
18557
18558 VIRTIO BLOCK AND SCSI DRIVERS
18559 M:      "Michael S. Tsirkin" <mst@redhat.com>
18560 M:      Jason Wang <jasowang@redhat.com>
18561 R:      Paolo Bonzini <pbonzini@redhat.com>
18562 R:      Stefan Hajnoczi <stefanha@redhat.com>
18563 L:      virtualization@lists.linux-foundation.org
18564 S:      Maintained
18565 F:      drivers/block/virtio_blk.c
18566 F:      drivers/scsi/virtio_scsi.c
18567 F:      drivers/vhost/scsi.c
18568 F:      include/uapi/linux/virtio_blk.h
18569 F:      include/uapi/linux/virtio_scsi.h
18570
18571 VIRTIO CONSOLE DRIVER
18572 M:      Amit Shah <amit@kernel.org>
18573 L:      virtualization@lists.linux-foundation.org
18574 S:      Maintained
18575 F:      drivers/char/virtio_console.c
18576 F:      include/linux/virtio_console.h
18577 F:      include/uapi/linux/virtio_console.h
18578
18579 VIRTIO CORE AND NET DRIVERS
18580 M:      "Michael S. Tsirkin" <mst@redhat.com>
18581 M:      Jason Wang <jasowang@redhat.com>
18582 L:      virtualization@lists.linux-foundation.org
18583 S:      Maintained
18584 F:      Documentation/devicetree/bindings/virtio/
18585 F:      drivers/block/virtio_blk.c
18586 F:      drivers/crypto/virtio/
18587 F:      drivers/net/virtio_net.c
18588 F:      drivers/vdpa/
18589 F:      drivers/virtio/
18590 F:      include/linux/vdpa.h
18591 F:      include/linux/virtio*.h
18592 F:      include/uapi/linux/virtio_*.h
18593 F:      tools/virtio/
18594
18595 VIRTIO BALLOON
18596 M:      "Michael S. Tsirkin" <mst@redhat.com>
18597 M:      David Hildenbrand <david@redhat.com>
18598 L:      virtualization@lists.linux-foundation.org
18599 S:      Maintained
18600 F:      drivers/virtio/virtio_balloon.c
18601 F:      include/uapi/linux/virtio_balloon.h
18602 F:      include/linux/balloon_compaction.h
18603 F:      mm/balloon_compaction.c
18604
18605 VIRTIO CRYPTO DRIVER
18606 M:      Gonglei <arei.gonglei@huawei.com>
18607 L:      virtualization@lists.linux-foundation.org
18608 L:      linux-crypto@vger.kernel.org
18609 S:      Maintained
18610 F:      drivers/crypto/virtio/
18611 F:      include/uapi/linux/virtio_crypto.h
18612
18613 VIRTIO DRIVERS FOR S390
18614 M:      Cornelia Huck <cohuck@redhat.com>
18615 M:      Halil Pasic <pasic@linux.ibm.com>
18616 L:      linux-s390@vger.kernel.org
18617 L:      virtualization@lists.linux-foundation.org
18618 L:      kvm@vger.kernel.org
18619 S:      Supported
18620 F:      arch/s390/include/uapi/asm/virtio-ccw.h
18621 F:      drivers/s390/virtio/
18622
18623 VIRTIO FILE SYSTEM
18624 M:      Vivek Goyal <vgoyal@redhat.com>
18625 M:      Stefan Hajnoczi <stefanha@redhat.com>
18626 M:      Miklos Szeredi <miklos@szeredi.hu>
18627 L:      virtualization@lists.linux-foundation.org
18628 L:      linux-fsdevel@vger.kernel.org
18629 S:      Supported
18630 W:      https://virtio-fs.gitlab.io/
18631 F:      Documentation/filesystems/virtiofs.rst
18632 F:      fs/fuse/virtio_fs.c
18633 F:      include/uapi/linux/virtio_fs.h
18634
18635 VIRTIO GPU DRIVER
18636 M:      David Airlie <airlied@linux.ie>
18637 M:      Gerd Hoffmann <kraxel@redhat.com>
18638 L:      dri-devel@lists.freedesktop.org
18639 L:      virtualization@lists.linux-foundation.org
18640 S:      Maintained
18641 T:      git git://anongit.freedesktop.org/drm/drm-misc
18642 F:      drivers/gpu/drm/virtio/
18643 F:      include/uapi/linux/virtio_gpu.h
18644
18645 VIRTIO HOST (VHOST)
18646 M:      "Michael S. Tsirkin" <mst@redhat.com>
18647 M:      Jason Wang <jasowang@redhat.com>
18648 L:      kvm@vger.kernel.org
18649 L:      virtualization@lists.linux-foundation.org
18650 L:      netdev@vger.kernel.org
18651 S:      Maintained
18652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
18653 F:      drivers/vhost/
18654 F:      include/linux/vhost_iotlb.h
18655 F:      include/uapi/linux/vhost.h
18656
18657 VIRTIO INPUT DRIVER
18658 M:      Gerd Hoffmann <kraxel@redhat.com>
18659 S:      Maintained
18660 F:      drivers/virtio/virtio_input.c
18661 F:      include/uapi/linux/virtio_input.h
18662
18663 VIRTIO IOMMU DRIVER
18664 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
18665 L:      virtualization@lists.linux-foundation.org
18666 S:      Maintained
18667 F:      drivers/iommu/virtio-iommu.c
18668 F:      include/uapi/linux/virtio_iommu.h
18669
18670 VIRTIO MEM DRIVER
18671 M:      David Hildenbrand <david@redhat.com>
18672 L:      virtualization@lists.linux-foundation.org
18673 S:      Maintained
18674 W:      https://virtio-mem.gitlab.io/
18675 F:      drivers/virtio/virtio_mem.c
18676 F:      include/uapi/linux/virtio_mem.h
18677
18678 VIRTUAL BOX GUEST DEVICE DRIVER
18679 M:      Hans de Goede <hdegoede@redhat.com>
18680 M:      Arnd Bergmann <arnd@arndb.de>
18681 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18682 S:      Maintained
18683 F:      drivers/virt/vboxguest/
18684 F:      include/linux/vbox_utils.h
18685 F:      include/uapi/linux/vbox*.h
18686
18687 VIRTUAL BOX SHARED FOLDER VFS DRIVER
18688 M:      Hans de Goede <hdegoede@redhat.com>
18689 L:      linux-fsdevel@vger.kernel.org
18690 S:      Maintained
18691 F:      fs/vboxsf/*
18692
18693 VIRTUAL SERIO DEVICE DRIVER
18694 M:      Stephen Chandler Paul <thatslyude@gmail.com>
18695 S:      Maintained
18696 F:      drivers/input/serio/userio.c
18697 F:      include/uapi/linux/userio.h
18698
18699 VIVID VIRTUAL VIDEO DRIVER
18700 M:      Hans Verkuil <hverkuil@xs4all.nl>
18701 L:      linux-media@vger.kernel.org
18702 S:      Maintained
18703 W:      https://linuxtv.org
18704 T:      git git://linuxtv.org/media_tree.git
18705 F:      drivers/media/test-drivers/vivid/*
18706
18707 VIDTV VIRTUAL DIGITAL TV DRIVER
18708 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
18709 L:      linux-media@vger.kernel.org
18710 S:      Maintained
18711 W:      https://linuxtv.org
18712 T:      git git://linuxtv.org/media_tree.git
18713 F:      drivers/media/test-drivers/vidtv/*
18714
18715 VLYNQ BUS
18716 M:      Florian Fainelli <f.fainelli@gmail.com>
18717 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
18718 S:      Maintained
18719 F:      drivers/vlynq/vlynq.c
18720 F:      include/linux/vlynq.h
18721
18722 VME SUBSYSTEM
18723 M:      Martyn Welch <martyn@welchs.me.uk>
18724 M:      Manohar Vanga <manohar.vanga@gmail.com>
18725 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18726 L:      devel@driverdev.osuosl.org
18727 S:      Maintained
18728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18729 F:      Documentation/driver-api/vme.rst
18730 F:      drivers/staging/vme/
18731 F:      drivers/vme/
18732 F:      include/linux/vme*
18733
18734 VMWARE BALLOON DRIVER
18735 M:      Nadav Amit <namit@vmware.com>
18736 M:      "VMware, Inc." <pv-drivers@vmware.com>
18737 L:      linux-kernel@vger.kernel.org
18738 S:      Maintained
18739 F:      drivers/misc/vmw_balloon.c
18740
18741 VMWARE HYPERVISOR INTERFACE
18742 M:      Deep Shah <sdeep@vmware.com>
18743 M:      "VMware, Inc." <pv-drivers@vmware.com>
18744 L:      virtualization@lists.linux-foundation.org
18745 S:      Supported
18746 F:      arch/x86/include/asm/vmware.h
18747 F:      arch/x86/kernel/cpu/vmware.c
18748
18749 VMWARE PVRDMA DRIVER
18750 M:      Adit Ranadive <aditr@vmware.com>
18751 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18752 L:      linux-rdma@vger.kernel.org
18753 S:      Maintained
18754 F:      drivers/infiniband/hw/vmw_pvrdma/
18755
18756 VMware PVSCSI driver
18757 M:      Jim Gill <jgill@vmware.com>
18758 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18759 L:      linux-scsi@vger.kernel.org
18760 S:      Maintained
18761 F:      drivers/scsi/vmw_pvscsi.c
18762 F:      drivers/scsi/vmw_pvscsi.h
18763
18764 VMWARE VIRTUAL PTP CLOCK DRIVER
18765 M:      Vivek Thampi <vithampi@vmware.com>
18766 M:      "VMware, Inc." <pv-drivers@vmware.com>
18767 L:      netdev@vger.kernel.org
18768 S:      Supported
18769 F:      drivers/ptp/ptp_vmw.c
18770
18771 VMWARE VMMOUSE SUBDRIVER
18772 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
18773 M:      "VMware, Inc." <pv-drivers@vmware.com>
18774 L:      linux-input@vger.kernel.org
18775 S:      Maintained
18776 F:      drivers/input/mouse/vmmouse.c
18777 F:      drivers/input/mouse/vmmouse.h
18778
18779 VMWARE VMXNET3 ETHERNET DRIVER
18780 M:      Ronak Doshi <doshir@vmware.com>
18781 M:      "VMware, Inc." <pv-drivers@vmware.com>
18782 L:      netdev@vger.kernel.org
18783 S:      Maintained
18784 F:      drivers/net/vmxnet3/
18785
18786 VOCORE VOCORE2 BOARD
18787 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
18788 L:      linux-mips@vger.kernel.org
18789 S:      Maintained
18790 F:      arch/mips/boot/dts/ralink/vocore2.dts
18791
18792 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
18793 M:      Liam Girdwood <lgirdwood@gmail.com>
18794 M:      Mark Brown <broonie@kernel.org>
18795 L:      linux-kernel@vger.kernel.org
18796 S:      Supported
18797 W:      http://www.slimlogic.co.uk/?p=48
18798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
18799 F:      Documentation/devicetree/bindings/regulator/
18800 F:      Documentation/power/regulator/
18801 F:      drivers/regulator/
18802 F:      include/dt-bindings/regulator/
18803 F:      include/linux/regulator/
18804 K:      regulator_get_optional
18805
18806 VRF
18807 M:      David Ahern <dsahern@kernel.org>
18808 M:      Shrijeet Mukherjee <shrijeet@gmail.com>
18809 L:      netdev@vger.kernel.org
18810 S:      Maintained
18811 F:      Documentation/networking/vrf.rst
18812 F:      drivers/net/vrf.c
18813
18814 VSPRINTF
18815 M:      Petr Mladek <pmladek@suse.com>
18816 M:      Steven Rostedt <rostedt@goodmis.org>
18817 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
18818 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18819 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
18820 S:      Maintained
18821 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
18822 F:      Documentation/core-api/printk-formats.rst
18823 F:      lib/test_printf.c
18824 F:      lib/vsprintf.c
18825
18826 VT1211 HARDWARE MONITOR DRIVER
18827 M:      Juerg Haefliger <juergh@gmail.com>
18828 L:      linux-hwmon@vger.kernel.org
18829 S:      Maintained
18830 F:      Documentation/hwmon/vt1211.rst
18831 F:      drivers/hwmon/vt1211.c
18832
18833 VT8231 HARDWARE MONITOR DRIVER
18834 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
18835 L:      linux-hwmon@vger.kernel.org
18836 S:      Maintained
18837 F:      drivers/hwmon/vt8231.c
18838
18839 VUB300 USB to SDIO/SD/MMC bridge chip
18840 L:      linux-mmc@vger.kernel.org
18841 S:      Orphan
18842 F:      drivers/mmc/host/vub300.c
18843
18844 W1 DALLAS'S 1-WIRE BUS
18845 M:      Evgeniy Polyakov <zbr@ioremap.net>
18846 S:      Maintained
18847 F:      Documentation/devicetree/bindings/w1/
18848 F:      Documentation/w1/
18849 F:      drivers/w1/
18850 F:      include/linux/w1.h
18851
18852 W83791D HARDWARE MONITORING DRIVER
18853 M:      Marc Hulsman <m.hulsman@tudelft.nl>
18854 L:      linux-hwmon@vger.kernel.org
18855 S:      Maintained
18856 F:      Documentation/hwmon/w83791d.rst
18857 F:      drivers/hwmon/w83791d.c
18858
18859 W83793 HARDWARE MONITORING DRIVER
18860 M:      Rudolf Marek <r.marek@assembler.cz>
18861 L:      linux-hwmon@vger.kernel.org
18862 S:      Maintained
18863 F:      Documentation/hwmon/w83793.rst
18864 F:      drivers/hwmon/w83793.c
18865
18866 W83795 HARDWARE MONITORING DRIVER
18867 M:      Jean Delvare <jdelvare@suse.com>
18868 L:      linux-hwmon@vger.kernel.org
18869 S:      Maintained
18870 F:      drivers/hwmon/w83795.c
18871
18872 W83L51xD SD/MMC CARD INTERFACE DRIVER
18873 M:      Pierre Ossman <pierre@ossman.eu>
18874 S:      Maintained
18875 F:      drivers/mmc/host/wbsd.*
18876
18877 WACOM PROTOCOL 4 SERIAL TABLETS
18878 M:      Julian Squires <julian@cipht.net>
18879 M:      Hans de Goede <hdegoede@redhat.com>
18880 L:      linux-input@vger.kernel.org
18881 S:      Maintained
18882 F:      drivers/input/tablet/wacom_serial4.c
18883
18884 WATCHDOG DEVICE DRIVERS
18885 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
18886 M:      Guenter Roeck <linux@roeck-us.net>
18887 L:      linux-watchdog@vger.kernel.org
18888 S:      Maintained
18889 W:      http://www.linux-watchdog.org/
18890 T:      git git://www.linux-watchdog.org/linux-watchdog.git
18891 F:      Documentation/devicetree/bindings/watchdog/
18892 F:      Documentation/watchdog/
18893 F:      drivers/watchdog/
18894 F:      include/linux/watchdog.h
18895 F:      include/uapi/linux/watchdog.h
18896
18897 WHISKEYCOVE PMIC GPIO DRIVER
18898 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
18899 L:      linux-gpio@vger.kernel.org
18900 S:      Maintained
18901 F:      drivers/gpio/gpio-wcove.c
18902
18903 WHWAVE RTC DRIVER
18904 M:      Dianlong Li <long17.cool@163.com>
18905 L:      linux-rtc@vger.kernel.org
18906 S:      Maintained
18907 F:      drivers/rtc/rtc-sd3078.c
18908
18909 WIIMOTE HID DRIVER
18910 M:      David Rheinsberg <david.rheinsberg@gmail.com>
18911 L:      linux-input@vger.kernel.org
18912 S:      Maintained
18913 F:      drivers/hid/hid-wiimote*
18914
18915 WILOCITY WIL6210 WIRELESS DRIVER
18916 M:      Maya Erez <merez@codeaurora.org>
18917 L:      linux-wireless@vger.kernel.org
18918 L:      wil6210@qti.qualcomm.com
18919 S:      Supported
18920 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
18921 F:      drivers/net/wireless/ath/wil6210/
18922
18923 WIMAX STACK
18924 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
18925 M:      linux-wimax@intel.com
18926 L:      wimax@linuxwimax.org (subscribers-only)
18927 S:      Supported
18928 W:      http://linuxwimax.org
18929 F:      Documentation/admin-guide/wimax/wimax.rst
18930 F:      include/linux/wimax/debug.h
18931 F:      include/net/wimax.h
18932 F:      include/uapi/linux/wimax.h
18933 F:      net/wimax/
18934
18935 WINBOND CIR DRIVER
18936 M:      David Härdeman <david@hardeman.nu>
18937 S:      Maintained
18938 F:      drivers/media/rc/winbond-cir.c
18939
18940 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
18941 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
18942 L:      linux-watchdog@vger.kernel.org
18943 S:      Maintained
18944 F:      drivers/watchdog/ebc-c384_wdt.c
18945
18946 WINSYSTEMS WS16C48 GPIO DRIVER
18947 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
18948 L:      linux-gpio@vger.kernel.org
18949 S:      Maintained
18950 F:      drivers/gpio/gpio-ws16c48.c
18951
18952 WIREGUARD SECURE NETWORK TUNNEL
18953 M:      Jason A. Donenfeld <Jason@zx2c4.com>
18954 L:      wireguard@lists.zx2c4.com
18955 L:      netdev@vger.kernel.org
18956 S:      Maintained
18957 F:      drivers/net/wireguard/
18958 F:      tools/testing/selftests/wireguard/
18959
18960 WISTRON LAPTOP BUTTON DRIVER
18961 M:      Miloslav Trmac <mitr@volny.cz>
18962 S:      Maintained
18963 F:      drivers/input/misc/wistron_btns.c
18964
18965 WL3501 WIRELESS PCMCIA CARD DRIVER
18966 L:      linux-wireless@vger.kernel.org
18967 S:      Odd fixes
18968 F:      drivers/net/wireless/wl3501*
18969
18970 WOLFSON MICROELECTRONICS DRIVERS
18971 L:      patches@opensource.cirrus.com
18972 S:      Supported
18973 W:      https://github.com/CirrusLogic/linux-drivers/wiki
18974 T:      git https://github.com/CirrusLogic/linux-drivers.git
18975 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
18976 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
18977 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
18978 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
18979 F:      Documentation/devicetree/bindings/sound/wlf,arizona.yaml
18980 F:      Documentation/hwmon/wm83??.rst
18981 F:      arch/arm/mach-s3c/mach-crag6410*
18982 F:      drivers/clk/clk-wm83*.c
18983 F:      drivers/extcon/extcon-arizona.c
18984 F:      drivers/gpio/gpio-*wm*.c
18985 F:      drivers/gpio/gpio-arizona.c
18986 F:      drivers/hwmon/wm83??-hwmon.c
18987 F:      drivers/input/misc/wm831x-on.c
18988 F:      drivers/input/touchscreen/wm831x-ts.c
18989 F:      drivers/input/touchscreen/wm97*.c
18990 F:      drivers/leds/leds-wm83*.c
18991 F:      drivers/mfd/arizona*
18992 F:      drivers/mfd/cs47l24*
18993 F:      drivers/mfd/wm*.c
18994 F:      drivers/power/supply/wm83*.c
18995 F:      drivers/regulator/arizona*
18996 F:      drivers/regulator/wm8*.c
18997 F:      drivers/rtc/rtc-wm83*.c
18998 F:      drivers/video/backlight/wm83*_bl.c
18999 F:      drivers/watchdog/wm83*_wdt.c
19000 F:      include/linux/mfd/arizona/
19001 F:      include/linux/mfd/wm831x/
19002 F:      include/linux/mfd/wm8350/
19003 F:      include/linux/mfd/wm8400*
19004 F:      include/linux/regulator/arizona*
19005 F:      include/linux/wm97xx.h
19006 F:      include/sound/wm????.h
19007 F:      sound/soc/codecs/arizona.?
19008 F:      sound/soc/codecs/cs47l24*
19009 F:      sound/soc/codecs/wm*
19010
19011 WORKQUEUE
19012 M:      Tejun Heo <tj@kernel.org>
19013 R:      Lai Jiangshan <jiangshanlai@gmail.com>
19014 S:      Maintained
19015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
19016 F:      Documentation/core-api/workqueue.rst
19017 F:      include/linux/workqueue.h
19018 F:      kernel/workqueue.c
19019
19020 X-POWERS AXP288 PMIC DRIVERS
19021 M:      Hans de Goede <hdegoede@redhat.com>
19022 S:      Maintained
19023 F:      drivers/acpi/pmic/intel_pmic_xpower.c
19024 N:      axp288
19025
19026 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
19027 M:      Chen-Yu Tsai <wens@csie.org>
19028 L:      linux-kernel@vger.kernel.org
19029 S:      Maintained
19030 N:      axp[128]
19031
19032 X.25 NETWORK LAYER
19033 M:      Andrew Hendry <andrew.hendry@gmail.com>
19034 L:      linux-x25@vger.kernel.org
19035 S:      Odd Fixes
19036 F:      Documentation/networking/x25*
19037 F:      include/net/x25*
19038 F:      net/x25/
19039
19040 X86 ARCHITECTURE (32-BIT AND 64-BIT)
19041 M:      Thomas Gleixner <tglx@linutronix.de>
19042 M:      Ingo Molnar <mingo@redhat.com>
19043 M:      Borislav Petkov <bp@alien8.de>
19044 M:      x86@kernel.org
19045 R:      "H. Peter Anvin" <hpa@zytor.com>
19046 L:      linux-kernel@vger.kernel.org
19047 S:      Maintained
19048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19049 F:      Documentation/devicetree/bindings/x86/
19050 F:      Documentation/x86/
19051 F:      arch/x86/
19052
19053 X86 ENTRY CODE
19054 M:      Andy Lutomirski <luto@kernel.org>
19055 L:      linux-kernel@vger.kernel.org
19056 S:      Maintained
19057 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
19058 F:      arch/x86/entry/
19059
19060 X86 MCE INFRASTRUCTURE
19061 M:      Tony Luck <tony.luck@intel.com>
19062 M:      Borislav Petkov <bp@alien8.de>
19063 L:      linux-edac@vger.kernel.org
19064 S:      Maintained
19065 F:      arch/x86/kernel/cpu/mce/*
19066
19067 X86 MICROCODE UPDATE SUPPORT
19068 M:      Borislav Petkov <bp@alien8.de>
19069 S:      Maintained
19070 F:      arch/x86/kernel/cpu/microcode/*
19071
19072 X86 MM
19073 M:      Dave Hansen <dave.hansen@linux.intel.com>
19074 M:      Andy Lutomirski <luto@kernel.org>
19075 M:      Peter Zijlstra <peterz@infradead.org>
19076 L:      linux-kernel@vger.kernel.org
19077 S:      Maintained
19078 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
19079 F:      arch/x86/mm/
19080
19081 X86 PLATFORM DRIVERS
19082 M:      Hans de Goede <hdegoede@redhat.com>
19083 M:      Mark Gross <mgross@linux.intel.com>
19084 L:      platform-driver-x86@vger.kernel.org
19085 S:      Maintained
19086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
19087 F:      drivers/platform/olpc/
19088 F:      drivers/platform/x86/
19089
19090 X86 PLATFORM DRIVERS - ARCH
19091 R:      Darren Hart <dvhart@infradead.org>
19092 R:      Andy Shevchenko <andy@infradead.org>
19093 L:      platform-driver-x86@vger.kernel.org
19094 L:      x86@kernel.org
19095 S:      Maintained
19096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19097 F:      arch/x86/platform
19098
19099 X86 PLATFORM UV HPE SUPERDOME FLEX
19100 M:      Steve Wahl <steve.wahl@hpe.com>
19101 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
19102 R:      Russ Anderson <russ.anderson@hpe.com>
19103 S:      Supported
19104 F:      arch/x86/include/asm/uv/
19105 F:      arch/x86/kernel/apic/x2apic_uv_x.c
19106 F:      arch/x86/platform/uv/
19107
19108 X86 VDSO
19109 M:      Andy Lutomirski <luto@kernel.org>
19110 L:      linux-kernel@vger.kernel.org
19111 S:      Maintained
19112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
19113 F:      arch/x86/entry/vdso/
19114
19115 XARRAY
19116 M:      Matthew Wilcox <willy@infradead.org>
19117 L:      linux-fsdevel@vger.kernel.org
19118 S:      Supported
19119 F:      Documentation/core-api/xarray.rst
19120 F:      include/linux/idr.h
19121 F:      include/linux/xarray.h
19122 F:      lib/idr.c
19123 F:      lib/xarray.c
19124 F:      tools/testing/radix-tree
19125
19126 XBOX DVD IR REMOTE
19127 M:      Benjamin Valentin <benpicco@googlemail.com>
19128 S:      Maintained
19129 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
19130 F:      drivers/media/rc/xbox_remote.c
19131
19132 XC2028/3028 TUNER DRIVER
19133 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19134 L:      linux-media@vger.kernel.org
19135 S:      Maintained
19136 W:      https://linuxtv.org
19137 T:      git git://linuxtv.org/media_tree.git
19138 F:      drivers/media/tuners/tuner-xc2028.*
19139
19140 XDP (eXpress Data Path)
19141 M:      Alexei Starovoitov <ast@kernel.org>
19142 M:      Daniel Borkmann <daniel@iogearbox.net>
19143 M:      David S. Miller <davem@davemloft.net>
19144 M:      Jakub Kicinski <kuba@kernel.org>
19145 M:      Jesper Dangaard Brouer <hawk@kernel.org>
19146 M:      John Fastabend <john.fastabend@gmail.com>
19147 L:      netdev@vger.kernel.org
19148 L:      bpf@vger.kernel.org
19149 S:      Supported
19150 F:      include/net/xdp.h
19151 F:      include/trace/events/xdp.h
19152 F:      kernel/bpf/cpumap.c
19153 F:      kernel/bpf/devmap.c
19154 F:      net/core/xdp.c
19155 N:      xdp
19156 K:      xdp
19157
19158 XDP SOCKETS (AF_XDP)
19159 M:      Björn Töpel <bjorn.topel@intel.com>
19160 M:      Magnus Karlsson <magnus.karlsson@intel.com>
19161 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
19162 L:      netdev@vger.kernel.org
19163 L:      bpf@vger.kernel.org
19164 S:      Maintained
19165 F:      include/net/xdp_sock*
19166 F:      include/net/xsk_buff_pool.h
19167 F:      include/uapi/linux/if_xdp.h
19168 F:      net/xdp/
19169 F:      samples/bpf/xdpsock*
19170 F:      tools/lib/bpf/xsk*
19171
19172 XEN BLOCK SUBSYSTEM
19173 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19174 M:      Roger Pau Monné <roger.pau@citrix.com>
19175 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19176 S:      Supported
19177 F:      drivers/block/xen*
19178 F:      drivers/block/xen-blkback/*
19179
19180 XEN HYPERVISOR ARM
19181 M:      Stefano Stabellini <sstabellini@kernel.org>
19182 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19183 S:      Maintained
19184 F:      arch/arm/include/asm/xen/
19185 F:      arch/arm/xen/
19186
19187 XEN HYPERVISOR ARM64
19188 M:      Stefano Stabellini <sstabellini@kernel.org>
19189 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19190 S:      Maintained
19191 F:      arch/arm64/include/asm/xen/
19192 F:      arch/arm64/xen/
19193
19194 XEN HYPERVISOR INTERFACE
19195 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
19196 M:      Juergen Gross <jgross@suse.com>
19197 R:      Stefano Stabellini <sstabellini@kernel.org>
19198 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19199 S:      Supported
19200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
19201 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
19202 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
19203 F:      arch/x86/include/asm/pvclock-abi.h
19204 F:      arch/x86/include/asm/xen/
19205 F:      arch/x86/platform/pvh/
19206 F:      arch/x86/xen/
19207 F:      drivers/*/xen-*front.c
19208 F:      drivers/xen/
19209 F:      include/uapi/xen/
19210 F:      include/xen/
19211
19212 XEN NETWORK BACKEND DRIVER
19213 M:      Wei Liu <wei.liu@kernel.org>
19214 M:      Paul Durrant <paul@xen.org>
19215 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19216 L:      netdev@vger.kernel.org
19217 S:      Supported
19218 F:      drivers/net/xen-netback/*
19219
19220 XEN PCI SUBSYSTEM
19221 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19222 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19223 S:      Supported
19224 F:      arch/x86/pci/*xen*
19225 F:      drivers/pci/*xen*
19226
19227 XEN PVSCSI DRIVERS
19228 M:      Juergen Gross <jgross@suse.com>
19229 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19230 L:      linux-scsi@vger.kernel.org
19231 S:      Supported
19232 F:      drivers/scsi/xen-scsifront.c
19233 F:      drivers/xen/xen-scsiback.c
19234 F:      include/xen/interface/io/vscsiif.h
19235
19236 XEN SOUND FRONTEND DRIVER
19237 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
19238 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19239 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19240 S:      Supported
19241 F:      sound/xen/*
19242
19243 XEN SWIOTLB SUBSYSTEM
19244 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19245 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19246 L:      iommu@lists.linux-foundation.org
19247 S:      Supported
19248 F:      arch/x86/xen/*swiotlb*
19249 F:      drivers/xen/*swiotlb*
19250
19251 XFS FILESYSTEM
19252 M:      Darrick J. Wong <darrick.wong@oracle.com>
19253 M:      linux-xfs@vger.kernel.org
19254 L:      linux-xfs@vger.kernel.org
19255 S:      Supported
19256 W:      http://xfs.org/
19257 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
19258 F:      Documentation/ABI/testing/sysfs-fs-xfs
19259 F:      Documentation/admin-guide/xfs.rst
19260 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
19261 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
19262 F:      fs/xfs/
19263 F:      include/uapi/linux/dqblk_xfs.h
19264 F:      include/uapi/linux/fsmap.h
19265
19266 XILINX AXI ETHERNET DRIVER
19267 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
19268 S:      Maintained
19269 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
19270
19271 XILINX CAN DRIVER
19272 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
19273 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
19274 L:      linux-can@vger.kernel.org
19275 S:      Maintained
19276 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
19277 F:      drivers/net/can/xilinx_can.c
19278
19279 XILINX SD-FEC IP CORES
19280 M:      Derek Kiernan <derek.kiernan@xilinx.com>
19281 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
19282 S:      Maintained
19283 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
19284 F:      Documentation/misc-devices/xilinx_sdfec.rst
19285 F:      drivers/misc/Kconfig
19286 F:      drivers/misc/Makefile
19287 F:      drivers/misc/xilinx_sdfec.c
19288 F:      include/uapi/misc/xilinx_sdfec.h
19289
19290 XILINX UARTLITE SERIAL DRIVER
19291 M:      Peter Korsgaard <jacmet@sunsite.dk>
19292 L:      linux-serial@vger.kernel.org
19293 S:      Maintained
19294 F:      drivers/tty/serial/uartlite.c
19295
19296 XILINX VIDEO IP CORES
19297 M:      Hyun Kwon <hyun.kwon@xilinx.com>
19298 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19299 L:      linux-media@vger.kernel.org
19300 S:      Supported
19301 T:      git git://linuxtv.org/media_tree.git
19302 F:      Documentation/devicetree/bindings/media/xilinx/
19303 F:      drivers/media/platform/xilinx/
19304 F:      include/uapi/linux/xilinx-v4l2-controls.h
19305
19306 XILINX ZYNQMP DPDMA DRIVER
19307 M:      Hyun Kwon <hyun.kwon@xilinx.com>
19308 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19309 L:      dmaengine@vger.kernel.org
19310 S:      Supported
19311 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
19312 F:      drivers/dma/xilinx/xilinx_dpdma.c
19313 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
19314
19315 XILINX ZYNQMP PSGTR PHY DRIVER
19316 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
19317 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19318 L:      linux-kernel@vger.kernel.org
19319 S:      Supported
19320 T:      git https://github.com/Xilinx/linux-xlnx.git
19321 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
19322 F:      drivers/phy/xilinx/phy-zynqmp.c
19323
19324 XILLYBUS DRIVER
19325 M:      Eli Billauer <eli.billauer@gmail.com>
19326 L:      linux-kernel@vger.kernel.org
19327 S:      Supported
19328 F:      drivers/char/xillybus/
19329
19330 XLP9XX I2C DRIVER
19331 M:      George Cherian <gcherian@marvell.com>
19332 L:      linux-i2c@vger.kernel.org
19333 S:      Supported
19334 W:      http://www.marvell.com
19335 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
19336 F:      drivers/i2c/busses/i2c-xlp9xx.c
19337
19338 XRA1403 GPIO EXPANDER
19339 M:      Nandor Han <nandor.han@ge.com>
19340 M:      Semi Malinen <semi.malinen@ge.com>
19341 L:      linux-gpio@vger.kernel.org
19342 S:      Maintained
19343 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
19344 F:      drivers/gpio/gpio-xra1403.c
19345
19346 XTENSA XTFPGA PLATFORM SUPPORT
19347 M:      Max Filippov <jcmvbkbc@gmail.com>
19348 L:      linux-xtensa@linux-xtensa.org
19349 S:      Maintained
19350 F:      drivers/spi/spi-xtensa-xtfpga.c
19351 F:      sound/soc/xtensa/xtfpga-i2s.c
19352
19353 YAM DRIVER FOR AX.25
19354 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
19355 L:      linux-hams@vger.kernel.org
19356 S:      Maintained
19357 F:      drivers/net/hamradio/yam*
19358 F:      include/linux/yam.h
19359
19360 YAMA SECURITY MODULE
19361 M:      Kees Cook <keescook@chromium.org>
19362 S:      Supported
19363 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
19364 F:      Documentation/admin-guide/LSM/Yama.rst
19365 F:      security/yama/
19366
19367 YEALINK PHONE DRIVER
19368 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
19369 L:      usbb2k-api-dev@nongnu.org
19370 S:      Maintained
19371 F:      Documentation/input/devices/yealink.rst
19372 F:      drivers/input/misc/yealink.*
19373
19374 Z8530 DRIVER FOR AX.25
19375 M:      Joerg Reuter <jreuter@yaina.de>
19376 L:      linux-hams@vger.kernel.org
19377 S:      Maintained
19378 W:      http://yaina.de/jreuter/
19379 W:      http://www.qsl.net/dl1bke/
19380 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
19381 F:      drivers/net/hamradio/*scc.c
19382 F:      drivers/net/hamradio/z8530.h
19383
19384 ZBUD COMPRESSED PAGE ALLOCATOR
19385 M:      Seth Jennings <sjenning@redhat.com>
19386 M:      Dan Streetman <ddstreet@ieee.org>
19387 L:      linux-mm@kvack.org
19388 S:      Maintained
19389 F:      include/linux/zbud.h
19390 F:      mm/zbud.c
19391
19392 ZD1211RW WIRELESS DRIVER
19393 M:      Daniel Drake <dsd@gentoo.org>
19394 M:      Ulrich Kunitz <kune@deine-taler.de>
19395 L:      linux-wireless@vger.kernel.org
19396 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
19397 S:      Maintained
19398 W:      http://zd1211.ath.cx/wiki/DriverRewrite
19399 F:      drivers/net/wireless/zydas/zd1211rw/
19400
19401 ZD1301 MEDIA DRIVER
19402 M:      Antti Palosaari <crope@iki.fi>
19403 L:      linux-media@vger.kernel.org
19404 S:      Maintained
19405 W:      https://linuxtv.org/
19406 W:      http://palosaari.fi/linux/
19407 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19408 F:      drivers/media/usb/dvb-usb-v2/zd1301*
19409
19410 ZD1301_DEMOD MEDIA DRIVER
19411 M:      Antti Palosaari <crope@iki.fi>
19412 L:      linux-media@vger.kernel.org
19413 S:      Maintained
19414 W:      https://linuxtv.org/
19415 W:      http://palosaari.fi/linux/
19416 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19417 F:      drivers/media/dvb-frontends/zd1301_demod*
19418
19419 ZHAOXIN PROCESSOR SUPPORT
19420 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
19421 L:      linux-kernel@vger.kernel.org
19422 S:      Maintained
19423 F:      arch/x86/kernel/cpu/zhaoxin.c
19424
19425 ZONEFS FILESYSTEM
19426 M:      Damien Le Moal <damien.lemoal@wdc.com>
19427 M:      Naohiro Aota <naohiro.aota@wdc.com>
19428 R:      Johannes Thumshirn <jth@kernel.org>
19429 L:      linux-fsdevel@vger.kernel.org
19430 S:      Maintained
19431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
19432 F:      Documentation/filesystems/zonefs.rst
19433 F:      fs/zonefs/
19434
19435 ZPOOL COMPRESSED PAGE STORAGE API
19436 M:      Dan Streetman <ddstreet@ieee.org>
19437 L:      linux-mm@kvack.org
19438 S:      Maintained
19439 F:      include/linux/zpool.h
19440 F:      mm/zpool.c
19441
19442 ZR36067 VIDEO FOR LINUX DRIVER
19443 M:      Corentin Labbe <clabbe@baylibre.com>
19444 L:      mjpeg-users@lists.sourceforge.net
19445 L:      linux-media@vger.kernel.org
19446 S:      Maintained
19447 W:      http://mjpeg.sourceforge.net/driver-zoran/
19448 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19449 F:      Documentation/driver-api/media/drivers/zoran.rst
19450 F:      drivers/staging/media/zoran/
19451
19452 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
19453 M:      Minchan Kim <minchan@kernel.org>
19454 M:      Nitin Gupta <ngupta@vflare.org>
19455 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
19456 L:      linux-kernel@vger.kernel.org
19457 S:      Maintained
19458 F:      Documentation/admin-guide/blockdev/zram.rst
19459 F:      drivers/block/zram/
19460
19461 ZS DECSTATION Z85C30 SERIAL DRIVER
19462 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
19463 S:      Maintained
19464 F:      drivers/tty/serial/zs.*
19465
19466 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
19467 M:      Minchan Kim <minchan@kernel.org>
19468 M:      Nitin Gupta <ngupta@vflare.org>
19469 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
19470 L:      linux-mm@kvack.org
19471 S:      Maintained
19472 F:      Documentation/vm/zsmalloc.rst
19473 F:      include/linux/zsmalloc.h
19474 F:      mm/zsmalloc.c
19475
19476 ZSWAP COMPRESSED SWAP CACHING
19477 M:      Seth Jennings <sjenning@redhat.com>
19478 M:      Dan Streetman <ddstreet@ieee.org>
19479 M:      Vitaly Wool <vitaly.wool@konsulko.com>
19480 L:      linux-mm@kvack.org
19481 S:      Maintained
19482 F:      mm/zswap.c
19483
19484 THE REST
19485 M:      Linus Torvalds <torvalds@linux-foundation.org>
19486 L:      linux-kernel@vger.kernel.org
19487 S:      Buried alive in reporters
19488 Q:      http://patchwork.kernel.org/project/LKML/list/
19489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
19490 F:      *
19491 F:      */