Merge tag 'fsverity-for-linus' of git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt
[platform/kernel/linux-rpi.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/pm/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.yaml
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:      https://patchwork.kernel.org/project/netdevbpf/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 AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1491 M:      Arnd Bergmann <arnd@arndb.de>
1492 M:      Olof Johansson <olof@lixom.net>
1493 M:      soc@kernel.org
1494 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1495 S:      Maintained
1496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1497 F:      arch/arm/boot/dts/Makefile
1498 F:      arch/arm64/boot/dts/Makefile
1499
1500 ARM SUB-ARCHITECTURES
1501 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1502 S:      Maintained
1503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1504 F:      arch/arm/mach-*/
1505 F:      arch/arm/plat-*/
1506
1507 ARM/ACTIONS SEMI ARCHITECTURE
1508 M:      Andreas Färber <afaerber@suse.de>
1509 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1510 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1511 S:      Maintained
1512 F:      Documentation/devicetree/bindings/arm/actions.yaml
1513 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1514 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1515 F:      Documentation/devicetree/bindings/i2c/i2c-owl.txt
1516 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1517 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1518 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1519 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1520 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1521 F:      arch/arm/boot/dts/owl-*
1522 F:      arch/arm/mach-actions/
1523 F:      arch/arm64/boot/dts/actions/
1524 F:      drivers/clk/actions/
1525 F:      drivers/clocksource/timer-owl*
1526 F:      drivers/dma/owl-dma.c
1527 F:      drivers/i2c/busses/i2c-owl.c
1528 F:      drivers/irqchip/irq-owl-sirq.c
1529 F:      drivers/mmc/host/owl-mmc.c
1530 F:      drivers/pinctrl/actions/*
1531 F:      drivers/soc/actions/
1532 F:      include/dt-bindings/power/owl-*
1533 F:      include/dt-bindings/reset/actions,*
1534 F:      include/linux/soc/actions/
1535 N:      owl
1536
1537 ARM/ADS SPHERE 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/AFEB9260 MACHINE SUPPORT
1543 M:      Sergey Lapin <slapin@ossfans.org>
1544 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1545 S:      Maintained
1546
1547 ARM/AJECO 1ARM MACHINE SUPPORT
1548 M:      Lennert Buytenhek <kernel@wantstofly.org>
1549 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1550 S:      Maintained
1551
1552 ARM/Allwinner SoC Clock Support
1553 M:      Emilio López <emilio@elopez.com.ar>
1554 S:      Maintained
1555 F:      drivers/clk/sunxi/
1556
1557 ARM/Allwinner sunXi SoC support
1558 M:      Maxime Ripard <mripard@kernel.org>
1559 M:      Chen-Yu Tsai <wens@csie.org>
1560 R:      Jernej Skrabec <jernej.skrabec@siol.net>
1561 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1562 S:      Maintained
1563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1564 F:      arch/arm/mach-sunxi/
1565 F:      arch/arm64/boot/dts/allwinner/
1566 F:      drivers/clk/sunxi-ng/
1567 F:      drivers/pinctrl/sunxi/
1568 F:      drivers/soc/sunxi/
1569 N:      sun[x456789]i
1570 N:      sun50i
1571
1572 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1573 M:      Neil Armstrong <narmstrong@baylibre.com>
1574 M:      Jerome Brunet <jbrunet@baylibre.com>
1575 L:      linux-amlogic@lists.infradead.org
1576 S:      Maintained
1577 F:      Documentation/devicetree/bindings/clock/amlogic*
1578 F:      drivers/clk/meson/
1579 F:      include/dt-bindings/clock/gxbb*
1580 F:      include/dt-bindings/clock/meson*
1581
1582 ARM/Amlogic Meson SoC Crypto Drivers
1583 M:      Corentin Labbe <clabbe@baylibre.com>
1584 L:      linux-crypto@vger.kernel.org
1585 L:      linux-amlogic@lists.infradead.org
1586 S:      Maintained
1587 F:      Documentation/devicetree/bindings/crypto/amlogic*
1588 F:      drivers/crypto/amlogic/
1589
1590 ARM/Amlogic Meson SoC Sound Drivers
1591 M:      Jerome Brunet <jbrunet@baylibre.com>
1592 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1593 S:      Maintained
1594 F:      Documentation/devicetree/bindings/sound/amlogic*
1595 F:      sound/soc/meson/
1596
1597 ARM/Amlogic Meson SoC support
1598 M:      Kevin Hilman <khilman@baylibre.com>
1599 R:      Neil Armstrong <narmstrong@baylibre.com>
1600 R:      Jerome Brunet <jbrunet@baylibre.com>
1601 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1602 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1603 L:      linux-amlogic@lists.infradead.org
1604 S:      Maintained
1605 W:      http://linux-meson.com/
1606 F:      arch/arm/boot/dts/meson*
1607 F:      arch/arm/mach-meson/
1608 F:      arch/arm64/boot/dts/amlogic/
1609 F:      drivers/mmc/host/meson*
1610 F:      drivers/pinctrl/meson/
1611 F:      drivers/rtc/rtc-meson*
1612 F:      drivers/soc/amlogic/
1613 N:      meson
1614
1615 ARM/Annapurna Labs ALPINE ARCHITECTURE
1616 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1617 M:      Antoine Tenart <atenart@kernel.org>
1618 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1619 S:      Maintained
1620 F:      arch/arm/boot/dts/alpine*
1621 F:      arch/arm/mach-alpine/
1622 F:      arch/arm64/boot/dts/amazon/
1623 F:      drivers/*/*alpine*
1624
1625 ARM/ARTPEC MACHINE SUPPORT
1626 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1627 M:      Lars Persson <lars.persson@axis.com>
1628 L:      linux-arm-kernel@axis.com
1629 S:      Maintained
1630 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1631 F:      arch/arm/boot/dts/artpec6*
1632 F:      arch/arm/mach-artpec
1633 F:      drivers/clk/axis
1634 F:      drivers/crypto/axis
1635 F:      drivers/mmc/host/usdhi6rol0.c
1636 F:      drivers/pinctrl/pinctrl-artpec*
1637
1638 ARM/ASPEED I2C DRIVER
1639 M:      Brendan Higgins <brendanhiggins@google.com>
1640 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1641 R:      Joel Stanley <joel@jms.id.au>
1642 L:      linux-i2c@vger.kernel.org
1643 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1644 S:      Maintained
1645 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1646 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1647 F:      drivers/i2c/busses/i2c-aspeed.c
1648 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1649
1650 ARM/ASPEED MACHINE SUPPORT
1651 M:      Joel Stanley <joel@jms.id.au>
1652 R:      Andrew Jeffery <andrew@aj.id.au>
1653 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1654 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1655 S:      Supported
1656 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1658 F:      arch/arm/boot/dts/aspeed-*
1659 F:      arch/arm/mach-aspeed/
1660 N:      aspeed
1661
1662 ARM/BITMAIN ARCHITECTURE
1663 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1664 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1665 S:      Maintained
1666 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1667 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1668 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1669 F:      arch/arm64/boot/dts/bitmain/
1670 F:      drivers/clk/clk-bm1880.c
1671 F:      drivers/pinctrl/pinctrl-bm1880.c
1672
1673 ARM/CALXEDA HIGHBANK ARCHITECTURE
1674 M:      Andre Przywara <andre.przywara@arm.com>
1675 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1676 S:      Maintained
1677 F:      arch/arm/boot/dts/ecx-*.dts*
1678 F:      arch/arm/boot/dts/highbank.dts
1679 F:      arch/arm/mach-highbank/
1680
1681 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1682 M:      Krzysztof Halasa <khalasa@piap.pl>
1683 S:      Maintained
1684 F:      arch/arm/mach-cns3xxx/
1685
1686 ARM/CAVIUM THUNDER NETWORK DRIVER
1687 M:      Sunil Goutham <sgoutham@marvell.com>
1688 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1689 S:      Supported
1690 F:      drivers/net/ethernet/cavium/thunder/
1691
1692 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1693 M:      Lukasz Majewski <lukma@denx.de>
1694 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1695 S:      Maintained
1696 F:      arch/arm/mach-ep93xx/ts72xx.c
1697
1698 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1699 M:      Alexander Shiyan <shc_work@mail.ru>
1700 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1701 S:      Odd Fixes
1702 N:      clps711x
1703
1704 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1705 M:      Lennert Buytenhek <kernel@wantstofly.org>
1706 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1707 S:      Maintained
1708
1709 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1710 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1711 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1712 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1713 S:      Maintained
1714 F:      arch/arm/mach-ep93xx/
1715 F:      arch/arm/mach-ep93xx/include/mach/
1716
1717 ARM/CLKDEV SUPPORT
1718 M:      Russell King <linux@armlinux.org.uk>
1719 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1720 S:      Maintained
1721 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1722 F:      drivers/clk/clkdev.c
1723
1724 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1725 M:      Baruch Siach <baruch@tkos.co.il>
1726 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1727 S:      Maintained
1728 F:      arch/arm/boot/dts/cx92755*
1729 N:      digicolor
1730
1731 ARM/CONTEC MICRO9 MACHINE SUPPORT
1732 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1733 S:      Maintained
1734 F:      arch/arm/mach-ep93xx/micro9.c
1735
1736 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1737 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1738 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1739 R:      Mike Leach <mike.leach@linaro.org>
1740 R:      Leo Yan <leo.yan@linaro.org>
1741 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1742 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1743 S:      Maintained
1744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1745 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1746 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1747 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1748 F:      Documentation/devicetree/bindings/arm/coresight.txt
1749 F:      Documentation/trace/coresight/*
1750 F:      drivers/hwtracing/coresight/*
1751 F:      include/dt-bindings/arm/coresight-cti-dt.h
1752 F:      tools/perf/arch/arm/util/auxtrace.c
1753 F:      tools/perf/arch/arm/util/cs-etm.c
1754 F:      tools/perf/arch/arm/util/cs-etm.h
1755 F:      tools/perf/arch/arm/util/pmu.c
1756 F:      tools/perf/util/cs-etm-decoder/*
1757 F:      tools/perf/util/cs-etm.*
1758
1759 ARM/CORGI MACHINE SUPPORT
1760 M:      Richard Purdie <rpurdie@rpsys.net>
1761 S:      Maintained
1762
1763 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1764 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1765 M:      Linus Walleij <linus.walleij@linaro.org>
1766 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1767 S:      Maintained
1768 T:      git git://github.com/ulli-kroll/linux.git
1769 F:      Documentation/devicetree/bindings/arm/gemini.txt
1770 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1771 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1772 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1773 F:      arch/arm/mach-gemini/
1774 F:      drivers/net/ethernet/cortina/
1775 F:      drivers/pinctrl/pinctrl-gemini.c
1776 F:      drivers/rtc/rtc-ftrtc010.c
1777
1778 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1779 M:      Barry Song <baohua@kernel.org>
1780 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1781 S:      Maintained
1782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1783 F:      arch/arm/boot/dts/prima2*
1784 F:      arch/arm/mach-prima2/
1785 F:      drivers/clk/sirf/
1786 F:      drivers/clocksource/timer-atlas7.c
1787 F:      drivers/clocksource/timer-prima2.c
1788 X:      drivers/gnss
1789 N:      [^a-z]sirf
1790
1791 ARM/CZ.NIC TURRIS MOX SUPPORT
1792 M:      Marek Behun <marek.behun@nic.cz>
1793 S:      Maintained
1794 W:      http://mox.turris.cz
1795 F:      Documentation/ABI/testing/debugfs-moxtet
1796 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1797 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1798 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1799 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1800 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1801 F:      drivers/bus/moxtet.c
1802 F:      drivers/firmware/turris-mox-rwtm.c
1803 F:      drivers/gpio/gpio-moxtet.c
1804 F:      include/linux/moxtet.h
1805
1806 ARM/EBSA110 MACHINE SUPPORT
1807 M:      Russell King <linux@armlinux.org.uk>
1808 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1809 S:      Maintained
1810 W:      http://www.armlinux.org.uk/
1811 F:      arch/arm/mach-ebsa110/
1812 F:      drivers/net/ethernet/amd/am79c961a.*
1813
1814 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1815 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1816 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1817 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1818 S:      Maintained
1819 N:      efm32
1820
1821 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1822 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1823 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1824 S:      Maintained
1825 F:      arch/arm/mach-pxa/ezx.c
1826
1827 ARM/FARADAY FA526 PORT
1828 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1829 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1830 S:      Maintained
1831 T:      git git://git.berlios.de/gemini-board
1832 F:      arch/arm/mm/*-fa*
1833
1834 ARM/FOOTBRIDGE ARCHITECTURE
1835 M:      Russell King <linux@armlinux.org.uk>
1836 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1837 S:      Maintained
1838 W:      http://www.armlinux.org.uk/
1839 F:      arch/arm/include/asm/hardware/dec21285.h
1840 F:      arch/arm/mach-footbridge/
1841
1842 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1843 M:      Shawn Guo <shawnguo@kernel.org>
1844 M:      Sascha Hauer <s.hauer@pengutronix.de>
1845 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1846 R:      Fabio Estevam <festevam@gmail.com>
1847 R:      NXP Linux Team <linux-imx@nxp.com>
1848 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1849 S:      Maintained
1850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1851 X:      drivers/media/i2c/
1852 N:      imx
1853 N:      mxs
1854
1855 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1856 M:      Shawn Guo <shawnguo@kernel.org>
1857 M:      Li Yang <leoyang.li@nxp.com>
1858 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1859 S:      Maintained
1860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1861 F:      arch/arm/boot/dts/ls1021a*
1862 F:      arch/arm64/boot/dts/freescale/fsl-*
1863 F:      arch/arm64/boot/dts/freescale/qoriq-*
1864
1865 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1866 M:      Shawn Guo <shawnguo@kernel.org>
1867 M:      Sascha Hauer <s.hauer@pengutronix.de>
1868 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1869 R:      Stefan Agner <stefan@agner.ch>
1870 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1871 S:      Maintained
1872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1873 F:      arch/arm/boot/dts/vf*
1874 F:      arch/arm/mach-imx/*vf610*
1875
1876 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1877 M:      Lennert Buytenhek <kernel@wantstofly.org>
1878 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1879 S:      Maintained
1880
1881 ARM/GUMSTIX MACHINE SUPPORT
1882 M:      Steve Sakoman <sakoman@gmail.com>
1883 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1884 S:      Maintained
1885
1886 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1887 M:      Philipp Zabel <philipp.zabel@gmail.com>
1888 M:      Paul Parsons <lost.distance@yahoo.com>
1889 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1890 S:      Maintained
1891 F:      arch/arm/mach-pxa/hx4700.c
1892 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1893 F:      sound/soc/pxa/hx4700.c
1894
1895 ARM/HISILICON SOC SUPPORT
1896 M:      Wei Xu <xuwei5@hisilicon.com>
1897 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1898 S:      Supported
1899 W:      http://www.hisilicon.com
1900 T:      git git://github.com/hisilicon/linux-hisi.git
1901 F:      arch/arm/boot/dts/hi3*
1902 F:      arch/arm/boot/dts/hip*
1903 F:      arch/arm/boot/dts/hisi*
1904 F:      arch/arm/mach-hisi/
1905 F:      arch/arm64/boot/dts/hisilicon/
1906
1907 ARM/HP JORNADA 7XX MACHINE SUPPORT
1908 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1909 S:      Maintained
1910 W:      www.jlime.com
1911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1912 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1913 F:      arch/arm/mach-sa1100/jornada720.c
1914
1915 ARM/IGEP MACHINE SUPPORT
1916 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1917 M:      Javier Martinez Canillas <javier@dowhile0.org>
1918 L:      linux-omap@vger.kernel.org
1919 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1920 S:      Maintained
1921 F:      arch/arm/boot/dts/omap3-igep*
1922
1923 ARM/INCOME PXA270 SUPPORT
1924 M:      Marek Vasut <marek.vasut@gmail.com>
1925 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1926 S:      Maintained
1927 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1928
1929 ARM/INTEL IOP32X ARM ARCHITECTURE
1930 M:      Lennert Buytenhek <kernel@wantstofly.org>
1931 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1932 S:      Maintained
1933
1934 ARM/INTEL IQ81342EX MACHINE SUPPORT
1935 M:      Lennert Buytenhek <kernel@wantstofly.org>
1936 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1937 S:      Maintained
1938
1939 ARM/INTEL IXDP2850 MACHINE SUPPORT
1940 M:      Lennert Buytenhek <kernel@wantstofly.org>
1941 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1942 S:      Maintained
1943
1944 ARM/INTEL IXP4XX ARM ARCHITECTURE
1945 M:      Linus Walleij <linusw@kernel.org>
1946 M:      Imre Kaloz <kaloz@openwrt.org>
1947 M:      Krzysztof Halasa <khalasa@piap.pl>
1948 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1949 S:      Maintained
1950 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1951 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1952 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1953 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1954 F:      arch/arm/mach-ixp4xx/
1955 F:      drivers/clocksource/timer-ixp4xx.c
1956 F:      drivers/gpio/gpio-ixp4xx.c
1957 F:      drivers/irqchip/irq-ixp4xx.c
1958 F:      include/linux/irqchip/irq-ixp4xx.h
1959 F:      include/linux/platform_data/timer-ixp4xx.h
1960
1961 ARM/INTEL KEEMBAY ARCHITECTURE
1962 M:      Paul J. Murphy <paul.j.murphy@intel.com>
1963 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
1964 S:      Maintained
1965 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
1966 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
1967 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
1968
1969 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1970 M:      Jonathan Cameron <jic23@cam.ac.uk>
1971 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1972 S:      Maintained
1973 F:      arch/arm/mach-pxa/stargate2.c
1974 F:      drivers/pcmcia/pxa2xx_stargate2.c
1975
1976 ARM/INTEL XSC3 (MANZANO) ARM CORE
1977 M:      Lennert Buytenhek <kernel@wantstofly.org>
1978 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1979 S:      Maintained
1980
1981 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1982 M:      Lennert Buytenhek <kernel@wantstofly.org>
1983 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1984 S:      Maintained
1985
1986 ARM/LG1K ARCHITECTURE
1987 M:      Chanho Min <chanho.min@lge.com>
1988 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1989 S:      Maintained
1990 F:      arch/arm64/boot/dts/lg/
1991
1992 ARM/LOGICPD PXA270 MACHINE SUPPORT
1993 M:      Lennert Buytenhek <kernel@wantstofly.org>
1994 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1995 S:      Maintained
1996
1997 ARM/LPC18XX ARCHITECTURE
1998 M:      Vladimir Zapolskiy <vz@mleia.com>
1999 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2000 S:      Maintained
2001 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2002 F:      arch/arm/boot/dts/lpc43*
2003 F:      drivers/i2c/busses/i2c-lpc2k.c
2004 F:      drivers/memory/pl172.c
2005 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2006 F:      drivers/rtc/rtc-lpc24xx.c
2007 N:      lpc18xx
2008
2009 ARM/LPC32XX SOC SUPPORT
2010 M:      Vladimir Zapolskiy <vz@mleia.com>
2011 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2012 S:      Maintained
2013 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2014 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2015 F:      arch/arm/boot/dts/lpc32*
2016 F:      arch/arm/mach-lpc32xx/
2017 F:      drivers/i2c/busses/i2c-pnx.c
2018 F:      drivers/net/ethernet/nxp/lpc_eth.c
2019 F:      drivers/usb/host/ohci-nxp.c
2020 F:      drivers/watchdog/pnx4008_wdt.c
2021 N:      lpc32xx
2022
2023 ARM/MAGICIAN MACHINE SUPPORT
2024 M:      Philipp Zabel <philipp.zabel@gmail.com>
2025 S:      Maintained
2026
2027 ARM/Marvell Dove/MV78xx0/Orion SOC support
2028 M:      Andrew Lunn <andrew@lunn.ch>
2029 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2030 M:      Gregory Clement <gregory.clement@bootlin.com>
2031 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2032 S:      Maintained
2033 T:      git git://git.infradead.org/linux-mvebu.git
2034 F:      Documentation/devicetree/bindings/soc/dove/
2035 F:      arch/arm/boot/dts/dove*
2036 F:      arch/arm/boot/dts/orion5x*
2037 F:      arch/arm/mach-dove/
2038 F:      arch/arm/mach-mv78xx0/
2039 F:      arch/arm/mach-orion5x/
2040 F:      arch/arm/plat-orion/
2041 F:      drivers/soc/dove/
2042
2043 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2044 M:      Andrew Lunn <andrew@lunn.ch>
2045 M:      Gregory Clement <gregory.clement@bootlin.com>
2046 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2047 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2048 S:      Maintained
2049 T:      git git://git.infradead.org/linux-mvebu.git
2050 F:      arch/arm/boot/dts/armada*
2051 F:      arch/arm/boot/dts/kirkwood*
2052 F:      arch/arm/configs/mvebu_*_defconfig
2053 F:      arch/arm/mach-mvebu/
2054 F:      arch/arm64/boot/dts/marvell/armada*
2055 F:      arch/arm64/boot/dts/marvell/cn913*
2056 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2057 F:      drivers/cpufreq/armada-8k-cpufreq.c
2058 F:      drivers/cpufreq/mvebu-cpufreq.c
2059 F:      drivers/irqchip/irq-armada-370-xp.c
2060 F:      drivers/irqchip/irq-mvebu-*
2061 F:      drivers/pinctrl/mvebu/
2062 F:      drivers/rtc/rtc-armada38x.c
2063
2064 ARM/Mediatek RTC DRIVER
2065 M:      Eddie Huang <eddie.huang@mediatek.com>
2066 M:      Sean Wang <sean.wang@mediatek.com>
2067 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2068 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2069 S:      Maintained
2070 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2071 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2072 F:      drivers/rtc/rtc-mt2712.c
2073 F:      drivers/rtc/rtc-mt6397.c
2074 F:      drivers/rtc/rtc-mt7622.c
2075
2076 ARM/Mediatek SoC support
2077 M:      Matthias Brugger <matthias.bgg@gmail.com>
2078 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2079 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2080 S:      Maintained
2081 W:      https://mtk.bcnfs.org/
2082 C:      irc://chat.freenode.net/linux-mediatek
2083 F:      arch/arm/boot/dts/mt6*
2084 F:      arch/arm/boot/dts/mt7*
2085 F:      arch/arm/boot/dts/mt8*
2086 F:      arch/arm/mach-mediatek/
2087 F:      arch/arm64/boot/dts/mediatek/
2088 F:      drivers/soc/mediatek/
2089 N:      mtk
2090 N:      mt[678]
2091 K:      mediatek
2092
2093 ARM/Mediatek USB3 PHY DRIVER
2094 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2095 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2096 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2097 S:      Maintained
2098 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
2099 F:      drivers/phy/mediatek/
2100
2101 ARM/Microchip (AT91) SoC support
2102 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2103 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2104 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2105 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2106 S:      Supported
2107 W:      http://www.linux4sam.org
2108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2109 F:      arch/arm/boot/dts/at91*.dts
2110 F:      arch/arm/boot/dts/at91*.dtsi
2111 F:      arch/arm/boot/dts/sama*.dts
2112 F:      arch/arm/boot/dts/sama*.dtsi
2113 F:      arch/arm/include/debug/at91.S
2114 F:      arch/arm/mach-at91/
2115 F:      drivers/memory/atmel*
2116 F:      drivers/watchdog/sama5d4_wdt.c
2117 F:      include/soc/at91/
2118 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2119 X:      drivers/net/wireless/atmel/
2120 N:      at91
2121 N:      atmel
2122
2123 ARM/Microchip Sparx5 SoC support
2124 M:      Lars Povlsen <lars.povlsen@microchip.com>
2125 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2126 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
2127 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2128 S:      Supported
2129 T:      git git://github.com/microchip-ung/linux-upstream.git
2130 F:      arch/arm64/boot/dts/microchip/
2131 N:      sparx5
2132
2133 ARM/MIOA701 MACHINE SUPPORT
2134 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2135 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2136 S:      Maintained
2137 F:      arch/arm/mach-pxa/mioa701.c
2138
2139 ARM/MStar/Sigmastar Armv7 SoC support
2140 M:      Daniel Palmer <daniel@thingy.jp>
2141 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2142 S:      Maintained
2143 W:      http://linux-chenxing.org/
2144 F:      Documentation/devicetree/bindings/arm/mstar/*
2145 F:      arch/arm/boot/dts/mstar-*
2146 F:      arch/arm/mach-mstar/
2147
2148 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2149 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2150 S:      Maintained
2151
2152 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2153 M:      Linus Walleij <linus.walleij@linaro.org>
2154 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2155 S:      Maintained
2156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2157 F:      Documentation/devicetree/bindings/arm/ste-*
2158 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2159 F:      Documentation/devicetree/bindings/arm/ux500/
2160 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2161 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2162 F:      arch/arm/boot/dts/ste-*
2163 F:      arch/arm/mach-nomadik/
2164 F:      arch/arm/mach-u300/
2165 F:      arch/arm/mach-ux500/
2166 F:      drivers/clk/clk-nomadik.c
2167 F:      drivers/clk/clk-u300.c
2168 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2169 F:      drivers/clocksource/timer-u300.c
2170 F:      drivers/dma/coh901318*
2171 F:      drivers/dma/ste_dma40*
2172 F:      drivers/hwspinlock/u8500_hsem.c
2173 F:      drivers/i2c/busses/i2c-nomadik.c
2174 F:      drivers/i2c/busses/i2c-stu300.c
2175 F:      drivers/iio/adc/ab8500-gpadc.c
2176 F:      drivers/mfd/ab3100*
2177 F:      drivers/mfd/ab8500*
2178 F:      drivers/mfd/abx500*
2179 F:      drivers/mfd/db8500*
2180 F:      drivers/mfd/dbx500*
2181 F:      drivers/pinctrl/nomadik/
2182 F:      drivers/pinctrl/pinctrl-coh901*
2183 F:      drivers/pinctrl/pinctrl-u300.c
2184 F:      drivers/rtc/rtc-ab3100.c
2185 F:      drivers/rtc/rtc-ab8500.c
2186 F:      drivers/rtc/rtc-coh901331.c
2187 F:      drivers/rtc/rtc-pl031.c
2188 F:      drivers/soc/ux500/
2189 F:      drivers/watchdog/coh901327_wdt.c
2190
2191 ARM/NUVOTON NPCM ARCHITECTURE
2192 M:      Avi Fishman <avifishman70@gmail.com>
2193 M:      Tomer Maimon <tmaimon77@gmail.com>
2194 M:      Tali Perry <tali.perry1@gmail.com>
2195 R:      Patrick Venture <venture@google.com>
2196 R:      Nancy Yuen <yuenn@google.com>
2197 R:      Benjamin Fair <benjaminfair@google.com>
2198 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2199 S:      Supported
2200 F:      Documentation/devicetree/bindings/*/*/*npcm*
2201 F:      Documentation/devicetree/bindings/*/*npcm*
2202 F:      arch/arm/boot/dts/nuvoton-npcm*
2203 F:      arch/arm/mach-npcm/
2204 F:      drivers/*/*npcm*
2205 F:      drivers/*/*/*npcm*
2206 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2207
2208 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2209 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2210 S:      Orphan
2211 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2212 F:      arch/arm/mach-s3c/gta02.h
2213 F:      arch/arm/mach-s3c/mach-gta02.c
2214
2215 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2216 M:      Alexander Clouter <alex@digriz.org.uk>
2217 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2218 S:      Maintained
2219 W:      http://www.digriz.org.uk/ts78xx/kernel
2220 F:      arch/arm/mach-orion5x/ts78xx-*
2221
2222 ARM/OXNAS platform support
2223 M:      Neil Armstrong <narmstrong@baylibre.com>
2224 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2225 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2226 S:      Maintained
2227 F:      arch/arm/boot/dts/ox8*.dts*
2228 F:      arch/arm/mach-oxnas/
2229 F:      drivers/power/reset/oxnas-restart.c
2230 N:      oxnas
2231
2232 ARM/PALM TREO SUPPORT
2233 M:      Tomas Cech <sleep_walker@suse.com>
2234 L:      linux-arm-kernel@lists.infradead.org
2235 S:      Maintained
2236 W:      http://hackndev.com
2237 F:      arch/arm/mach-pxa/palmtreo.*
2238
2239 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2240 M:      Marek Vasut <marek.vasut@gmail.com>
2241 L:      linux-arm-kernel@lists.infradead.org
2242 S:      Maintained
2243 W:      http://hackndev.com
2244 F:      arch/arm/mach-pxa/include/mach/palmld.h
2245 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2246 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2247 F:      arch/arm/mach-pxa/palmld.c
2248 F:      arch/arm/mach-pxa/palmt5.*
2249 F:      arch/arm/mach-pxa/palmtc.c
2250 F:      arch/arm/mach-pxa/palmte2.*
2251 F:      arch/arm/mach-pxa/palmtx.c
2252
2253 ARM/PALMZ72 SUPPORT
2254 M:      Sergey Lapin <slapin@ossfans.org>
2255 L:      linux-arm-kernel@lists.infradead.org
2256 S:      Maintained
2257 W:      http://hackndev.com
2258 F:      arch/arm/mach-pxa/palmz72.*
2259
2260 ARM/PLEB SUPPORT
2261 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2262 S:      Maintained
2263 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2264
2265 ARM/PT DIGITAL BOARD PORT
2266 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2267 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2268 S:      Maintained
2269 W:      http://www.armlinux.org.uk/
2270
2271 ARM/QUALCOMM SUPPORT
2272 M:      Andy Gross <agross@kernel.org>
2273 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2274 L:      linux-arm-msm@vger.kernel.org
2275 S:      Maintained
2276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2277 F:      Documentation/devicetree/bindings/*/qcom*
2278 F:      Documentation/devicetree/bindings/soc/qcom/
2279 F:      arch/arm/boot/dts/qcom-*.dts
2280 F:      arch/arm/boot/dts/qcom-*.dtsi
2281 F:      arch/arm/mach-qcom/
2282 F:      arch/arm64/boot/dts/qcom/
2283 F:      drivers/*/*/qcom*
2284 F:      drivers/*/*/qcom/
2285 F:      drivers/*/pm8???-*
2286 F:      drivers/*/qcom*
2287 F:      drivers/*/qcom/
2288 F:      drivers/bluetooth/btqcomsmd.c
2289 F:      drivers/clocksource/timer-qcom.c
2290 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2291 F:      drivers/extcon/extcon-qcom*
2292 F:      drivers/i2c/busses/i2c-qcom-geni.c
2293 F:      drivers/i2c/busses/i2c-qup.c
2294 F:      drivers/iommu/msm*
2295 F:      drivers/mfd/ssbi.c
2296 F:      drivers/mmc/host/mmci_qcom*
2297 F:      drivers/mmc/host/sdhci-msm.c
2298 F:      drivers/pci/controller/dwc/pcie-qcom.c
2299 F:      drivers/phy/qualcomm/
2300 F:      drivers/power/*/msm*
2301 F:      drivers/reset/reset-qcom-*
2302 F:      drivers/scsi/ufs/ufs-qcom*
2303 F:      drivers/spi/spi-geni-qcom.c
2304 F:      drivers/spi/spi-qcom-qspi.c
2305 F:      drivers/spi/spi-qup.c
2306 F:      drivers/tty/serial/msm_serial.c
2307 F:      drivers/usb/dwc3/dwc3-qcom.c
2308 F:      include/dt-bindings/*/qcom*
2309 F:      include/linux/*/qcom*
2310
2311 ARM/RADISYS ENP2611 MACHINE SUPPORT
2312 M:      Lennert Buytenhek <kernel@wantstofly.org>
2313 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2314 S:      Maintained
2315
2316 ARM/RDA MICRO ARCHITECTURE
2317 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2318 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2319 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2320 S:      Maintained
2321 F:      Documentation/devicetree/bindings/arm/rda.yaml
2322 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2323 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2324 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2325 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2326 F:      arch/arm/boot/dts/rda8810pl-*
2327 F:      drivers/clocksource/timer-rda.c
2328 F:      drivers/gpio/gpio-rda.c
2329 F:      drivers/irqchip/irq-rda-intc.c
2330 F:      drivers/tty/serial/rda-uart.c
2331
2332 ARM/REALTEK ARCHITECTURE
2333 M:      Andreas Färber <afaerber@suse.de>
2334 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2335 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2336 S:      Maintained
2337 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2338 F:      arch/arm/boot/dts/rtd*
2339 F:      arch/arm/mach-realtek/
2340 F:      arch/arm64/boot/dts/realtek/
2341
2342 ARM/RENESAS ARM64 ARCHITECTURE
2343 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2344 M:      Magnus Damm <magnus.damm@gmail.com>
2345 L:      linux-renesas-soc@vger.kernel.org
2346 S:      Supported
2347 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2349 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2350 F:      arch/arm64/boot/dts/renesas/
2351 F:      drivers/soc/renesas/
2352 F:      include/linux/soc/renesas/
2353
2354 ARM/RISCPC ARCHITECTURE
2355 M:      Russell King <linux@armlinux.org.uk>
2356 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2357 S:      Maintained
2358 W:      http://www.armlinux.org.uk/
2359 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2360 F:      arch/arm/include/asm/hardware/ioc.h
2361 F:      arch/arm/include/asm/hardware/iomd.h
2362 F:      arch/arm/include/asm/hardware/memc.h
2363 F:      arch/arm/mach-rpc/
2364 F:      drivers/net/ethernet/8390/etherh.c
2365 F:      drivers/net/ethernet/i825xx/ether1*
2366 F:      drivers/net/ethernet/seeq/ether3*
2367 F:      drivers/scsi/arm/
2368
2369 ARM/Rockchip SoC support
2370 M:      Heiko Stuebner <heiko@sntech.de>
2371 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2372 L:      linux-rockchip@lists.infradead.org
2373 S:      Maintained
2374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2375 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2376 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2377 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2378 F:      arch/arm/boot/dts/rk3*
2379 F:      arch/arm/boot/dts/rv1108*
2380 F:      arch/arm/mach-rockchip/
2381 F:      drivers/*/*/*rockchip*
2382 F:      drivers/*/*rockchip*
2383 F:      drivers/clk/rockchip/
2384 F:      drivers/i2c/busses/i2c-rk3x.c
2385 F:      sound/soc/rockchip/
2386 N:      rockchip
2387
2388 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2389 M:      Krzysztof Kozlowski <krzk@kernel.org>
2390 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2391 L:      linux-samsung-soc@vger.kernel.org
2392 S:      Maintained
2393 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2394 F:      Documentation/arm/samsung/
2395 F:      Documentation/devicetree/bindings/arm/samsung/
2396 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2397 F:      arch/arm/boot/dts/exynos*
2398 F:      arch/arm/boot/dts/s3c*
2399 F:      arch/arm/boot/dts/s5p*
2400 F:      arch/arm/mach-exynos*/
2401 F:      arch/arm/mach-s3c/
2402 F:      arch/arm/mach-s5p*/
2403 F:      arch/arm64/boot/dts/exynos/
2404 F:      drivers/*/*/*s3c24*
2405 F:      drivers/*/*s3c24*
2406 F:      drivers/*/*s3c64xx*
2407 F:      drivers/*/*s5pv210*
2408 F:      drivers/memory/samsung/
2409 F:      drivers/soc/samsung/
2410 F:      drivers/tty/serial/samsung*
2411 F:      include/linux/soc/samsung/
2412 N:      exynos
2413 N:      s3c2410
2414 N:      s3c64xx
2415 N:      s5pv210
2416
2417 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2418 M:      Andrzej Hajda <a.hajda@samsung.com>
2419 L:      linux-arm-kernel@lists.infradead.org
2420 L:      linux-media@vger.kernel.org
2421 S:      Maintained
2422 F:      drivers/media/platform/s5p-g2d/
2423
2424 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2425 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2426 L:      linux-samsung-soc@vger.kernel.org
2427 L:      linux-media@vger.kernel.org
2428 S:      Maintained
2429 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2430 F:      drivers/media/cec/platform/s5p/
2431
2432 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2433 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2434 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2435 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2436 L:      linux-arm-kernel@lists.infradead.org
2437 L:      linux-media@vger.kernel.org
2438 S:      Maintained
2439 F:      drivers/media/platform/s5p-jpeg/
2440
2441 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2442 M:      Andrzej Hajda <a.hajda@samsung.com>
2443 L:      linux-arm-kernel@lists.infradead.org
2444 L:      linux-media@vger.kernel.org
2445 S:      Maintained
2446 F:      drivers/media/platform/s5p-mfc/
2447
2448 ARM/SHMOBILE ARM ARCHITECTURE
2449 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2450 M:      Magnus Damm <magnus.damm@gmail.com>
2451 L:      linux-renesas-soc@vger.kernel.org
2452 S:      Supported
2453 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2455 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2456 F:      arch/arm/boot/dts/emev2*
2457 F:      arch/arm/boot/dts/gr-peach*
2458 F:      arch/arm/boot/dts/iwg20d-q7*
2459 F:      arch/arm/boot/dts/r7s*
2460 F:      arch/arm/boot/dts/r8a*
2461 F:      arch/arm/boot/dts/r9a*
2462 F:      arch/arm/boot/dts/sh*
2463 F:      arch/arm/configs/shmobile_defconfig
2464 F:      arch/arm/include/debug/renesas-scif.S
2465 F:      arch/arm/mach-shmobile/
2466 F:      drivers/soc/renesas/
2467 F:      include/linux/soc/renesas/
2468
2469 ARM/SOCFPGA ARCHITECTURE
2470 M:      Dinh Nguyen <dinguyen@kernel.org>
2471 S:      Maintained
2472 W:      http://www.rocketboards.org
2473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2474 F:      arch/arm/boot/dts/socfpga*
2475 F:      arch/arm/configs/socfpga_defconfig
2476 F:      arch/arm/mach-socfpga/
2477 F:      arch/arm64/boot/dts/altera/
2478 F:      arch/arm64/boot/dts/intel/
2479
2480 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2481 M:      Dinh Nguyen <dinguyen@kernel.org>
2482 S:      Maintained
2483 F:      drivers/clk/socfpga/
2484
2485 ARM/SOCFPGA EDAC SUPPORT
2486 M:      Dinh Nguyen <dinguyen@kernel.org>
2487 S:      Maintained
2488 F:      drivers/edac/altera_edac.
2489
2490 ARM/SPREADTRUM SoC SUPPORT
2491 M:      Orson Zhai <orsonzhai@gmail.com>
2492 M:      Baolin Wang <baolin.wang7@gmail.com>
2493 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2494 S:      Maintained
2495 F:      arch/arm64/boot/dts/sprd
2496 N:      sprd
2497 N:      sc27xx
2498 N:      sc2731
2499
2500 ARM/STI ARCHITECTURE
2501 M:      Patrice Chotard <patrice.chotard@st.com>
2502 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2503 S:      Maintained
2504 W:      http://www.stlinux.com
2505 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2506 F:      arch/arm/boot/dts/sti*
2507 F:      arch/arm/mach-sti/
2508 F:      drivers/ata/ahci_st.c
2509 F:      drivers/char/hw_random/st-rng.c
2510 F:      drivers/clocksource/arm_global_timer.c
2511 F:      drivers/clocksource/clksrc_st_lpc.c
2512 F:      drivers/cpufreq/sti-cpufreq.c
2513 F:      drivers/dma/st_fdma*
2514 F:      drivers/i2c/busses/i2c-st.c
2515 F:      drivers/media/platform/sti/c8sectpfe/
2516 F:      drivers/media/rc/st_rc.c
2517 F:      drivers/mmc/host/sdhci-st.c
2518 F:      drivers/phy/st/phy-miphy28lp.c
2519 F:      drivers/phy/st/phy-stih407-usb.c
2520 F:      drivers/pinctrl/pinctrl-st.c
2521 F:      drivers/remoteproc/st_remoteproc.c
2522 F:      drivers/remoteproc/st_slim_rproc.c
2523 F:      drivers/reset/sti/
2524 F:      drivers/rtc/rtc-st-lpc.c
2525 F:      drivers/tty/serial/st-asc.c
2526 F:      drivers/usb/dwc3/dwc3-st.c
2527 F:      drivers/usb/host/ehci-st.c
2528 F:      drivers/usb/host/ohci-st.c
2529 F:      drivers/watchdog/st_lpc_wdt.c
2530 F:      include/linux/remoteproc/st_slim_rproc.h
2531
2532 ARM/STM32 ARCHITECTURE
2533 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2534 M:      Alexandre Torgue <alexandre.torgue@st.com>
2535 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2536 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2537 S:      Maintained
2538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2539 F:      arch/arm/boot/dts/stm32*
2540 F:      arch/arm/mach-stm32/
2541 F:      drivers/clocksource/armv7m_systick.c
2542 N:      stm32
2543 N:      stm
2544
2545 ARM/Synaptics SoC support
2546 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2547 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2548 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2549 S:      Maintained
2550 F:      arch/arm/boot/dts/berlin*
2551 F:      arch/arm/mach-berlin/
2552 F:      arch/arm64/boot/dts/synaptics/
2553
2554 ARM/TANGO ARCHITECTURE
2555 M:      Marc Gonzalez <marc.w.gonzalez@free.fr>
2556 M:      Mans Rullgard <mans@mansr.com>
2557 L:      linux-arm-kernel@lists.infradead.org
2558 S:      Odd Fixes
2559 N:      tango
2560
2561 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2562 M:      Lennert Buytenhek <kernel@wantstofly.org>
2563 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2564 S:      Maintained
2565
2566 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2567 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2568 L:      linux-tegra@vger.kernel.org
2569 L:      linux-media@vger.kernel.org
2570 S:      Maintained
2571 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2572 F:      drivers/media/cec/platform/tegra/
2573
2574 ARM/TETON BGA MACHINE SUPPORT
2575 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2576 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2577 S:      Maintained
2578
2579 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2580 M:      Santosh Shilimkar <ssantosh@kernel.org>
2581 L:      linux-kernel@vger.kernel.org
2582 S:      Maintained
2583 F:      drivers/memory/*emif*
2584
2585 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2586 M:      Santosh Shilimkar <ssantosh@kernel.org>
2587 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2588 S:      Maintained
2589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2590 F:      arch/arm/boot/dts/keystone-*
2591 F:      arch/arm/mach-keystone/
2592
2593 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2594 M:      Santosh Shilimkar <ssantosh@kernel.org>
2595 L:      linux-kernel@vger.kernel.org
2596 S:      Maintained
2597 F:      drivers/clk/keystone/
2598
2599 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2600 M:      Santosh Shilimkar <ssantosh@kernel.org>
2601 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2602 L:      linux-kernel@vger.kernel.org
2603 S:      Maintained
2604 F:      drivers/clocksource/timer-keystone.c
2605
2606 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2607 M:      Santosh Shilimkar <ssantosh@kernel.org>
2608 L:      linux-kernel@vger.kernel.org
2609 S:      Maintained
2610 F:      drivers/power/reset/keystone-reset.c
2611
2612 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2613 M:      Tero Kristo <t-kristo@ti.com>
2614 M:      Nishanth Menon <nm@ti.com>
2615 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2616 S:      Supported
2617 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2618 F:      arch/arm64/boot/dts/ti/Makefile
2619 F:      arch/arm64/boot/dts/ti/k3-*
2620 F:      include/dt-bindings/pinctrl/k3.h
2621
2622 ARM/THECUS N2100 MACHINE SUPPORT
2623 M:      Lennert Buytenhek <kernel@wantstofly.org>
2624 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2625 S:      Maintained
2626
2627 ARM/TOSA MACHINE SUPPORT
2628 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2629 M:      Dirk Opfer <dirk@opfer-online.de>
2630 S:      Maintained
2631
2632 ARM/TOSHIBA VISCONTI ARCHITECTURE
2633 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2634 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2635 S:      Supported
2636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2637 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2638 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2639 F:      arch/arm64/boot/dts/toshiba/
2640 F:      drivers/pinctrl/visconti/
2641 N:      visconti
2642
2643 ARM/UNIPHIER ARCHITECTURE
2644 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2645 S:      Orphan
2646 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2647 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2648 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2649 F:      arch/arm/boot/dts/uniphier*
2650 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2651 F:      arch/arm/mach-uniphier/
2652 F:      arch/arm/mm/cache-uniphier.c
2653 F:      arch/arm64/boot/dts/socionext/uniphier*
2654 F:      drivers/bus/uniphier-system-bus.c
2655 F:      drivers/clk/uniphier/
2656 F:      drivers/dma/uniphier-mdmac.c
2657 F:      drivers/gpio/gpio-uniphier.c
2658 F:      drivers/i2c/busses/i2c-uniphier*
2659 F:      drivers/irqchip/irq-uniphier-aidet.c
2660 F:      drivers/mmc/host/uniphier-sd.c
2661 F:      drivers/pinctrl/uniphier/
2662 F:      drivers/reset/reset-uniphier.c
2663 F:      drivers/tty/serial/8250/8250_uniphier.c
2664 N:      uniphier
2665
2666 ARM/VERSATILE EXPRESS PLATFORM
2667 M:      Liviu Dudau <liviu.dudau@arm.com>
2668 M:      Sudeep Holla <sudeep.holla@arm.com>
2669 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2670 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2671 S:      Maintained
2672 F:      */*/*/vexpress*
2673 F:      */*/vexpress*
2674 F:      arch/arm/boot/dts/vexpress*
2675 F:      arch/arm/mach-vexpress/
2676 F:      arch/arm64/boot/dts/arm/
2677 F:      drivers/clk/versatile/clk-vexpress-osc.c
2678 F:      drivers/clocksource/timer-versatile.c
2679 N:      mps2
2680
2681 ARM/VFP SUPPORT
2682 M:      Russell King <linux@armlinux.org.uk>
2683 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2684 S:      Maintained
2685 W:      http://www.armlinux.org.uk/
2686 F:      arch/arm/vfp/
2687
2688 ARM/VOIPAC PXA270 SUPPORT
2689 M:      Marek Vasut <marek.vasut@gmail.com>
2690 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2691 S:      Maintained
2692 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2693 F:      arch/arm/mach-pxa/vpac270.c
2694
2695 ARM/VT8500 ARM ARCHITECTURE
2696 M:      Tony Prisk <linux@prisktech.co.nz>
2697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2698 S:      Maintained
2699 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2700 F:      arch/arm/mach-vt8500/
2701 F:      drivers/clocksource/timer-vt8500.c
2702 F:      drivers/i2c/busses/i2c-wmt.c
2703 F:      drivers/mmc/host/wmt-sdmmc.c
2704 F:      drivers/pwm/pwm-vt8500.c
2705 F:      drivers/rtc/rtc-vt8500.c
2706 F:      drivers/tty/serial/vt8500_serial.c
2707 F:      drivers/usb/host/ehci-platform.c
2708 F:      drivers/usb/host/uhci-platform.c
2709 F:      drivers/video/fbdev/vt8500lcdfb.*
2710 F:      drivers/video/fbdev/wm8505fb*
2711 F:      drivers/video/fbdev/wmt_ge_rops.*
2712
2713 ARM/ZIPIT Z2 SUPPORT
2714 M:      Marek Vasut <marek.vasut@gmail.com>
2715 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2716 S:      Maintained
2717 F:      arch/arm/mach-pxa/include/mach/z2.h
2718 F:      arch/arm/mach-pxa/z2.c
2719
2720 ARM/ZTE ARCHITECTURE
2721 M:      Jun Nie <jun.nie@linaro.org>
2722 M:      Shawn Guo <shawnguo@kernel.org>
2723 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2724 S:      Maintained
2725 F:      Documentation/devicetree/bindings/arm/zte.yaml
2726 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2727 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2728 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2729 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2730 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2731 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2732 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2733 F:      Documentation/devicetree/bindings/soc/zte/
2734 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2735 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2736 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2737 F:      arch/arm/boot/dts/zx2967*
2738 F:      arch/arm/mach-zx/
2739 F:      arch/arm64/boot/dts/zte/
2740 F:      drivers/clk/zte/
2741 F:      drivers/dma/zx_dma.c
2742 F:      drivers/gpio/gpio-zx.c
2743 F:      drivers/i2c/busses/i2c-zx2967.c
2744 F:      drivers/mmc/host/dw_mmc-zx.*
2745 F:      drivers/pinctrl/zte/
2746 F:      drivers/soc/zte/
2747 F:      drivers/thermal/zx2967_thermal.c
2748 F:      drivers/watchdog/zx2967_wdt.c
2749 F:      include/dt-bindings/clock/zx2967*.h
2750 F:      include/dt-bindings/soc/zte,*.h
2751 F:      sound/soc/codecs/zx_aud96p22.c
2752 F:      sound/soc/zte/
2753
2754 ARM/ZYNQ ARCHITECTURE
2755 M:      Michal Simek <michal.simek@xilinx.com>
2756 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2757 S:      Supported
2758 W:      http://wiki.xilinx.com
2759 T:      git https://github.com/Xilinx/linux-xlnx.git
2760 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2761 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2762 F:      arch/arm/mach-zynq/
2763 F:      drivers/block/xsysace.c
2764 F:      drivers/clocksource/timer-cadence-ttc.c
2765 F:      drivers/cpuidle/cpuidle-zynq.c
2766 F:      drivers/edac/synopsys_edac.c
2767 F:      drivers/i2c/busses/i2c-cadence.c
2768 F:      drivers/i2c/busses/i2c-xiic.c
2769 F:      drivers/mmc/host/sdhci-of-arasan.c
2770 N:      zynq
2771 N:      xilinx
2772
2773 ARM64 PORT (AARCH64 ARCHITECTURE)
2774 M:      Catalin Marinas <catalin.marinas@arm.com>
2775 M:      Will Deacon <will@kernel.org>
2776 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2777 S:      Maintained
2778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2779 F:      Documentation/arm64/
2780 F:      arch/arm64/
2781 F:      tools/testing/selftests/arm64/
2782 X:      arch/arm64/boot/dts/
2783
2784 AS3645A LED FLASH CONTROLLER DRIVER
2785 M:      Sakari Ailus <sakari.ailus@iki.fi>
2786 L:      linux-leds@vger.kernel.org
2787 S:      Maintained
2788 F:      drivers/leds/leds-as3645a.c
2789
2790 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2791 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2792 L:      linux-media@vger.kernel.org
2793 S:      Maintained
2794 T:      git git://linuxtv.org/media_tree.git
2795 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2796 F:      drivers/media/i2c/ak7375.c
2797
2798 ASAHI KASEI AK8974 DRIVER
2799 M:      Linus Walleij <linus.walleij@linaro.org>
2800 L:      linux-iio@vger.kernel.org
2801 S:      Supported
2802 W:      http://www.akm.com/
2803 F:      drivers/iio/magnetometer/ak8974.c
2804
2805 ASC7621 HARDWARE MONITOR DRIVER
2806 M:      George Joseph <george.joseph@fairview5.com>
2807 L:      linux-hwmon@vger.kernel.org
2808 S:      Maintained
2809 F:      Documentation/hwmon/asc7621.rst
2810 F:      drivers/hwmon/asc7621.c
2811
2812 ASPEED PINCTRL DRIVERS
2813 M:      Andrew Jeffery <andrew@aj.id.au>
2814 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2815 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2816 L:      linux-gpio@vger.kernel.org
2817 S:      Maintained
2818 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2819 F:      drivers/pinctrl/aspeed/
2820
2821 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2822 M:      Eddie James <eajames@linux.ibm.com>
2823 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2824 S:      Maintained
2825 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2826 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2827 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2828
2829 ASPEED VIDEO ENGINE DRIVER
2830 M:      Eddie James <eajames@linux.ibm.com>
2831 L:      linux-media@vger.kernel.org
2832 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2833 S:      Maintained
2834 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2835 F:      drivers/media/platform/aspeed-video.c
2836
2837 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2838 M:      Corentin Chary <corentin.chary@gmail.com>
2839 L:      acpi4asus-user@lists.sourceforge.net
2840 L:      platform-driver-x86@vger.kernel.org
2841 S:      Maintained
2842 W:      http://acpi4asus.sf.net
2843 F:      drivers/platform/x86/asus*.c
2844 F:      drivers/platform/x86/eeepc*.c
2845
2846 ASUS WIRELESS RADIO CONTROL DRIVER
2847 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2848 L:      platform-driver-x86@vger.kernel.org
2849 S:      Maintained
2850 F:      drivers/platform/x86/asus-wireless.c
2851
2852 ASYMMETRIC KEYS
2853 M:      David Howells <dhowells@redhat.com>
2854 L:      keyrings@vger.kernel.org
2855 S:      Maintained
2856 F:      Documentation/crypto/asymmetric-keys.rst
2857 F:      crypto/asymmetric_keys/
2858 F:      include/crypto/pkcs7.h
2859 F:      include/crypto/public_key.h
2860 F:      include/linux/verification.h
2861
2862 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2863 R:      Dan Williams <dan.j.williams@intel.com>
2864 S:      Odd fixes
2865 W:      http://sourceforge.net/projects/xscaleiop
2866 F:      Documentation/crypto/async-tx-api.rst
2867 F:      crypto/async_tx/
2868 F:      drivers/dma/
2869 F:      include/linux/async_tx.h
2870 F:      include/linux/dmaengine.h
2871
2872 AT24 EEPROM DRIVER
2873 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2874 L:      linux-i2c@vger.kernel.org
2875 S:      Maintained
2876 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2877 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2878 F:      drivers/misc/eeprom/at24.c
2879
2880 ATA OVER ETHERNET (AOE) DRIVER
2881 M:      "Justin Sanders" <justin@coraid.com>
2882 S:      Supported
2883 W:      http://www.openaoe.org/
2884 F:      Documentation/admin-guide/aoe/
2885 F:      drivers/block/aoe/
2886
2887 ATHEROS 71XX/9XXX GPIO DRIVER
2888 M:      Alban Bedel <albeu@free.fr>
2889 S:      Maintained
2890 W:      https://github.com/AlbanBedel/linux
2891 T:      git git://github.com/AlbanBedel/linux
2892 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2893 F:      drivers/gpio/gpio-ath79.c
2894
2895 ATHEROS 71XX/9XXX USB PHY DRIVER
2896 M:      Alban Bedel <albeu@free.fr>
2897 S:      Maintained
2898 W:      https://github.com/AlbanBedel/linux
2899 T:      git git://github.com/AlbanBedel/linux
2900 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2901 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2902
2903 ATHEROS ATH GENERIC UTILITIES
2904 M:      Kalle Valo <kvalo@codeaurora.org>
2905 L:      linux-wireless@vger.kernel.org
2906 S:      Supported
2907 F:      drivers/net/wireless/ath/*
2908
2909 ATHEROS ATH5K WIRELESS DRIVER
2910 M:      Jiri Slaby <jirislaby@kernel.org>
2911 M:      Nick Kossifidis <mickflemm@gmail.com>
2912 M:      Luis Chamberlain <mcgrof@kernel.org>
2913 L:      linux-wireless@vger.kernel.org
2914 S:      Maintained
2915 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2916 F:      drivers/net/wireless/ath/ath5k/
2917
2918 ATHEROS ATH6KL WIRELESS DRIVER
2919 M:      Kalle Valo <kvalo@codeaurora.org>
2920 L:      linux-wireless@vger.kernel.org
2921 S:      Supported
2922 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2924 F:      drivers/net/wireless/ath/ath6kl/
2925
2926 ATI_REMOTE2 DRIVER
2927 M:      Ville Syrjala <syrjala@sci.fi>
2928 S:      Maintained
2929 F:      drivers/input/misc/ati_remote2.c
2930
2931 ATK0110 HWMON DRIVER
2932 M:      Luca Tettamanti <kronos.it@gmail.com>
2933 L:      linux-hwmon@vger.kernel.org
2934 S:      Maintained
2935 F:      drivers/hwmon/asus_atk0110.c
2936
2937 ATLX ETHERNET DRIVERS
2938 M:      Jay Cliburn <jcliburn@gmail.com>
2939 M:      Chris Snook <chris.snook@gmail.com>
2940 L:      netdev@vger.kernel.org
2941 S:      Maintained
2942 W:      http://sourceforge.net/projects/atl1
2943 W:      http://atl1.sourceforge.net
2944 F:      drivers/net/ethernet/atheros/
2945
2946 ATM
2947 M:      Chas Williams <3chas3@gmail.com>
2948 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2949 L:      netdev@vger.kernel.org
2950 S:      Maintained
2951 W:      http://linux-atm.sourceforge.net
2952 F:      drivers/atm/
2953 F:      include/linux/atm*
2954 F:      include/uapi/linux/atm*
2955
2956 ATMEL MACB ETHERNET DRIVER
2957 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2958 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2959 S:      Supported
2960 F:      drivers/net/ethernet/cadence/
2961
2962 ATMEL MAXTOUCH DRIVER
2963 M:      Nick Dyer <nick@shmanahar.org>
2964 S:      Maintained
2965 T:      git git://github.com/ndyer/linux.git
2966 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2967 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2968
2969 ATMEL WIRELESS DRIVER
2970 M:      Simon Kelley <simon@thekelleys.org.uk>
2971 L:      linux-wireless@vger.kernel.org
2972 S:      Maintained
2973 W:      http://www.thekelleys.org.uk/atmel
2974 W:      http://atmelwlandriver.sourceforge.net/
2975 F:      drivers/net/wireless/atmel/atmel*
2976
2977 ATOMIC INFRASTRUCTURE
2978 M:      Will Deacon <will@kernel.org>
2979 M:      Peter Zijlstra <peterz@infradead.org>
2980 R:      Boqun Feng <boqun.feng@gmail.com>
2981 L:      linux-kernel@vger.kernel.org
2982 S:      Maintained
2983 F:      arch/*/include/asm/atomic*.h
2984 F:      include/*/atomic*.h
2985 F:      scripts/atomic/
2986
2987 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2988 M:      Bradley Grove <linuxdrivers@attotech.com>
2989 L:      linux-scsi@vger.kernel.org
2990 S:      Supported
2991 W:      http://www.attotech.com
2992 F:      drivers/scsi/esas2r
2993
2994 ATUSB IEEE 802.15.4 RADIO DRIVER
2995 M:      Stefan Schmidt <stefan@datenfreihafen.org>
2996 L:      linux-wpan@vger.kernel.org
2997 S:      Maintained
2998 F:      drivers/net/ieee802154/at86rf230.h
2999 F:      drivers/net/ieee802154/atusb.c
3000 F:      drivers/net/ieee802154/atusb.h
3001
3002 AUDIT SUBSYSTEM
3003 M:      Paul Moore <paul@paul-moore.com>
3004 M:      Eric Paris <eparis@redhat.com>
3005 L:      linux-audit@redhat.com (moderated for non-subscribers)
3006 S:      Supported
3007 W:      https://github.com/linux-audit
3008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3009 F:      include/linux/audit.h
3010 F:      include/uapi/linux/audit.h
3011 F:      kernel/audit*
3012
3013 AUXILIARY DISPLAY DRIVERS
3014 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3015 S:      Maintained
3016 F:      drivers/auxdisplay/
3017 F:      include/linux/cfag12864b.h
3018
3019 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3020 M:      Andreas Klinger <ak@it-klinger.de>
3021 L:      linux-iio@vger.kernel.org
3022 S:      Maintained
3023 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3024 F:      drivers/iio/adc/hx711.c
3025
3026 AX.25 NETWORK LAYER
3027 M:      Ralf Baechle <ralf@linux-mips.org>
3028 L:      linux-hams@vger.kernel.org
3029 S:      Maintained
3030 W:      http://www.linux-ax25.org/
3031 F:      include/net/ax25.h
3032 F:      include/uapi/linux/ax25.h
3033 F:      net/ax25/
3034
3035 AXENTIA ARM DEVICES
3036 M:      Peter Rosin <peda@axentia.se>
3037 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3038 S:      Maintained
3039 F:      arch/arm/boot/dts/at91-linea.dtsi
3040 F:      arch/arm/boot/dts/at91-natte.dtsi
3041 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3042 F:      arch/arm/boot/dts/at91-tse850-3.dts
3043
3044 AXENTIA ASOC DRIVERS
3045 M:      Peter Rosin <peda@axentia.se>
3046 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3047 S:      Maintained
3048 F:      Documentation/devicetree/bindings/sound/axentia,*
3049 F:      sound/soc/atmel/tse850-pcm5142.c
3050
3051 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3052 M:      Nuno Sá <nuno.sa@analog.com>
3053 L:      linux-hwmon@vger.kernel.org
3054 S:      Supported
3055 W:      http://ez.analog.com/community/linux-device-drivers
3056 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3057 F:      drivers/hwmon/axi-fan-control.c
3058
3059 AXXIA I2C CONTROLLER
3060 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3061 L:      linux-i2c@vger.kernel.org
3062 S:      Maintained
3063 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3064 F:      drivers/i2c/busses/i2c-axxia.c
3065
3066 AZ6007 DVB DRIVER
3067 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3068 L:      linux-media@vger.kernel.org
3069 S:      Maintained
3070 W:      https://linuxtv.org
3071 T:      git git://linuxtv.org/media_tree.git
3072 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3073
3074 AZTECH FM RADIO RECEIVER DRIVER
3075 M:      Hans Verkuil <hverkuil@xs4all.nl>
3076 L:      linux-media@vger.kernel.org
3077 S:      Maintained
3078 W:      https://linuxtv.org
3079 T:      git git://linuxtv.org/media_tree.git
3080 F:      drivers/media/radio/radio-aztech*
3081
3082 B43 WIRELESS DRIVER
3083 L:      linux-wireless@vger.kernel.org
3084 L:      b43-dev@lists.infradead.org
3085 S:      Odd Fixes
3086 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3087 F:      drivers/net/wireless/broadcom/b43/
3088
3089 B43LEGACY WIRELESS DRIVER
3090 M:      Larry Finger <Larry.Finger@lwfinger.net>
3091 L:      linux-wireless@vger.kernel.org
3092 L:      b43-dev@lists.infradead.org
3093 S:      Maintained
3094 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3095 F:      drivers/net/wireless/broadcom/b43legacy/
3096
3097 BACKLIGHT CLASS/SUBSYSTEM
3098 M:      Lee Jones <lee.jones@linaro.org>
3099 M:      Daniel Thompson <daniel.thompson@linaro.org>
3100 M:      Jingoo Han <jingoohan1@gmail.com>
3101 L:      dri-devel@lists.freedesktop.org
3102 S:      Maintained
3103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3104 F:      Documentation/ABI/stable/sysfs-class-backlight
3105 F:      Documentation/ABI/testing/sysfs-class-backlight
3106 F:      Documentation/devicetree/bindings/leds/backlight
3107 F:      drivers/video/backlight/
3108 F:      include/linux/backlight.h
3109 F:      include/linux/pwm_backlight.h
3110
3111 BATMAN ADVANCED
3112 M:      Marek Lindner <mareklindner@neomailbox.ch>
3113 M:      Simon Wunderlich <sw@simonwunderlich.de>
3114 M:      Antonio Quartulli <a@unstable.cc>
3115 M:      Sven Eckelmann <sven@narfation.org>
3116 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3117 S:      Maintained
3118 W:      https://www.open-mesh.org/
3119 Q:      https://patchwork.open-mesh.org/project/batman/list/
3120 B:      https://www.open-mesh.org/projects/batman-adv/issues
3121 C:      irc://chat.freenode.net/batman
3122 T:      git https://git.open-mesh.org/linux-merge.git
3123 F:      Documentation/ABI/obsolete/sysfs-class-net-batman-adv
3124 F:      Documentation/ABI/obsolete/sysfs-class-net-mesh
3125 F:      Documentation/networking/batman-adv.rst
3126 F:      include/uapi/linux/batadv_packet.h
3127 F:      include/uapi/linux/batman_adv.h
3128 F:      net/batman-adv/
3129
3130 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3131 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3132 L:      linux-hams@vger.kernel.org
3133 S:      Maintained
3134 W:      http://www.baycom.org/~tom/ham/ham.html
3135 F:      drivers/net/hamradio/baycom*
3136
3137 BCACHE (BLOCK LAYER CACHE)
3138 M:      Coly Li <colyli@suse.de>
3139 M:      Kent Overstreet <kent.overstreet@gmail.com>
3140 L:      linux-bcache@vger.kernel.org
3141 S:      Maintained
3142 W:      http://bcache.evilpiepirate.org
3143 C:      irc://irc.oftc.net/bcache
3144 F:      drivers/md/bcache/
3145
3146 BDISP ST MEDIA DRIVER
3147 M:      Fabien Dessenne <fabien.dessenne@st.com>
3148 L:      linux-media@vger.kernel.org
3149 S:      Supported
3150 W:      https://linuxtv.org
3151 T:      git git://linuxtv.org/media_tree.git
3152 F:      drivers/media/platform/sti/bdisp
3153
3154 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3155 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3156 L:      netdev@vger.kernel.org
3157 S:      Maintained
3158 F:      drivers/net/ethernet/ec_bhf.c
3159
3160 BEFS FILE SYSTEM
3161 M:      Luis de Bethencourt <luisbg@kernel.org>
3162 M:      Salah Triki <salah.triki@gmail.com>
3163 S:      Maintained
3164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3165 F:      Documentation/filesystems/befs.rst
3166 F:      fs/befs/
3167
3168 BFQ I/O SCHEDULER
3169 M:      Paolo Valente <paolo.valente@linaro.org>
3170 M:      Jens Axboe <axboe@kernel.dk>
3171 L:      linux-block@vger.kernel.org
3172 S:      Maintained
3173 F:      Documentation/block/bfq-iosched.rst
3174 F:      block/bfq-*
3175
3176 BFS FILE SYSTEM
3177 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3178 S:      Maintained
3179 F:      Documentation/filesystems/bfs.rst
3180 F:      fs/bfs/
3181 F:      include/uapi/linux/bfs_fs.h
3182
3183 BLINKM RGB LED DRIVER
3184 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3185 S:      Maintained
3186 F:      drivers/leds/leds-blinkm.c
3187
3188 BLOCK LAYER
3189 M:      Jens Axboe <axboe@kernel.dk>
3190 L:      linux-block@vger.kernel.org
3191 S:      Maintained
3192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3193 F:      block/
3194 F:      drivers/block/
3195 F:      include/linux/blk*
3196 F:      kernel/trace/blktrace.c
3197 F:      lib/sbitmap.c
3198
3199 BLOCK2MTD DRIVER
3200 M:      Joern Engel <joern@lazybastard.org>
3201 L:      linux-mtd@lists.infradead.org
3202 S:      Maintained
3203 F:      drivers/mtd/devices/block2mtd.c
3204
3205 BLUETOOTH DRIVERS
3206 M:      Marcel Holtmann <marcel@holtmann.org>
3207 M:      Johan Hedberg <johan.hedberg@gmail.com>
3208 L:      linux-bluetooth@vger.kernel.org
3209 S:      Maintained
3210 W:      http://www.bluez.org/
3211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3213 F:      drivers/bluetooth/
3214
3215 BLUETOOTH SUBSYSTEM
3216 M:      Marcel Holtmann <marcel@holtmann.org>
3217 M:      Johan Hedberg <johan.hedberg@gmail.com>
3218 L:      linux-bluetooth@vger.kernel.org
3219 S:      Maintained
3220 W:      http://www.bluez.org/
3221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3223 F:      include/net/bluetooth/
3224 F:      net/bluetooth/
3225
3226 BONDING DRIVER
3227 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3228 M:      Veaceslav Falico <vfalico@gmail.com>
3229 M:      Andy Gospodarek <andy@greyhouse.net>
3230 L:      netdev@vger.kernel.org
3231 S:      Supported
3232 W:      http://sourceforge.net/projects/bonding/
3233 F:      drivers/net/bonding/
3234 F:      include/uapi/linux/if_bonding.h
3235
3236 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3237 M:      Dan Robertson <dan@dlrobertson.com>
3238 L:      linux-iio@vger.kernel.org
3239 S:      Maintained
3240 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3241 F:      drivers/iio/accel/bma400*
3242
3243 BPF (Safe dynamic programs and tools)
3244 M:      Alexei Starovoitov <ast@kernel.org>
3245 M:      Daniel Borkmann <daniel@iogearbox.net>
3246 M:      Andrii Nakryiko <andrii@kernel.org>
3247 R:      Martin KaFai Lau <kafai@fb.com>
3248 R:      Song Liu <songliubraving@fb.com>
3249 R:      Yonghong Song <yhs@fb.com>
3250 R:      John Fastabend <john.fastabend@gmail.com>
3251 R:      KP Singh <kpsingh@kernel.org>
3252 L:      netdev@vger.kernel.org
3253 L:      bpf@vger.kernel.org
3254 S:      Supported
3255 W:      https://bpf.io/
3256 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3259 F:      Documentation/bpf/
3260 F:      Documentation/networking/filter.rst
3261 F:      arch/*/net/*
3262 F:      include/linux/bpf*
3263 F:      include/linux/filter.h
3264 F:      include/trace/events/xdp.h
3265 F:      include/uapi/linux/bpf*
3266 F:      include/uapi/linux/filter.h
3267 F:      kernel/bpf/
3268 F:      kernel/trace/bpf_trace.c
3269 F:      lib/test_bpf.c
3270 F:      net/bpf/
3271 F:      net/core/filter.c
3272 F:      net/sched/act_bpf.c
3273 F:      net/sched/cls_bpf.c
3274 F:      samples/bpf/
3275 F:      tools/bpf/
3276 F:      tools/lib/bpf/
3277 F:      tools/testing/selftests/bpf/
3278 N:      bpf
3279 K:      bpf
3280
3281 BPF JIT for ARM
3282 M:      Shubham Bansal <illusionist.neo@gmail.com>
3283 L:      netdev@vger.kernel.org
3284 L:      bpf@vger.kernel.org
3285 S:      Maintained
3286 F:      arch/arm/net/
3287
3288 BPF JIT for ARM64
3289 M:      Daniel Borkmann <daniel@iogearbox.net>
3290 M:      Alexei Starovoitov <ast@kernel.org>
3291 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3292 L:      netdev@vger.kernel.org
3293 L:      bpf@vger.kernel.org
3294 S:      Supported
3295 F:      arch/arm64/net/
3296
3297 BPF JIT for MIPS (32-BIT AND 64-BIT)
3298 M:      Paul Burton <paulburton@kernel.org>
3299 L:      netdev@vger.kernel.org
3300 L:      bpf@vger.kernel.org
3301 S:      Maintained
3302 F:      arch/mips/net/
3303
3304 BPF JIT for NFP NICs
3305 M:      Jakub Kicinski <kuba@kernel.org>
3306 L:      netdev@vger.kernel.org
3307 L:      bpf@vger.kernel.org
3308 S:      Supported
3309 F:      drivers/net/ethernet/netronome/nfp/bpf/
3310
3311 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3312 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3313 M:      Sandipan Das <sandipan@linux.ibm.com>
3314 L:      netdev@vger.kernel.org
3315 L:      bpf@vger.kernel.org
3316 S:      Maintained
3317 F:      arch/powerpc/net/
3318
3319 BPF JIT for RISC-V (32-bit)
3320 M:      Luke Nelson <luke.r.nels@gmail.com>
3321 M:      Xi Wang <xi.wang@gmail.com>
3322 L:      netdev@vger.kernel.org
3323 L:      bpf@vger.kernel.org
3324 S:      Maintained
3325 F:      arch/riscv/net/
3326 X:      arch/riscv/net/bpf_jit_comp64.c
3327
3328 BPF JIT for RISC-V (64-bit)
3329 M:      Björn Töpel <bjorn.topel@gmail.com>
3330 L:      netdev@vger.kernel.org
3331 L:      bpf@vger.kernel.org
3332 S:      Maintained
3333 F:      arch/riscv/net/
3334 X:      arch/riscv/net/bpf_jit_comp32.c
3335
3336 BPF JIT for S390
3337 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3338 M:      Heiko Carstens <hca@linux.ibm.com>
3339 M:      Vasily Gorbik <gor@linux.ibm.com>
3340 L:      netdev@vger.kernel.org
3341 L:      bpf@vger.kernel.org
3342 S:      Maintained
3343 F:      arch/s390/net/
3344 X:      arch/s390/net/pnet.c
3345
3346 BPF JIT for SPARC (32-BIT AND 64-BIT)
3347 M:      David S. Miller <davem@davemloft.net>
3348 L:      netdev@vger.kernel.org
3349 L:      bpf@vger.kernel.org
3350 S:      Maintained
3351 F:      arch/sparc/net/
3352
3353 BPF JIT for X86 32-BIT
3354 M:      Wang YanQing <udknight@gmail.com>
3355 L:      netdev@vger.kernel.org
3356 L:      bpf@vger.kernel.org
3357 S:      Maintained
3358 F:      arch/x86/net/bpf_jit_comp32.c
3359
3360 BPF JIT for X86 64-BIT
3361 M:      Alexei Starovoitov <ast@kernel.org>
3362 M:      Daniel Borkmann <daniel@iogearbox.net>
3363 L:      netdev@vger.kernel.org
3364 L:      bpf@vger.kernel.org
3365 S:      Supported
3366 F:      arch/x86/net/
3367 X:      arch/x86/net/bpf_jit_comp32.c
3368
3369 BPF LSM (Security Audit and Enforcement using BPF)
3370 M:      KP Singh <kpsingh@kernel.org>
3371 R:      Florent Revest <revest@chromium.org>
3372 R:      Brendan Jackman <jackmanb@chromium.org>
3373 L:      bpf@vger.kernel.org
3374 S:      Maintained
3375 F:      Documentation/bpf/bpf_lsm.rst
3376 F:      include/linux/bpf_lsm.h
3377 F:      kernel/bpf/bpf_lsm.c
3378 F:      security/bpf/
3379
3380 BROADCOM B44 10/100 ETHERNET DRIVER
3381 M:      Michael Chan <michael.chan@broadcom.com>
3382 L:      netdev@vger.kernel.org
3383 S:      Supported
3384 F:      drivers/net/ethernet/broadcom/b44.*
3385
3386 BROADCOM B53 ETHERNET SWITCH DRIVER
3387 M:      Florian Fainelli <f.fainelli@gmail.com>
3388 L:      netdev@vger.kernel.org
3389 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3390 S:      Supported
3391 F:      Documentation/devicetree/bindings/net/dsa/b53.txt
3392 F:      drivers/net/dsa/b53/*
3393 F:      include/linux/platform_data/b53.h
3394
3395 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3396 M:      Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
3397 L:      bcm-kernel-feedback-list@broadcom.com
3398 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3399 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3400 S:      Maintained
3401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3402 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3403 F:      drivers/pci/controller/pcie-brcmstb.c
3404 F:      drivers/staging/vc04_services
3405 N:      bcm2711
3406 N:      bcm2835
3407
3408 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3409 M:      Florian Fainelli <f.fainelli@gmail.com>
3410 M:      Ray Jui <rjui@broadcom.com>
3411 M:      Scott Branden <sbranden@broadcom.com>
3412 M:      bcm-kernel-feedback-list@broadcom.com
3413 S:      Maintained
3414 T:      git git://github.com/broadcom/mach-bcm
3415 F:      arch/arm/mach-bcm/
3416 N:      bcm281*
3417 N:      bcm113*
3418 N:      bcm216*
3419 N:      kona
3420
3421 BROADCOM BCM47XX MIPS ARCHITECTURE
3422 M:      Hauke Mehrtens <hauke@hauke-m.de>
3423 M:      Rafał Miłecki <zajec5@gmail.com>
3424 L:      linux-mips@vger.kernel.org
3425 S:      Maintained
3426 F:      Documentation/devicetree/bindings/mips/brcm/
3427 F:      arch/mips/bcm47xx/*
3428 F:      arch/mips/include/asm/mach-bcm47xx/*
3429
3430 BROADCOM BCM5301X ARM ARCHITECTURE
3431 M:      Hauke Mehrtens <hauke@hauke-m.de>
3432 M:      Rafał Miłecki <zajec5@gmail.com>
3433 M:      bcm-kernel-feedback-list@broadcom.com
3434 L:      linux-arm-kernel@lists.infradead.org
3435 S:      Maintained
3436 F:      arch/arm/boot/dts/bcm470*
3437 F:      arch/arm/boot/dts/bcm5301*
3438 F:      arch/arm/boot/dts/bcm953012*
3439 F:      arch/arm/mach-bcm/bcm_5301x.c
3440
3441 BROADCOM BCM53573 ARM ARCHITECTURE
3442 M:      Rafał Miłecki <rafal@milecki.pl>
3443 L:      bcm-kernel-feedback-list@broadcom.com
3444 L:      linux-arm-kernel@lists.infradead.org
3445 S:      Maintained
3446 F:      arch/arm/boot/dts/bcm47189*
3447 F:      arch/arm/boot/dts/bcm53573*
3448
3449 BROADCOM BCM63XX ARM ARCHITECTURE
3450 M:      Florian Fainelli <f.fainelli@gmail.com>
3451 M:      bcm-kernel-feedback-list@broadcom.com
3452 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3453 S:      Maintained
3454 T:      git git://github.com/broadcom/stblinux.git
3455 N:      bcm63xx
3456
3457 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3458 M:      Kevin Cernekee <cernekee@gmail.com>
3459 L:      linux-usb@vger.kernel.org
3460 S:      Maintained
3461 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3462
3463 BROADCOM BCM7XXX ARM ARCHITECTURE
3464 M:      Florian Fainelli <f.fainelli@gmail.com>
3465 M:      bcm-kernel-feedback-list@broadcom.com
3466 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3467 S:      Maintained
3468 T:      git git://github.com/broadcom/stblinux.git
3469 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3470 F:      arch/arm/boot/dts/bcm7*.dts*
3471 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3472 F:      arch/arm/mach-bcm/*brcmstb*
3473 F:      arch/arm/mm/cache-b15-rac.c
3474 F:      drivers/bus/brcmstb_gisb.c
3475 F:      drivers/pci/controller/pcie-brcmstb.c
3476 N:      brcmstb
3477
3478 BROADCOM BDC DRIVER
3479 M:      Al Cooper <alcooperx@gmail.com>
3480 L:      linux-usb@vger.kernel.org
3481 L:      bcm-kernel-feedback-list@broadcom.com
3482 S:      Maintained
3483 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3484 F:      drivers/usb/gadget/udc/bdc/
3485
3486 BROADCOM BMIPS CPUFREQ DRIVER
3487 M:      Markus Mayer <mmayer@broadcom.com>
3488 M:      bcm-kernel-feedback-list@broadcom.com
3489 L:      linux-pm@vger.kernel.org
3490 S:      Maintained
3491 F:      drivers/cpufreq/bmips-cpufreq.c
3492
3493 BROADCOM BMIPS MIPS ARCHITECTURE
3494 M:      Florian Fainelli <f.fainelli@gmail.com>
3495 L:      bcm-kernel-feedback-list@broadcom.com
3496 L:      linux-mips@vger.kernel.org
3497 S:      Maintained
3498 T:      git git://github.com/broadcom/stblinux.git
3499 F:      arch/mips/bmips/*
3500 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3501 F:      arch/mips/include/asm/mach-bmips/*
3502 F:      arch/mips/kernel/*bmips*
3503 F:      drivers/soc/bcm/bcm63xx
3504 F:      drivers/irqchip/irq-bcm63*
3505 F:      drivers/irqchip/irq-bcm7*
3506 F:      drivers/irqchip/irq-brcmstb*
3507 F:      include/linux/bcm963xx_nvram.h
3508 F:      include/linux/bcm963xx_tag.h
3509
3510 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3511 M:      Rasesh Mody <rmody@marvell.com>
3512 M:      GR-Linux-NIC-Dev@marvell.com
3513 L:      netdev@vger.kernel.org
3514 S:      Supported
3515 F:      drivers/net/ethernet/broadcom/bnx2.*
3516 F:      drivers/net/ethernet/broadcom/bnx2_*
3517
3518 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3519 M:      Saurav Kashyap <skashyap@marvell.com>
3520 M:      Javed Hasan <jhasan@marvell.com>
3521 M:      GR-QLogic-Storage-Upstream@marvell.com
3522 L:      linux-scsi@vger.kernel.org
3523 S:      Supported
3524 F:      drivers/scsi/bnx2fc/
3525
3526 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3527 M:      Nilesh Javali <njavali@marvell.com>
3528 M:      Manish Rangankar <mrangankar@marvell.com>
3529 M:      GR-QLogic-Storage-Upstream@marvell.com
3530 L:      linux-scsi@vger.kernel.org
3531 S:      Supported
3532 F:      drivers/scsi/bnx2i/
3533
3534 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3535 M:      Ariel Elior <aelior@marvell.com>
3536 M:      Sudarsana Kalluru <skalluru@marvell.com>
3537 M:      GR-everest-linux-l2@marvell.com
3538 L:      netdev@vger.kernel.org
3539 S:      Supported
3540 F:      drivers/net/ethernet/broadcom/bnx2x/
3541
3542 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3543 M:      Michael Chan <michael.chan@broadcom.com>
3544 L:      netdev@vger.kernel.org
3545 S:      Supported
3546 F:      drivers/net/ethernet/broadcom/bnxt/
3547
3548 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3549 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
3550 M:      Franky Lin <franky.lin@broadcom.com>
3551 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3552 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3553 M:      Wright Feng <wright.feng@infineon.com>
3554 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3555 L:      linux-wireless@vger.kernel.org
3556 L:      brcm80211-dev-list.pdl@broadcom.com
3557 L:      SHA-cyfmac-dev-list@infineon.com
3558 S:      Supported
3559 F:      drivers/net/wireless/broadcom/brcm80211/
3560
3561 BROADCOM BRCMSTB GPIO DRIVER
3562 M:      Gregory Fong <gregory.0xf0@gmail.com>
3563 L:      bcm-kernel-feedback-list@broadcom.com
3564 S:      Supported
3565 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3566 F:      drivers/gpio/gpio-brcmstb.c
3567
3568 BROADCOM BRCMSTB I2C DRIVER
3569 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3570 L:      linux-i2c@vger.kernel.org
3571 L:      bcm-kernel-feedback-list@broadcom.com
3572 S:      Supported
3573 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3574 F:      drivers/i2c/busses/i2c-brcmstb.c
3575
3576 BROADCOM BRCMSTB USB EHCI DRIVER
3577 M:      Al Cooper <alcooperx@gmail.com>
3578 L:      linux-usb@vger.kernel.org
3579 L:      bcm-kernel-feedback-list@broadcom.com
3580 S:      Maintained
3581 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3582 F:      drivers/usb/host/ehci-brcm.*
3583
3584 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3585 M:      Al Cooper <alcooperx@gmail.com>
3586 L:      linux-kernel@vger.kernel.org
3587 L:      bcm-kernel-feedback-list@broadcom.com
3588 S:      Maintained
3589 F:      drivers/phy/broadcom/phy-brcm-usb*
3590
3591 BROADCOM ETHERNET PHY DRIVERS
3592 M:      Florian Fainelli <f.fainelli@gmail.com>
3593 L:      bcm-kernel-feedback-list@broadcom.com
3594 L:      netdev@vger.kernel.org
3595 S:      Supported
3596 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3597 F:      drivers/net/phy/bcm*.[ch]
3598 F:      drivers/net/phy/broadcom.c
3599 F:      include/linux/brcmphy.h
3600
3601 BROADCOM GENET ETHERNET DRIVER
3602 M:      Doug Berger <opendmb@gmail.com>
3603 M:      Florian Fainelli <f.fainelli@gmail.com>
3604 L:      bcm-kernel-feedback-list@broadcom.com
3605 L:      netdev@vger.kernel.org
3606 S:      Supported
3607 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3608 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3609 F:      drivers/net/ethernet/broadcom/genet/
3610 F:      drivers/net/mdio/mdio-bcm-unimac.c
3611 F:      include/linux/platform_data/bcmgenet.h
3612 F:      include/linux/platform_data/mdio-bcm-unimac.h
3613
3614 BROADCOM IPROC ARM ARCHITECTURE
3615 M:      Ray Jui <rjui@broadcom.com>
3616 M:      Scott Branden <sbranden@broadcom.com>
3617 M:      bcm-kernel-feedback-list@broadcom.com
3618 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3619 S:      Maintained
3620 T:      git git://github.com/broadcom/cygnus-linux.git
3621 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3622 F:      arch/arm64/boot/dts/broadcom/stingray/*
3623 F:      drivers/clk/bcm/clk-ns*
3624 F:      drivers/clk/bcm/clk-sr*
3625 F:      drivers/pinctrl/bcm/pinctrl-ns*
3626 F:      include/dt-bindings/clock/bcm-sr*
3627 N:      iproc
3628 N:      cygnus
3629 N:      bcm[-_]nsp
3630 N:      bcm9113*
3631 N:      bcm9583*
3632 N:      bcm9585*
3633 N:      bcm9586*
3634 N:      bcm988312
3635 N:      bcm113*
3636 N:      bcm583*
3637 N:      bcm585*
3638 N:      bcm586*
3639 N:      bcm88312
3640 N:      hr2
3641 N:      stingray
3642
3643 BROADCOM KONA GPIO DRIVER
3644 M:      Ray Jui <rjui@broadcom.com>
3645 L:      bcm-kernel-feedback-list@broadcom.com
3646 S:      Supported
3647 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3648 F:      drivers/gpio/gpio-bcm-kona.c
3649
3650 BROADCOM NETXTREME-E ROCE DRIVER
3651 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3652 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3653 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3654 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3655 M:      Naresh Kumar PBS <nareshkumar.pbs@broadcom.com>
3656 L:      linux-rdma@vger.kernel.org
3657 S:      Supported
3658 W:      http://www.broadcom.com
3659 F:      drivers/infiniband/hw/bnxt_re/
3660 F:      include/uapi/rdma/bnxt_re-abi.h
3661
3662 BROADCOM NVRAM DRIVER
3663 M:      Rafał Miłecki <zajec5@gmail.com>
3664 L:      linux-mips@vger.kernel.org
3665 S:      Maintained
3666 F:      drivers/firmware/broadcom/*
3667
3668 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3669 M:      Rafał Miłecki <zajec5@gmail.com>
3670 L:      linux-wireless@vger.kernel.org
3671 S:      Maintained
3672 F:      drivers/bcma/
3673 F:      include/linux/bcma/
3674
3675 BROADCOM SPI DRIVER
3676 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3677 M:      bcm-kernel-feedback-list@broadcom.com
3678 S:      Maintained
3679 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3680 F:      drivers/spi/spi-bcm-qspi.*
3681 F:      drivers/spi/spi-brcmstb-qspi.c
3682 F:      drivers/spi/spi-iproc-qspi.c
3683
3684 BROADCOM STB AVS CPUFREQ 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/cpufreq/brcm,stb-avs-cpu-freq.txt
3690 F:      drivers/cpufreq/brcmstb*
3691
3692 BROADCOM STB AVS TMON DRIVER
3693 M:      Markus Mayer <mmayer@broadcom.com>
3694 M:      bcm-kernel-feedback-list@broadcom.com
3695 L:      linux-pm@vger.kernel.org
3696 S:      Maintained
3697 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3698 F:      drivers/thermal/broadcom/brcmstb*
3699
3700 BROADCOM STB DPFE DRIVER
3701 M:      Markus Mayer <mmayer@broadcom.com>
3702 M:      bcm-kernel-feedback-list@broadcom.com
3703 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3704 S:      Maintained
3705 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3706 F:      drivers/memory/brcmstb_dpfe.c
3707
3708 BROADCOM STB NAND FLASH DRIVER
3709 M:      Brian Norris <computersforpeace@gmail.com>
3710 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3711 L:      linux-mtd@lists.infradead.org
3712 L:      bcm-kernel-feedback-list@broadcom.com
3713 S:      Maintained
3714 F:      drivers/mtd/nand/raw/brcmnand/
3715
3716 BROADCOM SYSTEMPORT ETHERNET DRIVER
3717 M:      Florian Fainelli <f.fainelli@gmail.com>
3718 L:      bcm-kernel-feedback-list@broadcom.com
3719 L:      netdev@vger.kernel.org
3720 S:      Supported
3721 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3722
3723 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3724 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3725 M:      Prashant Sreedharan <prashant@broadcom.com>
3726 M:      Michael Chan <mchan@broadcom.com>
3727 L:      netdev@vger.kernel.org
3728 S:      Supported
3729 F:      drivers/net/ethernet/broadcom/tg3.*
3730
3731 BROCADE BFA FC SCSI DRIVER
3732 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3733 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3734 L:      linux-scsi@vger.kernel.org
3735 S:      Supported
3736 F:      drivers/scsi/bfa/
3737
3738 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3739 M:      Rasesh Mody <rmody@marvell.com>
3740 M:      Sudarsana Kalluru <skalluru@marvell.com>
3741 M:      GR-Linux-NIC-Dev@marvell.com
3742 L:      netdev@vger.kernel.org
3743 S:      Supported
3744 F:      drivers/net/ethernet/brocade/bna/
3745
3746 BSG (block layer generic sg v4 driver)
3747 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3748 L:      linux-scsi@vger.kernel.org
3749 S:      Supported
3750 F:      block/bsg.c
3751 F:      include/linux/bsg.h
3752 F:      include/uapi/linux/bsg.h
3753
3754 BT87X AUDIO DRIVER
3755 M:      Clemens Ladisch <clemens@ladisch.de>
3756 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3757 S:      Maintained
3758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3759 F:      Documentation/sound/cards/bt87x.rst
3760 F:      sound/pci/bt87x.c
3761
3762 BT8XXGPIO DRIVER
3763 M:      Michael Buesch <m@bues.ch>
3764 S:      Maintained
3765 W:      http://bu3sch.de/btgpio.php
3766 F:      drivers/gpio/gpio-bt8xx.c
3767
3768 BTRFS FILE SYSTEM
3769 M:      Chris Mason <clm@fb.com>
3770 M:      Josef Bacik <josef@toxicpanda.com>
3771 M:      David Sterba <dsterba@suse.com>
3772 L:      linux-btrfs@vger.kernel.org
3773 S:      Maintained
3774 W:      http://btrfs.wiki.kernel.org/
3775 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3777 F:      Documentation/filesystems/btrfs.rst
3778 F:      fs/btrfs/
3779 F:      include/linux/btrfs*
3780 F:      include/uapi/linux/btrfs*
3781
3782 BTTV VIDEO4LINUX DRIVER
3783 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3784 L:      linux-media@vger.kernel.org
3785 S:      Odd fixes
3786 W:      https://linuxtv.org
3787 T:      git git://linuxtv.org/media_tree.git
3788 F:      Documentation/driver-api/media/drivers/bttv*
3789 F:      drivers/media/pci/bt8xx/bttv*
3790
3791 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3792 M:      Chanwoo Choi <cw00.choi@samsung.com>
3793 L:      linux-pm@vger.kernel.org
3794 L:      linux-samsung-soc@vger.kernel.org
3795 S:      Maintained
3796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3797 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3798 F:      drivers/devfreq/exynos-bus.c
3799
3800 BUSLOGIC SCSI DRIVER
3801 M:      Khalid Aziz <khalid@gonehiking.org>
3802 L:      linux-scsi@vger.kernel.org
3803 S:      Maintained
3804 F:      drivers/scsi/BusLogic.*
3805 F:      drivers/scsi/FlashPoint.*
3806
3807 C-MEDIA CMI8788 DRIVER
3808 M:      Clemens Ladisch <clemens@ladisch.de>
3809 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3810 S:      Maintained
3811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3812 F:      sound/pci/oxygen/
3813
3814 C-SKY ARCHITECTURE
3815 M:      Guo Ren <guoren@kernel.org>
3816 L:      linux-csky@vger.kernel.org
3817 S:      Supported
3818 T:      git https://github.com/c-sky/csky-linux.git
3819 F:      Documentation/devicetree/bindings/csky/
3820 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3821 F:      Documentation/devicetree/bindings/timer/csky,*
3822 F:      arch/csky/
3823 F:      drivers/clocksource/timer-gx6605s.c
3824 F:      drivers/clocksource/timer-mp-csky.c
3825 F:      drivers/irqchip/irq-csky-*
3826 N:      csky
3827 K:      csky
3828
3829 C6X ARCHITECTURE
3830 M:      Mark Salter <msalter@redhat.com>
3831 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3832 L:      linux-c6x-dev@linux-c6x.org
3833 S:      Maintained
3834 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3835 F:      arch/c6x/
3836
3837 CA8210 IEEE-802.15.4 RADIO DRIVER
3838 M:      Harry Morris <h.morris@cascoda.com>
3839 L:      linux-wpan@vger.kernel.org
3840 S:      Maintained
3841 W:      https://github.com/Cascoda/ca8210-linux.git
3842 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3843 F:      drivers/net/ieee802154/ca8210.c
3844
3845 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3846 M:      David Howells <dhowells@redhat.com>
3847 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3848 S:      Supported
3849 F:      Documentation/filesystems/caching/cachefiles.rst
3850 F:      fs/cachefiles/
3851
3852 CADENCE MIPI-CSI2 BRIDGES
3853 M:      Maxime Ripard <mripard@kernel.org>
3854 L:      linux-media@vger.kernel.org
3855 S:      Maintained
3856 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3857 F:      drivers/media/platform/cadence/cdns-csi2*
3858
3859 CADENCE NAND DRIVER
3860 L:      linux-mtd@lists.infradead.org
3861 S:      Orphan
3862 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3863 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3864
3865 CADENCE USB3 DRD IP DRIVER
3866 M:      Peter Chen <peter.chen@nxp.com>
3867 M:      Pawel Laszczak <pawell@cadence.com>
3868 M:      Roger Quadros <rogerq@ti.com>
3869 L:      linux-usb@vger.kernel.org
3870 S:      Maintained
3871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3872 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
3873 F:      drivers/usb/cdns3/
3874
3875 CADET FM/AM RADIO RECEIVER DRIVER
3876 M:      Hans Verkuil <hverkuil@xs4all.nl>
3877 L:      linux-media@vger.kernel.org
3878 S:      Maintained
3879 W:      https://linuxtv.org
3880 T:      git git://linuxtv.org/media_tree.git
3881 F:      drivers/media/radio/radio-cadet*
3882
3883 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3884 L:      linux-media@vger.kernel.org
3885 S:      Orphan
3886 T:      git git://linuxtv.org/media_tree.git
3887 F:      Documentation/admin-guide/media/cafe_ccic*
3888 F:      drivers/media/platform/marvell-ccic/
3889
3890 CAIF NETWORK LAYER
3891 L:      netdev@vger.kernel.org
3892 S:      Orphan
3893 F:      Documentation/networking/caif/
3894 F:      drivers/net/caif/
3895 F:      include/net/caif/
3896 F:      include/uapi/linux/caif/
3897 F:      net/caif/
3898
3899 CAKE QDISC
3900 M:      Toke Høiland-Jørgensen <toke@toke.dk>
3901 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
3902 S:      Maintained
3903 F:      net/sched/sch_cake.c
3904
3905 CAN NETWORK DRIVERS
3906 M:      Wolfgang Grandegger <wg@grandegger.com>
3907 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3908 L:      linux-can@vger.kernel.org
3909 S:      Maintained
3910 W:      https://github.com/linux-can
3911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3913 F:      Documentation/devicetree/bindings/net/can/
3914 F:      drivers/net/can/
3915 F:      include/linux/can/dev.h
3916 F:      include/linux/can/led.h
3917 F:      include/linux/can/platform/
3918 F:      include/linux/can/rx-offload.h
3919 F:      include/uapi/linux/can/error.h
3920 F:      include/uapi/linux/can/netlink.h
3921 F:      include/uapi/linux/can/vxcan.h
3922
3923 CAN NETWORK LAYER
3924 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3925 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3926 L:      linux-can@vger.kernel.org
3927 S:      Maintained
3928 W:      https://github.com/linux-can
3929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3931 F:      Documentation/networking/can.rst
3932 F:      include/linux/can/core.h
3933 F:      include/linux/can/skb.h
3934 F:      include/net/netns/can.h
3935 F:      include/uapi/linux/can.h
3936 F:      include/uapi/linux/can/bcm.h
3937 F:      include/uapi/linux/can/gw.h
3938 F:      include/uapi/linux/can/isotp.h
3939 F:      include/uapi/linux/can/raw.h
3940 F:      net/can/
3941
3942 CAN-J1939 NETWORK LAYER
3943 M:      Robin van der Gracht <robin@protonic.nl>
3944 M:      Oleksij Rempel <o.rempel@pengutronix.de>
3945 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
3946 L:      linux-can@vger.kernel.org
3947 S:      Maintained
3948 F:      Documentation/networking/j1939.rst
3949 F:      include/uapi/linux/can/j1939.h
3950 F:      net/can/j1939/
3951
3952 CAPABILITIES
3953 M:      Serge Hallyn <serge@hallyn.com>
3954 L:      linux-security-module@vger.kernel.org
3955 S:      Supported
3956 F:      include/linux/capability.h
3957 F:      include/uapi/linux/capability.h
3958 F:      kernel/capability.c
3959 F:      security/commoncap.c
3960
3961 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3962 M:      Kevin Tsai <ktsai@capellamicro.com>
3963 S:      Maintained
3964 F:      drivers/iio/light/cm*
3965
3966 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3967 M:      Christian Lamparter <chunkeey@googlemail.com>
3968 L:      linux-wireless@vger.kernel.org
3969 S:      Maintained
3970 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
3971 F:      drivers/net/wireless/ath/carl9170/
3972
3973 CAVIUM I2C DRIVER
3974 M:      Robert Richter <rric@kernel.org>
3975 S:      Odd Fixes
3976 W:      http://www.marvell.com
3977 F:      drivers/i2c/busses/i2c-octeon*
3978 F:      drivers/i2c/busses/i2c-thunderx*
3979
3980 CAVIUM LIQUIDIO NETWORK DRIVER
3981 M:      Derek Chickles <dchickles@marvell.com>
3982 M:      Satanand Burla <sburla@marvell.com>
3983 M:      Felix Manlunas <fmanlunas@marvell.com>
3984 L:      netdev@vger.kernel.org
3985 S:      Supported
3986 W:      http://www.marvell.com
3987 F:      drivers/net/ethernet/cavium/liquidio/
3988
3989 CAVIUM MMC DRIVER
3990 M:      Robert Richter <rric@kernel.org>
3991 S:      Odd Fixes
3992 W:      http://www.marvell.com
3993 F:      drivers/mmc/host/cavium*
3994
3995 CAVIUM OCTEON-TX CRYPTO DRIVER
3996 M:      George Cherian <gcherian@marvell.com>
3997 L:      linux-crypto@vger.kernel.org
3998 S:      Supported
3999 W:      http://www.marvell.com
4000 F:      drivers/crypto/cavium/cpt/
4001
4002 CAVIUM THUNDERX2 ARM64 SOC
4003 M:      Robert Richter <rric@kernel.org>
4004 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4005 S:      Odd Fixes
4006 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4007 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4008
4009 CC2520 IEEE-802.15.4 RADIO DRIVER
4010 M:      Varka Bhadram <varkabhadram@gmail.com>
4011 L:      linux-wpan@vger.kernel.org
4012 S:      Maintained
4013 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4014 F:      drivers/net/ieee802154/cc2520.c
4015 F:      include/linux/spi/cc2520.h
4016
4017 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4018 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4019 L:      linux-crypto@vger.kernel.org
4020 S:      Supported
4021 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4022 F:      drivers/crypto/ccree/
4023
4024 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4025 M:      Hadar Gat <hadar.gat@arm.com>
4026 L:      linux-crypto@vger.kernel.org
4027 S:      Supported
4028 F:      drivers/char/hw_random/cctrng.c
4029 F:      drivers/char/hw_random/cctrng.h
4030 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4031 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4032
4033 CEC FRAMEWORK
4034 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4035 L:      linux-media@vger.kernel.org
4036 S:      Supported
4037 W:      http://linuxtv.org
4038 T:      git git://linuxtv.org/media_tree.git
4039 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4040 F:      Documentation/devicetree/bindings/media/cec.txt
4041 F:      Documentation/driver-api/media/cec-core.rst
4042 F:      Documentation/userspace-api/media/cec
4043 F:      drivers/media/cec/
4044 F:      drivers/media/rc/keymaps/rc-cec.c
4045 F:      include/media/cec-notifier.h
4046 F:      include/media/cec.h
4047 F:      include/uapi/linux/cec-funcs.h
4048 F:      include/uapi/linux/cec.h
4049
4050 CEC GPIO DRIVER
4051 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4052 L:      linux-media@vger.kernel.org
4053 S:      Supported
4054 W:      http://linuxtv.org
4055 T:      git git://linuxtv.org/media_tree.git
4056 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4057 F:      drivers/media/cec/platform/cec-gpio/
4058
4059 CELL BROADBAND ENGINE ARCHITECTURE
4060 M:      Arnd Bergmann <arnd@arndb.de>
4061 L:      linuxppc-dev@lists.ozlabs.org
4062 S:      Supported
4063 W:      http://www.ibm.com/developerworks/power/cell/
4064 F:      arch/powerpc/include/asm/cell*.h
4065 F:      arch/powerpc/include/asm/spu*.h
4066 F:      arch/powerpc/include/uapi/asm/spu*.h
4067 F:      arch/powerpc/oprofile/*cell*
4068 F:      arch/powerpc/platforms/cell/
4069
4070 CELLWISE CW2015 BATTERY DRIVER
4071 M:      Tobias Schrammm <t.schramm@manjaro.org>
4072 S:      Maintained
4073 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4074 F:      drivers/power/supply/cw2015_battery.c
4075
4076 CEPH COMMON CODE (LIBCEPH)
4077 M:      Ilya Dryomov <idryomov@gmail.com>
4078 M:      Jeff Layton <jlayton@kernel.org>
4079 L:      ceph-devel@vger.kernel.org
4080 S:      Supported
4081 W:      http://ceph.com/
4082 T:      git git://github.com/ceph/ceph-client.git
4083 F:      include/linux/ceph/
4084 F:      include/linux/crush/
4085 F:      net/ceph/
4086
4087 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4088 M:      Jeff Layton <jlayton@kernel.org>
4089 M:      Ilya Dryomov <idryomov@gmail.com>
4090 L:      ceph-devel@vger.kernel.org
4091 S:      Supported
4092 W:      http://ceph.com/
4093 T:      git git://github.com/ceph/ceph-client.git
4094 F:      Documentation/filesystems/ceph.rst
4095 F:      fs/ceph/
4096
4097 CERTIFICATE HANDLING
4098 M:      David Howells <dhowells@redhat.com>
4099 M:      David Woodhouse <dwmw2@infradead.org>
4100 L:      keyrings@vger.kernel.org
4101 S:      Maintained
4102 F:      Documentation/admin-guide/module-signing.rst
4103 F:      certs/
4104 F:      scripts/extract-cert.c
4105 F:      scripts/sign-file.c
4106
4107 CFAG12864B LCD DRIVER
4108 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4109 S:      Maintained
4110 F:      drivers/auxdisplay/cfag12864b.c
4111 F:      include/linux/cfag12864b.h
4112
4113 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4114 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4115 S:      Maintained
4116 F:      drivers/auxdisplay/cfag12864bfb.c
4117 F:      include/linux/cfag12864b.h
4118
4119 CHAR and MISC DRIVERS
4120 M:      Arnd Bergmann <arnd@arndb.de>
4121 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4122 S:      Supported
4123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4124 F:      drivers/char/
4125 F:      drivers/misc/
4126 F:      include/linux/miscdevice.h
4127 X:      drivers/char/agp/
4128 X:      drivers/char/hw_random/
4129 X:      drivers/char/ipmi/
4130 X:      drivers/char/random.c
4131 X:      drivers/char/tpm/
4132
4133 CHECKPATCH
4134 M:      Andy Whitcroft <apw@canonical.com>
4135 M:      Joe Perches <joe@perches.com>
4136 S:      Maintained
4137 F:      scripts/checkpatch.pl
4138
4139 CHINESE DOCUMENTATION
4140 M:      Harry Wei <harryxiyou@gmail.com>
4141 M:      Alex Shi <alex.shi@linux.alibaba.com>
4142 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
4143 S:      Maintained
4144 F:      Documentation/translations/zh_CN/
4145
4146 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4147 M:      Peter Chen <Peter.Chen@nxp.com>
4148 L:      linux-usb@vger.kernel.org
4149 S:      Maintained
4150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4151 F:      drivers/usb/chipidea/
4152
4153 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4154 M:      Hans de Goede <hdegoede@redhat.com>
4155 L:      linux-input@vger.kernel.org
4156 S:      Maintained
4157 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4158 F:      drivers/input/touchscreen/chipone_icn8318.c
4159
4160 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4161 M:      Hans de Goede <hdegoede@redhat.com>
4162 L:      linux-input@vger.kernel.org
4163 S:      Maintained
4164 F:      drivers/input/touchscreen/chipone_icn8505.c
4165
4166 CHROME HARDWARE PLATFORM SUPPORT
4167 M:      Benson Leung <bleung@chromium.org>
4168 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4169 S:      Maintained
4170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4171 F:      drivers/platform/chrome/
4172
4173 CHROMEOS EC CODEC DRIVER
4174 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4175 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4176 R:      Guenter Roeck <groeck@chromium.org>
4177 S:      Maintained
4178 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4179 F:      sound/soc/codecs/cros_ec_codec.*
4180
4181 CHROMEOS EC SUBDRIVERS
4182 M:      Benson Leung <bleung@chromium.org>
4183 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4184 R:      Guenter Roeck <groeck@chromium.org>
4185 S:      Maintained
4186 F:      drivers/power/supply/cros_usbpd-charger.c
4187 N:      cros_ec
4188 N:      cros-ec
4189
4190 CHRONTEL CH7322 CEC DRIVER
4191 M:      Jeff Chase <jnchase@google.com>
4192 L:      linux-media@vger.kernel.org
4193 S:      Maintained
4194 T:      git git://linuxtv.org/media_tree.git
4195 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4196 F:      drivers/media/cec/i2c/ch7322.c
4197
4198 CIRRUS LOGIC AUDIO CODEC DRIVERS
4199 M:      James Schulman <james.schulman@cirrus.com>
4200 M:      David Rhodes <david.rhodes@cirrus.com>
4201 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4202 L:      patches@opensource.cirrus.com
4203 S:      Maintained
4204 F:      sound/soc/codecs/cs*
4205
4206 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4207 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4208 L:      netdev@vger.kernel.org
4209 S:      Maintained
4210 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4211
4212 CIRRUS LOGIC LOCHNAGAR DRIVER
4213 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4214 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4215 L:      patches@opensource.cirrus.com
4216 S:      Supported
4217 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4218 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4219 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4220 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4221 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4222 F:      Documentation/hwmon/lochnagar.rst
4223 F:      drivers/clk/clk-lochnagar.c
4224 F:      drivers/hwmon/lochnagar-hwmon.c
4225 F:      drivers/mfd/lochnagar-i2c.c
4226 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4227 F:      drivers/regulator/lochnagar-regulator.c
4228 F:      include/dt-bindings/clk/lochnagar.h
4229 F:      include/dt-bindings/pinctrl/lochnagar.h
4230 F:      include/linux/mfd/lochnagar*
4231 F:      sound/soc/codecs/lochnagar-sc.c
4232
4233 CIRRUS LOGIC MADERA CODEC DRIVERS
4234 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4235 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4236 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4237 L:      patches@opensource.cirrus.com
4238 S:      Supported
4239 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4240 T:      git https://github.com/CirrusLogic/linux-drivers.git
4241 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4242 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4243 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4244 F:      drivers/gpio/gpio-madera*
4245 F:      drivers/irqchip/irq-madera*
4246 F:      drivers/mfd/cs47l*
4247 F:      drivers/mfd/madera*
4248 F:      drivers/pinctrl/cirrus/*
4249 F:      include/dt-bindings/sound/madera*
4250 F:      include/linux/irqchip/irq-madera*
4251 F:      include/linux/mfd/madera/*
4252 F:      include/sound/madera*
4253 F:      sound/soc/codecs/cs47l*
4254 F:      sound/soc/codecs/madera*
4255
4256 CISCO FCOE HBA DRIVER
4257 M:      Satish Kharat <satishkh@cisco.com>
4258 M:      Sesidhar Baddela <sebaddel@cisco.com>
4259 M:      Karan Tilak Kumar <kartilak@cisco.com>
4260 L:      linux-scsi@vger.kernel.org
4261 S:      Supported
4262 F:      drivers/scsi/fnic/
4263
4264 CISCO SCSI HBA DRIVER
4265 M:      Karan Tilak Kumar <kartilak@cisco.com>
4266 M:      Sesidhar Baddela <sebaddel@cisco.com>
4267 L:      linux-scsi@vger.kernel.org
4268 S:      Supported
4269 F:      drivers/scsi/snic/
4270
4271 CISCO VIC ETHERNET NIC DRIVER
4272 M:      Christian Benvenuti <benve@cisco.com>
4273 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4274 S:      Supported
4275 F:      drivers/net/ethernet/cisco/enic/
4276
4277 CISCO VIC LOW LATENCY NIC DRIVER
4278 M:      Christian Benvenuti <benve@cisco.com>
4279 M:      Nelson Escobar <neescoba@cisco.com>
4280 S:      Supported
4281 F:      drivers/infiniband/hw/usnic/
4282
4283 CLANG-FORMAT FILE
4284 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4285 S:      Maintained
4286 F:      .clang-format
4287
4288 CLANG/LLVM BUILD SUPPORT
4289 M:      Nathan Chancellor <natechancellor@gmail.com>
4290 M:      Nick Desaulniers <ndesaulniers@google.com>
4291 L:      clang-built-linux@googlegroups.com
4292 S:      Supported
4293 W:      https://clangbuiltlinux.github.io/
4294 B:      https://github.com/ClangBuiltLinux/linux/issues
4295 C:      irc://chat.freenode.net/clangbuiltlinux
4296 F:      Documentation/kbuild/llvm.rst
4297 F:      scripts/clang-tools/
4298 F:      scripts/lld-version.sh
4299 K:      \b(?i:clang|llvm)\b
4300
4301 CLEANCACHE API
4302 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4303 L:      linux-kernel@vger.kernel.org
4304 S:      Maintained
4305 F:      include/linux/cleancache.h
4306 F:      mm/cleancache.c
4307
4308 CLK API
4309 M:      Russell King <linux@armlinux.org.uk>
4310 L:      linux-clk@vger.kernel.org
4311 S:      Maintained
4312 F:      include/linux/clk.h
4313
4314 CLOCKSOURCE, CLOCKEVENT DRIVERS
4315 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4316 M:      Thomas Gleixner <tglx@linutronix.de>
4317 L:      linux-kernel@vger.kernel.org
4318 S:      Supported
4319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4320 F:      Documentation/devicetree/bindings/timer/
4321 F:      drivers/clocksource/
4322
4323 CMPC ACPI DRIVER
4324 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4325 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4326 L:      platform-driver-x86@vger.kernel.org
4327 S:      Supported
4328 F:      drivers/platform/x86/classmate-laptop.c
4329
4330 COBALT MEDIA DRIVER
4331 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4332 L:      linux-media@vger.kernel.org
4333 S:      Supported
4334 W:      https://linuxtv.org
4335 T:      git git://linuxtv.org/media_tree.git
4336 F:      drivers/media/pci/cobalt/
4337
4338 COCCINELLE/Semantic Patches (SmPL)
4339 M:      Julia Lawall <Julia.Lawall@lip6.fr>
4340 M:      Gilles Muller <Gilles.Muller@lip6.fr>
4341 M:      Nicolas Palix <nicolas.palix@imag.fr>
4342 M:      Michal Marek <michal.lkml@markovi.net>
4343 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4344 S:      Supported
4345 W:      http://coccinelle.lip6.fr/
4346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4347 F:      Documentation/dev-tools/coccinelle.rst
4348 F:      scripts/coccicheck
4349 F:      scripts/coccinelle/
4350
4351 CODA FILE SYSTEM
4352 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4353 M:      coda@cs.cmu.edu
4354 L:      codalist@coda.cs.cmu.edu
4355 S:      Maintained
4356 W:      http://www.coda.cs.cmu.edu/
4357 F:      Documentation/filesystems/coda.rst
4358 F:      fs/coda/
4359 F:      include/linux/coda*.h
4360 F:      include/uapi/linux/coda*.h
4361
4362 CODA V4L2 MEM2MEM DRIVER
4363 M:      Philipp Zabel <p.zabel@pengutronix.de>
4364 L:      linux-media@vger.kernel.org
4365 S:      Maintained
4366 F:      Documentation/devicetree/bindings/media/coda.yaml
4367 F:      drivers/media/platform/coda/
4368
4369 CODE OF CONDUCT
4370 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4371 S:      Supported
4372 F:      Documentation/process/code-of-conduct-interpretation.rst
4373 F:      Documentation/process/code-of-conduct.rst
4374
4375 COMMON CLK FRAMEWORK
4376 M:      Michael Turquette <mturquette@baylibre.com>
4377 M:      Stephen Boyd <sboyd@kernel.org>
4378 L:      linux-clk@vger.kernel.org
4379 S:      Maintained
4380 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4382 F:      Documentation/devicetree/bindings/clock/
4383 F:      drivers/clk/
4384 F:      include/linux/clk-pr*
4385 F:      include/linux/clk/
4386 F:      include/linux/of_clk.h
4387 X:      drivers/clk/clkdev.c
4388
4389 COMMON INTERNET FILE SYSTEM (CIFS)
4390 M:      Steve French <sfrench@samba.org>
4391 L:      linux-cifs@vger.kernel.org
4392 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4393 S:      Supported
4394 W:      http://linux-cifs.samba.org/
4395 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4396 F:      Documentation/admin-guide/cifs/
4397 F:      fs/cifs/
4398
4399 COMPACTPCI HOTPLUG CORE
4400 M:      Scott Murray <scott@spiteful.org>
4401 L:      linux-pci@vger.kernel.org
4402 S:      Maintained
4403 F:      drivers/pci/hotplug/cpci_hotplug*
4404
4405 COMPACTPCI HOTPLUG GENERIC DRIVER
4406 M:      Scott Murray <scott@spiteful.org>
4407 L:      linux-pci@vger.kernel.org
4408 S:      Maintained
4409 F:      drivers/pci/hotplug/cpcihp_generic.c
4410
4411 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4412 M:      Scott Murray <scott@spiteful.org>
4413 L:      linux-pci@vger.kernel.org
4414 S:      Maintained
4415 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4416
4417 COMPAL LAPTOP SUPPORT
4418 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4419 L:      platform-driver-x86@vger.kernel.org
4420 S:      Maintained
4421 F:      drivers/platform/x86/compal-laptop.c
4422
4423 COMPILER ATTRIBUTES
4424 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4425 S:      Maintained
4426 F:      include/linux/compiler_attributes.h
4427
4428 CONEXANT ACCESSRUNNER USB DRIVER
4429 L:      accessrunner-general@lists.sourceforge.net
4430 S:      Orphan
4431 W:      http://accessrunner.sourceforge.net/
4432 F:      drivers/usb/atm/cxacru.c
4433
4434 CONFIGFS
4435 M:      Joel Becker <jlbec@evilplan.org>
4436 M:      Christoph Hellwig <hch@lst.de>
4437 S:      Supported
4438 T:      git git://git.infradead.org/users/hch/configfs.git
4439 F:      fs/configfs/
4440 F:      include/linux/configfs.h
4441 F:      samples/configfs/
4442
4443 CONSOLE SUBSYSTEM
4444 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4445 S:      Supported
4446 F:      drivers/video/console/
4447 F:      include/linux/console*
4448
4449 CONTROL GROUP (CGROUP)
4450 M:      Tejun Heo <tj@kernel.org>
4451 M:      Li Zefan <lizefan@huawei.com>
4452 M:      Johannes Weiner <hannes@cmpxchg.org>
4453 L:      cgroups@vger.kernel.org
4454 S:      Maintained
4455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4456 F:      Documentation/admin-guide/cgroup-v1/
4457 F:      Documentation/admin-guide/cgroup-v2.rst
4458 F:      include/linux/cgroup*
4459 F:      kernel/cgroup/
4460
4461 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4462 M:      Tejun Heo <tj@kernel.org>
4463 M:      Jens Axboe <axboe@kernel.dk>
4464 L:      cgroups@vger.kernel.org
4465 L:      linux-block@vger.kernel.org
4466 T:      git git://git.kernel.dk/linux-block
4467 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4468 F:      block/bfq-cgroup.c
4469 F:      block/blk-cgroup.c
4470 F:      block/blk-iolatency.c
4471 F:      block/blk-throttle.c
4472 F:      include/linux/blk-cgroup.h
4473
4474 CONTROL GROUP - CPUSET
4475 M:      Li Zefan <lizefan@huawei.com>
4476 L:      cgroups@vger.kernel.org
4477 S:      Maintained
4478 W:      http://www.bullopensource.org/cpuset/
4479 W:      http://oss.sgi.com/projects/cpusets/
4480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4481 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4482 F:      include/linux/cpuset.h
4483 F:      kernel/cgroup/cpuset.c
4484
4485 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4486 M:      Johannes Weiner <hannes@cmpxchg.org>
4487 M:      Michal Hocko <mhocko@kernel.org>
4488 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4489 L:      cgroups@vger.kernel.org
4490 L:      linux-mm@kvack.org
4491 S:      Maintained
4492 F:      mm/memcontrol.c
4493 F:      mm/swap_cgroup.c
4494
4495 CORETEMP HARDWARE MONITORING DRIVER
4496 M:      Fenghua Yu <fenghua.yu@intel.com>
4497 L:      linux-hwmon@vger.kernel.org
4498 S:      Maintained
4499 F:      Documentation/hwmon/coretemp.rst
4500 F:      drivers/hwmon/coretemp.c
4501
4502 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4503 M:      Marius Zachmann <mail@mariuszachmann.de>
4504 L:      linux-hwmon@vger.kernel.org
4505 S:      Maintained
4506 F:      drivers/hwmon/corsair-cpro.c
4507
4508 COSA/SRP SYNC SERIAL DRIVER
4509 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4510 S:      Maintained
4511 W:      http://www.fi.muni.cz/~kas/cosa/
4512 F:      drivers/net/wan/cosa*
4513
4514 COUNTER SUBSYSTEM
4515 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4516 L:      linux-iio@vger.kernel.org
4517 S:      Maintained
4518 F:      Documentation/ABI/testing/sysfs-bus-counter*
4519 F:      Documentation/driver-api/generic-counter.rst
4520 F:      drivers/counter/
4521 F:      include/linux/counter.h
4522 F:      include/linux/counter_enum.h
4523
4524 CPMAC ETHERNET DRIVER
4525 M:      Florian Fainelli <f.fainelli@gmail.com>
4526 L:      netdev@vger.kernel.org
4527 S:      Maintained
4528 F:      drivers/net/ethernet/ti/cpmac.c
4529
4530 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4531 M:      Viresh Kumar <viresh.kumar@linaro.org>
4532 M:      Sudeep Holla <sudeep.holla@arm.com>
4533 L:      linux-pm@vger.kernel.org
4534 S:      Maintained
4535 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4536 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4537
4538 CPU FREQUENCY SCALING FRAMEWORK
4539 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4540 M:      Viresh Kumar <viresh.kumar@linaro.org>
4541 L:      linux-pm@vger.kernel.org
4542 S:      Maintained
4543 B:      https://bugzilla.kernel.org
4544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4546 F:      Documentation/admin-guide/pm/cpufreq.rst
4547 F:      Documentation/admin-guide/pm/intel_pstate.rst
4548 F:      Documentation/cpu-freq/
4549 F:      Documentation/devicetree/bindings/cpufreq/
4550 F:      drivers/cpufreq/
4551 F:      include/linux/cpufreq.h
4552 F:      include/linux/sched/cpufreq.h
4553 F:      kernel/sched/cpufreq*.c
4554 F:      tools/testing/selftests/cpufreq/
4555
4556 CPU IDLE TIME MANAGEMENT FRAMEWORK
4557 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4558 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4559 L:      linux-pm@vger.kernel.org
4560 S:      Maintained
4561 B:      https://bugzilla.kernel.org
4562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4563 F:      Documentation/admin-guide/pm/cpuidle.rst
4564 F:      Documentation/driver-api/pm/cpuidle.rst
4565 F:      drivers/cpuidle/*
4566 F:      include/linux/cpuidle.h
4567
4568 CPU POWER MONITORING SUBSYSTEM
4569 M:      Thomas Renninger <trenn@suse.com>
4570 M:      Shuah Khan <shuah@kernel.org>
4571 M:      Shuah Khan <skhan@linuxfoundation.org>
4572 L:      linux-pm@vger.kernel.org
4573 S:      Maintained
4574 F:      tools/power/cpupower/
4575
4576 CPUID/MSR DRIVER
4577 M:      "H. Peter Anvin" <hpa@zytor.com>
4578 S:      Maintained
4579 F:      arch/x86/kernel/cpuid.c
4580 F:      arch/x86/kernel/msr.c
4581
4582 CPUIDLE DRIVER - ARM BIG LITTLE
4583 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4584 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4585 L:      linux-pm@vger.kernel.org
4586 L:      linux-arm-kernel@lists.infradead.org
4587 S:      Maintained
4588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4589 F:      drivers/cpuidle/cpuidle-big_little.c
4590
4591 CPUIDLE DRIVER - ARM EXYNOS
4592 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4593 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4594 M:      Kukjin Kim <kgene@kernel.org>
4595 L:      linux-pm@vger.kernel.org
4596 L:      linux-samsung-soc@vger.kernel.org
4597 S:      Supported
4598 F:      arch/arm/mach-exynos/pm.c
4599 F:      drivers/cpuidle/cpuidle-exynos.c
4600
4601 CPUIDLE DRIVER - ARM PSCI
4602 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4603 M:      Sudeep Holla <sudeep.holla@arm.com>
4604 L:      linux-pm@vger.kernel.org
4605 L:      linux-arm-kernel@lists.infradead.org
4606 S:      Supported
4607 F:      drivers/cpuidle/cpuidle-psci.c
4608
4609 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4610 M:      Ulf Hansson <ulf.hansson@linaro.org>
4611 L:      linux-pm@vger.kernel.org
4612 L:      linux-arm-kernel@lists.infradead.org
4613 S:      Supported
4614 F:      drivers/cpuidle/cpuidle-psci.h
4615 F:      drivers/cpuidle/cpuidle-psci-domain.c
4616
4617 CRAMFS FILESYSTEM
4618 M:      Nicolas Pitre <nico@fluxnic.net>
4619 S:      Maintained
4620 F:      Documentation/filesystems/cramfs.rst
4621 F:      fs/cramfs/
4622
4623 CREATIVE SB0540
4624 M:      Bastien Nocera <hadess@hadess.net>
4625 L:      linux-input@vger.kernel.org
4626 S:      Maintained
4627 F:      drivers/hid/hid-creative-sb0540.c
4628
4629 CRYPTO API
4630 M:      Herbert Xu <herbert@gondor.apana.org.au>
4631 M:      "David S. Miller" <davem@davemloft.net>
4632 L:      linux-crypto@vger.kernel.org
4633 S:      Maintained
4634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4636 F:      Documentation/crypto/
4637 F:      Documentation/devicetree/bindings/crypto/
4638 F:      arch/*/crypto/
4639 F:      crypto/
4640 F:      drivers/crypto/
4641 F:      include/crypto/
4642 F:      include/linux/crypto*
4643 F:      lib/crypto/
4644
4645 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4646 M:      Neil Horman <nhorman@tuxdriver.com>
4647 L:      linux-crypto@vger.kernel.org
4648 S:      Maintained
4649 F:      crypto/ansi_cprng.c
4650 F:      crypto/rng.c
4651
4652 CS3308 MEDIA DRIVER
4653 M:      Hans Verkuil <hverkuil@xs4all.nl>
4654 L:      linux-media@vger.kernel.org
4655 S:      Odd Fixes
4656 W:      http://linuxtv.org
4657 T:      git git://linuxtv.org/media_tree.git
4658 F:      drivers/media/i2c/cs3308.c
4659
4660 CS5535 Audio ALSA driver
4661 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4662 S:      Maintained
4663 F:      sound/pci/cs5535audio/
4664
4665 CSI DRIVERS FOR ALLWINNER V3s
4666 M:      Yong Deng <yong.deng@magewell.com>
4667 L:      linux-media@vger.kernel.org
4668 S:      Maintained
4669 T:      git git://linuxtv.org/media_tree.git
4670 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4671 F:      drivers/media/platform/sunxi/sun6i-csi/
4672
4673 CW1200 WLAN driver
4674 M:      Solomon Peachy <pizza@shaftnet.org>
4675 S:      Maintained
4676 F:      drivers/net/wireless/st/cw1200/
4677
4678 CX18 VIDEO4LINUX DRIVER
4679 M:      Andy Walls <awalls@md.metrocast.net>
4680 L:      linux-media@vger.kernel.org
4681 S:      Maintained
4682 W:      https://linuxtv.org
4683 T:      git git://linuxtv.org/media_tree.git
4684 F:      drivers/media/pci/cx18/
4685 F:      include/uapi/linux/ivtv*
4686
4687 CX2341X MPEG ENCODER HELPER MODULE
4688 M:      Hans Verkuil <hverkuil@xs4all.nl>
4689 L:      linux-media@vger.kernel.org
4690 S:      Maintained
4691 W:      https://linuxtv.org
4692 T:      git git://linuxtv.org/media_tree.git
4693 F:      drivers/media/common/cx2341x*
4694 F:      include/media/drv-intf/cx2341x.h
4695
4696 CX24120 MEDIA DRIVER
4697 M:      Jemma Denson <jdenson@gmail.com>
4698 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4699 L:      linux-media@vger.kernel.org
4700 S:      Maintained
4701 W:      https://linuxtv.org
4702 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4703 F:      drivers/media/dvb-frontends/cx24120*
4704
4705 CX88 VIDEO4LINUX DRIVER
4706 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4707 L:      linux-media@vger.kernel.org
4708 S:      Odd fixes
4709 W:      https://linuxtv.org
4710 T:      git git://linuxtv.org/media_tree.git
4711 F:      Documentation/driver-api/media/drivers/cx88*
4712 F:      drivers/media/pci/cx88/
4713
4714 CXD2820R MEDIA DRIVER
4715 M:      Antti Palosaari <crope@iki.fi>
4716 L:      linux-media@vger.kernel.org
4717 S:      Maintained
4718 W:      https://linuxtv.org
4719 W:      http://palosaari.fi/linux/
4720 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4721 T:      git git://linuxtv.org/anttip/media_tree.git
4722 F:      drivers/media/dvb-frontends/cxd2820r*
4723
4724 CXGB3 ETHERNET DRIVER (CXGB3)
4725 M:      Raju Rangoju <rajur@chelsio.com>
4726 L:      netdev@vger.kernel.org
4727 S:      Supported
4728 W:      http://www.chelsio.com
4729 F:      drivers/net/ethernet/chelsio/cxgb3/
4730
4731 CXGB3 ISCSI DRIVER (CXGB3I)
4732 M:      Karen Xie <kxie@chelsio.com>
4733 L:      linux-scsi@vger.kernel.org
4734 S:      Supported
4735 W:      http://www.chelsio.com
4736 F:      drivers/scsi/cxgbi/cxgb3i
4737
4738 CXGB4 CRYPTO DRIVER (chcr)
4739 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4740 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4741 M:      Rohit Maheshwari <rohitm@chelsio.com>
4742 L:      linux-crypto@vger.kernel.org
4743 S:      Supported
4744 W:      http://www.chelsio.com
4745 F:      drivers/crypto/chelsio
4746
4747 CXGB4 INLINE CRYPTO DRIVER
4748 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4749 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4750 M:      Rohit Maheshwari <rohitm@chelsio.com>
4751 L:      netdev@vger.kernel.org
4752 S:      Supported
4753 W:      http://www.chelsio.com
4754 F:      drivers/net/ethernet/chelsio/inline_crypto/
4755
4756 CXGB4 ETHERNET DRIVER (CXGB4)
4757 M:      Raju Rangoju <rajur@chelsio.com>
4758 L:      netdev@vger.kernel.org
4759 S:      Supported
4760 W:      http://www.chelsio.com
4761 F:      drivers/net/ethernet/chelsio/cxgb4/
4762
4763 CXGB4 ISCSI DRIVER (CXGB4I)
4764 M:      Karen Xie <kxie@chelsio.com>
4765 L:      linux-scsi@vger.kernel.org
4766 S:      Supported
4767 W:      http://www.chelsio.com
4768 F:      drivers/scsi/cxgbi/cxgb4i
4769
4770 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4771 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4772 L:      linux-rdma@vger.kernel.org
4773 S:      Supported
4774 W:      http://www.openfabrics.org
4775 F:      drivers/infiniband/hw/cxgb4/
4776 F:      include/uapi/rdma/cxgb4-abi.h
4777
4778 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4779 M:      Raju Rangoju <rajur@chelsio.com>
4780 L:      netdev@vger.kernel.org
4781 S:      Supported
4782 W:      http://www.chelsio.com
4783 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4784
4785 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4786 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4787 M:      Andrew Donnellan <ajd@linux.ibm.com>
4788 L:      linuxppc-dev@lists.ozlabs.org
4789 S:      Supported
4790 F:      Documentation/ABI/testing/sysfs-class-cxl
4791 F:      Documentation/powerpc/cxl.rst
4792 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4793 F:      drivers/misc/cxl/
4794 F:      include/misc/cxl*
4795 F:      include/uapi/misc/cxl.h
4796
4797 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4798 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4799 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4800 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4801 L:      linux-scsi@vger.kernel.org
4802 S:      Supported
4803 F:      Documentation/powerpc/cxlflash.rst
4804 F:      drivers/scsi/cxlflash/
4805 F:      include/uapi/scsi/cxlflash_ioctl.h
4806
4807 CYBERPRO FB DRIVER
4808 M:      Russell King <linux@armlinux.org.uk>
4809 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4810 S:      Maintained
4811 W:      http://www.armlinux.org.uk/
4812 F:      drivers/video/fbdev/cyber2000fb.*
4813
4814 CYCLADES ASYNC MUX DRIVER
4815 S:      Orphan
4816 W:      http://www.cyclades.com/
4817 F:      drivers/tty/cyclades.c
4818 F:      include/linux/cyclades.h
4819 F:      include/uapi/linux/cyclades.h
4820
4821 CYCLADES PC300 DRIVER
4822 S:      Orphan
4823 W:      http://www.cyclades.com/
4824 F:      drivers/net/wan/pc300*
4825
4826 CYPRESS_FIRMWARE MEDIA DRIVER
4827 M:      Antti Palosaari <crope@iki.fi>
4828 L:      linux-media@vger.kernel.org
4829 S:      Maintained
4830 W:      https://linuxtv.org
4831 W:      http://palosaari.fi/linux/
4832 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4833 T:      git git://linuxtv.org/anttip/media_tree.git
4834 F:      drivers/media/common/cypress_firmware*
4835
4836 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
4837 M:      Linus Walleij <linus.walleij@linaro.org>
4838 L:      linux-input@vger.kernel.org
4839 S:      Maintained
4840 F:      drivers/input/touchscreen/cy8ctma140.c
4841
4842 CYTTSP TOUCHSCREEN DRIVER
4843 M:      Ferruh Yigit <fery@cypress.com>
4844 L:      linux-input@vger.kernel.org
4845 S:      Supported
4846 F:      drivers/input/touchscreen/cyttsp*
4847 F:      include/linux/input/cyttsp.h
4848
4849 D-LINK DIR-685 TOUCHKEYS DRIVER
4850 M:      Linus Walleij <linus.walleij@linaro.org>
4851 L:      linux-input@vger.kernel.org
4852 S:      Supported
4853 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4854
4855 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4856 M:      Joshua Kinard <kumba@gentoo.org>
4857 S:      Maintained
4858 F:      drivers/rtc/rtc-ds1685.c
4859 F:      include/linux/rtc/ds1685.h
4860
4861 DAMA SLAVE for AX.25
4862 M:      Joerg Reuter <jreuter@yaina.de>
4863 L:      linux-hams@vger.kernel.org
4864 S:      Maintained
4865 W:      http://yaina.de/jreuter/
4866 W:      http://www.qsl.net/dl1bke/
4867 F:      net/ax25/af_ax25.c
4868 F:      net/ax25/ax25_dev.c
4869 F:      net/ax25/ax25_ds_*
4870 F:      net/ax25/ax25_in.c
4871 F:      net/ax25/ax25_out.c
4872 F:      net/ax25/ax25_timer.c
4873 F:      net/ax25/sysctl_net_ax25.c
4874
4875 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4876 L:      netdev@vger.kernel.org
4877 S:      Orphan
4878 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
4879 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4880
4881 DC390/AM53C974 SCSI driver
4882 M:      Hannes Reinecke <hare@suse.com>
4883 L:      linux-scsi@vger.kernel.org
4884 S:      Maintained
4885 F:      drivers/scsi/am53c974.c
4886
4887 DC395x SCSI driver
4888 M:      Oliver Neukum <oliver@neukum.org>
4889 M:      Ali Akcaagac <aliakc@web.de>
4890 M:      Jamie Lenehan <lenehan@twibble.org>
4891 L:      dc395x@twibble.org
4892 S:      Maintained
4893 W:      http://twibble.org/dist/dc395x/
4894 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4895 F:      Documentation/scsi/dc395x.rst
4896 F:      drivers/scsi/dc395x.*
4897
4898 DCCP PROTOCOL
4899 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
4900 L:      dccp@vger.kernel.org
4901 S:      Maintained
4902 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4903 F:      include/linux/dccp.h
4904 F:      include/linux/tfrc.h
4905 F:      include/uapi/linux/dccp.h
4906 F:      net/dccp/
4907
4908 DECnet NETWORK LAYER
4909 L:      linux-decnet-user@lists.sourceforge.net
4910 S:      Orphan
4911 W:      http://linux-decnet.sourceforge.net
4912 F:      Documentation/networking/decnet.rst
4913 F:      net/decnet/
4914
4915 DECSTATION PLATFORM SUPPORT
4916 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4917 L:      linux-mips@vger.kernel.org
4918 S:      Maintained
4919 W:      http://www.linux-mips.org/wiki/DECstation
4920 F:      arch/mips/dec/
4921 F:      arch/mips/include/asm/dec/
4922 F:      arch/mips/include/asm/mach-dec/
4923
4924 DEFXX FDDI NETWORK DRIVER
4925 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4926 S:      Maintained
4927 F:      drivers/net/fddi/defxx.*
4928
4929 DEFZA FDDI NETWORK DRIVER
4930 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4931 S:      Maintained
4932 F:      drivers/net/fddi/defza.*
4933
4934 DEINTERLACE DRIVERS FOR ALLWINNER H3
4935 M:      Jernej Skrabec <jernej.skrabec@siol.net>
4936 L:      linux-media@vger.kernel.org
4937 S:      Maintained
4938 T:      git git://linuxtv.org/media_tree.git
4939 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4940 F:      drivers/media/platform/sunxi/sun8i-di/
4941
4942 DELL LAPTOP DRIVER
4943 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4944 M:      Pali Rohár <pali@kernel.org>
4945 L:      platform-driver-x86@vger.kernel.org
4946 S:      Maintained
4947 F:      drivers/platform/x86/dell-laptop.c
4948
4949 DELL LAPTOP FREEFALL DRIVER
4950 M:      Pali Rohár <pali@kernel.org>
4951 S:      Maintained
4952 F:      drivers/platform/x86/dell-smo8800.c
4953
4954 DELL LAPTOP RBTN DRIVER
4955 M:      Pali Rohár <pali@kernel.org>
4956 S:      Maintained
4957 F:      drivers/platform/x86/dell-rbtn.*
4958
4959 DELL LAPTOP SMM DRIVER
4960 M:      Pali Rohár <pali@kernel.org>
4961 S:      Maintained
4962 F:      drivers/hwmon/dell-smm-hwmon.c
4963 F:      include/uapi/linux/i8k.h
4964
4965 DELL REMOTE BIOS UPDATE DRIVER
4966 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4967 L:      platform-driver-x86@vger.kernel.org
4968 S:      Maintained
4969 F:      drivers/platform/x86/dell_rbu.c
4970
4971 DELL SMBIOS DRIVER
4972 M:      Pali Rohár <pali@kernel.org>
4973 M:      Mario Limonciello <mario.limonciello@dell.com>
4974 L:      platform-driver-x86@vger.kernel.org
4975 S:      Maintained
4976 F:      drivers/platform/x86/dell-smbios.*
4977
4978 DELL SMBIOS SMM DRIVER
4979 M:      Mario Limonciello <mario.limonciello@dell.com>
4980 L:      platform-driver-x86@vger.kernel.org
4981 S:      Maintained
4982 F:      drivers/platform/x86/dell-smbios-smm.c
4983
4984 DELL SMBIOS WMI DRIVER
4985 M:      Mario Limonciello <mario.limonciello@dell.com>
4986 L:      platform-driver-x86@vger.kernel.org
4987 S:      Maintained
4988 F:      drivers/platform/x86/dell-smbios-wmi.c
4989 F:      tools/wmi/dell-smbios-example.c
4990
4991 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4992 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4993 L:      platform-driver-x86@vger.kernel.org
4994 S:      Maintained
4995 F:      Documentation/driver-api/dcdbas.rst
4996 F:      drivers/platform/x86/dcdbas.*
4997
4998 DELL WMI DESCRIPTOR DRIVER
4999 M:      Mario Limonciello <mario.limonciello@dell.com>
5000 S:      Maintained
5001 F:      drivers/platform/x86/dell-wmi-descriptor.c
5002
5003 DELL WMI NOTIFICATIONS DRIVER
5004 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5005 M:      Pali Rohár <pali@kernel.org>
5006 S:      Maintained
5007 F:      drivers/platform/x86/dell-wmi.c
5008
5009 DELTA ST MEDIA DRIVER
5010 M:      Hugues Fruchet <hugues.fruchet@st.com>
5011 L:      linux-media@vger.kernel.org
5012 S:      Supported
5013 W:      https://linuxtv.org
5014 T:      git git://linuxtv.org/media_tree.git
5015 F:      drivers/media/platform/sti/delta
5016
5017 DENALI NAND DRIVER
5018 L:      linux-mtd@lists.infradead.org
5019 S:      Orphan
5020 F:      drivers/mtd/nand/raw/denali*
5021
5022 DESIGNWARE EDMA CORE IP DRIVER
5023 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5024 L:      dmaengine@vger.kernel.org
5025 S:      Maintained
5026 F:      drivers/dma/dw-edma/
5027 F:      include/linux/dma/edma.h
5028
5029 DESIGNWARE USB2 DRD IP DRIVER
5030 M:      Minas Harutyunyan <hminas@synopsys.com>
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/dwc2/
5035
5036 DESIGNWARE USB3 DRD IP DRIVER
5037 M:      Felipe Balbi <balbi@kernel.org>
5038 L:      linux-usb@vger.kernel.org
5039 S:      Maintained
5040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5041 F:      drivers/usb/dwc3/
5042
5043 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5044 M:      Andreas Klinger <ak@it-klinger.de>
5045 L:      linux-iio@vger.kernel.org
5046 S:      Maintained
5047 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5048 F:      drivers/iio/proximity/srf*.c
5049
5050 DEVICE COREDUMP (DEV_COREDUMP)
5051 M:      Johannes Berg <johannes@sipsolutions.net>
5052 L:      linux-kernel@vger.kernel.org
5053 S:      Maintained
5054 F:      drivers/base/devcoredump.c
5055 F:      include/linux/devcoredump.h
5056
5057 DEVICE DEPENDENCY HELPER SCRIPT
5058 M:      Saravana Kannan <saravanak@google.com>
5059 L:      linux-kernel@vger.kernel.org
5060 S:      Maintained
5061 F:      scripts/dev-needs.sh
5062
5063 DEVICE DIRECT ACCESS (DAX)
5064 M:      Dan Williams <dan.j.williams@intel.com>
5065 M:      Vishal Verma <vishal.l.verma@intel.com>
5066 M:      Dave Jiang <dave.jiang@intel.com>
5067 L:      linux-nvdimm@lists.01.org
5068 S:      Supported
5069 F:      drivers/dax/
5070
5071 DEVICE FREQUENCY (DEVFREQ)
5072 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5073 M:      Kyungmin Park <kyungmin.park@samsung.com>
5074 M:      Chanwoo Choi <cw00.choi@samsung.com>
5075 L:      linux-pm@vger.kernel.org
5076 S:      Maintained
5077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5078 F:      Documentation/devicetree/bindings/devfreq/
5079 F:      drivers/devfreq/
5080 F:      include/linux/devfreq.h
5081 F:      include/trace/events/devfreq.h
5082
5083 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5084 M:      Chanwoo Choi <cw00.choi@samsung.com>
5085 L:      linux-pm@vger.kernel.org
5086 S:      Supported
5087 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5088 F:      Documentation/devicetree/bindings/devfreq/event/
5089 F:      drivers/devfreq/devfreq-event.c
5090 F:      drivers/devfreq/event/
5091 F:      include/dt-bindings/pmu/exynos_ppmu.h
5092 F:      include/linux/devfreq-event.h
5093
5094 DEVICE NUMBER REGISTRY
5095 M:      Torben Mathiasen <device@lanana.org>
5096 S:      Maintained
5097 W:      http://lanana.org/docs/device-list/index.html
5098
5099 DEVICE-MAPPER  (LVM)
5100 M:      Alasdair Kergon <agk@redhat.com>
5101 M:      Mike Snitzer <snitzer@redhat.com>
5102 M:      dm-devel@redhat.com
5103 L:      dm-devel@redhat.com
5104 S:      Maintained
5105 W:      http://sources.redhat.com/dm
5106 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5108 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5109 F:      Documentation/admin-guide/device-mapper/
5110 F:      drivers/md/Kconfig
5111 F:      drivers/md/Makefile
5112 F:      drivers/md/dm*
5113 F:      drivers/md/persistent-data/
5114 F:      include/linux/device-mapper.h
5115 F:      include/linux/dm-*.h
5116 F:      include/uapi/linux/dm-*.h
5117
5118 DEVLINK
5119 M:      Jiri Pirko <jiri@nvidia.com>
5120 L:      netdev@vger.kernel.org
5121 S:      Supported
5122 F:      Documentation/networking/devlink
5123 F:      include/net/devlink.h
5124 F:      include/uapi/linux/devlink.h
5125 F:      net/core/devlink.c
5126
5127 DIALOG SEMICONDUCTOR DRIVERS
5128 M:      Support Opensource <support.opensource@diasemi.com>
5129 S:      Supported
5130 W:      http://www.dialog-semiconductor.com/products
5131 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5132 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5133 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5134 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5135 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5136 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5137 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5138 F:      Documentation/hwmon/da90??.rst
5139 F:      drivers/gpio/gpio-da90??.c
5140 F:      drivers/hwmon/da90??-hwmon.c
5141 F:      drivers/iio/adc/da91??-*.c
5142 F:      drivers/input/misc/da90??_onkey.c
5143 F:      drivers/input/touchscreen/da9052_tsi.c
5144 F:      drivers/leds/leds-da90??.c
5145 F:      drivers/mfd/da903x.c
5146 F:      drivers/mfd/da90??-*.c
5147 F:      drivers/mfd/da91??-*.c
5148 F:      drivers/pinctrl/pinctrl-da90??.c
5149 F:      drivers/power/supply/da9052-battery.c
5150 F:      drivers/power/supply/da91??-*.c
5151 F:      drivers/regulator/da9???-regulator.[ch]
5152 F:      drivers/regulator/slg51000-regulator.[ch]
5153 F:      drivers/rtc/rtc-da90??.c
5154 F:      drivers/thermal/da90??-thermal.c
5155 F:      drivers/video/backlight/da90??_bl.c
5156 F:      drivers/watchdog/da90??_wdt.c
5157 F:      include/linux/mfd/da903x.h
5158 F:      include/linux/mfd/da9052/
5159 F:      include/linux/mfd/da9055/
5160 F:      include/linux/mfd/da9062/
5161 F:      include/linux/mfd/da9063/
5162 F:      include/linux/mfd/da9150/
5163 F:      include/linux/regulator/da9211.h
5164 F:      include/sound/da[79]*.h
5165 F:      sound/soc/codecs/da[79]*.[ch]
5166
5167 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5168 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5169 L:      linux-gpio@vger.kernel.org
5170 S:      Maintained
5171 F:      drivers/gpio/gpio-gpio-mm.c
5172
5173 DIOLAN U2C-12 I2C DRIVER
5174 M:      Guenter Roeck <linux@roeck-us.net>
5175 L:      linux-i2c@vger.kernel.org
5176 S:      Maintained
5177 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5178
5179 DIRECTORY NOTIFICATION (DNOTIFY)
5180 M:      Jan Kara <jack@suse.cz>
5181 R:      Amir Goldstein <amir73il@gmail.com>
5182 L:      linux-fsdevel@vger.kernel.org
5183 S:      Maintained
5184 F:      Documentation/filesystems/dnotify.rst
5185 F:      fs/notify/dnotify/
5186 F:      include/linux/dnotify.h
5187
5188 DISK GEOMETRY AND PARTITION HANDLING
5189 M:      Andries Brouwer <aeb@cwi.nl>
5190 S:      Maintained
5191 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5192 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5193 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5194
5195 DISKQUOTA
5196 M:      Jan Kara <jack@suse.com>
5197 S:      Maintained
5198 F:      Documentation/filesystems/quota.rst
5199 F:      fs/quota/
5200 F:      include/linux/quota*.h
5201 F:      include/uapi/linux/quota*.h
5202
5203 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5204 M:      Bernie Thompson <bernie@plugable.com>
5205 L:      linux-fbdev@vger.kernel.org
5206 S:      Maintained
5207 W:      http://plugable.com/category/projects/udlfb/
5208 F:      Documentation/fb/udlfb.rst
5209 F:      drivers/video/fbdev/udlfb.c
5210 F:      include/video/udlfb.h
5211
5212 DISTRIBUTED LOCK MANAGER (DLM)
5213 M:      Christine Caulfield <ccaulfie@redhat.com>
5214 M:      David Teigland <teigland@redhat.com>
5215 L:      cluster-devel@redhat.com
5216 S:      Supported
5217 W:      http://sources.redhat.com/cluster/
5218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5219 F:      fs/dlm/
5220
5221 DMA BUFFER SHARING FRAMEWORK
5222 M:      Sumit Semwal <sumit.semwal@linaro.org>
5223 M:      Christian König <christian.koenig@amd.com>
5224 L:      linux-media@vger.kernel.org
5225 L:      dri-devel@lists.freedesktop.org
5226 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5227 S:      Maintained
5228 T:      git git://anongit.freedesktop.org/drm/drm-misc
5229 F:      Documentation/driver-api/dma-buf.rst
5230 F:      drivers/dma-buf/
5231 F:      include/linux/*fence.h
5232 F:      include/linux/dma-buf*
5233 F:      include/linux/dma-resv.h
5234 K:      \bdma_(?:buf|fence|resv)\b
5235
5236 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5237 M:      Vinod Koul <vkoul@kernel.org>
5238 L:      dmaengine@vger.kernel.org
5239 S:      Maintained
5240 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5242 F:      Documentation/devicetree/bindings/dma/
5243 F:      Documentation/driver-api/dmaengine/
5244 F:      drivers/dma/
5245 F:      include/linux/dmaengine.h
5246 F:      include/linux/of_dma.h
5247
5248 DMA MAPPING HELPERS
5249 M:      Christoph Hellwig <hch@lst.de>
5250 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5251 R:      Robin Murphy <robin.murphy@arm.com>
5252 L:      iommu@lists.linux-foundation.org
5253 S:      Supported
5254 W:      http://git.infradead.org/users/hch/dma-mapping.git
5255 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5256 F:      include/asm-generic/dma-mapping.h
5257 F:      include/linux/dma-direct.h
5258 F:      include/linux/dma-mapping.h
5259 F:      include/linux/dma-map-ops.h
5260 F:      kernel/dma/
5261
5262 DMA-BUF HEAPS FRAMEWORK
5263 M:      Sumit Semwal <sumit.semwal@linaro.org>
5264 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5265 R:      Liam Mark <lmark@codeaurora.org>
5266 R:      Laura Abbott <labbott@redhat.com>
5267 R:      Brian Starkey <Brian.Starkey@arm.com>
5268 R:      John Stultz <john.stultz@linaro.org>
5269 L:      linux-media@vger.kernel.org
5270 L:      dri-devel@lists.freedesktop.org
5271 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5272 S:      Maintained
5273 T:      git git://anongit.freedesktop.org/drm/drm-misc
5274 F:      drivers/dma-buf/dma-heap.c
5275 F:      drivers/dma-buf/heaps/*
5276 F:      include/linux/dma-heap.h
5277 F:      include/uapi/linux/dma-heap.h
5278
5279 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5280 M:      Lukasz Luba <lukasz.luba@arm.com>
5281 L:      linux-pm@vger.kernel.org
5282 L:      linux-samsung-soc@vger.kernel.org
5283 S:      Maintained
5284 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5285 F:      drivers/memory/samsung/exynos5422-dmc.c
5286
5287 DME1737 HARDWARE MONITOR DRIVER
5288 M:      Juerg Haefliger <juergh@gmail.com>
5289 L:      linux-hwmon@vger.kernel.org
5290 S:      Maintained
5291 F:      Documentation/hwmon/dme1737.rst
5292 F:      drivers/hwmon/dme1737.c
5293
5294 DMI/SMBIOS SUPPORT
5295 M:      Jean Delvare <jdelvare@suse.com>
5296 S:      Maintained
5297 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5298 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5299 F:      drivers/firmware/dmi-id.c
5300 F:      drivers/firmware/dmi_scan.c
5301 F:      include/linux/dmi.h
5302
5303 DOCUMENTATION
5304 M:      Jonathan Corbet <corbet@lwn.net>
5305 L:      linux-doc@vger.kernel.org
5306 S:      Maintained
5307 P:      Documentation/doc-guide/maintainer-profile.rst
5308 T:      git git://git.lwn.net/linux.git docs-next
5309 F:      Documentation/
5310 F:      scripts/documentation-file-ref-check
5311 F:      scripts/kernel-doc
5312 F:      scripts/sphinx-pre-install
5313 X:      Documentation/ABI/
5314 X:      Documentation/admin-guide/media/
5315 X:      Documentation/devicetree/
5316 X:      Documentation/driver-api/media/
5317 X:      Documentation/firmware-guide/acpi/
5318 X:      Documentation/i2c/
5319 X:      Documentation/power/
5320 X:      Documentation/spi/
5321 X:      Documentation/userspace-api/media/
5322
5323 DOCUMENTATION SCRIPTS
5324 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5325 L:      linux-doc@vger.kernel.org
5326 S:      Maintained
5327 F:      Documentation/sphinx/parse-headers.pl
5328 F:      scripts/documentation-file-ref-check
5329 F:      scripts/sphinx-pre-install
5330
5331 DOCUMENTATION/ITALIAN
5332 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5333 L:      linux-doc@vger.kernel.org
5334 S:      Maintained
5335 F:      Documentation/translations/it_IT
5336
5337 DONGWOON DW9714 LENS VOICE COIL DRIVER
5338 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5339 L:      linux-media@vger.kernel.org
5340 S:      Maintained
5341 T:      git git://linuxtv.org/media_tree.git
5342 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5343 F:      drivers/media/i2c/dw9714.c
5344
5345 DONGWOON DW9768 LENS VOICE COIL DRIVER
5346 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5347 L:      linux-media@vger.kernel.org
5348 S:      Maintained
5349 T:      git git://linuxtv.org/media_tree.git
5350 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5351 F:      drivers/media/i2c/dw9768.c
5352
5353 DONGWOON DW9807 LENS VOICE COIL DRIVER
5354 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5355 L:      linux-media@vger.kernel.org
5356 S:      Maintained
5357 T:      git git://linuxtv.org/media_tree.git
5358 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5359 F:      drivers/media/i2c/dw9807-vcm.c
5360
5361 DOUBLETALK DRIVER
5362 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5363 L:      blinux-list@redhat.com
5364 S:      Maintained
5365 F:      drivers/char/dtlk.c
5366 F:      include/linux/dtlk.h
5367
5368 DPAA2 DATAPATH I/O (DPIO) DRIVER
5369 M:      Roy Pledge <Roy.Pledge@nxp.com>
5370 L:      linux-kernel@vger.kernel.org
5371 S:      Maintained
5372 F:      drivers/soc/fsl/dpio
5373
5374 DPAA2 ETHERNET DRIVER
5375 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5376 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5377 L:      netdev@vger.kernel.org
5378 S:      Maintained
5379 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5380 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5381 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5382 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5383 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5384 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5385 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5386 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5387 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5388
5389 DPAA2 ETHERNET SWITCH DRIVER
5390 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5391 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5392 L:      linux-kernel@vger.kernel.org
5393 S:      Maintained
5394 F:      drivers/staging/fsl-dpaa2/ethsw
5395
5396 DPT_I2O SCSI RAID DRIVER
5397 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5398 L:      linux-scsi@vger.kernel.org
5399 S:      Maintained
5400 W:      http://www.adaptec.com/
5401 F:      drivers/scsi/dpt*
5402 F:      drivers/scsi/dpt/
5403
5404 DRBD DRIVER
5405 M:      Philipp Reisner <philipp.reisner@linbit.com>
5406 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5407 L:      drbd-dev@lists.linbit.com
5408 S:      Supported
5409 W:      http://www.drbd.org
5410 T:      git git://git.linbit.com/linux-drbd.git
5411 T:      git git://git.linbit.com/drbd-8.4.git
5412 F:      Documentation/admin-guide/blockdev/
5413 F:      drivers/block/drbd/
5414 F:      lib/lru_cache.c
5415
5416 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5417 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5418 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5419 S:      Supported
5420 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5421 F:      Documentation/core-api/kobject.rst
5422 F:      drivers/base/
5423 F:      fs/debugfs/
5424 F:      fs/sysfs/
5425 F:      include/linux/debugfs.h
5426 F:      include/linux/kobj*
5427 F:      lib/kobj*
5428
5429 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5430 M:      Nishanth Menon <nm@ti.com>
5431 L:      linux-pm@vger.kernel.org
5432 S:      Maintained
5433 F:      drivers/soc/ti/smartreflex.c
5434 F:      include/linux/power/smartreflex.h
5435
5436 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5437 M:      Maxime Ripard <mripard@kernel.org>
5438 M:      Chen-Yu Tsai <wens@csie.org>
5439 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5440 L:      dri-devel@lists.freedesktop.org
5441 S:      Supported
5442 T:      git git://anongit.freedesktop.org/drm/drm-misc
5443 F:      drivers/gpu/drm/sun4i/sun8i*
5444
5445 DRM DRIVER FOR ARM PL111 CLCD
5446 M:      Eric Anholt <eric@anholt.net>
5447 S:      Supported
5448 T:      git git://anongit.freedesktop.org/drm/drm-misc
5449 F:      drivers/gpu/drm/pl111/
5450
5451 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5452 M:      Linus Walleij <linus.walleij@linaro.org>
5453 S:      Maintained
5454 T:      git git://anongit.freedesktop.org/drm/drm-misc
5455 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5456 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5457
5458 DRM DRIVER FOR ASPEED BMC GFX
5459 M:      Joel Stanley <joel@jms.id.au>
5460 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5461 S:      Supported
5462 T:      git git://anongit.freedesktop.org/drm/drm-misc
5463 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5464 F:      drivers/gpu/drm/aspeed/
5465
5466 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5467 M:      Dave Airlie <airlied@redhat.com>
5468 R:      Thomas Zimmermann <tzimmermann@suse.de>
5469 L:      dri-devel@lists.freedesktop.org
5470 S:      Supported
5471 T:      git git://anongit.freedesktop.org/drm/drm-misc
5472 F:      drivers/gpu/drm/ast/
5473
5474 DRM DRIVER FOR BOCHS VIRTUAL GPU
5475 M:      Gerd Hoffmann <kraxel@redhat.com>
5476 L:      virtualization@lists.linux-foundation.org
5477 S:      Maintained
5478 T:      git git://anongit.freedesktop.org/drm/drm-misc
5479 F:      drivers/gpu/drm/bochs/
5480
5481 DRM DRIVER FOR BOE HIMAX8279D PANELS
5482 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5483 S:      Maintained
5484 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5485 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5486
5487 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5488 M:      Linus Walleij <linus.walleij@linaro.org>
5489 S:      Maintained
5490 T:      git git://anongit.freedesktop.org/drm/drm-misc
5491 F:      drivers/gpu/drm/tve200/
5492
5493 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5494 M:      Icenowy Zheng <icenowy@aosc.io>
5495 S:      Maintained
5496 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5497 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5498
5499 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5500 M:      Jagan Teki <jagan@amarulasolutions.com>
5501 S:      Maintained
5502 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5503 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5504
5505 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5506 M:      Hans de Goede <hdegoede@redhat.com>
5507 S:      Maintained
5508 T:      git git://anongit.freedesktop.org/drm/drm-misc
5509 F:      drivers/gpu/drm/tiny/gm12u320.c
5510
5511 DRM DRIVER FOR HX8357D PANELS
5512 M:      Eric Anholt <eric@anholt.net>
5513 S:      Maintained
5514 T:      git git://anongit.freedesktop.org/drm/drm-misc
5515 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5516 F:      drivers/gpu/drm/tiny/hx8357d.c
5517
5518 DRM DRIVER FOR ILITEK ILI9225 PANELS
5519 M:      David Lechner <david@lechnology.com>
5520 S:      Maintained
5521 T:      git git://anongit.freedesktop.org/drm/drm-misc
5522 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5523 F:      drivers/gpu/drm/tiny/ili9225.c
5524
5525 DRM DRIVER FOR ILITEK ILI9486 PANELS
5526 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5527 S:      Maintained
5528 T:      git git://anongit.freedesktop.org/drm/drm-misc
5529 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5530 F:      drivers/gpu/drm/tiny/ili9486.c
5531
5532 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5533 S:      Orphan / Obsolete
5534 F:      drivers/gpu/drm/i810/
5535 F:      include/uapi/drm/i810_drm.h
5536
5537 DRM DRIVER FOR LVDS PANELS
5538 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5539 L:      dri-devel@lists.freedesktop.org
5540 T:      git git://anongit.freedesktop.org/drm/drm-misc
5541 S:      Maintained
5542 F:      drivers/gpu/drm/panel/panel-lvds.c
5543 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5544
5545 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5546 M:      Guido Günther <agx@sigxcpu.org>
5547 R:      Purism Kernel Team <kernel@puri.sm>
5548 S:      Maintained
5549 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5550 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5551
5552 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5553 S:      Orphan / Obsolete
5554 F:      drivers/gpu/drm/mga/
5555 F:      include/uapi/drm/mga_drm.h
5556
5557 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5558 M:      Dave Airlie <airlied@redhat.com>
5559 R:      Thomas Zimmermann <tzimmermann@suse.de>
5560 L:      dri-devel@lists.freedesktop.org
5561 S:      Supported
5562 T:      git git://anongit.freedesktop.org/drm/drm-misc
5563 F:      drivers/gpu/drm/mgag200/
5564
5565 DRM DRIVER FOR MI0283QT
5566 M:      Noralf Trønnes <noralf@tronnes.org>
5567 S:      Maintained
5568 T:      git git://anongit.freedesktop.org/drm/drm-misc
5569 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5570 F:      drivers/gpu/drm/tiny/mi0283qt.c
5571
5572 DRM DRIVER FOR MSM ADRENO GPU
5573 M:      Rob Clark <robdclark@gmail.com>
5574 M:      Sean Paul <sean@poorly.run>
5575 L:      linux-arm-msm@vger.kernel.org
5576 L:      dri-devel@lists.freedesktop.org
5577 L:      freedreno@lists.freedesktop.org
5578 S:      Maintained
5579 T:      git https://gitlab.freedesktop.org/drm/msm.git
5580 F:      Documentation/devicetree/bindings/display/msm/
5581 F:      drivers/gpu/drm/msm/
5582 F:      include/uapi/drm/msm_drm.h
5583
5584 DRM DRIVER FOR NOVATEK NT35510 PANELS
5585 M:      Linus Walleij <linus.walleij@linaro.org>
5586 S:      Maintained
5587 T:      git git://anongit.freedesktop.org/drm/drm-misc
5588 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5589 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5590
5591 DRM DRIVER FOR NOVATEK NT36672A PANELS
5592 M:      Sumit Semwal <sumit.semwal@linaro.org>
5593 S:      Maintained
5594 T:      git git://anongit.freedesktop.org/drm/drm-misc
5595 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
5596 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
5597
5598 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5599 M:      Ben Skeggs <bskeggs@redhat.com>
5600 L:      dri-devel@lists.freedesktop.org
5601 L:      nouveau@lists.freedesktop.org
5602 S:      Supported
5603 T:      git git://github.com/skeggsb/linux
5604 F:      drivers/gpu/drm/nouveau/
5605 F:      include/uapi/drm/nouveau_drm.h
5606
5607 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5608 M:      Stefan Mavrodiev <stefan@olimex.com>
5609 S:      Maintained
5610 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5611 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5612
5613 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5614 M:      Noralf Trønnes <noralf@tronnes.org>
5615 S:      Maintained
5616 T:      git git://anongit.freedesktop.org/drm/drm-misc
5617 F:      Documentation/devicetree/bindings/display/repaper.txt
5618 F:      drivers/gpu/drm/tiny/repaper.c
5619
5620 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5621 M:      Dave Airlie <airlied@redhat.com>
5622 M:      Gerd Hoffmann <kraxel@redhat.com>
5623 L:      virtualization@lists.linux-foundation.org
5624 S:      Obsolete
5625 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5626 T:      git git://anongit.freedesktop.org/drm/drm-misc
5627 F:      drivers/gpu/drm/tiny/cirrus.c
5628
5629 DRM DRIVER FOR QXL VIRTUAL GPU
5630 M:      Dave Airlie <airlied@redhat.com>
5631 M:      Gerd Hoffmann <kraxel@redhat.com>
5632 L:      virtualization@lists.linux-foundation.org
5633 L:      spice-devel@lists.freedesktop.org
5634 S:      Maintained
5635 T:      git git://anongit.freedesktop.org/drm/drm-misc
5636 F:      drivers/gpu/drm/qxl/
5637 F:      include/uapi/drm/qxl_drm.h
5638
5639 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5640 S:      Orphan / Obsolete
5641 F:      drivers/gpu/drm/r128/
5642 F:      include/uapi/drm/r128_drm.h
5643
5644 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5645 M:      Robert Chiras <robert.chiras@nxp.com>
5646 S:      Maintained
5647 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
5648 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5649
5650 DRM DRIVER FOR SITRONIX ST7703 PANELS
5651 M:      Guido Günther <agx@sigxcpu.org>
5652 R:      Purism Kernel Team <kernel@puri.sm>
5653 R:      Ondrej Jirman <megous@megous.com>
5654 S:      Maintained
5655 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
5656 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
5657
5658 DRM DRIVER FOR SAVAGE VIDEO CARDS
5659 S:      Orphan / Obsolete
5660 F:      drivers/gpu/drm/savage/
5661 F:      include/uapi/drm/savage_drm.h
5662
5663 DRM DRIVER FOR SIS VIDEO CARDS
5664 S:      Orphan / Obsolete
5665 F:      drivers/gpu/drm/sis/
5666 F:      include/uapi/drm/sis_drm.h
5667
5668 DRM DRIVER FOR SITRONIX ST7586 PANELS
5669 M:      David Lechner <david@lechnology.com>
5670 S:      Maintained
5671 T:      git git://anongit.freedesktop.org/drm/drm-misc
5672 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5673 F:      drivers/gpu/drm/tiny/st7586.c
5674
5675 DRM DRIVER FOR SITRONIX ST7701 PANELS
5676 M:      Jagan Teki <jagan@amarulasolutions.com>
5677 S:      Maintained
5678 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5679 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5680
5681 DRM DRIVER FOR SITRONIX ST7735R PANELS
5682 M:      David Lechner <david@lechnology.com>
5683 S:      Maintained
5684 T:      git git://anongit.freedesktop.org/drm/drm-misc
5685 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5686 F:      drivers/gpu/drm/tiny/st7735r.c
5687
5688 DRM DRIVER FOR SONY ACX424AKP PANELS
5689 M:      Linus Walleij <linus.walleij@linaro.org>
5690 S:      Maintained
5691 T:      git git://anongit.freedesktop.org/drm/drm-misc
5692 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5693
5694 DRM DRIVER FOR ST-ERICSSON MCDE
5695 M:      Linus Walleij <linus.walleij@linaro.org>
5696 S:      Maintained
5697 T:      git git://anongit.freedesktop.org/drm/drm-misc
5698 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5699 F:      drivers/gpu/drm/mcde/
5700
5701 DRM DRIVER FOR TDFX VIDEO CARDS
5702 S:      Orphan / Obsolete
5703 F:      drivers/gpu/drm/tdfx/
5704
5705 DRM DRIVER FOR TPO TPG110 PANELS
5706 M:      Linus Walleij <linus.walleij@linaro.org>
5707 S:      Maintained
5708 T:      git git://anongit.freedesktop.org/drm/drm-misc
5709 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5710 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5711
5712 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5713 M:      Dave Airlie <airlied@redhat.com>
5714 R:      Sean Paul <sean@poorly.run>
5715 R:      Thomas Zimmermann <tzimmermann@suse.de>
5716 L:      dri-devel@lists.freedesktop.org
5717 S:      Supported
5718 T:      git git://anongit.freedesktop.org/drm/drm-misc
5719 F:      drivers/gpu/drm/udl/
5720
5721 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5722 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5723 M:      Melissa Wen <melissa.srw@gmail.com>
5724 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
5725 R:      Daniel Vetter <daniel@ffwll.ch>
5726 L:      dri-devel@lists.freedesktop.org
5727 S:      Maintained
5728 T:      git git://anongit.freedesktop.org/drm/drm-misc
5729 F:      Documentation/gpu/vkms.rst
5730 F:      drivers/gpu/drm/vkms/
5731
5732 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5733 M:      Hans de Goede <hdegoede@redhat.com>
5734 L:      dri-devel@lists.freedesktop.org
5735 S:      Maintained
5736 T:      git git://anongit.freedesktop.org/drm/drm-misc
5737 F:      drivers/gpu/drm/vboxvideo/
5738
5739 DRM DRIVER FOR VMWARE VIRTUAL GPU
5740 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5741 M:      Roland Scheidegger <sroland@vmware.com>
5742 L:      dri-devel@lists.freedesktop.org
5743 S:      Supported
5744 T:      git git://people.freedesktop.org/~sroland/linux
5745 F:      drivers/gpu/drm/vmwgfx/
5746 F:      include/uapi/drm/vmwgfx_drm.h
5747
5748 DRM DRIVERS
5749 M:      David Airlie <airlied@linux.ie>
5750 M:      Daniel Vetter <daniel@ffwll.ch>
5751 L:      dri-devel@lists.freedesktop.org
5752 S:      Maintained
5753 B:      https://bugs.freedesktop.org/
5754 C:      irc://chat.freenode.net/dri-devel
5755 T:      git git://anongit.freedesktop.org/drm/drm
5756 F:      Documentation/devicetree/bindings/display/
5757 F:      Documentation/devicetree/bindings/gpu/
5758 F:      Documentation/gpu/
5759 F:      drivers/gpu/drm/
5760 F:      drivers/gpu/vga/
5761 F:      include/drm/
5762 F:      include/linux/vga*
5763 F:      include/uapi/drm/
5764
5765 DRM DRIVERS AND MISC GPU PATCHES
5766 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5767 M:      Maxime Ripard <mripard@kernel.org>
5768 M:      Thomas Zimmermann <tzimmermann@suse.de>
5769 S:      Maintained
5770 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5771 T:      git git://anongit.freedesktop.org/drm/drm-misc
5772 F:      Documentation/gpu/
5773 F:      drivers/gpu/drm/*
5774 F:      drivers/gpu/vga/
5775 F:      include/drm/drm*
5776 F:      include/linux/vga*
5777 F:      include/uapi/drm/drm*
5778
5779 DRM DRIVERS FOR ALLWINNER A10
5780 M:      Maxime Ripard <mripard@kernel.org>
5781 M:      Chen-Yu Tsai <wens@csie.org>
5782 L:      dri-devel@lists.freedesktop.org
5783 S:      Supported
5784 T:      git git://anongit.freedesktop.org/drm/drm-misc
5785 F:      Documentation/devicetree/bindings/display/allwinner*
5786 F:      drivers/gpu/drm/sun4i/
5787
5788 DRM DRIVERS FOR AMLOGIC SOCS
5789 M:      Neil Armstrong <narmstrong@baylibre.com>
5790 L:      dri-devel@lists.freedesktop.org
5791 L:      linux-amlogic@lists.infradead.org
5792 S:      Supported
5793 W:      http://linux-meson.com/
5794 T:      git git://anongit.freedesktop.org/drm/drm-misc
5795 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5796 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5797 F:      Documentation/gpu/meson.rst
5798 F:      drivers/gpu/drm/meson/
5799
5800 DRM DRIVERS FOR ATMEL HLCDC
5801 M:      Sam Ravnborg <sam@ravnborg.org>
5802 M:      Boris Brezillon <bbrezillon@kernel.org>
5803 L:      dri-devel@lists.freedesktop.org
5804 S:      Supported
5805 T:      git git://anongit.freedesktop.org/drm/drm-misc
5806 F:      Documentation/devicetree/bindings/display/atmel/
5807 F:      drivers/gpu/drm/atmel-hlcdc/
5808
5809 DRM DRIVERS FOR BRIDGE CHIPS
5810 M:      Andrzej Hajda <a.hajda@samsung.com>
5811 M:      Neil Armstrong <narmstrong@baylibre.com>
5812 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5813 R:      Jonas Karlman <jonas@kwiboo.se>
5814 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5815 S:      Maintained
5816 T:      git git://anongit.freedesktop.org/drm/drm-misc
5817 F:      drivers/gpu/drm/bridge/
5818
5819 DRM DRIVERS FOR EXYNOS
5820 M:      Inki Dae <inki.dae@samsung.com>
5821 M:      Joonyoung Shim <jy0922.shim@samsung.com>
5822 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
5823 M:      Kyungmin Park <kyungmin.park@samsung.com>
5824 L:      dri-devel@lists.freedesktop.org
5825 S:      Supported
5826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5827 F:      Documentation/devicetree/bindings/display/exynos/
5828 F:      drivers/gpu/drm/exynos/
5829 F:      include/uapi/drm/exynos_drm.h
5830
5831 DRM DRIVERS FOR FREESCALE DCU
5832 M:      Stefan Agner <stefan@agner.ch>
5833 M:      Alison Wang <alison.wang@nxp.com>
5834 L:      dri-devel@lists.freedesktop.org
5835 S:      Supported
5836 T:      git git://anongit.freedesktop.org/drm/drm-misc
5837 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5838 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5839 F:      drivers/gpu/drm/fsl-dcu/
5840
5841 DRM DRIVERS FOR FREESCALE IMX
5842 M:      Philipp Zabel <p.zabel@pengutronix.de>
5843 L:      dri-devel@lists.freedesktop.org
5844 S:      Maintained
5845 F:      Documentation/devicetree/bindings/display/imx/
5846 F:      drivers/gpu/drm/imx/
5847 F:      drivers/gpu/ipu-v3/
5848
5849 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5850 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5851 L:      dri-devel@lists.freedesktop.org
5852 S:      Maintained
5853 T:      git git://github.com/patjak/drm-gma500
5854 F:      drivers/gpu/drm/gma500/
5855
5856 DRM DRIVERS FOR HISILICON
5857 M:      Xinliang Liu <xinliang.liu@linaro.org>
5858 M:      Tian Tao  <tiantao6@hisilicon.com>
5859 R:      John Stultz <john.stultz@linaro.org>
5860 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
5861 R:      Chen Feng <puck.chen@hisilicon.com>
5862 L:      dri-devel@lists.freedesktop.org
5863 S:      Maintained
5864 T:      git git://anongit.freedesktop.org/drm/drm-misc
5865 F:      Documentation/devicetree/bindings/display/hisilicon/
5866 F:      drivers/gpu/drm/hisilicon/
5867
5868 DRM DRIVERS FOR LIMA
5869 M:      Qiang Yu <yuq825@gmail.com>
5870 L:      dri-devel@lists.freedesktop.org
5871 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
5872 S:      Maintained
5873 T:      git git://anongit.freedesktop.org/drm/drm-misc
5874 F:      drivers/gpu/drm/lima/
5875 F:      include/uapi/drm/lima_drm.h
5876
5877 DRM DRIVERS FOR MEDIATEK
5878 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
5879 M:      Philipp Zabel <p.zabel@pengutronix.de>
5880 L:      dri-devel@lists.freedesktop.org
5881 S:      Supported
5882 F:      Documentation/devicetree/bindings/display/mediatek/
5883 F:      drivers/gpu/drm/mediatek/
5884 F:      drivers/phy/mediatek/phy-mtk-hdmi*
5885 F:      drivers/phy/mediatek/phy-mtk-mipi*
5886
5887 DRM DRIVERS FOR NVIDIA TEGRA
5888 M:      Thierry Reding <thierry.reding@gmail.com>
5889 L:      dri-devel@lists.freedesktop.org
5890 L:      linux-tegra@vger.kernel.org
5891 S:      Supported
5892 T:      git git://anongit.freedesktop.org/tegra/linux.git
5893 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5894 F:      drivers/gpu/drm/tegra/
5895 F:      drivers/gpu/host1x/
5896 F:      include/linux/host1x.h
5897 F:      include/uapi/drm/tegra_drm.h
5898
5899 DRM DRIVERS FOR RENESAS
5900 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5901 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5902 L:      dri-devel@lists.freedesktop.org
5903 L:      linux-renesas-soc@vger.kernel.org
5904 S:      Supported
5905 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5906 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5907 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
5908 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5909 F:      drivers/gpu/drm/rcar-du/
5910 F:      drivers/gpu/drm/shmobile/
5911 F:      include/linux/platform_data/shmob_drm.h
5912
5913 DRM DRIVERS FOR ROCKCHIP
5914 M:      Sandy Huang <hjc@rock-chips.com>
5915 M:      Heiko Stübner <heiko@sntech.de>
5916 L:      dri-devel@lists.freedesktop.org
5917 S:      Maintained
5918 T:      git git://anongit.freedesktop.org/drm/drm-misc
5919 F:      Documentation/devicetree/bindings/display/rockchip/
5920 F:      drivers/gpu/drm/rockchip/
5921
5922 DRM DRIVERS FOR STI
5923 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5924 M:      Vincent Abriou <vincent.abriou@st.com>
5925 L:      dri-devel@lists.freedesktop.org
5926 S:      Maintained
5927 T:      git git://anongit.freedesktop.org/drm/drm-misc
5928 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5929 F:      drivers/gpu/drm/sti
5930
5931 DRM DRIVERS FOR STM
5932 M:      Yannick Fertre <yannick.fertre@st.com>
5933 M:      Philippe Cornu <philippe.cornu@st.com>
5934 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5935 M:      Vincent Abriou <vincent.abriou@st.com>
5936 L:      dri-devel@lists.freedesktop.org
5937 S:      Maintained
5938 T:      git git://anongit.freedesktop.org/drm/drm-misc
5939 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5940 F:      drivers/gpu/drm/stm
5941
5942 DRM DRIVERS FOR TI KEYSTONE
5943 M:      Jyri Sarha <jsarha@ti.com>
5944 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5945 L:      dri-devel@lists.freedesktop.org
5946 S:      Maintained
5947 T:      git git://anongit.freedesktop.org/drm/drm-misc
5948 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5949 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5950 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5951 F:      drivers/gpu/drm/tidss/
5952
5953 DRM DRIVERS FOR TI LCDC
5954 M:      Jyri Sarha <jsarha@ti.com>
5955 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5956 L:      dri-devel@lists.freedesktop.org
5957 S:      Maintained
5958 F:      Documentation/devicetree/bindings/display/tilcdc/
5959 F:      drivers/gpu/drm/tilcdc/
5960
5961 DRM DRIVERS FOR TI OMAP
5962 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5963 L:      dri-devel@lists.freedesktop.org
5964 S:      Maintained
5965 F:      Documentation/devicetree/bindings/display/ti/
5966 F:      drivers/gpu/drm/omapdrm/
5967
5968 DRM DRIVERS FOR V3D
5969 M:      Eric Anholt <eric@anholt.net>
5970 S:      Supported
5971 T:      git git://anongit.freedesktop.org/drm/drm-misc
5972 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5973 F:      drivers/gpu/drm/v3d/
5974 F:      include/uapi/drm/v3d_drm.h
5975
5976 DRM DRIVERS FOR VC4
5977 M:      Eric Anholt <eric@anholt.net>
5978 M:      Maxime Ripard <mripard@kernel.org>
5979 S:      Supported
5980 T:      git git://github.com/anholt/linux
5981 T:      git git://anongit.freedesktop.org/drm/drm-misc
5982 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
5983 F:      drivers/gpu/drm/vc4/
5984 F:      include/uapi/drm/vc4_drm.h
5985
5986 DRM DRIVERS FOR VIVANTE GPU IP
5987 M:      Lucas Stach <l.stach@pengutronix.de>
5988 R:      Russell King <linux+etnaviv@armlinux.org.uk>
5989 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
5990 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
5991 L:      dri-devel@lists.freedesktop.org
5992 S:      Maintained
5993 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
5994 F:      drivers/gpu/drm/etnaviv/
5995 F:      include/uapi/drm/etnaviv_drm.h
5996
5997 DRM DRIVERS FOR XEN
5998 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
5999 L:      dri-devel@lists.freedesktop.org
6000 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6001 S:      Supported
6002 T:      git git://anongit.freedesktop.org/drm/drm-misc
6003 F:      Documentation/gpu/xen-front.rst
6004 F:      drivers/gpu/drm/xen/
6005
6006 DRM DRIVERS FOR XILINX
6007 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6008 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6009 L:      dri-devel@lists.freedesktop.org
6010 S:      Maintained
6011 T:      git git://anongit.freedesktop.org/drm/drm-misc
6012 F:      Documentation/devicetree/bindings/display/xlnx/
6013 F:      drivers/gpu/drm/xlnx/
6014
6015 DRM DRIVERS FOR ZTE ZX
6016 M:      Shawn Guo <shawnguo@kernel.org>
6017 L:      dri-devel@lists.freedesktop.org
6018 S:      Maintained
6019 T:      git git://anongit.freedesktop.org/drm/drm-misc
6020 F:      Documentation/devicetree/bindings/display/zte,vou.txt
6021 F:      drivers/gpu/drm/zte/
6022
6023 DRM PANEL DRIVERS
6024 M:      Thierry Reding <thierry.reding@gmail.com>
6025 R:      Sam Ravnborg <sam@ravnborg.org>
6026 L:      dri-devel@lists.freedesktop.org
6027 S:      Maintained
6028 T:      git git://anongit.freedesktop.org/drm/drm-misc
6029 F:      Documentation/devicetree/bindings/display/panel/
6030 F:      drivers/gpu/drm/drm_panel.c
6031 F:      drivers/gpu/drm/panel/
6032 F:      include/drm/drm_panel.h
6033
6034 DRM TTM SUBSYSTEM
6035 M:      Christian Koenig <christian.koenig@amd.com>
6036 M:      Huang Rui <ray.huang@amd.com>
6037 L:      dri-devel@lists.freedesktop.org
6038 S:      Maintained
6039 T:      git git://people.freedesktop.org/~agd5f/linux
6040 F:      drivers/gpu/drm/ttm/
6041 F:      include/drm/ttm/
6042
6043 DSBR100 USB FM RADIO DRIVER
6044 M:      Alexey Klimov <klimov.linux@gmail.com>
6045 L:      linux-media@vger.kernel.org
6046 S:      Maintained
6047 T:      git git://linuxtv.org/media_tree.git
6048 F:      drivers/media/radio/dsbr100.c
6049
6050 DT3155 MEDIA DRIVER
6051 M:      Hans Verkuil <hverkuil@xs4all.nl>
6052 L:      linux-media@vger.kernel.org
6053 S:      Odd Fixes
6054 W:      https://linuxtv.org
6055 T:      git git://linuxtv.org/media_tree.git
6056 F:      drivers/media/pci/dt3155/
6057
6058 DVB_USB_AF9015 MEDIA DRIVER
6059 M:      Antti Palosaari <crope@iki.fi>
6060 L:      linux-media@vger.kernel.org
6061 S:      Maintained
6062 W:      https://linuxtv.org
6063 W:      http://palosaari.fi/linux/
6064 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6065 T:      git git://linuxtv.org/anttip/media_tree.git
6066 F:      drivers/media/usb/dvb-usb-v2/af9015*
6067
6068 DVB_USB_AF9035 MEDIA DRIVER
6069 M:      Antti Palosaari <crope@iki.fi>
6070 L:      linux-media@vger.kernel.org
6071 S:      Maintained
6072 W:      https://linuxtv.org
6073 W:      http://palosaari.fi/linux/
6074 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6075 T:      git git://linuxtv.org/anttip/media_tree.git
6076 F:      drivers/media/usb/dvb-usb-v2/af9035*
6077
6078 DVB_USB_ANYSEE MEDIA DRIVER
6079 M:      Antti Palosaari <crope@iki.fi>
6080 L:      linux-media@vger.kernel.org
6081 S:      Maintained
6082 W:      https://linuxtv.org
6083 W:      http://palosaari.fi/linux/
6084 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6085 T:      git git://linuxtv.org/anttip/media_tree.git
6086 F:      drivers/media/usb/dvb-usb-v2/anysee*
6087
6088 DVB_USB_AU6610 MEDIA DRIVER
6089 M:      Antti Palosaari <crope@iki.fi>
6090 L:      linux-media@vger.kernel.org
6091 S:      Maintained
6092 W:      https://linuxtv.org
6093 W:      http://palosaari.fi/linux/
6094 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6095 T:      git git://linuxtv.org/anttip/media_tree.git
6096 F:      drivers/media/usb/dvb-usb-v2/au6610*
6097
6098 DVB_USB_CE6230 MEDIA DRIVER
6099 M:      Antti Palosaari <crope@iki.fi>
6100 L:      linux-media@vger.kernel.org
6101 S:      Maintained
6102 W:      https://linuxtv.org
6103 W:      http://palosaari.fi/linux/
6104 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6105 T:      git git://linuxtv.org/anttip/media_tree.git
6106 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6107
6108 DVB_USB_CXUSB MEDIA DRIVER
6109 M:      Michael Krufky <mkrufky@linuxtv.org>
6110 L:      linux-media@vger.kernel.org
6111 S:      Maintained
6112 W:      https://linuxtv.org
6113 W:      http://github.com/mkrufky
6114 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6115 T:      git git://linuxtv.org/media_tree.git
6116 F:      drivers/media/usb/dvb-usb/cxusb*
6117
6118 DVB_USB_EC168 MEDIA DRIVER
6119 M:      Antti Palosaari <crope@iki.fi>
6120 L:      linux-media@vger.kernel.org
6121 S:      Maintained
6122 W:      https://linuxtv.org
6123 W:      http://palosaari.fi/linux/
6124 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6125 T:      git git://linuxtv.org/anttip/media_tree.git
6126 F:      drivers/media/usb/dvb-usb-v2/ec168*
6127
6128 DVB_USB_GL861 MEDIA DRIVER
6129 M:      Antti Palosaari <crope@iki.fi>
6130 L:      linux-media@vger.kernel.org
6131 S:      Maintained
6132 W:      https://linuxtv.org
6133 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6134 T:      git git://linuxtv.org/anttip/media_tree.git
6135 F:      drivers/media/usb/dvb-usb-v2/gl861*
6136
6137 DVB_USB_MXL111SF MEDIA DRIVER
6138 M:      Michael Krufky <mkrufky@linuxtv.org>
6139 L:      linux-media@vger.kernel.org
6140 S:      Maintained
6141 W:      https://linuxtv.org
6142 W:      http://github.com/mkrufky
6143 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6144 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6145 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6146
6147 DVB_USB_RTL28XXU MEDIA DRIVER
6148 M:      Antti Palosaari <crope@iki.fi>
6149 L:      linux-media@vger.kernel.org
6150 S:      Maintained
6151 W:      https://linuxtv.org
6152 W:      http://palosaari.fi/linux/
6153 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6154 T:      git git://linuxtv.org/anttip/media_tree.git
6155 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6156
6157 DVB_USB_V2 MEDIA DRIVER
6158 M:      Antti Palosaari <crope@iki.fi>
6159 L:      linux-media@vger.kernel.org
6160 S:      Maintained
6161 W:      https://linuxtv.org
6162 W:      http://palosaari.fi/linux/
6163 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6164 T:      git git://linuxtv.org/anttip/media_tree.git
6165 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6166 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6167
6168 DYNAMIC DEBUG
6169 M:      Jason Baron <jbaron@akamai.com>
6170 S:      Maintained
6171 F:      include/linux/dynamic_debug.h
6172 F:      lib/dynamic_debug.c
6173
6174 DYNAMIC INTERRUPT MODERATION
6175 M:      Tal Gilboa <talgi@nvidia.com>
6176 S:      Maintained
6177 F:      Documentation/networking/net_dim.rst
6178 F:      include/linux/dim.h
6179 F:      lib/dim/
6180
6181 DZ DECSTATION DZ11 SERIAL DRIVER
6182 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
6183 S:      Maintained
6184 F:      drivers/tty/serial/dz.*
6185
6186 E3X0 POWER BUTTON DRIVER
6187 M:      Moritz Fischer <moritz.fischer@ettus.com>
6188 L:      usrp-users@lists.ettus.com
6189 S:      Supported
6190 W:      http://www.ettus.com
6191 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6192 F:      drivers/input/misc/e3x0-button.c
6193
6194 E4000 MEDIA DRIVER
6195 M:      Antti Palosaari <crope@iki.fi>
6196 L:      linux-media@vger.kernel.org
6197 S:      Maintained
6198 W:      https://linuxtv.org
6199 W:      http://palosaari.fi/linux/
6200 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6201 T:      git git://linuxtv.org/anttip/media_tree.git
6202 F:      drivers/media/tuners/e4000*
6203
6204 EARTH_PT1 MEDIA DRIVER
6205 M:      Akihiro Tsukada <tskd08@gmail.com>
6206 L:      linux-media@vger.kernel.org
6207 S:      Odd Fixes
6208 F:      drivers/media/pci/pt1/
6209
6210 EARTH_PT3 MEDIA DRIVER
6211 M:      Akihiro Tsukada <tskd08@gmail.com>
6212 L:      linux-media@vger.kernel.org
6213 S:      Odd Fixes
6214 F:      drivers/media/pci/pt3/
6215
6216 EC100 MEDIA DRIVER
6217 M:      Antti Palosaari <crope@iki.fi>
6218 L:      linux-media@vger.kernel.org
6219 S:      Maintained
6220 W:      https://linuxtv.org
6221 W:      http://palosaari.fi/linux/
6222 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6223 T:      git git://linuxtv.org/anttip/media_tree.git
6224 F:      drivers/media/dvb-frontends/ec100*
6225
6226 ECRYPT FILE SYSTEM
6227 M:      Tyler Hicks <code@tyhicks.com>
6228 L:      ecryptfs@vger.kernel.org
6229 S:      Odd Fixes
6230 W:      http://ecryptfs.org
6231 W:      https://launchpad.net/ecryptfs
6232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6233 F:      Documentation/filesystems/ecryptfs.rst
6234 F:      fs/ecryptfs/
6235
6236 EDAC-AMD64
6237 M:      Borislav Petkov <bp@alien8.de>
6238 L:      linux-edac@vger.kernel.org
6239 S:      Maintained
6240 F:      drivers/edac/amd64_edac*
6241
6242 EDAC-ARMADA
6243 M:      Jan Luebbe <jlu@pengutronix.de>
6244 L:      linux-edac@vger.kernel.org
6245 S:      Maintained
6246 F:      drivers/edac/armada_xp_*
6247
6248 EDAC-AST2500
6249 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6250 S:      Supported
6251 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6252 F:      drivers/edac/aspeed_edac.c
6253
6254 EDAC-BLUEFIELD
6255 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6256 S:      Supported
6257 F:      drivers/edac/bluefield_edac.c
6258
6259 EDAC-CALXEDA
6260 M:      Andre Przywara <andre.przywara@arm.com>
6261 L:      linux-edac@vger.kernel.org
6262 S:      Maintained
6263 F:      drivers/edac/highbank*
6264
6265 EDAC-CAVIUM OCTEON
6266 M:      Ralf Baechle <ralf@linux-mips.org>
6267 L:      linux-edac@vger.kernel.org
6268 L:      linux-mips@vger.kernel.org
6269 S:      Supported
6270 F:      drivers/edac/octeon_edac*
6271
6272 EDAC-CAVIUM THUNDERX
6273 M:      Robert Richter <rric@kernel.org>
6274 L:      linux-edac@vger.kernel.org
6275 S:      Odd Fixes
6276 F:      drivers/edac/thunderx_edac*
6277
6278 EDAC-CORE
6279 M:      Borislav Petkov <bp@alien8.de>
6280 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6281 M:      Tony Luck <tony.luck@intel.com>
6282 R:      James Morse <james.morse@arm.com>
6283 R:      Robert Richter <rric@kernel.org>
6284 L:      linux-edac@vger.kernel.org
6285 S:      Supported
6286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6287 F:      Documentation/admin-guide/ras.rst
6288 F:      Documentation/driver-api/edac.rst
6289 F:      drivers/edac/
6290 F:      include/linux/edac.h
6291
6292 EDAC-DMC520
6293 M:      Lei Wang <lewan@microsoft.com>
6294 L:      linux-edac@vger.kernel.org
6295 S:      Supported
6296 F:      drivers/edac/dmc520_edac.c
6297
6298 EDAC-E752X
6299 M:      Mark Gross <mark.gross@intel.com>
6300 L:      linux-edac@vger.kernel.org
6301 S:      Maintained
6302 F:      drivers/edac/e752x_edac.c
6303
6304 EDAC-E7XXX
6305 L:      linux-edac@vger.kernel.org
6306 S:      Maintained
6307 F:      drivers/edac/e7xxx_edac.c
6308
6309 EDAC-FSL_DDR
6310 M:      York Sun <york.sun@nxp.com>
6311 L:      linux-edac@vger.kernel.org
6312 S:      Maintained
6313 F:      drivers/edac/fsl_ddr_edac.*
6314
6315 EDAC-GHES
6316 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6317 L:      linux-edac@vger.kernel.org
6318 S:      Maintained
6319 F:      drivers/edac/ghes_edac.c
6320
6321 EDAC-I10NM
6322 M:      Tony Luck <tony.luck@intel.com>
6323 L:      linux-edac@vger.kernel.org
6324 S:      Maintained
6325 F:      drivers/edac/i10nm_base.c
6326
6327 EDAC-I3000
6328 L:      linux-edac@vger.kernel.org
6329 S:      Orphan
6330 F:      drivers/edac/i3000_edac.c
6331
6332 EDAC-I5000
6333 L:      linux-edac@vger.kernel.org
6334 S:      Maintained
6335 F:      drivers/edac/i5000_edac.c
6336
6337 EDAC-I5400
6338 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6339 L:      linux-edac@vger.kernel.org
6340 S:      Maintained
6341 F:      drivers/edac/i5400_edac.c
6342
6343 EDAC-I7300
6344 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6345 L:      linux-edac@vger.kernel.org
6346 S:      Maintained
6347 F:      drivers/edac/i7300_edac.c
6348
6349 EDAC-I7CORE
6350 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6351 L:      linux-edac@vger.kernel.org
6352 S:      Maintained
6353 F:      drivers/edac/i7core_edac.c
6354
6355 EDAC-I82443BXGX
6356 M:      Tim Small <tim@buttersideup.com>
6357 L:      linux-edac@vger.kernel.org
6358 S:      Maintained
6359 F:      drivers/edac/i82443bxgx_edac.c
6360
6361 EDAC-I82975X
6362 M:      "Arvind R." <arvino55@gmail.com>
6363 L:      linux-edac@vger.kernel.org
6364 S:      Maintained
6365 F:      drivers/edac/i82975x_edac.c
6366
6367 EDAC-IE31200
6368 M:      Jason Baron <jbaron@akamai.com>
6369 L:      linux-edac@vger.kernel.org
6370 S:      Maintained
6371 F:      drivers/edac/ie31200_edac.c
6372
6373 EDAC-MPC85XX
6374 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6375 L:      linux-edac@vger.kernel.org
6376 S:      Maintained
6377 F:      drivers/edac/mpc85xx_edac.[ch]
6378
6379 EDAC-PASEMI
6380 M:      Egor Martovetsky <egor@pasemi.com>
6381 L:      linux-edac@vger.kernel.org
6382 S:      Maintained
6383 F:      drivers/edac/pasemi_edac.c
6384
6385 EDAC-PND2
6386 M:      Tony Luck <tony.luck@intel.com>
6387 L:      linux-edac@vger.kernel.org
6388 S:      Maintained
6389 F:      drivers/edac/pnd2_edac.[ch]
6390
6391 EDAC-QCOM
6392 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6393 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6394 L:      linux-arm-msm@vger.kernel.org
6395 L:      linux-edac@vger.kernel.org
6396 S:      Maintained
6397 F:      drivers/edac/qcom_edac.c
6398
6399 EDAC-R82600
6400 M:      Tim Small <tim@buttersideup.com>
6401 L:      linux-edac@vger.kernel.org
6402 S:      Maintained
6403 F:      drivers/edac/r82600_edac.c
6404
6405 EDAC-SBRIDGE
6406 M:      Tony Luck <tony.luck@intel.com>
6407 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6408 L:      linux-edac@vger.kernel.org
6409 S:      Maintained
6410 F:      drivers/edac/sb_edac.c
6411
6412 EDAC-SIFIVE
6413 M:      Yash Shah <yash.shah@sifive.com>
6414 L:      linux-edac@vger.kernel.org
6415 S:      Supported
6416 F:      drivers/edac/sifive_edac.c
6417
6418 EDAC-SKYLAKE
6419 M:      Tony Luck <tony.luck@intel.com>
6420 L:      linux-edac@vger.kernel.org
6421 S:      Maintained
6422 F:      drivers/edac/skx_*.c
6423
6424 EDAC-TI
6425 M:      Tero Kristo <t-kristo@ti.com>
6426 L:      linux-edac@vger.kernel.org
6427 S:      Maintained
6428 F:      drivers/edac/ti_edac.c
6429
6430 EDIROL UA-101/UA-1000 DRIVER
6431 M:      Clemens Ladisch <clemens@ladisch.de>
6432 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6433 S:      Maintained
6434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6435 F:      sound/usb/misc/ua101.c
6436
6437 EFI TEST DRIVER
6438 M:      Ivan Hu <ivan.hu@canonical.com>
6439 M:      Ard Biesheuvel <ardb@kernel.org>
6440 L:      linux-efi@vger.kernel.org
6441 S:      Maintained
6442 F:      drivers/firmware/efi/test/
6443
6444 EFI VARIABLE FILESYSTEM
6445 M:      Matthew Garrett <matthew.garrett@nebula.com>
6446 M:      Jeremy Kerr <jk@ozlabs.org>
6447 M:      Ard Biesheuvel <ardb@kernel.org>
6448 L:      linux-efi@vger.kernel.org
6449 S:      Maintained
6450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6451 F:      fs/efivarfs/
6452
6453 EFIFB FRAMEBUFFER DRIVER
6454 M:      Peter Jones <pjones@redhat.com>
6455 L:      linux-fbdev@vger.kernel.org
6456 S:      Maintained
6457 F:      drivers/video/fbdev/efifb.c
6458
6459 EFS FILESYSTEM
6460 S:      Orphan
6461 W:      http://aeschi.ch.eu.org/efs/
6462 F:      fs/efs/
6463
6464 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6465 M:      Douglas Miller <dougmill@linux.ibm.com>
6466 L:      netdev@vger.kernel.org
6467 S:      Maintained
6468 F:      drivers/net/ethernet/ibm/ehea/
6469
6470 EM28XX VIDEO4LINUX DRIVER
6471 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6472 L:      linux-media@vger.kernel.org
6473 S:      Maintained
6474 W:      https://linuxtv.org
6475 T:      git git://linuxtv.org/media_tree.git
6476 F:      Documentation/admin-guide/media/em28xx*
6477 F:      drivers/media/usb/em28xx/
6478
6479 EMBEDDED LINUX
6480 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6481 M:      Matt Mackall <mpm@selenic.com>
6482 M:      David Woodhouse <dwmw2@infradead.org>
6483 L:      linux-embedded@vger.kernel.org
6484 S:      Maintained
6485
6486 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6487 M:      Adrian Hunter <adrian.hunter@intel.com>
6488 M:      Ritesh Harjani <riteshh@codeaurora.org>
6489 M:      Asutosh Das <asutoshd@codeaurora.org>
6490 L:      linux-mmc@vger.kernel.org
6491 S:      Maintained
6492 F:      drivers/mmc/host/cqhci*
6493
6494 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6495 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6496 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6497 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6498 L:      linux-scsi@vger.kernel.org
6499 S:      Supported
6500 W:      http://www.broadcom.com
6501 F:      drivers/scsi/be2iscsi/
6502
6503 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6504 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6505 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6506 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6507 L:      netdev@vger.kernel.org
6508 S:      Supported
6509 W:      http://www.emulex.com
6510 F:      drivers/net/ethernet/emulex/benet/
6511
6512 EMULEX ONECONNECT ROCE DRIVER
6513 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6514 M:      Devesh Sharma <devesh.sharma@broadcom.com>
6515 L:      linux-rdma@vger.kernel.org
6516 S:      Odd Fixes
6517 W:      http://www.broadcom.com
6518 F:      drivers/infiniband/hw/ocrdma/
6519 F:      include/uapi/rdma/ocrdma-abi.h
6520
6521 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6522 M:      James Smart <james.smart@broadcom.com>
6523 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6524 L:      linux-scsi@vger.kernel.org
6525 S:      Supported
6526 W:      http://www.broadcom.com
6527 F:      drivers/scsi/lpfc/
6528
6529 ENE CB710 FLASH CARD READER DRIVER
6530 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6531 S:      Maintained
6532 F:      drivers/misc/cb710/
6533 F:      drivers/mmc/host/cb710-mmc.*
6534 F:      include/linux/cb710.h
6535
6536 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6537 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6538 S:      Maintained
6539 F:      drivers/media/rc/ene_ir.*
6540
6541 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6542 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6543 L:      linuxppc-dev@lists.ozlabs.org
6544 S:      Maintained
6545 F:      drivers/tty/ehv_bytechan.c
6546
6547 EPSON S1D13XXX FRAMEBUFFER DRIVER
6548 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6549 S:      Maintained
6550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6551 F:      drivers/video/fbdev/s1d13xxxfb.c
6552 F:      include/video/s1d13xxxfb.h
6553
6554 EROFS FILE SYSTEM
6555 M:      Gao Xiang <xiang@kernel.org>
6556 M:      Chao Yu <yuchao0@huawei.com>
6557 L:      linux-erofs@lists.ozlabs.org
6558 S:      Maintained
6559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6560 F:      Documentation/filesystems/erofs.rst
6561 F:      fs/erofs/
6562 F:      include/trace/events/erofs.h
6563
6564 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6565 M:      Jeff Layton <jlayton@kernel.org>
6566 S:      Maintained
6567 F:      include/linux/errseq.h
6568 F:      lib/errseq.c
6569
6570 ET131X NETWORK DRIVER
6571 M:      Mark Einon <mark.einon@gmail.com>
6572 S:      Odd Fixes
6573 F:      drivers/net/ethernet/agere/
6574
6575 ETHERNET BRIDGE
6576 M:      Roopa Prabhu <roopa@nvidia.com>
6577 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
6578 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6579 L:      netdev@vger.kernel.org
6580 S:      Maintained
6581 W:      http://www.linuxfoundation.org/en/Net:Bridge
6582 F:      include/linux/netfilter_bridge/
6583 F:      net/bridge/
6584
6585 ETHERNET PHY LIBRARY
6586 M:      Andrew Lunn <andrew@lunn.ch>
6587 M:      Heiner Kallweit <hkallweit1@gmail.com>
6588 R:      Russell King <linux@armlinux.org.uk>
6589 L:      netdev@vger.kernel.org
6590 S:      Maintained
6591 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6592 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6593 F:      Documentation/devicetree/bindings/net/mdio*
6594 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6595 F:      Documentation/networking/phy.rst
6596 F:      drivers/net/mdio/
6597 F:      drivers/net/mdio/of_mdio.c
6598 F:      drivers/net/pcs/
6599 F:      drivers/net/phy/
6600 F:      drivers/of/of_net.c
6601 F:      include/dt-bindings/net/qca-ar803x.h
6602 F:      include/linux/*mdio*.h
6603 F:      include/linux/mdio/*.h
6604 F:      include/linux/of_net.h
6605 F:      include/linux/phy.h
6606 F:      include/linux/phy_fixed.h
6607 F:      include/linux/platform_data/mdio-bcm-unimac.h
6608 F:      include/linux/platform_data/mdio-gpio.h
6609 F:      include/trace/events/mdio.h
6610 F:      include/uapi/linux/mdio.h
6611 F:      include/uapi/linux/mii.h
6612
6613 EXFAT FILE SYSTEM
6614 M:      Namjae Jeon <namjae.jeon@samsung.com>
6615 M:      Sungjong Seo <sj1557.seo@samsung.com>
6616 L:      linux-fsdevel@vger.kernel.org
6617 S:      Maintained
6618 F:      fs/exfat/
6619
6620 EXT2 FILE SYSTEM
6621 M:      Jan Kara <jack@suse.com>
6622 L:      linux-ext4@vger.kernel.org
6623 S:      Maintained
6624 F:      Documentation/filesystems/ext2.rst
6625 F:      fs/ext2/
6626 F:      include/linux/ext2*
6627
6628 EXT4 FILE SYSTEM
6629 M:      "Theodore Ts'o" <tytso@mit.edu>
6630 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6631 L:      linux-ext4@vger.kernel.org
6632 S:      Maintained
6633 W:      http://ext4.wiki.kernel.org
6634 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6636 F:      Documentation/filesystems/ext4/
6637 F:      fs/ext4/
6638 F:      include/trace/events/ext4.h
6639
6640 Extended Verification Module (EVM)
6641 M:      Mimi Zohar <zohar@linux.ibm.com>
6642 L:      linux-integrity@vger.kernel.org
6643 S:      Supported
6644 F:      security/integrity/evm/
6645
6646 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6647 M:      Ard Biesheuvel <ardb@kernel.org>
6648 L:      linux-efi@vger.kernel.org
6649 S:      Maintained
6650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6651 F:      Documentation/admin-guide/efi-stub.rst
6652 F:      arch/*/include/asm/efi.h
6653 F:      arch/*/kernel/efi.c
6654 F:      arch/arm/boot/compressed/efi-header.S
6655 F:      arch/arm64/kernel/efi-entry.S
6656 F:      arch/x86/platform/efi/
6657 F:      drivers/firmware/efi/
6658 F:      include/linux/efi*.h
6659
6660 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6661 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6662 M:      Chanwoo Choi <cw00.choi@samsung.com>
6663 L:      linux-kernel@vger.kernel.org
6664 S:      Maintained
6665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6666 F:      Documentation/devicetree/bindings/extcon/
6667 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6668 F:      drivers/extcon/
6669 F:      include/linux/extcon.h
6670 F:      include/linux/extcon/
6671
6672 EXTRA BOOT CONFIG
6673 M:      Masami Hiramatsu <mhiramat@kernel.org>
6674 S:      Maintained
6675 F:      Documentation/admin-guide/bootconfig.rst
6676 F:      fs/proc/bootconfig.c
6677 F:      include/linux/bootconfig.h
6678 F:      lib/bootconfig.c
6679 F:      tools/bootconfig/*
6680 F:      tools/bootconfig/scripts/*
6681
6682 EXYNOS DP DRIVER
6683 M:      Jingoo Han <jingoohan1@gmail.com>
6684 L:      dri-devel@lists.freedesktop.org
6685 S:      Maintained
6686 F:      drivers/gpu/drm/exynos/exynos_dp*
6687
6688 EXYNOS SYSMMU (IOMMU) driver
6689 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6690 L:      iommu@lists.linux-foundation.org
6691 S:      Maintained
6692 F:      drivers/iommu/exynos-iommu.c
6693
6694 F2FS FILE SYSTEM
6695 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6696 M:      Chao Yu <yuchao0@huawei.com>
6697 L:      linux-f2fs-devel@lists.sourceforge.net
6698 S:      Maintained
6699 W:      https://f2fs.wiki.kernel.org/
6700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6701 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6702 F:      Documentation/filesystems/f2fs.rst
6703 F:      fs/f2fs/
6704 F:      include/linux/f2fs_fs.h
6705 F:      include/trace/events/f2fs.h
6706
6707 F71805F HARDWARE MONITORING DRIVER
6708 M:      Jean Delvare <jdelvare@suse.com>
6709 L:      linux-hwmon@vger.kernel.org
6710 S:      Maintained
6711 F:      Documentation/hwmon/f71805f.rst
6712 F:      drivers/hwmon/f71805f.c
6713
6714 FADDR2LINE
6715 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6716 S:      Maintained
6717 F:      scripts/faddr2line
6718
6719 FAILOVER MODULE
6720 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
6721 L:      netdev@vger.kernel.org
6722 S:      Supported
6723 F:      Documentation/networking/failover.rst
6724 F:      include/net/failover.h
6725 F:      net/core/failover.c
6726
6727 FANOTIFY
6728 M:      Jan Kara <jack@suse.cz>
6729 R:      Amir Goldstein <amir73il@gmail.com>
6730 L:      linux-fsdevel@vger.kernel.org
6731 S:      Maintained
6732 F:      fs/notify/fanotify/
6733 F:      include/linux/fanotify.h
6734 F:      include/uapi/linux/fanotify.h
6735
6736 FARSYNC SYNCHRONOUS DRIVER
6737 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
6738 S:      Supported
6739 W:      http://www.farsite.co.uk/
6740 F:      drivers/net/wan/farsync.*
6741
6742 FAULT INJECTION SUPPORT
6743 M:      Akinobu Mita <akinobu.mita@gmail.com>
6744 S:      Supported
6745 F:      Documentation/fault-injection/
6746 F:      lib/fault-inject.c
6747
6748 FBTFT Framebuffer drivers
6749 L:      dri-devel@lists.freedesktop.org
6750 L:      linux-fbdev@vger.kernel.org
6751 S:      Orphan
6752 F:      drivers/staging/fbtft/
6753
6754 FC0011 TUNER DRIVER
6755 M:      Michael Buesch <m@bues.ch>
6756 L:      linux-media@vger.kernel.org
6757 S:      Maintained
6758 F:      drivers/media/tuners/fc0011.c
6759 F:      drivers/media/tuners/fc0011.h
6760
6761 FC2580 MEDIA DRIVER
6762 M:      Antti Palosaari <crope@iki.fi>
6763 L:      linux-media@vger.kernel.org
6764 S:      Maintained
6765 W:      https://linuxtv.org
6766 W:      http://palosaari.fi/linux/
6767 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6768 T:      git git://linuxtv.org/anttip/media_tree.git
6769 F:      drivers/media/tuners/fc2580*
6770
6771 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6772 M:      Hannes Reinecke <hare@suse.de>
6773 L:      linux-scsi@vger.kernel.org
6774 S:      Supported
6775 W:      www.Open-FCoE.org
6776 F:      drivers/scsi/fcoe/
6777 F:      drivers/scsi/libfc/
6778 F:      include/scsi/fc/
6779 F:      include/scsi/libfc.h
6780 F:      include/scsi/libfcoe.h
6781 F:      include/uapi/scsi/fc/
6782
6783 FILE LOCKING (flock() and fcntl()/lockf())
6784 M:      Jeff Layton <jlayton@kernel.org>
6785 M:      "J. Bruce Fields" <bfields@fieldses.org>
6786 L:      linux-fsdevel@vger.kernel.org
6787 S:      Maintained
6788 F:      fs/fcntl.c
6789 F:      fs/locks.c
6790 F:      include/linux/fcntl.h
6791 F:      include/uapi/linux/fcntl.h
6792
6793 FILESYSTEM DIRECT ACCESS (DAX)
6794 M:      Dan Williams <dan.j.williams@intel.com>
6795 R:      Matthew Wilcox <willy@infradead.org>
6796 R:      Jan Kara <jack@suse.cz>
6797 L:      linux-fsdevel@vger.kernel.org
6798 L:      linux-nvdimm@lists.01.org
6799 S:      Supported
6800 F:      fs/dax.c
6801 F:      include/linux/dax.h
6802 F:      include/trace/events/fs_dax.h
6803
6804 FILESYSTEMS (VFS and infrastructure)
6805 M:      Alexander Viro <viro@zeniv.linux.org.uk>
6806 L:      linux-fsdevel@vger.kernel.org
6807 S:      Maintained
6808 F:      fs/*
6809 F:      include/linux/fs.h
6810 F:      include/linux/fs_types.h
6811 F:      include/uapi/linux/fs.h
6812 F:      include/uapi/linux/openat2.h
6813
6814 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6815 M:      Riku Voipio <riku.voipio@iki.fi>
6816 L:      linux-hwmon@vger.kernel.org
6817 S:      Maintained
6818 F:      drivers/hwmon/f75375s.c
6819 F:      include/linux/f75375s.h
6820
6821 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6822 M:      Clemens Ladisch <clemens@ladisch.de>
6823 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
6824 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6825 S:      Maintained
6826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6827 F:      include/uapi/sound/firewire.h
6828 F:      sound/firewire/
6829
6830 FIREWIRE MEDIA DRIVERS (firedtv)
6831 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6832 L:      linux-media@vger.kernel.org
6833 L:      linux1394-devel@lists.sourceforge.net
6834 S:      Maintained
6835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6836 F:      drivers/media/firewire/
6837
6838 FIREWIRE SBP-2 TARGET
6839 M:      Chris Boot <bootc@bootc.net>
6840 L:      linux-scsi@vger.kernel.org
6841 L:      target-devel@vger.kernel.org
6842 L:      linux1394-devel@lists.sourceforge.net
6843 S:      Maintained
6844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6845 F:      drivers/target/sbp/
6846
6847 FIREWIRE SUBSYSTEM
6848 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6849 L:      linux1394-devel@lists.sourceforge.net
6850 S:      Maintained
6851 W:      http://ieee1394.wiki.kernel.org/
6852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6853 F:      drivers/firewire/
6854 F:      include/linux/firewire.h
6855 F:      include/uapi/linux/firewire*.h
6856 F:      tools/firewire/
6857
6858 FIRMWARE LOADER (request_firmware)
6859 M:      Luis Chamberlain <mcgrof@kernel.org>
6860 L:      linux-kernel@vger.kernel.org
6861 S:      Maintained
6862 F:      Documentation/firmware_class/
6863 F:      drivers/base/firmware_loader/
6864 F:      include/linux/firmware.h
6865
6866 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6867 M:      Joshua Morris <josh.h.morris@us.ibm.com>
6868 M:      Philip Kelleher <pjk1939@linux.ibm.com>
6869 S:      Maintained
6870 F:      drivers/block/rsxx/
6871
6872 FLEXTIMER FTM-QUADDEC DRIVER
6873 M:      Patrick Havelange <patrick.havelange@essensium.com>
6874 L:      linux-iio@vger.kernel.org
6875 S:      Maintained
6876 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6877 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6878 F:      drivers/counter/ftm-quaddec.c
6879
6880 FLOPPY DRIVER
6881 M:      Denis Efremov <efremov@linux.com>
6882 L:      linux-block@vger.kernel.org
6883 S:      Odd Fixes
6884 F:      drivers/block/floppy.c
6885
6886 FLYSKY FSIA6B RC RECEIVER
6887 M:      Markus Koch <markus@notsyncing.net>
6888 L:      linux-input@vger.kernel.org
6889 S:      Maintained
6890 F:      drivers/input/joystick/fsia6b.c
6891
6892 FORCEDETH GIGABIT ETHERNET DRIVER
6893 M:      Rain River <rain.1986.08.12@gmail.com>
6894 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
6895 L:      netdev@vger.kernel.org
6896 S:      Maintained
6897 F:      drivers/net/ethernet/nvidia/*
6898
6899 FPGA DFL DRIVERS
6900 M:      Wu Hao <hao.wu@intel.com>
6901 R:      Tom Rix <trix@redhat.com>
6902 L:      linux-fpga@vger.kernel.org
6903 S:      Maintained
6904 F:      Documentation/ABI/testing/sysfs-bus-dfl
6905 F:      Documentation/fpga/dfl.rst
6906 F:      drivers/fpga/dfl*
6907 F:      include/uapi/linux/fpga-dfl.h
6908
6909 FPGA MANAGER FRAMEWORK
6910 M:      Moritz Fischer <mdf@kernel.org>
6911 R:      Tom Rix <trix@redhat.com>
6912 L:      linux-fpga@vger.kernel.org
6913 S:      Maintained
6914 W:      http://www.rocketboards.org
6915 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6916 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6917 F:      Documentation/devicetree/bindings/fpga/
6918 F:      Documentation/driver-api/fpga/
6919 F:      Documentation/fpga/
6920 F:      drivers/fpga/
6921 F:      include/linux/fpga/
6922
6923 FPU EMULATOR
6924 M:      Bill Metzenthen <billm@melbpc.org.au>
6925 S:      Maintained
6926 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6927 F:      arch/x86/math-emu/
6928
6929 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
6930 L:      netdev@vger.kernel.org
6931 S:      Orphan
6932 F:      drivers/net/wan/dlci.c
6933 F:      drivers/net/wan/sdla.c
6934
6935 FRAMEBUFFER LAYER
6936 L:      dri-devel@lists.freedesktop.org
6937 L:      linux-fbdev@vger.kernel.org
6938 S:      Orphan
6939 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6940 T:      git git://anongit.freedesktop.org/drm/drm-misc
6941 F:      Documentation/fb/
6942 F:      drivers/video/
6943 F:      include/linux/fb.h
6944 F:      include/uapi/linux/fb.h
6945 F:      include/uapi/video/
6946 F:      include/video/
6947
6948 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6949 M:      Horia Geantă <horia.geanta@nxp.com>
6950 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
6951 L:      linux-crypto@vger.kernel.org
6952 S:      Maintained
6953 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6954 F:      drivers/crypto/caam/
6955
6956 FREESCALE COLDFIRE M5441X MMC DRIVER
6957 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
6958 L:      linux-mmc@vger.kernel.org
6959 S:      Maintained
6960 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
6961 F:      include/linux/platform_data/mmc-esdhc-mcf.h
6962
6963 FREESCALE DIU FRAMEBUFFER DRIVER
6964 M:      Timur Tabi <timur@kernel.org>
6965 L:      linux-fbdev@vger.kernel.org
6966 S:      Maintained
6967 F:      drivers/video/fbdev/fsl-diu-fb.*
6968
6969 FREESCALE DMA DRIVER
6970 M:      Li Yang <leoyang.li@nxp.com>
6971 M:      Zhang Wei <zw@zh-kernel.org>
6972 L:      linuxppc-dev@lists.ozlabs.org
6973 S:      Maintained
6974 F:      drivers/dma/fsldma.*
6975
6976 FREESCALE DSPI DRIVER
6977 M:      Vladimir Oltean <olteanv@gmail.com>
6978 L:      linux-spi@vger.kernel.org
6979 S:      Maintained
6980 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
6981 F:      drivers/spi/spi-fsl-dspi.c
6982 F:      include/linux/spi/spi-fsl-dspi.h
6983
6984 FREESCALE ENETC ETHERNET DRIVERS
6985 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6986 L:      netdev@vger.kernel.org
6987 S:      Maintained
6988 F:      drivers/net/ethernet/freescale/enetc/
6989
6990 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6991 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6992 L:      netdev@vger.kernel.org
6993 S:      Maintained
6994 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6995 F:      drivers/net/ethernet/freescale/gianfar*
6996
6997 FREESCALE GPMI NAND DRIVER
6998 M:      Han Xu <han.xu@nxp.com>
6999 L:      linux-mtd@lists.infradead.org
7000 S:      Maintained
7001 F:      drivers/mtd/nand/raw/gpmi-nand/*
7002
7003 FREESCALE I2C CPM DRIVER
7004 M:      Jochen Friedrich <jochen@scram.de>
7005 L:      linuxppc-dev@lists.ozlabs.org
7006 L:      linux-i2c@vger.kernel.org
7007 S:      Maintained
7008 F:      drivers/i2c/busses/i2c-cpm.c
7009
7010 FREESCALE IMX / MXC FEC DRIVER
7011 M:      Fugang Duan <fugang.duan@nxp.com>
7012 L:      netdev@vger.kernel.org
7013 S:      Maintained
7014 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
7015 F:      drivers/net/ethernet/freescale/fec.h
7016 F:      drivers/net/ethernet/freescale/fec_main.c
7017 F:      drivers/net/ethernet/freescale/fec_ptp.c
7018
7019 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7020 M:      Sascha Hauer <s.hauer@pengutronix.de>
7021 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7022 L:      linux-fbdev@vger.kernel.org
7023 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7024 S:      Maintained
7025 F:      drivers/video/fbdev/imxfb.c
7026 F:      include/linux/platform_data/video-imxfb.h
7027
7028 FREESCALE IMX DDR PMU DRIVER
7029 M:      Frank Li <Frank.li@nxp.com>
7030 L:      linux-arm-kernel@lists.infradead.org
7031 S:      Maintained
7032 F:      Documentation/admin-guide/perf/imx-ddr.rst
7033 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7034 F:      drivers/perf/fsl_imx8_ddr_perf.c
7035
7036 FREESCALE IMX I2C DRIVER
7037 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7038 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7039 L:      linux-i2c@vger.kernel.org
7040 S:      Maintained
7041 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7042 F:      drivers/i2c/busses/i2c-imx.c
7043
7044 FREESCALE IMX LPI2C DRIVER
7045 M:      Dong Aisheng <aisheng.dong@nxp.com>
7046 L:      linux-i2c@vger.kernel.org
7047 L:      linux-imx@nxp.com
7048 S:      Maintained
7049 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7050 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7051
7052 FREESCALE QORIQ DPAA ETHERNET DRIVER
7053 M:      Madalin Bucur <madalin.bucur@nxp.com>
7054 L:      netdev@vger.kernel.org
7055 S:      Maintained
7056 F:      drivers/net/ethernet/freescale/dpaa
7057
7058 FREESCALE QORIQ DPAA FMAN DRIVER
7059 M:      Madalin Bucur <madalin.bucur@nxp.com>
7060 L:      netdev@vger.kernel.org
7061 S:      Maintained
7062 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7063 F:      drivers/net/ethernet/freescale/fman
7064
7065 FREESCALE QORIQ PTP CLOCK DRIVER
7066 M:      Yangbo Lu <yangbo.lu@nxp.com>
7067 L:      netdev@vger.kernel.org
7068 S:      Maintained
7069 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7070 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7071 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7072 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7073 F:      drivers/ptp/ptp_qoriq.c
7074 F:      drivers/ptp/ptp_qoriq_debugfs.c
7075 F:      include/linux/fsl/ptp_qoriq.h
7076
7077 FREESCALE QUAD SPI DRIVER
7078 M:      Han Xu <han.xu@nxp.com>
7079 L:      linux-spi@vger.kernel.org
7080 S:      Maintained
7081 F:      drivers/spi/spi-fsl-qspi.c
7082
7083 FREESCALE QUICC ENGINE LIBRARY
7084 M:      Qiang Zhao <qiang.zhao@nxp.com>
7085 L:      linuxppc-dev@lists.ozlabs.org
7086 S:      Maintained
7087 F:      drivers/soc/fsl/qe/
7088 F:      include/soc/fsl/*qe*.h
7089 F:      include/soc/fsl/*ucc*.h
7090
7091 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7092 M:      Li Yang <leoyang.li@nxp.com>
7093 L:      netdev@vger.kernel.org
7094 L:      linuxppc-dev@lists.ozlabs.org
7095 S:      Maintained
7096 F:      drivers/net/ethernet/freescale/ucc_geth*
7097
7098 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7099 M:      Zhao Qiang <qiang.zhao@nxp.com>
7100 L:      netdev@vger.kernel.org
7101 L:      linuxppc-dev@lists.ozlabs.org
7102 S:      Maintained
7103 F:      drivers/net/wan/fsl_ucc_hdlc*
7104
7105 FREESCALE QUICC ENGINE UCC UART DRIVER
7106 M:      Timur Tabi <timur@kernel.org>
7107 L:      linuxppc-dev@lists.ozlabs.org
7108 S:      Maintained
7109 F:      drivers/tty/serial/ucc_uart.c
7110
7111 FREESCALE SOC DRIVERS
7112 M:      Li Yang <leoyang.li@nxp.com>
7113 L:      linuxppc-dev@lists.ozlabs.org
7114 L:      linux-arm-kernel@lists.infradead.org
7115 S:      Maintained
7116 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
7117 F:      Documentation/devicetree/bindings/soc/fsl/
7118 F:      drivers/soc/fsl/
7119 F:      include/linux/fsl/
7120
7121 FREESCALE SOC FS_ENET DRIVER
7122 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7123 L:      linuxppc-dev@lists.ozlabs.org
7124 L:      netdev@vger.kernel.org
7125 S:      Maintained
7126 F:      drivers/net/ethernet/freescale/fs_enet/
7127 F:      include/linux/fs_enet_pd.h
7128
7129 FREESCALE SOC SOUND DRIVERS
7130 M:      Timur Tabi <timur@kernel.org>
7131 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7132 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7133 R:      Fabio Estevam <festevam@gmail.com>
7134 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7135 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7136 L:      linuxppc-dev@lists.ozlabs.org
7137 S:      Maintained
7138 F:      sound/soc/fsl/fsl*
7139 F:      sound/soc/fsl/imx*
7140 F:      sound/soc/fsl/mpc8610_hpcd.c
7141
7142 FREESCALE USB PERIPHERAL DRIVERS
7143 M:      Li Yang <leoyang.li@nxp.com>
7144 L:      linux-usb@vger.kernel.org
7145 L:      linuxppc-dev@lists.ozlabs.org
7146 S:      Maintained
7147 F:      drivers/usb/gadget/udc/fsl*
7148
7149 FREESCALE USB PHY DRIVER
7150 M:      Ran Wang <ran.wang_1@nxp.com>
7151 L:      linux-usb@vger.kernel.org
7152 L:      linuxppc-dev@lists.ozlabs.org
7153 S:      Maintained
7154 F:      drivers/usb/phy/phy-fsl-usb*
7155
7156 FREEVXFS FILESYSTEM
7157 M:      Christoph Hellwig <hch@infradead.org>
7158 S:      Maintained
7159 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7160 F:      fs/freevxfs/
7161
7162 FREEZER
7163 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7164 M:      Pavel Machek <pavel@ucw.cz>
7165 L:      linux-pm@vger.kernel.org
7166 S:      Supported
7167 F:      Documentation/power/freezing-of-tasks.rst
7168 F:      include/linux/freezer.h
7169 F:      kernel/freezer.c
7170
7171 FRONTSWAP API
7172 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7173 L:      linux-kernel@vger.kernel.org
7174 S:      Maintained
7175 F:      include/linux/frontswap.h
7176 F:      mm/frontswap.c
7177
7178 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7179 M:      David Howells <dhowells@redhat.com>
7180 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7181 S:      Supported
7182 F:      Documentation/filesystems/caching/
7183 F:      fs/fscache/
7184 F:      include/linux/fscache*.h
7185
7186 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7187 M:      Theodore Y. Ts'o <tytso@mit.edu>
7188 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7189 M:      Eric Biggers <ebiggers@kernel.org>
7190 L:      linux-fscrypt@vger.kernel.org
7191 S:      Supported
7192 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7193 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7194 F:      Documentation/filesystems/fscrypt.rst
7195 F:      fs/crypto/
7196 F:      include/linux/fscrypt*.h
7197 F:      include/uapi/linux/fscrypt.h
7198
7199 FSI SUBSYSTEM
7200 M:      Jeremy Kerr <jk@ozlabs.org>
7201 M:      Joel Stanley <joel@jms.id.au>
7202 R:      Alistar Popple <alistair@popple.id.au>
7203 R:      Eddie James <eajames@linux.ibm.com>
7204 L:      linux-fsi@lists.ozlabs.org
7205 S:      Supported
7206 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7208 F:      drivers/fsi/
7209 F:      include/linux/fsi*.h
7210 F:      include/trace/events/fsi*.h
7211
7212 FSI-ATTACHED I2C DRIVER
7213 M:      Eddie James <eajames@linux.ibm.com>
7214 L:      linux-i2c@vger.kernel.org
7215 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7216 S:      Maintained
7217 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7218 F:      drivers/i2c/busses/i2c-fsi.c
7219
7220 FSI-ATTACHED SPI DRIVER
7221 M:      Eddie James <eajames@linux.ibm.com>
7222 L:      linux-spi@vger.kernel.org
7223 S:      Maintained
7224 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7225 F:      drivers/spi/spi-fsi.c
7226
7227 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7228 M:      Jan Kara <jack@suse.cz>
7229 R:      Amir Goldstein <amir73il@gmail.com>
7230 L:      linux-fsdevel@vger.kernel.org
7231 S:      Maintained
7232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7233 F:      fs/notify/
7234 F:      include/linux/fsnotify*.h
7235
7236 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7237 M:      Eric Biggers <ebiggers@kernel.org>
7238 M:      Theodore Y. Ts'o <tytso@mit.edu>
7239 L:      linux-fscrypt@vger.kernel.org
7240 S:      Supported
7241 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7242 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7243 F:      Documentation/filesystems/fsverity.rst
7244 F:      fs/verity/
7245 F:      include/linux/fsverity.h
7246 F:      include/uapi/linux/fsverity.h
7247
7248 FUJITSU LAPTOP EXTRAS
7249 M:      Jonathan Woithe <jwoithe@just42.net>
7250 L:      platform-driver-x86@vger.kernel.org
7251 S:      Maintained
7252 F:      drivers/platform/x86/fujitsu-laptop.c
7253
7254 FUJITSU M-5MO LS CAMERA ISP DRIVER
7255 M:      Kyungmin Park <kyungmin.park@samsung.com>
7256 M:      Heungjun Kim <riverful.kim@samsung.com>
7257 L:      linux-media@vger.kernel.org
7258 S:      Maintained
7259 F:      drivers/media/i2c/m5mols/
7260 F:      include/media/i2c/m5mols.h
7261
7262 FUJITSU TABLET EXTRAS
7263 M:      Robert Gerlach <khnz@gmx.de>
7264 L:      platform-driver-x86@vger.kernel.org
7265 S:      Maintained
7266 F:      drivers/platform/x86/fujitsu-tablet.c
7267
7268 FUSE: FILESYSTEM IN USERSPACE
7269 M:      Miklos Szeredi <miklos@szeredi.hu>
7270 L:      linux-fsdevel@vger.kernel.org
7271 S:      Maintained
7272 W:      https://github.com/libfuse/
7273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7274 F:      Documentation/filesystems/fuse.rst
7275 F:      fs/fuse/
7276 F:      include/uapi/linux/fuse.h
7277
7278 FUTEX SUBSYSTEM
7279 M:      Thomas Gleixner <tglx@linutronix.de>
7280 M:      Ingo Molnar <mingo@redhat.com>
7281 R:      Peter Zijlstra <peterz@infradead.org>
7282 R:      Darren Hart <dvhart@infradead.org>
7283 L:      linux-kernel@vger.kernel.org
7284 S:      Maintained
7285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7286 F:      Documentation/locking/*futex*
7287 F:      include/asm-generic/futex.h
7288 F:      include/linux/futex.h
7289 F:      include/uapi/linux/futex.h
7290 F:      kernel/futex.c
7291 F:      tools/perf/bench/futex*
7292 F:      tools/testing/selftests/futex/
7293
7294 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7295 M:      Tim Harvey <tharvey@gateworks.com>
7296 M:      Robert Jones <rjones@gateworks.com>
7297 S:      Maintained
7298 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7299 F:      drivers/mfd/gateworks-gsc.c
7300 F:      include/linux/mfd/gsc.h
7301 F:      Documentation/hwmon/gsc-hwmon.rst
7302 F:      drivers/hwmon/gsc-hwmon.c
7303 F:      include/linux/platform_data/gsc_hwmon.h
7304
7305 GASKET DRIVER FRAMEWORK
7306 M:      Rob Springer <rspringer@google.com>
7307 M:      Todd Poynor <toddpoynor@google.com>
7308 M:      Ben Chan <benchan@chromium.org>
7309 M:      Richard Yeh <rcy@google.com>
7310 S:      Maintained
7311 F:      drivers/staging/gasket/
7312
7313 GCC PLUGINS
7314 M:      Kees Cook <keescook@chromium.org>
7315 R:      Emese Revfy <re.emese@gmail.com>
7316 L:      linux-hardening@vger.kernel.org
7317 S:      Maintained
7318 F:      Documentation/kbuild/gcc-plugins.rst
7319 F:      scripts/Makefile.gcc-plugins
7320 F:      scripts/gcc-plugin.sh
7321 F:      scripts/gcc-plugins/
7322
7323 GCOV BASED KERNEL PROFILING
7324 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7325 S:      Maintained
7326 F:      Documentation/dev-tools/gcov.rst
7327 F:      kernel/gcov/
7328
7329 GDB KERNEL DEBUGGING HELPER SCRIPTS
7330 M:      Jan Kiszka <jan.kiszka@siemens.com>
7331 M:      Kieran Bingham <kbingham@kernel.org>
7332 S:      Supported
7333 F:      scripts/gdb/
7334
7335 GDT SCSI DISK ARRAY CONTROLLER DRIVER
7336 M:      Achim Leubner <achim_leubner@adaptec.com>
7337 L:      linux-scsi@vger.kernel.org
7338 S:      Supported
7339 W:      http://www.icp-vortex.com/
7340 F:      drivers/scsi/gdt*
7341
7342 GEMTEK FM RADIO RECEIVER DRIVER
7343 M:      Hans Verkuil <hverkuil@xs4all.nl>
7344 L:      linux-media@vger.kernel.org
7345 S:      Maintained
7346 W:      https://linuxtv.org
7347 T:      git git://linuxtv.org/media_tree.git
7348 F:      drivers/media/radio/radio-gemtek*
7349
7350 GENERIC ARCHITECTURE TOPOLOGY
7351 M:      Sudeep Holla <sudeep.holla@arm.com>
7352 L:      linux-kernel@vger.kernel.org
7353 S:      Maintained
7354 F:      drivers/base/arch_topology.c
7355 F:      include/linux/arch_topology.h
7356
7357 GENERIC GPIO I2C DRIVER
7358 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7359 S:      Supported
7360 F:      drivers/i2c/busses/i2c-gpio.c
7361 F:      include/linux/platform_data/i2c-gpio.h
7362
7363 GENERIC GPIO I2C MULTIPLEXER DRIVER
7364 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7365 L:      linux-i2c@vger.kernel.org
7366 S:      Supported
7367 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7368 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7369 F:      include/linux/platform_data/i2c-mux-gpio.h
7370
7371 GENERIC HDLC (WAN) DRIVERS
7372 M:      Krzysztof Halasa <khc@pm.waw.pl>
7373 S:      Maintained
7374 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7375 F:      drivers/net/wan/c101.c
7376 F:      drivers/net/wan/hd6457*
7377 F:      drivers/net/wan/hdlc*
7378 F:      drivers/net/wan/n2.c
7379 F:      drivers/net/wan/pc300too.c
7380 F:      drivers/net/wan/pci200syn.c
7381 F:      drivers/net/wan/wanxl*
7382
7383 GENERIC INCLUDE/ASM HEADER FILES
7384 M:      Arnd Bergmann <arnd@arndb.de>
7385 L:      linux-arch@vger.kernel.org
7386 S:      Maintained
7387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7388 F:      include/asm-generic/
7389 F:      include/uapi/asm-generic/
7390
7391 GENERIC PHY FRAMEWORK
7392 M:      Kishon Vijay Abraham I <kishon@ti.com>
7393 M:      Vinod Koul <vkoul@kernel.org>
7394 L:      linux-kernel@vger.kernel.org
7395 S:      Supported
7396 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7397 F:      Documentation/devicetree/bindings/phy/
7398 F:      drivers/phy/
7399 F:      include/linux/phy/
7400
7401 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7402 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7403 S:      Supported
7404 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7405
7406 GENERIC PM DOMAINS
7407 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7408 M:      Kevin Hilman <khilman@kernel.org>
7409 M:      Ulf Hansson <ulf.hansson@linaro.org>
7410 L:      linux-pm@vger.kernel.org
7411 S:      Supported
7412 F:      Documentation/devicetree/bindings/power/power?domain*
7413 F:      drivers/base/power/domain*.c
7414 F:      include/linux/pm_domain.h
7415
7416 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7417 M:      Eugen Hristev <eugen.hristev@microchip.com>
7418 L:      linux-input@vger.kernel.org
7419 S:      Maintained
7420 F:      drivers/input/touchscreen/resistive-adc-touch.c
7421
7422 GENERIC UIO DRIVER FOR PCI DEVICES
7423 M:      "Michael S. Tsirkin" <mst@redhat.com>
7424 L:      kvm@vger.kernel.org
7425 S:      Supported
7426 F:      drivers/uio/uio_pci_generic.c
7427
7428 GENERIC VDSO LIBRARY
7429 M:      Andy Lutomirski <luto@kernel.org>
7430 M:      Thomas Gleixner <tglx@linutronix.de>
7431 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7432 L:      linux-kernel@vger.kernel.org
7433 S:      Maintained
7434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7435 F:      include/asm-generic/vdso/vsyscall.h
7436 F:      include/vdso/
7437 F:      kernel/time/vsyscall.c
7438 F:      lib/vdso/
7439
7440 GENWQE (IBM Generic Workqueue Card)
7441 M:      Frank Haverkamp <haver@linux.ibm.com>
7442 S:      Supported
7443 F:      drivers/misc/genwqe/
7444
7445 GET_MAINTAINER SCRIPT
7446 M:      Joe Perches <joe@perches.com>
7447 S:      Maintained
7448 F:      scripts/get_maintainer.pl
7449
7450 GFS2 FILE SYSTEM
7451 M:      Bob Peterson <rpeterso@redhat.com>
7452 M:      Andreas Gruenbacher <agruenba@redhat.com>
7453 L:      cluster-devel@redhat.com
7454 S:      Supported
7455 W:      http://sources.redhat.com/cluster/
7456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7457 F:      Documentation/filesystems/gfs2*
7458 F:      fs/gfs2/
7459 F:      include/uapi/linux/gfs2_ondisk.h
7460
7461 GNSS SUBSYSTEM
7462 M:      Johan Hovold <johan@kernel.org>
7463 S:      Maintained
7464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7465 F:      Documentation/ABI/testing/sysfs-class-gnss
7466 F:      Documentation/devicetree/bindings/gnss/
7467 F:      drivers/gnss/
7468 F:      include/linux/gnss.h
7469
7470 GO7007 MPEG CODEC
7471 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7472 L:      linux-media@vger.kernel.org
7473 S:      Maintained
7474 F:      drivers/media/usb/go7007/
7475
7476 GOODIX TOUCHSCREEN
7477 M:      Bastien Nocera <hadess@hadess.net>
7478 L:      linux-input@vger.kernel.org
7479 S:      Maintained
7480 F:      drivers/input/touchscreen/goodix.c
7481
7482 GOOGLE ETHERNET DRIVERS
7483 M:      Catherine Sullivan <csully@google.com>
7484 R:      Sagi Shahar <sagis@google.com>
7485 R:      Jon Olson <jonolson@google.com>
7486 L:      netdev@vger.kernel.org
7487 S:      Supported
7488 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
7489 F:      drivers/net/ethernet/google
7490
7491 GPD POCKET FAN DRIVER
7492 M:      Hans de Goede <hdegoede@redhat.com>
7493 L:      platform-driver-x86@vger.kernel.org
7494 S:      Maintained
7495 F:      drivers/platform/x86/gpd-pocket-fan.c
7496
7497 GPIO ACPI SUPPORT
7498 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7499 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7500 L:      linux-gpio@vger.kernel.org
7501 L:      linux-acpi@vger.kernel.org
7502 S:      Maintained
7503 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7504 F:      drivers/gpio/gpiolib-acpi.c
7505 F:      drivers/gpio/gpiolib-acpi.h
7506
7507 GPIO AGGREGATOR
7508 M:      Geert Uytterhoeven <geert+renesas@glider.be>
7509 L:      linux-gpio@vger.kernel.org
7510 S:      Supported
7511 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7512 F:      drivers/gpio/gpio-aggregator.c
7513
7514 GPIO IR Transmitter
7515 M:      Sean Young <sean@mess.org>
7516 L:      linux-media@vger.kernel.org
7517 S:      Maintained
7518 F:      drivers/media/rc/gpio-ir-tx.c
7519
7520 GPIO MOCKUP DRIVER
7521 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7522 L:      linux-gpio@vger.kernel.org
7523 S:      Maintained
7524 F:      drivers/gpio/gpio-mockup.c
7525 F:      tools/testing/selftests/gpio/
7526
7527 GPIO REGMAP
7528 R:      Michael Walle <michael@walle.cc>
7529 S:      Maintained
7530 F:      drivers/gpio/gpio-regmap.c
7531 F:      include/linux/gpio/regmap.h
7532
7533 GPIO SUBSYSTEM
7534 M:      Linus Walleij <linus.walleij@linaro.org>
7535 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7536 L:      linux-gpio@vger.kernel.org
7537 S:      Maintained
7538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7539 F:      Documentation/ABI/obsolete/sysfs-gpio
7540 F:      Documentation/ABI/testing/gpio-cdev
7541 F:      Documentation/admin-guide/gpio/
7542 F:      Documentation/devicetree/bindings/gpio/
7543 F:      Documentation/driver-api/gpio/
7544 F:      drivers/gpio/
7545 F:      include/asm-generic/gpio.h
7546 F:      include/linux/gpio.h
7547 F:      include/linux/gpio/
7548 F:      include/linux/of_gpio.h
7549 F:      include/uapi/linux/gpio.h
7550 F:      tools/gpio/
7551
7552 GRE DEMULTIPLEXER DRIVER
7553 M:      Dmitry Kozlov <xeb@mail.ru>
7554 L:      netdev@vger.kernel.org
7555 S:      Maintained
7556 F:      include/net/gre.h
7557 F:      net/ipv4/gre_demux.c
7558 F:      net/ipv4/gre_offload.c
7559
7560 GRETH 10/100/1G Ethernet MAC device driver
7561 M:      Andreas Larsson <andreas@gaisler.com>
7562 L:      netdev@vger.kernel.org
7563 S:      Maintained
7564 F:      drivers/net/ethernet/aeroflex/
7565
7566 GREYBUS AUDIO PROTOCOLS DRIVERS
7567 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7568 M:      Mark Greer <mgreer@animalcreek.com>
7569 S:      Maintained
7570 F:      drivers/staging/greybus/audio_apbridgea.c
7571 F:      drivers/staging/greybus/audio_apbridgea.h
7572 F:      drivers/staging/greybus/audio_codec.c
7573 F:      drivers/staging/greybus/audio_codec.h
7574 F:      drivers/staging/greybus/audio_gb.c
7575 F:      drivers/staging/greybus/audio_manager.c
7576 F:      drivers/staging/greybus/audio_manager.h
7577 F:      drivers/staging/greybus/audio_manager_module.c
7578 F:      drivers/staging/greybus/audio_manager_private.h
7579 F:      drivers/staging/greybus/audio_manager_sysfs.c
7580 F:      drivers/staging/greybus/audio_module.c
7581 F:      drivers/staging/greybus/audio_topology.c
7582
7583 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7584 M:      Viresh Kumar <vireshk@kernel.org>
7585 S:      Maintained
7586 F:      drivers/staging/greybus/authentication.c
7587 F:      drivers/staging/greybus/bootrom.c
7588 F:      drivers/staging/greybus/firmware.h
7589 F:      drivers/staging/greybus/fw-core.c
7590 F:      drivers/staging/greybus/fw-download.c
7591 F:      drivers/staging/greybus/fw-management.c
7592 F:      drivers/staging/greybus/greybus_authentication.h
7593 F:      drivers/staging/greybus/greybus_firmware.h
7594 F:      drivers/staging/greybus/hid.c
7595 F:      drivers/staging/greybus/i2c.c
7596 F:      drivers/staging/greybus/spi.c
7597 F:      drivers/staging/greybus/spilib.c
7598 F:      drivers/staging/greybus/spilib.h
7599
7600 GREYBUS LOOPBACK DRIVER
7601 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7602 S:      Maintained
7603 F:      drivers/staging/greybus/loopback.c
7604
7605 GREYBUS PLATFORM DRIVERS
7606 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7607 S:      Maintained
7608 F:      drivers/staging/greybus/arche-apb-ctrl.c
7609 F:      drivers/staging/greybus/arche-platform.c
7610 F:      drivers/staging/greybus/arche_platform.h
7611
7612 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7613 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7614 S:      Maintained
7615 F:      drivers/staging/greybus/gpio.c
7616 F:      drivers/staging/greybus/light.c
7617 F:      drivers/staging/greybus/power_supply.c
7618 F:      drivers/staging/greybus/sdio.c
7619 F:      drivers/staging/greybus/spi.c
7620 F:      drivers/staging/greybus/spilib.c
7621
7622 GREYBUS SUBSYSTEM
7623 M:      Johan Hovold <johan@kernel.org>
7624 M:      Alex Elder <elder@kernel.org>
7625 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7626 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7627 S:      Maintained
7628 F:      drivers/greybus/
7629 F:      drivers/staging/greybus/
7630 F:      include/linux/greybus.h
7631 F:      include/linux/greybus/
7632
7633 GREYBUS UART PROTOCOLS DRIVERS
7634 M:      David Lin <dtwlin@gmail.com>
7635 S:      Maintained
7636 F:      drivers/staging/greybus/log.c
7637 F:      drivers/staging/greybus/uart.c
7638
7639 GS1662 VIDEO SERIALIZER
7640 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7641 L:      linux-media@vger.kernel.org
7642 S:      Maintained
7643 T:      git git://linuxtv.org/media_tree.git
7644 F:      drivers/media/spi/gs1662.c
7645
7646 GSPCA FINEPIX SUBDRIVER
7647 M:      Frank Zago <frank@zago.net>
7648 L:      linux-media@vger.kernel.org
7649 S:      Maintained
7650 T:      git git://linuxtv.org/media_tree.git
7651 F:      drivers/media/usb/gspca/finepix.c
7652
7653 GSPCA GL860 SUBDRIVER
7654 M:      Olivier Lorin <o.lorin@laposte.net>
7655 L:      linux-media@vger.kernel.org
7656 S:      Maintained
7657 T:      git git://linuxtv.org/media_tree.git
7658 F:      drivers/media/usb/gspca/gl860/
7659
7660 GSPCA M5602 SUBDRIVER
7661 M:      Erik Andren <erik.andren@gmail.com>
7662 L:      linux-media@vger.kernel.org
7663 S:      Maintained
7664 T:      git git://linuxtv.org/media_tree.git
7665 F:      drivers/media/usb/gspca/m5602/
7666
7667 GSPCA PAC207 SONIXB SUBDRIVER
7668 M:      Hans Verkuil <hverkuil@xs4all.nl>
7669 L:      linux-media@vger.kernel.org
7670 S:      Odd Fixes
7671 T:      git git://linuxtv.org/media_tree.git
7672 F:      drivers/media/usb/gspca/pac207.c
7673
7674 GSPCA SN9C20X SUBDRIVER
7675 M:      Brian Johnson <brijohn@gmail.com>
7676 L:      linux-media@vger.kernel.org
7677 S:      Maintained
7678 T:      git git://linuxtv.org/media_tree.git
7679 F:      drivers/media/usb/gspca/sn9c20x.c
7680
7681 GSPCA T613 SUBDRIVER
7682 M:      Leandro Costantino <lcostantino@gmail.com>
7683 L:      linux-media@vger.kernel.org
7684 S:      Maintained
7685 T:      git git://linuxtv.org/media_tree.git
7686 F:      drivers/media/usb/gspca/t613.c
7687
7688 GSPCA USB WEBCAM DRIVER
7689 M:      Hans Verkuil <hverkuil@xs4all.nl>
7690 L:      linux-media@vger.kernel.org
7691 S:      Odd Fixes
7692 T:      git git://linuxtv.org/media_tree.git
7693 F:      drivers/media/usb/gspca/
7694
7695 GTP (GPRS Tunneling Protocol)
7696 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7697 M:      Harald Welte <laforge@gnumonks.org>
7698 L:      osmocom-net-gprs@lists.osmocom.org
7699 S:      Maintained
7700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7701 F:      drivers/net/gtp.c
7702
7703 GUID PARTITION TABLE (GPT)
7704 M:      Davidlohr Bueso <dave@stgolabs.net>
7705 L:      linux-efi@vger.kernel.org
7706 S:      Maintained
7707 F:      block/partitions/efi.*
7708
7709 H8/300 ARCHITECTURE
7710 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
7711 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7712 S:      Maintained
7713 W:      http://uclinux-h8.sourceforge.jp
7714 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7715 F:      arch/h8300/
7716 F:      drivers/clk/h8300/
7717 F:      drivers/clocksource/h8300_*.c
7718 F:      drivers/irqchip/irq-renesas-h8*.c
7719
7720 HABANALABS PCI DRIVER
7721 M:      Oded Gabbay <oded.gabbay@gmail.com>
7722 S:      Supported
7723 T:      git https://github.com/HabanaAI/linux.git
7724 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7725 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7726 F:      drivers/misc/habanalabs/
7727 F:      include/uapi/misc/habanalabs.h
7728
7729 HACKRF MEDIA DRIVER
7730 M:      Antti Palosaari <crope@iki.fi>
7731 L:      linux-media@vger.kernel.org
7732 S:      Maintained
7733 W:      https://linuxtv.org
7734 W:      http://palosaari.fi/linux/
7735 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7736 T:      git git://linuxtv.org/anttip/media_tree.git
7737 F:      drivers/media/usb/hackrf/
7738
7739 HANTRO VPU CODEC DRIVER
7740 M:      Ezequiel Garcia <ezequiel@collabora.com>
7741 M:      Philipp Zabel <p.zabel@pengutronix.de>
7742 L:      linux-media@vger.kernel.org
7743 L:      linux-rockchip@lists.infradead.org
7744 S:      Maintained
7745 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
7746 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
7747 F:      drivers/staging/media/hantro/
7748
7749 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7750 M:      Frank Seidel <frank@f-seidel.de>
7751 L:      platform-driver-x86@vger.kernel.org
7752 S:      Maintained
7753 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7754 F:      drivers/platform/x86/hdaps.c
7755
7756 HARDWARE MONITORING
7757 M:      Jean Delvare <jdelvare@suse.com>
7758 M:      Guenter Roeck <linux@roeck-us.net>
7759 L:      linux-hwmon@vger.kernel.org
7760 S:      Maintained
7761 W:      http://hwmon.wiki.kernel.org/
7762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7763 F:      Documentation/devicetree/bindings/hwmon/
7764 F:      Documentation/hwmon/
7765 F:      drivers/hwmon/
7766 F:      include/linux/hwmon*.h
7767 F:      include/trace/events/hwmon*.h
7768
7769 HARDWARE RANDOM NUMBER GENERATOR CORE
7770 M:      Matt Mackall <mpm@selenic.com>
7771 M:      Herbert Xu <herbert@gondor.apana.org.au>
7772 L:      linux-crypto@vger.kernel.org
7773 S:      Odd fixes
7774 F:      Documentation/admin-guide/hw_random.rst
7775 F:      Documentation/devicetree/bindings/rng/
7776 F:      drivers/char/hw_random/
7777 F:      include/linux/hw_random.h
7778
7779 HARDWARE SPINLOCK CORE
7780 M:      Ohad Ben-Cohen <ohad@wizery.com>
7781 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
7782 R:      Baolin Wang <baolin.wang7@gmail.com>
7783 L:      linux-remoteproc@vger.kernel.org
7784 S:      Maintained
7785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7786 F:      Documentation/devicetree/bindings/hwlock/
7787 F:      Documentation/locking/hwspinlock.rst
7788 F:      drivers/hwspinlock/
7789 F:      include/linux/hwspinlock.h
7790
7791 HARDWARE TRACING FACILITIES
7792 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7793 S:      Maintained
7794 F:      drivers/hwtracing/
7795
7796 HARMONY SOUND DRIVER
7797 L:      linux-parisc@vger.kernel.org
7798 S:      Maintained
7799 F:      sound/parisc/harmony.*
7800
7801 HDPVR USB VIDEO ENCODER DRIVER
7802 M:      Hans Verkuil <hverkuil@xs4all.nl>
7803 L:      linux-media@vger.kernel.org
7804 S:      Odd Fixes
7805 W:      https://linuxtv.org
7806 T:      git git://linuxtv.org/media_tree.git
7807 F:      drivers/media/usb/hdpvr/
7808
7809 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7810 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
7811 S:      Supported
7812 F:      Documentation/watchdog/hpwdt.rst
7813 F:      drivers/watchdog/hpwdt.c
7814
7815 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7816 M:      Don Brace <don.brace@microchip.com>
7817 L:      storagedev@microchip.com
7818 L:      linux-scsi@vger.kernel.org
7819 S:      Supported
7820 F:      Documentation/scsi/hpsa.rst
7821 F:      drivers/scsi/hpsa*.[ch]
7822 F:      include/linux/cciss*.h
7823 F:      include/uapi/linux/cciss*.h
7824
7825 HFI1 DRIVER
7826 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
7827 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
7828 L:      linux-rdma@vger.kernel.org
7829 S:      Supported
7830 F:      drivers/infiniband/hw/hfi1
7831
7832 HFS FILESYSTEM
7833 L:      linux-fsdevel@vger.kernel.org
7834 S:      Orphan
7835 F:      Documentation/filesystems/hfs.rst
7836 F:      fs/hfs/
7837
7838 HFSPLUS FILESYSTEM
7839 L:      linux-fsdevel@vger.kernel.org
7840 S:      Orphan
7841 F:      Documentation/filesystems/hfsplus.rst
7842 F:      fs/hfsplus/
7843
7844 HGA FRAMEBUFFER DRIVER
7845 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
7846 L:      linux-nvidia@lists.surfsouth.com
7847 S:      Maintained
7848 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7849 F:      drivers/video/fbdev/hgafb.c
7850
7851 HIBERNATION (aka Software Suspend, aka swsusp)
7852 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7853 M:      Pavel Machek <pavel@ucw.cz>
7854 L:      linux-pm@vger.kernel.org
7855 S:      Supported
7856 B:      https://bugzilla.kernel.org
7857 F:      arch/*/include/asm/suspend*.h
7858 F:      arch/x86/power/
7859 F:      drivers/base/power/
7860 F:      include/linux/freezer.h
7861 F:      include/linux/pm.h
7862 F:      include/linux/suspend.h
7863 F:      kernel/power/
7864
7865 HID CORE LAYER
7866 M:      Jiri Kosina <jikos@kernel.org>
7867 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
7868 L:      linux-input@vger.kernel.org
7869 S:      Maintained
7870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7871 F:      drivers/hid/
7872 F:      include/linux/hid*
7873 F:      include/uapi/linux/hid*
7874
7875 HID SENSOR HUB DRIVERS
7876 M:      Jiri Kosina <jikos@kernel.org>
7877 M:      Jonathan Cameron <jic23@kernel.org>
7878 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7879 L:      linux-input@vger.kernel.org
7880 L:      linux-iio@vger.kernel.org
7881 S:      Maintained
7882 F:      Documentation/hid/hid-sensor*
7883 F:      drivers/hid/hid-sensor-*
7884 F:      drivers/iio/*/hid-*
7885 F:      include/linux/hid-sensor-*
7886
7887 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7888 M:      Thomas Gleixner <tglx@linutronix.de>
7889 L:      linux-kernel@vger.kernel.org
7890 S:      Maintained
7891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7892 F:      Documentation/timers/
7893 F:      include/linux/clockchips.h
7894 F:      include/linux/hrtimer.h
7895 F:      kernel/time/clockevents.c
7896 F:      kernel/time/hrtimer.c
7897 F:      kernel/time/timer_*.c
7898
7899 HIGH-SPEED SCC DRIVER FOR AX.25
7900 L:      linux-hams@vger.kernel.org
7901 S:      Orphan
7902 F:      drivers/net/hamradio/dmascc.c
7903 F:      drivers/net/hamradio/scc.c
7904
7905 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7906 M:      HighPoint Linux Team <linux@highpoint-tech.com>
7907 S:      Supported
7908 W:      http://www.highpoint-tech.com
7909 F:      Documentation/scsi/hptiop.rst
7910 F:      drivers/scsi/hptiop.c
7911
7912 HIPPI
7913 M:      Jes Sorensen <jes@trained-monkey.org>
7914 L:      linux-hippi@sunsite.dk
7915 S:      Maintained
7916 F:      drivers/net/hippi/
7917 F:      include/linux/hippidevice.h
7918 F:      include/uapi/linux/if_hippi.h
7919 F:      net/802/hippi.c
7920
7921 HISILICON DMA DRIVER
7922 M:      Zhou Wang <wangzhou1@hisilicon.com>
7923 L:      dmaengine@vger.kernel.org
7924 S:      Maintained
7925 F:      drivers/dma/hisi_dma.c
7926
7927 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7928 M:      Zaibo Xu <xuzaibo@huawei.com>
7929 L:      linux-crypto@vger.kernel.org
7930 S:      Maintained
7931 F:      Documentation/ABI/testing/debugfs-hisi-hpre
7932 F:      drivers/crypto/hisilicon/hpre/hpre.h
7933 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
7934 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
7935
7936 HISILICON LPC BUS DRIVER
7937 M:      john.garry@huawei.com
7938 S:      Maintained
7939 W:      http://www.hisilicon.com
7940 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
7941 F:      drivers/bus/hisi_lpc.c
7942
7943 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7944 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7945 M:      Salil Mehta <salil.mehta@huawei.com>
7946 L:      netdev@vger.kernel.org
7947 S:      Maintained
7948 W:      http://www.hisilicon.com
7949 F:      drivers/net/ethernet/hisilicon/hns3/
7950
7951 HISILICON NETWORK SUBSYSTEM DRIVER
7952 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7953 M:      Salil Mehta <salil.mehta@huawei.com>
7954 L:      netdev@vger.kernel.org
7955 S:      Maintained
7956 W:      http://www.hisilicon.com
7957 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
7958 F:      drivers/net/ethernet/hisilicon/
7959
7960 HIKEY960 ONBOARD USB GPIO HUB DRIVER
7961 M:      John Stultz <john.stultz@linaro.org>
7962 L:      linux-kernel@vger.kernel.org
7963 S:      Maintained
7964 F:      drivers/misc/hisi_hikey_usb.c
7965 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
7966
7967 HISILICON PMU DRIVER
7968 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
7969 S:      Supported
7970 W:      http://www.hisilicon.com
7971 F:      Documentation/admin-guide/perf/hisi-pmu.rst
7972 F:      drivers/perf/hisilicon
7973
7974 HISILICON QM AND ZIP Controller DRIVER
7975 M:      Zhou Wang <wangzhou1@hisilicon.com>
7976 L:      linux-crypto@vger.kernel.org
7977 S:      Maintained
7978 F:      Documentation/ABI/testing/debugfs-hisi-zip
7979 F:      drivers/crypto/hisilicon/qm.c
7980 F:      drivers/crypto/hisilicon/qm.h
7981 F:      drivers/crypto/hisilicon/sgl.c
7982 F:      drivers/crypto/hisilicon/zip/
7983
7984 HISILICON ROCE DRIVER
7985 M:      Lijun Ou <oulijun@huawei.com>
7986 M:      Wei Hu(Xavier) <huwei87@hisilicon.com>
7987 M:      Weihang Li <liweihang@huawei.com>
7988 L:      linux-rdma@vger.kernel.org
7989 S:      Maintained
7990 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
7991 F:      drivers/infiniband/hw/hns/
7992
7993 HISILICON SAS Controller
7994 M:      John Garry <john.garry@huawei.com>
7995 S:      Supported
7996 W:      http://www.hisilicon.com
7997 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
7998 F:      drivers/scsi/hisi_sas/
7999
8000 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8001 M:      Zaibo Xu <xuzaibo@huawei.com>
8002 L:      linux-crypto@vger.kernel.org
8003 S:      Maintained
8004 F:      Documentation/ABI/testing/debugfs-hisi-sec
8005 F:      drivers/crypto/hisilicon/sec2/sec.h
8006 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8007 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8008 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8009
8010 HISILICON STAGING DRIVERS FOR HIKEY 960/970
8011 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8012 L:      devel@driverdev.osuosl.org
8013 S:      Maintained
8014 F:      drivers/staging/hikey9xx/
8015
8016 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8017 M:      Zaibo Xu <xuzaibo@huawei.com>
8018 S:      Maintained
8019 F:      drivers/char/hw_random/hisi-trng-v2.c
8020
8021 HISILICON V3XX SPI NOR FLASH Controller Driver
8022 M:      John Garry <john.garry@huawei.com>
8023 S:      Maintained
8024 W:      http://www.hisilicon.com
8025 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8026
8027 HMM - Heterogeneous Memory Management
8028 M:      Jérôme Glisse <jglisse@redhat.com>
8029 L:      linux-mm@kvack.org
8030 S:      Maintained
8031 F:      Documentation/vm/hmm.rst
8032 F:      include/linux/hmm*
8033 F:      lib/test_hmm*
8034 F:      mm/hmm*
8035 F:      tools/testing/selftests/vm/*hmm*
8036
8037 HOST AP DRIVER
8038 M:      Jouni Malinen <j@w1.fi>
8039 L:      linux-wireless@vger.kernel.org
8040 S:      Obsolete
8041 W:      http://w1.fi/hostap-driver.html
8042 F:      drivers/net/wireless/intersil/hostap/
8043
8044 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8045 L:      platform-driver-x86@vger.kernel.org
8046 S:      Orphan
8047 F:      drivers/platform/x86/tc1100-wmi.c
8048
8049 HPET:   High Precision Event Timers driver
8050 M:      Clemens Ladisch <clemens@ladisch.de>
8051 S:      Maintained
8052 F:      Documentation/timers/hpet.rst
8053 F:      drivers/char/hpet.c
8054 F:      include/linux/hpet.h
8055 F:      include/uapi/linux/hpet.h
8056
8057 HPET:   x86
8058 S:      Orphan
8059 F:      arch/x86/include/asm/hpet.h
8060 F:      arch/x86/kernel/hpet.c
8061
8062 HPFS FILESYSTEM
8063 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8064 S:      Maintained
8065 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8066 F:      fs/hpfs/
8067
8068 HSI SUBSYSTEM
8069 M:      Sebastian Reichel <sre@kernel.org>
8070 S:      Maintained
8071 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8072 F:      Documentation/ABI/testing/sysfs-bus-hsi
8073 F:      Documentation/driver-api/hsi.rst
8074 F:      drivers/hsi/
8075 F:      include/linux/hsi/
8076 F:      include/uapi/linux/hsi/
8077
8078 HSO 3G MODEM DRIVER
8079 L:      linux-usb@vger.kernel.org
8080 S:      Orphan
8081 F:      drivers/net/usb/hso.c
8082
8083 HSR NETWORK PROTOCOL
8084 L:      netdev@vger.kernel.org
8085 S:      Orphan
8086 F:      net/hsr/
8087
8088 HT16K33 LED CONTROLLER DRIVER
8089 M:      Robin van der Gracht <robin@protonic.nl>
8090 S:      Maintained
8091 F:      Documentation/devicetree/bindings/display/ht16k33.txt
8092 F:      drivers/auxdisplay/ht16k33.c
8093
8094 HTCPEN TOUCHSCREEN DRIVER
8095 M:      Pau Oliva Fora <pof@eslack.org>
8096 L:      linux-input@vger.kernel.org
8097 S:      Maintained
8098 F:      drivers/input/touchscreen/htcpen.c
8099
8100 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8101 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8102 L:      linux-iio@vger.kernel.org
8103 S:      Maintained
8104 W:      http://www.st.com/
8105 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
8106 F:      drivers/iio/humidity/hts221*
8107
8108 HUAWEI ETHERNET DRIVER
8109 M:      Bin Luo <luobin9@huawei.com>
8110 L:      netdev@vger.kernel.org
8111 S:      Supported
8112 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8113 F:      drivers/net/ethernet/huawei/hinic/
8114
8115 HUGETLB FILESYSTEM
8116 M:      Mike Kravetz <mike.kravetz@oracle.com>
8117 L:      linux-mm@kvack.org
8118 S:      Maintained
8119 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8120 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8121 F:      Documentation/vm/hugetlbfs_reserv.rst
8122 F:      fs/hugetlbfs/
8123 F:      include/linux/hugetlb.h
8124 F:      mm/hugetlb.c
8125
8126 HVA ST MEDIA DRIVER
8127 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
8128 L:      linux-media@vger.kernel.org
8129 S:      Supported
8130 W:      https://linuxtv.org
8131 T:      git git://linuxtv.org/media_tree.git
8132 F:      drivers/media/platform/sti/hva
8133
8134 HWPOISON MEMORY FAILURE HANDLING
8135 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8136 L:      linux-mm@kvack.org
8137 S:      Maintained
8138 F:      mm/hwpoison-inject.c
8139 F:      mm/memory-failure.c
8140
8141 HYGON PROCESSOR SUPPORT
8142 M:      Pu Wen <puwen@hygon.cn>
8143 L:      linux-kernel@vger.kernel.org
8144 S:      Maintained
8145 F:      arch/x86/kernel/cpu/hygon.c
8146
8147 HYNIX HI556 SENSOR DRIVER
8148 M:      Shawn Tu <shawnx.tu@intel.com>
8149 L:      linux-media@vger.kernel.org
8150 S:      Maintained
8151 T:      git git://linuxtv.org/media_tree.git
8152 F:      drivers/media/i2c/hi556.c
8153
8154 Hyper-V CORE AND DRIVERS
8155 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8156 M:      Haiyang Zhang <haiyangz@microsoft.com>
8157 M:      Stephen Hemminger <sthemmin@microsoft.com>
8158 M:      Wei Liu <wei.liu@kernel.org>
8159 L:      linux-hyperv@vger.kernel.org
8160 S:      Supported
8161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8162 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8163 F:      Documentation/ABI/testing/debugfs-hyperv
8164 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8165 F:      arch/x86/hyperv
8166 F:      arch/x86/include/asm/hyperv-tlfs.h
8167 F:      arch/x86/include/asm/mshyperv.h
8168 F:      arch/x86/include/asm/trace/hyperv.h
8169 F:      arch/x86/kernel/cpu/mshyperv.c
8170 F:      drivers/clocksource/hyperv_timer.c
8171 F:      drivers/hid/hid-hyperv.c
8172 F:      drivers/hv/
8173 F:      drivers/input/serio/hyperv-keyboard.c
8174 F:      drivers/iommu/hyperv-iommu.c
8175 F:      drivers/net/hyperv/
8176 F:      drivers/pci/controller/pci-hyperv-intf.c
8177 F:      drivers/pci/controller/pci-hyperv.c
8178 F:      drivers/scsi/storvsc_drv.c
8179 F:      drivers/uio/uio_hv_generic.c
8180 F:      drivers/video/fbdev/hyperv_fb.c
8181 F:      include/asm-generic/hyperv-tlfs.h
8182 F:      include/asm-generic/mshyperv.h
8183 F:      include/clocksource/hyperv_timer.h
8184 F:      include/linux/hyperv.h
8185 F:      include/uapi/linux/hyperv.h
8186 F:      net/vmw_vsock/hyperv_transport.c
8187 F:      tools/hv/
8188
8189 HYPERBUS SUPPORT
8190 M:      Vignesh Raghavendra <vigneshr@ti.com>
8191 L:      linux-mtd@lists.infradead.org
8192 S:      Supported
8193 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8194 C:      irc://irc.oftc.net/mtd
8195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8196 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8197 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8198 F:      drivers/mtd/hyperbus/
8199 F:      include/linux/mtd/hyperbus.h
8200
8201 HYPERVISOR VIRTUAL CONSOLE DRIVER
8202 L:      linuxppc-dev@lists.ozlabs.org
8203 S:      Odd Fixes
8204 F:      drivers/tty/hvc/
8205
8206 I2C ACPI SUPPORT
8207 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8208 L:      linux-i2c@vger.kernel.org
8209 L:      linux-acpi@vger.kernel.org
8210 S:      Maintained
8211 F:      drivers/i2c/i2c-core-acpi.c
8212
8213 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8214 M:      Ajay Gupta <ajayg@nvidia.com>
8215 L:      linux-i2c@vger.kernel.org
8216 S:      Maintained
8217 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8218 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8219
8220 I2C MUXES
8221 M:      Peter Rosin <peda@axentia.se>
8222 L:      linux-i2c@vger.kernel.org
8223 S:      Maintained
8224 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8225 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8226 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8227 F:      Documentation/i2c/i2c-topology.rst
8228 F:      Documentation/i2c/muxes/
8229 F:      drivers/i2c/i2c-mux.c
8230 F:      drivers/i2c/muxes/
8231 F:      include/linux/i2c-mux.h
8232
8233 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8234 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8235 L:      linux-i2c@vger.kernel.org
8236 S:      Maintained
8237 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8238 F:      drivers/i2c/busses/i2c-mv64xxx.c
8239
8240 I2C OVER PARALLEL PORT
8241 M:      Jean Delvare <jdelvare@suse.com>
8242 L:      linux-i2c@vger.kernel.org
8243 S:      Maintained
8244 F:      Documentation/i2c/busses/i2c-parport.rst
8245 F:      drivers/i2c/busses/i2c-parport.c
8246
8247 I2C SUBSYSTEM
8248 M:      Wolfram Sang <wsa@kernel.org>
8249 L:      linux-i2c@vger.kernel.org
8250 S:      Maintained
8251 W:      https://i2c.wiki.kernel.org/
8252 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8254 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8255 F:      Documentation/i2c/
8256 F:      drivers/i2c/*
8257 F:      include/linux/i2c-dev.h
8258 F:      include/linux/i2c-smbus.h
8259 F:      include/linux/i2c.h
8260 F:      include/uapi/linux/i2c-*.h
8261 F:      include/uapi/linux/i2c.h
8262
8263 I2C SUBSYSTEM HOST DRIVERS
8264 L:      linux-i2c@vger.kernel.org
8265 S:      Odd Fixes
8266 W:      https://i2c.wiki.kernel.org/
8267 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8269 F:      Documentation/devicetree/bindings/i2c/
8270 F:      drivers/i2c/algos/
8271 F:      drivers/i2c/busses/
8272
8273 I2C-TAOS-EVM DRIVER
8274 M:      Jean Delvare <jdelvare@suse.com>
8275 L:      linux-i2c@vger.kernel.org
8276 S:      Maintained
8277 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8278 F:      drivers/i2c/busses/i2c-taos-evm.c
8279
8280 I2C-TINY-USB DRIVER
8281 M:      Till Harbaum <till@harbaum.org>
8282 L:      linux-i2c@vger.kernel.org
8283 S:      Maintained
8284 W:      http://www.harbaum.org/till/i2c_tiny_usb
8285 F:      drivers/i2c/busses/i2c-tiny-usb.c
8286
8287 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8288 M:      Jean Delvare <jdelvare@suse.com>
8289 L:      linux-i2c@vger.kernel.org
8290 S:      Maintained
8291 F:      Documentation/i2c/busses/i2c-ali1535.rst
8292 F:      Documentation/i2c/busses/i2c-ali1563.rst
8293 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8294 F:      Documentation/i2c/busses/i2c-amd756.rst
8295 F:      Documentation/i2c/busses/i2c-amd8111.rst
8296 F:      Documentation/i2c/busses/i2c-i801.rst
8297 F:      Documentation/i2c/busses/i2c-nforce2.rst
8298 F:      Documentation/i2c/busses/i2c-piix4.rst
8299 F:      Documentation/i2c/busses/i2c-sis5595.rst
8300 F:      Documentation/i2c/busses/i2c-sis630.rst
8301 F:      Documentation/i2c/busses/i2c-sis96x.rst
8302 F:      Documentation/i2c/busses/i2c-via.rst
8303 F:      Documentation/i2c/busses/i2c-viapro.rst
8304 F:      drivers/i2c/busses/i2c-ali1535.c
8305 F:      drivers/i2c/busses/i2c-ali1563.c
8306 F:      drivers/i2c/busses/i2c-ali15x3.c
8307 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8308 F:      drivers/i2c/busses/i2c-amd756.c
8309 F:      drivers/i2c/busses/i2c-amd8111.c
8310 F:      drivers/i2c/busses/i2c-i801.c
8311 F:      drivers/i2c/busses/i2c-isch.c
8312 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8313 F:      drivers/i2c/busses/i2c-nforce2.c
8314 F:      drivers/i2c/busses/i2c-piix4.c
8315 F:      drivers/i2c/busses/i2c-sis5595.c
8316 F:      drivers/i2c/busses/i2c-sis630.c
8317 F:      drivers/i2c/busses/i2c-sis96x.c
8318 F:      drivers/i2c/busses/i2c-via.c
8319 F:      drivers/i2c/busses/i2c-viapro.c
8320
8321 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8322 M:      Hans de Goede <hdegoede@redhat.com>
8323 L:      linux-i2c@vger.kernel.org
8324 S:      Maintained
8325 F:      drivers/i2c/busses/i2c-cht-wc.c
8326
8327 I2C/SMBUS ISMT DRIVER
8328 M:      Seth Heasley <seth.heasley@intel.com>
8329 M:      Neil Horman <nhorman@tuxdriver.com>
8330 L:      linux-i2c@vger.kernel.org
8331 F:      Documentation/i2c/busses/i2c-ismt.rst
8332 F:      drivers/i2c/busses/i2c-ismt.c
8333
8334 I2C/SMBUS STUB DRIVER
8335 M:      Jean Delvare <jdelvare@suse.com>
8336 L:      linux-i2c@vger.kernel.org
8337 S:      Maintained
8338 F:      drivers/i2c/i2c-stub.c
8339
8340 I3C DRIVER FOR CADENCE I3C MASTER IP
8341 M:      Przemysław Gaj <pgaj@cadence.com>
8342 S:      Maintained
8343 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8344 F:      drivers/i3c/master/i3c-master-cdns.c
8345
8346 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8347 M:      Vitor Soares <vitor.soares@synopsys.com>
8348 S:      Maintained
8349 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8350 F:      drivers/i3c/master/dw*
8351
8352 I3C SUBSYSTEM
8353 M:      Boris Brezillon <bbrezillon@kernel.org>
8354 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8355 S:      Maintained
8356 C:      irc://chat.freenode.net/linux-i3c
8357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8358 F:      Documentation/ABI/testing/sysfs-bus-i3c
8359 F:      Documentation/devicetree/bindings/i3c/
8360 F:      Documentation/driver-api/i3c
8361 F:      drivers/i3c/
8362 F:      include/linux/i3c/
8363
8364 IA64 (Itanium) PLATFORM
8365 M:      Tony Luck <tony.luck@intel.com>
8366 M:      Fenghua Yu <fenghua.yu@intel.com>
8367 L:      linux-ia64@vger.kernel.org
8368 S:      Odd Fixes
8369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8370 F:      Documentation/ia64/
8371 F:      arch/ia64/
8372
8373 IBM Power 842 compression accelerator
8374 M:      Haren Myneni <haren@us.ibm.com>
8375 S:      Supported
8376 F:      crypto/842.c
8377 F:      drivers/crypto/nx/Kconfig
8378 F:      drivers/crypto/nx/Makefile
8379 F:      drivers/crypto/nx/nx-842*
8380 F:      include/linux/sw842.h
8381 F:      lib/842/
8382
8383 IBM Power in-Nest Crypto Acceleration
8384 M:      Breno Leitão <leitao@debian.org>
8385 M:      Nayna Jain <nayna@linux.ibm.com>
8386 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8387 L:      linux-crypto@vger.kernel.org
8388 S:      Supported
8389 F:      drivers/crypto/nx/Kconfig
8390 F:      drivers/crypto/nx/Makefile
8391 F:      drivers/crypto/nx/nx-aes*
8392 F:      drivers/crypto/nx/nx-sha*
8393 F:      drivers/crypto/nx/nx.*
8394 F:      drivers/crypto/nx/nx_csbcpb.h
8395 F:      drivers/crypto/nx/nx_debugfs.c
8396
8397 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8398 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8399 L:      linux-pci@vger.kernel.org
8400 L:      linuxppc-dev@lists.ozlabs.org
8401 S:      Supported
8402 F:      drivers/pci/hotplug/rpadlpar*
8403
8404 IBM Power Linux RAID adapter
8405 M:      Brian King <brking@us.ibm.com>
8406 S:      Supported
8407 F:      drivers/scsi/ipr.*
8408
8409 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8410 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8411 L:      linux-pci@vger.kernel.org
8412 L:      linuxppc-dev@lists.ozlabs.org
8413 S:      Supported
8414 F:      drivers/pci/hotplug/rpaphp*
8415
8416 IBM Power SRIOV Virtual NIC Device Driver
8417 M:      Dany Madden <drt@linux.ibm.com>
8418 M:      Lijun Pan <ljp@linux.ibm.com>
8419 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8420 L:      netdev@vger.kernel.org
8421 S:      Supported
8422 F:      drivers/net/ethernet/ibm/ibmvnic.*
8423
8424 IBM Power Virtual Accelerator Switchboard
8425 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8426 L:      linuxppc-dev@lists.ozlabs.org
8427 S:      Supported
8428 F:      arch/powerpc/include/asm/vas.h
8429 F:      arch/powerpc/platforms/powernv/copy-paste.h
8430 F:      arch/powerpc/platforms/powernv/vas*
8431
8432 IBM Power Virtual Ethernet Device Driver
8433 M:      Cristobal Forno <cforno12@linux.ibm.com>
8434 L:      netdev@vger.kernel.org
8435 S:      Supported
8436 F:      drivers/net/ethernet/ibm/ibmveth.*
8437
8438 IBM Power Virtual FC Device Drivers
8439 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8440 L:      linux-scsi@vger.kernel.org
8441 S:      Supported
8442 F:      drivers/scsi/ibmvscsi/ibmvfc*
8443
8444 IBM Power Virtual Management Channel Driver
8445 M:      Steven Royer <seroyer@linux.ibm.com>
8446 S:      Supported
8447 F:      drivers/misc/ibmvmc.*
8448
8449 IBM Power Virtual SCSI Device Drivers
8450 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8451 L:      linux-scsi@vger.kernel.org
8452 S:      Supported
8453 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8454 F:      include/scsi/viosrp.h
8455
8456 IBM Power Virtual SCSI Device Target Driver
8457 M:      Michael Cyr <mikecyr@linux.ibm.com>
8458 L:      linux-scsi@vger.kernel.org
8459 L:      target-devel@vger.kernel.org
8460 S:      Supported
8461 F:      drivers/scsi/ibmvscsi_tgt/
8462
8463 IBM Power VMX Cryptographic instructions
8464 M:      Breno Leitão <leitao@debian.org>
8465 M:      Nayna Jain <nayna@linux.ibm.com>
8466 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8467 L:      linux-crypto@vger.kernel.org
8468 S:      Supported
8469 F:      drivers/crypto/vmx/Kconfig
8470 F:      drivers/crypto/vmx/Makefile
8471 F:      drivers/crypto/vmx/aes*
8472 F:      drivers/crypto/vmx/ghash*
8473 F:      drivers/crypto/vmx/ppc-xlate.pl
8474 F:      drivers/crypto/vmx/vmx.c
8475
8476 IBM ServeRAID RAID DRIVER
8477 S:      Orphan
8478 F:      drivers/scsi/ips.*
8479
8480 ICH LPC AND GPIO DRIVER
8481 M:      Peter Tyser <ptyser@xes-inc.com>
8482 S:      Maintained
8483 F:      drivers/gpio/gpio-ich.c
8484 F:      drivers/mfd/lpc_ich.c
8485
8486 ICY I2C DRIVER
8487 M:      Max Staudt <max@enpas.org>
8488 L:      linux-i2c@vger.kernel.org
8489 S:      Maintained
8490 F:      drivers/i2c/busses/i2c-icy.c
8491
8492 IDE SUBSYSTEM
8493 M:      "David S. Miller" <davem@davemloft.net>
8494 L:      linux-ide@vger.kernel.org
8495 S:      Maintained
8496 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8498 F:      Documentation/ide/
8499 F:      drivers/ide/
8500 F:      include/linux/ide.h
8501
8502 IDE/ATAPI DRIVERS
8503 M:      Borislav Petkov <bp@alien8.de>
8504 L:      linux-ide@vger.kernel.org
8505 S:      Maintained
8506 F:      Documentation/cdrom/ide-cd.rst
8507 F:      drivers/ide/ide-cd*
8508
8509 IDEAPAD LAPTOP EXTRAS DRIVER
8510 M:      Ike Panhc <ike.pan@canonical.com>
8511 L:      platform-driver-x86@vger.kernel.org
8512 S:      Maintained
8513 W:      http://launchpad.net/ideapad-laptop
8514 F:      drivers/platform/x86/ideapad-laptop.c
8515
8516 IDEAPAD LAPTOP SLIDEBAR DRIVER
8517 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
8518 L:      linux-input@vger.kernel.org
8519 S:      Maintained
8520 W:      https://github.com/o2genum/ideapad-slidebar
8521 F:      drivers/input/misc/ideapad_slidebar.c
8522
8523 IDT VersaClock 5 CLOCK DRIVER
8524 M:      Luca Ceresoli <luca@lucaceresoli.net>
8525 S:      Maintained
8526 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
8527 F:      drivers/clk/clk-versaclock5.c
8528
8529 IEEE 802.15.4 SUBSYSTEM
8530 M:      Alexander Aring <alex.aring@gmail.com>
8531 M:      Stefan Schmidt <stefan@datenfreihafen.org>
8532 L:      linux-wpan@vger.kernel.org
8533 S:      Maintained
8534 W:      https://linux-wpan.org/
8535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8537 F:      Documentation/networking/ieee802154.rst
8538 F:      drivers/net/ieee802154/
8539 F:      include/linux/ieee802154.h
8540 F:      include/linux/nl802154.h
8541 F:      include/net/af_ieee802154.h
8542 F:      include/net/cfg802154.h
8543 F:      include/net/ieee802154_netdev.h
8544 F:      include/net/mac802154.h
8545 F:      include/net/nl802154.h
8546 F:      net/ieee802154/
8547 F:      net/mac802154/
8548
8549 IFE PROTOCOL
8550 M:      Yotam Gigi <yotam.gi@gmail.com>
8551 M:      Jamal Hadi Salim <jhs@mojatatu.com>
8552 F:      include/net/ife.h
8553 F:      include/uapi/linux/ife.h
8554 F:      net/ife
8555
8556 IGORPLUG-USB IR RECEIVER
8557 M:      Sean Young <sean@mess.org>
8558 L:      linux-media@vger.kernel.org
8559 S:      Maintained
8560 F:      drivers/media/rc/igorplugusb.c
8561
8562 IGUANAWORKS USB IR TRANSCEIVER
8563 M:      Sean Young <sean@mess.org>
8564 L:      linux-media@vger.kernel.org
8565 S:      Maintained
8566 F:      drivers/media/rc/iguanair.c
8567
8568 IIO DIGITAL POTENTIOMETER DAC
8569 M:      Peter Rosin <peda@axentia.se>
8570 L:      linux-iio@vger.kernel.org
8571 S:      Maintained
8572 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8573 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8574 F:      drivers/iio/dac/dpot-dac.c
8575
8576 IIO ENVELOPE DETECTOR
8577 M:      Peter Rosin <peda@axentia.se>
8578 L:      linux-iio@vger.kernel.org
8579 S:      Maintained
8580 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8581 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8582 F:      drivers/iio/adc/envelope-detector.c
8583
8584 IIO MULTIPLEXER
8585 M:      Peter Rosin <peda@axentia.se>
8586 L:      linux-iio@vger.kernel.org
8587 S:      Maintained
8588 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8589 F:      drivers/iio/multiplexer/iio-mux.c
8590
8591 IIO SUBSYSTEM AND DRIVERS
8592 M:      Jonathan Cameron <jic23@kernel.org>
8593 R:      Lars-Peter Clausen <lars@metafoo.de>
8594 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
8595 L:      linux-iio@vger.kernel.org
8596 S:      Maintained
8597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8598 F:      Documentation/ABI/testing/configfs-iio*
8599 F:      Documentation/ABI/testing/sysfs-bus-iio*
8600 F:      Documentation/devicetree/bindings/iio/
8601 F:      drivers/iio/
8602 F:      drivers/staging/iio/
8603 F:      include/linux/iio/
8604 F:      tools/iio/
8605
8606 IIO UNIT CONVERTER
8607 M:      Peter Rosin <peda@axentia.se>
8608 L:      linux-iio@vger.kernel.org
8609 S:      Maintained
8610 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8611 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8612 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8613 F:      drivers/iio/afe/iio-rescale.c
8614
8615 IKANOS/ADI EAGLE ADSL USB DRIVER
8616 M:      Matthieu Castet <castet.matthieu@free.fr>
8617 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8618 S:      Maintained
8619 F:      drivers/usb/atm/ueagle-atm.c
8620
8621 IMGTEC ASCII LCD DRIVER
8622 M:      Paul Burton <paulburton@kernel.org>
8623 S:      Maintained
8624 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8625 F:      drivers/auxdisplay/img-ascii-lcd.c
8626
8627 IMGTEC IR DECODER DRIVER
8628 S:      Orphan
8629 F:      drivers/media/rc/img-ir/
8630
8631 IMON SOUNDGRAPH USB IR RECEIVER
8632 M:      Sean Young <sean@mess.org>
8633 L:      linux-media@vger.kernel.org
8634 S:      Maintained
8635 F:      drivers/media/rc/imon.c
8636 F:      drivers/media/rc/imon_raw.c
8637
8638 IMS TWINTURBO FRAMEBUFFER DRIVER
8639 L:      linux-fbdev@vger.kernel.org
8640 S:      Orphan
8641 F:      drivers/video/fbdev/imsttfb.c
8642
8643 INA209 HARDWARE MONITOR DRIVER
8644 M:      Guenter Roeck <linux@roeck-us.net>
8645 L:      linux-hwmon@vger.kernel.org
8646 S:      Maintained
8647 F:      Documentation/devicetree/bindings/hwmon/ina2xx.txt
8648 F:      Documentation/hwmon/ina209.rst
8649 F:      drivers/hwmon/ina209.c
8650
8651 INA2XX HARDWARE MONITOR DRIVER
8652 M:      Guenter Roeck <linux@roeck-us.net>
8653 L:      linux-hwmon@vger.kernel.org
8654 S:      Maintained
8655 F:      Documentation/hwmon/ina2xx.rst
8656 F:      drivers/hwmon/ina2xx.c
8657 F:      include/linux/platform_data/ina2xx.h
8658
8659 INDUSTRY PACK SUBSYSTEM (IPACK)
8660 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8661 M:      Jens Taprogge <jens.taprogge@taprogge.org>
8662 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8663 L:      industrypack-devel@lists.sourceforge.net
8664 S:      Maintained
8665 W:      http://industrypack.sourceforge.net
8666 F:      drivers/ipack/
8667
8668 INFINEON DPS310 Driver
8669 M:      Eddie James <eajames@linux.ibm.com>
8670 L:      linux-iio@vger.kernel.org
8671 S:      Maintained
8672 F:      drivers/iio/pressure/dps310.c
8673
8674 INFINIBAND SUBSYSTEM
8675 M:      Doug Ledford <dledford@redhat.com>
8676 M:      Jason Gunthorpe <jgg@nvidia.com>
8677 L:      linux-rdma@vger.kernel.org
8678 S:      Supported
8679 W:      https://github.com/linux-rdma/rdma-core
8680 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8682 F:      Documentation/devicetree/bindings/infiniband/
8683 F:      Documentation/infiniband/
8684 F:      drivers/infiniband/
8685 F:      include/rdma/
8686 F:      include/trace/events/ib_mad.h
8687 F:      include/trace/events/ib_umad.h
8688 F:      include/uapi/linux/if_infiniband.h
8689 F:      include/uapi/rdma/
8690 F:      samples/bpf/ibumad_kern.c
8691 F:      samples/bpf/ibumad_user.c
8692
8693 INGENIC JZ4780 DMA Driver
8694 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
8695 S:      Maintained
8696 F:      drivers/dma/dma-jz4780.c
8697
8698 INGENIC JZ4780 NAND DRIVER
8699 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
8700 L:      linux-mtd@lists.infradead.org
8701 S:      Maintained
8702 F:      drivers/mtd/nand/raw/ingenic/
8703
8704 INGENIC JZ47xx SoCs
8705 M:      Paul Cercueil <paul@crapouillou.net>
8706 S:      Maintained
8707 F:      arch/mips/boot/dts/ingenic/
8708 F:      arch/mips/generic/board-ingenic.c
8709 F:      arch/mips/include/asm/mach-ingenic/
8710 F:      arch/mips/ingenic/Kconfig
8711 F:      drivers/clk/ingenic/
8712 F:      drivers/dma/dma-jz4780.c
8713 F:      drivers/gpu/drm/ingenic/
8714 F:      drivers/i2c/busses/i2c-jz4780.c
8715 F:      drivers/iio/adc/ingenic-adc.c
8716 F:      drivers/irqchip/irq-ingenic.c
8717 F:      drivers/memory/jz4780-nemc.c
8718 F:      drivers/mmc/host/jz4740_mmc.c
8719 F:      drivers/mtd/nand/raw/ingenic/
8720 F:      drivers/pinctrl/pinctrl-ingenic.c
8721 F:      drivers/power/supply/ingenic-battery.c
8722 F:      drivers/pwm/pwm-jz4740.c
8723 F:      drivers/remoteproc/ingenic_rproc.c
8724 F:      drivers/rtc/rtc-jz4740.c
8725 F:      drivers/tty/serial/8250/8250_ingenic.c
8726 F:      drivers/usb/musb/jz4740.c
8727 F:      drivers/watchdog/jz4740_wdt.c
8728 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8729 F:      include/linux/mfd/ingenic-tcu.h
8730 F:      sound/soc/codecs/jz47*
8731 F:      sound/soc/jz4740/
8732
8733 INOTIFY
8734 M:      Jan Kara <jack@suse.cz>
8735 R:      Amir Goldstein <amir73il@gmail.com>
8736 L:      linux-fsdevel@vger.kernel.org
8737 S:      Maintained
8738 F:      Documentation/filesystems/inotify.rst
8739 F:      fs/notify/inotify/
8740 F:      include/linux/inotify.h
8741 F:      include/uapi/linux/inotify.h
8742
8743 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8744 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
8745 L:      linux-input@vger.kernel.org
8746 S:      Maintained
8747 Q:      http://patchwork.kernel.org/project/linux-input/list/
8748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8749 F:      Documentation/devicetree/bindings/input/
8750 F:      Documentation/devicetree/bindings/serio/
8751 F:      Documentation/input/
8752 F:      drivers/input/
8753 F:      include/linux/input.h
8754 F:      include/linux/input/
8755 F:      include/uapi/linux/input-event-codes.h
8756 F:      include/uapi/linux/input.h
8757
8758 INPUT MULTITOUCH (MT) PROTOCOL
8759 M:      Henrik Rydberg <rydberg@bitmath.org>
8760 L:      linux-input@vger.kernel.org
8761 S:      Odd fixes
8762 F:      Documentation/input/multi-touch-protocol.rst
8763 F:      drivers/input/input-mt.c
8764 K:      \b(ABS|SYN)_MT_
8765
8766 INSIDE SECURE CRYPTO DRIVER
8767 M:      Antoine Tenart <atenart@kernel.org>
8768 L:      linux-crypto@vger.kernel.org
8769 S:      Maintained
8770 F:      drivers/crypto/inside-secure/
8771
8772 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8773 M:      Mimi Zohar <zohar@linux.ibm.com>
8774 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
8775 L:      linux-integrity@vger.kernel.org
8776 S:      Supported
8777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8778 F:      security/integrity/ima/
8779
8780 INTEL 810/815 FRAMEBUFFER DRIVER
8781 M:      Antonino Daplas <adaplas@gmail.com>
8782 L:      linux-fbdev@vger.kernel.org
8783 S:      Maintained
8784 F:      drivers/video/fbdev/i810/
8785
8786 INTEL ASoC DRIVERS
8787 M:      Cezary Rojewski <cezary.rojewski@intel.com>
8788 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
8789 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
8790 M:      Jie Yang <yang.jie@linux.intel.com>
8791 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8792 S:      Supported
8793 F:      sound/soc/intel/
8794
8795 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8796 M:      Hans de Goede <hdegoede@redhat.com>
8797 L:      platform-driver-x86@vger.kernel.org
8798 S:      Maintained
8799 F:      drivers/platform/x86/intel_atomisp2_pm.c
8800
8801 INTEL ATOMISP2 LED DRIVER
8802 M:      Hans de Goede <hdegoede@redhat.com>
8803 L:      platform-driver-x86@vger.kernel.org
8804 S:      Maintained
8805 F:      drivers/platform/x86/intel_atomisp2_led.c
8806
8807 INTEL BROXTON PMC DRIVER
8808 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8809 M:      Zha Qipeng <qipeng.zha@intel.com>
8810 S:      Maintained
8811 F:      drivers/mfd/intel_pmc_bxt.c
8812 F:      include/linux/mfd/intel_pmc_bxt.h
8813
8814 INTEL C600 SERIES SAS CONTROLLER DRIVER
8815 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
8816 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
8817 L:      linux-scsi@vger.kernel.org
8818 S:      Supported
8819 T:      git git://git.code.sf.net/p/intel-sas/isci
8820 F:      drivers/scsi/isci/
8821
8822 INTEL CPU family model numbers
8823 M:      Tony Luck <tony.luck@intel.com>
8824 M:      x86@kernel.org
8825 L:      linux-kernel@vger.kernel.org
8826 S:      Supported
8827 F:      arch/x86/include/asm/intel-family.h
8828
8829 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8830 M:      Jani Nikula <jani.nikula@linux.intel.com>
8831 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
8832 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
8833 L:      intel-gfx@lists.freedesktop.org
8834 S:      Supported
8835 W:      https://01.org/linuxgraphics/
8836 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8837 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
8838 C:      irc://chat.freenode.net/intel-gfx
8839 T:      git git://anongit.freedesktop.org/drm-intel
8840 F:      Documentation/gpu/i915.rst
8841 F:      drivers/gpu/drm/i915/
8842 F:      include/drm/i915*
8843 F:      include/uapi/drm/i915_drm.h
8844
8845 INTEL ETHERNET DRIVERS
8846 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
8847 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
8848 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
8849 S:      Supported
8850 W:      http://www.intel.com/support/feedback.htm
8851 W:      http://e1000.sourceforge.net/
8852 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
8854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
8855 F:      Documentation/networking/device_drivers/ethernet/intel/
8856 F:      drivers/net/ethernet/intel/
8857 F:      drivers/net/ethernet/intel/*/
8858 F:      include/linux/avf/virtchnl.h
8859
8860 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8861 M:      Maik Broemme <mbroemme@libmpq.org>
8862 L:      linux-fbdev@vger.kernel.org
8863 S:      Maintained
8864 F:      Documentation/fb/intelfb.rst
8865 F:      drivers/video/fbdev/intelfb/
8866
8867 INTEL GPIO DRIVERS
8868 M:      Andy Shevchenko <andy@kernel.org>
8869 L:      linux-gpio@vger.kernel.org
8870 S:      Maintained
8871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8872 F:      drivers/gpio/gpio-ich.c
8873 F:      drivers/gpio/gpio-intel-mid.c
8874 F:      drivers/gpio/gpio-merrifield.c
8875 F:      drivers/gpio/gpio-ml-ioh.c
8876 F:      drivers/gpio/gpio-pch.c
8877 F:      drivers/gpio/gpio-sch.c
8878 F:      drivers/gpio/gpio-sodaville.c
8879
8880 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8881 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
8882 M:      Zhi Wang <zhi.a.wang@intel.com>
8883 L:      intel-gvt-dev@lists.freedesktop.org
8884 L:      intel-gfx@lists.freedesktop.org
8885 S:      Supported
8886 W:      https://01.org/igvt-g
8887 T:      git https://github.com/intel/gvt-linux.git
8888 F:      drivers/gpu/drm/i915/gvt/
8889
8890 INTEL HID EVENT DRIVER
8891 M:      Alex Hung <alex.hung@canonical.com>
8892 L:      platform-driver-x86@vger.kernel.org
8893 S:      Maintained
8894 F:      drivers/platform/x86/intel-hid.c
8895
8896 INTEL I/OAT DMA DRIVER
8897 M:      Dave Jiang <dave.jiang@intel.com>
8898 R:      Dan Williams <dan.j.williams@intel.com>
8899 L:      dmaengine@vger.kernel.org
8900 S:      Supported
8901 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8902 F:      drivers/dma/ioat*
8903
8904 INTEL IADX DRIVER
8905 M:      Dave Jiang <dave.jiang@intel.com>
8906 L:      dmaengine@vger.kernel.org
8907 S:      Supported
8908 F:      drivers/dma/idxd/*
8909 F:      include/uapi/linux/idxd.h
8910
8911 INTEL IDLE DRIVER
8912 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
8913 M:      Len Brown <lenb@kernel.org>
8914 L:      linux-pm@vger.kernel.org
8915 S:      Supported
8916 B:      https://bugzilla.kernel.org
8917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8918 F:      drivers/idle/intel_idle.c
8919
8920 INTEL INTEGRATED SENSOR HUB DRIVER
8921 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8922 M:      Jiri Kosina <jikos@kernel.org>
8923 L:      linux-input@vger.kernel.org
8924 S:      Maintained
8925 F:      drivers/hid/intel-ish-hid/
8926
8927 INTEL IOMMU (VT-d)
8928 M:      David Woodhouse <dwmw2@infradead.org>
8929 M:      Lu Baolu <baolu.lu@linux.intel.com>
8930 L:      iommu@lists.linux-foundation.org
8931 S:      Supported
8932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8933 F:      drivers/iommu/intel/
8934 F:      include/linux/intel-iommu.h
8935 F:      include/linux/intel-svm.h
8936
8937 INTEL IOP-ADMA DMA DRIVER
8938 R:      Dan Williams <dan.j.williams@intel.com>
8939 S:      Odd fixes
8940 F:      drivers/dma/iop-adma.c
8941
8942 INTEL IPU3 CSI-2 CIO2 DRIVER
8943 M:      Yong Zhi <yong.zhi@intel.com>
8944 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8945 M:      Bingbu Cao <bingbu.cao@intel.com>
8946 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
8947 L:      linux-media@vger.kernel.org
8948 S:      Maintained
8949 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
8950 F:      drivers/media/pci/intel/ipu3/
8951
8952 INTEL IPU3 CSI-2 IMGU DRIVER
8953 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8954 R:      Bingbu Cao <bingbu.cao@intel.com>
8955 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
8956 L:      linux-media@vger.kernel.org
8957 S:      Maintained
8958 F:      Documentation/admin-guide/media/ipu3.rst
8959 F:      Documentation/admin-guide/media/ipu3_rcb.svg
8960 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
8961 F:      drivers/staging/media/ipu3/
8962
8963 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8964 M:      Krzysztof Halasa <khalasa@piap.pl>
8965 S:      Maintained
8966 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
8967 F:      drivers/net/wan/ixp4xx_hss.c
8968 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
8969 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
8970 F:      include/linux/soc/ixp4xx/npe.h
8971 F:      include/linux/soc/ixp4xx/qmgr.h
8972
8973 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
8974 M:      Deepak Saxena <dsaxena@plexity.net>
8975 S:      Maintained
8976 F:      drivers/char/hw_random/ixp4xx-rng.c
8977
8978 INTEL KEEMBAY DRM DRIVER
8979 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
8980 M:      Edmund Dea <edmund.j.dea@intel.com>
8981 S:      Maintained
8982 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
8983 F:      drivers/gpu/drm/kmb/
8984
8985 INTEL MANAGEMENT ENGINE (mei)
8986 M:      Tomas Winkler <tomas.winkler@intel.com>
8987 L:      linux-kernel@vger.kernel.org
8988 S:      Supported
8989 F:      Documentation/driver-api/mei/*
8990 F:      drivers/misc/mei/
8991 F:      drivers/watchdog/mei_wdt.c
8992 F:      include/linux/mei_cl_bus.h
8993 F:      include/uapi/linux/mei.h
8994 F:      samples/mei/*
8995
8996 INTEL MENLOW THERMAL DRIVER
8997 M:      Sujith Thomas <sujith.thomas@intel.com>
8998 L:      platform-driver-x86@vger.kernel.org
8999 S:      Supported
9000 W:      https://01.org/linux-acpi
9001 F:      drivers/platform/x86/intel_menlow.c
9002
9003 INTEL P-Unit IPC DRIVER
9004 M:      Zha Qipeng <qipeng.zha@intel.com>
9005 L:      platform-driver-x86@vger.kernel.org
9006 S:      Maintained
9007 F:      arch/x86/include/asm/intel_punit_ipc.h
9008 F:      drivers/platform/x86/intel_punit_ipc.c
9009
9010 INTEL PMC CORE DRIVER
9011 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9012 M:      David E Box <david.e.box@intel.com>
9013 L:      platform-driver-x86@vger.kernel.org
9014 S:      Maintained
9015 F:      drivers/platform/x86/intel_pmc_core*
9016
9017 INTEL PMIC GPIO DRIVERS
9018 M:      Andy Shevchenko <andy@kernel.org>
9019 S:      Maintained
9020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9021 F:      drivers/gpio/gpio-*cove.c
9022 F:      drivers/gpio/gpio-msic.c
9023
9024 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9025 M:      Andy Shevchenko <andy@kernel.org>
9026 S:      Maintained
9027 F:      drivers/mfd/intel_msic.c
9028 F:      drivers/mfd/intel_soc_pmic*
9029 F:      include/linux/mfd/intel_msic.h
9030 F:      include/linux/mfd/intel_soc_pmic*
9031
9032 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9033 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9034 L:      linux-wireless@vger.kernel.org
9035 S:      Maintained
9036 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9037 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9038 F:      drivers/net/wireless/intel/ipw2x00/
9039
9040 INTEL PSTATE DRIVER
9041 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9042 M:      Len Brown <lenb@kernel.org>
9043 L:      linux-pm@vger.kernel.org
9044 S:      Supported
9045 F:      drivers/cpufreq/intel_pstate.c
9046
9047 INTEL RDMA RNIC DRIVER
9048 M:      Faisal Latif <faisal.latif@intel.com>
9049 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9050 L:      linux-rdma@vger.kernel.org
9051 S:      Supported
9052 F:      drivers/infiniband/hw/i40iw/
9053 F:      include/uapi/rdma/i40iw-abi.h
9054
9055 INTEL SCU DRIVERS
9056 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9057 S:      Maintained
9058 F:      arch/x86/include/asm/intel_scu_ipc.h
9059 F:      drivers/platform/x86/intel_scu_*
9060
9061 INTEL SPEED SELECT TECHNOLOGY
9062 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9063 L:      platform-driver-x86@vger.kernel.org
9064 S:      Maintained
9065 F:      drivers/platform/x86/intel_speed_select_if/
9066 F:      include/uapi/linux/isst_if.h
9067 F:      tools/power/x86/intel-speed-select/
9068
9069 INTEL STRATIX10 FIRMWARE DRIVERS
9070 M:      Richard Gong <richard.gong@linux.intel.com>
9071 L:      linux-kernel@vger.kernel.org
9072 S:      Maintained
9073 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9074 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9075 F:      drivers/firmware/stratix10-rsu.c
9076 F:      drivers/firmware/stratix10-svc.c
9077 F:      include/linux/firmware/intel/stratix10-smc.h
9078 F:      include/linux/firmware/intel/stratix10-svc-client.h
9079
9080 INTEL TELEMETRY DRIVER
9081 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
9082 M:      "David E. Box" <david.e.box@linux.intel.com>
9083 L:      platform-driver-x86@vger.kernel.org
9084 S:      Maintained
9085 F:      arch/x86/include/asm/intel_telemetry.h
9086 F:      drivers/platform/x86/intel_telemetry*
9087
9088 INTEL UNCORE FREQUENCY CONTROL
9089 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9090 L:      platform-driver-x86@vger.kernel.org
9091 S:      Maintained
9092 F:      drivers/platform/x86/intel-uncore-frequency.c
9093
9094 INTEL VIRTUAL BUTTON DRIVER
9095 M:      AceLan Kao <acelan.kao@canonical.com>
9096 L:      platform-driver-x86@vger.kernel.org
9097 S:      Maintained
9098 F:      drivers/platform/x86/intel-vbtn.c
9099
9100 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9101 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9102 L:      linux-wireless@vger.kernel.org
9103 S:      Supported
9104 F:      drivers/net/wireless/intel/iwlegacy/
9105
9106 INTEL WIRELESS WIFI LINK (iwlwifi)
9107 M:      Luca Coelho <luciano.coelho@intel.com>
9108 L:      linux-wireless@vger.kernel.org
9109 S:      Supported
9110 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9112 F:      drivers/net/wireless/intel/iwlwifi/
9113
9114 INTEL WIRELESS WIMAX CONNECTION 2400
9115 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
9116 M:      linux-wimax@intel.com
9117 L:      wimax@linuxwimax.org (subscribers-only)
9118 S:      Supported
9119 W:      http://linuxwimax.org
9120 F:      Documentation/admin-guide/wimax/i2400m.rst
9121 F:      drivers/net/wimax/i2400m/
9122 F:      include/uapi/linux/wimax/i2400m.h
9123
9124 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9125 M:      Jithu Joseph <jithu.joseph@intel.com>
9126 R:      Maurice Ma <maurice.ma@intel.com>
9127 S:      Maintained
9128 W:      https://slimbootloader.github.io/security/firmware-update.html
9129 F:      drivers/platform/x86/intel-wmi-sbl-fw-update.c
9130
9131 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9132 M:      Mario Limonciello <mario.limonciello@dell.com>
9133 S:      Maintained
9134 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
9135
9136 INTEL(R) TRACE HUB
9137 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9138 S:      Supported
9139 F:      Documentation/trace/intel_th.rst
9140 F:      drivers/hwtracing/intel_th/
9141 F:      include/linux/intel_th.h
9142
9143 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9144 M:      Ning Sun <ning.sun@intel.com>
9145 L:      tboot-devel@lists.sourceforge.net
9146 S:      Supported
9147 W:      http://tboot.sourceforge.net
9148 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9149 F:      Documentation/x86/intel_txt.rst
9150 F:      arch/x86/kernel/tboot.c
9151 F:      include/linux/tboot.h
9152
9153 INTERCONNECT API
9154 M:      Georgi Djakov <georgi.djakov@linaro.org>
9155 L:      linux-pm@vger.kernel.org
9156 S:      Maintained
9157 F:      Documentation/devicetree/bindings/interconnect/
9158 F:      Documentation/driver-api/interconnect.rst
9159 F:      drivers/interconnect/
9160 F:      include/dt-bindings/interconnect/
9161 F:      include/linux/interconnect-provider.h
9162 F:      include/linux/interconnect.h
9163
9164 INVENSENSE ICM-426xx IMU DRIVER
9165 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9166 L:      linux-iio@vger.kernel.org
9167 S:      Maintained
9168 W       https://invensense.tdk.com/
9169 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9170 F:      drivers/iio/imu/inv_icm42600/
9171
9172 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9173 M:      Linus Walleij <linus.walleij@linaro.org>
9174 L:      linux-iio@vger.kernel.org
9175 S:      Maintained
9176 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
9177 F:      drivers/iio/gyro/mpu3050*
9178
9179 IOC3 ETHERNET DRIVER
9180 M:      Ralf Baechle <ralf@linux-mips.org>
9181 L:      linux-mips@vger.kernel.org
9182 S:      Maintained
9183 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9184
9185 IOMAP FILESYSTEM LIBRARY
9186 M:      Christoph Hellwig <hch@infradead.org>
9187 M:      Darrick J. Wong <darrick.wong@oracle.com>
9188 M:      linux-xfs@vger.kernel.org
9189 M:      linux-fsdevel@vger.kernel.org
9190 L:      linux-xfs@vger.kernel.org
9191 L:      linux-fsdevel@vger.kernel.org
9192 S:      Supported
9193 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9194 F:      fs/iomap/
9195 F:      include/linux/iomap.h
9196
9197 IOMMU DRIVERS
9198 M:      Joerg Roedel <joro@8bytes.org>
9199 M:      Will Deacon <will@kernel.org>
9200 L:      iommu@lists.linux-foundation.org
9201 S:      Maintained
9202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9203 F:      Documentation/devicetree/bindings/iommu/
9204 F:      Documentation/userspace-api/iommu.rst
9205 F:      drivers/iommu/
9206 F:      include/linux/iommu.h
9207 F:      include/linux/iova.h
9208 F:      include/linux/of_iommu.h
9209 F:      include/uapi/linux/iommu.h
9210
9211 IO_URING
9212 M:      Jens Axboe <axboe@kernel.dk>
9213 L:      io-uring@vger.kernel.org
9214 S:      Maintained
9215 T:      git git://git.kernel.dk/linux-block
9216 T:      git git://git.kernel.dk/liburing
9217 F:      fs/io-wq.c
9218 F:      fs/io-wq.h
9219 F:      fs/io_uring.c
9220 F:      include/uapi/linux/io_uring.h
9221
9222 IPMI SUBSYSTEM
9223 M:      Corey Minyard <minyard@acm.org>
9224 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9225 S:      Supported
9226 W:      http://openipmi.sourceforge.net/
9227 F:      Documentation/driver-api/ipmi.rst
9228 F:      Documentation/devicetree/bindings/ipmi/
9229 F:      drivers/char/ipmi/
9230 F:      include/linux/ipmi*
9231 F:      include/uapi/linux/ipmi*
9232
9233 IPS SCSI RAID DRIVER
9234 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9235 L:      linux-scsi@vger.kernel.org
9236 S:      Maintained
9237 W:      http://www.adaptec.com/
9238 F:      drivers/scsi/ips*
9239
9240 IPVS
9241 M:      Wensong Zhang <wensong@linux-vs.org>
9242 M:      Simon Horman <horms@verge.net.au>
9243 M:      Julian Anastasov <ja@ssi.bg>
9244 L:      netdev@vger.kernel.org
9245 L:      lvs-devel@vger.kernel.org
9246 S:      Maintained
9247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9249 F:      Documentation/networking/ipvs-sysctl.rst
9250 F:      include/net/ip_vs.h
9251 F:      include/uapi/linux/ip_vs.h
9252 F:      net/netfilter/ipvs/
9253
9254 IPWIRELESS DRIVER
9255 M:      Jiri Kosina <jikos@kernel.org>
9256 M:      David Sterba <dsterba@suse.com>
9257 S:      Odd Fixes
9258 F:      drivers/tty/ipwireless/
9259
9260 IPX NETWORK LAYER
9261 L:      netdev@vger.kernel.org
9262 S:      Obsolete
9263 F:      include/uapi/linux/ipx.h
9264
9265 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9266 M:      Marc Zyngier <maz@kernel.org>
9267 S:      Maintained
9268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9269 F:      Documentation/core-api/irq/irq-domain.rst
9270 F:      include/linux/irqdomain.h
9271 F:      kernel/irq/irqdomain.c
9272 F:      kernel/irq/msi.c
9273
9274 IRQ SUBSYSTEM
9275 M:      Thomas Gleixner <tglx@linutronix.de>
9276 L:      linux-kernel@vger.kernel.org
9277 S:      Maintained
9278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9279 F:      kernel/irq/
9280
9281 IRQCHIP DRIVERS
9282 M:      Thomas Gleixner <tglx@linutronix.de>
9283 M:      Marc Zyngier <maz@kernel.org>
9284 L:      linux-kernel@vger.kernel.org
9285 S:      Maintained
9286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9287 F:      Documentation/devicetree/bindings/interrupt-controller/
9288 F:      drivers/irqchip/
9289
9290 ISA
9291 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9292 S:      Maintained
9293 F:      Documentation/driver-api/isa.rst
9294 F:      drivers/base/isa.c
9295 F:      include/linux/isa.h
9296
9297 ISA RADIO MODULE
9298 M:      Hans Verkuil <hverkuil@xs4all.nl>
9299 L:      linux-media@vger.kernel.org
9300 S:      Maintained
9301 W:      https://linuxtv.org
9302 T:      git git://linuxtv.org/media_tree.git
9303 F:      drivers/media/radio/radio-isa*
9304
9305 ISAPNP
9306 M:      Jaroslav Kysela <perex@perex.cz>
9307 S:      Maintained
9308 F:      Documentation/driver-api/isapnp.rst
9309 F:      drivers/pnp/isapnp/
9310 F:      include/linux/isapnp.h
9311
9312 ISCSI
9313 M:      Lee Duncan <lduncan@suse.com>
9314 M:      Chris Leech <cleech@redhat.com>
9315 L:      open-iscsi@googlegroups.com
9316 L:      linux-scsi@vger.kernel.org
9317 S:      Maintained
9318 W:      www.open-iscsi.com
9319 F:      drivers/scsi/*iscsi*
9320 F:      include/scsi/*iscsi*
9321
9322 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9323 M:      Peter Jones <pjones@redhat.com>
9324 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
9325 S:      Maintained
9326 F:      drivers/firmware/iscsi_ibft*
9327
9328 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9329 M:      Sagi Grimberg <sagi@grimberg.me>
9330 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
9331 L:      linux-rdma@vger.kernel.org
9332 S:      Supported
9333 W:      http://www.openfabrics.org
9334 W:      www.open-iscsi.org
9335 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9336 F:      drivers/infiniband/ulp/iser/
9337
9338 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9339 M:      Sagi Grimberg <sagi@grimberg.me>
9340 L:      linux-rdma@vger.kernel.org
9341 L:      target-devel@vger.kernel.org
9342 S:      Supported
9343 W:      http://www.linux-iscsi.org
9344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9345 F:      drivers/infiniband/ulp/isert
9346
9347 ISDN/CMTP OVER BLUETOOTH
9348 M:      Karsten Keil <isdn@linux-pingi.de>
9349 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9350 L:      netdev@vger.kernel.org
9351 S:      Odd Fixes
9352 W:      http://www.isdn4linux.de
9353 F:      Documentation/isdn/
9354 F:      drivers/isdn/capi/
9355 F:      include/linux/isdn/
9356 F:      include/uapi/linux/isdn/
9357 F:      net/bluetooth/cmtp/
9358
9359 ISDN/mISDN SUBSYSTEM
9360 M:      Karsten Keil <isdn@linux-pingi.de>
9361 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9362 L:      netdev@vger.kernel.org
9363 S:      Maintained
9364 W:      http://www.isdn4linux.de
9365 F:      drivers/isdn/Kconfig
9366 F:      drivers/isdn/Makefile
9367 F:      drivers/isdn/hardware/
9368 F:      drivers/isdn/mISDN/
9369
9370 IT87 HARDWARE MONITORING DRIVER
9371 M:      Jean Delvare <jdelvare@suse.com>
9372 L:      linux-hwmon@vger.kernel.org
9373 S:      Maintained
9374 F:      Documentation/hwmon/it87.rst
9375 F:      drivers/hwmon/it87.c
9376
9377 IT913X MEDIA DRIVER
9378 M:      Antti Palosaari <crope@iki.fi>
9379 L:      linux-media@vger.kernel.org
9380 S:      Maintained
9381 W:      https://linuxtv.org
9382 W:      http://palosaari.fi/linux/
9383 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9384 T:      git git://linuxtv.org/anttip/media_tree.git
9385 F:      drivers/media/tuners/it913x*
9386
9387 IVTV VIDEO4LINUX DRIVER
9388 M:      Andy Walls <awalls@md.metrocast.net>
9389 L:      linux-media@vger.kernel.org
9390 S:      Maintained
9391 W:      https://linuxtv.org
9392 T:      git git://linuxtv.org/media_tree.git
9393 F:      Documentation/admin-guide/media/ivtv*
9394 F:      drivers/media/pci/ivtv/
9395 F:      include/uapi/linux/ivtv*
9396
9397 IX2505V MEDIA DRIVER
9398 M:      Malcolm Priestley <tvboxspy@gmail.com>
9399 L:      linux-media@vger.kernel.org
9400 S:      Maintained
9401 W:      https://linuxtv.org
9402 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9403 F:      drivers/media/dvb-frontends/ix2505v*
9404
9405 JAILHOUSE HYPERVISOR INTERFACE
9406 M:      Jan Kiszka <jan.kiszka@siemens.com>
9407 L:      jailhouse-dev@googlegroups.com
9408 S:      Maintained
9409 F:      arch/x86/include/asm/jailhouse_para.h
9410 F:      arch/x86/kernel/jailhouse.c
9411
9412 JC42.4 TEMPERATURE SENSOR DRIVER
9413 M:      Guenter Roeck <linux@roeck-us.net>
9414 L:      linux-hwmon@vger.kernel.org
9415 S:      Maintained
9416 F:      Documentation/hwmon/jc42.rst
9417 F:      drivers/hwmon/jc42.c
9418
9419 JFS FILESYSTEM
9420 M:      Dave Kleikamp <shaggy@kernel.org>
9421 L:      jfs-discussion@lists.sourceforge.net
9422 S:      Maintained
9423 W:      http://jfs.sourceforge.net/
9424 T:      git git://github.com/kleikamp/linux-shaggy.git
9425 F:      Documentation/admin-guide/jfs.rst
9426 F:      fs/jfs/
9427
9428 JME NETWORK DRIVER
9429 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
9430 L:      netdev@vger.kernel.org
9431 S:      Maintained
9432 F:      drivers/net/ethernet/jme.*
9433
9434 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9435 M:      David Woodhouse <dwmw2@infradead.org>
9436 M:      Richard Weinberger <richard@nod.at>
9437 L:      linux-mtd@lists.infradead.org
9438 S:      Odd Fixes
9439 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9440 T:      git git://git.infradead.org/ubifs-2.6.git
9441 F:      fs/jffs2/
9442 F:      include/uapi/linux/jffs2.h
9443
9444 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9445 M:      "Theodore Ts'o" <tytso@mit.edu>
9446 M:      Jan Kara <jack@suse.com>
9447 L:      linux-ext4@vger.kernel.org
9448 S:      Maintained
9449 F:      fs/jbd2/
9450 F:      include/linux/jbd2.h
9451
9452 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9453 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9454 L:      linux-media@vger.kernel.org
9455 S:      Maintained
9456 F:      drivers/media/platform/rcar_jpu.c
9457
9458 JSM Neo PCI based serial card
9459 L:      linux-serial@vger.kernel.org
9460 S:      Orphan
9461 F:      drivers/tty/serial/jsm/
9462
9463 K10TEMP HARDWARE MONITORING DRIVER
9464 M:      Clemens Ladisch <clemens@ladisch.de>
9465 L:      linux-hwmon@vger.kernel.org
9466 S:      Maintained
9467 F:      Documentation/hwmon/k10temp.rst
9468 F:      drivers/hwmon/k10temp.c
9469
9470 K8TEMP HARDWARE MONITORING DRIVER
9471 M:      Rudolf Marek <r.marek@assembler.cz>
9472 L:      linux-hwmon@vger.kernel.org
9473 S:      Maintained
9474 F:      Documentation/hwmon/k8temp.rst
9475 F:      drivers/hwmon/k8temp.c
9476
9477 KASAN
9478 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
9479 R:      Alexander Potapenko <glider@google.com>
9480 R:      Dmitry Vyukov <dvyukov@google.com>
9481 L:      kasan-dev@googlegroups.com
9482 S:      Maintained
9483 F:      Documentation/dev-tools/kasan.rst
9484 F:      arch/*/include/asm/kasan.h
9485 F:      arch/*/mm/kasan_init*
9486 F:      include/linux/kasan*.h
9487 F:      lib/test_kasan.c
9488 F:      mm/kasan/
9489 F:      scripts/Makefile.kasan
9490
9491 KCONFIG
9492 M:      Masahiro Yamada <masahiroy@kernel.org>
9493 L:      linux-kbuild@vger.kernel.org
9494 S:      Maintained
9495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9496 F:      Documentation/kbuild/kconfig*
9497 F:      scripts/Kconfig.include
9498 F:      scripts/kconfig/
9499
9500 KCOV
9501 R:      Dmitry Vyukov <dvyukov@google.com>
9502 R:      Andrey Konovalov <andreyknvl@google.com>
9503 L:      kasan-dev@googlegroups.com
9504 S:      Maintained
9505 F:      Documentation/dev-tools/kcov.rst
9506 F:      include/linux/kcov.h
9507 F:      include/uapi/linux/kcov.h
9508 F:      kernel/kcov.c
9509 F:      scripts/Makefile.kcov
9510
9511 KCSAN
9512 M:      Marco Elver <elver@google.com>
9513 R:      Dmitry Vyukov <dvyukov@google.com>
9514 L:      kasan-dev@googlegroups.com
9515 S:      Maintained
9516 F:      Documentation/dev-tools/kcsan.rst
9517 F:      include/linux/kcsan*.h
9518 F:      kernel/kcsan/
9519 F:      lib/Kconfig.kcsan
9520 F:      scripts/Makefile.kcsan
9521
9522 KDUMP
9523 M:      Dave Young <dyoung@redhat.com>
9524 M:      Baoquan He <bhe@redhat.com>
9525 R:      Vivek Goyal <vgoyal@redhat.com>
9526 L:      kexec@lists.infradead.org
9527 S:      Maintained
9528 W:      http://lse.sourceforge.net/kdump/
9529 F:      Documentation/admin-guide/kdump/
9530 F:      fs/proc/vmcore.c
9531 F:      include/linux/crash_core.h
9532 F:      include/linux/crash_dump.h
9533 F:      include/uapi/linux/vmcore.h
9534 F:      kernel/crash_*.c
9535
9536 KEENE FM RADIO TRANSMITTER DRIVER
9537 M:      Hans Verkuil <hverkuil@xs4all.nl>
9538 L:      linux-media@vger.kernel.org
9539 S:      Maintained
9540 W:      https://linuxtv.org
9541 T:      git git://linuxtv.org/media_tree.git
9542 F:      drivers/media/radio/radio-keene*
9543
9544 KERNEL AUTOMOUNTER
9545 M:      Ian Kent <raven@themaw.net>
9546 L:      autofs@vger.kernel.org
9547 S:      Maintained
9548 F:      fs/autofs/
9549
9550 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9551 M:      Masahiro Yamada <masahiroy@kernel.org>
9552 M:      Michal Marek <michal.lkml@markovi.net>
9553 L:      linux-kbuild@vger.kernel.org
9554 S:      Maintained
9555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9556 F:      Documentation/kbuild/
9557 F:      Makefile
9558 F:      scripts/*vmlinux*
9559 F:      scripts/Kbuild*
9560 F:      scripts/Makefile*
9561 F:      scripts/basic/
9562 F:      scripts/mk*
9563 F:      scripts/mod/
9564 F:      scripts/package/
9565
9566 KERNEL JANITORS
9567 L:      kernel-janitors@vger.kernel.org
9568 S:      Odd Fixes
9569 W:      http://kernelnewbies.org/KernelJanitors
9570
9571 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9572 M:      "J. Bruce Fields" <bfields@fieldses.org>
9573 M:      Chuck Lever <chuck.lever@oracle.com>
9574 L:      linux-nfs@vger.kernel.org
9575 S:      Supported
9576 W:      http://nfs.sourceforge.net/
9577 T:      git git://linux-nfs.org/~bfields/linux.git
9578 F:      fs/lockd/
9579 F:      fs/nfs_common/
9580 F:      fs/nfsd/
9581 F:      include/linux/lockd/
9582 F:      include/linux/sunrpc/
9583 F:      include/uapi/linux/nfsd/
9584 F:      include/uapi/linux/sunrpc/
9585 F:      net/sunrpc/
9586 F:      Documentation/filesystems/nfs/
9587
9588 KERNEL SELFTEST FRAMEWORK
9589 M:      Shuah Khan <shuah@kernel.org>
9590 M:      Shuah Khan <skhan@linuxfoundation.org>
9591 L:      linux-kselftest@vger.kernel.org
9592 S:      Maintained
9593 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9595 F:      Documentation/dev-tools/kselftest*
9596 F:      tools/testing/selftests/
9597
9598 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9599 M:      Brendan Higgins <brendanhiggins@google.com>
9600 L:      linux-kselftest@vger.kernel.org
9601 L:      kunit-dev@googlegroups.com
9602 S:      Maintained
9603 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9604 F:      Documentation/dev-tools/kunit/
9605 F:      include/kunit/
9606 F:      lib/kunit/
9607 F:      tools/testing/kunit/
9608
9609 KERNEL USERMODE HELPER
9610 M:      Luis Chamberlain <mcgrof@kernel.org>
9611 L:      linux-kernel@vger.kernel.org
9612 S:      Maintained
9613 F:      include/linux/umh.h
9614 F:      kernel/umh.c
9615
9616 KERNEL VIRTUAL MACHINE (KVM)
9617 M:      Paolo Bonzini <pbonzini@redhat.com>
9618 L:      kvm@vger.kernel.org
9619 S:      Supported
9620 W:      http://www.linux-kvm.org
9621 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9622 F:      Documentation/virt/kvm/
9623 F:      include/asm-generic/kvm*
9624 F:      include/kvm/iodev.h
9625 F:      include/linux/kvm*
9626 F:      include/trace/events/kvm.h
9627 F:      include/uapi/asm-generic/kvm*
9628 F:      include/uapi/linux/kvm*
9629 F:      tools/kvm/
9630 F:      tools/testing/selftests/kvm/
9631 F:      virt/kvm/*
9632
9633 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9634 M:      Marc Zyngier <maz@kernel.org>
9635 R:      James Morse <james.morse@arm.com>
9636 R:      Julien Thierry <julien.thierry.kdev@gmail.com>
9637 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
9638 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9639 L:      kvmarm@lists.cs.columbia.edu
9640 S:      Maintained
9641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9642 F:      arch/arm64/include/asm/kvm*
9643 F:      arch/arm64/include/uapi/asm/kvm*
9644 F:      arch/arm64/kvm/
9645 F:      include/kvm/arm_*
9646
9647 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9648 M:      Huacai Chen <chenhc@lemote.com>
9649 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
9650 L:      linux-mips@vger.kernel.org
9651 L:      kvm@vger.kernel.org
9652 S:      Maintained
9653 F:      arch/mips/include/asm/kvm*
9654 F:      arch/mips/include/uapi/asm/kvm*
9655 F:      arch/mips/kvm/
9656
9657 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9658 M:      Paul Mackerras <paulus@ozlabs.org>
9659 L:      kvm-ppc@vger.kernel.org
9660 S:      Supported
9661 W:      http://www.linux-kvm.org/
9662 T:      git git://github.com/agraf/linux-2.6.git
9663 F:      arch/powerpc/include/asm/kvm*
9664 F:      arch/powerpc/include/uapi/asm/kvm*
9665 F:      arch/powerpc/kernel/kvm*
9666 F:      arch/powerpc/kvm/
9667
9668 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9669 M:      Christian Borntraeger <borntraeger@de.ibm.com>
9670 M:      Janosch Frank <frankja@linux.ibm.com>
9671 R:      David Hildenbrand <david@redhat.com>
9672 R:      Cornelia Huck <cohuck@redhat.com>
9673 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
9674 L:      kvm@vger.kernel.org
9675 S:      Supported
9676 W:      http://www.ibm.com/developerworks/linux/linux390/
9677 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9678 F:      Documentation/virt/kvm/s390*
9679 F:      arch/s390/include/asm/gmap.h
9680 F:      arch/s390/include/asm/kvm*
9681 F:      arch/s390/include/uapi/asm/kvm*
9682 F:      arch/s390/kernel/uv.c
9683 F:      arch/s390/kvm/
9684 F:      arch/s390/mm/gmap.c
9685 F:      tools/testing/selftests/kvm/*/s390x/
9686 F:      tools/testing/selftests/kvm/s390x/
9687
9688 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9689 M:      Paolo Bonzini <pbonzini@redhat.com>
9690 R:      Sean Christopherson <sean.j.christopherson@intel.com>
9691 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
9692 R:      Wanpeng Li <wanpengli@tencent.com>
9693 R:      Jim Mattson <jmattson@google.com>
9694 R:      Joerg Roedel <joro@8bytes.org>
9695 L:      kvm@vger.kernel.org
9696 S:      Supported
9697 W:      http://www.linux-kvm.org
9698 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9699 F:      arch/x86/include/asm/kvm*
9700 F:      arch/x86/include/asm/pvclock-abi.h
9701 F:      arch/x86/include/asm/svm.h
9702 F:      arch/x86/include/asm/vmx*.h
9703 F:      arch/x86/include/uapi/asm/kvm*
9704 F:      arch/x86/include/uapi/asm/svm.h
9705 F:      arch/x86/include/uapi/asm/vmx.h
9706 F:      arch/x86/kernel/kvm.c
9707 F:      arch/x86/kernel/kvmclock.c
9708 F:      arch/x86/kvm/
9709 F:      arch/x86/kvm/*/
9710
9711 KERNFS
9712 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9713 M:      Tejun Heo <tj@kernel.org>
9714 S:      Supported
9715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9716 F:      fs/kernfs/
9717 F:      include/linux/kernfs.h
9718
9719 KEXEC
9720 M:      Eric Biederman <ebiederm@xmission.com>
9721 L:      kexec@lists.infradead.org
9722 S:      Maintained
9723 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9724 F:      include/linux/kexec.h
9725 F:      include/uapi/linux/kexec.h
9726 F:      kernel/kexec*
9727
9728 KEYS-ENCRYPTED
9729 M:      Mimi Zohar <zohar@linux.ibm.com>
9730 L:      linux-integrity@vger.kernel.org
9731 L:      keyrings@vger.kernel.org
9732 S:      Supported
9733 F:      Documentation/security/keys/trusted-encrypted.rst
9734 F:      include/keys/encrypted-type.h
9735 F:      security/keys/encrypted-keys/
9736
9737 KEYS-TRUSTED
9738 M:      James Bottomley <jejb@linux.ibm.com>
9739 M:      Jarkko Sakkinen <jarkko@kernel.org>
9740 M:      Mimi Zohar <zohar@linux.ibm.com>
9741 L:      linux-integrity@vger.kernel.org
9742 L:      keyrings@vger.kernel.org
9743 S:      Supported
9744 F:      Documentation/security/keys/trusted-encrypted.rst
9745 F:      include/keys/trusted-type.h
9746 F:      include/keys/trusted_tpm.h
9747 F:      security/keys/trusted-keys/
9748
9749 KEYS/KEYRINGS
9750 M:      David Howells <dhowells@redhat.com>
9751 M:      Jarkko Sakkinen <jarkko@kernel.org>
9752 L:      keyrings@vger.kernel.org
9753 S:      Maintained
9754 F:      Documentation/security/keys/core.rst
9755 F:      include/keys/
9756 F:      include/linux/key-type.h
9757 F:      include/linux/key.h
9758 F:      include/linux/keyctl.h
9759 F:      include/uapi/linux/keyctl.h
9760 F:      security/keys/
9761
9762 KFIFO
9763 M:      Stefani Seibold <stefani@seibold.net>
9764 S:      Maintained
9765 F:      include/linux/kfifo.h
9766 F:      lib/kfifo.c
9767 F:      samples/kfifo/
9768
9769 KGDB / KDB /debug_core
9770 M:      Jason Wessel <jason.wessel@windriver.com>
9771 M:      Daniel Thompson <daniel.thompson@linaro.org>
9772 R:      Douglas Anderson <dianders@chromium.org>
9773 L:      kgdb-bugreport@lists.sourceforge.net
9774 S:      Maintained
9775 W:      http://kgdb.wiki.kernel.org/
9776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9777 F:      Documentation/dev-tools/kgdb.rst
9778 F:      drivers/misc/kgdbts.c
9779 F:      drivers/tty/serial/kgdboc.c
9780 F:      include/linux/kdb.h
9781 F:      include/linux/kgdb.h
9782 F:      kernel/debug/
9783
9784 KHADAS MCU MFD DRIVER
9785 M:      Neil Armstrong <narmstrong@baylibre.com>
9786 L:      linux-amlogic@lists.infradead.org
9787 S:      Maintained
9788 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
9789 F:      drivers/mfd/khadas-mcu.c
9790 F:      include/linux/mfd/khadas-mcu.h
9791 F:      drivers/thermal/khadas_mcu_fan.c
9792
9793 KMEMLEAK
9794 M:      Catalin Marinas <catalin.marinas@arm.com>
9795 S:      Maintained
9796 F:      Documentation/dev-tools/kmemleak.rst
9797 F:      include/linux/kmemleak.h
9798 F:      mm/kmemleak.c
9799 F:      samples/kmemleak/kmemleak-test.c
9800
9801 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9802 M:      Luis Chamberlain <mcgrof@kernel.org>
9803 L:      linux-kernel@vger.kernel.org
9804 S:      Maintained
9805 F:      include/linux/kmod.h
9806 F:      kernel/kmod.c
9807 F:      lib/test_kmod.c
9808 F:      tools/testing/selftests/kmod/
9809
9810 KPROBES
9811 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
9812 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9813 M:      "David S. Miller" <davem@davemloft.net>
9814 M:      Masami Hiramatsu <mhiramat@kernel.org>
9815 S:      Maintained
9816 F:      Documentation/trace/kprobes.rst
9817 F:      include/asm-generic/kprobes.h
9818 F:      include/linux/kprobes.h
9819 F:      kernel/kprobes.c
9820
9821 KS0108 LCD CONTROLLER DRIVER
9822 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
9823 S:      Maintained
9824 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9825 F:      drivers/auxdisplay/ks0108.c
9826 F:      include/linux/ks0108.h
9827
9828 KTD253 BACKLIGHT DRIVER
9829 M:      Linus Walleij <linus.walleij@linaro.org>
9830 S:      Maintained
9831 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
9832 F:      drivers/video/backlight/ktd253-backlight.c
9833
9834 L3MDEV
9835 M:      David Ahern <dsahern@kernel.org>
9836 L:      netdev@vger.kernel.org
9837 S:      Maintained
9838 F:      include/net/l3mdev.h
9839 F:      net/l3mdev
9840
9841 L7 BPF FRAMEWORK
9842 M:      John Fastabend <john.fastabend@gmail.com>
9843 M:      Daniel Borkmann <daniel@iogearbox.net>
9844 M:      Jakub Sitnicki <jakub@cloudflare.com>
9845 M:      Lorenz Bauer <lmb@cloudflare.com>
9846 L:      netdev@vger.kernel.org
9847 L:      bpf@vger.kernel.org
9848 S:      Maintained
9849 F:      include/linux/skmsg.h
9850 F:      net/core/skmsg.c
9851 F:      net/core/sock_map.c
9852 F:      net/ipv4/tcp_bpf.c
9853 F:      net/ipv4/udp_bpf.c
9854
9855 LANTIQ / INTEL Ethernet drivers
9856 M:      Hauke Mehrtens <hauke@hauke-m.de>
9857 L:      netdev@vger.kernel.org
9858 S:      Maintained
9859 F:      drivers/net/dsa/lantiq_gswip.c
9860 F:      drivers/net/dsa/lantiq_pce.h
9861 F:      drivers/net/ethernet/lantiq_xrx200.c
9862 F:      net/dsa/tag_gswip.c
9863
9864 LANTIQ MIPS ARCHITECTURE
9865 M:      John Crispin <john@phrozen.org>
9866 L:      linux-mips@vger.kernel.org
9867 S:      Maintained
9868 F:      arch/mips/lantiq
9869 F:      drivers/soc/lantiq
9870
9871 LASI 53c700 driver for PARISC
9872 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9873 L:      linux-scsi@vger.kernel.org
9874 S:      Maintained
9875 F:      Documentation/scsi/53c700.rst
9876 F:      drivers/scsi/53c700*
9877
9878 LEAKING_ADDRESSES
9879 M:      Tobin C. Harding <me@tobin.cc>
9880 M:      Tycho Andersen <tycho@tycho.pizza>
9881 L:      linux-hardening@vger.kernel.org
9882 S:      Maintained
9883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9884 F:      scripts/leaking_addresses.pl
9885
9886 LED SUBSYSTEM
9887 M:      Pavel Machek <pavel@ucw.cz>
9888 R:      Dan Murphy <dmurphy@ti.com>
9889 L:      linux-leds@vger.kernel.org
9890 S:      Maintained
9891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9892 F:      Documentation/devicetree/bindings/leds/
9893 F:      drivers/leds/
9894 F:      include/linux/leds.h
9895
9896 LEGACY EEPROM DRIVER
9897 M:      Jean Delvare <jdelvare@suse.com>
9898 S:      Maintained
9899 F:      Documentation/misc-devices/eeprom.rst
9900 F:      drivers/misc/eeprom/eeprom.c
9901
9902 LEGO MINDSTORMS EV3
9903 R:      David Lechner <david@lechnology.com>
9904 S:      Maintained
9905 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9906 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9907 F:      drivers/power/supply/lego_ev3_battery.c
9908
9909 LEGO USB Tower driver
9910 M:      Juergen Stuber <starblue@users.sourceforge.net>
9911 L:      legousb-devel@lists.sourceforge.net
9912 S:      Maintained
9913 W:      http://legousb.sourceforge.net/
9914 F:      drivers/usb/misc/legousbtower.c
9915
9916 LG LAPTOP EXTRAS
9917 M:      Matan Ziv-Av <matan@svgalib.org>
9918 L:      platform-driver-x86@vger.kernel.org
9919 S:      Maintained
9920 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9921 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9922 F:      drivers/platform/x86/lg-laptop.c
9923
9924 LG2160 MEDIA DRIVER
9925 M:      Michael Krufky <mkrufky@linuxtv.org>
9926 L:      linux-media@vger.kernel.org
9927 S:      Maintained
9928 W:      https://linuxtv.org
9929 W:      http://github.com/mkrufky
9930 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9931 T:      git git://linuxtv.org/mkrufky/tuners.git
9932 F:      drivers/media/dvb-frontends/lg2160.*
9933
9934 LGDT3305 MEDIA DRIVER
9935 M:      Michael Krufky <mkrufky@linuxtv.org>
9936 L:      linux-media@vger.kernel.org
9937 S:      Maintained
9938 W:      https://linuxtv.org
9939 W:      http://github.com/mkrufky
9940 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9941 T:      git git://linuxtv.org/mkrufky/tuners.git
9942 F:      drivers/media/dvb-frontends/lgdt3305.*
9943
9944 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9945 M:      Viresh Kumar <vireshk@kernel.org>
9946 L:      linux-ide@vger.kernel.org
9947 S:      Maintained
9948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9949 F:      drivers/ata/pata_arasan_cf.c
9950 F:      include/linux/pata_arasan_cf_data.h
9951
9952 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9953 M:      Linus Walleij <linus.walleij@linaro.org>
9954 L:      linux-ide@vger.kernel.org
9955 S:      Maintained
9956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9957 F:      drivers/ata/pata_ftide010.c
9958 F:      drivers/ata/sata_gemini.c
9959 F:      drivers/ata/sata_gemini.h
9960
9961 LIBATA SATA AHCI PLATFORM devices support
9962 M:      Hans de Goede <hdegoede@redhat.com>
9963 M:      Jens Axboe <axboe@kernel.dk>
9964 L:      linux-ide@vger.kernel.org
9965 S:      Maintained
9966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9967 F:      drivers/ata/ahci_platform.c
9968 F:      drivers/ata/libahci_platform.c
9969 F:      include/linux/ahci_platform.h
9970
9971 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
9972 M:      Mikael Pettersson <mikpelinux@gmail.com>
9973 L:      linux-ide@vger.kernel.org
9974 S:      Maintained
9975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9976 F:      drivers/ata/sata_promise.*
9977
9978 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
9979 M:      Jens Axboe <axboe@kernel.dk>
9980 L:      linux-ide@vger.kernel.org
9981 S:      Maintained
9982 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9983 F:      Documentation/devicetree/bindings/ata/
9984 F:      drivers/ata/
9985 F:      include/linux/ata.h
9986 F:      include/linux/libata.h
9987
9988 LIBLOCKDEP
9989 M:      Sasha Levin <alexander.levin@microsoft.com>
9990 S:      Maintained
9991 F:      tools/lib/lockdep/
9992
9993 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
9994 M:      Dan Williams <dan.j.williams@intel.com>
9995 M:      Vishal Verma <vishal.l.verma@intel.com>
9996 M:      Dave Jiang <dave.jiang@intel.com>
9997 L:      linux-nvdimm@lists.01.org
9998 S:      Supported
9999 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10000 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10001 F:      drivers/nvdimm/blk.c
10002 F:      drivers/nvdimm/region_devs.c
10003
10004 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10005 M:      Vishal Verma <vishal.l.verma@intel.com>
10006 M:      Dan Williams <dan.j.williams@intel.com>
10007 M:      Dave Jiang <dave.jiang@intel.com>
10008 L:      linux-nvdimm@lists.01.org
10009 S:      Supported
10010 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10011 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10012 F:      drivers/nvdimm/btt*
10013
10014 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10015 M:      Dan Williams <dan.j.williams@intel.com>
10016 M:      Vishal Verma <vishal.l.verma@intel.com>
10017 M:      Dave Jiang <dave.jiang@intel.com>
10018 L:      linux-nvdimm@lists.01.org
10019 S:      Supported
10020 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10021 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10022 F:      drivers/nvdimm/pmem*
10023
10024 LIBNVDIMM: DEVICETREE BINDINGS
10025 M:      Oliver O'Halloran <oohall@gmail.com>
10026 L:      linux-nvdimm@lists.01.org
10027 S:      Supported
10028 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10029 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10030 F:      drivers/nvdimm/of_pmem.c
10031
10032 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10033 M:      Dan Williams <dan.j.williams@intel.com>
10034 M:      Vishal Verma <vishal.l.verma@intel.com>
10035 M:      Dave Jiang <dave.jiang@intel.com>
10036 M:      Ira Weiny <ira.weiny@intel.com>
10037 L:      linux-nvdimm@lists.01.org
10038 S:      Supported
10039 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10040 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10042 F:      drivers/acpi/nfit/*
10043 F:      drivers/nvdimm/*
10044 F:      include/linux/libnvdimm.h
10045 F:      include/linux/nd.h
10046 F:      include/uapi/linux/ndctl.h
10047 F:      tools/testing/nvdimm/
10048
10049 LICENSES and SPDX stuff
10050 M:      Thomas Gleixner <tglx@linutronix.de>
10051 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10052 L:      linux-spdx@vger.kernel.org
10053 S:      Maintained
10054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10055 F:      COPYING
10056 F:      Documentation/process/license-rules.rst
10057 F:      LICENSES/
10058 F:      scripts/spdxcheck-test.sh
10059 F:      scripts/spdxcheck.py
10060
10061 LIGHTNVM PLATFORM SUPPORT
10062 M:      Matias Bjorling <mb@lightnvm.io>
10063 L:      linux-block@vger.kernel.org
10064 S:      Maintained
10065 W:      http://github/OpenChannelSSD
10066 F:      drivers/lightnvm/
10067 F:      include/linux/lightnvm.h
10068 F:      include/uapi/linux/lightnvm.h
10069
10070 LINEAR RANGES HELPERS
10071 M:      Mark Brown <broonie@kernel.org>
10072 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10073 F:      lib/linear_ranges.c
10074 F:      lib/test_linear_ranges.c
10075 F:      include/linux/linear_range.h
10076
10077 LINUX FOR POWER MACINTOSH
10078 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10079 L:      linuxppc-dev@lists.ozlabs.org
10080 S:      Odd Fixes
10081 F:      arch/powerpc/platforms/powermac/
10082 F:      drivers/macintosh/
10083
10084 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10085 M:      Michael Ellerman <mpe@ellerman.id.au>
10086 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10087 R:      Paul Mackerras <paulus@samba.org>
10088 L:      linuxppc-dev@lists.ozlabs.org
10089 S:      Supported
10090 W:      https://github.com/linuxppc/wiki/wiki
10091 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10093 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10094 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10095 F:      Documentation/devicetree/bindings/powerpc/
10096 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10097 F:      Documentation/powerpc/
10098 F:      arch/powerpc/
10099 F:      drivers/*/*/*pasemi*
10100 F:      drivers/*/*pasemi*
10101 F:      drivers/char/tpm/tpm_ibmvtpm*
10102 F:      drivers/crypto/nx/
10103 F:      drivers/crypto/vmx/
10104 F:      drivers/i2c/busses/i2c-opal.c
10105 F:      drivers/net/ethernet/ibm/ibmveth.*
10106 F:      drivers/net/ethernet/ibm/ibmvnic.*
10107 F:      drivers/pci/hotplug/pnv_php.c
10108 F:      drivers/pci/hotplug/rpa*
10109 F:      drivers/rtc/rtc-opal.c
10110 F:      drivers/scsi/ibmvscsi/
10111 F:      drivers/tty/hvc/hvc_opal.c
10112 F:      drivers/watchdog/wdrtas.c
10113 F:      tools/testing/selftests/powerpc
10114 N:      /pmac
10115 N:      powermac
10116 N:      powernv
10117 N:      [^a-z0-9]ps3
10118 N:      pseries
10119
10120 LINUX FOR POWERPC EMBEDDED MPC5XXX
10121 M:      Anatolij Gustschin <agust@denx.de>
10122 L:      linuxppc-dev@lists.ozlabs.org
10123 S:      Odd Fixes
10124 F:      arch/powerpc/platforms/512x/
10125 F:      arch/powerpc/platforms/52xx/
10126
10127 LINUX FOR POWERPC EMBEDDED PPC4XX
10128 L:      linuxppc-dev@lists.ozlabs.org
10129 S:      Orphan
10130 F:      arch/powerpc/platforms/40x/
10131 F:      arch/powerpc/platforms/44x/
10132
10133 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10134 M:      Scott Wood <oss@buserror.net>
10135 L:      linuxppc-dev@lists.ozlabs.org
10136 S:      Odd fixes
10137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10138 F:      Documentation/devicetree/bindings/powerpc/fsl/
10139 F:      arch/powerpc/platforms/83xx/
10140 F:      arch/powerpc/platforms/85xx/
10141
10142 LINUX FOR POWERPC EMBEDDED PPC8XX
10143 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10144 L:      linuxppc-dev@lists.ozlabs.org
10145 S:      Maintained
10146 F:      arch/powerpc/platforms/8xx/
10147
10148 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10149 M:      Kees Cook <keescook@chromium.org>
10150 S:      Maintained
10151 F:      drivers/misc/lkdtm/*
10152 F:      tools/testing/selftests/lkdtm/*
10153
10154 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10155 M:      Alan Stern <stern@rowland.harvard.edu>
10156 M:      Andrea Parri <parri.andrea@gmail.com>
10157 M:      Will Deacon <will@kernel.org>
10158 M:      Peter Zijlstra <peterz@infradead.org>
10159 M:      Boqun Feng <boqun.feng@gmail.com>
10160 M:      Nicholas Piggin <npiggin@gmail.com>
10161 M:      David Howells <dhowells@redhat.com>
10162 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10163 M:      Luc Maranget <luc.maranget@inria.fr>
10164 M:      "Paul E. McKenney" <paulmck@kernel.org>
10165 R:      Akira Yokosawa <akiyks@gmail.com>
10166 R:      Daniel Lustig <dlustig@nvidia.com>
10167 R:      Joel Fernandes <joel@joelfernandes.org>
10168 L:      linux-kernel@vger.kernel.org
10169 L:      linux-arch@vger.kernel.org
10170 S:      Supported
10171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10172 F:      Documentation/atomic_bitops.txt
10173 F:      Documentation/atomic_t.txt
10174 F:      Documentation/core-api/atomic_ops.rst
10175 F:      Documentation/core-api/refcount-vs-atomic.rst
10176 F:      Documentation/litmus-tests/
10177 F:      Documentation/memory-barriers.txt
10178 F:      tools/memory-model/
10179
10180 LIS3LV02D ACCELEROMETER DRIVER
10181 M:      Eric Piel <eric.piel@tremplin-utc.net>
10182 S:      Maintained
10183 F:      Documentation/misc-devices/lis3lv02d.rst
10184 F:      drivers/misc/lis3lv02d/
10185 F:      drivers/platform/x86/hp_accel.c
10186
10187 LIST KUNIT TEST
10188 M:      David Gow <davidgow@google.com>
10189 L:      linux-kselftest@vger.kernel.org
10190 L:      kunit-dev@googlegroups.com
10191 S:      Maintained
10192 F:      lib/list-test.c
10193
10194 LIVE PATCHING
10195 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10196 M:      Jiri Kosina <jikos@kernel.org>
10197 M:      Miroslav Benes <mbenes@suse.cz>
10198 M:      Petr Mladek <pmladek@suse.com>
10199 R:      Joe Lawrence <joe.lawrence@redhat.com>
10200 L:      live-patching@vger.kernel.org
10201 S:      Maintained
10202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10203 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10204 F:      Documentation/livepatch/
10205 F:      arch/powerpc/include/asm/livepatch.h
10206 F:      arch/s390/include/asm/livepatch.h
10207 F:      arch/x86/include/asm/livepatch.h
10208 F:      include/linux/livepatch.h
10209 F:      kernel/livepatch/
10210 F:      lib/livepatch/
10211 F:      samples/livepatch/
10212 F:      tools/testing/selftests/livepatch/
10213
10214 LLC (802.2)
10215 L:      netdev@vger.kernel.org
10216 S:      Odd fixes
10217 F:      include/linux/llc.h
10218 F:      include/net/llc*
10219 F:      include/uapi/linux/llc.h
10220 F:      net/llc/
10221
10222 LM73 HARDWARE MONITOR DRIVER
10223 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10224 L:      linux-hwmon@vger.kernel.org
10225 S:      Maintained
10226 F:      drivers/hwmon/lm73.c
10227
10228 LM78 HARDWARE MONITOR DRIVER
10229 M:      Jean Delvare <jdelvare@suse.com>
10230 L:      linux-hwmon@vger.kernel.org
10231 S:      Maintained
10232 F:      Documentation/hwmon/lm78.rst
10233 F:      drivers/hwmon/lm78.c
10234
10235 LM83 HARDWARE MONITOR DRIVER
10236 M:      Jean Delvare <jdelvare@suse.com>
10237 L:      linux-hwmon@vger.kernel.org
10238 S:      Maintained
10239 F:      Documentation/hwmon/lm83.rst
10240 F:      drivers/hwmon/lm83.c
10241
10242 LM90 HARDWARE MONITOR DRIVER
10243 M:      Jean Delvare <jdelvare@suse.com>
10244 L:      linux-hwmon@vger.kernel.org
10245 S:      Maintained
10246 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10247 F:      Documentation/hwmon/lm90.rst
10248 F:      drivers/hwmon/lm90.c
10249 F:      include/dt-bindings/thermal/lm90.h
10250
10251 LM95234 HARDWARE MONITOR DRIVER
10252 M:      Guenter Roeck <linux@roeck-us.net>
10253 L:      linux-hwmon@vger.kernel.org
10254 S:      Maintained
10255 F:      Documentation/hwmon/lm95234.rst
10256 F:      drivers/hwmon/lm95234.c
10257
10258 LME2510 MEDIA DRIVER
10259 M:      Malcolm Priestley <tvboxspy@gmail.com>
10260 L:      linux-media@vger.kernel.org
10261 S:      Maintained
10262 W:      https://linuxtv.org
10263 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10264 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10265
10266 LOADPIN SECURITY MODULE
10267 M:      Kees Cook <keescook@chromium.org>
10268 S:      Supported
10269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10270 F:      Documentation/admin-guide/LSM/LoadPin.rst
10271 F:      security/loadpin/
10272
10273 LOCKING PRIMITIVES
10274 M:      Peter Zijlstra <peterz@infradead.org>
10275 M:      Ingo Molnar <mingo@redhat.com>
10276 M:      Will Deacon <will@kernel.org>
10277 L:      linux-kernel@vger.kernel.org
10278 S:      Maintained
10279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10280 F:      Documentation/locking/
10281 F:      arch/*/include/asm/spinlock*.h
10282 F:      include/linux/lockdep.h
10283 F:      include/linux/mutex*.h
10284 F:      include/linux/rwlock*.h
10285 F:      include/linux/rwsem*.h
10286 F:      include/linux/seqlock.h
10287 F:      include/linux/spinlock*.h
10288 F:      kernel/locking/
10289 F:      lib/locking*.[ch]
10290 X:      kernel/locking/locktorture.c
10291
10292 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10293 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
10294 L:      linux-ntfs-dev@lists.sourceforge.net
10295 S:      Maintained
10296 W:      http://www.linux-ntfs.org/content/view/19/37/
10297 F:      Documentation/admin-guide/ldm.rst
10298 F:      block/partitions/ldm.*
10299
10300 LOGITECH HID GAMING KEYBOARDS
10301 M:      Hans de Goede <hdegoede@redhat.com>
10302 L:      linux-input@vger.kernel.org
10303 S:      Maintained
10304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10305 F:      drivers/hid/hid-lg-g15.c
10306
10307 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10308 M:      Sathya Prakash <sathya.prakash@broadcom.com>
10309 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
10310 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
10311 L:      MPT-FusionLinux.pdl@broadcom.com
10312 L:      linux-scsi@vger.kernel.org
10313 S:      Supported
10314 W:      http://www.avagotech.com/support/
10315 F:      drivers/message/fusion/
10316 F:      drivers/scsi/mpt3sas/
10317
10318 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10319 M:      Matthew Wilcox <willy@infradead.org>
10320 L:      linux-scsi@vger.kernel.org
10321 S:      Maintained
10322 F:      drivers/scsi/sym53c8xx_2/
10323
10324 LTC1660 DAC DRIVER
10325 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10326 L:      linux-iio@vger.kernel.org
10327 S:      Maintained
10328 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10329 F:      drivers/iio/dac/ltc1660.c
10330
10331 LTC2947 HARDWARE MONITOR DRIVER
10332 M:      Nuno Sá <nuno.sa@analog.com>
10333 L:      linux-hwmon@vger.kernel.org
10334 S:      Supported
10335 W:      http://ez.analog.com/community/linux-device-drivers
10336 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10337 F:      drivers/hwmon/ltc2947-core.c
10338 F:      drivers/hwmon/ltc2947-i2c.c
10339 F:      drivers/hwmon/ltc2947-spi.c
10340 F:      drivers/hwmon/ltc2947.h
10341
10342 LTC2983 IIO TEMPERATURE DRIVER
10343 M:      Nuno Sá <nuno.sa@analog.com>
10344 L:      linux-iio@vger.kernel.org
10345 S:      Supported
10346 W:      http://ez.analog.com/community/linux-device-drivers
10347 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10348 F:      drivers/iio/temperature/ltc2983.c
10349
10350 LTC4261 HARDWARE MONITOR DRIVER
10351 M:      Guenter Roeck <linux@roeck-us.net>
10352 L:      linux-hwmon@vger.kernel.org
10353 S:      Maintained
10354 F:      Documentation/hwmon/ltc4261.rst
10355 F:      drivers/hwmon/ltc4261.c
10356
10357 LTC4306 I2C MULTIPLEXER DRIVER
10358 M:      Michael Hennerich <michael.hennerich@analog.com>
10359 L:      linux-i2c@vger.kernel.org
10360 S:      Supported
10361 W:      http://ez.analog.com/community/linux-device-drivers
10362 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10363 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10364
10365 LTP (Linux Test Project)
10366 M:      Mike Frysinger <vapier@gentoo.org>
10367 M:      Cyril Hrubis <chrubis@suse.cz>
10368 M:      Wanlong Gao <wanlong.gao@gmail.com>
10369 M:      Jan Stancek <jstancek@redhat.com>
10370 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
10371 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
10372 L:      ltp@lists.linux.it (subscribers-only)
10373 S:      Maintained
10374 W:      http://linux-test-project.github.io/
10375 T:      git git://github.com/linux-test-project/ltp.git
10376
10377 LYNX PCS MODULE
10378 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
10379 L:      netdev@vger.kernel.org
10380 S:      Supported
10381 F:      drivers/net/pcs/pcs-lynx.c
10382 F:      include/linux/pcs-lynx.h
10383
10384 M68K ARCHITECTURE
10385 M:      Geert Uytterhoeven <geert@linux-m68k.org>
10386 L:      linux-m68k@lists.linux-m68k.org
10387 S:      Maintained
10388 W:      http://www.linux-m68k.org/
10389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10390 F:      arch/m68k/
10391 F:      drivers/zorro/
10392
10393 M68K ON APPLE MACINTOSH
10394 M:      Joshua Thompson <funaho@jurai.org>
10395 L:      linux-m68k@lists.linux-m68k.org
10396 S:      Maintained
10397 W:      http://www.mac.linux-m68k.org/
10398 F:      arch/m68k/mac/
10399
10400 M68K ON HP9000/300
10401 M:      Philip Blundell <philb@gnu.org>
10402 S:      Maintained
10403 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10404 F:      arch/m68k/hp300/
10405
10406 M88DS3103 MEDIA DRIVER
10407 M:      Antti Palosaari <crope@iki.fi>
10408 L:      linux-media@vger.kernel.org
10409 S:      Maintained
10410 W:      https://linuxtv.org
10411 W:      http://palosaari.fi/linux/
10412 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10413 T:      git git://linuxtv.org/anttip/media_tree.git
10414 F:      drivers/media/dvb-frontends/m88ds3103*
10415
10416 M88RS2000 MEDIA DRIVER
10417 M:      Malcolm Priestley <tvboxspy@gmail.com>
10418 L:      linux-media@vger.kernel.org
10419 S:      Maintained
10420 W:      https://linuxtv.org
10421 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10422 F:      drivers/media/dvb-frontends/m88rs2000*
10423
10424 MA901 MASTERKIT USB FM RADIO DRIVER
10425 M:      Alexey Klimov <klimov.linux@gmail.com>
10426 L:      linux-media@vger.kernel.org
10427 S:      Maintained
10428 T:      git git://linuxtv.org/media_tree.git
10429 F:      drivers/media/radio/radio-ma901.c
10430
10431 MAC80211
10432 M:      Johannes Berg <johannes@sipsolutions.net>
10433 L:      linux-wireless@vger.kernel.org
10434 S:      Maintained
10435 W:      https://wireless.wiki.kernel.org/
10436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10437 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10438 F:      Documentation/networking/mac80211-injection.rst
10439 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10440 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10441 F:      include/net/mac80211.h
10442 F:      net/mac80211/
10443
10444 MAILBOX API
10445 M:      Jassi Brar <jassisinghbrar@gmail.com>
10446 L:      linux-kernel@vger.kernel.org
10447 S:      Maintained
10448 F:      drivers/mailbox/
10449 F:      include/linux/mailbox_client.h
10450 F:      include/linux/mailbox_controller.h
10451
10452 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10453 M:      Michael Kerrisk <mtk.manpages@gmail.com>
10454 L:      linux-man@vger.kernel.org
10455 S:      Maintained
10456 W:      http://www.kernel.org/doc/man-pages
10457
10458 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10459 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
10460 L:      linux-mips@vger.kernel.org
10461 S:      Maintained
10462 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10463
10464 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10465 M:      Andrew Lunn <andrew@lunn.ch>
10466 M:      Vivien Didelot <vivien.didelot@gmail.com>
10467 L:      netdev@vger.kernel.org
10468 S:      Maintained
10469 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10470 F:      Documentation/networking/devlink/mv88e6xxx.rst
10471 F:      drivers/net/dsa/mv88e6xxx/
10472 F:      include/linux/platform_data/mv88e6xxx.h
10473
10474 MARVELL ARMADA 3700 PHY DRIVERS
10475 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10476 S:      Maintained
10477 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10478 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10479 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10480 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10481
10482 MARVELL ARMADA DRM SUPPORT
10483 M:      Russell King <linux@armlinux.org.uk>
10484 S:      Maintained
10485 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10486 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10487 F:      Documentation/devicetree/bindings/display/armada/
10488 F:      drivers/gpu/drm/armada/
10489 F:      include/uapi/drm/armada_drm.h
10490
10491 MARVELL CRYPTO DRIVER
10492 M:      Boris Brezillon <bbrezillon@kernel.org>
10493 M:      Arnaud Ebalard <arno@natisbad.org>
10494 M:      Srujana Challa <schalla@marvell.com>
10495 L:      linux-crypto@vger.kernel.org
10496 S:      Maintained
10497 F:      drivers/crypto/marvell/
10498
10499 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10500 M:      Mirko Lindner <mlindner@marvell.com>
10501 M:      Stephen Hemminger <stephen@networkplumber.org>
10502 L:      netdev@vger.kernel.org
10503 S:      Maintained
10504 F:      drivers/net/ethernet/marvell/sk*
10505
10506 MARVELL LIBERTAS WIRELESS DRIVER
10507 L:      libertas-dev@lists.infradead.org
10508 S:      Orphan
10509 F:      drivers/net/wireless/marvell/libertas/
10510
10511 MARVELL MACCHIATOBIN SUPPORT
10512 M:      Russell King <linux@armlinux.org.uk>
10513 L:      linux-arm-kernel@lists.infradead.org
10514 S:      Maintained
10515 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10516
10517 MARVELL MV643XX ETHERNET DRIVER
10518 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
10519 L:      netdev@vger.kernel.org
10520 S:      Maintained
10521 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10522 F:      include/linux/mv643xx.h
10523
10524 MARVELL MV88X3310 PHY DRIVER
10525 M:      Russell King <linux@armlinux.org.uk>
10526 L:      netdev@vger.kernel.org
10527 S:      Maintained
10528 F:      drivers/net/phy/marvell10g.c
10529
10530 MARVELL MVEBU THERMAL DRIVER
10531 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10532 S:      Maintained
10533 F:      drivers/thermal/armada_thermal.c
10534
10535 MARVELL MVNETA ETHERNET DRIVER
10536 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
10537 L:      netdev@vger.kernel.org
10538 S:      Maintained
10539 F:      drivers/net/ethernet/marvell/mvneta.*
10540
10541 MARVELL MWIFIEX WIRELESS DRIVER
10542 M:      Amitkumar Karwar <amitkarwar@gmail.com>
10543 M:      Ganapathi Bhat <ganapathi.bhat@nxp.com>
10544 M:      Xinming Hu <huxinming820@gmail.com>
10545 L:      linux-wireless@vger.kernel.org
10546 S:      Maintained
10547 F:      drivers/net/wireless/marvell/mwifiex/
10548
10549 MARVELL MWL8K WIRELESS DRIVER
10550 M:      Lennert Buytenhek <buytenh@wantstofly.org>
10551 L:      linux-wireless@vger.kernel.org
10552 S:      Odd Fixes
10553 F:      drivers/net/wireless/marvell/mwl8k.c
10554
10555 MARVELL NAND CONTROLLER DRIVER
10556 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10557 L:      linux-mtd@lists.infradead.org
10558 S:      Maintained
10559 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10560 F:      drivers/mtd/nand/raw/marvell_nand.c
10561
10562 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10563 M:      Sunil Goutham <sgoutham@marvell.com>
10564 M:      Geetha sowjanya <gakula@marvell.com>
10565 M:      Subbaraya Sundeep <sbhatta@marvell.com>
10566 M:      hariprasad <hkelam@marvell.com>
10567 L:      netdev@vger.kernel.org
10568 S:      Supported
10569 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10570
10571 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10572 M:      Sunil Goutham <sgoutham@marvell.com>
10573 M:      Linu Cherian <lcherian@marvell.com>
10574 M:      Geetha sowjanya <gakula@marvell.com>
10575 M:      Jerin Jacob <jerinj@marvell.com>
10576 L:      netdev@vger.kernel.org
10577 S:      Supported
10578 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
10579 F:      drivers/net/ethernet/marvell/octeontx2/af/
10580
10581 MARVELL PRESTERA ETHERNET SWITCH DRIVER
10582 M:      Vadym Kochan <vkochan@marvell.com>
10583 M:      Taras Chornyi <tchornyi@marvell.com>
10584 S:      Supported
10585 W:      https://github.com/Marvell-switching/switchdev-prestera
10586 F:      drivers/net/ethernet/marvell/prestera/
10587
10588 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10589 M:      Nicolas Pitre <nico@fluxnic.net>
10590 S:      Odd Fixes
10591 F:      drivers/mmc/host/mvsdio.*
10592
10593 MARVELL USB MDIO CONTROLLER DRIVER
10594 M:      Tobias Waldekranz <tobias@waldekranz.com>
10595 L:      netdev@vger.kernel.org
10596 S:      Maintained
10597 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10598 F:      drivers/net/mdio/mdio-mvusb.c
10599
10600 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10601 M:      Hu Ziji <huziji@marvell.com>
10602 L:      linux-mmc@vger.kernel.org
10603 S:      Supported
10604 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10605 F:      drivers/mmc/host/sdhci-xenon*
10606
10607 MATROX FRAMEBUFFER DRIVER
10608 L:      linux-fbdev@vger.kernel.org
10609 S:      Orphan
10610 F:      drivers/video/fbdev/matrox/matroxfb_*
10611 F:      include/uapi/linux/matroxfb.h
10612
10613 MAX16065 HARDWARE MONITOR DRIVER
10614 M:      Guenter Roeck <linux@roeck-us.net>
10615 L:      linux-hwmon@vger.kernel.org
10616 S:      Maintained
10617 F:      Documentation/hwmon/max16065.rst
10618 F:      drivers/hwmon/max16065.c
10619
10620 MAX2175 SDR TUNER DRIVER
10621 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10622 L:      linux-media@vger.kernel.org
10623 S:      Maintained
10624 T:      git git://linuxtv.org/media_tree.git
10625 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10626 F:      Documentation/userspace-api/media/drivers/max2175.rst
10627 F:      drivers/media/i2c/max2175*
10628 F:      include/uapi/linux/max2175.h
10629
10630 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10631 L:      linux-hwmon@vger.kernel.org
10632 S:      Orphan
10633 F:      Documentation/hwmon/max6650.rst
10634 F:      drivers/hwmon/max6650.c
10635
10636 MAX6697 HARDWARE MONITOR DRIVER
10637 M:      Guenter Roeck <linux@roeck-us.net>
10638 L:      linux-hwmon@vger.kernel.org
10639 S:      Maintained
10640 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
10641 F:      Documentation/hwmon/max6697.rst
10642 F:      drivers/hwmon/max6697.c
10643 F:      include/linux/platform_data/max6697.h
10644
10645 MAX9286 QUAD GMSL DESERIALIZER DRIVER
10646 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
10647 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10648 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
10649 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
10650 L:      linux-media@vger.kernel.org
10651 S:      Maintained
10652 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
10653 F:      drivers/media/i2c/max9286.c
10654
10655 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10656 M:      Peter Rosin <peda@axentia.se>
10657 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10658 S:      Maintained
10659 F:      Documentation/devicetree/bindings/sound/max9860.txt
10660 F:      sound/soc/codecs/max9860.*
10661
10662 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10663 M:      Andreas Klinger <ak@it-klinger.de>
10664 L:      linux-iio@vger.kernel.org
10665 S:      Maintained
10666 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10667 F:      drivers/iio/proximity/mb1232.c
10668
10669 MAXIM MAX77650 PMIC MFD DRIVER
10670 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
10671 L:      linux-kernel@vger.kernel.org
10672 S:      Maintained
10673 F:      Documentation/devicetree/bindings/*/*max77650.yaml
10674 F:      Documentation/devicetree/bindings/*/max77650*.yaml
10675 F:      drivers/gpio/gpio-max77650.c
10676 F:      drivers/input/misc/max77650-onkey.c
10677 F:      drivers/leds/leds-max77650.c
10678 F:      drivers/mfd/max77650.c
10679 F:      drivers/power/supply/max77650-charger.c
10680 F:      drivers/regulator/max77650-regulator.c
10681 F:      include/linux/mfd/max77650.h
10682
10683 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10684 M:      Javier Martinez Canillas <javier@dowhile0.org>
10685 L:      linux-kernel@vger.kernel.org
10686 S:      Supported
10687 F:      Documentation/devicetree/bindings/*/*max77802.txt
10688 F:      drivers/regulator/max77802-regulator.c
10689 F:      include/dt-bindings/*/*max77802.h
10690
10691 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10692 M:      Krzysztof Kozlowski <krzk@kernel.org>
10693 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10694 L:      linux-pm@vger.kernel.org
10695 S:      Supported
10696 F:      drivers/power/supply/max14577_charger.c
10697 F:      drivers/power/supply/max77693_charger.c
10698
10699 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10700 M:      Chanwoo Choi <cw00.choi@samsung.com>
10701 M:      Krzysztof Kozlowski <krzk@kernel.org>
10702 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10703 L:      linux-kernel@vger.kernel.org
10704 S:      Supported
10705 F:      Documentation/devicetree/bindings/*/max77686.txt
10706 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10707 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10708 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10709 F:      drivers/*/max14577*.c
10710 F:      drivers/*/max77686*.c
10711 F:      drivers/*/max77693*.c
10712 F:      drivers/clk/clk-max77686.c
10713 F:      drivers/extcon/extcon-max14577.c
10714 F:      drivers/extcon/extcon-max77693.c
10715 F:      drivers/rtc/rtc-max77686.c
10716 F:      include/linux/mfd/max14577*.h
10717 F:      include/linux/mfd/max77686*.h
10718 F:      include/linux/mfd/max77693*.h
10719
10720 MAXIRADIO FM RADIO RECEIVER DRIVER
10721 M:      Hans Verkuil <hverkuil@xs4all.nl>
10722 L:      linux-media@vger.kernel.org
10723 S:      Maintained
10724 W:      https://linuxtv.org
10725 T:      git git://linuxtv.org/media_tree.git
10726 F:      drivers/media/radio/radio-maxiradio*
10727
10728 MCAN MMIO DEVICE DRIVER
10729 M:      Dan Murphy <dmurphy@ti.com>
10730 M:      Sriram Dash <sriram.dash@samsung.com>
10731 L:      linux-can@vger.kernel.org
10732 S:      Maintained
10733 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10734 F:      drivers/net/can/m_can/m_can.c
10735 F:      drivers/net/can/m_can/m_can.h
10736 F:      drivers/net/can/m_can/m_can_platform.c
10737
10738 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10739 M:      Rishi Gupta <gupt21@gmail.com>
10740 L:      linux-i2c@vger.kernel.org
10741 L:      linux-input@vger.kernel.org
10742 S:      Maintained
10743 F:      drivers/hid/hid-mcp2221.c
10744
10745 MCP251XFD SPI-CAN NETWORK DRIVER
10746 M:      Marc Kleine-Budde <mkl@pengutronix.de>
10747 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
10748 R:      Thomas Kopp <thomas.kopp@microchip.com>
10749 L:      linux-can@vger.kernel.org
10750 S:      Maintained
10751 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
10752 F:      drivers/net/can/spi/mcp251xfd/
10753
10754 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10755 M:      Peter Rosin <peda@axentia.se>
10756 L:      linux-iio@vger.kernel.org
10757 S:      Maintained
10758 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10759 F:      drivers/iio/potentiometer/mcp4018.c
10760 F:      drivers/iio/potentiometer/mcp4531.c
10761
10762 MCR20A IEEE-802.15.4 RADIO DRIVER
10763 M:      Xue Liu <liuxuenetmail@gmail.com>
10764 L:      linux-wpan@vger.kernel.org
10765 S:      Maintained
10766 W:      https://github.com/xueliu/mcr20a-linux
10767 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10768 F:      drivers/net/ieee802154/mcr20a.c
10769 F:      drivers/net/ieee802154/mcr20a.h
10770
10771 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10772 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10773 L:      linux-iio@vger.kernel.org
10774 S:      Maintained
10775 F:      drivers/iio/dac/cio-dac.c
10776
10777 MEDIA CONTROLLER FRAMEWORK
10778 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10779 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10780 L:      linux-media@vger.kernel.org
10781 S:      Supported
10782 W:      https://www.linuxtv.org
10783 T:      git git://linuxtv.org/media_tree.git
10784 F:      drivers/media/mc/
10785 F:      include/media/media-*.h
10786 F:      include/uapi/linux/media.h
10787
10788 MEDIA DRIVER FOR FREESCALE IMX PXP
10789 M:      Philipp Zabel <p.zabel@pengutronix.de>
10790 L:      linux-media@vger.kernel.org
10791 S:      Maintained
10792 T:      git git://linuxtv.org/media_tree.git
10793 F:      drivers/media/platform/imx-pxp.[ch]
10794
10795 MEDIA DRIVERS FOR ASCOT2E
10796 M:      Sergey Kozlov <serjk@netup.ru>
10797 M:      Abylay Ospan <aospan@netup.ru>
10798 L:      linux-media@vger.kernel.org
10799 S:      Supported
10800 W:      https://linuxtv.org
10801 W:      http://netup.tv/
10802 T:      git git://linuxtv.org/media_tree.git
10803 F:      drivers/media/dvb-frontends/ascot2e*
10804
10805 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10806 M:      Jasmin Jessich <jasmin@anw.at>
10807 L:      linux-media@vger.kernel.org
10808 S:      Maintained
10809 W:      https://linuxtv.org
10810 T:      git git://linuxtv.org/media_tree.git
10811 F:      drivers/media/dvb-frontends/cxd2099*
10812
10813 MEDIA DRIVERS FOR CXD2841ER
10814 M:      Sergey Kozlov <serjk@netup.ru>
10815 M:      Abylay Ospan <aospan@netup.ru>
10816 L:      linux-media@vger.kernel.org
10817 S:      Supported
10818 W:      https://linuxtv.org
10819 W:      http://netup.tv/
10820 T:      git git://linuxtv.org/media_tree.git
10821 F:      drivers/media/dvb-frontends/cxd2841er*
10822
10823 MEDIA DRIVERS FOR CXD2880
10824 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
10825 L:      linux-media@vger.kernel.org
10826 S:      Supported
10827 W:      http://linuxtv.org/
10828 T:      git git://linuxtv.org/media_tree.git
10829 F:      drivers/media/dvb-frontends/cxd2880/*
10830 F:      drivers/media/spi/cxd2880*
10831
10832 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10833 L:      linux-media@vger.kernel.org
10834 S:      Orphan
10835 W:      https://linuxtv.org
10836 T:      git git://linuxtv.org/media_tree.git
10837 F:      drivers/media/pci/ddbridge/*
10838
10839 MEDIA DRIVERS FOR FREESCALE IMX
10840 M:      Steve Longerbeam <slongerbeam@gmail.com>
10841 M:      Philipp Zabel <p.zabel@pengutronix.de>
10842 L:      linux-media@vger.kernel.org
10843 S:      Maintained
10844 T:      git git://linuxtv.org/media_tree.git
10845 F:      Documentation/admin-guide/media/imx.rst
10846 F:      Documentation/devicetree/bindings/media/imx.txt
10847 F:      drivers/staging/media/imx/
10848 F:      include/linux/imx-media.h
10849 F:      include/media/imx.h
10850
10851 MEDIA DRIVERS FOR FREESCALE IMX7
10852 M:      Rui Miguel Silva <rmfrfs@gmail.com>
10853 L:      linux-media@vger.kernel.org
10854 S:      Maintained
10855 T:      git git://linuxtv.org/media_tree.git
10856 F:      Documentation/admin-guide/media/imx7.rst
10857 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
10858 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
10859 F:      drivers/staging/media/imx/imx7-media-csi.c
10860 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10861
10862 MEDIA DRIVERS FOR HELENE
10863 M:      Abylay Ospan <aospan@netup.ru>
10864 L:      linux-media@vger.kernel.org
10865 S:      Supported
10866 W:      https://linuxtv.org
10867 W:      http://netup.tv/
10868 T:      git git://linuxtv.org/media_tree.git
10869 F:      drivers/media/dvb-frontends/helene*
10870
10871 MEDIA DRIVERS FOR HORUS3A
10872 M:      Sergey Kozlov <serjk@netup.ru>
10873 M:      Abylay Ospan <aospan@netup.ru>
10874 L:      linux-media@vger.kernel.org
10875 S:      Supported
10876 W:      https://linuxtv.org
10877 W:      http://netup.tv/
10878 T:      git git://linuxtv.org/media_tree.git
10879 F:      drivers/media/dvb-frontends/horus3a*
10880
10881 MEDIA DRIVERS FOR LNBH25
10882 M:      Sergey Kozlov <serjk@netup.ru>
10883 M:      Abylay Ospan <aospan@netup.ru>
10884 L:      linux-media@vger.kernel.org
10885 S:      Supported
10886 W:      https://linuxtv.org
10887 W:      http://netup.tv/
10888 T:      git git://linuxtv.org/media_tree.git
10889 F:      drivers/media/dvb-frontends/lnbh25*
10890
10891 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10892 L:      linux-media@vger.kernel.org
10893 S:      Orphan
10894 W:      https://linuxtv.org
10895 T:      git git://linuxtv.org/media_tree.git
10896 F:      drivers/media/dvb-frontends/mxl5xx*
10897
10898 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10899 M:      Sergey Kozlov <serjk@netup.ru>
10900 M:      Abylay Ospan <aospan@netup.ru>
10901 L:      linux-media@vger.kernel.org
10902 S:      Supported
10903 W:      https://linuxtv.org
10904 W:      http://netup.tv/
10905 T:      git git://linuxtv.org/media_tree.git
10906 F:      drivers/media/pci/netup_unidvb/*
10907
10908 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10909 M:      Dmitry Osipenko <digetx@gmail.com>
10910 L:      linux-media@vger.kernel.org
10911 L:      linux-tegra@vger.kernel.org
10912 S:      Maintained
10913 T:      git git://linuxtv.org/media_tree.git
10914 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10915 F:      drivers/staging/media/tegra-vde/
10916
10917 MEDIA DRIVERS FOR RENESAS - CEU
10918 M:      Jacopo Mondi <jacopo@jmondi.org>
10919 L:      linux-media@vger.kernel.org
10920 L:      linux-renesas-soc@vger.kernel.org
10921 S:      Supported
10922 T:      git git://linuxtv.org/media_tree.git
10923 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
10924 F:      drivers/media/platform/renesas-ceu.c
10925 F:      include/media/drv-intf/renesas-ceu.h
10926
10927 MEDIA DRIVERS FOR RENESAS - DRIF
10928 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10929 L:      linux-media@vger.kernel.org
10930 L:      linux-renesas-soc@vger.kernel.org
10931 S:      Supported
10932 T:      git git://linuxtv.org/media_tree.git
10933 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
10934 F:      drivers/media/platform/rcar_drif.c
10935
10936 MEDIA DRIVERS FOR RENESAS - FCP
10937 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10938 L:      linux-media@vger.kernel.org
10939 L:      linux-renesas-soc@vger.kernel.org
10940 S:      Supported
10941 T:      git git://linuxtv.org/media_tree.git
10942 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
10943 F:      drivers/media/platform/rcar-fcp.c
10944 F:      include/media/rcar-fcp.h
10945
10946 MEDIA DRIVERS FOR RENESAS - FDP1
10947 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10948 L:      linux-media@vger.kernel.org
10949 L:      linux-renesas-soc@vger.kernel.org
10950 S:      Supported
10951 T:      git git://linuxtv.org/media_tree.git
10952 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
10953 F:      drivers/media/platform/rcar_fdp1.c
10954
10955 MEDIA DRIVERS FOR RENESAS - VIN
10956 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
10957 L:      linux-media@vger.kernel.org
10958 L:      linux-renesas-soc@vger.kernel.org
10959 S:      Supported
10960 T:      git git://linuxtv.org/media_tree.git
10961 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
10962 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
10963 F:      drivers/media/platform/rcar-vin/
10964
10965 MEDIA DRIVERS FOR RENESAS - VSP1
10966 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10967 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10968 L:      linux-media@vger.kernel.org
10969 L:      linux-renesas-soc@vger.kernel.org
10970 S:      Supported
10971 T:      git git://linuxtv.org/media_tree.git
10972 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
10973 F:      drivers/media/platform/vsp1/
10974
10975 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
10976 L:      linux-media@vger.kernel.org
10977 S:      Orphan
10978 W:      https://linuxtv.org
10979 T:      git git://linuxtv.org/media_tree.git
10980 F:      drivers/media/dvb-frontends/stv0910*
10981
10982 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
10983 L:      linux-media@vger.kernel.org
10984 S:      Orphan
10985 W:      https://linuxtv.org
10986 T:      git git://linuxtv.org/media_tree.git
10987 F:      drivers/media/dvb-frontends/stv6111*
10988
10989 MEDIA DRIVERS FOR STM32 - DCMI
10990 M:      Hugues Fruchet <hugues.fruchet@st.com>
10991 L:      linux-media@vger.kernel.org
10992 S:      Supported
10993 T:      git git://linuxtv.org/media_tree.git
10994 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
10995 F:      drivers/media/platform/stm32/stm32-dcmi.c
10996
10997 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
10998 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
10999 L:      linux-media@vger.kernel.org
11000 S:      Maintained
11001 W:      https://linuxtv.org
11002 Q:      http://patchwork.kernel.org/project/linux-media/list/
11003 T:      git git://linuxtv.org/media_tree.git
11004 F:      Documentation/admin-guide/media/
11005 F:      Documentation/devicetree/bindings/media/
11006 F:      Documentation/driver-api/media/
11007 F:      Documentation/userspace-api/media/
11008 F:      drivers/media/
11009 F:      drivers/staging/media/
11010 F:      include/linux/platform_data/media/
11011 F:      include/media/
11012 F:      include/uapi/linux/dvb/
11013 F:      include/uapi/linux/ivtv*
11014 F:      include/uapi/linux/media.h
11015 F:      include/uapi/linux/meye.h
11016 F:      include/uapi/linux/uvcvideo.h
11017 F:      include/uapi/linux/v4l2-*
11018 F:      include/uapi/linux/videodev2.h
11019
11020 MEDIATEK BLUETOOTH DRIVER
11021 M:      Sean Wang <sean.wang@mediatek.com>
11022 L:      linux-bluetooth@vger.kernel.org
11023 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11024 S:      Maintained
11025 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11026 F:      drivers/bluetooth/btmtkuart.c
11027
11028 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11029 M:      Sean Wang <sean.wang@mediatek.com>
11030 L:      linux-pm@vger.kernel.org
11031 S:      Maintained
11032 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11033 F:      drivers/power/reset/mt6323-poweroff.c
11034
11035 MEDIATEK CIR DRIVER
11036 M:      Sean Wang <sean.wang@mediatek.com>
11037 S:      Maintained
11038 F:      drivers/media/rc/mtk-cir.c
11039
11040 MEDIATEK DMA DRIVER
11041 M:      Sean Wang <sean.wang@mediatek.com>
11042 L:      dmaengine@vger.kernel.org
11043 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11044 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11045 S:      Maintained
11046 F:      Documentation/devicetree/bindings/dma/mtk-*
11047 F:      drivers/dma/mediatek/
11048
11049 MEDIATEK ETHERNET DRIVER
11050 M:      Felix Fietkau <nbd@nbd.name>
11051 M:      John Crispin <john@phrozen.org>
11052 M:      Sean Wang <sean.wang@mediatek.com>
11053 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11054 L:      netdev@vger.kernel.org
11055 S:      Maintained
11056 F:      drivers/net/ethernet/mediatek/
11057
11058 MEDIATEK I2C CONTROLLER DRIVER
11059 M:      Qii Wang <qii.wang@mediatek.com>
11060 L:      linux-i2c@vger.kernel.org
11061 S:      Maintained
11062 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11063 F:      drivers/i2c/busses/i2c-mt65xx.c
11064
11065 MEDIATEK JPEG DRIVER
11066 M:      Rick Chang <rick.chang@mediatek.com>
11067 M:      Bin Liu <bin.liu@mediatek.com>
11068 S:      Supported
11069 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11070 F:      drivers/media/platform/mtk-jpeg/
11071
11072 MEDIATEK MDP DRIVER
11073 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11074 M:      Houlong Wei <houlong.wei@mediatek.com>
11075 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11076 S:      Supported
11077 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11078 F:      drivers/media/platform/mtk-mdp/
11079 F:      drivers/media/platform/mtk-vpu/
11080
11081 MEDIATEK MEDIA DRIVER
11082 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11083 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11084 S:      Supported
11085 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11086 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11087 F:      drivers/media/platform/mtk-vcodec/
11088 F:      drivers/media/platform/mtk-vpu/
11089
11090 MEDIATEK MMC/SD/SDIO DRIVER
11091 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11092 S:      Maintained
11093 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
11094 F:      drivers/mmc/host/mtk-sd.c
11095
11096 MEDIATEK MT76 WIRELESS LAN DRIVER
11097 M:      Felix Fietkau <nbd@nbd.name>
11098 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11099 R:      Ryder Lee <ryder.lee@mediatek.com>
11100 L:      linux-wireless@vger.kernel.org
11101 S:      Maintained
11102 F:      drivers/net/wireless/mediatek/mt76/
11103
11104 MEDIATEK MT7601U WIRELESS LAN DRIVER
11105 M:      Jakub Kicinski <kubakici@wp.pl>
11106 L:      linux-wireless@vger.kernel.org
11107 S:      Maintained
11108 F:      drivers/net/wireless/mediatek/mt7601u/
11109
11110 MEDIATEK MT7621/28/88 I2C DRIVER
11111 M:      Stefan Roese <sr@denx.de>
11112 L:      linux-i2c@vger.kernel.org
11113 S:      Maintained
11114 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11115 F:      drivers/i2c/busses/i2c-mt7621.c
11116
11117 MEDIATEK NAND CONTROLLER DRIVER
11118 L:      linux-mtd@lists.infradead.org
11119 S:      Orphan
11120 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11121 F:      drivers/mtd/nand/raw/mtk_*
11122
11123 MEDIATEK PMIC LED DRIVER
11124 M:      Sean Wang <sean.wang@mediatek.com>
11125 S:      Maintained
11126 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11127 F:      drivers/leds/leds-mt6323.c
11128
11129 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11130 M:      Sean Wang <sean.wang@mediatek.com>
11131 S:      Maintained
11132 F:      drivers/char/hw_random/mtk-rng.c
11133
11134 MEDIATEK SWITCH DRIVER
11135 M:      Sean Wang <sean.wang@mediatek.com>
11136 M:      Landen Chao <Landen.Chao@mediatek.com>
11137 L:      netdev@vger.kernel.org
11138 S:      Maintained
11139 F:      drivers/net/dsa/mt7530.*
11140 F:      net/dsa/tag_mtk.c
11141
11142 MEDIATEK USB3 DRD IP DRIVER
11143 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
11144 L:      linux-usb@vger.kernel.org
11145 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11146 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11147 S:      Maintained
11148 F:      drivers/usb/mtu3/
11149
11150 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11151 M:      Peter Senna Tschudin <peter.senna@gmail.com>
11152 M:      Martin Donnelly <martin.donnelly@ge.com>
11153 M:      Martyn Welch <martyn.welch@collabora.co.uk>
11154 S:      Maintained
11155 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11156 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11157
11158 MEGARAID SCSI/SAS DRIVERS
11159 M:      Kashyap Desai <kashyap.desai@broadcom.com>
11160 M:      Sumit Saxena <sumit.saxena@broadcom.com>
11161 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
11162 L:      megaraidlinux.pdl@broadcom.com
11163 L:      linux-scsi@vger.kernel.org
11164 S:      Maintained
11165 W:      http://www.avagotech.com/support/
11166 F:      Documentation/scsi/megaraid.rst
11167 F:      drivers/scsi/megaraid.*
11168 F:      drivers/scsi/megaraid/
11169
11170 MELEXIS MLX90614 DRIVER
11171 M:      Crt Mori <cmo@melexis.com>
11172 L:      linux-iio@vger.kernel.org
11173 S:      Supported
11174 W:      http://www.melexis.com
11175 F:      drivers/iio/temperature/mlx90614.c
11176
11177 MELEXIS MLX90632 DRIVER
11178 M:      Crt Mori <cmo@melexis.com>
11179 L:      linux-iio@vger.kernel.org
11180 S:      Supported
11181 W:      http://www.melexis.com
11182 F:      drivers/iio/temperature/mlx90632.c
11183
11184 MELFAS MIP4 TOUCHSCREEN DRIVER
11185 M:      Sangwon Jee <jeesw@melfas.com>
11186 S:      Supported
11187 W:      http://www.melfas.com
11188 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11189 F:      drivers/input/touchscreen/melfas_mip4.c
11190
11191 MELLANOX BLUEFIELD I2C DRIVER
11192 M:      Khalil Blaiech <kblaiech@nvidia.com>
11193 L:      linux-i2c@vger.kernel.org
11194 S:      Supported
11195 F:      drivers/i2c/busses/i2c-mlxbf.c
11196
11197 MELLANOX ETHERNET DRIVER (mlx4_en)
11198 M:      Tariq Toukan <tariqt@nvidia.com>
11199 L:      netdev@vger.kernel.org
11200 S:      Supported
11201 W:      http://www.mellanox.com
11202 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11203 F:      drivers/net/ethernet/mellanox/mlx4/en_*
11204
11205 MELLANOX ETHERNET DRIVER (mlx5e)
11206 M:      Saeed Mahameed <saeedm@nvidia.com>
11207 L:      netdev@vger.kernel.org
11208 S:      Supported
11209 W:      http://www.mellanox.com
11210 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11211 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
11212
11213 MELLANOX ETHERNET INNOVA DRIVERS
11214 R:      Boris Pismenny <borisp@nvidia.com>
11215 L:      netdev@vger.kernel.org
11216 S:      Supported
11217 W:      http://www.mellanox.com
11218 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11219 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
11220 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
11221 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
11222 F:      include/linux/mlx5/mlx5_ifc_fpga.h
11223
11224 MELLANOX ETHERNET SWITCH DRIVERS
11225 M:      Jiri Pirko <jiri@nvidia.com>
11226 M:      Ido Schimmel <idosch@nvidia.com>
11227 L:      netdev@vger.kernel.org
11228 S:      Supported
11229 W:      http://www.mellanox.com
11230 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11231 F:      drivers/net/ethernet/mellanox/mlxsw/
11232 F:      tools/testing/selftests/drivers/net/mlxsw/
11233
11234 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
11235 M:      mlxsw@nvidia.com
11236 L:      netdev@vger.kernel.org
11237 S:      Supported
11238 W:      http://www.mellanox.com
11239 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11240 F:      drivers/net/ethernet/mellanox/mlxfw/
11241
11242 MELLANOX HARDWARE PLATFORM SUPPORT
11243 M:      Andy Shevchenko <andy@infradead.org>
11244 M:      Darren Hart <dvhart@infradead.org>
11245 M:      Vadim Pasternak <vadimp@nvidia.com>
11246 L:      platform-driver-x86@vger.kernel.org
11247 S:      Supported
11248 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
11249 F:      drivers/platform/mellanox/
11250 F:      include/linux/platform_data/mlxreg.h
11251
11252 MELLANOX MLX4 core VPI driver
11253 M:      Tariq Toukan <tariqt@nvidia.com>
11254 L:      netdev@vger.kernel.org
11255 L:      linux-rdma@vger.kernel.org
11256 S:      Supported
11257 W:      http://www.mellanox.com
11258 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11259 F:      drivers/net/ethernet/mellanox/mlx4/
11260 F:      include/linux/mlx4/
11261
11262 MELLANOX MLX4 IB driver
11263 M:      Yishai Hadas <yishaih@nvidia.com>
11264 L:      linux-rdma@vger.kernel.org
11265 S:      Supported
11266 W:      http://www.mellanox.com
11267 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11268 F:      drivers/infiniband/hw/mlx4/
11269 F:      include/linux/mlx4/
11270 F:      include/uapi/rdma/mlx4-abi.h
11271
11272 MELLANOX MLX5 core VPI driver
11273 M:      Saeed Mahameed <saeedm@nvidia.com>
11274 M:      Leon Romanovsky <leonro@nvidia.com>
11275 L:      netdev@vger.kernel.org
11276 L:      linux-rdma@vger.kernel.org
11277 S:      Supported
11278 W:      http://www.mellanox.com
11279 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11280 F:      Documentation/networking/device_drivers/ethernet/mellanox/
11281 F:      drivers/net/ethernet/mellanox/mlx5/core/
11282 F:      include/linux/mlx5/
11283
11284 MELLANOX MLX5 IB driver
11285 M:      Leon Romanovsky <leonro@nvidia.com>
11286 L:      linux-rdma@vger.kernel.org
11287 S:      Supported
11288 W:      http://www.mellanox.com
11289 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11290 F:      drivers/infiniband/hw/mlx5/
11291 F:      include/linux/mlx5/
11292 F:      include/uapi/rdma/mlx5-abi.h
11293
11294 MELLANOX MLXCPLD I2C AND MUX DRIVER
11295 M:      Vadim Pasternak <vadimp@nvidia.com>
11296 M:      Michael Shych <michaelsh@nvidia.com>
11297 L:      linux-i2c@vger.kernel.org
11298 S:      Supported
11299 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
11300 F:      drivers/i2c/busses/i2c-mlxcpld.c
11301 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
11302
11303 MELLANOX MLXCPLD LED DRIVER
11304 M:      Vadim Pasternak <vadimp@nvidia.com>
11305 L:      linux-leds@vger.kernel.org
11306 S:      Supported
11307 F:      Documentation/leds/leds-mlxcpld.rst
11308 F:      drivers/leds/leds-mlxcpld.c
11309 F:      drivers/leds/leds-mlxreg.c
11310
11311 MELLANOX PLATFORM DRIVER
11312 M:      Vadim Pasternak <vadimp@nvidia.com>
11313 L:      platform-driver-x86@vger.kernel.org
11314 S:      Supported
11315 F:      drivers/platform/x86/mlx-platform.c
11316
11317 MEMBARRIER SUPPORT
11318 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11319 M:      "Paul E. McKenney" <paulmck@kernel.org>
11320 L:      linux-kernel@vger.kernel.org
11321 S:      Supported
11322 F:      arch/powerpc/include/asm/membarrier.h
11323 F:      include/uapi/linux/membarrier.h
11324 F:      kernel/sched/membarrier.c
11325
11326 MEMBLOCK
11327 M:      Mike Rapoport <rppt@linux.ibm.com>
11328 L:      linux-mm@kvack.org
11329 S:      Maintained
11330 F:      Documentation/core-api/boot-time-mm.rst
11331 F:      include/linux/memblock.h
11332 F:      mm/memblock.c
11333
11334 MEMORY CONTROLLER DRIVERS
11335 M:      Krzysztof Kozlowski <krzk@kernel.org>
11336 L:      linux-kernel@vger.kernel.org
11337 S:      Maintained
11338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
11339 F:      Documentation/devicetree/bindings/memory-controllers/
11340 F:      drivers/memory/
11341
11342 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
11343 M:      Dmitry Osipenko <digetx@gmail.com>
11344 L:      linux-pm@vger.kernel.org
11345 L:      linux-tegra@vger.kernel.org
11346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
11347 S:      Maintained
11348 F:      drivers/devfreq/tegra20-devfreq.c
11349 F:      drivers/devfreq/tegra30-devfreq.c
11350
11351 MEMORY MANAGEMENT
11352 M:      Andrew Morton <akpm@linux-foundation.org>
11353 L:      linux-mm@kvack.org
11354 S:      Maintained
11355 W:      http://www.linux-mm.org
11356 T:      quilt https://ozlabs.org/~akpm/mmotm/
11357 T:      quilt https://ozlabs.org/~akpm/mmots/
11358 T:      git git://github.com/hnaz/linux-mm.git
11359 F:      include/linux/gfp.h
11360 F:      include/linux/memory_hotplug.h
11361 F:      include/linux/mm.h
11362 F:      include/linux/mmzone.h
11363 F:      include/linux/vmalloc.h
11364 F:      mm/
11365
11366 MEMORY TECHNOLOGY DEVICES (MTD)
11367 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11368 M:      Richard Weinberger <richard@nod.at>
11369 M:      Vignesh Raghavendra <vigneshr@ti.com>
11370 L:      linux-mtd@lists.infradead.org
11371 S:      Maintained
11372 W:      http://www.linux-mtd.infradead.org/
11373 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11374 C:      irc://irc.oftc.net/mtd
11375 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11377 F:      Documentation/devicetree/bindings/mtd/
11378 F:      drivers/mtd/
11379 F:      include/linux/mtd/
11380 F:      include/uapi/mtd/
11381
11382 MEN A21 WATCHDOG DRIVER
11383 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11384 L:      linux-watchdog@vger.kernel.org
11385 S:      Maintained
11386 F:      drivers/watchdog/mena21_wdt.c
11387
11388 MEN CHAMELEON BUS (mcb)
11389 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11390 S:      Maintained
11391 F:      Documentation/driver-api/men-chameleon-bus.rst
11392 F:      drivers/mcb/
11393 F:      include/linux/mcb.h
11394
11395 MEN F21BMC (Board Management Controller)
11396 M:      Andreas Werner <andreas.werner@men.de>
11397 S:      Supported
11398 F:      Documentation/hwmon/menf21bmc.rst
11399 F:      drivers/hwmon/menf21bmc_hwmon.c
11400 F:      drivers/leds/leds-menf21bmc.c
11401 F:      drivers/mfd/menf21bmc.c
11402 F:      drivers/watchdog/menf21bmc_wdt.c
11403
11404 MEN Z069 WATCHDOG DRIVER
11405 M:      Johannes Thumshirn <jth@kernel.org>
11406 L:      linux-watchdog@vger.kernel.org
11407 S:      Maintained
11408 F:      drivers/watchdog/menz69_wdt.c
11409
11410 MESON AO CEC DRIVER FOR AMLOGIC SOCS
11411 M:      Neil Armstrong <narmstrong@baylibre.com>
11412 L:      linux-media@vger.kernel.org
11413 L:      linux-amlogic@lists.infradead.org
11414 S:      Supported
11415 W:      http://linux-meson.com/
11416 T:      git git://linuxtv.org/media_tree.git
11417 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
11418 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
11419 F:      drivers/media/cec/platform/meson/ao-cec.c
11420
11421 MESON GE2D DRIVER FOR AMLOGIC SOCS
11422 M:      Neil Armstrong <narmstrong@baylibre.com>
11423 L:      linux-media@vger.kernel.org
11424 L:      linux-amlogic@lists.infradead.org
11425 S:      Supported
11426 T:      git git://linuxtv.org/media_tree.git
11427 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
11428 F:      drivers/media/meson/ge2d/
11429
11430 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
11431 M:      Liang Yang <liang.yang@amlogic.com>
11432 L:      linux-mtd@lists.infradead.org
11433 S:      Maintained
11434 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
11435 F:      drivers/mtd/nand/raw/meson_*
11436
11437 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
11438 M:      Neil Armstrong <narmstrong@baylibre.com>
11439 L:      linux-media@vger.kernel.org
11440 L:      linux-amlogic@lists.infradead.org
11441 S:      Supported
11442 T:      git git://linuxtv.org/media_tree.git
11443 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
11444 F:      drivers/staging/media/meson/vdec/
11445
11446 METHODE UDPU SUPPORT
11447 M:      Vladimir Vid <vladimir.vid@sartura.hr>
11448 S:      Maintained
11449 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
11450
11451 MHI BUS
11452 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11453 M:      Hemant Kumar <hemantk@codeaurora.org>
11454 L:      linux-arm-msm@vger.kernel.org
11455 S:      Maintained
11456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
11457 F:      Documentation/ABI/stable/sysfs-bus-mhi
11458 F:      Documentation/mhi/
11459 F:      drivers/bus/mhi/
11460 F:      include/linux/mhi.h
11461
11462 MICROBLAZE ARCHITECTURE
11463 M:      Michal Simek <monstr@monstr.eu>
11464 S:      Supported
11465 W:      http://www.monstr.eu/fdt/
11466 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11467 F:      arch/microblaze/
11468
11469 MICROCHIP AT91 DMA DRIVERS
11470 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11471 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11472 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11473 L:      dmaengine@vger.kernel.org
11474 S:      Supported
11475 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11476 F:      drivers/dma/at_hdmac.c
11477 F:      drivers/dma/at_hdmac_regs.h
11478 F:      drivers/dma/at_xdmac.c
11479 F:      include/dt-bindings/dma/at91.h
11480 F:      include/linux/platform_data/dma-atmel.h
11481
11482 MICROCHIP AT91 SERIAL DRIVER
11483 M:      Richard Genoud <richard.genoud@gmail.com>
11484 S:      Maintained
11485 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11486 F:      drivers/tty/serial/atmel_serial.c
11487 F:      drivers/tty/serial/atmel_serial.h
11488
11489 MICROCHIP AT91 USART MFD DRIVER
11490 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11491 L:      linux-kernel@vger.kernel.org
11492 S:      Supported
11493 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11494 F:      drivers/mfd/at91-usart.c
11495 F:      include/dt-bindings/mfd/at91-usart.h
11496
11497 MICROCHIP AT91 USART SPI DRIVER
11498 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11499 L:      linux-spi@vger.kernel.org
11500 S:      Supported
11501 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11502 F:      drivers/spi/spi-at91-usart.c
11503
11504 MICROCHIP AUDIO ASOC DRIVERS
11505 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11506 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11507 S:      Supported
11508 F:      sound/soc/atmel
11509
11510 MICROCHIP ECC DRIVER
11511 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11512 L:      linux-crypto@vger.kernel.org
11513 S:      Maintained
11514 F:      drivers/crypto/atmel-ecc.*
11515
11516 MICROCHIP I2C DRIVER
11517 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11518 L:      linux-i2c@vger.kernel.org
11519 S:      Supported
11520 F:      drivers/i2c/busses/i2c-at91-*.c
11521 F:      drivers/i2c/busses/i2c-at91.h
11522
11523 MICROCHIP ISC DRIVER
11524 M:      Eugen Hristev <eugen.hristev@microchip.com>
11525 L:      linux-media@vger.kernel.org
11526 S:      Supported
11527 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11528 F:      drivers/media/platform/atmel/atmel-isc-base.c
11529 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11530 F:      drivers/media/platform/atmel/atmel-isc.h
11531 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11532 F:      include/linux/atmel-isc-media.h
11533
11534 MICROCHIP ISI DRIVER
11535 M:      Eugen Hristev <eugen.hristev@microchip.com>
11536 L:      linux-media@vger.kernel.org
11537 S:      Supported
11538 F:      drivers/media/platform/atmel/atmel-isi.c
11539 F:      drivers/media/platform/atmel/atmel-isi.h
11540
11541 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11542 M:      Woojung Huh <woojung.huh@microchip.com>
11543 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11544 L:      netdev@vger.kernel.org
11545 S:      Maintained
11546 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
11547 F:      drivers/net/dsa/microchip/*
11548 F:      include/linux/platform_data/microchip-ksz.h
11549 F:      net/dsa/tag_ksz.c
11550
11551 MICROCHIP LAN743X ETHERNET DRIVER
11552 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
11553 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11554 L:      netdev@vger.kernel.org
11555 S:      Maintained
11556 F:      drivers/net/ethernet/microchip/lan743x_*
11557
11558 MICROCHIP LCDFB DRIVER
11559 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11560 L:      linux-fbdev@vger.kernel.org
11561 S:      Maintained
11562 F:      drivers/video/fbdev/atmel_lcdfb.c
11563 F:      include/video/atmel_lcdc.h
11564
11565 MICROCHIP MCP16502 PMIC DRIVER
11566 M:      Andrei Stefanescu <andrei.stefanescu@microchip.com>
11567 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11568 S:      Maintained
11569 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11570 F:      drivers/regulator/mcp16502.c
11571
11572 MICROCHIP MCP3911 ADC DRIVER
11573 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11574 M:      Kent Gustavsson <kent@minoris.se>
11575 L:      linux-iio@vger.kernel.org
11576 S:      Supported
11577 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11578 F:      drivers/iio/adc/mcp3911.c
11579
11580 MICROCHIP MMC/SD/SDIO MCI DRIVER
11581 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11582 S:      Maintained
11583 F:      drivers/mmc/host/atmel-mci.c
11584
11585 MICROCHIP NAND DRIVER
11586 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11587 L:      linux-mtd@lists.infradead.org
11588 S:      Supported
11589 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11590 F:      drivers/mtd/nand/raw/atmel/*
11591
11592 MICROCHIP PWM DRIVER
11593 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11594 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11595 L:      linux-pwm@vger.kernel.org
11596 S:      Supported
11597 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11598 F:      drivers/pwm/pwm-atmel.c
11599
11600 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11601 M:      Eugen Hristev <eugen.hristev@microchip.com>
11602 L:      linux-iio@vger.kernel.org
11603 S:      Supported
11604 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11605 F:      drivers/iio/adc/at91-sama5d2_adc.c
11606 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11607
11608 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11609 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11610 S:      Supported
11611 F:      drivers/power/reset/at91-sama5d2_shdwc.c
11612
11613 MICROCHIP SPI DRIVER
11614 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11615 S:      Supported
11616 F:      drivers/spi/spi-atmel.*
11617
11618 MICROCHIP SSC DRIVER
11619 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11620 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11621 S:      Supported
11622 F:      drivers/misc/atmel-ssc.c
11623 F:      include/linux/atmel-ssc.h
11624
11625 MICROCHIP USB251XB DRIVER
11626 M:      Richard Leitner <richard.leitner@skidata.com>
11627 L:      linux-usb@vger.kernel.org
11628 S:      Maintained
11629 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
11630 F:      drivers/usb/misc/usb251xb.c
11631
11632 MICROCHIP USBA UDC DRIVER
11633 M:      Cristian Birsan <cristian.birsan@microchip.com>
11634 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11635 S:      Supported
11636 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
11637
11638 MICROCHIP WILC1000 WIFI DRIVER
11639 M:      Ajay Singh <ajay.kathat@microchip.com>
11640 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11641 L:      linux-wireless@vger.kernel.org
11642 S:      Supported
11643 F:      drivers/net/wireless/microchip/wilc1000/
11644
11645 MICROSEMI MIPS SOCS
11646 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
11647 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11648 L:      linux-mips@vger.kernel.org
11649 S:      Supported
11650 F:      Documentation/devicetree/bindings/mips/mscc.txt
11651 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
11652 F:      arch/mips/boot/dts/mscc/
11653 F:      arch/mips/configs/generic/board-ocelot.config
11654 F:      arch/mips/generic/board-ocelot.c
11655
11656 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11657 M:      Don Brace <don.brace@microchip.com>
11658 L:      storagedev@microchip.com
11659 L:      linux-scsi@vger.kernel.org
11660 S:      Supported
11661 F:      Documentation/scsi/smartpqi.rst
11662 F:      drivers/scsi/smartpqi/Kconfig
11663 F:      drivers/scsi/smartpqi/Makefile
11664 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
11665 F:      include/linux/cciss*.h
11666 F:      include/uapi/linux/cciss*.h
11667
11668 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11669 M:      Chen Yu <yu.c.chen@intel.com>
11670 L:      platform-driver-x86@vger.kernel.org
11671 S:      Supported
11672 F:      drivers/platform/x86/surfacepro3_button.c
11673
11674 MICROTEK X6 SCANNER
11675 M:      Oliver Neukum <oliver@neukum.org>
11676 S:      Maintained
11677 F:      drivers/usb/image/microtek.*
11678
11679 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
11680 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11681 L:      linux-media@vger.kernel.org
11682 S:      Maintained
11683 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
11684 F:      Documentation/driver-api/media/drivers/ccs/
11685 F:      drivers/media/i2c/ccs-pll.c
11686 F:      drivers/media/i2c/ccs-pll.h
11687 F:      drivers/media/i2c/ccs/
11688 F:      include/uapi/linux/smiapp.h
11689
11690 MIPS
11691 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11692 L:      linux-mips@vger.kernel.org
11693 S:      Maintained
11694 W:      http://www.linux-mips.org/
11695 Q:      https://patchwork.kernel.org/project/linux-mips/list/
11696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11697 F:      Documentation/devicetree/bindings/mips/
11698 F:      Documentation/mips/
11699 F:      arch/mips/
11700 F:      drivers/platform/mips/
11701
11702 MIPS BOSTON DEVELOPMENT BOARD
11703 M:      Paul Burton <paulburton@kernel.org>
11704 L:      linux-mips@vger.kernel.org
11705 S:      Maintained
11706 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
11707 F:      arch/mips/boot/dts/img/boston.dts
11708 F:      arch/mips/configs/generic/board-boston.config
11709 F:      drivers/clk/imgtec/clk-boston.c
11710 F:      include/dt-bindings/clock/boston-clock.h
11711
11712 MIPS CORE DRIVERS
11713 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11714 M:      Serge Semin <fancer.lancer@gmail.com>
11715 L:      linux-mips@vger.kernel.org
11716 S:      Supported
11717 F:      drivers/bus/mips_cdmm.c
11718 F:      drivers/clocksource/mips-gic-timer.c
11719 F:      drivers/cpuidle/cpuidle-cps.c
11720 F:      drivers/irqchip/irq-mips-cpu.c
11721 F:      drivers/irqchip/irq-mips-gic.c
11722
11723 MIPS GENERIC PLATFORM
11724 M:      Paul Burton <paulburton@kernel.org>
11725 L:      linux-mips@vger.kernel.org
11726 S:      Supported
11727 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
11728 F:      arch/mips/generic/
11729 F:      arch/mips/tools/generic-board-config.sh
11730
11731 MIPS RINT INSTRUCTION EMULATION
11732 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
11733 L:      linux-mips@vger.kernel.org
11734 S:      Supported
11735 F:      arch/mips/math-emu/dp_rint.c
11736 F:      arch/mips/math-emu/sp_rint.c
11737
11738 MIPS/LOONGSON1 ARCHITECTURE
11739 M:      Keguang Zhang <keguang.zhang@gmail.com>
11740 L:      linux-mips@vger.kernel.org
11741 S:      Maintained
11742 F:      arch/mips/include/asm/mach-loongson32/
11743 F:      arch/mips/loongson32/
11744 F:      drivers/*/*/*loongson1*
11745 F:      drivers/*/*loongson1*
11746
11747 MIPS/LOONGSON2EF ARCHITECTURE
11748 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11749 L:      linux-mips@vger.kernel.org
11750 S:      Maintained
11751 F:      arch/mips/include/asm/mach-loongson2ef/
11752 F:      arch/mips/loongson2ef/
11753 F:      drivers/*/*/*loongson2*
11754 F:      drivers/*/*loongson2*
11755
11756 MIPS/LOONGSON64 ARCHITECTURE
11757 M:      Huacai Chen <chenhc@lemote.com>
11758 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11759 L:      linux-mips@vger.kernel.org
11760 S:      Maintained
11761 F:      arch/mips/include/asm/mach-loongson64/
11762 F:      arch/mips/loongson64/
11763 F:      drivers/*/*/*loongson3*
11764 F:      drivers/*/*loongson3*
11765 F:      drivers/irqchip/irq-loongson*
11766 F:      drivers/platform/mips/cpu_hwmon.c
11767
11768 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11769 M:      Hans Verkuil <hverkuil@xs4all.nl>
11770 L:      linux-media@vger.kernel.org
11771 S:      Odd Fixes
11772 W:      https://linuxtv.org
11773 T:      git git://linuxtv.org/media_tree.git
11774 F:      drivers/media/radio/radio-miropcm20*
11775
11776 MMP SUPPORT
11777 R:      Lubomir Rintel <lkundrak@v3.sk>
11778 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11779 S:      Odd Fixes
11780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11781 F:      arch/arm/boot/dts/mmp*
11782 F:      arch/arm/mach-mmp/
11783 F:      include/linux/soc/mmp/
11784
11785 MMP USB PHY DRIVERS
11786 R:      Lubomir Rintel <lkundrak@v3.sk>
11787 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11788 S:      Maintained
11789 F:      drivers/phy/marvell/phy-mmp3-usb.c
11790 F:      drivers/phy/marvell/phy-pxa-usb.c
11791
11792 MMU GATHER AND TLB INVALIDATION
11793 M:      Will Deacon <will@kernel.org>
11794 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
11795 M:      Andrew Morton <akpm@linux-foundation.org>
11796 M:      Nick Piggin <npiggin@gmail.com>
11797 M:      Peter Zijlstra <peterz@infradead.org>
11798 L:      linux-arch@vger.kernel.org
11799 L:      linux-mm@kvack.org
11800 S:      Maintained
11801 F:      arch/*/include/asm/tlb.h
11802 F:      include/asm-generic/tlb.h
11803 F:      mm/mmu_gather.c
11804
11805 MN88472 MEDIA DRIVER
11806 M:      Antti Palosaari <crope@iki.fi>
11807 L:      linux-media@vger.kernel.org
11808 S:      Maintained
11809 W:      https://linuxtv.org
11810 W:      http://palosaari.fi/linux/
11811 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11812 F:      drivers/media/dvb-frontends/mn88472*
11813
11814 MN88473 MEDIA DRIVER
11815 M:      Antti Palosaari <crope@iki.fi>
11816 L:      linux-media@vger.kernel.org
11817 S:      Maintained
11818 W:      https://linuxtv.org
11819 W:      http://palosaari.fi/linux/
11820 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11821 F:      drivers/media/dvb-frontends/mn88473*
11822
11823 MODULE SUPPORT
11824 M:      Jessica Yu <jeyu@kernel.org>
11825 S:      Maintained
11826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11827 F:      include/linux/module.h
11828 F:      kernel/module.c
11829
11830 MONOLITHIC POWER SYSTEM PMIC DRIVER
11831 M:      Saravanan Sekar <sravanhome@gmail.com>
11832 S:      Maintained
11833 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
11834 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
11835 F:      drivers/iio/adc/mp2629_adc.c
11836 F:      drivers/mfd/mp2629.c
11837 F:      drivers/power/supply/mp2629_charger.c
11838 F:      drivers/regulator/mp5416.c
11839 F:      drivers/regulator/mpq7920.c
11840 F:      drivers/regulator/mpq7920.h
11841 F:      include/linux/mfd/mp2629.h
11842
11843 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11844 S:      Orphan
11845 W:      http://popies.net/meye/
11846 F:      Documentation/userspace-api/media/drivers/meye*
11847 F:      drivers/media/pci/meye/
11848 F:      include/uapi/linux/meye.h
11849
11850 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
11851 M:      Jiri Slaby <jirislaby@kernel.org>
11852 S:      Maintained
11853 F:      Documentation/driver-api/serial/moxa-smartio.rst
11854 F:      drivers/tty/mxser.*
11855
11856 MR800 AVERMEDIA USB FM RADIO DRIVER
11857 M:      Alexey Klimov <klimov.linux@gmail.com>
11858 L:      linux-media@vger.kernel.org
11859 S:      Maintained
11860 T:      git git://linuxtv.org/media_tree.git
11861 F:      drivers/media/radio/radio-mr800.c
11862
11863 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11864 M:      Alan Ott <alan@signal11.us>
11865 L:      linux-wpan@vger.kernel.org
11866 S:      Maintained
11867 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11868 F:      drivers/net/ieee802154/mrf24j40.c
11869
11870 MSI LAPTOP SUPPORT
11871 M:      "Lee, Chun-Yi" <jlee@suse.com>
11872 L:      platform-driver-x86@vger.kernel.org
11873 S:      Maintained
11874 F:      drivers/platform/x86/msi-laptop.c
11875
11876 MSI WMI SUPPORT
11877 L:      platform-driver-x86@vger.kernel.org
11878 S:      Orphan
11879 F:      drivers/platform/x86/msi-wmi.c
11880
11881 MSI001 MEDIA DRIVER
11882 M:      Antti Palosaari <crope@iki.fi>
11883 L:      linux-media@vger.kernel.org
11884 S:      Maintained
11885 W:      https://linuxtv.org
11886 W:      http://palosaari.fi/linux/
11887 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11888 T:      git git://linuxtv.org/anttip/media_tree.git
11889 F:      drivers/media/tuners/msi001*
11890
11891 MSI2500 MEDIA DRIVER
11892 M:      Antti Palosaari <crope@iki.fi>
11893 L:      linux-media@vger.kernel.org
11894 S:      Maintained
11895 W:      https://linuxtv.org
11896 W:      http://palosaari.fi/linux/
11897 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11898 T:      git git://linuxtv.org/anttip/media_tree.git
11899 F:      drivers/media/usb/msi2500/
11900
11901 MSTAR INTERRUPT CONTROLLER DRIVER
11902 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
11903 M:      Daniel Palmer <daniel@thingy.jp>
11904 S:      Maintained
11905 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
11906 F:      drivers/irqchip/irq-mst-intc.c
11907
11908 MSYSTEMS DISKONCHIP G3 MTD DRIVER
11909 M:      Robert Jarzmik <robert.jarzmik@free.fr>
11910 L:      linux-mtd@lists.infradead.org
11911 S:      Maintained
11912 F:      drivers/mtd/devices/docg3*
11913
11914 MT9M032 APTINA SENSOR DRIVER
11915 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11916 L:      linux-media@vger.kernel.org
11917 S:      Maintained
11918 T:      git git://linuxtv.org/media_tree.git
11919 F:      drivers/media/i2c/mt9m032.c
11920 F:      include/media/i2c/mt9m032.h
11921
11922 MT9P031 APTINA CAMERA SENSOR
11923 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11924 L:      linux-media@vger.kernel.org
11925 S:      Maintained
11926 T:      git git://linuxtv.org/media_tree.git
11927 F:      drivers/media/i2c/mt9p031.c
11928 F:      include/media/i2c/mt9p031.h
11929
11930 MT9T001 APTINA CAMERA SENSOR
11931 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11932 L:      linux-media@vger.kernel.org
11933 S:      Maintained
11934 T:      git git://linuxtv.org/media_tree.git
11935 F:      drivers/media/i2c/mt9t001.c
11936 F:      include/media/i2c/mt9t001.h
11937
11938 MT9T112 APTINA CAMERA SENSOR
11939 M:      Jacopo Mondi <jacopo@jmondi.org>
11940 L:      linux-media@vger.kernel.org
11941 S:      Odd Fixes
11942 T:      git git://linuxtv.org/media_tree.git
11943 F:      drivers/media/i2c/mt9t112.c
11944 F:      include/media/i2c/mt9t112.h
11945
11946 MT9V032 APTINA CAMERA SENSOR
11947 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11948 L:      linux-media@vger.kernel.org
11949 S:      Maintained
11950 T:      git git://linuxtv.org/media_tree.git
11951 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
11952 F:      drivers/media/i2c/mt9v032.c
11953 F:      include/media/i2c/mt9v032.h
11954
11955 MT9V111 APTINA CAMERA SENSOR
11956 M:      Jacopo Mondi <jacopo@jmondi.org>
11957 L:      linux-media@vger.kernel.org
11958 S:      Maintained
11959 T:      git git://linuxtv.org/media_tree.git
11960 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
11961 F:      drivers/media/i2c/mt9v111.c
11962
11963 MULTIFUNCTION DEVICES (MFD)
11964 M:      Lee Jones <lee.jones@linaro.org>
11965 S:      Supported
11966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11967 F:      Documentation/devicetree/bindings/mfd/
11968 F:      drivers/mfd/
11969 F:      include/dt-bindings/mfd/
11970 F:      include/linux/mfd/
11971
11972 MULTIMEDIA CARD (MMC) ETC. OVER SPI
11973 S:      Orphan
11974 F:      drivers/mmc/host/mmc_spi.c
11975 F:      include/linux/spi/mmc_spi.h
11976
11977 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
11978 M:      Ulf Hansson <ulf.hansson@linaro.org>
11979 L:      linux-mmc@vger.kernel.org
11980 S:      Maintained
11981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
11982 F:      Documentation/devicetree/bindings/mmc/
11983 F:      drivers/mmc/
11984 F:      include/linux/mmc/
11985 F:      include/uapi/linux/mmc/
11986
11987 MULTIPLEXER SUBSYSTEM
11988 M:      Peter Rosin <peda@axentia.se>
11989 S:      Maintained
11990 F:      Documentation/ABI/testing/sysfs-class-mux*
11991 F:      Documentation/devicetree/bindings/mux/
11992 F:      drivers/mux/
11993 F:      include/dt-bindings/mux/
11994 F:      include/linux/mux/
11995
11996 MULTITECH MULTIPORT CARD (ISICOM)
11997 S:      Orphan
11998 F:      drivers/tty/isicom.c
11999 F:      include/linux/isicom.h
12000
12001 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12002 M:      Bin Liu <b-liu@ti.com>
12003 L:      linux-usb@vger.kernel.org
12004 S:      Maintained
12005 F:      drivers/usb/musb/
12006
12007 MXL301RF MEDIA DRIVER
12008 M:      Akihiro Tsukada <tskd08@gmail.com>
12009 L:      linux-media@vger.kernel.org
12010 S:      Odd Fixes
12011 F:      drivers/media/tuners/mxl301rf*
12012
12013 MXL5007T MEDIA DRIVER
12014 M:      Michael Krufky <mkrufky@linuxtv.org>
12015 L:      linux-media@vger.kernel.org
12016 S:      Maintained
12017 W:      https://linuxtv.org
12018 W:      http://github.com/mkrufky
12019 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12020 T:      git git://linuxtv.org/mkrufky/tuners.git
12021 F:      drivers/media/tuners/mxl5007t.*
12022
12023 MXSFB DRM DRIVER
12024 M:      Marek Vasut <marex@denx.de>
12025 M:      Stefan Agner <stefan@agner.ch>
12026 L:      dri-devel@lists.freedesktop.org
12027 S:      Supported
12028 T:      git git://anongit.freedesktop.org/drm/drm-misc
12029 F:      Documentation/devicetree/bindings/display/mxsfb.txt
12030 F:      drivers/gpu/drm/mxsfb/
12031
12032 MYLEX DAC960 PCI RAID Controller
12033 M:      Hannes Reinecke <hare@kernel.org>
12034 L:      linux-scsi@vger.kernel.org
12035 S:      Supported
12036 F:      drivers/scsi/myrb.*
12037 F:      drivers/scsi/myrs.*
12038
12039 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12040 M:      Chris Lee <christopher.lee@cspi.com>
12041 L:      netdev@vger.kernel.org
12042 S:      Supported
12043 W:      https://www.cspi.com/ethernet-products/support/downloads/
12044 F:      drivers/net/ethernet/myricom/myri10ge/
12045
12046 NAND FLASH SUBSYSTEM
12047 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12048 R:      Richard Weinberger <richard@nod.at>
12049 L:      linux-mtd@lists.infradead.org
12050 S:      Maintained
12051 W:      http://www.linux-mtd.infradead.org/
12052 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12053 C:      irc://irc.oftc.net/mtd
12054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12055 F:      drivers/mtd/nand/
12056 F:      include/linux/mtd/*nand*.h
12057
12058 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12059 M:      Daniel Mack <zonque@gmail.com>
12060 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12061 S:      Maintained
12062 W:      http://www.native-instruments.com
12063 F:      sound/usb/caiaq/
12064
12065 NATSEMI ETHERNET DRIVER (DP8381x)
12066 S:      Orphan
12067 F:      drivers/net/ethernet/natsemi/natsemi.c
12068
12069 NCR 5380 SCSI DRIVERS
12070 M:      Finn Thain <fthain@telegraphics.com.au>
12071 M:      Michael Schmitz <schmitzmic@gmail.com>
12072 L:      linux-scsi@vger.kernel.org
12073 S:      Maintained
12074 F:      Documentation/scsi/g_NCR5380.rst
12075 F:      drivers/scsi/NCR5380.*
12076 F:      drivers/scsi/arm/cumana_1.c
12077 F:      drivers/scsi/arm/oak.c
12078 F:      drivers/scsi/atari_scsi.*
12079 F:      drivers/scsi/dmx3191d.c
12080 F:      drivers/scsi/g_NCR5380.*
12081 F:      drivers/scsi/mac_scsi.*
12082 F:      drivers/scsi/sun3_scsi.*
12083 F:      drivers/scsi/sun3_scsi_vme.c
12084
12085 NCSI LIBRARY
12086 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
12087 S:      Maintained
12088 F:      net/ncsi/
12089
12090 NCT6775 HARDWARE MONITOR DRIVER
12091 M:      Guenter Roeck <linux@roeck-us.net>
12092 L:      linux-hwmon@vger.kernel.org
12093 S:      Maintained
12094 F:      Documentation/hwmon/nct6775.rst
12095 F:      drivers/hwmon/nct6775.c
12096
12097 NETDEVSIM
12098 M:      Jakub Kicinski <kuba@kernel.org>
12099 S:      Maintained
12100 F:      drivers/net/netdevsim/*
12101
12102 NETEM NETWORK EMULATOR
12103 M:      Stephen Hemminger <stephen@networkplumber.org>
12104 L:      netdev@vger.kernel.org
12105 S:      Maintained
12106 F:      net/sched/sch_netem.c
12107
12108 NETERION 10GbE DRIVERS (s2io/vxge)
12109 M:      Jon Mason <jdmason@kudzu.us>
12110 L:      netdev@vger.kernel.org
12111 S:      Supported
12112 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12113 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12114 F:      drivers/net/ethernet/neterion/
12115
12116 NETFILTER
12117 M:      Pablo Neira Ayuso <pablo@netfilter.org>
12118 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
12119 M:      Florian Westphal <fw@strlen.de>
12120 L:      netfilter-devel@vger.kernel.org
12121 L:      coreteam@netfilter.org
12122 S:      Maintained
12123 W:      http://www.netfilter.org/
12124 W:      http://www.iptables.org/
12125 W:      http://www.nftables.org/
12126 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
12127 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
12128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
12129 F:      include/linux/netfilter*
12130 F:      include/linux/netfilter/
12131 F:      include/net/netfilter/
12132 F:      include/uapi/linux/netfilter*
12133 F:      include/uapi/linux/netfilter/
12134 F:      net/*/netfilter.c
12135 F:      net/*/netfilter/
12136 F:      net/bridge/br_netfilter*.c
12137 F:      net/netfilter/
12138
12139 NETROM NETWORK LAYER
12140 M:      Ralf Baechle <ralf@linux-mips.org>
12141 L:      linux-hams@vger.kernel.org
12142 S:      Maintained
12143 W:      http://www.linux-ax25.org/
12144 F:      include/net/netrom.h
12145 F:      include/uapi/linux/netrom.h
12146 F:      net/netrom/
12147
12148 NETRONOME ETHERNET DRIVERS
12149 M:      Simon Horman <simon.horman@netronome.com>
12150 R:      Jakub Kicinski <kuba@kernel.org>
12151 L:      oss-drivers@netronome.com
12152 S:      Maintained
12153 F:      drivers/net/ethernet/netronome/
12154
12155 NETWORK BLOCK DEVICE (NBD)
12156 M:      Josef Bacik <josef@toxicpanda.com>
12157 L:      linux-block@vger.kernel.org
12158 L:      nbd@other.debian.org
12159 S:      Maintained
12160 F:      Documentation/admin-guide/blockdev/nbd.rst
12161 F:      drivers/block/nbd.c
12162 F:      include/trace/events/nbd.h
12163 F:      include/uapi/linux/nbd.h
12164
12165 NETWORK DROP MONITOR
12166 M:      Neil Horman <nhorman@tuxdriver.com>
12167 L:      netdev@vger.kernel.org
12168 S:      Maintained
12169 W:      https://fedorahosted.org/dropwatch/
12170 F:      include/uapi/linux/net_dropmon.h
12171 F:      net/core/drop_monitor.c
12172
12173 NETWORKING DRIVERS
12174 M:      "David S. Miller" <davem@davemloft.net>
12175 M:      Jakub Kicinski <kuba@kernel.org>
12176 L:      netdev@vger.kernel.org
12177 S:      Maintained
12178 W:      http://www.linuxfoundation.org/en/Net
12179 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12182 F:      Documentation/devicetree/bindings/net/
12183 F:      drivers/connector/
12184 F:      drivers/net/
12185 F:      include/linux/etherdevice.h
12186 F:      include/linux/fcdevice.h
12187 F:      include/linux/fddidevice.h
12188 F:      include/linux/hippidevice.h
12189 F:      include/linux/if_*
12190 F:      include/linux/inetdevice.h
12191 F:      include/linux/netdevice.h
12192 F:      include/uapi/linux/if_*
12193 F:      include/uapi/linux/netdevice.h
12194
12195 NETWORKING DRIVERS (WIRELESS)
12196 M:      Kalle Valo <kvalo@codeaurora.org>
12197 L:      linux-wireless@vger.kernel.org
12198 S:      Maintained
12199 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
12201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
12202 F:      Documentation/devicetree/bindings/net/wireless/
12203 F:      drivers/net/wireless/
12204
12205 NETWORKING [DSA]
12206 M:      Andrew Lunn <andrew@lunn.ch>
12207 M:      Vivien Didelot <vivien.didelot@gmail.com>
12208 M:      Florian Fainelli <f.fainelli@gmail.com>
12209 M:      Vladimir Oltean <olteanv@gmail.com>
12210 S:      Maintained
12211 F:      Documentation/devicetree/bindings/net/dsa/
12212 F:      drivers/net/dsa/
12213 F:      include/linux/dsa/
12214 F:      include/linux/platform_data/dsa.h
12215 F:      include/net/dsa.h
12216 F:      net/dsa/
12217
12218 NETWORKING [GENERAL]
12219 M:      "David S. Miller" <davem@davemloft.net>
12220 M:      Jakub Kicinski <kuba@kernel.org>
12221 L:      netdev@vger.kernel.org
12222 S:      Maintained
12223 W:      http://www.linuxfoundation.org/en/Net
12224 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12225 B:      mailto:netdev@vger.kernel.org
12226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12228 F:      Documentation/networking/
12229 F:      include/linux/in.h
12230 F:      include/linux/net.h
12231 F:      include/linux/netdevice.h
12232 F:      include/net/
12233 F:      include/uapi/linux/in.h
12234 F:      include/uapi/linux/net.h
12235 F:      include/uapi/linux/net_namespace.h
12236 F:      include/uapi/linux/netdevice.h
12237 F:      lib/net_utils.c
12238 F:      lib/random32.c
12239 F:      net/
12240 F:      tools/testing/selftests/net/
12241
12242 NETWORKING [IPSEC]
12243 M:      Steffen Klassert <steffen.klassert@secunet.com>
12244 M:      Herbert Xu <herbert@gondor.apana.org.au>
12245 M:      "David S. Miller" <davem@davemloft.net>
12246 L:      netdev@vger.kernel.org
12247 S:      Maintained
12248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
12249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
12250 F:      include/net/xfrm.h
12251 F:      include/uapi/linux/xfrm.h
12252 F:      net/ipv4/ah4.c
12253 F:      net/ipv4/esp4*
12254 F:      net/ipv4/ip_vti.c
12255 F:      net/ipv4/ipcomp.c
12256 F:      net/ipv4/xfrm*
12257 F:      net/ipv6/ah6.c
12258 F:      net/ipv6/esp6*
12259 F:      net/ipv6/ip6_vti.c
12260 F:      net/ipv6/ipcomp6.c
12261 F:      net/ipv6/xfrm*
12262 F:      net/key/
12263 F:      net/xfrm/
12264 F:      tools/testing/selftests/net/ipsec.c
12265
12266 NETWORKING [IPv4/IPv6]
12267 M:      "David S. Miller" <davem@davemloft.net>
12268 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
12269 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
12270 L:      netdev@vger.kernel.org
12271 S:      Maintained
12272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12273 F:      arch/x86/net/*
12274 F:      include/net/ip*
12275 F:      net/ipv4/
12276 F:      net/ipv6/
12277
12278 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
12279 M:      Paul Moore <paul@paul-moore.com>
12280 L:      netdev@vger.kernel.org
12281 L:      linux-security-module@vger.kernel.org
12282 S:      Maintained
12283 W:      https://github.com/netlabel
12284 F:      Documentation/netlabel/
12285 F:      include/net/calipso.h
12286 F:      include/net/cipso_ipv4.h
12287 F:      include/net/netlabel.h
12288 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
12289 F:      include/uapi/linux/netfilter/xt_SECMARK.h
12290 F:      net/ipv4/cipso_ipv4.c
12291 F:      net/ipv6/calipso.c
12292 F:      net/netfilter/xt_CONNSECMARK.c
12293 F:      net/netfilter/xt_SECMARK.c
12294 F:      net/netlabel/
12295
12296 NETWORKING [MPTCP]
12297 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
12298 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
12299 L:      netdev@vger.kernel.org
12300 L:      mptcp@lists.01.org
12301 S:      Maintained
12302 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
12303 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
12304 F:      include/net/mptcp.h
12305 F:      include/uapi/linux/mptcp.h
12306 F:      net/mptcp/
12307 F:      tools/testing/selftests/net/mptcp/
12308
12309 NETWORKING [TCP]
12310 M:      Eric Dumazet <edumazet@google.com>
12311 L:      netdev@vger.kernel.org
12312 S:      Maintained
12313 F:      include/linux/tcp.h
12314 F:      include/net/tcp.h
12315 F:      include/trace/events/tcp.h
12316 F:      include/uapi/linux/tcp.h
12317 F:      net/ipv4/syncookies.c
12318 F:      net/ipv4/tcp*.c
12319 F:      net/ipv6/syncookies.c
12320 F:      net/ipv6/tcp*.c
12321
12322 NETWORKING [TLS]
12323 M:      Boris Pismenny <borisp@nvidia.com>
12324 M:      Aviad Yehezkel <aviadye@nvidia.com>
12325 M:      John Fastabend <john.fastabend@gmail.com>
12326 M:      Daniel Borkmann <daniel@iogearbox.net>
12327 M:      Jakub Kicinski <kuba@kernel.org>
12328 L:      netdev@vger.kernel.org
12329 S:      Maintained
12330 F:      include/net/tls.h
12331 F:      include/uapi/linux/tls.h
12332 F:      net/tls/*
12333
12334 NETWORKING [WIRELESS]
12335 L:      linux-wireless@vger.kernel.org
12336 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12337
12338 NETXEN (1/10) GbE SUPPORT
12339 M:      Manish Chopra <manishc@marvell.com>
12340 M:      Rahul Verma <rahulv@marvell.com>
12341 M:      GR-Linux-NIC-Dev@marvell.com
12342 L:      netdev@vger.kernel.org
12343 S:      Supported
12344 F:      drivers/net/ethernet/qlogic/netxen/
12345
12346 NET_FAILOVER MODULE
12347 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
12348 L:      netdev@vger.kernel.org
12349 S:      Supported
12350 F:      Documentation/networking/net_failover.rst
12351 F:      drivers/net/net_failover.c
12352 F:      include/net/net_failover.h
12353
12354 NEXTHOP
12355 M:      David Ahern <dsahern@kernel.org>
12356 L:      netdev@vger.kernel.org
12357 S:      Maintained
12358 F:      include/net/netns/nexthop.h
12359 F:      include/net/nexthop.h
12360 F:      include/uapi/linux/nexthop.h
12361 F:      net/ipv4/nexthop.c
12362
12363 NFC SUBSYSTEM
12364 L:      netdev@vger.kernel.org
12365 S:      Orphan
12366 F:      Documentation/devicetree/bindings/net/nfc/
12367 F:      drivers/nfc/
12368 F:      include/linux/platform_data/nfcmrvl.h
12369 F:      include/net/nfc/
12370 F:      include/uapi/linux/nfc.h
12371 F:      net/nfc/
12372
12373 NFS, SUNRPC, AND LOCKD CLIENTS
12374 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
12375 M:      Anna Schumaker <anna.schumaker@netapp.com>
12376 L:      linux-nfs@vger.kernel.org
12377 S:      Maintained
12378 W:      http://client.linux-nfs.org
12379 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
12380 F:      fs/lockd/
12381 F:      fs/nfs/
12382 F:      fs/nfs_common/
12383 F:      include/linux/lockd/
12384 F:      include/linux/nfs*
12385 F:      include/linux/sunrpc/
12386 F:      include/uapi/linux/nfs*
12387 F:      include/uapi/linux/sunrpc/
12388 F:      net/sunrpc/
12389 F:      Documentation/filesystems/nfs/
12390
12391 NILFS2 FILESYSTEM
12392 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
12393 L:      linux-nilfs@vger.kernel.org
12394 S:      Supported
12395 W:      https://nilfs.sourceforge.io/
12396 W:      https://nilfs.osdn.jp/
12397 T:      git git://github.com/konis/nilfs2.git
12398 F:      Documentation/filesystems/nilfs2.rst
12399 F:      fs/nilfs2/
12400 F:      include/trace/events/nilfs2.h
12401 F:      include/uapi/linux/nilfs2_api.h
12402 F:      include/uapi/linux/nilfs2_ondisk.h
12403
12404 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
12405 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12406 S:      Maintained
12407 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12408 F:      Documentation/scsi/NinjaSCSI.rst
12409 F:      drivers/scsi/pcmcia/nsp_*
12410
12411 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
12412 M:      GOTO Masanori <gotom@debian.or.jp>
12413 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12414 S:      Maintained
12415 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12416 F:      Documentation/scsi/NinjaSCSI.rst
12417 F:      drivers/scsi/nsp32*
12418
12419 NIOS2 ARCHITECTURE
12420 M:      Ley Foon Tan <ley.foon.tan@intel.com>
12421 S:      Maintained
12422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
12423 F:      arch/nios2/
12424
12425 NITRO ENCLAVES (NE)
12426 M:      Andra Paraschiv <andraprs@amazon.com>
12427 M:      Alexandru Vasile <lexnv@amazon.com>
12428 M:      Alexandru Ciobotaru <alcioa@amazon.com>
12429 L:      linux-kernel@vger.kernel.org
12430 S:      Supported
12431 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
12432 F:      Documentation/virt/ne_overview.rst
12433 F:      drivers/virt/nitro_enclaves/
12434 F:      include/linux/nitro_enclaves.h
12435 F:      include/uapi/linux/nitro_enclaves.h
12436 F:      samples/nitro_enclaves/
12437
12438 NOHZ, DYNTICKS SUPPORT
12439 M:      Frederic Weisbecker <fweisbec@gmail.com>
12440 M:      Thomas Gleixner <tglx@linutronix.de>
12441 M:      Ingo Molnar <mingo@kernel.org>
12442 L:      linux-kernel@vger.kernel.org
12443 S:      Maintained
12444 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
12445 F:      include/linux/sched/nohz.h
12446 F:      include/linux/tick.h
12447 F:      kernel/time/tick*.*
12448
12449 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
12450 M:      Pavel Machek <pavel@ucw.cz>
12451 M:      Sakari Ailus <sakari.ailus@iki.fi>
12452 L:      linux-media@vger.kernel.org
12453 S:      Maintained
12454 F:      drivers/media/i2c/ad5820.c
12455 F:      drivers/media/i2c/et8ek8
12456
12457 NOKIA N900 POWER SUPPLY DRIVERS
12458 R:      Pali Rohár <pali@kernel.org>
12459 F:      drivers/power/supply/bq2415x_charger.c
12460 F:      drivers/power/supply/bq27xxx_battery.c
12461 F:      drivers/power/supply/bq27xxx_battery_i2c.c
12462 F:      drivers/power/supply/isp1704_charger.c
12463 F:      drivers/power/supply/rx51_battery.c
12464 F:      include/linux/power/bq2415x_charger.h
12465 F:      include/linux/power/bq27xxx_battery.h
12466
12467 NOLIBC HEADER FILE
12468 M:      Willy Tarreau <w@1wt.eu>
12469 S:      Maintained
12470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
12471 F:      tools/include/nolibc/
12472
12473 NSDEPS
12474 M:      Matthias Maennich <maennich@google.com>
12475 S:      Maintained
12476 F:      Documentation/core-api/symbol-namespaces.rst
12477 F:      scripts/nsdeps
12478
12479 NTB AMD DRIVER
12480 M:      Sanjay R Mehta <sanju.mehta@amd.com>
12481 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
12482 L:      linux-ntb@googlegroups.com
12483 S:      Supported
12484 F:      drivers/ntb/hw/amd/
12485
12486 NTB DRIVER CORE
12487 M:      Jon Mason <jdmason@kudzu.us>
12488 M:      Dave Jiang <dave.jiang@intel.com>
12489 M:      Allen Hubbe <allenbh@gmail.com>
12490 L:      linux-ntb@googlegroups.com
12491 S:      Supported
12492 W:      https://github.com/jonmason/ntb/wiki
12493 T:      git git://github.com/jonmason/ntb.git
12494 F:      drivers/net/ntb_netdev.c
12495 F:      drivers/ntb/
12496 F:      include/linux/ntb.h
12497 F:      include/linux/ntb_transport.h
12498 F:      tools/testing/selftests/ntb/
12499
12500 NTB IDT DRIVER
12501 M:      Serge Semin <fancer.lancer@gmail.com>
12502 L:      linux-ntb@googlegroups.com
12503 S:      Supported
12504 F:      drivers/ntb/hw/idt/
12505
12506 NTB INTEL DRIVER
12507 M:      Dave Jiang <dave.jiang@intel.com>
12508 L:      linux-ntb@googlegroups.com
12509 S:      Supported
12510 W:      https://github.com/davejiang/linux/wiki
12511 T:      git https://github.com/davejiang/linux.git
12512 F:      drivers/ntb/hw/intel/
12513
12514 NTFS FILESYSTEM
12515 M:      Anton Altaparmakov <anton@tuxera.com>
12516 L:      linux-ntfs-dev@lists.sourceforge.net
12517 S:      Supported
12518 W:      http://www.tuxera.com/
12519 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12520 F:      Documentation/filesystems/ntfs.rst
12521 F:      fs/ntfs/
12522
12523 NUBUS SUBSYSTEM
12524 M:      Finn Thain <fthain@telegraphics.com.au>
12525 L:      linux-m68k@lists.linux-m68k.org
12526 S:      Maintained
12527 F:      arch/*/include/asm/nubus.h
12528 F:      drivers/nubus/
12529 F:      include/linux/nubus.h
12530 F:      include/uapi/linux/nubus.h
12531
12532 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12533 M:      Antonino Daplas <adaplas@gmail.com>
12534 L:      linux-fbdev@vger.kernel.org
12535 S:      Maintained
12536 F:      drivers/video/fbdev/nvidia/
12537 F:      drivers/video/fbdev/riva/
12538
12539 NVM EXPRESS DRIVER
12540 M:      Keith Busch <kbusch@kernel.org>
12541 M:      Jens Axboe <axboe@fb.com>
12542 M:      Christoph Hellwig <hch@lst.de>
12543 M:      Sagi Grimberg <sagi@grimberg.me>
12544 L:      linux-nvme@lists.infradead.org
12545 S:      Supported
12546 W:      http://git.infradead.org/nvme.git
12547 T:      git://git.infradead.org/nvme.git
12548 F:      drivers/nvme/host/
12549 F:      include/linux/nvme.h
12550 F:      include/uapi/linux/nvme_ioctl.h
12551
12552 NVM EXPRESS FC TRANSPORT DRIVERS
12553 M:      James Smart <james.smart@broadcom.com>
12554 L:      linux-nvme@lists.infradead.org
12555 S:      Supported
12556 F:      drivers/nvme/host/fc.c
12557 F:      drivers/nvme/target/fc.c
12558 F:      drivers/nvme/target/fcloop.c
12559 F:      include/linux/nvme-fc-driver.h
12560 F:      include/linux/nvme-fc.h
12561
12562 NVM EXPRESS TARGET DRIVER
12563 M:      Christoph Hellwig <hch@lst.de>
12564 M:      Sagi Grimberg <sagi@grimberg.me>
12565 M:      Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
12566 L:      linux-nvme@lists.infradead.org
12567 S:      Supported
12568 W:      http://git.infradead.org/nvme.git
12569 T:      git://git.infradead.org/nvme.git
12570 F:      drivers/nvme/target/
12571
12572 NVMEM FRAMEWORK
12573 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
12574 S:      Maintained
12575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
12576 F:      Documentation/ABI/stable/sysfs-bus-nvmem
12577 F:      Documentation/devicetree/bindings/nvmem/
12578 F:      drivers/nvmem/
12579 F:      include/linux/nvmem-consumer.h
12580 F:      include/linux/nvmem-provider.h
12581
12582 NXP FSPI DRIVER
12583 M:      Ashish Kumar <ashish.kumar@nxp.com>
12584 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
12585 L:      linux-spi@vger.kernel.org
12586 S:      Maintained
12587 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12588 F:      drivers/spi/spi-nxp-fspi.c
12589
12590 NXP FXAS21002C DRIVER
12591 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12592 L:      linux-iio@vger.kernel.org
12593 S:      Maintained
12594 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
12595 F:      drivers/iio/gyro/fxas21002c.h
12596 F:      drivers/iio/gyro/fxas21002c_core.c
12597 F:      drivers/iio/gyro/fxas21002c_i2c.c
12598 F:      drivers/iio/gyro/fxas21002c_spi.c
12599
12600 NXP i.MX 8MQ DCSS DRIVER
12601 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
12602 R:      Lucas Stach <l.stach@pengutronix.de>
12603 L:      dri-devel@lists.freedesktop.org
12604 S:      Maintained
12605 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
12606 F:      drivers/gpu/drm/imx/dcss/
12607
12608 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
12609 M:      Krzysztof Kozlowski <krzk@kernel.org>
12610 L:      linux-kernel@vger.kernel.org
12611 S:      Maintained
12612 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
12613 F:      drivers/extcon/extcon-ptn5150.c
12614
12615 NXP SGTL5000 DRIVER
12616 M:      Fabio Estevam <festevam@gmail.com>
12617 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12618 S:      Maintained
12619 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
12620 F:      sound/soc/codecs/sgtl5000*
12621
12622 NXP SJA1105 ETHERNET SWITCH DRIVER
12623 M:      Vladimir Oltean <olteanv@gmail.com>
12624 L:      linux-kernel@vger.kernel.org
12625 S:      Maintained
12626 F:      drivers/net/dsa/sja1105
12627
12628 NXP TDA998X DRM DRIVER
12629 M:      Russell King <linux@armlinux.org.uk>
12630 S:      Maintained
12631 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12632 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12633 F:      drivers/gpu/drm/i2c/tda998x_drv.c
12634 F:      include/drm/i2c/tda998x.h
12635 F:      include/dt-bindings/display/tda998x.h
12636 K:      "nxp,tda998x"
12637
12638 NXP TFA9879 DRIVER
12639 M:      Peter Rosin <peda@axentia.se>
12640 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12641 S:      Maintained
12642 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
12643 F:      sound/soc/codecs/tfa9879*
12644
12645 NXP-NCI NFC DRIVER
12646 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
12647 R:      Charles Gorand <charles.gorand@effinnov.com>
12648 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
12649 S:      Supported
12650 F:      drivers/nfc/nxp-nci
12651
12652 OBJAGG
12653 M:      Jiri Pirko <jiri@nvidia.com>
12654 L:      netdev@vger.kernel.org
12655 S:      Supported
12656 F:      include/linux/objagg.h
12657 F:      lib/objagg.c
12658 F:      lib/test_objagg.c
12659
12660 OBJTOOL
12661 M:      Josh Poimboeuf <jpoimboe@redhat.com>
12662 M:      Peter Zijlstra <peterz@infradead.org>
12663 S:      Supported
12664 F:      tools/objtool/
12665 F:      include/linux/objtool.h
12666
12667 OCELOT ETHERNET SWITCH DRIVER
12668 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
12669 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
12670 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
12671 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12672 L:      netdev@vger.kernel.org
12673 S:      Supported
12674 F:      drivers/net/dsa/ocelot/*
12675 F:      drivers/net/ethernet/mscc/
12676 F:      include/soc/mscc/ocelot*
12677 F:      net/dsa/tag_ocelot.c
12678 F:      tools/testing/selftests/drivers/net/ocelot/*
12679
12680 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12681 M:      Frederic Barrat <fbarrat@linux.ibm.com>
12682 M:      Andrew Donnellan <ajd@linux.ibm.com>
12683 L:      linuxppc-dev@lists.ozlabs.org
12684 S:      Supported
12685 F:      Documentation/userspace-api/accelerators/ocxl.rst
12686 F:      arch/powerpc/include/asm/pnv-ocxl.h
12687 F:      arch/powerpc/platforms/powernv/ocxl.c
12688 F:      drivers/misc/ocxl/
12689 F:      include/misc/ocxl*
12690 F:      include/uapi/misc/ocxl.h
12691
12692 OMAP AUDIO SUPPORT
12693 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
12694 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
12695 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12696 L:      linux-omap@vger.kernel.org
12697 S:      Maintained
12698 F:      sound/soc/ti/n810.c
12699 F:      sound/soc/ti/omap*
12700 F:      sound/soc/ti/rx51.c
12701 F:      sound/soc/ti/sdma-pcm.*
12702
12703 OMAP CLOCK FRAMEWORK SUPPORT
12704 M:      Paul Walmsley <paul@pwsan.com>
12705 L:      linux-omap@vger.kernel.org
12706 S:      Maintained
12707 F:      arch/arm/*omap*/*clock*
12708
12709 OMAP DEVICE TREE SUPPORT
12710 M:      Benoît Cousson <bcousson@baylibre.com>
12711 M:      Tony Lindgren <tony@atomide.com>
12712 L:      linux-omap@vger.kernel.org
12713 L:      devicetree@vger.kernel.org
12714 S:      Maintained
12715 F:      arch/arm/boot/dts/*am3*
12716 F:      arch/arm/boot/dts/*am4*
12717 F:      arch/arm/boot/dts/*am5*
12718 F:      arch/arm/boot/dts/*dra7*
12719 F:      arch/arm/boot/dts/*omap*
12720 F:      arch/arm/boot/dts/logicpd-som-lv*
12721 F:      arch/arm/boot/dts/logicpd-torpedo*
12722
12723 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12724 L:      linux-omap@vger.kernel.org
12725 L:      linux-fbdev@vger.kernel.org
12726 S:      Orphan
12727 F:      Documentation/arm/omap/dss.rst
12728 F:      drivers/video/fbdev/omap2/
12729
12730 OMAP FRAMEBUFFER SUPPORT
12731 L:      linux-fbdev@vger.kernel.org
12732 L:      linux-omap@vger.kernel.org
12733 S:      Orphan
12734 F:      drivers/video/fbdev/omap/
12735
12736 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12737 M:      Roger Quadros <rogerq@ti.com>
12738 M:      Tony Lindgren <tony@atomide.com>
12739 L:      linux-omap@vger.kernel.org
12740 S:      Maintained
12741 F:      arch/arm/mach-omap2/*gpmc*
12742 F:      drivers/memory/omap-gpmc.c
12743
12744 OMAP GPIO DRIVER
12745 M:      Grygorii Strashko <grygorii.strashko@ti.com>
12746 M:      Santosh Shilimkar <ssantosh@kernel.org>
12747 M:      Kevin Hilman <khilman@kernel.org>
12748 L:      linux-omap@vger.kernel.org
12749 S:      Maintained
12750 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
12751 F:      drivers/gpio/gpio-omap.c
12752
12753 OMAP HARDWARE SPINLOCK SUPPORT
12754 M:      Ohad Ben-Cohen <ohad@wizery.com>
12755 L:      linux-omap@vger.kernel.org
12756 S:      Maintained
12757 F:      drivers/hwspinlock/omap_hwspinlock.c
12758
12759 OMAP HS MMC SUPPORT
12760 L:      linux-mmc@vger.kernel.org
12761 L:      linux-omap@vger.kernel.org
12762 S:      Orphan
12763 F:      drivers/mmc/host/omap_hsmmc.c
12764
12765 OMAP HWMOD DATA
12766 M:      Paul Walmsley <paul@pwsan.com>
12767 L:      linux-omap@vger.kernel.org
12768 S:      Maintained
12769 F:      arch/arm/mach-omap2/omap_hwmod*data*
12770
12771 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12772 M:      Benoît Cousson <bcousson@baylibre.com>
12773 L:      linux-omap@vger.kernel.org
12774 S:      Maintained
12775 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12776
12777 OMAP HWMOD SUPPORT
12778 M:      Benoît Cousson <bcousson@baylibre.com>
12779 M:      Paul Walmsley <paul@pwsan.com>
12780 L:      linux-omap@vger.kernel.org
12781 S:      Maintained
12782 F:      arch/arm/mach-omap2/omap_hwmod.*
12783
12784 OMAP I2C DRIVER
12785 M:      Vignesh R <vigneshr@ti.com>
12786 L:      linux-omap@vger.kernel.org
12787 L:      linux-i2c@vger.kernel.org
12788 S:      Maintained
12789 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
12790 F:      drivers/i2c/busses/i2c-omap.c
12791
12792 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12793 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12794 L:      linux-media@vger.kernel.org
12795 S:      Maintained
12796 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
12797 F:      drivers/media/platform/omap3isp/
12798 F:      drivers/staging/media/omap4iss/
12799
12800 OMAP MMC SUPPORT
12801 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12802 L:      linux-omap@vger.kernel.org
12803 S:      Odd Fixes
12804 F:      drivers/mmc/host/omap.c
12805
12806 OMAP POWER MANAGEMENT SUPPORT
12807 M:      Kevin Hilman <khilman@kernel.org>
12808 L:      linux-omap@vger.kernel.org
12809 S:      Maintained
12810 F:      arch/arm/*omap*/*pm*
12811 F:      drivers/cpufreq/omap-cpufreq.c
12812
12813 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12814 M:      Rajendra Nayak <rnayak@codeaurora.org>
12815 M:      Paul Walmsley <paul@pwsan.com>
12816 L:      linux-omap@vger.kernel.org
12817 S:      Maintained
12818 F:      arch/arm/mach-omap2/prm*
12819
12820 OMAP RANDOM NUMBER GENERATOR SUPPORT
12821 M:      Deepak Saxena <dsaxena@plexity.net>
12822 S:      Maintained
12823 F:      drivers/char/hw_random/omap-rng.c
12824
12825 OMAP USB SUPPORT
12826 L:      linux-usb@vger.kernel.org
12827 L:      linux-omap@vger.kernel.org
12828 S:      Orphan
12829 F:      arch/arm/*omap*/usb*
12830 F:      drivers/usb/*/*omap*
12831
12832 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12833 M:      Mark Jackson <mpfj@newflow.co.uk>
12834 L:      linux-omap@vger.kernel.org
12835 S:      Maintained
12836 F:      arch/arm/boot/dts/am335x-nano.dts
12837
12838 OMAP1 SUPPORT
12839 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12840 M:      Tony Lindgren <tony@atomide.com>
12841 L:      linux-omap@vger.kernel.org
12842 S:      Maintained
12843 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12845 F:      arch/arm/configs/omap1_defconfig
12846 F:      arch/arm/mach-omap1/
12847 F:      arch/arm/plat-omap/
12848 F:      drivers/i2c/busses/i2c-omap.c
12849 F:      include/linux/platform_data/ams-delta-fiq.h
12850 F:      include/linux/platform_data/i2c-omap.h
12851
12852 OMAP2+ SUPPORT
12853 M:      Tony Lindgren <tony@atomide.com>
12854 L:      linux-omap@vger.kernel.org
12855 S:      Maintained
12856 W:      http://www.muru.com/linux/omap/
12857 W:      http://linux.omap.com/
12858 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12860 F:      arch/arm/configs/omap2plus_defconfig
12861 F:      arch/arm/mach-omap2/
12862 F:      arch/arm/plat-omap/
12863 F:      drivers/bus/ti-sysc.c
12864 F:      drivers/i2c/busses/i2c-omap.c
12865 F:      drivers/irqchip/irq-omap-intc.c
12866 F:      drivers/mfd/*omap*.c
12867 F:      drivers/mfd/menelaus.c
12868 F:      drivers/mfd/palmas.c
12869 F:      drivers/mfd/tps65217.c
12870 F:      drivers/mfd/tps65218.c
12871 F:      drivers/mfd/tps65910.c
12872 F:      drivers/mfd/twl-core.[ch]
12873 F:      drivers/mfd/twl4030*.c
12874 F:      drivers/mfd/twl6030*.c
12875 F:      drivers/mfd/twl6040*.c
12876 F:      drivers/regulator/palmas-regulator*.c
12877 F:      drivers/regulator/pbias-regulator.c
12878 F:      drivers/regulator/tps65217-regulator.c
12879 F:      drivers/regulator/tps65218-regulator.c
12880 F:      drivers/regulator/tps65910-regulator.c
12881 F:      drivers/regulator/twl-regulator.c
12882 F:      drivers/regulator/twl6030-regulator.c
12883 F:      include/linux/platform_data/i2c-omap.h
12884 F:      include/linux/platform_data/ti-sysc.h
12885
12886 OMFS FILESYSTEM
12887 M:      Bob Copeland <me@bobcopeland.com>
12888 L:      linux-karma-devel@lists.sourceforge.net
12889 S:      Maintained
12890 F:      Documentation/filesystems/omfs.rst
12891 F:      fs/omfs/
12892
12893 OMNIKEY CARDMAN 4000 DRIVER
12894 M:      Harald Welte <laforge@gnumonks.org>
12895 S:      Maintained
12896 F:      drivers/char/pcmcia/cm4000_cs.c
12897 F:      include/linux/cm4000_cs.h
12898 F:      include/uapi/linux/cm4000_cs.h
12899
12900 OMNIKEY CARDMAN 4040 DRIVER
12901 M:      Harald Welte <laforge@gnumonks.org>
12902 S:      Maintained
12903 F:      drivers/char/pcmcia/cm4040_cs.*
12904
12905 OMNIVISION OV02A10 SENSOR DRIVER
12906 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
12907 L:      linux-media@vger.kernel.org
12908 S:      Maintained
12909 T:      git git://linuxtv.org/media_tree.git
12910 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
12911 F:      drivers/media/i2c/ov02a10.c
12912
12913 OMNIVISION OV13858 SENSOR DRIVER
12914 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12915 L:      linux-media@vger.kernel.org
12916 S:      Maintained
12917 T:      git git://linuxtv.org/media_tree.git
12918 F:      drivers/media/i2c/ov13858.c
12919
12920 OMNIVISION OV2680 SENSOR DRIVER
12921 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12922 L:      linux-media@vger.kernel.org
12923 S:      Maintained
12924 T:      git git://linuxtv.org/media_tree.git
12925 F:      Documentation/devicetree/bindings/media/i2c/ov2680.yaml
12926 F:      drivers/media/i2c/ov2680.c
12927
12928 OMNIVISION OV2685 SENSOR DRIVER
12929 M:      Shunqian Zheng <zhengsq@rock-chips.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/ov2685.c
12934
12935 OMNIVISION OV2740 SENSOR DRIVER
12936 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
12937 R:      Shawn Tu <shawnx.tu@intel.com>
12938 R:      Bingbu Cao <bingbu.cao@intel.com>
12939 L:      linux-media@vger.kernel.org
12940 S:      Maintained
12941 T:      git git://linuxtv.org/media_tree.git
12942 F:      drivers/media/i2c/ov2740.c
12943
12944 OMNIVISION OV5640 SENSOR DRIVER
12945 M:      Steve Longerbeam <slongerbeam@gmail.com>
12946 L:      linux-media@vger.kernel.org
12947 S:      Maintained
12948 T:      git git://linuxtv.org/media_tree.git
12949 F:      drivers/media/i2c/ov5640.c
12950
12951 OMNIVISION OV5647 SENSOR DRIVER
12952 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
12953 M:      Jacopo Mondi <jacopo@jmondi.org>
12954 L:      linux-media@vger.kernel.org
12955 S:      Maintained
12956 T:      git git://linuxtv.org/media_tree.git
12957 F:      Documentation/devicetree/bindings/media/i2c/ov5647.yaml
12958 F:      drivers/media/i2c/ov5647.c
12959
12960 OMNIVISION OV5670 SENSOR DRIVER
12961 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
12962 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
12963 L:      linux-media@vger.kernel.org
12964 S:      Maintained
12965 T:      git git://linuxtv.org/media_tree.git
12966 F:      drivers/media/i2c/ov5670.c
12967
12968 OMNIVISION OV5675 SENSOR DRIVER
12969 M:      Shawn Tu <shawnx.tu@intel.com>
12970 L:      linux-media@vger.kernel.org
12971 S:      Maintained
12972 T:      git git://linuxtv.org/media_tree.git
12973 F:      drivers/media/i2c/ov5675.c
12974
12975 OMNIVISION OV5695 SENSOR DRIVER
12976 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12977 L:      linux-media@vger.kernel.org
12978 S:      Maintained
12979 T:      git git://linuxtv.org/media_tree.git
12980 F:      drivers/media/i2c/ov5695.c
12981
12982 OMNIVISION OV7670 SENSOR DRIVER
12983 L:      linux-media@vger.kernel.org
12984 S:      Orphan
12985 T:      git git://linuxtv.org/media_tree.git
12986 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
12987 F:      drivers/media/i2c/ov7670.c
12988
12989 OMNIVISION OV772x SENSOR DRIVER
12990 M:      Jacopo Mondi <jacopo@jmondi.org>
12991 L:      linux-media@vger.kernel.org
12992 S:      Odd fixes
12993 T:      git git://linuxtv.org/media_tree.git
12994 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
12995 F:      drivers/media/i2c/ov772x.c
12996 F:      include/media/i2c/ov772x.h
12997
12998 OMNIVISION OV7740 SENSOR DRIVER
12999 M:      Wenyou Yang <wenyou.yang@microchip.com>
13000 L:      linux-media@vger.kernel.org
13001 S:      Maintained
13002 T:      git git://linuxtv.org/media_tree.git
13003 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
13004 F:      drivers/media/i2c/ov7740.c
13005
13006 OMNIVISION OV8856 SENSOR DRIVER
13007 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13008 L:      linux-media@vger.kernel.org
13009 S:      Maintained
13010 T:      git git://linuxtv.org/media_tree.git
13011 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13012 F:      drivers/media/i2c/ov8856.c
13013
13014 OMNIVISION OV9640 SENSOR DRIVER
13015 M:      Petr Cvek <petrcvekcz@gmail.com>
13016 L:      linux-media@vger.kernel.org
13017 S:      Maintained
13018 F:      drivers/media/i2c/ov9640.*
13019
13020 OMNIVISION OV9650 SENSOR DRIVER
13021 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13022 R:      Akinobu Mita <akinobu.mita@gmail.com>
13023 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13024 L:      linux-media@vger.kernel.org
13025 S:      Maintained
13026 T:      git git://linuxtv.org/media_tree.git
13027 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
13028 F:      drivers/media/i2c/ov9650.c
13029
13030 OMNIVISION OV9734 SENSOR DRIVER
13031 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13032 R:      Bingbu Cao <bingbu.cao@intel.com>
13033 L:      linux-media@vger.kernel.org
13034 S:      Maintained
13035 T:      git git://linuxtv.org/media_tree.git
13036 F:      drivers/media/i2c/ov9734.c
13037
13038 ONENAND FLASH DRIVER
13039 M:      Kyungmin Park <kyungmin.park@samsung.com>
13040 L:      linux-mtd@lists.infradead.org
13041 S:      Maintained
13042 F:      drivers/mtd/nand/onenand/
13043 F:      include/linux/mtd/onenand*.h
13044
13045 ONION OMEGA2+ BOARD
13046 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
13047 L:      linux-mips@vger.kernel.org
13048 S:      Maintained
13049 F:      arch/mips/boot/dts/ralink/omega2p.dts
13050
13051 OP-TEE DRIVER
13052 M:      Jens Wiklander <jens.wiklander@linaro.org>
13053 L:      op-tee@lists.trustedfirmware.org
13054 S:      Maintained
13055 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
13056 F:      drivers/tee/optee/
13057
13058 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
13059 M:      Sumit Garg <sumit.garg@linaro.org>
13060 L:      op-tee@lists.trustedfirmware.org
13061 S:      Maintained
13062 F:      drivers/char/hw_random/optee-rng.c
13063
13064 OPA-VNIC DRIVER
13065 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
13066 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
13067 L:      linux-rdma@vger.kernel.org
13068 S:      Supported
13069 F:      drivers/infiniband/ulp/opa_vnic
13070
13071 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
13072 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
13073 M:      Frank Rowand <frowand.list@gmail.com>
13074 L:      devicetree@vger.kernel.org
13075 S:      Maintained
13076 F:      Documentation/devicetree/dynamic-resolution-notes.rst
13077 F:      Documentation/devicetree/overlay-notes.rst
13078 F:      drivers/of/overlay.c
13079 F:      drivers/of/resolver.c
13080 K:      of_overlay_notifier_
13081
13082 OPEN FIRMWARE AND FLATTENED DEVICE TREE
13083 M:      Rob Herring <robh+dt@kernel.org>
13084 M:      Frank Rowand <frowand.list@gmail.com>
13085 L:      devicetree@vger.kernel.org
13086 S:      Maintained
13087 W:      http://www.devicetree.org/
13088 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13089 F:      Documentation/ABI/testing/sysfs-firmware-ofw
13090 F:      drivers/of/
13091 F:      include/linux/of*.h
13092 F:      scripts/dtc/
13093
13094 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
13095 M:      Rob Herring <robh+dt@kernel.org>
13096 L:      devicetree@vger.kernel.org
13097 S:      Maintained
13098 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
13099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13100 F:      Documentation/devicetree/
13101 F:      arch/*/boot/dts/
13102 F:      include/dt-bindings/
13103
13104 OPENCORES I2C BUS DRIVER
13105 M:      Peter Korsgaard <peter@korsgaard.com>
13106 M:      Andrew Lunn <andrew@lunn.ch>
13107 L:      linux-i2c@vger.kernel.org
13108 S:      Maintained
13109 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
13110 F:      Documentation/i2c/busses/i2c-ocores.rst
13111 F:      drivers/i2c/busses/i2c-ocores.c
13112 F:      include/linux/platform_data/i2c-ocores.h
13113
13114 OPENRISC ARCHITECTURE
13115 M:      Jonas Bonn <jonas@southpole.se>
13116 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
13117 M:      Stafford Horne <shorne@gmail.com>
13118 L:      openrisc@lists.librecores.org
13119 S:      Maintained
13120 W:      http://openrisc.io
13121 T:      git git://github.com/openrisc/linux.git
13122 F:      Documentation/devicetree/bindings/openrisc/
13123 F:      Documentation/openrisc/
13124 F:      arch/openrisc/
13125 F:      drivers/irqchip/irq-ompic.c
13126 F:      drivers/irqchip/irq-or1k-*
13127
13128 OPENVSWITCH
13129 M:      Pravin B Shelar <pshelar@ovn.org>
13130 L:      netdev@vger.kernel.org
13131 L:      dev@openvswitch.org
13132 S:      Maintained
13133 W:      http://openvswitch.org
13134 F:      include/uapi/linux/openvswitch.h
13135 F:      net/openvswitch/
13136
13137 OPERATING PERFORMANCE POINTS (OPP)
13138 M:      Viresh Kumar <vireshk@kernel.org>
13139 M:      Nishanth Menon <nm@ti.com>
13140 M:      Stephen Boyd <sboyd@kernel.org>
13141 L:      linux-pm@vger.kernel.org
13142 S:      Maintained
13143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
13144 F:      Documentation/devicetree/bindings/opp/
13145 F:      Documentation/power/opp.rst
13146 F:      drivers/opp/
13147 F:      include/linux/pm_opp.h
13148
13149 OPL4 DRIVER
13150 M:      Clemens Ladisch <clemens@ladisch.de>
13151 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13152 S:      Maintained
13153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
13154 F:      sound/drivers/opl4/
13155
13156 OPROFILE
13157 M:      Robert Richter <rric@kernel.org>
13158 L:      oprofile-list@lists.sf.net
13159 S:      Maintained
13160 F:      arch/*/include/asm/oprofile*.h
13161 F:      arch/*/oprofile/
13162 F:      drivers/oprofile/
13163 F:      include/linux/oprofile.h
13164
13165 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
13166 M:      Mark Fasheh <mark@fasheh.com>
13167 M:      Joel Becker <jlbec@evilplan.org>
13168 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
13169 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
13170 S:      Supported
13171 W:      http://ocfs2.wiki.kernel.org
13172 F:      Documentation/filesystems/dlmfs.rst
13173 F:      Documentation/filesystems/ocfs2.rst
13174 F:      fs/ocfs2/
13175
13176 ORANGEFS FILESYSTEM
13177 M:      Mike Marshall <hubcap@omnibond.com>
13178 R:      Martin Brandenburg <martin@omnibond.com>
13179 L:      devel@lists.orangefs.org
13180 S:      Supported
13181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
13182 F:      Documentation/filesystems/orangefs.rst
13183 F:      fs/orangefs/
13184
13185 ORINOCO DRIVER
13186 L:      linux-wireless@vger.kernel.org
13187 S:      Orphan
13188 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
13189 W:      http://www.nongnu.org/orinoco/
13190 F:      drivers/net/wireless/intersil/orinoco/
13191
13192 OV2659 OMNIVISION SENSOR DRIVER
13193 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
13194 L:      linux-media@vger.kernel.org
13195 S:      Maintained
13196 W:      https://linuxtv.org
13197 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13198 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13199 F:      drivers/media/i2c/ov2659.c
13200 F:      include/media/i2c/ov2659.h
13201
13202 OVERLAY FILESYSTEM
13203 M:      Miklos Szeredi <miklos@szeredi.hu>
13204 L:      linux-unionfs@vger.kernel.org
13205 S:      Supported
13206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
13207 F:      Documentation/filesystems/overlayfs.rst
13208 F:      fs/overlayfs/
13209
13210 P54 WIRELESS DRIVER
13211 M:      Christian Lamparter <chunkeey@googlemail.com>
13212 L:      linux-wireless@vger.kernel.org
13213 S:      Maintained
13214 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
13215 F:      drivers/net/wireless/intersil/p54/
13216
13217 PACKING
13218 M:      Vladimir Oltean <olteanv@gmail.com>
13219 L:      netdev@vger.kernel.org
13220 S:      Supported
13221 F:      Documentation/core-api/packing.rst
13222 F:      include/linux/packing.h
13223 F:      lib/packing.c
13224
13225 PADATA PARALLEL EXECUTION MECHANISM
13226 M:      Steffen Klassert <steffen.klassert@secunet.com>
13227 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
13228 L:      linux-crypto@vger.kernel.org
13229 L:      linux-kernel@vger.kernel.org
13230 S:      Maintained
13231 F:      Documentation/core-api/padata.rst
13232 F:      include/linux/padata.h
13233 F:      kernel/padata.c
13234
13235 PAGE POOL
13236 M:      Jesper Dangaard Brouer <hawk@kernel.org>
13237 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
13238 L:      netdev@vger.kernel.org
13239 S:      Supported
13240 F:      Documentation/networking/page_pool.rst
13241 F:      include/net/page_pool.h
13242 F:      include/trace/events/page_pool.h
13243 F:      net/core/page_pool.c
13244
13245 PANASONIC LAPTOP ACPI EXTRAS DRIVER
13246 M:      Harald Welte <laforge@gnumonks.org>
13247 L:      platform-driver-x86@vger.kernel.org
13248 S:      Maintained
13249 F:      drivers/platform/x86/panasonic-laptop.c
13250
13251 PARALLAX PING IIO SENSOR DRIVER
13252 M:      Andreas Klinger <ak@it-klinger.de>
13253 L:      linux-iio@vger.kernel.org
13254 S:      Maintained
13255 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
13256 F:      drivers/iio/proximity/ping.c
13257
13258 PARALLEL LCD/KEYPAD PANEL DRIVER
13259 M:      Willy Tarreau <willy@haproxy.com>
13260 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
13261 S:      Odd Fixes
13262 F:      Documentation/admin-guide/lcd-panel-cgram.rst
13263 F:      drivers/auxdisplay/panel.c
13264
13265 PARALLEL PORT SUBSYSTEM
13266 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
13267 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
13268 L:      linux-parport@lists.infradead.org (subscribers-only)
13269 S:      Maintained
13270 F:      Documentation/driver-api/parport*.rst
13271 F:      drivers/char/ppdev.c
13272 F:      drivers/parport/
13273 F:      include/linux/parport*.h
13274 F:      include/uapi/linux/ppdev.h
13275
13276 PARAVIRT_OPS INTERFACE
13277 M:      Juergen Gross <jgross@suse.com>
13278 M:      Deep Shah <sdeep@vmware.com>
13279 M:      "VMware, Inc." <pv-drivers@vmware.com>
13280 L:      virtualization@lists.linux-foundation.org
13281 S:      Supported
13282 F:      Documentation/virt/paravirt_ops.rst
13283 F:      arch/*/include/asm/paravirt*.h
13284 F:      arch/*/kernel/paravirt*
13285 F:      include/linux/hypervisor.h
13286
13287 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
13288 M:      Tim Waugh <tim@cyberelk.net>
13289 L:      linux-parport@lists.infradead.org (subscribers-only)
13290 S:      Maintained
13291 F:      Documentation/admin-guide/blockdev/paride.rst
13292 F:      drivers/block/paride/
13293
13294 PARISC ARCHITECTURE
13295 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
13296 M:      Helge Deller <deller@gmx.de>
13297 L:      linux-parisc@vger.kernel.org
13298 S:      Maintained
13299 W:      https://parisc.wiki.kernel.org
13300 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
13301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
13302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
13303 F:      Documentation/parisc/
13304 F:      arch/parisc/
13305 F:      drivers/char/agp/parisc-agp.c
13306 F:      drivers/input/misc/hp_sdc_rtc.c
13307 F:      drivers/input/serio/gscps2.c
13308 F:      drivers/input/serio/hp_sdc*
13309 F:      drivers/parisc/
13310 F:      drivers/parport/parport_gsc.*
13311 F:      drivers/tty/serial/8250/8250_gsc.c
13312 F:      drivers/video/console/sti*
13313 F:      drivers/video/fbdev/sti*
13314 F:      drivers/video/logo/logo_parisc*
13315 F:      include/linux/hp_sdc.h
13316
13317 PARMAN
13318 M:      Jiri Pirko <jiri@nvidia.com>
13319 L:      netdev@vger.kernel.org
13320 S:      Supported
13321 F:      include/linux/parman.h
13322 F:      lib/parman.c
13323 F:      lib/test_parman.c
13324
13325 PC ENGINES APU BOARD DRIVER
13326 M:      Enrico Weigelt, metux IT consult <info@metux.net>
13327 S:      Maintained
13328 F:      drivers/platform/x86/pcengines-apuv2.c
13329
13330 PC87360 HARDWARE MONITORING DRIVER
13331 M:      Jim Cromie <jim.cromie@gmail.com>
13332 L:      linux-hwmon@vger.kernel.org
13333 S:      Maintained
13334 F:      Documentation/hwmon/pc87360.rst
13335 F:      drivers/hwmon/pc87360.c
13336
13337 PC8736x GPIO DRIVER
13338 M:      Jim Cromie <jim.cromie@gmail.com>
13339 S:      Maintained
13340 F:      drivers/char/pc8736x_gpio.c
13341
13342 PC87427 HARDWARE MONITORING DRIVER
13343 M:      Jean Delvare <jdelvare@suse.com>
13344 L:      linux-hwmon@vger.kernel.org
13345 S:      Maintained
13346 F:      Documentation/hwmon/pc87427.rst
13347 F:      drivers/hwmon/pc87427.c
13348
13349 PCA9532 LED DRIVER
13350 M:      Riku Voipio <riku.voipio@iki.fi>
13351 S:      Maintained
13352 F:      drivers/leds/leds-pca9532.c
13353 F:      include/linux/leds-pca9532.h
13354
13355 PCA9541 I2C BUS MASTER SELECTOR DRIVER
13356 M:      Guenter Roeck <linux@roeck-us.net>
13357 L:      linux-i2c@vger.kernel.org
13358 S:      Maintained
13359 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
13360
13361 PCDP - PRIMARY CONSOLE AND DEBUG PORT
13362 M:      Khalid Aziz <khalid@gonehiking.org>
13363 S:      Maintained
13364 F:      drivers/firmware/pcdp.*
13365
13366 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
13367 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13368 M:      Pali Rohár <pali@kernel.org>
13369 L:      linux-pci@vger.kernel.org
13370 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13371 S:      Maintained
13372 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
13373 F:      drivers/pci/controller/pci-aardvark.c
13374
13375 PCI DRIVER FOR ALTERA PCIE IP
13376 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13377 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13378 L:      linux-pci@vger.kernel.org
13379 S:      Supported
13380 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
13381 F:      drivers/pci/controller/pcie-altera.c
13382
13383 PCI DRIVER FOR APPLIEDMICRO XGENE
13384 M:      Toan Le <toan@os.amperecomputing.com>
13385 L:      linux-pci@vger.kernel.org
13386 L:      linux-arm-kernel@lists.infradead.org
13387 S:      Maintained
13388 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
13389 F:      drivers/pci/controller/pci-xgene.c
13390
13391 PCI DRIVER FOR ARM VERSATILE PLATFORM
13392 M:      Rob Herring <robh@kernel.org>
13393 L:      linux-pci@vger.kernel.org
13394 L:      linux-arm-kernel@lists.infradead.org
13395 S:      Maintained
13396 F:      Documentation/devicetree/bindings/pci/versatile.yaml
13397 F:      drivers/pci/controller/pci-versatile.c
13398
13399 PCI DRIVER FOR ARMADA 8K
13400 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13401 L:      linux-pci@vger.kernel.org
13402 L:      linux-arm-kernel@lists.infradead.org
13403 S:      Maintained
13404 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
13405 F:      drivers/pci/controller/dwc/pcie-armada8k.c
13406
13407 PCI DRIVER FOR CADENCE PCIE IP
13408 M:      Tom Joseph <tjoseph@cadence.com>
13409 L:      linux-pci@vger.kernel.org
13410 S:      Maintained
13411 F:      Documentation/devicetree/bindings/pci/cdns,*
13412 F:      drivers/pci/controller/cadence/
13413
13414 PCI DRIVER FOR FREESCALE LAYERSCAPE
13415 M:      Minghuan Lian <minghuan.Lian@nxp.com>
13416 M:      Mingkai Hu <mingkai.hu@nxp.com>
13417 M:      Roy Zang <roy.zang@nxp.com>
13418 L:      linuxppc-dev@lists.ozlabs.org
13419 L:      linux-pci@vger.kernel.org
13420 L:      linux-arm-kernel@lists.infradead.org
13421 S:      Maintained
13422 F:      drivers/pci/controller/dwc/*layerscape*
13423
13424 PCI DRIVER FOR GENERIC OF HOSTS
13425 M:      Will Deacon <will@kernel.org>
13426 L:      linux-pci@vger.kernel.org
13427 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13428 S:      Maintained
13429 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
13430 F:      drivers/pci/controller/pci-host-common.c
13431 F:      drivers/pci/controller/pci-host-generic.c
13432
13433 PCI DRIVER FOR IMX6
13434 M:      Richard Zhu <hongxing.zhu@nxp.com>
13435 M:      Lucas Stach <l.stach@pengutronix.de>
13436 L:      linux-pci@vger.kernel.org
13437 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13438 S:      Maintained
13439 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
13440 F:      drivers/pci/controller/dwc/*imx6*
13441
13442 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
13443 M:      Jonathan Derrick <jonathan.derrick@intel.com>
13444 L:      linux-pci@vger.kernel.org
13445 S:      Supported
13446 F:      drivers/pci/controller/vmd.c
13447
13448 PCI DRIVER FOR MICROSEMI SWITCHTEC
13449 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
13450 M:      Logan Gunthorpe <logang@deltatee.com>
13451 L:      linux-pci@vger.kernel.org
13452 S:      Maintained
13453 F:      Documentation/ABI/testing/sysfs-class-switchtec
13454 F:      Documentation/driver-api/switchtec.rst
13455 F:      drivers/ntb/hw/mscc/
13456 F:      drivers/pci/switch/switchtec*
13457 F:      include/linux/switchtec.h
13458 F:      include/uapi/linux/switchtec_ioctl.h
13459
13460 PCI DRIVER FOR MOBIVEIL PCIE IP
13461 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
13462 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13463 L:      linux-pci@vger.kernel.org
13464 S:      Supported
13465 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
13466 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
13467
13468 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
13469 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13470 L:      linux-pci@vger.kernel.org
13471 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13472 S:      Maintained
13473 F:      drivers/pci/controller/*mvebu*
13474
13475 PCI DRIVER FOR NVIDIA TEGRA
13476 M:      Thierry Reding <thierry.reding@gmail.com>
13477 L:      linux-tegra@vger.kernel.org
13478 L:      linux-pci@vger.kernel.org
13479 S:      Supported
13480 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
13481 F:      drivers/pci/controller/pci-tegra.c
13482
13483 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
13484 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13485 L:      linux-pci@vger.kernel.org
13486 L:      linux-arm-kernel@lists.infradead.org
13487 S:      Maintained
13488 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
13489 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
13490
13491 PCI DRIVER FOR RENESAS R-CAR
13492 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
13493 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
13494 L:      linux-pci@vger.kernel.org
13495 L:      linux-renesas-soc@vger.kernel.org
13496 S:      Maintained
13497 F:      Documentation/devicetree/bindings/pci/*rcar*
13498 F:      drivers/pci/controller/*rcar*
13499
13500 PCI DRIVER FOR SAMSUNG EXYNOS
13501 M:      Jingoo Han <jingoohan1@gmail.com>
13502 L:      linux-pci@vger.kernel.org
13503 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13504 L:      linux-samsung-soc@vger.kernel.org
13505 S:      Maintained
13506 F:      drivers/pci/controller/dwc/pci-exynos.c
13507
13508 PCI DRIVER FOR SYNOPSYS DESIGNWARE
13509 M:      Jingoo Han <jingoohan1@gmail.com>
13510 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
13511 L:      linux-pci@vger.kernel.org
13512 S:      Maintained
13513 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
13514 F:      drivers/pci/controller/dwc/*designware*
13515
13516 PCI DRIVER FOR TI DRA7XX/J721E
13517 M:      Kishon Vijay Abraham I <kishon@ti.com>
13518 L:      linux-omap@vger.kernel.org
13519 L:      linux-pci@vger.kernel.org
13520 L:      linux-arm-kernel@lists.infradead.org
13521 S:      Supported
13522 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
13523 F:      drivers/pci/controller/cadence/pci-j721e.c
13524 F:      drivers/pci/controller/dwc/pci-dra7xx.c
13525
13526 PCI DRIVER FOR TI KEYSTONE
13527 M:      Murali Karicheri <m-karicheri2@ti.com>
13528 L:      linux-pci@vger.kernel.org
13529 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13530 S:      Maintained
13531 F:      drivers/pci/controller/dwc/pci-keystone.c
13532
13533 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13534 M:      Linus Walleij <linus.walleij@linaro.org>
13535 L:      linux-pci@vger.kernel.org
13536 S:      Maintained
13537 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13538 F:      drivers/pci/controller/pci-v3-semi.c
13539
13540 PCI ENDPOINT SUBSYSTEM
13541 M:      Kishon Vijay Abraham I <kishon@ti.com>
13542 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13543 L:      linux-pci@vger.kernel.org
13544 S:      Supported
13545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
13546 F:      drivers/misc/pci_endpoint_test.c
13547 F:      drivers/pci/endpoint/
13548 F:      tools/pci/
13549
13550 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
13551 M:      Russell Currey <ruscur@russell.cc>
13552 M:      Oliver O'Halloran <oohall@gmail.com>
13553 L:      linuxppc-dev@lists.ozlabs.org
13554 S:      Supported
13555 F:      Documentation/PCI/pci-error-recovery.rst
13556 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
13557 F:      arch/powerpc/include/*/eeh*.h
13558 F:      arch/powerpc/kernel/eeh*.c
13559 F:      arch/powerpc/platforms/*/eeh*.c
13560 F:      drivers/pci/pcie/aer.c
13561 F:      drivers/pci/pcie/dpc.c
13562 F:      drivers/pci/pcie/err.c
13563
13564 PCI ERROR RECOVERY
13565 M:      Linas Vepstas <linasvepstas@gmail.com>
13566 L:      linux-pci@vger.kernel.org
13567 S:      Supported
13568 F:      Documentation/PCI/pci-error-recovery.rst
13569
13570 PCI MSI DRIVER FOR ALTERA MSI IP
13571 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13572 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13573 L:      linux-pci@vger.kernel.org
13574 S:      Supported
13575 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
13576 F:      drivers/pci/controller/pcie-altera-msi.c
13577
13578 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13579 M:      Toan Le <toan@os.amperecomputing.com>
13580 L:      linux-pci@vger.kernel.org
13581 L:      linux-arm-kernel@lists.infradead.org
13582 S:      Maintained
13583 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13584 F:      drivers/pci/controller/pci-xgene-msi.c
13585
13586 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13587 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13588 R:      Rob Herring <robh@kernel.org>
13589 L:      linux-pci@vger.kernel.org
13590 S:      Supported
13591 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13593 F:      drivers/pci/controller/
13594
13595 PCI SUBSYSTEM
13596 M:      Bjorn Helgaas <bhelgaas@google.com>
13597 L:      linux-pci@vger.kernel.org
13598 S:      Supported
13599 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13601 F:      Documentation/PCI/
13602 F:      Documentation/devicetree/bindings/pci/
13603 F:      arch/x86/kernel/early-quirks.c
13604 F:      arch/x86/kernel/quirks.c
13605 F:      arch/x86/pci/
13606 F:      drivers/acpi/pci*
13607 F:      drivers/pci/
13608 F:      include/asm-generic/pci*
13609 F:      include/linux/of_pci.h
13610 F:      include/linux/pci*
13611 F:      include/uapi/linux/pci*
13612 F:      lib/pci*
13613
13614 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13615 M:      Jonathan Chocron <jonnyc@amazon.com>
13616 L:      linux-pci@vger.kernel.org
13617 S:      Maintained
13618 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
13619 F:      drivers/pci/controller/dwc/pcie-al.c
13620
13621 PCIE DRIVER FOR AMLOGIC MESON
13622 M:      Yue Wang <yue.wang@Amlogic.com>
13623 L:      linux-pci@vger.kernel.org
13624 L:      linux-amlogic@lists.infradead.org
13625 S:      Maintained
13626 F:      drivers/pci/controller/dwc/pci-meson.c
13627
13628 PCIE DRIVER FOR AXIS ARTPEC
13629 M:      Jesper Nilsson <jesper.nilsson@axis.com>
13630 L:      linux-arm-kernel@axis.com
13631 L:      linux-pci@vger.kernel.org
13632 S:      Maintained
13633 F:      Documentation/devicetree/bindings/pci/axis,artpec*
13634 F:      drivers/pci/controller/dwc/*artpec*
13635
13636 PCIE DRIVER FOR CAVIUM THUNDERX
13637 M:      Robert Richter <rric@kernel.org>
13638 L:      linux-pci@vger.kernel.org
13639 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13640 S:      Odd Fixes
13641 F:      drivers/pci/controller/pci-thunder-*
13642
13643 PCIE DRIVER FOR HISILICON
13644 M:      Zhou Wang <wangzhou1@hisilicon.com>
13645 L:      linux-pci@vger.kernel.org
13646 S:      Maintained
13647 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13648 F:      drivers/pci/controller/dwc/pcie-hisi.c
13649
13650 PCIE DRIVER FOR HISILICON KIRIN
13651 M:      Xiaowei Song <songxiaowei@hisilicon.com>
13652 M:      Binghui Wang <wangbinghui@hisilicon.com>
13653 L:      linux-pci@vger.kernel.org
13654 S:      Maintained
13655 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
13656 F:      drivers/pci/controller/dwc/pcie-kirin.c
13657
13658 PCIE DRIVER FOR HISILICON STB
13659 M:      Shawn Guo <shawn.guo@linaro.org>
13660 L:      linux-pci@vger.kernel.org
13661 S:      Maintained
13662 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13663 F:      drivers/pci/controller/dwc/pcie-histb.c
13664
13665 PCIE DRIVER FOR MEDIATEK
13666 M:      Ryder Lee <ryder.lee@mediatek.com>
13667 L:      linux-pci@vger.kernel.org
13668 L:      linux-mediatek@lists.infradead.org
13669 S:      Supported
13670 F:      Documentation/devicetree/bindings/pci/mediatek*
13671 F:      drivers/pci/controller/*mediatek*
13672
13673 PCIE DRIVER FOR QUALCOMM MSM
13674 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
13675 L:      linux-pci@vger.kernel.org
13676 L:      linux-arm-msm@vger.kernel.org
13677 S:      Maintained
13678 F:      drivers/pci/controller/dwc/*qcom*
13679
13680 PCIE DRIVER FOR ROCKCHIP
13681 M:      Shawn Lin <shawn.lin@rock-chips.com>
13682 L:      linux-pci@vger.kernel.org
13683 L:      linux-rockchip@lists.infradead.org
13684 S:      Maintained
13685 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
13686 F:      drivers/pci/controller/pcie-rockchip*
13687
13688 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13689 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
13690 L:      linux-pci@vger.kernel.org
13691 S:      Maintained
13692 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
13693 F:      drivers/pci/controller/dwc/pcie-uniphier*
13694
13695 PCIE DRIVER FOR ST SPEAR13XX
13696 M:      Pratyush Anand <pratyush.anand@gmail.com>
13697 L:      linux-pci@vger.kernel.org
13698 S:      Maintained
13699 F:      drivers/pci/controller/dwc/*spear*
13700
13701 PCMCIA SUBSYSTEM
13702 M:      Dominik Brodowski <linux@dominikbrodowski.net>
13703 S:      Odd Fixes
13704 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13705 F:      Documentation/pcmcia/
13706 F:      drivers/pcmcia/
13707 F:      include/pcmcia/
13708 F:      tools/pcmcia/
13709
13710 PCNET32 NETWORK DRIVER
13711 M:      Don Fry <pcnet32@frontier.com>
13712 L:      netdev@vger.kernel.org
13713 S:      Maintained
13714 F:      drivers/net/ethernet/amd/pcnet32.c
13715
13716 PCRYPT PARALLEL CRYPTO ENGINE
13717 M:      Steffen Klassert <steffen.klassert@secunet.com>
13718 L:      linux-crypto@vger.kernel.org
13719 S:      Maintained
13720 F:      crypto/pcrypt.c
13721 F:      include/crypto/pcrypt.h
13722
13723 PEAQ WMI HOTKEYS DRIVER
13724 M:      Hans de Goede <hdegoede@redhat.com>
13725 L:      platform-driver-x86@vger.kernel.org
13726 S:      Maintained
13727 F:      drivers/platform/x86/peaq-wmi.c
13728
13729 PENSANDO ETHERNET DRIVERS
13730 M:      Shannon Nelson <snelson@pensando.io>
13731 M:      Pensando Drivers <drivers@pensando.io>
13732 L:      netdev@vger.kernel.org
13733 S:      Supported
13734 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
13735 F:      drivers/net/ethernet/pensando/
13736
13737 PER-CPU MEMORY ALLOCATOR
13738 M:      Dennis Zhou <dennis@kernel.org>
13739 M:      Tejun Heo <tj@kernel.org>
13740 M:      Christoph Lameter <cl@linux.com>
13741 S:      Maintained
13742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13743 F:      arch/*/include/asm/percpu.h
13744 F:      include/linux/percpu*.h
13745 F:      mm/percpu*.c
13746
13747 PER-TASK DELAY ACCOUNTING
13748 M:      Balbir Singh <bsingharora@gmail.com>
13749 S:      Maintained
13750 F:      include/linux/delayacct.h
13751 F:      kernel/delayacct.c
13752
13753 PERFORMANCE EVENTS SUBSYSTEM
13754 M:      Peter Zijlstra <peterz@infradead.org>
13755 M:      Ingo Molnar <mingo@redhat.com>
13756 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
13757 R:      Mark Rutland <mark.rutland@arm.com>
13758 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
13759 R:      Jiri Olsa <jolsa@redhat.com>
13760 R:      Namhyung Kim <namhyung@kernel.org>
13761 L:      linux-kernel@vger.kernel.org
13762 S:      Supported
13763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13764 F:      arch/*/events/*
13765 F:      arch/*/events/*/*
13766 F:      arch/*/include/asm/perf_event.h
13767 F:      arch/*/kernel/*/*/perf_event*.c
13768 F:      arch/*/kernel/*/perf_event*.c
13769 F:      arch/*/kernel/perf_callchain.c
13770 F:      arch/*/kernel/perf_event*.c
13771 F:      include/linux/perf_event.h
13772 F:      include/uapi/linux/perf_event.h
13773 F:      kernel/events/*
13774 F:      tools/lib/perf/
13775 F:      tools/perf/
13776
13777 PERFORMANCE EVENTS TOOLING ARM64
13778 R:      John Garry <john.garry@huawei.com>
13779 R:      Will Deacon <will@kernel.org>
13780 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
13781 R:      Leo Yan <leo.yan@linaro.org>
13782 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13783 S:      Supported
13784 F:      tools/build/feature/test-libopencsd.c
13785 F:      tools/perf/arch/arm*/
13786 F:      tools/perf/pmu-events/arch/arm64/
13787 F:      tools/perf/util/arm-spe*
13788 F:      tools/perf/util/cs-etm*
13789
13790 PERSONALITY HANDLING
13791 M:      Christoph Hellwig <hch@infradead.org>
13792 L:      linux-abi-devel@lists.sourceforge.net
13793 S:      Maintained
13794 F:      include/linux/personality.h
13795 F:      include/uapi/linux/personality.h
13796
13797 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13798 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13799 L:      linux-input@vger.kernel.org
13800 S:      Maintained
13801 F:      Documentation/input/devices/pxrc.rst
13802 F:      drivers/input/joystick/pxrc.c
13803
13804 PHONET PROTOCOL
13805 M:      Remi Denis-Courmont <courmisch@gmail.com>
13806 S:      Supported
13807 F:      Documentation/networking/phonet.rst
13808 F:      include/linux/phonet.h
13809 F:      include/net/phonet/
13810 F:      include/uapi/linux/phonet.h
13811 F:      net/phonet/
13812
13813 PHRAM MTD DRIVER
13814 M:      Joern Engel <joern@lazybastard.org>
13815 L:      linux-mtd@lists.infradead.org
13816 S:      Maintained
13817 F:      drivers/mtd/devices/phram.c
13818
13819 PICOLCD HID DRIVER
13820 M:      Bruno Prémont <bonbons@linux-vserver.org>
13821 L:      linux-input@vger.kernel.org
13822 S:      Maintained
13823 F:      drivers/hid/hid-picolcd*
13824
13825 PICOXCELL SUPPORT
13826 M:      Jamie Iles <jamie@jamieiles.com>
13827 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13828 S:      Supported
13829 T:      git git://github.com/jamieiles/linux-2.6-ji.git
13830 F:      arch/arm/boot/dts/picoxcell*
13831 F:      arch/arm/mach-picoxcell/
13832 F:      drivers/crypto/picoxcell*
13833
13834 PIDFD API
13835 M:      Christian Brauner <christian@brauner.io>
13836 L:      linux-kernel@vger.kernel.org
13837 S:      Maintained
13838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
13839 F:      samples/pidfd/
13840 F:      tools/testing/selftests/clone3/
13841 F:      tools/testing/selftests/pid_namespace/
13842 F:      tools/testing/selftests/pidfd/
13843 K:      (?i)pidfd
13844 K:      (?i)clone3
13845 K:      \b(clone_args|kernel_clone_args)\b
13846
13847 PIN CONTROL SUBSYSTEM
13848 M:      Linus Walleij <linus.walleij@linaro.org>
13849 L:      linux-gpio@vger.kernel.org
13850 S:      Maintained
13851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
13852 F:      Documentation/devicetree/bindings/pinctrl/
13853 F:      Documentation/driver-api/pinctl.rst
13854 F:      drivers/pinctrl/
13855 F:      include/linux/pinctrl/
13856
13857 PIN CONTROLLER - FREESCALE
13858 M:      Dong Aisheng <aisheng.dong@nxp.com>
13859 M:      Fabio Estevam <festevam@gmail.com>
13860 M:      Shawn Guo <shawnguo@kernel.org>
13861 M:      Stefan Agner <stefan@agner.ch>
13862 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
13863 L:      linux-gpio@vger.kernel.org
13864 S:      Maintained
13865 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
13866 F:      drivers/pinctrl/freescale/
13867
13868 PIN CONTROLLER - INTEL
13869 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
13870 M:      Andy Shevchenko <andy@kernel.org>
13871 S:      Maintained
13872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
13873 F:      drivers/pinctrl/intel/
13874
13875 PIN CONTROLLER - MEDIATEK
13876 M:      Sean Wang <sean.wang@kernel.org>
13877 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13878 S:      Maintained
13879 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
13880 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
13881 F:      drivers/pinctrl/mediatek/
13882
13883 PIN CONTROLLER - MICROCHIP AT91
13884 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13885 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13886 L:      linux-gpio@vger.kernel.org
13887 S:      Supported
13888 F:      drivers/gpio/gpio-sama5d2-piobu.c
13889 F:      drivers/pinctrl/pinctrl-at91*
13890
13891 PIN CONTROLLER - QUALCOMM
13892 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13893 L:      linux-arm-msm@vger.kernel.org
13894 S:      Maintained
13895 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
13896 F:      drivers/pinctrl/qcom/
13897
13898 PIN CONTROLLER - RENESAS
13899 M:      Geert Uytterhoeven <geert+renesas@glider.be>
13900 L:      linux-renesas-soc@vger.kernel.org
13901 S:      Supported
13902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
13903 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
13904 F:      drivers/pinctrl/renesas/
13905
13906 PIN CONTROLLER - SAMSUNG
13907 M:      Tomasz Figa <tomasz.figa@gmail.com>
13908 M:      Krzysztof Kozlowski <krzk@kernel.org>
13909 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13910 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13911 L:      linux-samsung-soc@vger.kernel.org
13912 S:      Maintained
13913 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
13914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
13915 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
13916 F:      drivers/pinctrl/samsung/
13917 F:      include/dt-bindings/pinctrl/samsung.h
13918
13919 PIN CONTROLLER - SINGLE
13920 M:      Tony Lindgren <tony@atomide.com>
13921 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
13922 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13923 L:      linux-omap@vger.kernel.org
13924 S:      Maintained
13925 F:      drivers/pinctrl/pinctrl-single.c
13926
13927 PIN CONTROLLER - ST SPEAR
13928 M:      Viresh Kumar <vireshk@kernel.org>
13929 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13930 S:      Maintained
13931 W:      http://www.st.com/spear
13932 F:      drivers/pinctrl/spear/
13933
13934 PISTACHIO SOC SUPPORT
13935 M:      James Hartley <james.hartley@sondrel.com>
13936 L:      linux-mips@vger.kernel.org
13937 S:      Odd Fixes
13938 F:      arch/mips/boot/dts/img/pistachio*
13939 F:      arch/mips/configs/pistachio*_defconfig
13940 F:      arch/mips/include/asm/mach-pistachio/
13941 F:      arch/mips/pistachio/
13942
13943 PKTCDVD DRIVER
13944 M:      linux-block@vger.kernel.org
13945 S:      Orphan
13946 F:      drivers/block/pktcdvd.c
13947 F:      include/linux/pktcdvd.h
13948 F:      include/uapi/linux/pktcdvd.h
13949
13950 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
13951 M:      Tomasz Duszynski <tduszyns@gmail.com>
13952 S:      Maintained
13953 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
13954 F:      drivers/iio/chemical/pms7003.c
13955
13956 PLDMFW LIBRARY
13957 M:      Jacob Keller <jacob.e.keller@intel.com>
13958 S:      Maintained
13959 F:      Documentation/driver-api/pldmfw/
13960 F:      include/linux/pldmfw.h
13961 F:      lib/pldmfw/
13962
13963 PLX DMA DRIVER
13964 M:      Logan Gunthorpe <logang@deltatee.com>
13965 S:      Maintained
13966 F:      drivers/dma/plx_dma.c
13967
13968 PM-GRAPH UTILITY
13969 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
13970 L:      linux-pm@vger.kernel.org
13971 S:      Supported
13972 W:      https://01.org/pm-graph
13973 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
13974 T:      git git://github.com/intel/pm-graph
13975 F:      tools/power/pm-graph
13976
13977 PMBUS HARDWARE MONITORING DRIVERS
13978 M:      Guenter Roeck <linux@roeck-us.net>
13979 L:      linux-hwmon@vger.kernel.org
13980 S:      Maintained
13981 W:      http://hwmon.wiki.kernel.org/
13982 W:      http://www.roeck-us.net/linux/drivers/
13983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
13984 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
13985 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
13986 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
13987 F:      Documentation/hwmon/adm1275.rst
13988 F:      Documentation/hwmon/ibm-cffps.rst
13989 F:      Documentation/hwmon/ir35221.rst
13990 F:      Documentation/hwmon/lm25066.rst
13991 F:      Documentation/hwmon/ltc2978.rst
13992 F:      Documentation/hwmon/ltc3815.rst
13993 F:      Documentation/hwmon/max16064.rst
13994 F:      Documentation/hwmon/max20751.rst
13995 F:      Documentation/hwmon/max31785.rst
13996 F:      Documentation/hwmon/max34440.rst
13997 F:      Documentation/hwmon/max8688.rst
13998 F:      Documentation/hwmon/pmbus-core.rst
13999 F:      Documentation/hwmon/pmbus.rst
14000 F:      Documentation/hwmon/tps40422.rst
14001 F:      Documentation/hwmon/ucd9000.rst
14002 F:      Documentation/hwmon/ucd9200.rst
14003 F:      Documentation/hwmon/zl6100.rst
14004 F:      drivers/hwmon/pmbus/
14005 F:      include/linux/pmbus.h
14006
14007 PMC SIERRA MaxRAID DRIVER
14008 L:      linux-scsi@vger.kernel.org
14009 S:      Orphan
14010 W:      http://www.pmc-sierra.com/
14011 F:      drivers/scsi/pmcraid.*
14012
14013 PMC SIERRA PM8001 DRIVER
14014 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14015 L:      linux-scsi@vger.kernel.org
14016 S:      Supported
14017 F:      drivers/scsi/pm8001/
14018
14019 PNI RM3100 IIO DRIVER
14020 M:      Song Qiang <songqiang1304521@gmail.com>
14021 L:      linux-iio@vger.kernel.org
14022 S:      Maintained
14023 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
14024 F:      drivers/iio/magnetometer/rm3100*
14025
14026 PNP SUPPORT
14027 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
14028 L:      linux-acpi@vger.kernel.org
14029 S:      Maintained
14030 F:      drivers/pnp/
14031 F:      include/linux/pnp.h
14032
14033 POSIX CLOCKS and TIMERS
14034 M:      Thomas Gleixner <tglx@linutronix.de>
14035 L:      linux-kernel@vger.kernel.org
14036 S:      Maintained
14037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
14038 F:      fs/timerfd.c
14039 F:      include/linux/time_namespace.h
14040 F:      include/linux/timer*
14041 F:      kernel/time/*timer*
14042 F:      kernel/time/namespace.c
14043
14044 POWER MANAGEMENT CORE
14045 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
14046 L:      linux-pm@vger.kernel.org
14047 S:      Supported
14048 B:      https://bugzilla.kernel.org
14049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14050 F:      drivers/base/power/
14051 F:      drivers/powercap/
14052 F:      include/linux/intel_rapl.h
14053 F:      include/linux/pm.h
14054 F:      include/linux/pm_*
14055 F:      include/linux/powercap.h
14056 F:      kernel/configs/nopm.config
14057
14058 POWER STATE COORDINATION INTERFACE (PSCI)
14059 M:      Mark Rutland <mark.rutland@arm.com>
14060 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14061 L:      linux-arm-kernel@lists.infradead.org
14062 S:      Maintained
14063 F:      drivers/firmware/psci/
14064 F:      include/linux/psci.h
14065 F:      include/uapi/linux/psci.h
14066
14067 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
14068 M:      Sebastian Reichel <sre@kernel.org>
14069 L:      linux-pm@vger.kernel.org
14070 S:      Maintained
14071 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
14072 F:      Documentation/ABI/testing/sysfs-class-power
14073 F:      Documentation/devicetree/bindings/power/supply/
14074 F:      drivers/power/supply/
14075 F:      include/linux/power_supply.h
14076
14077 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
14078 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
14079 L:      linuxppc-dev@lists.ozlabs.org
14080 S:      Maintained
14081 F:      drivers/char/powernv-op-panel.c
14082
14083 PPP OVER ATM (RFC 2364)
14084 M:      Mitchell Blank Jr <mitch@sfgoth.com>
14085 S:      Maintained
14086 F:      include/uapi/linux/atmppp.h
14087 F:      net/atm/pppoatm.c
14088
14089 PPP OVER ETHERNET
14090 M:      Michal Ostrowski <mostrows@earthlink.net>
14091 S:      Maintained
14092 F:      drivers/net/ppp/pppoe.c
14093 F:      drivers/net/ppp/pppox.c
14094
14095 PPP OVER L2TP
14096 M:      James Chapman <jchapman@katalix.com>
14097 S:      Maintained
14098 F:      include/linux/if_pppol2tp.h
14099 F:      include/uapi/linux/if_pppol2tp.h
14100 F:      net/l2tp/l2tp_ppp.c
14101
14102 PPP PROTOCOL DRIVERS AND COMPRESSORS
14103 M:      Paul Mackerras <paulus@samba.org>
14104 L:      linux-ppp@vger.kernel.org
14105 S:      Maintained
14106 F:      drivers/net/ppp/ppp_*
14107
14108 PPS SUPPORT
14109 M:      Rodolfo Giometti <giometti@enneenne.com>
14110 L:      linuxpps@ml.enneenne.com (subscribers-only)
14111 S:      Maintained
14112 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
14113 F:      Documentation/ABI/testing/sysfs-pps
14114 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
14115 F:      Documentation/driver-api/pps.rst
14116 F:      drivers/pps/
14117 F:      include/linux/pps*.h
14118 F:      include/uapi/linux/pps.h
14119
14120 PPTP DRIVER
14121 M:      Dmitry Kozlov <xeb@mail.ru>
14122 L:      netdev@vger.kernel.org
14123 S:      Maintained
14124 W:      http://sourceforge.net/projects/accel-pptp
14125 F:      drivers/net/ppp/pptp.c
14126
14127 PRESSURE STALL INFORMATION (PSI)
14128 M:      Johannes Weiner <hannes@cmpxchg.org>
14129 S:      Maintained
14130 F:      include/linux/psi*
14131 F:      kernel/sched/psi.c
14132
14133 PRINTK
14134 M:      Petr Mladek <pmladek@suse.com>
14135 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
14136 R:      Steven Rostedt <rostedt@goodmis.org>
14137 R:      John Ogness <john.ogness@linutronix.de>
14138 S:      Maintained
14139 F:      include/linux/printk.h
14140 F:      kernel/printk/
14141
14142 PRISM54 WIRELESS DRIVER
14143 M:      Luis Chamberlain <mcgrof@kernel.org>
14144 L:      linux-wireless@vger.kernel.org
14145 S:      Obsolete
14146 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14147 F:      drivers/net/wireless/intersil/prism54/
14148
14149 PROC FILESYSTEM
14150 R:      Alexey Dobriyan <adobriyan@gmail.com>
14151 L:      linux-kernel@vger.kernel.org
14152 L:      linux-fsdevel@vger.kernel.org
14153 S:      Maintained
14154 F:      Documentation/filesystems/proc.rst
14155 F:      fs/proc/
14156 F:      include/linux/proc_fs.h
14157 F:      tools/testing/selftests/proc/
14158
14159 PROC SYSCTL
14160 M:      Luis Chamberlain <mcgrof@kernel.org>
14161 M:      Kees Cook <keescook@chromium.org>
14162 M:      Iurii Zaikin <yzaikin@google.com>
14163 L:      linux-kernel@vger.kernel.org
14164 L:      linux-fsdevel@vger.kernel.org
14165 S:      Maintained
14166 F:      fs/proc/proc_sysctl.c
14167 F:      include/linux/sysctl.h
14168 F:      kernel/sysctl-test.c
14169 F:      kernel/sysctl.c
14170 F:      tools/testing/selftests/sysctl/
14171
14172 PS3 NETWORK SUPPORT
14173 M:      Geoff Levand <geoff@infradead.org>
14174 L:      netdev@vger.kernel.org
14175 L:      linuxppc-dev@lists.ozlabs.org
14176 S:      Maintained
14177 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
14178
14179 PS3 PLATFORM SUPPORT
14180 M:      Geoff Levand <geoff@infradead.org>
14181 L:      linuxppc-dev@lists.ozlabs.org
14182 S:      Maintained
14183 F:      arch/powerpc/boot/ps3*
14184 F:      arch/powerpc/include/asm/lv1call.h
14185 F:      arch/powerpc/include/asm/ps3*.h
14186 F:      arch/powerpc/platforms/ps3/
14187 F:      drivers/*/ps3*
14188 F:      drivers/ps3/
14189 F:      drivers/rtc/rtc-ps3.c
14190 F:      drivers/usb/host/*ps3.c
14191 F:      sound/ppc/snd_ps3*
14192
14193 PS3VRAM DRIVER
14194 M:      Jim Paris <jim@jtan.com>
14195 M:      Geoff Levand <geoff@infradead.org>
14196 L:      linuxppc-dev@lists.ozlabs.org
14197 S:      Maintained
14198 F:      drivers/block/ps3vram.c
14199
14200 PSAMPLE PACKET SAMPLING SUPPORT
14201 M:      Yotam Gigi <yotam.gi@gmail.com>
14202 S:      Maintained
14203 F:      include/net/psample.h
14204 F:      include/uapi/linux/psample.h
14205 F:      net/psample
14206
14207 PSTORE FILESYSTEM
14208 M:      Kees Cook <keescook@chromium.org>
14209 M:      Anton Vorontsov <anton@enomsg.org>
14210 M:      Colin Cross <ccross@android.com>
14211 M:      Tony Luck <tony.luck@intel.com>
14212 S:      Maintained
14213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
14214 F:      Documentation/admin-guide/ramoops.rst
14215 F:      Documentation/admin-guide/pstore-blk.rst
14216 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
14217 F:      drivers/acpi/apei/erst.c
14218 F:      drivers/firmware/efi/efi-pstore.c
14219 F:      fs/pstore/
14220 F:      include/linux/pstore*
14221 K:      \b(pstore|ramoops)
14222
14223 PTP HARDWARE CLOCK SUPPORT
14224 M:      Richard Cochran <richardcochran@gmail.com>
14225 L:      netdev@vger.kernel.org
14226 S:      Maintained
14227 W:      http://linuxptp.sourceforge.net/
14228 F:      Documentation/ABI/testing/sysfs-ptp
14229 F:      Documentation/driver-api/ptp.rst
14230 F:      drivers/net/phy/dp83640*
14231 F:      drivers/ptp/*
14232 F:      include/linux/ptp_cl*
14233
14234 PTRACE SUPPORT
14235 M:      Oleg Nesterov <oleg@redhat.com>
14236 S:      Maintained
14237 F:      arch/*/*/ptrace*.c
14238 F:      arch/*/include/asm/ptrace*.h
14239 F:      arch/*/ptrace*.c
14240 F:      include/asm-generic/syscall.h
14241 F:      include/linux/ptrace.h
14242 F:      include/linux/regset.h
14243 F:      include/linux/tracehook.h
14244 F:      include/uapi/linux/ptrace.h
14245 F:      include/uapi/linux/ptrace.h
14246 F:      kernel/ptrace.c
14247
14248 PULSE8-CEC DRIVER
14249 M:      Hans Verkuil <hverkuil@xs4all.nl>
14250 L:      linux-media@vger.kernel.org
14251 S:      Maintained
14252 T:      git git://linuxtv.org/media_tree.git
14253 F:      Documentation/admin-guide/media/pulse8-cec.rst
14254 F:      drivers/media/cec/usb/pulse8/
14255
14256 PVRUSB2 VIDEO4LINUX DRIVER
14257 M:      Mike Isely <isely@pobox.com>
14258 L:      pvrusb2@isely.net       (subscribers-only)
14259 L:      linux-media@vger.kernel.org
14260 S:      Maintained
14261 W:      http://www.isely.net/pvrusb2/
14262 T:      git git://linuxtv.org/media_tree.git
14263 F:      Documentation/driver-api/media/drivers/pvrusb2*
14264 F:      drivers/media/usb/pvrusb2/
14265
14266 PWC WEBCAM DRIVER
14267 M:      Hans Verkuil <hverkuil@xs4all.nl>
14268 L:      linux-media@vger.kernel.org
14269 S:      Odd Fixes
14270 T:      git git://linuxtv.org/media_tree.git
14271 F:      drivers/media/usb/pwc/*
14272 F:      include/trace/events/pwc.h
14273
14274 PWM FAN DRIVER
14275 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14276 L:      linux-hwmon@vger.kernel.org
14277 S:      Supported
14278 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
14279 F:      Documentation/hwmon/pwm-fan.rst
14280 F:      drivers/hwmon/pwm-fan.c
14281
14282 PWM IR Transmitter
14283 M:      Sean Young <sean@mess.org>
14284 L:      linux-media@vger.kernel.org
14285 S:      Maintained
14286 F:      drivers/media/rc/pwm-ir-tx.c
14287
14288 PWM SUBSYSTEM
14289 M:      Thierry Reding <thierry.reding@gmail.com>
14290 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
14291 M:      Lee Jones <lee.jones@linaro.org>
14292 L:      linux-pwm@vger.kernel.org
14293 S:      Maintained
14294 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
14295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
14296 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
14297 F:      Documentation/devicetree/bindings/pwm/
14298 F:      Documentation/driver-api/pwm.rst
14299 F:      drivers/gpio/gpio-mvebu.c
14300 F:      drivers/pwm/
14301 F:      drivers/video/backlight/pwm_bl.c
14302 F:      include/linux/pwm.h
14303 F:      include/linux/pwm_backlight.h
14304 K:      pwm_(config|apply_state|ops)
14305
14306 PXA GPIO DRIVER
14307 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14308 L:      linux-gpio@vger.kernel.org
14309 S:      Maintained
14310 F:      drivers/gpio/gpio-pxa.c
14311
14312 PXA MMCI DRIVER
14313 S:      Orphan
14314
14315 PXA RTC DRIVER
14316 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14317 L:      linux-rtc@vger.kernel.org
14318 S:      Maintained
14319
14320 PXA2xx/PXA3xx SUPPORT
14321 M:      Daniel Mack <daniel@zonque.org>
14322 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
14323 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14324 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14325 S:      Maintained
14326 T:      git git://github.com/hzhuang1/linux.git
14327 T:      git git://github.com/rjarzmik/linux.git
14328 F:      arch/arm/boot/dts/pxa*
14329 F:      arch/arm/mach-pxa/
14330 F:      drivers/dma/pxa*
14331 F:      drivers/pcmcia/pxa2xx*
14332 F:      drivers/pinctrl/pxa/
14333 F:      drivers/spi/spi-pxa2xx*
14334 F:      drivers/usb/gadget/udc/pxa2*
14335 F:      include/sound/pxa2xx-lib.h
14336 F:      sound/arm/pxa*
14337 F:      sound/soc/pxa/
14338
14339 QAT DRIVER
14340 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
14341 L:      qat-linux@intel.com
14342 S:      Supported
14343 F:      drivers/crypto/qat/
14344
14345 QCOM AUDIO (ASoC) DRIVERS
14346 M:      Patrick Lai <plai@codeaurora.org>
14347 M:      Banajit Goswami <bgoswami@codeaurora.org>
14348 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14349 S:      Supported
14350 F:      sound/soc/qcom/
14351
14352 QCOM IPA DRIVER
14353 M:      Alex Elder <elder@kernel.org>
14354 L:      netdev@vger.kernel.org
14355 S:      Supported
14356 F:      drivers/net/ipa/
14357
14358 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
14359 M:      Gabriel Somlo <somlo@cmu.edu>
14360 M:      "Michael S. Tsirkin" <mst@redhat.com>
14361 L:      qemu-devel@nongnu.org
14362 S:      Maintained
14363 F:      drivers/firmware/qemu_fw_cfg.c
14364 F:      include/uapi/linux/qemu_fw_cfg.h
14365
14366 QIB DRIVER
14367 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14368 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14369 L:      linux-rdma@vger.kernel.org
14370 S:      Supported
14371 F:      drivers/infiniband/hw/qib/
14372
14373 QLOGIC QL41xxx FCOE DRIVER
14374 M:      Saurav Kashyap <skashyap@marvell.com>
14375 M:      Javed Hasan <jhasan@marvell.com>
14376 M:      GR-QLogic-Storage-Upstream@marvell.com
14377 L:      linux-scsi@vger.kernel.org
14378 S:      Supported
14379 F:      drivers/scsi/qedf/
14380
14381 QLOGIC QL41xxx ISCSI DRIVER
14382 M:      Nilesh Javali <njavali@marvell.com>
14383 M:      Manish Rangankar <mrangankar@marvell.com>
14384 M:      GR-QLogic-Storage-Upstream@marvell.com
14385 L:      linux-scsi@vger.kernel.org
14386 S:      Supported
14387 F:      drivers/scsi/qedi/
14388
14389 QLOGIC QL4xxx ETHERNET DRIVER
14390 M:      Ariel Elior <aelior@marvell.com>
14391 M:      GR-everest-linux-l2@marvell.com
14392 L:      netdev@vger.kernel.org
14393 S:      Supported
14394 F:      drivers/net/ethernet/qlogic/qed/
14395 F:      drivers/net/ethernet/qlogic/qede/
14396 F:      include/linux/qed/
14397
14398 QLOGIC QL4xxx RDMA DRIVER
14399 M:      Michal Kalderon <mkalderon@marvell.com>
14400 M:      Ariel Elior <aelior@marvell.com>
14401 L:      linux-rdma@vger.kernel.org
14402 S:      Supported
14403 F:      drivers/infiniband/hw/qedr/
14404 F:      include/uapi/rdma/qedr-abi.h
14405
14406 QLOGIC QLA1280 SCSI DRIVER
14407 M:      Michael Reed <mdr@sgi.com>
14408 L:      linux-scsi@vger.kernel.org
14409 S:      Maintained
14410 F:      drivers/scsi/qla1280.[ch]
14411
14412 QLOGIC QLA2XXX FC-SCSI DRIVER
14413 M:      Nilesh Javali <njavali@marvell.com>
14414 M:      GR-QLogic-Storage-Upstream@marvell.com
14415 L:      linux-scsi@vger.kernel.org
14416 S:      Supported
14417 F:      drivers/scsi/qla2xxx/
14418
14419 QLOGIC QLA3XXX NETWORK DRIVER
14420 M:      GR-Linux-NIC-Dev@marvell.com
14421 L:      netdev@vger.kernel.org
14422 S:      Supported
14423 F:      drivers/net/ethernet/qlogic/qla3xxx.*
14424
14425 QLOGIC QLA4XXX iSCSI DRIVER
14426 M:      Nilesh Javali <njavali@marvell.com>
14427 M:      Manish Rangankar <mrangankar@marvell.com>
14428 M:      GR-QLogic-Storage-Upstream@marvell.com
14429 L:      linux-scsi@vger.kernel.org
14430 S:      Supported
14431 F:      drivers/scsi/qla4xxx/
14432
14433 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
14434 M:      Shahed Shaikh <shshaikh@marvell.com>
14435 M:      Manish Chopra <manishc@marvell.com>
14436 M:      GR-Linux-NIC-Dev@marvell.com
14437 L:      netdev@vger.kernel.org
14438 S:      Supported
14439 F:      drivers/net/ethernet/qlogic/qlcnic/
14440
14441 QLOGIC QLGE 10Gb ETHERNET DRIVER
14442 M:      Manish Chopra <manishc@marvell.com>
14443 M:      GR-Linux-NIC-Dev@marvell.com
14444 L:      netdev@vger.kernel.org
14445 S:      Supported
14446 F:      drivers/staging/qlge/
14447
14448 QM1D1B0004 MEDIA DRIVER
14449 M:      Akihiro Tsukada <tskd08@gmail.com>
14450 L:      linux-media@vger.kernel.org
14451 S:      Odd Fixes
14452 F:      drivers/media/tuners/qm1d1b0004*
14453
14454 QM1D1C0042 MEDIA DRIVER
14455 M:      Akihiro Tsukada <tskd08@gmail.com>
14456 L:      linux-media@vger.kernel.org
14457 S:      Odd Fixes
14458 F:      drivers/media/tuners/qm1d1c0042*
14459
14460 QNX4 FILESYSTEM
14461 M:      Anders Larsen <al@alarsen.net>
14462 S:      Maintained
14463 W:      http://www.alarsen.net/linux/qnx4fs/
14464 F:      fs/qnx4/
14465 F:      include/uapi/linux/qnx4_fs.h
14466 F:      include/uapi/linux/qnxtypes.h
14467
14468 QORIQ DPAA2 FSL-MC BUS DRIVER
14469 M:      Stuart Yoder <stuyoder@gmail.com>
14470 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
14471 L:      linux-kernel@vger.kernel.org
14472 S:      Maintained
14473 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
14474 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
14475 F:      drivers/bus/fsl-mc/
14476
14477 QT1010 MEDIA DRIVER
14478 M:      Antti Palosaari <crope@iki.fi>
14479 L:      linux-media@vger.kernel.org
14480 S:      Maintained
14481 W:      https://linuxtv.org
14482 W:      http://palosaari.fi/linux/
14483 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14484 T:      git git://linuxtv.org/anttip/media_tree.git
14485 F:      drivers/media/tuners/qt1010*
14486
14487 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
14488 M:      Kalle Valo <kvalo@codeaurora.org>
14489 L:      ath10k@lists.infradead.org
14490 S:      Supported
14491 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
14492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14493 F:      drivers/net/wireless/ath/ath10k/
14494
14495 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
14496 M:      Kalle Valo <kvalo@codeaurora.org>
14497 L:      ath11k@lists.infradead.org
14498 S:      Supported
14499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14500 F:      drivers/net/wireless/ath/ath11k/
14501
14502 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
14503 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
14504 L:      linux-wireless@vger.kernel.org
14505 S:      Supported
14506 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
14507 F:      drivers/net/wireless/ath/ath9k/
14508
14509 QUALCOMM CAMERA SUBSYSTEM DRIVER
14510 M:      Robert Foss <robert.foss@linaro.org>
14511 M:      Todor Tomov <todor.too@gmail.com>
14512 L:      linux-media@vger.kernel.org
14513 S:      Maintained
14514 F:      Documentation/admin-guide/media/qcom_camss.rst
14515 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
14516 F:      drivers/media/platform/qcom/camss/
14517
14518 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
14519 M:      Niklas Cassel <nks@flawful.org>
14520 L:      linux-pm@vger.kernel.org
14521 L:      linux-arm-msm@vger.kernel.org
14522 S:      Maintained
14523 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
14524 F:      drivers/soc/qcom/cpr.c
14525
14526 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
14527 M:      Ilia Lin <ilia.lin@kernel.org>
14528 L:      linux-pm@vger.kernel.org
14529 S:      Maintained
14530 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
14531 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
14532
14533 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
14534 M:      Timur Tabi <timur@kernel.org>
14535 L:      netdev@vger.kernel.org
14536 S:      Maintained
14537 F:      drivers/net/ethernet/qualcomm/emac/
14538
14539 QUALCOMM ETHQOS ETHERNET DRIVER
14540 M:      Vinod Koul <vkoul@kernel.org>
14541 L:      netdev@vger.kernel.org
14542 S:      Maintained
14543 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
14544 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
14545
14546 QUALCOMM GENERIC INTERFACE I2C DRIVER
14547 M:      Akash Asthana <akashast@codeaurora.org>
14548 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
14549 L:      linux-i2c@vger.kernel.org
14550 L:      linux-arm-msm@vger.kernel.org
14551 S:      Supported
14552 F:      drivers/i2c/busses/i2c-qcom-geni.c
14553
14554 QUALCOMM HEXAGON ARCHITECTURE
14555 M:      Brian Cain <bcain@codeaurora.org>
14556 L:      linux-hexagon@vger.kernel.org
14557 S:      Supported
14558 F:      arch/hexagon/
14559
14560 QUALCOMM HIDMA DRIVER
14561 M:      Sinan Kaya <okaya@kernel.org>
14562 L:      linux-arm-kernel@lists.infradead.org
14563 L:      linux-arm-msm@vger.kernel.org
14564 L:      dmaengine@vger.kernel.org
14565 S:      Supported
14566 F:      drivers/dma/qcom/hidma*
14567
14568 QUALCOMM I2C CCI DRIVER
14569 M:      Loic Poulain <loic.poulain@linaro.org>
14570 M:      Robert Foss <robert.foss@linaro.org>
14571 L:      linux-i2c@vger.kernel.org
14572 L:      linux-arm-msm@vger.kernel.org
14573 S:      Maintained
14574 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
14575 F:      drivers/i2c/busses/i2c-qcom-cci.c
14576
14577 QUALCOMM IOMMU
14578 M:      Rob Clark <robdclark@gmail.com>
14579 L:      iommu@lists.linux-foundation.org
14580 L:      linux-arm-msm@vger.kernel.org
14581 S:      Maintained
14582 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
14583
14584 QUALCOMM IPCC MAILBOX DRIVER
14585 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
14586 L:      linux-arm-msm@vger.kernel.org
14587 S:      Supported
14588 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
14589 F:      drivers/mailbox/qcom-ipcc.c
14590 F:      include/dt-bindings/mailbox/qcom-ipcc.h
14591
14592 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
14593 M:      Robert Marko <robert.marko@sartura.hr>
14594 M:      Luka Perkov <luka.perkov@sartura.hr>
14595 L:      linux-arm-msm@vger.kernel.org
14596 S:      Maintained
14597 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
14598 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
14599
14600 QUALCOMM RMNET DRIVER
14601 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
14602 M:      Sean Tranchetti <stranche@codeaurora.org>
14603 L:      netdev@vger.kernel.org
14604 S:      Maintained
14605 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
14606 F:      drivers/net/ethernet/qualcomm/rmnet/
14607 F:      include/linux/if_rmnet.h
14608
14609 QUALCOMM TSENS THERMAL DRIVER
14610 M:      Amit Kucheria <amitk@kernel.org>
14611 L:      linux-pm@vger.kernel.org
14612 L:      linux-arm-msm@vger.kernel.org
14613 S:      Maintained
14614 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14615 F:      drivers/thermal/qcom/
14616
14617 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14618 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
14619 L:      linux-media@vger.kernel.org
14620 L:      linux-arm-msm@vger.kernel.org
14621 S:      Maintained
14622 T:      git git://linuxtv.org/media_tree.git
14623 F:      Documentation/devicetree/bindings/media/*venus*
14624 F:      drivers/media/platform/qcom/venus/
14625
14626 QUALCOMM WCN36XX WIRELESS DRIVER
14627 M:      Kalle Valo <kvalo@codeaurora.org>
14628 L:      wcn36xx@lists.infradead.org
14629 S:      Supported
14630 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
14631 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
14632 F:      drivers/net/wireless/ath/wcn36xx/
14633
14634 QUANTENNA QTNFMAC WIRELESS DRIVER
14635 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
14636 R:      Sergey Matyukevich <geomatsi@gmail.com>
14637 L:      linux-wireless@vger.kernel.org
14638 S:      Maintained
14639 F:      drivers/net/wireless/quantenna
14640
14641 RADEON and AMDGPU DRM DRIVERS
14642 M:      Alex Deucher <alexander.deucher@amd.com>
14643 M:      Christian König <christian.koenig@amd.com>
14644 L:      amd-gfx@lists.freedesktop.org
14645 S:      Supported
14646 T:      git git://people.freedesktop.org/~agd5f/linux
14647 F:      drivers/gpu/drm/amd/
14648 F:      drivers/gpu/drm/radeon/
14649 F:      include/uapi/drm/amdgpu_drm.h
14650 F:      include/uapi/drm/radeon_drm.h
14651
14652 RADEON FRAMEBUFFER DISPLAY DRIVER
14653 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
14654 L:      linux-fbdev@vger.kernel.org
14655 S:      Maintained
14656 F:      drivers/video/fbdev/aty/radeon*
14657 F:      include/uapi/linux/radeonfb.h
14658
14659 RADIOSHARK RADIO DRIVER
14660 M:      Hans Verkuil <hverkuil@xs4all.nl>
14661 L:      linux-media@vger.kernel.org
14662 S:      Maintained
14663 T:      git git://linuxtv.org/media_tree.git
14664 F:      drivers/media/radio/radio-shark.c
14665
14666 RADIOSHARK2 RADIO DRIVER
14667 M:      Hans Verkuil <hverkuil@xs4all.nl>
14668 L:      linux-media@vger.kernel.org
14669 S:      Maintained
14670 T:      git git://linuxtv.org/media_tree.git
14671 F:      drivers/media/radio/radio-shark2.c
14672 F:      drivers/media/radio/radio-tea5777.c
14673
14674 RADOS BLOCK DEVICE (RBD)
14675 M:      Ilya Dryomov <idryomov@gmail.com>
14676 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
14677 L:      ceph-devel@vger.kernel.org
14678 S:      Supported
14679 W:      http://ceph.com/
14680 T:      git git://github.com/ceph/ceph-client.git
14681 F:      Documentation/ABI/testing/sysfs-bus-rbd
14682 F:      drivers/block/rbd.c
14683 F:      drivers/block/rbd_types.h
14684
14685 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14686 M:      Paul Mackerras <paulus@samba.org>
14687 L:      linux-fbdev@vger.kernel.org
14688 S:      Maintained
14689 F:      drivers/video/fbdev/aty/aty128fb.c
14690
14691 RAINSHADOW-CEC DRIVER
14692 M:      Hans Verkuil <hverkuil@xs4all.nl>
14693 L:      linux-media@vger.kernel.org
14694 S:      Maintained
14695 T:      git git://linuxtv.org/media_tree.git
14696 F:      drivers/media/cec/usb/rainshadow/
14697
14698 RALINK MIPS ARCHITECTURE
14699 M:      John Crispin <john@phrozen.org>
14700 L:      linux-mips@vger.kernel.org
14701 S:      Maintained
14702 F:      arch/mips/ralink
14703
14704 RALINK RT2X00 WIRELESS LAN DRIVER
14705 M:      Stanislaw Gruszka <stf_xl@wp.pl>
14706 M:      Helmut Schaa <helmut.schaa@googlemail.com>
14707 L:      linux-wireless@vger.kernel.org
14708 S:      Maintained
14709 F:      drivers/net/wireless/ralink/rt2x00/
14710
14711 RAMDISK RAM BLOCK DEVICE DRIVER
14712 M:      Jens Axboe <axboe@kernel.dk>
14713 S:      Maintained
14714 F:      Documentation/admin-guide/blockdev/ramdisk.rst
14715 F:      drivers/block/brd.c
14716
14717 RANCHU VIRTUAL BOARD FOR MIPS
14718 M:      Miodrag Dinic <miodrag.dinic@mips.com>
14719 L:      linux-mips@vger.kernel.org
14720 S:      Supported
14721 F:      arch/mips/configs/generic/board-ranchu.config
14722 F:      arch/mips/generic/board-ranchu.c
14723
14724 RANDOM NUMBER DRIVER
14725 M:      "Theodore Ts'o" <tytso@mit.edu>
14726 S:      Maintained
14727 F:      drivers/char/random.c
14728
14729 RAPIDIO SUBSYSTEM
14730 M:      Matt Porter <mporter@kernel.crashing.org>
14731 M:      Alexandre Bounine <alex.bou9@gmail.com>
14732 S:      Maintained
14733 F:      drivers/rapidio/
14734
14735 RAS INFRASTRUCTURE
14736 M:      Tony Luck <tony.luck@intel.com>
14737 M:      Borislav Petkov <bp@alien8.de>
14738 L:      linux-edac@vger.kernel.org
14739 S:      Maintained
14740 F:      Documentation/admin-guide/ras.rst
14741 F:      drivers/ras/
14742 F:      include/linux/ras.h
14743 F:      include/ras/ras_event.h
14744
14745 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14746 L:      linux-wireless@vger.kernel.org
14747 S:      Orphan
14748 F:      drivers/net/wireless/ray*
14749
14750 RC-CORE / LIRC FRAMEWORK
14751 M:      Sean Young <sean@mess.org>
14752 L:      linux-media@vger.kernel.org
14753 S:      Maintained
14754 W:      http://linuxtv.org
14755 T:      git git://linuxtv.org/media_tree.git
14756 F:      Documentation/driver-api/media/rc-core.rst
14757 F:      Documentation/userspace-api/media/rc/
14758 F:      drivers/media/rc/
14759 F:      include/media/rc-map.h
14760 F:      include/media/rc-core.h
14761 F:      include/uapi/linux/lirc.h
14762
14763 RCMM REMOTE CONTROLS DECODER
14764 M:      Patrick Lerda <patrick9876@free.fr>
14765 S:      Maintained
14766 F:      drivers/media/rc/ir-rcmm-decoder.c
14767
14768 RCUTORTURE TEST FRAMEWORK
14769 M:      "Paul E. McKenney" <paulmck@kernel.org>
14770 M:      Josh Triplett <josh@joshtriplett.org>
14771 R:      Steven Rostedt <rostedt@goodmis.org>
14772 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14773 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14774 L:      rcu@vger.kernel.org
14775 S:      Supported
14776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14777 F:      tools/testing/selftests/rcutorture
14778
14779 RDACM20 Camera Sensor
14780 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
14781 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
14782 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
14783 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
14784 L:      linux-media@vger.kernel.org
14785 S:      Maintained
14786 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
14787 F:      drivers/media/i2c/max9271.c
14788 F:      drivers/media/i2c/max9271.h
14789 F:      drivers/media/i2c/rdacm20.c
14790
14791 RDC R-321X SoC
14792 M:      Florian Fainelli <florian@openwrt.org>
14793 S:      Maintained
14794
14795 RDC R6040 FAST ETHERNET DRIVER
14796 M:      Florian Fainelli <f.fainelli@gmail.com>
14797 L:      netdev@vger.kernel.org
14798 S:      Maintained
14799 F:      drivers/net/ethernet/rdc/r6040.c
14800
14801 RDMAVT - RDMA verbs software
14802 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14803 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14804 L:      linux-rdma@vger.kernel.org
14805 S:      Supported
14806 F:      drivers/infiniband/sw/rdmavt
14807
14808 RDS - RELIABLE DATAGRAM SOCKETS
14809 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
14810 L:      netdev@vger.kernel.org
14811 L:      linux-rdma@vger.kernel.org
14812 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
14813 S:      Supported
14814 W:      https://oss.oracle.com/projects/rds/
14815 F:      Documentation/networking/rds.rst
14816 F:      net/rds/
14817
14818 RDT - RESOURCE ALLOCATION
14819 M:      Fenghua Yu <fenghua.yu@intel.com>
14820 M:      Reinette Chatre <reinette.chatre@intel.com>
14821 L:      linux-kernel@vger.kernel.org
14822 S:      Supported
14823 F:      Documentation/x86/resctrl*
14824 F:      arch/x86/include/asm/resctrl.h
14825 F:      arch/x86/kernel/cpu/resctrl/
14826 F:      tools/testing/selftests/resctrl/
14827
14828 READ-COPY UPDATE (RCU)
14829 M:      "Paul E. McKenney" <paulmck@kernel.org>
14830 M:      Josh Triplett <josh@joshtriplett.org>
14831 R:      Steven Rostedt <rostedt@goodmis.org>
14832 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14833 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14834 R:      Joel Fernandes <joel@joelfernandes.org>
14835 L:      rcu@vger.kernel.org
14836 S:      Supported
14837 W:      http://www.rdrop.com/users/paulmck/RCU/
14838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14839 F:      Documentation/RCU/
14840 F:      include/linux/rcu*
14841 F:      kernel/rcu/
14842 X:      Documentation/RCU/torture.rst
14843 X:      include/linux/srcu*.h
14844 X:      kernel/rcu/srcu*.c
14845
14846 REAL TIME CLOCK (RTC) SUBSYSTEM
14847 M:      Alessandro Zummo <a.zummo@towertech.it>
14848 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14849 L:      linux-rtc@vger.kernel.org
14850 S:      Maintained
14851 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
14852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
14853 F:      Documentation/admin-guide/rtc.rst
14854 F:      Documentation/devicetree/bindings/rtc/
14855 F:      drivers/rtc/
14856 F:      include/linux/platform_data/rtc-*
14857 F:      include/linux/rtc.h
14858 F:      include/linux/rtc/
14859 F:      include/uapi/linux/rtc.h
14860 F:      tools/testing/selftests/rtc/
14861
14862 REALTEK AUDIO CODECS
14863 M:      Oder Chiou <oder_chiou@realtek.com>
14864 S:      Maintained
14865 F:      include/sound/rt*.h
14866 F:      sound/soc/codecs/rt*
14867
14868 REALTEK RTL83xx SMI DSA ROUTER CHIPS
14869 M:      Linus Walleij <linus.walleij@linaro.org>
14870 S:      Maintained
14871 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
14872 F:      drivers/net/dsa/realtek-smi*
14873 F:      drivers/net/dsa/rtl83*
14874
14875 REALTEK WIRELESS DRIVER (rtlwifi family)
14876 M:      Ping-Ke Shih <pkshih@realtek.com>
14877 L:      linux-wireless@vger.kernel.org
14878 S:      Maintained
14879 W:      https://wireless.wiki.kernel.org/
14880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14881 F:      drivers/net/wireless/realtek/rtlwifi/
14882
14883 REALTEK WIRELESS DRIVER (rtw88)
14884 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
14885 L:      linux-wireless@vger.kernel.org
14886 S:      Maintained
14887 F:      drivers/net/wireless/realtek/rtw88/
14888
14889 REDPINE WIRELESS DRIVER
14890 M:      Amitkumar Karwar <amitkarwar@gmail.com>
14891 M:      Siva Rebbagondla <siva8118@gmail.com>
14892 L:      linux-wireless@vger.kernel.org
14893 S:      Maintained
14894 F:      drivers/net/wireless/rsi/
14895
14896 REGISTER MAP ABSTRACTION
14897 M:      Mark Brown <broonie@kernel.org>
14898 L:      linux-kernel@vger.kernel.org
14899 S:      Supported
14900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
14901 F:      Documentation/devicetree/bindings/regmap/
14902 F:      drivers/base/regmap/
14903 F:      include/linux/regmap.h
14904
14905 REISERFS FILE SYSTEM
14906 L:      reiserfs-devel@vger.kernel.org
14907 S:      Supported
14908 F:      fs/reiserfs/
14909
14910 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
14911 M:      Ohad Ben-Cohen <ohad@wizery.com>
14912 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14913 L:      linux-remoteproc@vger.kernel.org
14914 S:      Maintained
14915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
14916 F:      Documentation/ABI/testing/sysfs-class-remoteproc
14917 F:      Documentation/devicetree/bindings/remoteproc/
14918 F:      Documentation/staging/remoteproc.rst
14919 F:      drivers/remoteproc/
14920 F:      include/linux/remoteproc.h
14921 F:      include/linux/remoteproc/
14922
14923 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
14924 M:      Ohad Ben-Cohen <ohad@wizery.com>
14925 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14926 L:      linux-remoteproc@vger.kernel.org
14927 S:      Maintained
14928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
14929 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
14930 F:      Documentation/staging/rpmsg.rst
14931 F:      drivers/rpmsg/
14932 F:      include/linux/rpmsg.h
14933 F:      include/linux/rpmsg/
14934 F:      include/uapi/linux/rpmsg.h
14935 F:      samples/rpmsg/
14936
14937 RENESAS CLOCK DRIVERS
14938 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14939 L:      linux-renesas-soc@vger.kernel.org
14940 S:      Supported
14941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
14942 F:      Documentation/devicetree/bindings/clock/renesas,*
14943 F:      drivers/clk/renesas/
14944
14945 RENESAS EMEV2 I2C DRIVER
14946 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
14947 S:      Supported
14948 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
14949 F:      drivers/i2c/busses/i2c-emev2.c
14950
14951 RENESAS ETHERNET DRIVERS
14952 R:      Sergei Shtylyov <sergei.shtylyov@gmail.com>
14953 L:      netdev@vger.kernel.org
14954 L:      linux-renesas-soc@vger.kernel.org
14955 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
14956 F:      drivers/net/ethernet/renesas/
14957 F:      include/linux/sh_eth.h
14958
14959 RENESAS R-CAR GYROADC DRIVER
14960 M:      Marek Vasut <marek.vasut@gmail.com>
14961 L:      linux-iio@vger.kernel.org
14962 S:      Supported
14963 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
14964 F:      drivers/iio/adc/rcar-gyroadc.c
14965
14966 RENESAS R-CAR I2C DRIVERS
14967 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
14968 S:      Supported
14969 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
14970 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
14971 F:      drivers/i2c/busses/i2c-rcar.c
14972 F:      drivers/i2c/busses/i2c-sh_mobile.c
14973
14974 RENESAS R-CAR THERMAL DRIVERS
14975 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
14976 L:      linux-renesas-soc@vger.kernel.org
14977 S:      Supported
14978 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
14979 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
14980 F:      drivers/thermal/rcar_gen3_thermal.c
14981 F:      drivers/thermal/rcar_thermal.c
14982
14983 RENESAS RIIC DRIVER
14984 M:      Chris Brandt <chris.brandt@renesas.com>
14985 S:      Supported
14986 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
14987 F:      drivers/i2c/busses/i2c-riic.c
14988
14989 RENESAS USB PHY DRIVER
14990 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14991 L:      linux-renesas-soc@vger.kernel.org
14992 S:      Maintained
14993 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
14994
14995 RESET CONTROLLER FRAMEWORK
14996 M:      Philipp Zabel <p.zabel@pengutronix.de>
14997 S:      Maintained
14998 T:      git git://git.pengutronix.de/git/pza/linux
14999 F:      Documentation/devicetree/bindings/reset/
15000 F:      drivers/reset/
15001 F:      include/dt-bindings/reset/
15002 F:      include/linux/reset-controller.h
15003 F:      include/linux/reset.h
15004 F:      include/linux/reset/
15005 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
15006
15007 RESTARTABLE SEQUENCES SUPPORT
15008 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15009 M:      Peter Zijlstra <peterz@infradead.org>
15010 M:      "Paul E. McKenney" <paulmck@kernel.org>
15011 M:      Boqun Feng <boqun.feng@gmail.com>
15012 L:      linux-kernel@vger.kernel.org
15013 S:      Supported
15014 F:      include/trace/events/rseq.h
15015 F:      include/uapi/linux/rseq.h
15016 F:      kernel/rseq.c
15017 F:      tools/testing/selftests/rseq/
15018
15019 RFKILL
15020 M:      Johannes Berg <johannes@sipsolutions.net>
15021 L:      linux-wireless@vger.kernel.org
15022 S:      Maintained
15023 W:      https://wireless.wiki.kernel.org/
15024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
15025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
15026 F:      Documentation/ABI/stable/sysfs-class-rfkill
15027 F:      Documentation/driver-api/rfkill.rst
15028 F:      include/linux/rfkill.h
15029 F:      include/uapi/linux/rfkill.h
15030 F:      net/rfkill/
15031
15032 RHASHTABLE
15033 M:      Thomas Graf <tgraf@suug.ch>
15034 M:      Herbert Xu <herbert@gondor.apana.org.au>
15035 L:      netdev@vger.kernel.org
15036 S:      Maintained
15037 F:      include/linux/rhashtable-types.h
15038 F:      include/linux/rhashtable.h
15039 F:      lib/rhashtable.c
15040 F:      lib/test_rhashtable.c
15041
15042 RICOH R5C592 MEMORYSTICK DRIVER
15043 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15044 S:      Maintained
15045 F:      drivers/memstick/host/r592.*
15046
15047 RICOH SMARTMEDIA/XD DRIVER
15048 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15049 S:      Maintained
15050 F:      drivers/mtd/nand/raw/r852.c
15051 F:      drivers/mtd/nand/raw/r852.h
15052
15053 RISC-V ARCHITECTURE
15054 M:      Paul Walmsley <paul.walmsley@sifive.com>
15055 M:      Palmer Dabbelt <palmer@dabbelt.com>
15056 M:      Albert Ou <aou@eecs.berkeley.edu>
15057 L:      linux-riscv@lists.infradead.org
15058 S:      Supported
15059 P:      Documentation/riscv/patch-acceptance.rst
15060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
15061 F:      arch/riscv/
15062 N:      riscv
15063 K:      riscv
15064
15065 RNBD BLOCK DRIVERS
15066 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
15067 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15068 L:      linux-block@vger.kernel.org
15069 S:      Maintained
15070 F:      drivers/block/rnbd/
15071
15072 ROCCAT DRIVERS
15073 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
15074 S:      Maintained
15075 W:      http://sourceforge.net/projects/roccat/
15076 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
15077 F:      drivers/hid/hid-roccat*
15078 F:      include/linux/hid-roccat*
15079
15080 ROCKCHIP ISP V1 DRIVER
15081 M:      Helen Koike <helen.koike@collabora.com>
15082 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
15083 L:      linux-media@vger.kernel.org
15084 L:      linux-rockchip@lists.infradead.org
15085 S:      Maintained
15086 F:      Documentation/admin-guide/media/rkisp1.rst
15087 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
15088 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
15089 F:      drivers/media/platform/rockchip/rkisp1
15090 F:      include/uapi/linux/rkisp1-config.h
15091
15092 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
15093 M:      Jacob Chen <jacob-chen@iotwrt.com>
15094 M:      Ezequiel Garcia <ezequiel@collabora.com>
15095 L:      linux-media@vger.kernel.org
15096 L:      linux-rockchip@lists.infradead.org
15097 S:      Maintained
15098 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
15099 F:      drivers/media/platform/rockchip/rga/
15100
15101 ROCKCHIP VIDEO DECODER DRIVER
15102 M:      Ezequiel Garcia <ezequiel@collabora.com>
15103 L:      linux-media@vger.kernel.org
15104 L:      linux-rockchip@lists.infradead.org
15105 S:      Maintained
15106 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
15107 F:      drivers/staging/media/rkvdec/
15108
15109 ROCKER DRIVER
15110 M:      Jiri Pirko <jiri@resnulli.us>
15111 L:      netdev@vger.kernel.org
15112 S:      Supported
15113 F:      drivers/net/ethernet/rocker/
15114
15115 ROCKETPORT DRIVER
15116 S:      Maintained
15117 W:      http://www.comtrol.com
15118 F:      Documentation/driver-api/serial/rocket.rst
15119 F:      drivers/tty/rocket*
15120
15121 ROCKETPORT EXPRESS/INFINITY DRIVER
15122 M:      Kevin Cernekee <cernekee@gmail.com>
15123 L:      linux-serial@vger.kernel.org
15124 S:      Odd Fixes
15125 F:      drivers/tty/serial/rp2.*
15126
15127 ROHM BD99954 CHARGER IC
15128 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15129 L:      linux-power@fi.rohmeurope.com
15130 S:      Supported
15131 F:      drivers/power/supply/bd99954-charger.c
15132 F:      drivers/power/supply/bd99954-charger.h
15133
15134 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
15135 M:      Tomasz Duszynski <tduszyns@gmail.com>
15136 S:      Maintained
15137 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
15138 F:      drivers/iio/light/bh1750.c
15139
15140 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
15141 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15142 L:      linux-kernel@vger.kernel.org
15143 L:      linux-renesas-soc@vger.kernel.org
15144 S:      Supported
15145 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
15146 F:      drivers/gpio/gpio-bd9571mwv.c
15147 F:      drivers/mfd/bd9571mwv.c
15148 F:      drivers/regulator/bd9571mwv-regulator.c
15149 F:      include/linux/mfd/bd9571mwv.h
15150
15151 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
15152 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15153 L:      linux-power@fi.rohmeurope.com
15154 S:      Supported
15155 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
15156 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
15157 F:      drivers/clk/clk-bd718x7.c
15158 F:      drivers/gpio/gpio-bd70528.c
15159 F:      drivers/gpio/gpio-bd71828.c
15160 F:      drivers/mfd/rohm-bd70528.c
15161 F:      drivers/mfd/rohm-bd71828.c
15162 F:      drivers/mfd/rohm-bd718x7.c
15163 F:      drivers/power/supply/bd70528-charger.c
15164 F:      drivers/regulator/bd70528-regulator.c
15165 F:      drivers/regulator/bd71828-regulator.c
15166 F:      drivers/regulator/bd718x7-regulator.c
15167 F:      drivers/regulator/rohm-regulator.c
15168 F:      drivers/rtc/rtc-bd70528.c
15169 F:      drivers/watchdog/bd70528_wdt.c
15170 F:      include/linux/mfd/rohm-bd70528.h
15171 F:      include/linux/mfd/rohm-bd71828.h
15172 F:      include/linux/mfd/rohm-bd718x7.h
15173 F:      include/linux/mfd/rohm-generic.h
15174 F:      include/linux/mfd/rohm-shared.h
15175
15176 ROSE NETWORK LAYER
15177 M:      Ralf Baechle <ralf@linux-mips.org>
15178 L:      linux-hams@vger.kernel.org
15179 S:      Maintained
15180 W:      http://www.linux-ax25.org/
15181 F:      include/net/rose.h
15182 F:      include/uapi/linux/rose.h
15183 F:      net/rose/
15184
15185 ROTATION DRIVER FOR ALLWINNER A83T
15186 M:      Jernej Skrabec <jernej.skrabec@siol.net>
15187 L:      linux-media@vger.kernel.org
15188 S:      Maintained
15189 T:      git git://linuxtv.org/media_tree.git
15190 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
15191 F:      drivers/media/platform/sunxi/sun8i-rotate/
15192
15193 RTL2830 MEDIA DRIVER
15194 M:      Antti Palosaari <crope@iki.fi>
15195 L:      linux-media@vger.kernel.org
15196 S:      Maintained
15197 W:      https://linuxtv.org
15198 W:      http://palosaari.fi/linux/
15199 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15200 T:      git git://linuxtv.org/anttip/media_tree.git
15201 F:      drivers/media/dvb-frontends/rtl2830*
15202
15203 RTL2832 MEDIA DRIVER
15204 M:      Antti Palosaari <crope@iki.fi>
15205 L:      linux-media@vger.kernel.org
15206 S:      Maintained
15207 W:      https://linuxtv.org
15208 W:      http://palosaari.fi/linux/
15209 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15210 T:      git git://linuxtv.org/anttip/media_tree.git
15211 F:      drivers/media/dvb-frontends/rtl2832*
15212
15213 RTL2832_SDR MEDIA DRIVER
15214 M:      Antti Palosaari <crope@iki.fi>
15215 L:      linux-media@vger.kernel.org
15216 S:      Maintained
15217 W:      https://linuxtv.org
15218 W:      http://palosaari.fi/linux/
15219 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15220 T:      git git://linuxtv.org/anttip/media_tree.git
15221 F:      drivers/media/dvb-frontends/rtl2832_sdr*
15222
15223 RTL8180 WIRELESS DRIVER
15224 L:      linux-wireless@vger.kernel.org
15225 S:      Orphan
15226 W:      https://wireless.wiki.kernel.org/
15227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15228 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
15229
15230 RTL8187 WIRELESS DRIVER
15231 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
15232 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
15233 M:      Larry Finger <Larry.Finger@lwfinger.net>
15234 L:      linux-wireless@vger.kernel.org
15235 S:      Maintained
15236 W:      https://wireless.wiki.kernel.org/
15237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15238 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
15239
15240 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
15241 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
15242 L:      linux-wireless@vger.kernel.org
15243 S:      Maintained
15244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
15245 F:      drivers/net/wireless/realtek/rtl8xxxu/
15246
15247 RTRS TRANSPORT DRIVERS
15248 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
15249 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15250 L:      linux-rdma@vger.kernel.org
15251 S:      Maintained
15252 F:      drivers/infiniband/ulp/rtrs/
15253
15254 RXRPC SOCKETS (AF_RXRPC)
15255 M:      David Howells <dhowells@redhat.com>
15256 L:      linux-afs@lists.infradead.org
15257 S:      Supported
15258 W:      https://www.infradead.org/~dhowells/kafs/
15259 F:      Documentation/networking/rxrpc.rst
15260 F:      include/keys/rxrpc-type.h
15261 F:      include/net/af_rxrpc.h
15262 F:      include/trace/events/rxrpc.h
15263 F:      include/uapi/linux/rxrpc.h
15264 F:      net/rxrpc/
15265
15266 S3 SAVAGE FRAMEBUFFER DRIVER
15267 M:      Antonino Daplas <adaplas@gmail.com>
15268 L:      linux-fbdev@vger.kernel.org
15269 S:      Maintained
15270 F:      drivers/video/fbdev/savage/
15271
15272 S390
15273 M:      Heiko Carstens <hca@linux.ibm.com>
15274 M:      Vasily Gorbik <gor@linux.ibm.com>
15275 M:      Christian Borntraeger <borntraeger@de.ibm.com>
15276 L:      linux-s390@vger.kernel.org
15277 S:      Supported
15278 W:      http://www.ibm.com/developerworks/linux/linux390/
15279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
15280 F:      Documentation/driver-api/s390-drivers.rst
15281 F:      Documentation/s390/
15282 F:      arch/s390/
15283 F:      drivers/s390/
15284
15285 S390 COMMON I/O LAYER
15286 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
15287 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
15288 L:      linux-s390@vger.kernel.org
15289 S:      Supported
15290 W:      http://www.ibm.com/developerworks/linux/linux390/
15291 F:      drivers/s390/cio/
15292
15293 S390 DASD DRIVER
15294 M:      Stefan Haberland <sth@linux.ibm.com>
15295 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
15296 L:      linux-s390@vger.kernel.org
15297 S:      Supported
15298 W:      http://www.ibm.com/developerworks/linux/linux390/
15299 F:      block/partitions/ibm.c
15300 F:      drivers/s390/block/dasd*
15301 F:      include/linux/dasd_mod.h
15302
15303 S390 IOMMU (PCI)
15304 M:      Matthew Rosato <mjrosato@linux.ibm.com>
15305 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
15306 L:      linux-s390@vger.kernel.org
15307 S:      Supported
15308 W:      http://www.ibm.com/developerworks/linux/linux390/
15309 F:      drivers/iommu/s390-iommu.c
15310
15311 S390 IUCV NETWORK LAYER
15312 M:      Julian Wiedmann <jwi@linux.ibm.com>
15313 M:      Karsten Graul <kgraul@linux.ibm.com>
15314 L:      linux-s390@vger.kernel.org
15315 S:      Supported
15316 W:      http://www.ibm.com/developerworks/linux/linux390/
15317 F:      drivers/s390/net/*iucv*
15318 F:      include/net/iucv/
15319 F:      net/iucv/
15320
15321 S390 NETWORK DRIVERS
15322 M:      Julian Wiedmann <jwi@linux.ibm.com>
15323 M:      Karsten Graul <kgraul@linux.ibm.com>
15324 L:      linux-s390@vger.kernel.org
15325 S:      Supported
15326 W:      http://www.ibm.com/developerworks/linux/linux390/
15327 F:      drivers/s390/net/
15328
15329 S390 PCI SUBSYSTEM
15330 M:      Niklas Schnelle <schnelle@linux.ibm.com>
15331 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
15332 L:      linux-s390@vger.kernel.org
15333 S:      Supported
15334 W:      http://www.ibm.com/developerworks/linux/linux390/
15335 F:      arch/s390/pci/
15336 F:      drivers/pci/hotplug/s390_pci_hpc.c
15337 F:      Documentation/s390/pci.rst
15338
15339 S390 VFIO AP DRIVER
15340 M:      Tony Krowiak <akrowiak@linux.ibm.com>
15341 M:      Pierre Morel <pmorel@linux.ibm.com>
15342 M:      Halil Pasic <pasic@linux.ibm.com>
15343 L:      linux-s390@vger.kernel.org
15344 S:      Supported
15345 W:      http://www.ibm.com/developerworks/linux/linux390/
15346 F:      Documentation/s390/vfio-ap.rst
15347 F:      drivers/s390/crypto/vfio_ap_drv.c
15348 F:      drivers/s390/crypto/vfio_ap_ops.c
15349 F:      drivers/s390/crypto/vfio_ap_private.h
15350
15351 S390 VFIO-CCW DRIVER
15352 M:      Cornelia Huck <cohuck@redhat.com>
15353 M:      Eric Farman <farman@linux.ibm.com>
15354 R:      Halil Pasic <pasic@linux.ibm.com>
15355 L:      linux-s390@vger.kernel.org
15356 L:      kvm@vger.kernel.org
15357 S:      Supported
15358 F:      Documentation/s390/vfio-ccw.rst
15359 F:      drivers/s390/cio/vfio_ccw*
15360 F:      include/uapi/linux/vfio_ccw.h
15361
15362 S390 VFIO-PCI DRIVER
15363 M:      Matthew Rosato <mjrosato@linux.ibm.com>
15364 L:      linux-s390@vger.kernel.org
15365 L:      kvm@vger.kernel.org
15366 S:      Supported
15367 F:      drivers/vfio/pci/vfio_pci_zdev.c
15368 F:      include/uapi/linux/vfio_zdev.h
15369
15370 S390 ZCRYPT DRIVER
15371 M:      Harald Freudenberger <freude@linux.ibm.com>
15372 L:      linux-s390@vger.kernel.org
15373 S:      Supported
15374 W:      http://www.ibm.com/developerworks/linux/linux390/
15375 F:      drivers/s390/crypto/
15376
15377 S390 ZFCP DRIVER
15378 M:      Steffen Maier <maier@linux.ibm.com>
15379 M:      Benjamin Block <bblock@linux.ibm.com>
15380 L:      linux-s390@vger.kernel.org
15381 S:      Supported
15382 W:      http://www.ibm.com/developerworks/linux/linux390/
15383 F:      drivers/s390/scsi/zfcp_*
15384
15385 S3C24XX SD/MMC Driver
15386 M:      Ben Dooks <ben-linux@fluff.org>
15387 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15388 S:      Supported
15389 F:      drivers/mmc/host/s3cmci.*
15390
15391 SAA6588 RDS RECEIVER DRIVER
15392 M:      Hans Verkuil <hverkuil@xs4all.nl>
15393 L:      linux-media@vger.kernel.org
15394 S:      Odd Fixes
15395 W:      https://linuxtv.org
15396 T:      git git://linuxtv.org/media_tree.git
15397 F:      drivers/media/i2c/saa6588*
15398
15399 SAA7134 VIDEO4LINUX DRIVER
15400 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15401 L:      linux-media@vger.kernel.org
15402 S:      Odd fixes
15403 W:      https://linuxtv.org
15404 T:      git git://linuxtv.org/media_tree.git
15405 F:      Documentation/driver-api/media/drivers/saa7134*
15406 F:      drivers/media/pci/saa7134/
15407
15408 SAA7146 VIDEO4LINUX-2 DRIVER
15409 M:      Hans Verkuil <hverkuil@xs4all.nl>
15410 L:      linux-media@vger.kernel.org
15411 S:      Maintained
15412 T:      git git://linuxtv.org/media_tree.git
15413 F:      drivers/media/common/saa7146/
15414 F:      drivers/media/pci/saa7146/
15415 F:      include/media/drv-intf/saa7146*
15416
15417 SAFESETID SECURITY MODULE
15418 M:      Micah Morton <mortonm@chromium.org>
15419 S:      Supported
15420 F:      Documentation/admin-guide/LSM/SafeSetID.rst
15421 F:      security/safesetid/
15422
15423 SAMSUNG AUDIO (ASoC) DRIVERS
15424 M:      Krzysztof Kozlowski <krzk@kernel.org>
15425 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15426 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15427 S:      Supported
15428 F:      Documentation/devicetree/bindings/sound/samsung*
15429 F:      sound/soc/samsung/
15430
15431 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
15432 M:      Krzysztof Kozlowski <krzk@kernel.org>
15433 L:      linux-crypto@vger.kernel.org
15434 L:      linux-samsung-soc@vger.kernel.org
15435 S:      Maintained
15436 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
15437 F:      drivers/crypto/exynos-rng.c
15438
15439 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
15440 M:      Łukasz Stelmach <l.stelmach@samsung.com>
15441 L:      linux-samsung-soc@vger.kernel.org
15442 S:      Maintained
15443 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
15444 F:      drivers/char/hw_random/exynos-trng.c
15445
15446 SAMSUNG FRAMEBUFFER DRIVER
15447 M:      Jingoo Han <jingoohan1@gmail.com>
15448 L:      linux-fbdev@vger.kernel.org
15449 S:      Maintained
15450 F:      drivers/video/fbdev/s3c-fb.c
15451
15452 SAMSUNG LAPTOP DRIVER
15453 M:      Corentin Chary <corentin.chary@gmail.com>
15454 L:      platform-driver-x86@vger.kernel.org
15455 S:      Maintained
15456 F:      drivers/platform/x86/samsung-laptop.c
15457
15458 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
15459 M:      Krzysztof Kozlowski <krzk@kernel.org>
15460 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15461 L:      linux-kernel@vger.kernel.org
15462 L:      linux-samsung-soc@vger.kernel.org
15463 S:      Supported
15464 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
15465 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
15466 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
15467 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
15468 F:      drivers/clk/clk-s2mps11.c
15469 F:      drivers/mfd/sec*.c
15470 F:      drivers/regulator/s2m*.c
15471 F:      drivers/regulator/s5m*.c
15472 F:      drivers/rtc/rtc-s5m.c
15473 F:      include/linux/mfd/samsung/
15474
15475 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
15476 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
15477 L:      linux-media@vger.kernel.org
15478 L:      linux-samsung-soc@vger.kernel.org
15479 S:      Maintained
15480 F:      drivers/media/platform/s3c-camif/
15481 F:      include/media/drv-intf/s3c_camif.h
15482
15483 SAMSUNG S3FWRN5 NFC DRIVER
15484 M:      Krzysztof Kozlowski <krzk@kernel.org>
15485 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
15486 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
15487 S:      Maintained
15488 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
15489 F:      drivers/nfc/s3fwrn5
15490
15491 SAMSUNG S5C73M3 CAMERA DRIVER
15492 M:      Andrzej Hajda <a.hajda@samsung.com>
15493 L:      linux-media@vger.kernel.org
15494 S:      Supported
15495 F:      drivers/media/i2c/s5c73m3/*
15496
15497 SAMSUNG S5K5BAF CAMERA DRIVER
15498 M:      Andrzej Hajda <a.hajda@samsung.com>
15499 L:      linux-media@vger.kernel.org
15500 S:      Supported
15501 F:      drivers/media/i2c/s5k5baf.c
15502
15503 SAMSUNG S5P Security SubSystem (SSS) DRIVER
15504 M:      Krzysztof Kozlowski <krzk@kernel.org>
15505 M:      Vladimir Zapolskiy <vz@mleia.com>
15506 M:      Kamil Konieczny <k.konieczny@samsung.com>
15507 L:      linux-crypto@vger.kernel.org
15508 L:      linux-samsung-soc@vger.kernel.org
15509 S:      Maintained
15510 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
15511 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
15512 F:      drivers/crypto/s5p-sss.c
15513
15514 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
15515 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15516 L:      linux-media@vger.kernel.org
15517 S:      Supported
15518 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
15519 F:      drivers/media/platform/exynos4-is/
15520
15521 SAMSUNG SOC CLOCK DRIVERS
15522 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15523 M:      Tomasz Figa <tomasz.figa@gmail.com>
15524 M:      Chanwoo Choi <cw00.choi@samsung.com>
15525 L:      linux-samsung-soc@vger.kernel.org
15526 S:      Supported
15527 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
15528 F:      Documentation/devicetree/bindings/clock/exynos*.txt
15529 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
15530 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
15531 F:      drivers/clk/samsung/
15532 F:      include/dt-bindings/clock/exynos*.h
15533 F:      include/linux/clk/samsung.h
15534 F:      include/linux/platform_data/clk-s3c2410.h
15535
15536 SAMSUNG SPI DRIVERS
15537 M:      Krzysztof Kozlowski <krzk@kernel.org>
15538 M:      Andi Shyti <andi@etezian.org>
15539 L:      linux-spi@vger.kernel.org
15540 L:      linux-samsung-soc@vger.kernel.org
15541 S:      Maintained
15542 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
15543 F:      drivers/spi/spi-s3c*
15544 F:      include/linux/platform_data/spi-s3c64xx.h
15545 F:      include/linux/spi/s3c24xx-fiq.h
15546
15547 SAMSUNG SXGBE DRIVERS
15548 M:      Byungho An <bh74.an@samsung.com>
15549 L:      netdev@vger.kernel.org
15550 S:      Supported
15551 F:      drivers/net/ethernet/samsung/sxgbe/
15552
15553 SAMSUNG THERMAL DRIVER
15554 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15555 L:      linux-pm@vger.kernel.org
15556 L:      linux-samsung-soc@vger.kernel.org
15557 S:      Supported
15558 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
15559 F:      drivers/thermal/samsung/
15560
15561 SAMSUNG USB2 PHY DRIVER
15562 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15563 L:      linux-kernel@vger.kernel.org
15564 S:      Supported
15565 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
15566 F:      Documentation/driver-api/phy/samsung-usb2.rst
15567 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
15568 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
15569 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
15570 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
15571 F:      drivers/phy/samsung/phy-samsung-usb2.c
15572 F:      drivers/phy/samsung/phy-samsung-usb2.h
15573
15574 SC1200 WDT DRIVER
15575 M:      Zwane Mwaikambo <zwanem@gmail.com>
15576 S:      Maintained
15577 F:      drivers/watchdog/sc1200wdt.c
15578
15579 SCHEDULER
15580 M:      Ingo Molnar <mingo@redhat.com>
15581 M:      Peter Zijlstra <peterz@infradead.org>
15582 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
15583 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
15584 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
15585 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
15586 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
15587 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
15588 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
15589 L:      linux-kernel@vger.kernel.org
15590 S:      Maintained
15591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
15592 F:      include/linux/preempt.h
15593 F:      include/linux/sched.h
15594 F:      include/linux/wait.h
15595 F:      include/uapi/linux/sched.h
15596 F:      kernel/sched/
15597
15598 SCR24X CHIP CARD INTERFACE DRIVER
15599 M:      Lubomir Rintel <lkundrak@v3.sk>
15600 S:      Supported
15601 F:      drivers/char/pcmcia/scr24x_cs.c
15602
15603 SCSI CDROM DRIVER
15604 M:      Jens Axboe <axboe@kernel.dk>
15605 L:      linux-scsi@vger.kernel.org
15606 S:      Maintained
15607 W:      http://www.kernel.dk
15608 F:      drivers/scsi/sr*
15609
15610 SCSI RDMA PROTOCOL (SRP) INITIATOR
15611 M:      Bart Van Assche <bvanassche@acm.org>
15612 L:      linux-rdma@vger.kernel.org
15613 S:      Supported
15614 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15615 F:      drivers/infiniband/ulp/srp/
15616 F:      include/scsi/srp.h
15617
15618 SCSI RDMA PROTOCOL (SRP) TARGET
15619 M:      Bart Van Assche <bvanassche@acm.org>
15620 L:      linux-rdma@vger.kernel.org
15621 L:      target-devel@vger.kernel.org
15622 S:      Supported
15623 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15624 F:      drivers/infiniband/ulp/srpt/
15625
15626 SCSI SG DRIVER
15627 M:      Doug Gilbert <dgilbert@interlog.com>
15628 L:      linux-scsi@vger.kernel.org
15629 S:      Maintained
15630 W:      http://sg.danny.cz/sg
15631 F:      Documentation/scsi/scsi-generic.rst
15632 F:      drivers/scsi/sg.c
15633 F:      include/scsi/sg.h
15634
15635 SCSI SUBSYSTEM
15636 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
15637 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15638 L:      linux-scsi@vger.kernel.org
15639 S:      Maintained
15640 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
15641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
15642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15643 F:      Documentation/devicetree/bindings/scsi/
15644 F:      drivers/scsi/
15645 F:      include/scsi/
15646
15647 SCSI TAPE DRIVER
15648 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
15649 L:      linux-scsi@vger.kernel.org
15650 S:      Maintained
15651 F:      Documentation/scsi/st.rst
15652 F:      drivers/scsi/st.*
15653 F:      drivers/scsi/st_*.h
15654
15655 SCSI TARGET SUBSYSTEM
15656 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15657 L:      linux-scsi@vger.kernel.org
15658 L:      target-devel@vger.kernel.org
15659 S:      Supported
15660 W:      http://www.linux-iscsi.org
15661 Q:      https://patchwork.kernel.org/project/target-devel/list/
15662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15663 F:      Documentation/target/
15664 F:      drivers/target/
15665 F:      include/target/
15666
15667 SCTP PROTOCOL
15668 M:      Vlad Yasevich <vyasevich@gmail.com>
15669 M:      Neil Horman <nhorman@tuxdriver.com>
15670 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
15671 L:      linux-sctp@vger.kernel.org
15672 S:      Maintained
15673 W:      http://lksctp.sourceforge.net
15674 F:      Documentation/networking/sctp.rst
15675 F:      include/linux/sctp.h
15676 F:      include/net/sctp/
15677 F:      include/uapi/linux/sctp.h
15678 F:      net/sctp/
15679
15680 SCx200 CPU SUPPORT
15681 M:      Jim Cromie <jim.cromie@gmail.com>
15682 S:      Odd Fixes
15683 F:      Documentation/i2c/busses/scx200_acb.rst
15684 F:      arch/x86/platform/scx200/
15685 F:      drivers/i2c/busses/scx200*
15686 F:      drivers/mtd/maps/scx200_docflash.c
15687 F:      drivers/watchdog/scx200_wdt.c
15688 F:      include/linux/scx200.h
15689
15690 SCx200 GPIO DRIVER
15691 M:      Jim Cromie <jim.cromie@gmail.com>
15692 S:      Maintained
15693 F:      drivers/char/scx200_gpio.c
15694 F:      include/linux/scx200_gpio.h
15695
15696 SCx200 HRT CLOCKSOURCE DRIVER
15697 M:      Jim Cromie <jim.cromie@gmail.com>
15698 S:      Maintained
15699 F:      drivers/clocksource/scx200_hrt.c
15700
15701 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15702 M:      Sascha Sommer <saschasommer@freenet.de>
15703 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
15704 S:      Maintained
15705 F:      drivers/mmc/host/sdricoh_cs.c
15706
15707 SECO BOARDS CEC DRIVER
15708 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
15709 S:      Maintained
15710 F:      drivers/media/cec/platform/seco/seco-cec.c
15711 F:      drivers/media/cec/platform/seco/seco-cec.h
15712
15713 SECURE COMPUTING
15714 M:      Kees Cook <keescook@chromium.org>
15715 R:      Andy Lutomirski <luto@amacapital.net>
15716 R:      Will Drewry <wad@chromium.org>
15717 S:      Supported
15718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15719 F:      Documentation/userspace-api/seccomp_filter.rst
15720 F:      include/linux/seccomp.h
15721 F:      include/uapi/linux/seccomp.h
15722 F:      kernel/seccomp.c
15723 F:      tools/testing/selftests/kselftest_harness.h
15724 F:      tools/testing/selftests/seccomp/*
15725 K:      \bsecure_computing
15726 K:      \bTIF_SECCOMP\b
15727
15728 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15729 M:      Al Cooper <alcooperx@gmail.com>
15730 L:      linux-mmc@vger.kernel.org
15731 L:      bcm-kernel-feedback-list@broadcom.com
15732 S:      Maintained
15733 F:      drivers/mmc/host/sdhci-brcmstb*
15734
15735 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15736 M:      Adrian Hunter <adrian.hunter@intel.com>
15737 L:      linux-mmc@vger.kernel.org
15738 S:      Maintained
15739 F:      drivers/mmc/host/sdhci*
15740 F:      include/linux/mmc/sdhci*
15741
15742 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15743 M:      Eugen Hristev <eugen.hristev@microchip.com>
15744 L:      linux-mmc@vger.kernel.org
15745 S:      Supported
15746 F:      drivers/mmc/host/sdhci-of-at91.c
15747
15748 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15749 M:      Ben Dooks <ben-linux@fluff.org>
15750 M:      Jaehoon Chung <jh80.chung@samsung.com>
15751 L:      linux-mmc@vger.kernel.org
15752 S:      Maintained
15753 F:      drivers/mmc/host/sdhci-s3c*
15754
15755 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15756 M:      Viresh Kumar <vireshk@kernel.org>
15757 L:      linux-mmc@vger.kernel.org
15758 S:      Maintained
15759 F:      drivers/mmc/host/sdhci-spear.c
15760
15761 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15762 M:      Kishon Vijay Abraham I <kishon@ti.com>
15763 L:      linux-mmc@vger.kernel.org
15764 S:      Maintained
15765 F:      drivers/mmc/host/sdhci-omap.c
15766
15767 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15768 M:      Jonathan Derrick <jonathan.derrick@intel.com>
15769 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
15770 L:      linux-block@vger.kernel.org
15771 S:      Supported
15772 F:      block/opal_proto.h
15773 F:      block/sed*
15774 F:      include/linux/sed*
15775 F:      include/uapi/linux/sed*
15776
15777 SECURITY CONTACT
15778 M:      Security Officers <security@kernel.org>
15779 S:      Supported
15780 F:      Documentation/admin-guide/security-bugs.rst
15781
15782 SECURITY SUBSYSTEM
15783 M:      James Morris <jmorris@namei.org>
15784 M:      "Serge E. Hallyn" <serge@hallyn.com>
15785 L:      linux-security-module@vger.kernel.org (suggested Cc:)
15786 S:      Supported
15787 W:      http://kernsec.org/
15788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15789 F:      security/
15790 X:      security/selinux/
15791
15792 SELINUX SECURITY MODULE
15793 M:      Paul Moore <paul@paul-moore.com>
15794 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
15795 M:      Eric Paris <eparis@parisplace.org>
15796 L:      selinux@vger.kernel.org
15797 S:      Supported
15798 W:      https://selinuxproject.org
15799 W:      https://github.com/SELinuxProject
15800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
15801 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
15802 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
15803 F:      Documentation/admin-guide/LSM/SELinux.rst
15804 F:      include/trace/events/avc.h
15805 F:      include/uapi/linux/selinux_netlink.h
15806 F:      scripts/selinux/
15807 F:      security/selinux/
15808
15809 SENSABLE PHANTOM
15810 M:      Jiri Slaby <jirislaby@kernel.org>
15811 S:      Maintained
15812 F:      drivers/misc/phantom.c
15813 F:      include/uapi/linux/phantom.h
15814
15815 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
15816 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
15817 S:      Maintained
15818 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
15819 F:      drivers/iio/chemical/scd30.h
15820 F:      drivers/iio/chemical/scd30_core.c
15821 F:      drivers/iio/chemical/scd30_i2c.c
15822 F:      drivers/iio/chemical/scd30_serial.c
15823
15824 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
15825 M:      Tomasz Duszynski <tduszyns@gmail.com>
15826 S:      Maintained
15827 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
15828 F:      drivers/iio/chemical/sps30.c
15829
15830 SERIAL DEVICE BUS
15831 M:      Rob Herring <robh@kernel.org>
15832 L:      linux-serial@vger.kernel.org
15833 S:      Maintained
15834 F:      Documentation/devicetree/bindings/serial/serial.yaml
15835 F:      drivers/tty/serdev/
15836 F:      include/linux/serdev.h
15837
15838 SERIAL DRIVERS
15839 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15840 L:      linux-serial@vger.kernel.org
15841 S:      Maintained
15842 F:      Documentation/devicetree/bindings/serial/
15843 F:      drivers/tty/serial/
15844
15845 SERIAL IR RECEIVER
15846 M:      Sean Young <sean@mess.org>
15847 L:      linux-media@vger.kernel.org
15848 S:      Maintained
15849 F:      drivers/media/rc/serial_ir.c
15850
15851 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15852 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15853 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15854 S:      Maintained
15855 F:      Documentation/devicetree/bindings/slimbus/
15856 F:      drivers/slimbus/
15857 F:      include/linux/slimbus.h
15858
15859 SFC NETWORK DRIVER
15860 M:      Edward Cree <ecree.xilinx@gmail.com>
15861 M:      Martin Habets <habetsm.xilinx@gmail.com>
15862 L:      netdev@vger.kernel.org
15863 S:      Supported
15864 F:      drivers/net/ethernet/sfc/
15865
15866 SFF/SFP/SFP+ MODULE SUPPORT
15867 M:      Russell King <linux@armlinux.org.uk>
15868 L:      netdev@vger.kernel.org
15869 S:      Maintained
15870 F:      drivers/net/phy/phylink.c
15871 F:      drivers/net/phy/sfp*
15872 F:      include/linux/mdio/mdio-i2c.h
15873 F:      include/linux/phylink.h
15874 F:      include/linux/sfp.h
15875 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)
15876
15877 SGI GRU DRIVER
15878 M:      Dimitri Sivanich <sivanich@sgi.com>
15879 S:      Maintained
15880 F:      drivers/misc/sgi-gru/
15881
15882 SGI XP/XPC/XPNET DRIVER
15883 M:      Cliff Whickman <cpw@sgi.com>
15884 M:      Robin Holt <robinmholt@gmail.com>
15885 S:      Maintained
15886 F:      drivers/misc/sgi-xp/
15887
15888 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
15889 M:      Karsten Graul <kgraul@linux.ibm.com>
15890 L:      linux-s390@vger.kernel.org
15891 S:      Supported
15892 W:      http://www.ibm.com/developerworks/linux/linux390/
15893 F:      net/smc/
15894
15895 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
15896 M:      Linus Walleij <linus.walleij@linaro.org>
15897 L:      linux-iio@vger.kernel.org
15898 S:      Maintained
15899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
15900 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
15901 F:      drivers/iio/light/gp2ap002.c
15902
15903 SHARP RJ54N1CB0C SENSOR DRIVER
15904 M:      Jacopo Mondi <jacopo@jmondi.org>
15905 L:      linux-media@vger.kernel.org
15906 S:      Odd fixes
15907 T:      git git://linuxtv.org/media_tree.git
15908 F:      drivers/media/i2c/rj54n1cb0c.c
15909 F:      include/media/i2c/rj54n1cb0c.h
15910
15911 SH_VOU V4L2 OUTPUT DRIVER
15912 L:      linux-media@vger.kernel.org
15913 S:      Orphan
15914 F:      drivers/media/platform/sh_vou.c
15915 F:      include/media/drv-intf/sh_vou.h
15916
15917 SI2157 MEDIA DRIVER
15918 M:      Antti Palosaari <crope@iki.fi>
15919 L:      linux-media@vger.kernel.org
15920 S:      Maintained
15921 W:      https://linuxtv.org
15922 W:      http://palosaari.fi/linux/
15923 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15924 T:      git git://linuxtv.org/anttip/media_tree.git
15925 F:      drivers/media/tuners/si2157*
15926
15927 SI2165 MEDIA DRIVER
15928 M:      Matthias Schwarzott <zzam@gentoo.org>
15929 L:      linux-media@vger.kernel.org
15930 S:      Maintained
15931 W:      https://linuxtv.org
15932 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15933 F:      drivers/media/dvb-frontends/si2165*
15934
15935 SI2168 MEDIA DRIVER
15936 M:      Antti Palosaari <crope@iki.fi>
15937 L:      linux-media@vger.kernel.org
15938 S:      Maintained
15939 W:      https://linuxtv.org
15940 W:      http://palosaari.fi/linux/
15941 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15942 T:      git git://linuxtv.org/anttip/media_tree.git
15943 F:      drivers/media/dvb-frontends/si2168*
15944
15945 SI470X FM RADIO RECEIVER I2C DRIVER
15946 M:      Hans Verkuil <hverkuil@xs4all.nl>
15947 L:      linux-media@vger.kernel.org
15948 S:      Odd Fixes
15949 W:      https://linuxtv.org
15950 T:      git git://linuxtv.org/media_tree.git
15951 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
15952
15953 SI470X FM RADIO RECEIVER USB DRIVER
15954 M:      Hans Verkuil <hverkuil@xs4all.nl>
15955 L:      linux-media@vger.kernel.org
15956 S:      Maintained
15957 W:      https://linuxtv.org
15958 T:      git git://linuxtv.org/media_tree.git
15959 F:      drivers/media/radio/si470x/radio-si470x-common.c
15960 F:      drivers/media/radio/si470x/radio-si470x-usb.c
15961 F:      drivers/media/radio/si470x/radio-si470x.h
15962
15963 SI4713 FM RADIO TRANSMITTER I2C DRIVER
15964 M:      Eduardo Valentin <edubezval@gmail.com>
15965 L:      linux-media@vger.kernel.org
15966 S:      Odd Fixes
15967 W:      https://linuxtv.org
15968 T:      git git://linuxtv.org/media_tree.git
15969 F:      drivers/media/radio/si4713/si4713.?
15970
15971 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
15972 M:      Eduardo Valentin <edubezval@gmail.com>
15973 L:      linux-media@vger.kernel.org
15974 S:      Odd Fixes
15975 W:      https://linuxtv.org
15976 T:      git git://linuxtv.org/media_tree.git
15977 F:      drivers/media/radio/si4713/radio-platform-si4713.c
15978
15979 SI4713 FM RADIO TRANSMITTER USB DRIVER
15980 M:      Hans Verkuil <hverkuil@xs4all.nl>
15981 L:      linux-media@vger.kernel.org
15982 S:      Maintained
15983 W:      https://linuxtv.org
15984 T:      git git://linuxtv.org/media_tree.git
15985 F:      drivers/media/radio/si4713/radio-usb-si4713.c
15986
15987 SIANO DVB DRIVER
15988 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15989 L:      linux-media@vger.kernel.org
15990 S:      Odd fixes
15991 W:      https://linuxtv.org
15992 T:      git git://linuxtv.org/media_tree.git
15993 F:      drivers/media/common/siano/
15994 F:      drivers/media/mmc/siano/
15995 F:      drivers/media/usb/siano/
15996 F:      drivers/media/usb/siano/
15997
15998 SIFIVE DRIVERS
15999 M:      Palmer Dabbelt <palmer@dabbelt.com>
16000 M:      Paul Walmsley <paul.walmsley@sifive.com>
16001 L:      linux-riscv@lists.infradead.org
16002 S:      Supported
16003 T:      git git://github.com/sifive/riscv-linux.git
16004 N:      sifive
16005 K:      [^@]sifive
16006
16007 SIFIVE FU540 SYSTEM-ON-CHIP
16008 M:      Paul Walmsley <paul.walmsley@sifive.com>
16009 M:      Palmer Dabbelt <palmer@dabbelt.com>
16010 L:      linux-riscv@lists.infradead.org
16011 S:      Supported
16012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
16013 N:      fu540
16014 K:      fu540
16015
16016 SIFIVE PDMA DRIVER
16017 M:      Green Wan <green.wan@sifive.com>
16018 S:      Maintained
16019 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
16020 F:      drivers/dma/sf-pdma/
16021
16022 SILEAD TOUCHSCREEN DRIVER
16023 M:      Hans de Goede <hdegoede@redhat.com>
16024 L:      linux-input@vger.kernel.org
16025 L:      platform-driver-x86@vger.kernel.org
16026 S:      Maintained
16027 F:      drivers/input/touchscreen/silead.c
16028 F:      drivers/platform/x86/touchscreen_dmi.c
16029
16030 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
16031 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
16032 S:      Supported
16033 F:      drivers/staging/wfx/
16034
16035 SILICON MOTION SM712 FRAME BUFFER DRIVER
16036 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16037 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16038 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16039 L:      linux-fbdev@vger.kernel.org
16040 S:      Maintained
16041 F:      Documentation/fb/sm712fb.rst
16042 F:      drivers/video/fbdev/sm712*
16043
16044 SIMPLE FIRMWARE INTERFACE (SFI)
16045 S:      Obsolete
16046 W:      http://simplefirmware.org/
16047 F:      arch/x86/platform/sfi/
16048 F:      drivers/sfi/
16049 F:      include/linux/sfi*.h
16050
16051 SIMPLEFB FB DRIVER
16052 M:      Hans de Goede <hdegoede@redhat.com>
16053 L:      linux-fbdev@vger.kernel.org
16054 S:      Maintained
16055 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
16056 F:      drivers/video/fbdev/simplefb.c
16057 F:      include/linux/platform_data/simplefb.h
16058
16059 SIMTEC EB110ATX (Chalice CATS)
16060 M:      Simtec Linux Team <linux@simtec.co.uk>
16061 S:      Supported
16062 W:      http://www.simtec.co.uk/products/EB110ATX/
16063
16064 SIMTEC EB2410ITX (BAST)
16065 M:      Simtec Linux Team <linux@simtec.co.uk>
16066 S:      Supported
16067 W:      http://www.simtec.co.uk/products/EB2410ITX/
16068 F:      arch/arm/mach-s3c/bast-ide.c
16069 F:      arch/arm/mach-s3c/bast-irq.c
16070 F:      arch/arm/mach-s3c/mach-bast.c
16071
16072 SIOX
16073 M:      Thorsten Scherer <t.scherer@eckelmann.de>
16074 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16075 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
16076 S:      Supported
16077 F:      drivers/gpio/gpio-siox.c
16078 F:      drivers/siox/*
16079 F:      include/trace/events/siox.h
16080
16081 SIPHASH PRF ROUTINES
16082 M:      Jason A. Donenfeld <Jason@zx2c4.com>
16083 S:      Maintained
16084 F:      include/linux/siphash.h
16085 F:      lib/siphash.c
16086 F:      lib/test_siphash.c
16087
16088 SIS 190 ETHERNET DRIVER
16089 M:      Francois Romieu <romieu@fr.zoreil.com>
16090 L:      netdev@vger.kernel.org
16091 S:      Maintained
16092 F:      drivers/net/ethernet/sis/sis190.c
16093
16094 SIS 900/7016 FAST ETHERNET DRIVER
16095 M:      Daniele Venzano <venza@brownhat.org>
16096 L:      netdev@vger.kernel.org
16097 S:      Maintained
16098 W:      http://www.brownhat.org/sis900.html
16099 F:      drivers/net/ethernet/sis/sis900.*
16100
16101 SIS FRAMEBUFFER DRIVER
16102 M:      Thomas Winischhofer <thomas@winischhofer.net>
16103 S:      Maintained
16104 W:      http://www.winischhofer.net/linuxsisvga.shtml
16105 F:      Documentation/fb/sisfb.rst
16106 F:      drivers/video/fbdev/sis/
16107 F:      include/video/sisfb.h
16108
16109 SIS I2C TOUCHSCREEN DRIVER
16110 M:      Mika Penttilä <mika.penttila@nextfour.com>
16111 L:      linux-input@vger.kernel.org
16112 S:      Maintained
16113 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
16114 F:      drivers/input/touchscreen/sis_i2c.c
16115
16116 SIS USB2VGA DRIVER
16117 M:      Thomas Winischhofer <thomas@winischhofer.net>
16118 S:      Maintained
16119 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
16120 F:      drivers/usb/misc/sisusbvga/
16121
16122 SLAB ALLOCATOR
16123 M:      Christoph Lameter <cl@linux.com>
16124 M:      Pekka Enberg <penberg@kernel.org>
16125 M:      David Rientjes <rientjes@google.com>
16126 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
16127 M:      Andrew Morton <akpm@linux-foundation.org>
16128 L:      linux-mm@kvack.org
16129 S:      Maintained
16130 F:      include/linux/sl?b*.h
16131 F:      mm/sl?b*
16132
16133 SLEEPABLE READ-COPY UPDATE (SRCU)
16134 M:      Lai Jiangshan <jiangshanlai@gmail.com>
16135 M:      "Paul E. McKenney" <paulmck@kernel.org>
16136 M:      Josh Triplett <josh@joshtriplett.org>
16137 R:      Steven Rostedt <rostedt@goodmis.org>
16138 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16139 L:      rcu@vger.kernel.org
16140 S:      Supported
16141 W:      http://www.rdrop.com/users/paulmck/RCU/
16142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16143 F:      include/linux/srcu*.h
16144 F:      kernel/rcu/srcu*.c
16145
16146 SMACK SECURITY MODULE
16147 M:      Casey Schaufler <casey@schaufler-ca.com>
16148 L:      linux-security-module@vger.kernel.org
16149 S:      Maintained
16150 W:      http://schaufler-ca.com
16151 T:      git git://github.com/cschaufler/smack-next
16152 F:      Documentation/admin-guide/LSM/Smack.rst
16153 F:      security/smack/
16154
16155 SMC91x ETHERNET DRIVER
16156 M:      Nicolas Pitre <nico@fluxnic.net>
16157 S:      Odd Fixes
16158 F:      drivers/net/ethernet/smsc/smc91x.*
16159
16160 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
16161 M:      Mark Rutland <mark.rutland@arm.com>
16162 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
16163 M:      Sudeep Holla <sudeep.holla@arm.com>
16164 L:      linux-arm-kernel@lists.infradead.org
16165 S:      Maintained
16166 F:      drivers/firmware/smccc/
16167 F:      include/linux/arm-smccc.h
16168
16169 SMM665 HARDWARE MONITOR DRIVER
16170 M:      Guenter Roeck <linux@roeck-us.net>
16171 L:      linux-hwmon@vger.kernel.org
16172 S:      Maintained
16173 F:      Documentation/hwmon/smm665.rst
16174 F:      drivers/hwmon/smm665.c
16175
16176 SMSC EMC2103 HARDWARE MONITOR DRIVER
16177 M:      Steve Glendinning <steve.glendinning@shawell.net>
16178 L:      linux-hwmon@vger.kernel.org
16179 S:      Maintained
16180 F:      Documentation/hwmon/emc2103.rst
16181 F:      drivers/hwmon/emc2103.c
16182
16183 SMSC SCH5627 HARDWARE MONITOR DRIVER
16184 M:      Hans de Goede <hdegoede@redhat.com>
16185 L:      linux-hwmon@vger.kernel.org
16186 S:      Supported
16187 F:      Documentation/hwmon/sch5627.rst
16188 F:      drivers/hwmon/sch5627.c
16189
16190 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
16191 M:      Steve Glendinning <steve.glendinning@shawell.net>
16192 L:      linux-fbdev@vger.kernel.org
16193 S:      Maintained
16194 F:      drivers/video/fbdev/smscufx.c
16195
16196 SMSC47B397 HARDWARE MONITOR DRIVER
16197 M:      Jean Delvare <jdelvare@suse.com>
16198 L:      linux-hwmon@vger.kernel.org
16199 S:      Maintained
16200 F:      Documentation/hwmon/smsc47b397.rst
16201 F:      drivers/hwmon/smsc47b397.c
16202
16203 SMSC911x ETHERNET DRIVER
16204 M:      Steve Glendinning <steve.glendinning@shawell.net>
16205 L:      netdev@vger.kernel.org
16206 S:      Maintained
16207 F:      drivers/net/ethernet/smsc/smsc911x.*
16208 F:      include/linux/smsc911x.h
16209
16210 SMSC9420 PCI ETHERNET DRIVER
16211 M:      Steve Glendinning <steve.glendinning@shawell.net>
16212 L:      netdev@vger.kernel.org
16213 S:      Maintained
16214 F:      drivers/net/ethernet/smsc/smsc9420.*
16215
16216 SOCIONEXT (SNI) AVE NETWORK DRIVER
16217 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
16218 L:      netdev@vger.kernel.org
16219 S:      Maintained
16220 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
16221 F:      drivers/net/ethernet/socionext/sni_ave.c
16222
16223 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
16224 M:      Jassi Brar <jaswinder.singh@linaro.org>
16225 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
16226 L:      netdev@vger.kernel.org
16227 S:      Maintained
16228 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
16229 F:      drivers/net/ethernet/socionext/netsec.c
16230
16231 SOCIONEXT (SNI) Synquacer SPI DRIVER
16232 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
16233 M:      Jassi Brar <jaswinder.singh@linaro.org>
16234 L:      linux-spi@vger.kernel.org
16235 S:      Maintained
16236 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
16237 F:      drivers/spi/spi-synquacer.c
16238
16239 SOCIONEXT SYNQUACER I2C DRIVER
16240 M:      Ard Biesheuvel <ardb@kernel.org>
16241 L:      linux-i2c@vger.kernel.org
16242 S:      Maintained
16243 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
16244 F:      drivers/i2c/busses/i2c-synquacer.c
16245
16246 SOCIONEXT UNIPHIER SOUND DRIVER
16247 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16248 S:      Orphan
16249 F:      sound/soc/uniphier/
16250
16251 SOEKRIS NET48XX LED SUPPORT
16252 M:      Chris Boot <bootc@bootc.net>
16253 S:      Maintained
16254 F:      drivers/leds/leds-net48xx.c
16255
16256 SOFT-IWARP DRIVER (siw)
16257 M:      Bernard Metzler <bmt@zurich.ibm.com>
16258 L:      linux-rdma@vger.kernel.org
16259 S:      Supported
16260 F:      drivers/infiniband/sw/siw/
16261 F:      include/uapi/rdma/siw-abi.h
16262
16263 SOFT-ROCE DRIVER (rxe)
16264 M:      Zhu Yanjun <yanjunz@nvidia.com>
16265 L:      linux-rdma@vger.kernel.org
16266 S:      Supported
16267 F:      drivers/infiniband/sw/rxe/
16268 F:      include/uapi/rdma/rdma_user_rxe.h
16269
16270 SOFTLOGIC 6x10 MPEG CODEC
16271 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
16272 M:      Anton Sviridenko <anton@corp.bluecherry.net>
16273 M:      Andrey Utkin <andrey_utkin@fastmail.com>
16274 M:      Ismael Luceno <ismael@iodev.co.uk>
16275 L:      linux-media@vger.kernel.org
16276 S:      Supported
16277 F:      drivers/media/pci/solo6x10/
16278
16279 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
16280 M:      James Morse <james.morse@arm.com>
16281 L:      linux-arm-kernel@lists.infradead.org
16282 S:      Maintained
16283 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
16284 F:      drivers/firmware/arm_sdei.c
16285 F:      include/linux/arm_sdei.h
16286 F:      include/uapi/linux/arm_sdei.h
16287
16288 SOFTWARE RAID (Multiple Disks) SUPPORT
16289 M:      Song Liu <song@kernel.org>
16290 L:      linux-raid@vger.kernel.org
16291 S:      Supported
16292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
16293 F:      drivers/md/Kconfig
16294 F:      drivers/md/Makefile
16295 F:      drivers/md/md*
16296 F:      drivers/md/raid*
16297 F:      include/linux/raid/
16298 F:      include/uapi/linux/raid/
16299
16300 SOLIDRUN CLEARFOG SUPPORT
16301 M:      Russell King <linux@armlinux.org.uk>
16302 S:      Maintained
16303 F:      arch/arm/boot/dts/armada-388-clearfog*
16304 F:      arch/arm/boot/dts/armada-38x-solidrun-*
16305
16306 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
16307 M:      Russell King <linux@armlinux.org.uk>
16308 S:      Maintained
16309 F:      arch/arm/boot/dts/imx6*-cubox-i*
16310 F:      arch/arm/boot/dts/imx6*-hummingboard*
16311 F:      arch/arm/boot/dts/imx6*-sr-*
16312
16313 SONIC NETWORK DRIVER
16314 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
16315 L:      netdev@vger.kernel.org
16316 S:      Maintained
16317 F:      drivers/net/ethernet/natsemi/sonic.*
16318
16319 SONICS SILICON BACKPLANE DRIVER (SSB)
16320 M:      Michael Buesch <m@bues.ch>
16321 L:      linux-wireless@vger.kernel.org
16322 S:      Maintained
16323 F:      drivers/ssb/
16324 F:      include/linux/ssb/
16325
16326 SONY IMX214 SENSOR DRIVER
16327 M:      Ricardo Ribalda <ribalda@kernel.org>
16328 L:      linux-media@vger.kernel.org
16329 S:      Maintained
16330 T:      git git://linuxtv.org/media_tree.git
16331 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
16332 F:      drivers/media/i2c/imx214.c
16333
16334 SONY IMX219 SENSOR DRIVER
16335 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
16336 L:      linux-media@vger.kernel.org
16337 S:      Maintained
16338 T:      git git://linuxtv.org/media_tree.git
16339 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
16340 F:      drivers/media/i2c/imx219.c
16341
16342 SONY IMX258 SENSOR DRIVER
16343 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
16344 L:      linux-media@vger.kernel.org
16345 S:      Maintained
16346 T:      git git://linuxtv.org/media_tree.git
16347 F:      drivers/media/i2c/imx258.c
16348
16349 SONY IMX274 SENSOR DRIVER
16350 M:      Leon Luo <leonl@leopardimaging.com>
16351 L:      linux-media@vger.kernel.org
16352 S:      Maintained
16353 T:      git git://linuxtv.org/media_tree.git
16354 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
16355 F:      drivers/media/i2c/imx274.c
16356
16357 SONY IMX290 SENSOR DRIVER
16358 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16359 L:      linux-media@vger.kernel.org
16360 S:      Maintained
16361 T:      git git://linuxtv.org/media_tree.git
16362 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
16363 F:      drivers/media/i2c/imx290.c
16364
16365 SONY IMX319 SENSOR DRIVER
16366 M:      Bingbu Cao <bingbu.cao@intel.com>
16367 L:      linux-media@vger.kernel.org
16368 S:      Maintained
16369 T:      git git://linuxtv.org/media_tree.git
16370 F:      drivers/media/i2c/imx319.c
16371
16372 SONY IMX355 SENSOR DRIVER
16373 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
16374 L:      linux-media@vger.kernel.org
16375 S:      Maintained
16376 T:      git git://linuxtv.org/media_tree.git
16377 F:      drivers/media/i2c/imx355.c
16378
16379 SONY MEMORYSTICK SUBSYSTEM
16380 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16381 M:      Alex Dubov <oakad@yahoo.com>
16382 M:      Ulf Hansson <ulf.hansson@linaro.org>
16383 L:      linux-mmc@vger.kernel.org
16384 S:      Maintained
16385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
16386 F:      drivers/memstick/
16387 F:      include/linux/memstick.h
16388
16389 SONY VAIO CONTROL DEVICE DRIVER
16390 M:      Mattia Dongili <malattia@linux.it>
16391 L:      platform-driver-x86@vger.kernel.org
16392 S:      Maintained
16393 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
16394 F:      Documentation/admin-guide/laptops/sony-laptop.rst
16395 F:      drivers/char/sonypi.c
16396 F:      drivers/platform/x86/sony-laptop.c
16397 F:      include/linux/sony-laptop.h
16398
16399 SOUND
16400 M:      Jaroslav Kysela <perex@perex.cz>
16401 M:      Takashi Iwai <tiwai@suse.com>
16402 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16403 S:      Maintained
16404 W:      http://www.alsa-project.org/
16405 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
16406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16407 F:      Documentation/sound/
16408 F:      include/sound/
16409 F:      include/uapi/sound/
16410 F:      sound/
16411
16412 SOUND - COMPRESSED AUDIO
16413 M:      Vinod Koul <vkoul@kernel.org>
16414 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16415 S:      Supported
16416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16417 F:      Documentation/sound/designs/compress-offload.rst
16418 F:      include/sound/compress_driver.h
16419 F:      include/uapi/sound/compress_*
16420 F:      sound/core/compress_offload.c
16421 F:      sound/soc/soc-compress.c
16422
16423 SOUND - DMAENGINE HELPERS
16424 M:      Lars-Peter Clausen <lars@metafoo.de>
16425 S:      Supported
16426 F:      include/sound/dmaengine_pcm.h
16427 F:      sound/core/pcm_dmaengine.c
16428 F:      sound/soc/soc-generic-dmaengine-pcm.c
16429
16430 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
16431 M:      Liam Girdwood <lgirdwood@gmail.com>
16432 M:      Mark Brown <broonie@kernel.org>
16433 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16434 S:      Supported
16435 W:      http://alsa-project.org/main/index.php/ASoC
16436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
16437 F:      Documentation/devicetree/bindings/sound/
16438 F:      Documentation/sound/soc/
16439 F:      include/dt-bindings/sound/
16440 F:      include/sound/soc*
16441 F:      sound/soc/
16442
16443 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
16444 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16445 M:      Liam Girdwood <lgirdwood@gmail.com>
16446 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
16447 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
16448 M:      Daniel Baluta <daniel.baluta@nxp.com>
16449 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
16450 S:      Supported
16451 W:      https://github.com/thesofproject/linux/
16452 F:      sound/soc/sof/
16453
16454 SOUNDWIRE SUBSYSTEM
16455 M:      Vinod Koul <vkoul@kernel.org>
16456 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
16457 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16458 R:      Sanyog Kale <sanyog.r.kale@intel.com>
16459 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16460 S:      Supported
16461 F:      Documentation/driver-api/soundwire/
16462 F:      drivers/soundwire/
16463 F:      include/linux/soundwire/
16464
16465 SP2 MEDIA DRIVER
16466 M:      Olli Salonen <olli.salonen@iki.fi>
16467 L:      linux-media@vger.kernel.org
16468 S:      Maintained
16469 W:      https://linuxtv.org
16470 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16471 F:      drivers/media/dvb-frontends/sp2*
16472
16473 SPARC + UltraSPARC (sparc/sparc64)
16474 M:      "David S. Miller" <davem@davemloft.net>
16475 L:      sparclinux@vger.kernel.org
16476 S:      Maintained
16477 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
16478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16480 F:      arch/sparc/
16481 F:      drivers/sbus/
16482
16483 SPARC SERIAL DRIVERS
16484 M:      "David S. Miller" <davem@davemloft.net>
16485 L:      sparclinux@vger.kernel.org
16486 S:      Maintained
16487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16488 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16489 F:      drivers/tty/serial/suncore.c
16490 F:      drivers/tty/serial/sunhv.c
16491 F:      drivers/tty/serial/sunsab.c
16492 F:      drivers/tty/serial/sunsab.h
16493 F:      drivers/tty/serial/sunsu.c
16494 F:      drivers/tty/serial/sunzilog.c
16495 F:      drivers/tty/serial/sunzilog.h
16496 F:      drivers/tty/vcc.c
16497 F:      include/linux/sunserialcore.h
16498
16499 SPARSE CHECKER
16500 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
16501 L:      linux-sparse@vger.kernel.org
16502 S:      Maintained
16503 W:      https://sparse.docs.kernel.org/
16504 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
16505 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
16506 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
16507 F:      include/linux/compiler.h
16508
16509 SPEAKUP CONSOLE SPEECH DRIVER
16510 M:      William Hubbs <w.d.hubbs@gmail.com>
16511 M:      Chris Brannon <chris@the-brannons.com>
16512 M:      Kirk Reiser <kirk@reisers.ca>
16513 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
16514 L:      speakup@linux-speakup.org
16515 S:      Odd Fixes
16516 W:      http://www.linux-speakup.org/
16517 F:      drivers/accessibility/speakup/
16518
16519 SPEAR CLOCK FRAMEWORK SUPPORT
16520 M:      Viresh Kumar <vireshk@kernel.org>
16521 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16522 S:      Maintained
16523 W:      http://www.st.com/spear
16524 F:      drivers/clk/spear/
16525
16526 SPEAR PLATFORM SUPPORT
16527 M:      Viresh Kumar <vireshk@kernel.org>
16528 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
16529 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16530 S:      Maintained
16531 W:      http://www.st.com/spear
16532 F:      arch/arm/boot/dts/spear*
16533 F:      arch/arm/mach-spear/
16534
16535 SPI NOR SUBSYSTEM
16536 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
16537 L:      linux-mtd@lists.infradead.org
16538 S:      Maintained
16539 W:      http://www.linux-mtd.infradead.org/
16540 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
16541 C:      irc://irc.oftc.net/mtd
16542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
16543 F:      drivers/mtd/spi-nor/
16544 F:      include/linux/mtd/spi-nor.h
16545
16546 SPI SUBSYSTEM
16547 M:      Mark Brown <broonie@kernel.org>
16548 L:      linux-spi@vger.kernel.org
16549 S:      Maintained
16550 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
16551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
16552 F:      Documentation/devicetree/bindings/spi/
16553 F:      Documentation/spi/
16554 F:      drivers/spi/
16555 F:      include/linux/spi/
16556 F:      include/uapi/linux/spi/
16557 F:      tools/spi/
16558
16559 SPIDERNET NETWORK DRIVER for CELL
16560 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
16561 L:      netdev@vger.kernel.org
16562 S:      Supported
16563 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
16564 F:      drivers/net/ethernet/toshiba/spider_net*
16565
16566 SPMI SUBSYSTEM
16567 R:      Stephen Boyd <sboyd@kernel.org>
16568 L:      linux-arm-msm@vger.kernel.org
16569 F:      Documentation/devicetree/bindings/spmi/
16570 F:      drivers/spmi/
16571 F:      include/dt-bindings/spmi/spmi.h
16572 F:      include/linux/spmi.h
16573 F:      include/trace/events/spmi.h
16574
16575 SPU FILE SYSTEM
16576 M:      Jeremy Kerr <jk@ozlabs.org>
16577 L:      linuxppc-dev@lists.ozlabs.org
16578 S:      Supported
16579 W:      http://www.ibm.com/developerworks/power/cell/
16580 F:      Documentation/filesystems/spufs/spufs.rst
16581 F:      arch/powerpc/platforms/cell/spufs/
16582
16583 SQUASHFS FILE SYSTEM
16584 M:      Phillip Lougher <phillip@squashfs.org.uk>
16585 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
16586 S:      Maintained
16587 W:      http://squashfs.org.uk
16588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
16589 F:      Documentation/filesystems/squashfs.rst
16590 F:      fs/squashfs/
16591
16592 SRM (Alpha) environment access
16593 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
16594 S:      Maintained
16595 F:      arch/alpha/kernel/srm_env.c
16596
16597 ST LSM6DSx IMU IIO DRIVER
16598 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
16599 L:      linux-iio@vger.kernel.org
16600 S:      Maintained
16601 W:      http://www.st.com/
16602 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
16603 F:      drivers/iio/imu/st_lsm6dsx/
16604
16605 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
16606 M:      Mickael Guene <mickael.guene@st.com>
16607 L:      linux-media@vger.kernel.org
16608 S:      Maintained
16609 T:      git git://linuxtv.org/media_tree.git
16610 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
16611 F:      drivers/media/i2c/st-mipid02.c
16612
16613 ST STM32 I2C/SMBUS DRIVER
16614 M:      Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
16615 L:      linux-i2c@vger.kernel.org
16616 S:      Maintained
16617 F:      drivers/i2c/busses/i2c-stm32*
16618
16619 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
16620 M:      Song Qiang <songqiang1304521@gmail.com>
16621 L:      linux-iio@vger.kernel.org
16622 S:      Maintained
16623 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
16624 F:      drivers/iio/proximity/vl53l0x-i2c.c
16625
16626 STABLE BRANCH
16627 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16628 M:      Sasha Levin <sashal@kernel.org>
16629 L:      stable@vger.kernel.org
16630 S:      Supported
16631 F:      Documentation/process/stable-kernel-rules.rst
16632
16633 STAGING - ATOMISP DRIVER
16634 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16635 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
16636 L:      linux-media@vger.kernel.org
16637 S:      Maintained
16638 F:      drivers/staging/media/atomisp/
16639
16640 STAGING - COMEDI
16641 M:      Ian Abbott <abbotti@mev.co.uk>
16642 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
16643 S:      Odd Fixes
16644 F:      drivers/staging/comedi/
16645
16646 STAGING - FIELDBUS SUBSYSTEM
16647 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16648 S:      Maintained
16649 F:      drivers/staging/fieldbus/*
16650 F:      drivers/staging/fieldbus/Documentation/
16651
16652 STAGING - HMS ANYBUS-S BUS
16653 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16654 S:      Maintained
16655 F:      drivers/staging/fieldbus/anybuss/
16656
16657 STAGING - INDUSTRIAL IO
16658 M:      Jonathan Cameron <jic23@kernel.org>
16659 L:      linux-iio@vger.kernel.org
16660 S:      Odd Fixes
16661 F:      Documentation/devicetree/bindings/staging/iio/
16662 F:      drivers/staging/iio/
16663
16664 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
16665 M:      Marc Dietrich <marvin24@gmx.de>
16666 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
16667 L:      linux-tegra@vger.kernel.org
16668 S:      Maintained
16669 F:      drivers/staging/nvec/
16670
16671 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
16672 M:      Jens Frederich <jfrederich@gmail.com>
16673 M:      Daniel Drake <dsd@laptop.org>
16674 M:      Jon Nettleton <jon.nettleton@gmail.com>
16675 S:      Maintained
16676 W:      http://wiki.laptop.org/go/DCON
16677 F:      drivers/staging/olpc_dcon/
16678
16679 STAGING - REALTEK RTL8188EU DRIVERS
16680 M:      Larry Finger <Larry.Finger@lwfinger.net>
16681 S:      Odd Fixes
16682 F:      drivers/staging/rtl8188eu/
16683
16684 STAGING - REALTEK RTL8712U DRIVERS
16685 M:      Larry Finger <Larry.Finger@lwfinger.net>
16686 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
16687 S:      Odd Fixes
16688 F:      drivers/staging/rtl8712/
16689
16690 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16691 M:      Michael Hennerich <michael.hennerich@analog.com>
16692 L:      linux-fbdev@vger.kernel.org
16693 S:      Supported
16694 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16695 F:      drivers/staging/fbtft/fb_seps525.c
16696
16697 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
16698 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16699 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16700 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16701 L:      linux-fbdev@vger.kernel.org
16702 S:      Maintained
16703 F:      drivers/staging/sm750fb/
16704
16705 STAGING - VIA VT665X DRIVERS
16706 M:      Forest Bond <forest@alittletooquiet.net>
16707 S:      Odd Fixes
16708 F:      drivers/staging/vt665?/
16709
16710 STAGING SUBSYSTEM
16711 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16712 L:      devel@driverdev.osuosl.org
16713 S:      Supported
16714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16715 F:      drivers/staging/
16716
16717 STARFIRE/DURALAN NETWORK DRIVER
16718 M:      Ion Badulescu <ionut@badula.org>
16719 S:      Odd Fixes
16720 F:      drivers/net/ethernet/adaptec/starfire*
16721
16722 STEC S1220 SKD DRIVER
16723 M:      Damien Le Moal <Damien.LeMoal@wdc.com>
16724 L:      linux-block@vger.kernel.org
16725 S:      Maintained
16726 F:      drivers/block/skd*[ch]
16727
16728 STI AUDIO (ASoC) DRIVERS
16729 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16730 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16731 S:      Maintained
16732 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
16733 F:      sound/soc/sti/
16734
16735 STI CEC DRIVER
16736 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
16737 S:      Maintained
16738 F:      Documentation/devicetree/bindings/media/stih-cec.txt
16739 F:      drivers/media/cec/platform/sti/
16740
16741 STK1160 USB VIDEO CAPTURE DRIVER
16742 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16743 L:      linux-media@vger.kernel.org
16744 S:      Maintained
16745 T:      git git://linuxtv.org/media_tree.git
16746 F:      drivers/media/usb/stk1160/
16747
16748 STM32 AUDIO (ASoC) DRIVERS
16749 M:      Olivier Moysan <olivier.moysan@st.com>
16750 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16751 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16752 S:      Maintained
16753 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
16754 F:      sound/soc/stm/
16755
16756 STM32 TIMER/LPTIMER DRIVERS
16757 M:      Fabrice Gasnier <fabrice.gasnier@st.com>
16758 S:      Maintained
16759 F:      Documentation/ABI/testing/*timer-stm32
16760 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
16761 F:      drivers/*/stm32-*timer*
16762 F:      drivers/pwm/pwm-stm32*
16763 F:      include/linux/*/stm32-*tim*
16764
16765 STMMAC ETHERNET DRIVER
16766 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
16767 M:      Alexandre Torgue <alexandre.torgue@st.com>
16768 M:      Jose Abreu <joabreu@synopsys.com>
16769 L:      netdev@vger.kernel.org
16770 S:      Supported
16771 W:      http://www.stlinux.com
16772 F:      Documentation/networking/device_drivers/ethernet/stmicro/
16773 F:      drivers/net/ethernet/stmicro/stmmac/
16774
16775 SUN3/3X
16776 M:      Sam Creasey <sammy@sammy.net>
16777 S:      Maintained
16778 W:      http://sammy.net/sun3/
16779 F:      arch/m68k/include/asm/sun3*
16780 F:      arch/m68k/kernel/*sun3*
16781 F:      arch/m68k/sun3*/
16782 F:      drivers/net/ethernet/i825xx/sun3*
16783
16784 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
16785 M:      Hans de Goede <hdegoede@redhat.com>
16786 L:      linux-input@vger.kernel.org
16787 S:      Maintained
16788 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
16789 F:      drivers/input/keyboard/sun4i-lradc-keys.c
16790
16791 SUNDANCE NETWORK DRIVER
16792 M:      Denis Kirjanov <kda@linux-powerpc.org>
16793 L:      netdev@vger.kernel.org
16794 S:      Maintained
16795 F:      drivers/net/ethernet/dlink/sundance.c
16796
16797 SUPERH
16798 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
16799 M:      Rich Felker <dalias@libc.org>
16800 L:      linux-sh@vger.kernel.org
16801 S:      Maintained
16802 Q:      http://patchwork.kernel.org/project/linux-sh/list/
16803 F:      Documentation/sh/
16804 F:      arch/sh/
16805 F:      drivers/sh/
16806
16807 SUSPEND TO RAM
16808 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
16809 M:      Len Brown <len.brown@intel.com>
16810 M:      Pavel Machek <pavel@ucw.cz>
16811 L:      linux-pm@vger.kernel.org
16812 S:      Supported
16813 B:      https://bugzilla.kernel.org
16814 F:      Documentation/power/
16815 F:      arch/x86/kernel/acpi/
16816 F:      drivers/base/power/
16817 F:      include/linux/freezer.h
16818 F:      include/linux/pm.h
16819 F:      include/linux/suspend.h
16820 F:      kernel/power/
16821
16822 SVGA HANDLING
16823 M:      Martin Mares <mj@ucw.cz>
16824 L:      linux-video@atrey.karlin.mff.cuni.cz
16825 S:      Maintained
16826 F:      Documentation/admin-guide/svga.rst
16827 F:      arch/x86/boot/video*
16828
16829 SWIOTLB SUBSYSTEM
16830 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
16831 L:      iommu@lists.linux-foundation.org
16832 S:      Supported
16833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
16834 F:      arch/*/kernel/pci-swiotlb.c
16835 F:      include/linux/swiotlb.h
16836 F:      kernel/dma/swiotlb.c
16837
16838 SWITCHDEV
16839 M:      Jiri Pirko <jiri@resnulli.us>
16840 M:      Ivan Vecera <ivecera@redhat.com>
16841 L:      netdev@vger.kernel.org
16842 S:      Supported
16843 F:      include/net/switchdev.h
16844 F:      net/switchdev/
16845
16846 SY8106A REGULATOR DRIVER
16847 M:      Icenowy Zheng <icenowy@aosc.io>
16848 S:      Maintained
16849 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
16850 F:      drivers/regulator/sy8106a-regulator.c
16851
16852 SYNC FILE FRAMEWORK
16853 M:      Sumit Semwal <sumit.semwal@linaro.org>
16854 R:      Gustavo Padovan <gustavo@padovan.org>
16855 L:      linux-media@vger.kernel.org
16856 L:      dri-devel@lists.freedesktop.org
16857 S:      Maintained
16858 T:      git git://anongit.freedesktop.org/drm/drm-misc
16859 F:      Documentation/driver-api/sync_file.rst
16860 F:      drivers/dma-buf/dma-fence*
16861 F:      drivers/dma-buf/sw_sync.c
16862 F:      drivers/dma-buf/sync_*
16863 F:      include/linux/sync_file.h
16864 F:      include/uapi/linux/sync_file.h
16865
16866 SYNOPSYS ARC ARCHITECTURE
16867 M:      Vineet Gupta <vgupta@synopsys.com>
16868 L:      linux-snps-arc@lists.infradead.org
16869 S:      Supported
16870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
16871 F:      Documentation/devicetree/bindings/arc/*
16872 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
16873 F:      arch/arc/
16874 F:      drivers/clocksource/arc_timer.c
16875 F:      drivers/tty/serial/arc_uart.c
16876
16877 SYNOPSYS ARC HSDK SDP pll clock driver
16878 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16879 S:      Supported
16880 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
16881 F:      drivers/clk/clk-hsdk-pll.c
16882
16883 SYNOPSYS ARC SDP clock driver
16884 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16885 S:      Supported
16886 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
16887 F:      drivers/clk/axs10x/*
16888
16889 SYNOPSYS ARC SDP platform support
16890 M:      Alexey Brodkin <abrodkin@synopsys.com>
16891 S:      Supported
16892 F:      Documentation/devicetree/bindings/arc/axs10*
16893 F:      arch/arc/boot/dts/ax*
16894 F:      arch/arc/plat-axs10x
16895
16896 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
16897 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16898 S:      Supported
16899 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
16900 F:      drivers/reset/reset-axs10x.c
16901
16902 SYNOPSYS CREG GPIO DRIVER
16903 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16904 S:      Maintained
16905 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
16906 F:      drivers/gpio/gpio-creg-snps.c
16907
16908 SYNOPSYS DESIGNWARE 8250 UART DRIVER
16909 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16910 S:      Maintained
16911 F:      drivers/tty/serial/8250/8250_dw.c
16912 F:      drivers/tty/serial/8250/8250_dwlib.*
16913 F:      drivers/tty/serial/8250/8250_lpss.c
16914
16915 SYNOPSYS DESIGNWARE APB GPIO DRIVER
16916 M:      Hoan Tran <hoan@os.amperecomputing.com>
16917 M:      Serge Semin <fancer.lancer@gmail.com>
16918 L:      linux-gpio@vger.kernel.org
16919 S:      Maintained
16920 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
16921 F:      drivers/gpio/gpio-dwapb.c
16922
16923 SYNOPSYS DESIGNWARE APB SSI DRIVER
16924 M:      Serge Semin <fancer.lancer@gmail.com>
16925 L:      linux-spi@vger.kernel.org
16926 S:      Supported
16927 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
16928 F:      drivers/spi/spi-dw*
16929
16930 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
16931 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16932 S:      Maintained
16933 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
16934 F:      drivers/dma/dw-axi-dmac/
16935
16936 SYNOPSYS DESIGNWARE DMAC DRIVER
16937 M:      Viresh Kumar <vireshk@kernel.org>
16938 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16939 S:      Maintained
16940 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
16941 F:      drivers/dma/dw/
16942 F:      include/dt-bindings/dma/dw-dmac.h
16943 F:      include/linux/dma/dw.h
16944 F:      include/linux/platform_data/dma-dw.h
16945
16946 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
16947 M:      Jose Abreu <Jose.Abreu@synopsys.com>
16948 L:      netdev@vger.kernel.org
16949 S:      Supported
16950 F:      drivers/net/ethernet/synopsys/
16951
16952 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
16953 M:      Jose Abreu <Jose.Abreu@synopsys.com>
16954 L:      netdev@vger.kernel.org
16955 S:      Supported
16956 F:      drivers/net/pcs/pcs-xpcs.c
16957 F:      include/linux/pcs/pcs-xpcs.h
16958
16959 SYNOPSYS DESIGNWARE I2C DRIVER
16960 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
16961 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16962 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
16963 L:      linux-i2c@vger.kernel.org
16964 S:      Maintained
16965 F:      drivers/i2c/busses/i2c-designware-*
16966 F:      include/linux/platform_data/i2c-designware.h
16967
16968 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
16969 M:      Jaehoon Chung <jh80.chung@samsung.com>
16970 L:      linux-mmc@vger.kernel.org
16971 S:      Maintained
16972 F:      drivers/mmc/host/dw_mmc*
16973
16974 SYNOPSYS HSDK RESET CONTROLLER DRIVER
16975 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16976 S:      Supported
16977 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
16978 F:      drivers/reset/reset-hsdk.c
16979 F:      include/dt-bindings/reset/snps,hsdk-reset.h
16980
16981 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
16982 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
16983 M:      Manjunath M B <manjumb@synopsys.com>
16984 L:      linux-mmc@vger.kernel.org
16985 S:      Maintained
16986 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
16987
16988 SYSTEM CONFIGURATION (SYSCON)
16989 M:      Lee Jones <lee.jones@linaro.org>
16990 M:      Arnd Bergmann <arnd@arndb.de>
16991 S:      Supported
16992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
16993 F:      drivers/mfd/syscon.c
16994
16995 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
16996 M:      Sudeep Holla <sudeep.holla@arm.com>
16997 L:      linux-arm-kernel@lists.infradead.org
16998 S:      Maintained
16999 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
17000 F:      drivers/clk/clk-sc[mp]i.c
17001 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
17002 F:      drivers/firmware/arm_scmi/
17003 F:      drivers/firmware/arm_scpi.c
17004 F:      drivers/reset/reset-scmi.c
17005 F:      include/linux/sc[mp]i_protocol.h
17006 F:      include/trace/events/scmi.h
17007
17008 SYSTEM RESET/SHUTDOWN DRIVERS
17009 M:      Sebastian Reichel <sre@kernel.org>
17010 L:      linux-pm@vger.kernel.org
17011 S:      Maintained
17012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
17013 F:      Documentation/devicetree/bindings/power/reset/
17014 F:      drivers/power/reset/
17015
17016 SYSTEM TRACE MODULE CLASS
17017 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
17018 S:      Maintained
17019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
17020 F:      Documentation/trace/stm.rst
17021 F:      drivers/hwtracing/stm/
17022 F:      include/linux/stm.h
17023 F:      include/uapi/linux/stm.h
17024
17025 SYSTEM76 ACPI DRIVER
17026 M:      Jeremy Soller <jeremy@system76.com>
17027 M:      System76 Product Development <productdev@system76.com>
17028 L:      platform-driver-x86@vger.kernel.org
17029 S:      Maintained
17030 F:      drivers/platform/x86/system76_acpi.c
17031
17032 SYSV FILESYSTEM
17033 M:      Christoph Hellwig <hch@infradead.org>
17034 S:      Maintained
17035 F:      Documentation/filesystems/sysv-fs.rst
17036 F:      fs/sysv/
17037 F:      include/linux/sysv_fs.h
17038
17039 TASKSTATS STATISTICS INTERFACE
17040 M:      Balbir Singh <bsingharora@gmail.com>
17041 S:      Maintained
17042 F:      Documentation/accounting/taskstats*
17043 F:      include/linux/taskstats*
17044 F:      kernel/taskstats.c
17045
17046 TC subsystem
17047 M:      Jamal Hadi Salim <jhs@mojatatu.com>
17048 M:      Cong Wang <xiyou.wangcong@gmail.com>
17049 M:      Jiri Pirko <jiri@resnulli.us>
17050 L:      netdev@vger.kernel.org
17051 S:      Maintained
17052 F:      include/net/pkt_cls.h
17053 F:      include/net/pkt_sched.h
17054 F:      include/net/tc_act/
17055 F:      include/uapi/linux/pkt_cls.h
17056 F:      include/uapi/linux/pkt_sched.h
17057 F:      include/uapi/linux/tc_act/
17058 F:      include/uapi/linux/tc_ematch/
17059 F:      net/sched/
17060
17061 TC90522 MEDIA DRIVER
17062 M:      Akihiro Tsukada <tskd08@gmail.com>
17063 L:      linux-media@vger.kernel.org
17064 S:      Odd Fixes
17065 F:      drivers/media/dvb-frontends/tc90522*
17066
17067 TCP LOW PRIORITY MODULE
17068 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
17069 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
17070 S:      Maintained
17071 W:      http://tcp-lp-mod.sourceforge.net/
17072 F:      net/ipv4/tcp_lp.c
17073
17074 TDA10071 MEDIA DRIVER
17075 M:      Antti Palosaari <crope@iki.fi>
17076 L:      linux-media@vger.kernel.org
17077 S:      Maintained
17078 W:      https://linuxtv.org
17079 W:      http://palosaari.fi/linux/
17080 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17081 T:      git git://linuxtv.org/anttip/media_tree.git
17082 F:      drivers/media/dvb-frontends/tda10071*
17083
17084 TDA18212 MEDIA DRIVER
17085 M:      Antti Palosaari <crope@iki.fi>
17086 L:      linux-media@vger.kernel.org
17087 S:      Maintained
17088 W:      https://linuxtv.org
17089 W:      http://palosaari.fi/linux/
17090 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17091 T:      git git://linuxtv.org/anttip/media_tree.git
17092 F:      drivers/media/tuners/tda18212*
17093
17094 TDA18218 MEDIA DRIVER
17095 M:      Antti Palosaari <crope@iki.fi>
17096 L:      linux-media@vger.kernel.org
17097 S:      Maintained
17098 W:      https://linuxtv.org
17099 W:      http://palosaari.fi/linux/
17100 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17101 T:      git git://linuxtv.org/anttip/media_tree.git
17102 F:      drivers/media/tuners/tda18218*
17103
17104 TDA18250 MEDIA DRIVER
17105 M:      Olli Salonen <olli.salonen@iki.fi>
17106 L:      linux-media@vger.kernel.org
17107 S:      Maintained
17108 W:      https://linuxtv.org
17109 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17110 T:      git git://linuxtv.org/media_tree.git
17111 F:      drivers/media/tuners/tda18250*
17112
17113 TDA18271 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/tda18271*
17122
17123 TDA1997x MEDIA DRIVER
17124 M:      Tim Harvey <tharvey@gateworks.com>
17125 L:      linux-media@vger.kernel.org
17126 S:      Maintained
17127 W:      https://linuxtv.org
17128 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17129 F:      drivers/media/i2c/tda1997x.*
17130
17131 TDA827x MEDIA DRIVER
17132 M:      Michael Krufky <mkrufky@linuxtv.org>
17133 L:      linux-media@vger.kernel.org
17134 S:      Maintained
17135 W:      https://linuxtv.org
17136 W:      http://github.com/mkrufky
17137 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17138 T:      git git://linuxtv.org/mkrufky/tuners.git
17139 F:      drivers/media/tuners/tda8290.*
17140
17141 TDA8290 MEDIA DRIVER
17142 M:      Michael Krufky <mkrufky@linuxtv.org>
17143 L:      linux-media@vger.kernel.org
17144 S:      Maintained
17145 W:      https://linuxtv.org
17146 W:      http://github.com/mkrufky
17147 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17148 T:      git git://linuxtv.org/mkrufky/tuners.git
17149 F:      drivers/media/tuners/tda8290.*
17150
17151 TDA9840 MEDIA DRIVER
17152 M:      Hans Verkuil <hverkuil@xs4all.nl>
17153 L:      linux-media@vger.kernel.org
17154 S:      Maintained
17155 W:      https://linuxtv.org
17156 T:      git git://linuxtv.org/media_tree.git
17157 F:      drivers/media/i2c/tda9840*
17158
17159 TEA5761 TUNER DRIVER
17160 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17161 L:      linux-media@vger.kernel.org
17162 S:      Odd fixes
17163 W:      https://linuxtv.org
17164 T:      git git://linuxtv.org/media_tree.git
17165 F:      drivers/media/tuners/tea5761.*
17166
17167 TEA5767 TUNER DRIVER
17168 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17169 L:      linux-media@vger.kernel.org
17170 S:      Maintained
17171 W:      https://linuxtv.org
17172 T:      git git://linuxtv.org/media_tree.git
17173 F:      drivers/media/tuners/tea5767.*
17174
17175 TEA6415C MEDIA DRIVER
17176 M:      Hans Verkuil <hverkuil@xs4all.nl>
17177 L:      linux-media@vger.kernel.org
17178 S:      Maintained
17179 W:      https://linuxtv.org
17180 T:      git git://linuxtv.org/media_tree.git
17181 F:      drivers/media/i2c/tea6415c*
17182
17183 TEA6420 MEDIA DRIVER
17184 M:      Hans Verkuil <hverkuil@xs4all.nl>
17185 L:      linux-media@vger.kernel.org
17186 S:      Maintained
17187 W:      https://linuxtv.org
17188 T:      git git://linuxtv.org/media_tree.git
17189 F:      drivers/media/i2c/tea6420*
17190
17191 TEAM DRIVER
17192 M:      Jiri Pirko <jiri@resnulli.us>
17193 L:      netdev@vger.kernel.org
17194 S:      Supported
17195 F:      drivers/net/team/
17196 F:      include/linux/if_team.h
17197 F:      include/uapi/linux/if_team.h
17198
17199 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
17200 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
17201 S:      Maintained
17202 F:      arch/x86/platform/ts5500/
17203
17204 TECHNOTREND USB IR RECEIVER
17205 M:      Sean Young <sean@mess.org>
17206 L:      linux-media@vger.kernel.org
17207 S:      Maintained
17208 F:      drivers/media/rc/ttusbir.c
17209
17210 TECHWELL TW9910 VIDEO DECODER
17211 L:      linux-media@vger.kernel.org
17212 S:      Orphan
17213 F:      drivers/media/i2c/tw9910.c
17214 F:      include/media/i2c/tw9910.h
17215
17216 TEE SUBSYSTEM
17217 M:      Jens Wiklander <jens.wiklander@linaro.org>
17218 L:      op-tee@lists.trustedfirmware.org
17219 S:      Maintained
17220 F:      Documentation/staging/tee.rst
17221 F:      drivers/tee/
17222 F:      include/linux/tee_drv.h
17223 F:      include/uapi/linux/tee.h
17224
17225 TEGRA ARCHITECTURE SUPPORT
17226 M:      Thierry Reding <thierry.reding@gmail.com>
17227 M:      Jonathan Hunter <jonathanh@nvidia.com>
17228 L:      linux-tegra@vger.kernel.org
17229 S:      Supported
17230 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
17231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
17232 N:      [^a-z]tegra
17233
17234 TEGRA CLOCK DRIVER
17235 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
17236 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
17237 S:      Supported
17238 F:      drivers/clk/tegra/
17239
17240 TEGRA DMA DRIVERS
17241 M:      Laxman Dewangan <ldewangan@nvidia.com>
17242 M:      Jon Hunter <jonathanh@nvidia.com>
17243 S:      Supported
17244 F:      drivers/dma/tegra*
17245
17246 TEGRA I2C DRIVER
17247 M:      Laxman Dewangan <ldewangan@nvidia.com>
17248 R:      Dmitry Osipenko <digetx@gmail.com>
17249 S:      Supported
17250 F:      drivers/i2c/busses/i2c-tegra.c
17251
17252 TEGRA IOMMU DRIVERS
17253 M:      Thierry Reding <thierry.reding@gmail.com>
17254 R:      Krishna Reddy <vdumpa@nvidia.com>
17255 L:      linux-tegra@vger.kernel.org
17256 S:      Supported
17257 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
17258 F:      drivers/iommu/tegra*
17259
17260 TEGRA KBC DRIVER
17261 M:      Laxman Dewangan <ldewangan@nvidia.com>
17262 S:      Supported
17263 F:      drivers/input/keyboard/tegra-kbc.c
17264
17265 TEGRA NAND DRIVER
17266 M:      Stefan Agner <stefan@agner.ch>
17267 M:      Lucas Stach <dev@lynxeye.de>
17268 S:      Maintained
17269 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
17270 F:      drivers/mtd/nand/raw/tegra_nand.c
17271
17272 TEGRA PWM DRIVER
17273 M:      Thierry Reding <thierry.reding@gmail.com>
17274 S:      Supported
17275 F:      drivers/pwm/pwm-tegra.c
17276
17277 TEGRA SERIAL DRIVER
17278 M:      Laxman Dewangan <ldewangan@nvidia.com>
17279 S:      Supported
17280 F:      drivers/tty/serial/serial-tegra.c
17281
17282 TEGRA SPI DRIVER
17283 M:      Laxman Dewangan <ldewangan@nvidia.com>
17284 S:      Supported
17285 F:      drivers/spi/spi-tegra*
17286
17287 TEGRA VIDEO DRIVER
17288 M:      Thierry Reding <thierry.reding@gmail.com>
17289 M:      Jonathan Hunter <jonathanh@nvidia.com>
17290 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
17291 L:      linux-media@vger.kernel.org
17292 L:      linux-tegra@vger.kernel.org
17293 S:      Maintained
17294 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
17295 F:      drivers/staging/media/tegra-video/
17296
17297 TEGRA XUSB PADCTL DRIVER
17298 M:      JC Kuo <jckuo@nvidia.com>
17299 S:      Supported
17300 F:      drivers/phy/tegra/xusb*
17301
17302 TEHUTI ETHERNET DRIVER
17303 M:      Andy Gospodarek <andy@greyhouse.net>
17304 L:      netdev@vger.kernel.org
17305 S:      Supported
17306 F:      drivers/net/ethernet/tehuti/*
17307
17308 TELECOM CLOCK DRIVER FOR MCPL0010
17309 M:      Mark Gross <mark.gross@intel.com>
17310 S:      Supported
17311 F:      drivers/char/tlclk.c
17312
17313 TEMPO SEMICONDUCTOR DRIVERS
17314 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
17315 S:      Maintained
17316 F:      Documentation/devicetree/bindings/sound/tscs*.txt
17317 F:      sound/soc/codecs/tscs*.c
17318 F:      sound/soc/codecs/tscs*.h
17319
17320 TENSILICA XTENSA PORT (xtensa)
17321 M:      Chris Zankel <chris@zankel.net>
17322 M:      Max Filippov <jcmvbkbc@gmail.com>
17323 L:      linux-xtensa@linux-xtensa.org
17324 S:      Maintained
17325 T:      git git://github.com/czankel/xtensa-linux.git
17326 F:      arch/xtensa/
17327 F:      drivers/irqchip/irq-xtensa-*
17328
17329 TEXAS INSTRUMENTS ASoC DRIVERS
17330 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
17331 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17332 S:      Maintained
17333 F:      sound/soc/ti/
17334
17335 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
17336 M:      Ricardo Ribalda <ribalda@kernel.org>
17337 L:      linux-iio@vger.kernel.org
17338 S:      Supported
17339 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
17340 F:      drivers/iio/dac/ti-dac7612.c
17341
17342 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
17343 M:      Nishanth Menon <nm@ti.com>
17344 M:      Tero Kristo <t-kristo@ti.com>
17345 M:      Santosh Shilimkar <ssantosh@kernel.org>
17346 L:      linux-arm-kernel@lists.infradead.org
17347 S:      Maintained
17348 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
17349 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
17350 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
17351 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
17352 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
17353 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
17354 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
17355 F:      drivers/clk/keystone/sci-clk.c
17356 F:      drivers/firmware/ti_sci*
17357 F:      drivers/irqchip/irq-ti-sci-inta.c
17358 F:      drivers/irqchip/irq-ti-sci-intr.c
17359 F:      drivers/reset/reset-ti-sci.c
17360 F:      drivers/soc/ti/ti_sci_inta_msi.c
17361 F:      drivers/soc/ti/ti_sci_pm_domains.c
17362 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
17363 F:      include/linux/soc/ti/ti_sci_inta_msi.h
17364 F:      include/linux/soc/ti/ti_sci_protocol.h
17365
17366 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
17367 M:      Hans Verkuil <hverkuil@xs4all.nl>
17368 L:      linux-media@vger.kernel.org
17369 S:      Maintained
17370 W:      https://linuxtv.org
17371 T:      git git://linuxtv.org/media_tree.git
17372 F:      drivers/media/radio/radio-raremono.c
17373
17374 THERMAL
17375 M:      Zhang Rui <rui.zhang@intel.com>
17376 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
17377 R:      Amit Kucheria <amitk@kernel.org>
17378 L:      linux-pm@vger.kernel.org
17379 S:      Supported
17380 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
17382 F:      Documentation/devicetree/bindings/thermal/
17383 F:      drivers/thermal/
17384 F:      include/linux/cpu_cooling.h
17385 F:      include/linux/thermal.h
17386 F:      include/uapi/linux/thermal.h
17387
17388 THERMAL DRIVER FOR AMLOGIC SOCS
17389 M:      Guillaume La Roque <glaroque@baylibre.com>
17390 L:      linux-pm@vger.kernel.org
17391 L:      linux-amlogic@lists.infradead.org
17392 S:      Supported
17393 W:      http://linux-meson.com/
17394 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
17395 F:      drivers/thermal/amlogic_thermal.c
17396
17397 THERMAL/CPU_COOLING
17398 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
17399 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
17400 M:      Viresh Kumar <viresh.kumar@linaro.org>
17401 M:      Javi Merino <javi.merino@kernel.org>
17402 L:      linux-pm@vger.kernel.org
17403 S:      Supported
17404 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
17405 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
17406 F:      drivers/thermal/cpufreq_cooling.c
17407 F:      drivers/thermal/cpuidle_cooling.c
17408 F:      include/linux/cpu_cooling.h
17409
17410 THERMAL/POWER_ALLOCATOR
17411 M:      Lukasz Luba <lukasz.luba@arm.com>
17412 L:      linux-pm@vger.kernel.org
17413 S:      Maintained
17414 F:      Documentation/driver-api/thermal/power_allocator.rst
17415 F:      drivers/thermal/gov_power_allocator.c
17416 F:      include/trace/events/thermal_power_allocator.h
17417
17418 THINKPAD ACPI EXTRAS DRIVER
17419 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
17420 L:      ibm-acpi-devel@lists.sourceforge.net
17421 L:      platform-driver-x86@vger.kernel.org
17422 S:      Maintained
17423 W:      http://ibm-acpi.sourceforge.net
17424 W:      http://thinkwiki.org/wiki/Ibm-acpi
17425 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
17426 F:      drivers/platform/x86/thinkpad_acpi.c
17427
17428 THUNDERBOLT DRIVER
17429 M:      Andreas Noever <andreas.noever@gmail.com>
17430 M:      Michael Jamet <michael.jamet@intel.com>
17431 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
17432 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
17433 L:      linux-usb@vger.kernel.org
17434 S:      Maintained
17435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
17436 F:      Documentation/admin-guide/thunderbolt.rst
17437 F:      drivers/thunderbolt/
17438 F:      include/linux/thunderbolt.h
17439
17440 THUNDERBOLT NETWORK DRIVER
17441 M:      Michael Jamet <michael.jamet@intel.com>
17442 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
17443 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
17444 L:      netdev@vger.kernel.org
17445 S:      Maintained
17446 F:      drivers/net/thunderbolt.c
17447
17448 THUNDERX GPIO DRIVER
17449 M:      Robert Richter <rric@kernel.org>
17450 S:      Odd Fixes
17451 F:      drivers/gpio/gpio-thunderx.c
17452
17453 TI AM437X VPFE DRIVER
17454 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17455 L:      linux-media@vger.kernel.org
17456 S:      Maintained
17457 W:      https://linuxtv.org
17458 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17459 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17460 F:      drivers/media/platform/am437x/
17461
17462 TI BANDGAP AND THERMAL DRIVER
17463 M:      Eduardo Valentin <edubezval@gmail.com>
17464 M:      Keerthy <j-keerthy@ti.com>
17465 L:      linux-pm@vger.kernel.org
17466 L:      linux-omap@vger.kernel.org
17467 S:      Maintained
17468 F:      drivers/thermal/ti-soc-thermal/
17469
17470 TI BQ27XXX POWER SUPPLY DRIVER
17471 R:      Dan Murphy <dmurphy@ti.com>
17472 F:      drivers/power/supply/bq27xxx_battery.c
17473 F:      drivers/power/supply/bq27xxx_battery_i2c.c
17474 F:      include/linux/power/bq27xxx_battery.h
17475
17476 TI CDCE706 CLOCK DRIVER
17477 M:      Max Filippov <jcmvbkbc@gmail.com>
17478 S:      Maintained
17479 F:      drivers/clk/clk-cdce706.c
17480
17481 TI CLOCK DRIVER
17482 M:      Tero Kristo <t-kristo@ti.com>
17483 L:      linux-omap@vger.kernel.org
17484 S:      Maintained
17485 F:      drivers/clk/ti/
17486 F:      include/linux/clk/ti.h
17487
17488 TI DAVINCI MACHINE SUPPORT
17489 M:      Sekhar Nori <nsekhar@ti.com>
17490 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
17491 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17492 S:      Supported
17493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
17494 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
17495 F:      arch/arm/boot/dts/da850*
17496 F:      arch/arm/mach-davinci/
17497 F:      drivers/i2c/busses/i2c-davinci.c
17498
17499 TI DAVINCI SERIES CLOCK DRIVER
17500 M:      David Lechner <david@lechnology.com>
17501 R:      Sekhar Nori <nsekhar@ti.com>
17502 S:      Maintained
17503 F:      Documentation/devicetree/bindings/clock/ti/davinci/
17504 F:      drivers/clk/davinci/
17505
17506 TI DAVINCI SERIES GPIO DRIVER
17507 M:      Keerthy <j-keerthy@ti.com>
17508 L:      linux-gpio@vger.kernel.org
17509 S:      Maintained
17510 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
17511 F:      drivers/gpio/gpio-davinci.c
17512
17513 TI DAVINCI SERIES MEDIA DRIVER
17514 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17515 L:      linux-media@vger.kernel.org
17516 S:      Maintained
17517 W:      https://linuxtv.org
17518 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17519 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17520 F:      drivers/media/platform/davinci/
17521 F:      include/media/davinci/
17522
17523 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
17524 R:      David Lechner <david@lechnology.com>
17525 L:      linux-iio@vger.kernel.org
17526 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
17527 F:      drivers/counter/ti-eqep.c
17528
17529 TI ETHERNET SWITCH DRIVER (CPSW)
17530 R:      Grygorii Strashko <grygorii.strashko@ti.com>
17531 L:      linux-omap@vger.kernel.org
17532 L:      netdev@vger.kernel.org
17533 S:      Maintained
17534 F:      drivers/net/ethernet/ti/cpsw*
17535 F:      drivers/net/ethernet/ti/davinci*
17536
17537 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
17538 M:      Alex Dubov <oakad@yahoo.com>
17539 S:      Maintained
17540 W:      http://tifmxx.berlios.de/
17541 F:      drivers/memstick/host/tifm_ms.c
17542 F:      drivers/misc/tifm*
17543 F:      drivers/mmc/host/tifm_sd.c
17544 F:      include/linux/tifm.h
17545
17546 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
17547 M:      Santosh Shilimkar <ssantosh@kernel.org>
17548 L:      linux-kernel@vger.kernel.org
17549 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17550 S:      Maintained
17551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
17552 F:      drivers/soc/ti/*
17553
17554 TI LM49xxx FAMILY ASoC CODEC DRIVERS
17555 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
17556 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
17557 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17558 S:      Maintained
17559 F:      sound/soc/codecs/isabelle*
17560 F:      sound/soc/codecs/lm49453*
17561
17562 TI LP855x BACKLIGHT DRIVER
17563 M:      Milo Kim <milo.kim@ti.com>
17564 S:      Maintained
17565 F:      Documentation/driver-api/backlight/lp855x-driver.rst
17566 F:      drivers/video/backlight/lp855x_bl.c
17567 F:      include/linux/platform_data/lp855x.h
17568
17569 TI LP8727 CHARGER DRIVER
17570 M:      Milo Kim <milo.kim@ti.com>
17571 S:      Maintained
17572 F:      drivers/power/supply/lp8727_charger.c
17573 F:      include/linux/platform_data/lp8727.h
17574
17575 TI LP8788 MFD DRIVER
17576 M:      Milo Kim <milo.kim@ti.com>
17577 S:      Maintained
17578 F:      drivers/iio/adc/lp8788_adc.c
17579 F:      drivers/leds/leds-lp8788.c
17580 F:      drivers/mfd/lp8788*.c
17581 F:      drivers/power/supply/lp8788-charger.c
17582 F:      drivers/regulator/lp8788-*.c
17583 F:      include/linux/mfd/lp8788*.h
17584
17585 TI NETCP ETHERNET DRIVER
17586 M:      Wingman Kwok <w-kwok2@ti.com>
17587 M:      Murali Karicheri <m-karicheri2@ti.com>
17588 L:      netdev@vger.kernel.org
17589 S:      Maintained
17590 F:      drivers/net/ethernet/ti/netcp*
17591
17592 TI PCM3060 ASoC CODEC DRIVER
17593 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
17594 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17595 S:      Maintained
17596 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
17597 F:      sound/soc/codecs/pcm3060*
17598
17599 TI TAS571X FAMILY ASoC CODEC DRIVER
17600 M:      Kevin Cernekee <cernekee@chromium.org>
17601 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17602 S:      Odd Fixes
17603 F:      sound/soc/codecs/tas571x*
17604
17605 TI TCAN4X5X DEVICE DRIVER
17606 M:      Dan Murphy <dmurphy@ti.com>
17607 L:      linux-can@vger.kernel.org
17608 S:      Maintained
17609 F:      Documentation/devicetree/bindings/net/can/tcan4x5x.txt
17610 F:      drivers/net/can/m_can/tcan4x5x.c
17611
17612 TI TRF7970A NFC DRIVER
17613 M:      Mark Greer <mgreer@animalcreek.com>
17614 L:      linux-wireless@vger.kernel.org
17615 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
17616 S:      Supported
17617 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
17618 F:      drivers/nfc/trf7970a.c
17619
17620 TI TWL4030 SERIES SOC CODEC DRIVER
17621 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
17622 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17623 S:      Maintained
17624 F:      sound/soc/codecs/twl4030*
17625
17626 TI VPE/CAL DRIVERS
17627 M:      Benoit Parrot <bparrot@ti.com>
17628 L:      linux-media@vger.kernel.org
17629 S:      Maintained
17630 W:      http://linuxtv.org/
17631 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17632 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
17633 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
17634 F:      drivers/media/platform/ti-vpe/
17635
17636 TI WILINK WIRELESS DRIVERS
17637 L:      linux-wireless@vger.kernel.org
17638 S:      Orphan
17639 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
17640 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
17641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
17642 F:      drivers/net/wireless/ti/
17643 F:      include/linux/wl12xx.h
17644
17645 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
17646 M:      John Stultz <john.stultz@linaro.org>
17647 M:      Thomas Gleixner <tglx@linutronix.de>
17648 R:      Stephen Boyd <sboyd@kernel.org>
17649 L:      linux-kernel@vger.kernel.org
17650 S:      Supported
17651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
17652 F:      include/linux/clocksource.h
17653 F:      include/linux/time.h
17654 F:      include/linux/timex.h
17655 F:      include/uapi/linux/time.h
17656 F:      include/uapi/linux/timex.h
17657 F:      kernel/time/alarmtimer.c
17658 F:      kernel/time/clocksource.c
17659 F:      kernel/time/ntp.c
17660 F:      kernel/time/time*.c
17661 F:      tools/testing/selftests/timers/
17662
17663 TIPC NETWORK LAYER
17664 M:      Jon Maloy <jmaloy@redhat.com>
17665 M:      Ying Xue <ying.xue@windriver.com>
17666 L:      netdev@vger.kernel.org (core kernel code)
17667 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
17668 S:      Maintained
17669 W:      http://tipc.sourceforge.net/
17670 F:      include/uapi/linux/tipc*.h
17671 F:      net/tipc/
17672
17673 TLAN NETWORK DRIVER
17674 M:      Samuel Chessman <chessman@tux.org>
17675 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
17676 S:      Maintained
17677 W:      http://sourceforge.net/projects/tlan/
17678 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
17679 F:      drivers/net/ethernet/ti/tlan.*
17680
17681 TM6000 VIDEO4LINUX DRIVER
17682 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17683 L:      linux-media@vger.kernel.org
17684 S:      Odd fixes
17685 W:      https://linuxtv.org
17686 T:      git git://linuxtv.org/media_tree.git
17687 F:      Documentation/admin-guide/media/tm6000*
17688 F:      drivers/media/usb/tm6000/
17689
17690 TMIO/SDHI MMC DRIVER
17691 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17692 L:      linux-mmc@vger.kernel.org
17693 S:      Supported
17694 F:      drivers/mmc/host/renesas_sdhi*
17695 F:      drivers/mmc/host/tmio_mmc*
17696 F:      include/linux/mfd/tmio.h
17697
17698 TMP401 HARDWARE MONITOR DRIVER
17699 M:      Guenter Roeck <linux@roeck-us.net>
17700 L:      linux-hwmon@vger.kernel.org
17701 S:      Maintained
17702 F:      Documentation/hwmon/tmp401.rst
17703 F:      drivers/hwmon/tmp401.c
17704
17705 TMP513 HARDWARE MONITOR DRIVER
17706 M:      Eric Tremblay <etremblay@distech-controls.com>
17707 L:      linux-hwmon@vger.kernel.org
17708 S:      Maintained
17709 F:      Documentation/hwmon/tmp513.rst
17710 F:      drivers/hwmon/tmp513.c
17711
17712 TMPFS (SHMEM FILESYSTEM)
17713 M:      Hugh Dickins <hughd@google.com>
17714 L:      linux-mm@kvack.org
17715 S:      Maintained
17716 F:      include/linux/shmem_fs.h
17717 F:      mm/shmem.c
17718
17719 TOMOYO SECURITY MODULE
17720 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
17721 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
17722 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
17723 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
17724 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
17725 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
17726 S:      Maintained
17727 W:      https://tomoyo.osdn.jp/
17728 F:      security/tomoyo/
17729
17730 TOPSTAR LAPTOP EXTRAS DRIVER
17731 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17732 L:      platform-driver-x86@vger.kernel.org
17733 S:      Maintained
17734 F:      drivers/platform/x86/topstar-laptop.c
17735
17736 TORTURE-TEST MODULES
17737 M:      Davidlohr Bueso <dave@stgolabs.net>
17738 M:      "Paul E. McKenney" <paulmck@kernel.org>
17739 M:      Josh Triplett <josh@joshtriplett.org>
17740 L:      linux-kernel@vger.kernel.org
17741 S:      Supported
17742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17743 F:      Documentation/RCU/torture.rst
17744 F:      kernel/locking/locktorture.c
17745 F:      kernel/rcu/rcuscale.c
17746 F:      kernel/rcu/rcutorture.c
17747 F:      kernel/rcu/refscale.c
17748 F:      kernel/torture.c
17749
17750 TOSHIBA ACPI EXTRAS DRIVER
17751 M:      Azael Avalos <coproscefalo@gmail.com>
17752 L:      platform-driver-x86@vger.kernel.org
17753 S:      Maintained
17754 F:      drivers/platform/x86/toshiba_acpi.c
17755
17756 TOSHIBA BLUETOOTH DRIVER
17757 M:      Azael Avalos <coproscefalo@gmail.com>
17758 L:      platform-driver-x86@vger.kernel.org
17759 S:      Maintained
17760 F:      drivers/platform/x86/toshiba_bluetooth.c
17761
17762 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
17763 M:      Azael Avalos <coproscefalo@gmail.com>
17764 L:      platform-driver-x86@vger.kernel.org
17765 S:      Maintained
17766 F:      drivers/platform/x86/toshiba_haps.c
17767
17768 TOSHIBA SMM DRIVER
17769 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
17770 S:      Maintained
17771 W:      http://www.buzzard.org.uk/toshiba/
17772 F:      drivers/char/toshiba.c
17773 F:      include/linux/toshiba.h
17774 F:      include/uapi/linux/toshiba.h
17775
17776 TOSHIBA TC358743 DRIVER
17777 M:      Mats Randgaard <matrandg@cisco.com>
17778 L:      linux-media@vger.kernel.org
17779 S:      Maintained
17780 F:      drivers/media/i2c/tc358743*
17781 F:      include/media/i2c/tc358743.h
17782
17783 TOSHIBA WMI HOTKEYS DRIVER
17784 M:      Azael Avalos <coproscefalo@gmail.com>
17785 L:      platform-driver-x86@vger.kernel.org
17786 S:      Maintained
17787 F:      drivers/platform/x86/toshiba-wmi.c
17788
17789 TPM DEVICE DRIVER
17790 M:      Peter Huewe <peterhuewe@gmx.de>
17791 M:      Jarkko Sakkinen <jarkko@kernel.org>
17792 R:      Jason Gunthorpe <jgg@ziepe.ca>
17793 L:      linux-integrity@vger.kernel.org
17794 S:      Maintained
17795 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
17796 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
17797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
17798 F:      drivers/char/tpm/
17799
17800 TRACING
17801 M:      Steven Rostedt <rostedt@goodmis.org>
17802 M:      Ingo Molnar <mingo@redhat.com>
17803 S:      Maintained
17804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
17805 F:      Documentation/trace/ftrace.rst
17806 F:      arch/*/*/*/ftrace.h
17807 F:      arch/*/kernel/ftrace.c
17808 F:      include/*/ftrace.h
17809 F:      include/linux/trace*.h
17810 F:      include/trace/
17811 F:      kernel/trace/
17812 F:      tools/testing/selftests/ftrace/
17813
17814 TRACING MMIO ACCESSES (MMIOTRACE)
17815 M:      Steven Rostedt <rostedt@goodmis.org>
17816 M:      Ingo Molnar <mingo@kernel.org>
17817 R:      Karol Herbst <karolherbst@gmail.com>
17818 R:      Pekka Paalanen <ppaalanen@gmail.com>
17819 L:      linux-kernel@vger.kernel.org
17820 L:      nouveau@lists.freedesktop.org
17821 S:      Maintained
17822 F:      arch/x86/mm/kmmio.c
17823 F:      arch/x86/mm/mmio-mod.c
17824 F:      arch/x86/mm/testmmiotrace.c
17825 F:      include/linux/mmiotrace.h
17826 F:      kernel/trace/trace_mmiotrace.c
17827
17828 TRIVIAL PATCHES
17829 M:      Jiri Kosina <trivial@kernel.org>
17830 S:      Maintained
17831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
17832 K:      ^Subject:.*(?i)trivial
17833
17834 TTY LAYER
17835 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17836 M:      Jiri Slaby <jirislaby@kernel.org>
17837 S:      Supported
17838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
17839 F:      Documentation/driver-api/serial/
17840 F:      drivers/tty/
17841 F:      drivers/tty/serial/serial_core.c
17842 F:      include/linux/serial.h
17843 F:      include/linux/serial_core.h
17844 F:      include/linux/tty.h
17845 F:      include/uapi/linux/serial.h
17846 F:      include/uapi/linux/serial_core.h
17847 F:      include/uapi/linux/tty.h
17848
17849 TUA9001 MEDIA DRIVER
17850 M:      Antti Palosaari <crope@iki.fi>
17851 L:      linux-media@vger.kernel.org
17852 S:      Maintained
17853 W:      https://linuxtv.org
17854 W:      http://palosaari.fi/linux/
17855 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17856 T:      git git://linuxtv.org/anttip/media_tree.git
17857 F:      drivers/media/tuners/tua9001*
17858
17859 TULIP NETWORK DRIVERS
17860 L:      netdev@vger.kernel.org
17861 L:      linux-parisc@vger.kernel.org
17862 S:      Orphan
17863 F:      drivers/net/ethernet/dec/tulip/
17864
17865 TUN/TAP driver
17866 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
17867 S:      Maintained
17868 W:      http://vtun.sourceforge.net/tun
17869 F:      Documentation/networking/tuntap.rst
17870 F:      arch/um/os-Linux/drivers/
17871
17872 TURBOCHANNEL SUBSYSTEM
17873 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
17874 M:      Ralf Baechle <ralf@linux-mips.org>
17875 L:      linux-mips@vger.kernel.org
17876 S:      Maintained
17877 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
17878 F:      drivers/tc/
17879 F:      include/linux/tc.h
17880
17881 TURBOSTAT UTILITY
17882 M:      "Len Brown" <lenb@kernel.org>
17883 L:      linux-pm@vger.kernel.org
17884 S:      Supported
17885 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17886 B:      https://bugzilla.kernel.org
17887 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
17888 F:      tools/power/x86/turbostat/
17889
17890 TW5864 VIDEO4LINUX DRIVER
17891 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17892 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17893 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
17894 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17895 L:      linux-media@vger.kernel.org
17896 S:      Supported
17897 F:      drivers/media/pci/tw5864/
17898
17899 TW68 VIDEO4LINUX DRIVER
17900 M:      Hans Verkuil <hverkuil@xs4all.nl>
17901 L:      linux-media@vger.kernel.org
17902 S:      Odd Fixes
17903 W:      https://linuxtv.org
17904 T:      git git://linuxtv.org/media_tree.git
17905 F:      drivers/media/pci/tw68/
17906
17907 TW686X VIDEO4LINUX DRIVER
17908 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17909 L:      linux-media@vger.kernel.org
17910 S:      Maintained
17911 W:      http://linuxtv.org
17912 T:      git git://linuxtv.org/media_tree.git
17913 F:      drivers/media/pci/tw686x/
17914
17915 UACCE ACCELERATOR FRAMEWORK
17916 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
17917 M:      Zhou Wang <wangzhou1@hisilicon.com>
17918 L:      linux-accelerators@lists.ozlabs.org
17919 L:      linux-kernel@vger.kernel.org
17920 S:      Maintained
17921 F:      Documentation/ABI/testing/sysfs-driver-uacce
17922 F:      Documentation/misc-devices/uacce.rst
17923 F:      drivers/misc/uacce/
17924 F:      include/linux/uacce.h
17925 F:      include/uapi/misc/uacce/
17926
17927 UBI FILE SYSTEM (UBIFS)
17928 M:      Richard Weinberger <richard@nod.at>
17929 L:      linux-mtd@lists.infradead.org
17930 S:      Supported
17931 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
17932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17934 F:      Documentation/filesystems/ubifs-authentication.rst
17935 F:      Documentation/filesystems/ubifs.rst
17936 F:      fs/ubifs/
17937
17938 UCLINUX (M68KNOMMU AND COLDFIRE)
17939 M:      Greg Ungerer <gerg@linux-m68k.org>
17940 L:      linux-m68k@lists.linux-m68k.org
17941 L:      uclinux-dev@uclinux.org  (subscribers-only)
17942 S:      Maintained
17943 W:      http://www.linux-m68k.org/
17944 W:      http://www.uclinux.org/
17945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
17946 F:      arch/m68k/*/*_no.*
17947 F:      arch/m68k/68*/
17948 F:      arch/m68k/coldfire/
17949 F:      arch/m68k/include/asm/*_no.*
17950
17951 UDF FILESYSTEM
17952 M:      Jan Kara <jack@suse.com>
17953 S:      Maintained
17954 F:      Documentation/filesystems/udf.rst
17955 F:      fs/udf/
17956
17957 UDRAW TABLET
17958 M:      Bastien Nocera <hadess@hadess.net>
17959 L:      linux-input@vger.kernel.org
17960 S:      Maintained
17961 F:      drivers/hid/hid-udraw-ps3.c
17962
17963 UFS FILESYSTEM
17964 M:      Evgeniy Dushistov <dushistov@mail.ru>
17965 S:      Maintained
17966 F:      Documentation/admin-guide/ufs.rst
17967 F:      fs/ufs/
17968
17969 UHID USERSPACE HID IO DRIVER
17970 M:      David Rheinsberg <david.rheinsberg@gmail.com>
17971 L:      linux-input@vger.kernel.org
17972 S:      Maintained
17973 F:      drivers/hid/uhid.c
17974 F:      include/uapi/linux/uhid.h
17975
17976 ULPI BUS
17977 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17978 L:      linux-usb@vger.kernel.org
17979 S:      Maintained
17980 F:      drivers/usb/common/ulpi.c
17981 F:      include/linux/ulpi/
17982
17983 UNICODE SUBSYSTEM
17984 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
17985 L:      linux-fsdevel@vger.kernel.org
17986 S:      Supported
17987 F:      fs/unicode/
17988
17989 UNIFDEF
17990 M:      Tony Finch <dot@dotat.at>
17991 S:      Maintained
17992 W:      http://dotat.at/prog/unifdef
17993 F:      scripts/unifdef.c
17994
17995 UNIFORM CDROM DRIVER
17996 M:      Jens Axboe <axboe@kernel.dk>
17997 S:      Maintained
17998 W:      http://www.kernel.dk
17999 F:      Documentation/cdrom/
18000 F:      drivers/cdrom/cdrom.c
18001 F:      include/linux/cdrom.h
18002 F:      include/uapi/linux/cdrom.h
18003
18004 UNISYS S-PAR DRIVERS
18005 M:      David Kershner <david.kershner@unisys.com>
18006 L:      sparmaintainer@unisys.com (Unisys internal)
18007 S:      Supported
18008 F:      drivers/staging/unisys/
18009 F:      drivers/visorbus/
18010 F:      include/linux/visorbus.h
18011
18012 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
18013 R:      Alim Akhtar <alim.akhtar@samsung.com>
18014 R:      Avri Altman <avri.altman@wdc.com>
18015 L:      linux-scsi@vger.kernel.org
18016 S:      Supported
18017 F:      Documentation/scsi/ufs.rst
18018 F:      drivers/scsi/ufs/
18019
18020 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
18021 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
18022 L:      linux-scsi@vger.kernel.org
18023 S:      Supported
18024 F:      drivers/scsi/ufs/*dwc*
18025
18026 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
18027 M:      Stanley Chu <stanley.chu@mediatek.com>
18028 L:      linux-scsi@vger.kernel.org
18029 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
18030 S:      Maintained
18031 F:      drivers/scsi/ufs/ufs-mediatek*
18032
18033 UNSORTED BLOCK IMAGES (UBI)
18034 M:      Richard Weinberger <richard@nod.at>
18035 L:      linux-mtd@lists.infradead.org
18036 S:      Supported
18037 W:      http://www.linux-mtd.infradead.org/
18038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18039 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18040 F:      drivers/mtd/ubi/
18041 F:      include/linux/mtd/ubi.h
18042 F:      include/uapi/mtd/ubi-user.h
18043
18044 USB "USBNET" DRIVER FRAMEWORK
18045 M:      Oliver Neukum <oneukum@suse.com>
18046 L:      netdev@vger.kernel.org
18047 S:      Maintained
18048 W:      http://www.linux-usb.org/usbnet
18049 F:      drivers/net/usb/usbnet.c
18050 F:      include/linux/usb/usbnet.h
18051
18052 USB ACM DRIVER
18053 M:      Oliver Neukum <oneukum@suse.com>
18054 L:      linux-usb@vger.kernel.org
18055 S:      Maintained
18056 F:      Documentation/usb/acm.rst
18057 F:      drivers/usb/class/cdc-acm.*
18058
18059 USB APPLE MFI FASTCHARGE DRIVER
18060 M:      Bastien Nocera <hadess@hadess.net>
18061 L:      linux-usb@vger.kernel.org
18062 S:      Maintained
18063 F:      drivers/usb/misc/apple-mfi-fastcharge.c
18064
18065 USB AR5523 WIRELESS DRIVER
18066 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
18067 L:      linux-wireless@vger.kernel.org
18068 S:      Maintained
18069 F:      drivers/net/wireless/ath/ar5523/
18070
18071 USB ATTACHED SCSI
18072 M:      Oliver Neukum <oneukum@suse.com>
18073 L:      linux-usb@vger.kernel.org
18074 L:      linux-scsi@vger.kernel.org
18075 S:      Maintained
18076 F:      drivers/usb/storage/uas.c
18077
18078 USB CDC ETHERNET DRIVER
18079 M:      Oliver Neukum <oliver@neukum.org>
18080 L:      linux-usb@vger.kernel.org
18081 S:      Maintained
18082 F:      drivers/net/usb/cdc_*.c
18083 F:      include/uapi/linux/usb/cdc.h
18084
18085 USB CHAOSKEY DRIVER
18086 M:      Keith Packard <keithp@keithp.com>
18087 L:      linux-usb@vger.kernel.org
18088 S:      Maintained
18089 F:      drivers/usb/misc/chaoskey.c
18090
18091 USB CYPRESS C67X00 DRIVER
18092 M:      Peter Korsgaard <jacmet@sunsite.dk>
18093 L:      linux-usb@vger.kernel.org
18094 S:      Maintained
18095 F:      drivers/usb/c67x00/
18096
18097 USB DAVICOM DM9601 DRIVER
18098 M:      Peter Korsgaard <jacmet@sunsite.dk>
18099 L:      netdev@vger.kernel.org
18100 S:      Maintained
18101 W:      http://www.linux-usb.org/usbnet
18102 F:      drivers/net/usb/dm9601.c
18103
18104 USB EHCI DRIVER
18105 M:      Alan Stern <stern@rowland.harvard.edu>
18106 L:      linux-usb@vger.kernel.org
18107 S:      Maintained
18108 F:      Documentation/usb/ehci.rst
18109 F:      drivers/usb/host/ehci*
18110
18111 USB GADGET/PERIPHERAL SUBSYSTEM
18112 M:      Felipe Balbi <balbi@kernel.org>
18113 L:      linux-usb@vger.kernel.org
18114 S:      Maintained
18115 W:      http://www.linux-usb.org/gadget
18116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18117 F:      drivers/usb/gadget/
18118 F:      include/linux/usb/gadget*
18119
18120 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
18121 M:      Jiri Kosina <jikos@kernel.org>
18122 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
18123 L:      linux-usb@vger.kernel.org
18124 S:      Maintained
18125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
18126 F:      Documentation/hid/hiddev.rst
18127 F:      drivers/hid/usbhid/
18128
18129 USB INTEL XHCI ROLE MUX DRIVER
18130 M:      Hans de Goede <hdegoede@redhat.com>
18131 L:      linux-usb@vger.kernel.org
18132 S:      Maintained
18133 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
18134
18135 USB IP DRIVER FOR HISILICON KIRIN
18136 M:      Yu Chen <chenyu56@huawei.com>
18137 M:      Binghui Wang <wangbinghui@hisilicon.com>
18138 L:      linux-usb@vger.kernel.org
18139 S:      Maintained
18140 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
18141 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
18142
18143 USB ISP116X DRIVER
18144 M:      Olav Kongas <ok@artecdesign.ee>
18145 L:      linux-usb@vger.kernel.org
18146 S:      Maintained
18147 F:      drivers/usb/host/isp116x*
18148 F:      include/linux/usb/isp116x.h
18149
18150 USB LAN78XX ETHERNET DRIVER
18151 M:      Woojung Huh <woojung.huh@microchip.com>
18152 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
18153 L:      netdev@vger.kernel.org
18154 S:      Maintained
18155 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
18156 F:      drivers/net/usb/lan78xx.*
18157 F:      include/dt-bindings/net/microchip-lan78xx.h
18158
18159 USB MASS STORAGE DRIVER
18160 M:      Alan Stern <stern@rowland.harvard.edu>
18161 L:      linux-usb@vger.kernel.org
18162 L:      usb-storage@lists.one-eyed-alien.net
18163 S:      Maintained
18164 F:      drivers/usb/storage/
18165
18166 USB MIDI DRIVER
18167 M:      Clemens Ladisch <clemens@ladisch.de>
18168 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18169 S:      Maintained
18170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18171 F:      sound/usb/midi.*
18172
18173 USB NETWORKING DRIVERS
18174 L:      linux-usb@vger.kernel.org
18175 S:      Odd Fixes
18176 F:      drivers/net/usb/
18177
18178 USB OHCI DRIVER
18179 M:      Alan Stern <stern@rowland.harvard.edu>
18180 L:      linux-usb@vger.kernel.org
18181 S:      Maintained
18182 F:      Documentation/usb/ohci.rst
18183 F:      drivers/usb/host/ohci*
18184
18185 USB OTG FSM (Finite State Machine)
18186 M:      Peter Chen <Peter.Chen@nxp.com>
18187 L:      linux-usb@vger.kernel.org
18188 S:      Maintained
18189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
18190 F:      drivers/usb/common/usb-otg-fsm.c
18191
18192 USB OVER IP DRIVER
18193 M:      Valentina Manea <valentina.manea.m@gmail.com>
18194 M:      Shuah Khan <shuah@kernel.org>
18195 M:      Shuah Khan <skhan@linuxfoundation.org>
18196 L:      linux-usb@vger.kernel.org
18197 S:      Maintained
18198 F:      Documentation/usb/usbip_protocol.rst
18199 F:      drivers/usb/usbip/
18200 F:      tools/testing/selftests/drivers/usb/usbip/
18201 F:      tools/usb/usbip/
18202
18203 USB PEGASUS DRIVER
18204 M:      Petko Manolov <petkan@nucleusys.com>
18205 L:      linux-usb@vger.kernel.org
18206 L:      netdev@vger.kernel.org
18207 S:      Maintained
18208 W:      https://github.com/petkan/pegasus
18209 T:      git git://github.com/petkan/pegasus.git
18210 F:      drivers/net/usb/pegasus.*
18211
18212 USB PHY LAYER
18213 M:      Felipe Balbi <balbi@kernel.org>
18214 L:      linux-usb@vger.kernel.org
18215 S:      Maintained
18216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18217 F:      drivers/usb/phy/
18218
18219 USB PRINTER DRIVER (usblp)
18220 M:      Pete Zaitcev <zaitcev@redhat.com>
18221 L:      linux-usb@vger.kernel.org
18222 S:      Supported
18223 F:      drivers/usb/class/usblp.c
18224
18225 USB RAW GADGET DRIVER
18226 R:      Andrey Konovalov <andreyknvl@gmail.com>
18227 L:      linux-usb@vger.kernel.org
18228 S:      Maintained
18229 F:      Documentation/usb/raw-gadget.rst
18230 F:      drivers/usb/gadget/legacy/raw_gadget.c
18231 F:      include/uapi/linux/usb/raw_gadget.h
18232
18233 USB QMI WWAN NETWORK DRIVER
18234 M:      Bjørn Mork <bjorn@mork.no>
18235 L:      netdev@vger.kernel.org
18236 S:      Maintained
18237 F:      Documentation/ABI/testing/sysfs-class-net-qmi
18238 F:      drivers/net/usb/qmi_wwan.c
18239
18240 USB RTL8150 DRIVER
18241 M:      Petko Manolov <petkan@nucleusys.com>
18242 L:      linux-usb@vger.kernel.org
18243 L:      netdev@vger.kernel.org
18244 S:      Maintained
18245 W:      https://github.com/petkan/rtl8150
18246 T:      git git://github.com/petkan/rtl8150.git
18247 F:      drivers/net/usb/rtl8150.c
18248
18249 USB SERIAL SUBSYSTEM
18250 M:      Johan Hovold <johan@kernel.org>
18251 L:      linux-usb@vger.kernel.org
18252 S:      Maintained
18253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
18254 F:      Documentation/usb/usb-serial.rst
18255 F:      drivers/usb/serial/
18256 F:      include/linux/usb/serial.h
18257
18258 USB SMSC75XX ETHERNET DRIVER
18259 M:      Steve Glendinning <steve.glendinning@shawell.net>
18260 L:      netdev@vger.kernel.org
18261 S:      Maintained
18262 F:      drivers/net/usb/smsc75xx.*
18263
18264 USB SMSC95XX ETHERNET DRIVER
18265 M:      Steve Glendinning <steve.glendinning@shawell.net>
18266 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
18267 L:      netdev@vger.kernel.org
18268 S:      Maintained
18269 F:      drivers/net/usb/smsc95xx.*
18270
18271 USB SUBSYSTEM
18272 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18273 L:      linux-usb@vger.kernel.org
18274 S:      Supported
18275 W:      http://www.linux-usb.org
18276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
18277 F:      Documentation/devicetree/bindings/usb/
18278 F:      Documentation/usb/
18279 F:      drivers/usb/
18280 F:      include/linux/usb.h
18281 F:      include/linux/usb/
18282
18283 USB TYPEC BUS FOR ALTERNATE MODES
18284 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18285 L:      linux-usb@vger.kernel.org
18286 S:      Maintained
18287 F:      Documentation/ABI/testing/sysfs-bus-typec
18288 F:      Documentation/driver-api/usb/typec_bus.rst
18289 F:      drivers/usb/typec/altmodes/
18290 F:      include/linux/usb/typec_altmode.h
18291
18292 USB TYPEC CLASS
18293 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18294 L:      linux-usb@vger.kernel.org
18295 S:      Maintained
18296 F:      Documentation/ABI/testing/sysfs-class-typec
18297 F:      Documentation/driver-api/usb/typec.rst
18298 F:      drivers/usb/typec/
18299 F:      include/linux/usb/typec.h
18300
18301 USB TYPEC INTEL PMC MUX DRIVER
18302 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18303 L:      linux-usb@vger.kernel.org
18304 S:      Maintained
18305 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
18306 F:      drivers/usb/typec/mux/intel_pmc_mux.c
18307
18308 USB TYPEC PI3USB30532 MUX DRIVER
18309 M:      Hans de Goede <hdegoede@redhat.com>
18310 L:      linux-usb@vger.kernel.org
18311 S:      Maintained
18312 F:      drivers/usb/typec/mux/pi3usb30532.c
18313
18314 USB TYPEC PORT CONTROLLER DRIVERS
18315 M:      Guenter Roeck <linux@roeck-us.net>
18316 L:      linux-usb@vger.kernel.org
18317 S:      Maintained
18318 F:      drivers/usb/typec/tcpm/
18319
18320 USB UHCI DRIVER
18321 M:      Alan Stern <stern@rowland.harvard.edu>
18322 L:      linux-usb@vger.kernel.org
18323 S:      Maintained
18324 F:      drivers/usb/host/uhci*
18325
18326 USB VIDEO CLASS
18327 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18328 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
18329 L:      linux-media@vger.kernel.org
18330 S:      Maintained
18331 W:      http://www.ideasonboard.org/uvc/
18332 T:      git git://linuxtv.org/media_tree.git
18333 F:      drivers/media/usb/uvc/
18334 F:      include/uapi/linux/uvcvideo.h
18335
18336 USB WEBCAM GADGET
18337 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18338 L:      linux-usb@vger.kernel.org
18339 S:      Maintained
18340 F:      drivers/usb/gadget/function/*uvc*
18341 F:      drivers/usb/gadget/legacy/webcam.c
18342 F:      include/uapi/linux/usb/g_uvc.h
18343
18344 USB WIRELESS RNDIS DRIVER (rndis_wlan)
18345 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
18346 L:      linux-wireless@vger.kernel.org
18347 S:      Maintained
18348 F:      drivers/net/wireless/rndis_wlan.c
18349
18350 USB XHCI DRIVER
18351 M:      Mathias Nyman <mathias.nyman@intel.com>
18352 L:      linux-usb@vger.kernel.org
18353 S:      Supported
18354 F:      drivers/usb/host/pci-quirks*
18355 F:      drivers/usb/host/xhci*
18356
18357 USB ZD1201 DRIVER
18358 L:      linux-wireless@vger.kernel.org
18359 S:      Orphan
18360 W:      http://linux-lc100020.sourceforge.net
18361 F:      drivers/net/wireless/zydas/zd1201.*
18362
18363 USB ZR364XX DRIVER
18364 M:      Antoine Jacquet <royale@zerezo.com>
18365 L:      linux-usb@vger.kernel.org
18366 L:      linux-media@vger.kernel.org
18367 S:      Maintained
18368 W:      http://royale.zerezo.com/zr364xx/
18369 T:      git git://linuxtv.org/media_tree.git
18370 F:      Documentation/admin-guide/media/zr364xx*
18371 F:      drivers/media/usb/zr364xx/
18372
18373 USER-MODE LINUX (UML)
18374 M:      Jeff Dike <jdike@addtoit.com>
18375 M:      Richard Weinberger <richard@nod.at>
18376 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
18377 L:      linux-um@lists.infradead.org
18378 S:      Maintained
18379 W:      http://user-mode-linux.sourceforge.net
18380 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
18381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
18382 F:      Documentation/virt/uml/
18383 F:      arch/um/
18384 F:      arch/x86/um/
18385 F:      fs/hostfs/
18386
18387 USERSPACE COPYIN/COPYOUT (UIOVEC)
18388 M:      Alexander Viro <viro@zeniv.linux.org.uk>
18389 S:      Maintained
18390 F:      include/linux/uio.h
18391 F:      lib/iov_iter.c
18392
18393 USERSPACE DMA BUFFER DRIVER
18394 M:      Gerd Hoffmann <kraxel@redhat.com>
18395 L:      dri-devel@lists.freedesktop.org
18396 S:      Maintained
18397 T:      git git://anongit.freedesktop.org/drm/drm-misc
18398 F:      drivers/dma-buf/udmabuf.c
18399 F:      include/uapi/linux/udmabuf.h
18400
18401 USERSPACE I/O (UIO)
18402 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18403 S:      Maintained
18404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18405 F:      Documentation/driver-api/uio-howto.rst
18406 F:      drivers/uio/
18407 F:      include/linux/uio_driver.h
18408
18409 UTIL-LINUX PACKAGE
18410 M:      Karel Zak <kzak@redhat.com>
18411 L:      util-linux@vger.kernel.org
18412 S:      Maintained
18413 W:      http://en.wikipedia.org/wiki/Util-linux
18414 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
18415
18416 UUID HELPERS
18417 M:      Christoph Hellwig <hch@lst.de>
18418 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18419 L:      linux-kernel@vger.kernel.org
18420 S:      Maintained
18421 T:      git git://git.infradead.org/users/hch/uuid.git
18422 F:      include/linux/uuid.h
18423 F:      include/uapi/linux/uuid.h
18424 F:      lib/test_uuid.c
18425 F:      lib/uuid.c
18426
18427 UVESAFB DRIVER
18428 M:      Michal Januszewski <spock@gentoo.org>
18429 L:      linux-fbdev@vger.kernel.org
18430 S:      Maintained
18431 W:      https://github.com/mjanusz/v86d
18432 F:      Documentation/fb/uvesafb.rst
18433 F:      drivers/video/fbdev/uvesafb.*
18434
18435 Ux500 CLOCK DRIVERS
18436 M:      Ulf Hansson <ulf.hansson@linaro.org>
18437 L:      linux-clk@vger.kernel.org
18438 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18439 S:      Maintained
18440 F:      drivers/clk/ux500/
18441
18442 VF610 NAND DRIVER
18443 M:      Stefan Agner <stefan@agner.ch>
18444 L:      linux-mtd@lists.infradead.org
18445 S:      Supported
18446 F:      drivers/mtd/nand/raw/vf610_nfc.c
18447
18448 VFAT/FAT/MSDOS FILESYSTEM
18449 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
18450 S:      Maintained
18451 F:      Documentation/filesystems/vfat.rst
18452 F:      fs/fat/
18453
18454 VFIO DRIVER
18455 M:      Alex Williamson <alex.williamson@redhat.com>
18456 R:      Cornelia Huck <cohuck@redhat.com>
18457 L:      kvm@vger.kernel.org
18458 S:      Maintained
18459 T:      git git://github.com/awilliam/linux-vfio.git
18460 F:      Documentation/driver-api/vfio.rst
18461 F:      drivers/vfio/
18462 F:      include/linux/vfio.h
18463 F:      include/uapi/linux/vfio.h
18464
18465 VFIO FSL-MC DRIVER
18466 M:      Diana Craciun <diana.craciun@oss.nxp.com>
18467 L:      kvm@vger.kernel.org
18468 S:      Maintained
18469 F:      drivers/vfio/fsl-mc/
18470
18471 VFIO MEDIATED DEVICE DRIVERS
18472 M:      Kirti Wankhede <kwankhede@nvidia.com>
18473 L:      kvm@vger.kernel.org
18474 S:      Maintained
18475 F:      Documentation/driver-api/vfio-mediated-device.rst
18476 F:      drivers/vfio/mdev/
18477 F:      include/linux/mdev.h
18478 F:      samples/vfio-mdev/
18479
18480 VFIO PLATFORM DRIVER
18481 M:      Eric Auger <eric.auger@redhat.com>
18482 L:      kvm@vger.kernel.org
18483 S:      Maintained
18484 F:      drivers/vfio/platform/
18485
18486 VGA_SWITCHEROO
18487 R:      Lukas Wunner <lukas@wunner.de>
18488 S:      Maintained
18489 T:      git git://anongit.freedesktop.org/drm/drm-misc
18490 F:      Documentation/gpu/vga-switcheroo.rst
18491 F:      drivers/gpu/vga/vga_switcheroo.c
18492 F:      include/linux/vga_switcheroo.h
18493
18494 VIA RHINE NETWORK DRIVER
18495 S:      Maintained
18496 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
18497 F:      drivers/net/ethernet/via/via-rhine.c
18498
18499 VIA SD/MMC CARD CONTROLLER DRIVER
18500 M:      Bruce Chang <brucechang@via.com.tw>
18501 M:      Harald Welte <HaraldWelte@viatech.com>
18502 S:      Maintained
18503 F:      drivers/mmc/host/via-sdmmc.c
18504
18505 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
18506 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
18507 L:      linux-fbdev@vger.kernel.org
18508 S:      Maintained
18509 F:      drivers/video/fbdev/via/
18510 F:      include/linux/via-core.h
18511 F:      include/linux/via-gpio.h
18512 F:      include/linux/via_i2c.h
18513
18514 VIA VELOCITY NETWORK DRIVER
18515 M:      Francois Romieu <romieu@fr.zoreil.com>
18516 L:      netdev@vger.kernel.org
18517 S:      Maintained
18518 F:      drivers/net/ethernet/via/via-velocity.*
18519
18520 VICODEC VIRTUAL CODEC DRIVER
18521 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
18522 L:      linux-media@vger.kernel.org
18523 S:      Maintained
18524 W:      https://linuxtv.org
18525 T:      git git://linuxtv.org/media_tree.git
18526 F:      drivers/media/test-drivers/vicodec/*
18527
18528 VIDEO I2C POLLING DRIVER
18529 M:      Matt Ranostay <matt.ranostay@konsulko.com>
18530 L:      linux-media@vger.kernel.org
18531 S:      Maintained
18532 F:      drivers/media/i2c/video-i2c.c
18533
18534 VIDEO MULTIPLEXER DRIVER
18535 M:      Philipp Zabel <p.zabel@pengutronix.de>
18536 L:      linux-media@vger.kernel.org
18537 S:      Maintained
18538 F:      drivers/media/platform/video-mux.c
18539
18540 VIDEOBUF2 FRAMEWORK
18541 M:      Tomasz Figa <tfiga@chromium.org>
18542 M:      Marek Szyprowski <m.szyprowski@samsung.com>
18543 L:      linux-media@vger.kernel.org
18544 S:      Maintained
18545 F:      drivers/media/common/videobuf2/*
18546 F:      include/media/videobuf2-*
18547
18548 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
18549 M:      Helen Koike <helen.koike@collabora.com>
18550 R:      Shuah Khan <skhan@linuxfoundation.org>
18551 L:      linux-media@vger.kernel.org
18552 S:      Maintained
18553 W:      https://linuxtv.org
18554 T:      git git://linuxtv.org/media_tree.git
18555 F:      drivers/media/test-drivers/vimc/*
18556
18557 VIRT LIB
18558 M:      Alex Williamson <alex.williamson@redhat.com>
18559 M:      Paolo Bonzini <pbonzini@redhat.com>
18560 L:      kvm@vger.kernel.org
18561 S:      Supported
18562 F:      virt/lib/
18563
18564 VIRTIO AND VHOST VSOCK DRIVER
18565 M:      Stefan Hajnoczi <stefanha@redhat.com>
18566 M:      Stefano Garzarella <sgarzare@redhat.com>
18567 L:      kvm@vger.kernel.org
18568 L:      virtualization@lists.linux-foundation.org
18569 L:      netdev@vger.kernel.org
18570 S:      Maintained
18571 F:      drivers/net/vsockmon.c
18572 F:      drivers/vhost/vsock.c
18573 F:      include/linux/virtio_vsock.h
18574 F:      include/uapi/linux/virtio_vsock.h
18575 F:      include/uapi/linux/vm_sockets_diag.h
18576 F:      include/uapi/linux/vsockmon.h
18577 F:      net/vmw_vsock/af_vsock_tap.c
18578 F:      net/vmw_vsock/diag.c
18579 F:      net/vmw_vsock/virtio_transport.c
18580 F:      net/vmw_vsock/virtio_transport_common.c
18581 F:      net/vmw_vsock/vsock_loopback.c
18582 F:      tools/testing/vsock/
18583
18584 VIRTIO BLOCK AND SCSI DRIVERS
18585 M:      "Michael S. Tsirkin" <mst@redhat.com>
18586 M:      Jason Wang <jasowang@redhat.com>
18587 R:      Paolo Bonzini <pbonzini@redhat.com>
18588 R:      Stefan Hajnoczi <stefanha@redhat.com>
18589 L:      virtualization@lists.linux-foundation.org
18590 S:      Maintained
18591 F:      drivers/block/virtio_blk.c
18592 F:      drivers/scsi/virtio_scsi.c
18593 F:      drivers/vhost/scsi.c
18594 F:      include/uapi/linux/virtio_blk.h
18595 F:      include/uapi/linux/virtio_scsi.h
18596
18597 VIRTIO CONSOLE DRIVER
18598 M:      Amit Shah <amit@kernel.org>
18599 L:      virtualization@lists.linux-foundation.org
18600 S:      Maintained
18601 F:      drivers/char/virtio_console.c
18602 F:      include/linux/virtio_console.h
18603 F:      include/uapi/linux/virtio_console.h
18604
18605 VIRTIO CORE AND NET DRIVERS
18606 M:      "Michael S. Tsirkin" <mst@redhat.com>
18607 M:      Jason Wang <jasowang@redhat.com>
18608 L:      virtualization@lists.linux-foundation.org
18609 S:      Maintained
18610 F:      Documentation/devicetree/bindings/virtio/
18611 F:      drivers/block/virtio_blk.c
18612 F:      drivers/crypto/virtio/
18613 F:      drivers/net/virtio_net.c
18614 F:      drivers/vdpa/
18615 F:      drivers/virtio/
18616 F:      include/linux/vdpa.h
18617 F:      include/linux/virtio*.h
18618 F:      include/uapi/linux/virtio_*.h
18619 F:      tools/virtio/
18620
18621 VIRTIO BALLOON
18622 M:      "Michael S. Tsirkin" <mst@redhat.com>
18623 M:      David Hildenbrand <david@redhat.com>
18624 L:      virtualization@lists.linux-foundation.org
18625 S:      Maintained
18626 F:      drivers/virtio/virtio_balloon.c
18627 F:      include/uapi/linux/virtio_balloon.h
18628 F:      include/linux/balloon_compaction.h
18629 F:      mm/balloon_compaction.c
18630
18631 VIRTIO CRYPTO DRIVER
18632 M:      Gonglei <arei.gonglei@huawei.com>
18633 L:      virtualization@lists.linux-foundation.org
18634 L:      linux-crypto@vger.kernel.org
18635 S:      Maintained
18636 F:      drivers/crypto/virtio/
18637 F:      include/uapi/linux/virtio_crypto.h
18638
18639 VIRTIO DRIVERS FOR S390
18640 M:      Cornelia Huck <cohuck@redhat.com>
18641 M:      Halil Pasic <pasic@linux.ibm.com>
18642 L:      linux-s390@vger.kernel.org
18643 L:      virtualization@lists.linux-foundation.org
18644 L:      kvm@vger.kernel.org
18645 S:      Supported
18646 F:      arch/s390/include/uapi/asm/virtio-ccw.h
18647 F:      drivers/s390/virtio/
18648
18649 VIRTIO FILE SYSTEM
18650 M:      Vivek Goyal <vgoyal@redhat.com>
18651 M:      Stefan Hajnoczi <stefanha@redhat.com>
18652 M:      Miklos Szeredi <miklos@szeredi.hu>
18653 L:      virtualization@lists.linux-foundation.org
18654 L:      linux-fsdevel@vger.kernel.org
18655 S:      Supported
18656 W:      https://virtio-fs.gitlab.io/
18657 F:      Documentation/filesystems/virtiofs.rst
18658 F:      fs/fuse/virtio_fs.c
18659 F:      include/uapi/linux/virtio_fs.h
18660
18661 VIRTIO GPU DRIVER
18662 M:      David Airlie <airlied@linux.ie>
18663 M:      Gerd Hoffmann <kraxel@redhat.com>
18664 L:      dri-devel@lists.freedesktop.org
18665 L:      virtualization@lists.linux-foundation.org
18666 S:      Maintained
18667 T:      git git://anongit.freedesktop.org/drm/drm-misc
18668 F:      drivers/gpu/drm/virtio/
18669 F:      include/uapi/linux/virtio_gpu.h
18670
18671 VIRTIO HOST (VHOST)
18672 M:      "Michael S. Tsirkin" <mst@redhat.com>
18673 M:      Jason Wang <jasowang@redhat.com>
18674 L:      kvm@vger.kernel.org
18675 L:      virtualization@lists.linux-foundation.org
18676 L:      netdev@vger.kernel.org
18677 S:      Maintained
18678 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
18679 F:      drivers/vhost/
18680 F:      include/linux/vhost_iotlb.h
18681 F:      include/uapi/linux/vhost.h
18682
18683 VIRTIO INPUT DRIVER
18684 M:      Gerd Hoffmann <kraxel@redhat.com>
18685 S:      Maintained
18686 F:      drivers/virtio/virtio_input.c
18687 F:      include/uapi/linux/virtio_input.h
18688
18689 VIRTIO IOMMU DRIVER
18690 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
18691 L:      virtualization@lists.linux-foundation.org
18692 S:      Maintained
18693 F:      drivers/iommu/virtio-iommu.c
18694 F:      include/uapi/linux/virtio_iommu.h
18695
18696 VIRTIO MEM DRIVER
18697 M:      David Hildenbrand <david@redhat.com>
18698 L:      virtualization@lists.linux-foundation.org
18699 S:      Maintained
18700 W:      https://virtio-mem.gitlab.io/
18701 F:      drivers/virtio/virtio_mem.c
18702 F:      include/uapi/linux/virtio_mem.h
18703
18704 VIRTUAL BOX GUEST DEVICE DRIVER
18705 M:      Hans de Goede <hdegoede@redhat.com>
18706 M:      Arnd Bergmann <arnd@arndb.de>
18707 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18708 S:      Maintained
18709 F:      drivers/virt/vboxguest/
18710 F:      include/linux/vbox_utils.h
18711 F:      include/uapi/linux/vbox*.h
18712
18713 VIRTUAL BOX SHARED FOLDER VFS DRIVER
18714 M:      Hans de Goede <hdegoede@redhat.com>
18715 L:      linux-fsdevel@vger.kernel.org
18716 S:      Maintained
18717 F:      fs/vboxsf/*
18718
18719 VIRTUAL SERIO DEVICE DRIVER
18720 M:      Stephen Chandler Paul <thatslyude@gmail.com>
18721 S:      Maintained
18722 F:      drivers/input/serio/userio.c
18723 F:      include/uapi/linux/userio.h
18724
18725 VIVID VIRTUAL VIDEO DRIVER
18726 M:      Hans Verkuil <hverkuil@xs4all.nl>
18727 L:      linux-media@vger.kernel.org
18728 S:      Maintained
18729 W:      https://linuxtv.org
18730 T:      git git://linuxtv.org/media_tree.git
18731 F:      drivers/media/test-drivers/vivid/*
18732
18733 VIDTV VIRTUAL DIGITAL TV DRIVER
18734 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
18735 L:      linux-media@vger.kernel.org
18736 S:      Maintained
18737 W:      https://linuxtv.org
18738 T:      git git://linuxtv.org/media_tree.git
18739 F:      drivers/media/test-drivers/vidtv/*
18740
18741 VLYNQ BUS
18742 M:      Florian Fainelli <f.fainelli@gmail.com>
18743 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
18744 S:      Maintained
18745 F:      drivers/vlynq/vlynq.c
18746 F:      include/linux/vlynq.h
18747
18748 VME SUBSYSTEM
18749 M:      Martyn Welch <martyn@welchs.me.uk>
18750 M:      Manohar Vanga <manohar.vanga@gmail.com>
18751 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18752 L:      devel@driverdev.osuosl.org
18753 S:      Maintained
18754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18755 F:      Documentation/driver-api/vme.rst
18756 F:      drivers/staging/vme/
18757 F:      drivers/vme/
18758 F:      include/linux/vme*
18759
18760 VMWARE BALLOON DRIVER
18761 M:      Nadav Amit <namit@vmware.com>
18762 M:      "VMware, Inc." <pv-drivers@vmware.com>
18763 L:      linux-kernel@vger.kernel.org
18764 S:      Maintained
18765 F:      drivers/misc/vmw_balloon.c
18766
18767 VMWARE HYPERVISOR INTERFACE
18768 M:      Deep Shah <sdeep@vmware.com>
18769 M:      "VMware, Inc." <pv-drivers@vmware.com>
18770 L:      virtualization@lists.linux-foundation.org
18771 S:      Supported
18772 F:      arch/x86/include/asm/vmware.h
18773 F:      arch/x86/kernel/cpu/vmware.c
18774
18775 VMWARE PVRDMA DRIVER
18776 M:      Adit Ranadive <aditr@vmware.com>
18777 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18778 L:      linux-rdma@vger.kernel.org
18779 S:      Maintained
18780 F:      drivers/infiniband/hw/vmw_pvrdma/
18781
18782 VMware PVSCSI driver
18783 M:      Jim Gill <jgill@vmware.com>
18784 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18785 L:      linux-scsi@vger.kernel.org
18786 S:      Maintained
18787 F:      drivers/scsi/vmw_pvscsi.c
18788 F:      drivers/scsi/vmw_pvscsi.h
18789
18790 VMWARE VIRTUAL PTP CLOCK DRIVER
18791 M:      Vivek Thampi <vithampi@vmware.com>
18792 M:      "VMware, Inc." <pv-drivers@vmware.com>
18793 L:      netdev@vger.kernel.org
18794 S:      Supported
18795 F:      drivers/ptp/ptp_vmw.c
18796
18797 VMWARE VMMOUSE SUBDRIVER
18798 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
18799 M:      "VMware, Inc." <pv-drivers@vmware.com>
18800 L:      linux-input@vger.kernel.org
18801 S:      Maintained
18802 F:      drivers/input/mouse/vmmouse.c
18803 F:      drivers/input/mouse/vmmouse.h
18804
18805 VMWARE VMXNET3 ETHERNET DRIVER
18806 M:      Ronak Doshi <doshir@vmware.com>
18807 M:      "VMware, Inc." <pv-drivers@vmware.com>
18808 L:      netdev@vger.kernel.org
18809 S:      Maintained
18810 F:      drivers/net/vmxnet3/
18811
18812 VOCORE VOCORE2 BOARD
18813 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
18814 L:      linux-mips@vger.kernel.org
18815 S:      Maintained
18816 F:      arch/mips/boot/dts/ralink/vocore2.dts
18817
18818 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
18819 M:      Liam Girdwood <lgirdwood@gmail.com>
18820 M:      Mark Brown <broonie@kernel.org>
18821 L:      linux-kernel@vger.kernel.org
18822 S:      Supported
18823 W:      http://www.slimlogic.co.uk/?p=48
18824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
18825 F:      Documentation/devicetree/bindings/regulator/
18826 F:      Documentation/power/regulator/
18827 F:      drivers/regulator/
18828 F:      include/dt-bindings/regulator/
18829 F:      include/linux/regulator/
18830 K:      regulator_get_optional
18831
18832 VRF
18833 M:      David Ahern <dsahern@kernel.org>
18834 M:      Shrijeet Mukherjee <shrijeet@gmail.com>
18835 L:      netdev@vger.kernel.org
18836 S:      Maintained
18837 F:      Documentation/networking/vrf.rst
18838 F:      drivers/net/vrf.c
18839
18840 VSPRINTF
18841 M:      Petr Mladek <pmladek@suse.com>
18842 M:      Steven Rostedt <rostedt@goodmis.org>
18843 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
18844 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18845 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
18846 S:      Maintained
18847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
18848 F:      Documentation/core-api/printk-formats.rst
18849 F:      lib/test_printf.c
18850 F:      lib/vsprintf.c
18851
18852 VT1211 HARDWARE MONITOR DRIVER
18853 M:      Juerg Haefliger <juergh@gmail.com>
18854 L:      linux-hwmon@vger.kernel.org
18855 S:      Maintained
18856 F:      Documentation/hwmon/vt1211.rst
18857 F:      drivers/hwmon/vt1211.c
18858
18859 VT8231 HARDWARE MONITOR DRIVER
18860 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
18861 L:      linux-hwmon@vger.kernel.org
18862 S:      Maintained
18863 F:      drivers/hwmon/vt8231.c
18864
18865 VUB300 USB to SDIO/SD/MMC bridge chip
18866 L:      linux-mmc@vger.kernel.org
18867 S:      Orphan
18868 F:      drivers/mmc/host/vub300.c
18869
18870 W1 DALLAS'S 1-WIRE BUS
18871 M:      Evgeniy Polyakov <zbr@ioremap.net>
18872 S:      Maintained
18873 F:      Documentation/devicetree/bindings/w1/
18874 F:      Documentation/w1/
18875 F:      drivers/w1/
18876 F:      include/linux/w1.h
18877
18878 W83791D HARDWARE MONITORING DRIVER
18879 M:      Marc Hulsman <m.hulsman@tudelft.nl>
18880 L:      linux-hwmon@vger.kernel.org
18881 S:      Maintained
18882 F:      Documentation/hwmon/w83791d.rst
18883 F:      drivers/hwmon/w83791d.c
18884
18885 W83793 HARDWARE MONITORING DRIVER
18886 M:      Rudolf Marek <r.marek@assembler.cz>
18887 L:      linux-hwmon@vger.kernel.org
18888 S:      Maintained
18889 F:      Documentation/hwmon/w83793.rst
18890 F:      drivers/hwmon/w83793.c
18891
18892 W83795 HARDWARE MONITORING DRIVER
18893 M:      Jean Delvare <jdelvare@suse.com>
18894 L:      linux-hwmon@vger.kernel.org
18895 S:      Maintained
18896 F:      drivers/hwmon/w83795.c
18897
18898 W83L51xD SD/MMC CARD INTERFACE DRIVER
18899 M:      Pierre Ossman <pierre@ossman.eu>
18900 S:      Maintained
18901 F:      drivers/mmc/host/wbsd.*
18902
18903 WACOM PROTOCOL 4 SERIAL TABLETS
18904 M:      Julian Squires <julian@cipht.net>
18905 M:      Hans de Goede <hdegoede@redhat.com>
18906 L:      linux-input@vger.kernel.org
18907 S:      Maintained
18908 F:      drivers/input/tablet/wacom_serial4.c
18909
18910 WATCHDOG DEVICE DRIVERS
18911 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
18912 M:      Guenter Roeck <linux@roeck-us.net>
18913 L:      linux-watchdog@vger.kernel.org
18914 S:      Maintained
18915 W:      http://www.linux-watchdog.org/
18916 T:      git git://www.linux-watchdog.org/linux-watchdog.git
18917 F:      Documentation/devicetree/bindings/watchdog/
18918 F:      Documentation/watchdog/
18919 F:      drivers/watchdog/
18920 F:      include/linux/watchdog.h
18921 F:      include/uapi/linux/watchdog.h
18922
18923 WHISKEYCOVE PMIC GPIO DRIVER
18924 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
18925 L:      linux-gpio@vger.kernel.org
18926 S:      Maintained
18927 F:      drivers/gpio/gpio-wcove.c
18928
18929 WHWAVE RTC DRIVER
18930 M:      Dianlong Li <long17.cool@163.com>
18931 L:      linux-rtc@vger.kernel.org
18932 S:      Maintained
18933 F:      drivers/rtc/rtc-sd3078.c
18934
18935 WIIMOTE HID DRIVER
18936 M:      David Rheinsberg <david.rheinsberg@gmail.com>
18937 L:      linux-input@vger.kernel.org
18938 S:      Maintained
18939 F:      drivers/hid/hid-wiimote*
18940
18941 WILOCITY WIL6210 WIRELESS DRIVER
18942 M:      Maya Erez <merez@codeaurora.org>
18943 L:      linux-wireless@vger.kernel.org
18944 L:      wil6210@qti.qualcomm.com
18945 S:      Supported
18946 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
18947 F:      drivers/net/wireless/ath/wil6210/
18948
18949 WIMAX STACK
18950 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
18951 M:      linux-wimax@intel.com
18952 L:      wimax@linuxwimax.org (subscribers-only)
18953 S:      Supported
18954 W:      http://linuxwimax.org
18955 F:      Documentation/admin-guide/wimax/wimax.rst
18956 F:      include/linux/wimax/debug.h
18957 F:      include/net/wimax.h
18958 F:      include/uapi/linux/wimax.h
18959 F:      net/wimax/
18960
18961 WINBOND CIR DRIVER
18962 M:      David Härdeman <david@hardeman.nu>
18963 S:      Maintained
18964 F:      drivers/media/rc/winbond-cir.c
18965
18966 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
18967 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
18968 L:      linux-watchdog@vger.kernel.org
18969 S:      Maintained
18970 F:      drivers/watchdog/ebc-c384_wdt.c
18971
18972 WINSYSTEMS WS16C48 GPIO DRIVER
18973 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
18974 L:      linux-gpio@vger.kernel.org
18975 S:      Maintained
18976 F:      drivers/gpio/gpio-ws16c48.c
18977
18978 WIREGUARD SECURE NETWORK TUNNEL
18979 M:      Jason A. Donenfeld <Jason@zx2c4.com>
18980 L:      wireguard@lists.zx2c4.com
18981 L:      netdev@vger.kernel.org
18982 S:      Maintained
18983 F:      drivers/net/wireguard/
18984 F:      tools/testing/selftests/wireguard/
18985
18986 WISTRON LAPTOP BUTTON DRIVER
18987 M:      Miloslav Trmac <mitr@volny.cz>
18988 S:      Maintained
18989 F:      drivers/input/misc/wistron_btns.c
18990
18991 WL3501 WIRELESS PCMCIA CARD DRIVER
18992 L:      linux-wireless@vger.kernel.org
18993 S:      Odd fixes
18994 F:      drivers/net/wireless/wl3501*
18995
18996 WOLFSON MICROELECTRONICS DRIVERS
18997 L:      patches@opensource.cirrus.com
18998 S:      Supported
18999 W:      https://github.com/CirrusLogic/linux-drivers/wiki
19000 T:      git https://github.com/CirrusLogic/linux-drivers.git
19001 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
19002 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
19003 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
19004 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
19005 F:      Documentation/devicetree/bindings/sound/wlf,arizona.yaml
19006 F:      Documentation/hwmon/wm83??.rst
19007 F:      arch/arm/mach-s3c/mach-crag6410*
19008 F:      drivers/clk/clk-wm83*.c
19009 F:      drivers/extcon/extcon-arizona.c
19010 F:      drivers/gpio/gpio-*wm*.c
19011 F:      drivers/gpio/gpio-arizona.c
19012 F:      drivers/hwmon/wm83??-hwmon.c
19013 F:      drivers/input/misc/wm831x-on.c
19014 F:      drivers/input/touchscreen/wm831x-ts.c
19015 F:      drivers/input/touchscreen/wm97*.c
19016 F:      drivers/leds/leds-wm83*.c
19017 F:      drivers/mfd/arizona*
19018 F:      drivers/mfd/cs47l24*
19019 F:      drivers/mfd/wm*.c
19020 F:      drivers/power/supply/wm83*.c
19021 F:      drivers/regulator/arizona*
19022 F:      drivers/regulator/wm8*.c
19023 F:      drivers/rtc/rtc-wm83*.c
19024 F:      drivers/video/backlight/wm83*_bl.c
19025 F:      drivers/watchdog/wm83*_wdt.c
19026 F:      include/linux/mfd/arizona/
19027 F:      include/linux/mfd/wm831x/
19028 F:      include/linux/mfd/wm8350/
19029 F:      include/linux/mfd/wm8400*
19030 F:      include/linux/regulator/arizona*
19031 F:      include/linux/wm97xx.h
19032 F:      include/sound/wm????.h
19033 F:      sound/soc/codecs/arizona.?
19034 F:      sound/soc/codecs/cs47l24*
19035 F:      sound/soc/codecs/wm*
19036
19037 WORKQUEUE
19038 M:      Tejun Heo <tj@kernel.org>
19039 R:      Lai Jiangshan <jiangshanlai@gmail.com>
19040 S:      Maintained
19041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
19042 F:      Documentation/core-api/workqueue.rst
19043 F:      include/linux/workqueue.h
19044 F:      kernel/workqueue.c
19045
19046 X-POWERS AXP288 PMIC DRIVERS
19047 M:      Hans de Goede <hdegoede@redhat.com>
19048 S:      Maintained
19049 F:      drivers/acpi/pmic/intel_pmic_xpower.c
19050 N:      axp288
19051
19052 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
19053 M:      Chen-Yu Tsai <wens@csie.org>
19054 L:      linux-kernel@vger.kernel.org
19055 S:      Maintained
19056 N:      axp[128]
19057
19058 X.25 STACK
19059 M:      Martin Schiller <ms@dev.tdt.de>
19060 L:      linux-x25@vger.kernel.org
19061 S:      Maintained
19062 F:      Documentation/networking/lapb-module.rst
19063 F:      Documentation/networking/x25*
19064 F:      drivers/net/wan/hdlc_x25.c
19065 F:      drivers/net/wan/lapbether.c
19066 F:      include/*/lapb.h
19067 F:      include/net/x25*
19068 F:      include/uapi/linux/x25.h
19069 F:      net/lapb/
19070 F:      net/x25/
19071
19072 X86 ARCHITECTURE (32-BIT AND 64-BIT)
19073 M:      Thomas Gleixner <tglx@linutronix.de>
19074 M:      Ingo Molnar <mingo@redhat.com>
19075 M:      Borislav Petkov <bp@alien8.de>
19076 M:      x86@kernel.org
19077 R:      "H. Peter Anvin" <hpa@zytor.com>
19078 L:      linux-kernel@vger.kernel.org
19079 S:      Maintained
19080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19081 F:      Documentation/devicetree/bindings/x86/
19082 F:      Documentation/x86/
19083 F:      arch/x86/
19084
19085 X86 ENTRY CODE
19086 M:      Andy Lutomirski <luto@kernel.org>
19087 L:      linux-kernel@vger.kernel.org
19088 S:      Maintained
19089 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
19090 F:      arch/x86/entry/
19091
19092 X86 MCE INFRASTRUCTURE
19093 M:      Tony Luck <tony.luck@intel.com>
19094 M:      Borislav Petkov <bp@alien8.de>
19095 L:      linux-edac@vger.kernel.org
19096 S:      Maintained
19097 F:      arch/x86/kernel/cpu/mce/*
19098
19099 X86 MICROCODE UPDATE SUPPORT
19100 M:      Borislav Petkov <bp@alien8.de>
19101 S:      Maintained
19102 F:      arch/x86/kernel/cpu/microcode/*
19103
19104 X86 MM
19105 M:      Dave Hansen <dave.hansen@linux.intel.com>
19106 M:      Andy Lutomirski <luto@kernel.org>
19107 M:      Peter Zijlstra <peterz@infradead.org>
19108 L:      linux-kernel@vger.kernel.org
19109 S:      Maintained
19110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
19111 F:      arch/x86/mm/
19112
19113 X86 PLATFORM DRIVERS
19114 M:      Hans de Goede <hdegoede@redhat.com>
19115 M:      Mark Gross <mgross@linux.intel.com>
19116 L:      platform-driver-x86@vger.kernel.org
19117 S:      Maintained
19118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
19119 F:      drivers/platform/olpc/
19120 F:      drivers/platform/x86/
19121
19122 X86 PLATFORM DRIVERS - ARCH
19123 R:      Darren Hart <dvhart@infradead.org>
19124 R:      Andy Shevchenko <andy@infradead.org>
19125 L:      platform-driver-x86@vger.kernel.org
19126 L:      x86@kernel.org
19127 S:      Maintained
19128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19129 F:      arch/x86/platform
19130
19131 X86 PLATFORM UV HPE SUPERDOME FLEX
19132 M:      Steve Wahl <steve.wahl@hpe.com>
19133 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
19134 R:      Russ Anderson <russ.anderson@hpe.com>
19135 S:      Supported
19136 F:      arch/x86/include/asm/uv/
19137 F:      arch/x86/kernel/apic/x2apic_uv_x.c
19138 F:      arch/x86/platform/uv/
19139
19140 X86 VDSO
19141 M:      Andy Lutomirski <luto@kernel.org>
19142 L:      linux-kernel@vger.kernel.org
19143 S:      Maintained
19144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
19145 F:      arch/x86/entry/vdso/
19146
19147 XARRAY
19148 M:      Matthew Wilcox <willy@infradead.org>
19149 L:      linux-fsdevel@vger.kernel.org
19150 S:      Supported
19151 F:      Documentation/core-api/xarray.rst
19152 F:      include/linux/idr.h
19153 F:      include/linux/xarray.h
19154 F:      lib/idr.c
19155 F:      lib/xarray.c
19156 F:      tools/testing/radix-tree
19157
19158 XBOX DVD IR REMOTE
19159 M:      Benjamin Valentin <benpicco@googlemail.com>
19160 S:      Maintained
19161 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
19162 F:      drivers/media/rc/xbox_remote.c
19163
19164 XC2028/3028 TUNER DRIVER
19165 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19166 L:      linux-media@vger.kernel.org
19167 S:      Maintained
19168 W:      https://linuxtv.org
19169 T:      git git://linuxtv.org/media_tree.git
19170 F:      drivers/media/tuners/tuner-xc2028.*
19171
19172 XDP (eXpress Data Path)
19173 M:      Alexei Starovoitov <ast@kernel.org>
19174 M:      Daniel Borkmann <daniel@iogearbox.net>
19175 M:      David S. Miller <davem@davemloft.net>
19176 M:      Jakub Kicinski <kuba@kernel.org>
19177 M:      Jesper Dangaard Brouer <hawk@kernel.org>
19178 M:      John Fastabend <john.fastabend@gmail.com>
19179 L:      netdev@vger.kernel.org
19180 L:      bpf@vger.kernel.org
19181 S:      Supported
19182 F:      include/net/xdp.h
19183 F:      include/net/xdp_priv.h
19184 F:      include/trace/events/xdp.h
19185 F:      kernel/bpf/cpumap.c
19186 F:      kernel/bpf/devmap.c
19187 F:      net/core/xdp.c
19188 F:      samples/bpf/xdp*
19189 F:      tools/testing/selftests/bpf/*xdp*
19190 F:      tools/testing/selftests/bpf/*/*xdp*
19191 F:      drivers/net/ethernet/*/*/*/*/*xdp*
19192 F:      drivers/net/ethernet/*/*/*xdp*
19193 K:      (?:\b|_)xdp(?:\b|_)
19194
19195 XDP SOCKETS (AF_XDP)
19196 M:      Björn Töpel <bjorn.topel@intel.com>
19197 M:      Magnus Karlsson <magnus.karlsson@intel.com>
19198 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
19199 L:      netdev@vger.kernel.org
19200 L:      bpf@vger.kernel.org
19201 S:      Maintained
19202 F:      Documentation/networking/af_xdp.rst
19203 F:      include/net/xdp_sock*
19204 F:      include/net/xsk_buff_pool.h
19205 F:      include/uapi/linux/if_xdp.h
19206 F:      include/uapi/linux/xdp_diag.h
19207 F:      include/net/netns/xdp.h
19208 F:      net/xdp/
19209 F:      samples/bpf/xdpsock*
19210 F:      tools/lib/bpf/xsk*
19211
19212 XEN BLOCK SUBSYSTEM
19213 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19214 M:      Roger Pau Monné <roger.pau@citrix.com>
19215 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19216 S:      Supported
19217 F:      drivers/block/xen*
19218 F:      drivers/block/xen-blkback/*
19219
19220 XEN HYPERVISOR ARM
19221 M:      Stefano Stabellini <sstabellini@kernel.org>
19222 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19223 S:      Maintained
19224 F:      arch/arm/include/asm/xen/
19225 F:      arch/arm/xen/
19226
19227 XEN HYPERVISOR ARM64
19228 M:      Stefano Stabellini <sstabellini@kernel.org>
19229 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19230 S:      Maintained
19231 F:      arch/arm64/include/asm/xen/
19232 F:      arch/arm64/xen/
19233
19234 XEN HYPERVISOR INTERFACE
19235 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
19236 M:      Juergen Gross <jgross@suse.com>
19237 R:      Stefano Stabellini <sstabellini@kernel.org>
19238 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19239 S:      Supported
19240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
19241 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
19242 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
19243 F:      arch/x86/include/asm/pvclock-abi.h
19244 F:      arch/x86/include/asm/xen/
19245 F:      arch/x86/platform/pvh/
19246 F:      arch/x86/xen/
19247 F:      drivers/*/xen-*front.c
19248 F:      drivers/xen/
19249 F:      include/uapi/xen/
19250 F:      include/xen/
19251
19252 XEN NETWORK BACKEND DRIVER
19253 M:      Wei Liu <wei.liu@kernel.org>
19254 M:      Paul Durrant <paul@xen.org>
19255 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19256 L:      netdev@vger.kernel.org
19257 S:      Supported
19258 F:      drivers/net/xen-netback/*
19259
19260 XEN PCI SUBSYSTEM
19261 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19262 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19263 S:      Supported
19264 F:      arch/x86/pci/*xen*
19265 F:      drivers/pci/*xen*
19266
19267 XEN PVSCSI DRIVERS
19268 M:      Juergen Gross <jgross@suse.com>
19269 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19270 L:      linux-scsi@vger.kernel.org
19271 S:      Supported
19272 F:      drivers/scsi/xen-scsifront.c
19273 F:      drivers/xen/xen-scsiback.c
19274 F:      include/xen/interface/io/vscsiif.h
19275
19276 XEN SOUND FRONTEND DRIVER
19277 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
19278 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19279 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19280 S:      Supported
19281 F:      sound/xen/*
19282
19283 XEN SWIOTLB SUBSYSTEM
19284 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19285 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19286 L:      iommu@lists.linux-foundation.org
19287 S:      Supported
19288 F:      arch/x86/xen/*swiotlb*
19289 F:      drivers/xen/*swiotlb*
19290
19291 XFS FILESYSTEM
19292 M:      Darrick J. Wong <darrick.wong@oracle.com>
19293 M:      linux-xfs@vger.kernel.org
19294 L:      linux-xfs@vger.kernel.org
19295 S:      Supported
19296 W:      http://xfs.org/
19297 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
19298 F:      Documentation/ABI/testing/sysfs-fs-xfs
19299 F:      Documentation/admin-guide/xfs.rst
19300 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
19301 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
19302 F:      fs/xfs/
19303 F:      include/uapi/linux/dqblk_xfs.h
19304 F:      include/uapi/linux/fsmap.h
19305
19306 XILINX AXI ETHERNET DRIVER
19307 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
19308 S:      Maintained
19309 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
19310
19311 XILINX CAN DRIVER
19312 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
19313 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
19314 L:      linux-can@vger.kernel.org
19315 S:      Maintained
19316 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
19317 F:      drivers/net/can/xilinx_can.c
19318
19319 XILINX SD-FEC IP CORES
19320 M:      Derek Kiernan <derek.kiernan@xilinx.com>
19321 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
19322 S:      Maintained
19323 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
19324 F:      Documentation/misc-devices/xilinx_sdfec.rst
19325 F:      drivers/misc/Kconfig
19326 F:      drivers/misc/Makefile
19327 F:      drivers/misc/xilinx_sdfec.c
19328 F:      include/uapi/misc/xilinx_sdfec.h
19329
19330 XILINX UARTLITE SERIAL DRIVER
19331 M:      Peter Korsgaard <jacmet@sunsite.dk>
19332 L:      linux-serial@vger.kernel.org
19333 S:      Maintained
19334 F:      drivers/tty/serial/uartlite.c
19335
19336 XILINX VIDEO IP CORES
19337 M:      Hyun Kwon <hyun.kwon@xilinx.com>
19338 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19339 L:      linux-media@vger.kernel.org
19340 S:      Supported
19341 T:      git git://linuxtv.org/media_tree.git
19342 F:      Documentation/devicetree/bindings/media/xilinx/
19343 F:      drivers/media/platform/xilinx/
19344 F:      include/uapi/linux/xilinx-v4l2-controls.h
19345
19346 XILINX ZYNQMP DPDMA DRIVER
19347 M:      Hyun Kwon <hyun.kwon@xilinx.com>
19348 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19349 L:      dmaengine@vger.kernel.org
19350 S:      Supported
19351 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
19352 F:      drivers/dma/xilinx/xilinx_dpdma.c
19353 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
19354
19355 XILINX ZYNQMP PSGTR PHY DRIVER
19356 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
19357 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19358 L:      linux-kernel@vger.kernel.org
19359 S:      Supported
19360 T:      git https://github.com/Xilinx/linux-xlnx.git
19361 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
19362 F:      drivers/phy/xilinx/phy-zynqmp.c
19363
19364 XILLYBUS DRIVER
19365 M:      Eli Billauer <eli.billauer@gmail.com>
19366 L:      linux-kernel@vger.kernel.org
19367 S:      Supported
19368 F:      drivers/char/xillybus/
19369
19370 XLP9XX I2C DRIVER
19371 M:      George Cherian <gcherian@marvell.com>
19372 L:      linux-i2c@vger.kernel.org
19373 S:      Supported
19374 W:      http://www.marvell.com
19375 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
19376 F:      drivers/i2c/busses/i2c-xlp9xx.c
19377
19378 XRA1403 GPIO EXPANDER
19379 M:      Nandor Han <nandor.han@ge.com>
19380 M:      Semi Malinen <semi.malinen@ge.com>
19381 L:      linux-gpio@vger.kernel.org
19382 S:      Maintained
19383 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
19384 F:      drivers/gpio/gpio-xra1403.c
19385
19386 XTENSA XTFPGA PLATFORM SUPPORT
19387 M:      Max Filippov <jcmvbkbc@gmail.com>
19388 L:      linux-xtensa@linux-xtensa.org
19389 S:      Maintained
19390 F:      drivers/spi/spi-xtensa-xtfpga.c
19391 F:      sound/soc/xtensa/xtfpga-i2s.c
19392
19393 YAM DRIVER FOR AX.25
19394 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
19395 L:      linux-hams@vger.kernel.org
19396 S:      Maintained
19397 F:      drivers/net/hamradio/yam*
19398 F:      include/linux/yam.h
19399
19400 YAMA SECURITY MODULE
19401 M:      Kees Cook <keescook@chromium.org>
19402 S:      Supported
19403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
19404 F:      Documentation/admin-guide/LSM/Yama.rst
19405 F:      security/yama/
19406
19407 YEALINK PHONE DRIVER
19408 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
19409 L:      usbb2k-api-dev@nongnu.org
19410 S:      Maintained
19411 F:      Documentation/input/devices/yealink.rst
19412 F:      drivers/input/misc/yealink.*
19413
19414 Z8530 DRIVER FOR AX.25
19415 M:      Joerg Reuter <jreuter@yaina.de>
19416 L:      linux-hams@vger.kernel.org
19417 S:      Maintained
19418 W:      http://yaina.de/jreuter/
19419 W:      http://www.qsl.net/dl1bke/
19420 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
19421 F:      drivers/net/hamradio/*scc.c
19422 F:      drivers/net/hamradio/z8530.h
19423
19424 ZBUD COMPRESSED PAGE ALLOCATOR
19425 M:      Seth Jennings <sjenning@redhat.com>
19426 M:      Dan Streetman <ddstreet@ieee.org>
19427 L:      linux-mm@kvack.org
19428 S:      Maintained
19429 F:      include/linux/zbud.h
19430 F:      mm/zbud.c
19431
19432 ZD1211RW WIRELESS DRIVER
19433 M:      Daniel Drake <dsd@gentoo.org>
19434 M:      Ulrich Kunitz <kune@deine-taler.de>
19435 L:      linux-wireless@vger.kernel.org
19436 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
19437 S:      Maintained
19438 W:      http://zd1211.ath.cx/wiki/DriverRewrite
19439 F:      drivers/net/wireless/zydas/zd1211rw/
19440
19441 ZD1301 MEDIA DRIVER
19442 M:      Antti Palosaari <crope@iki.fi>
19443 L:      linux-media@vger.kernel.org
19444 S:      Maintained
19445 W:      https://linuxtv.org/
19446 W:      http://palosaari.fi/linux/
19447 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19448 F:      drivers/media/usb/dvb-usb-v2/zd1301*
19449
19450 ZD1301_DEMOD MEDIA DRIVER
19451 M:      Antti Palosaari <crope@iki.fi>
19452 L:      linux-media@vger.kernel.org
19453 S:      Maintained
19454 W:      https://linuxtv.org/
19455 W:      http://palosaari.fi/linux/
19456 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19457 F:      drivers/media/dvb-frontends/zd1301_demod*
19458
19459 ZHAOXIN PROCESSOR SUPPORT
19460 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
19461 L:      linux-kernel@vger.kernel.org
19462 S:      Maintained
19463 F:      arch/x86/kernel/cpu/zhaoxin.c
19464
19465 ZONEFS FILESYSTEM
19466 M:      Damien Le Moal <damien.lemoal@wdc.com>
19467 M:      Naohiro Aota <naohiro.aota@wdc.com>
19468 R:      Johannes Thumshirn <jth@kernel.org>
19469 L:      linux-fsdevel@vger.kernel.org
19470 S:      Maintained
19471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
19472 F:      Documentation/filesystems/zonefs.rst
19473 F:      fs/zonefs/
19474
19475 ZPOOL COMPRESSED PAGE STORAGE API
19476 M:      Dan Streetman <ddstreet@ieee.org>
19477 L:      linux-mm@kvack.org
19478 S:      Maintained
19479 F:      include/linux/zpool.h
19480 F:      mm/zpool.c
19481
19482 ZR36067 VIDEO FOR LINUX DRIVER
19483 M:      Corentin Labbe <clabbe@baylibre.com>
19484 L:      mjpeg-users@lists.sourceforge.net
19485 L:      linux-media@vger.kernel.org
19486 S:      Maintained
19487 W:      http://mjpeg.sourceforge.net/driver-zoran/
19488 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19489 F:      Documentation/driver-api/media/drivers/zoran.rst
19490 F:      drivers/staging/media/zoran/
19491
19492 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
19493 M:      Minchan Kim <minchan@kernel.org>
19494 M:      Nitin Gupta <ngupta@vflare.org>
19495 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
19496 L:      linux-kernel@vger.kernel.org
19497 S:      Maintained
19498 F:      Documentation/admin-guide/blockdev/zram.rst
19499 F:      drivers/block/zram/
19500
19501 ZS DECSTATION Z85C30 SERIAL DRIVER
19502 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
19503 S:      Maintained
19504 F:      drivers/tty/serial/zs.*
19505
19506 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
19507 M:      Minchan Kim <minchan@kernel.org>
19508 M:      Nitin Gupta <ngupta@vflare.org>
19509 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
19510 L:      linux-mm@kvack.org
19511 S:      Maintained
19512 F:      Documentation/vm/zsmalloc.rst
19513 F:      include/linux/zsmalloc.h
19514 F:      mm/zsmalloc.c
19515
19516 ZSWAP COMPRESSED SWAP CACHING
19517 M:      Seth Jennings <sjenning@redhat.com>
19518 M:      Dan Streetman <ddstreet@ieee.org>
19519 M:      Vitaly Wool <vitaly.wool@konsulko.com>
19520 L:      linux-mm@kvack.org
19521 S:      Maintained
19522 F:      mm/zswap.c
19523
19524 THE REST
19525 M:      Linus Torvalds <torvalds@linux-foundation.org>
19526 L:      linux-kernel@vger.kernel.org
19527 S:      Buried alive in reporters
19528 Q:      http://patchwork.kernel.org/project/LKML/list/
19529 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
19530 F:      *
19531 F:      */