Merge branch 'work.mount-base' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
[sfrench/cifs-2.6.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
12 2.      Try to release a few ALPHA test versions to the net. Announce
13         them onto the kernel channel and await results. This is especially
14         important for device drivers, because often that's the only way
15         you will find things like the fact version 3 firmware needs
16         a magic fix you didn't know about, or some clown changed the
17         chips on a board and not its name.  (Don't laugh!  Look at the
18         SMC etherpower for that.)
19
20 3.      Make sure your changes compile correctly in multiple
21         configurations. In particular check that changes work both as a
22         module and built into the kernel.
23
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
27 5.      Make a patch available to the relevant maintainer in the list. Use
28         'diff -u' to make the patch easy to merge. Be prepared to get your
29         changes sent back with seemingly silly requests about formatting
30         and variable names.  These aren't as silly as they seem. One
31         job the maintainers (and especially Linus) do is to keep things
32         looking the same. Sometimes this means that the clever hack in
33         your driver to get around a problem actually needs to become a
34         generalized kernel feature ready for next time.
35
36         PLEASE check your patch with the automated style checker
37         (scripts/checkpatch.pl) to catch trivial style violations.
38         See Documentation/process/coding-style.rst for guidance here.
39
40         PLEASE CC: the maintainers and mailing lists that are generated
41         by scripts/get_maintainer.pl.  The results returned by the
42         script will be best if you have git installed and are making
43         your changes in a branch derived from Linus' latest git tree.
44         See Documentation/process/submitting-patches.rst for details.
45
46         PLEASE try to include any credit lines you want added with the
47         patch. It avoids people being missed off by mistake and makes
48         it easier to know who wants adding and who doesn't.
49
50         PLEASE document known bugs. If it doesn't work for everything
51         or does something very odd once a month document it.
52
53         PLEASE remember that submissions must be made under the terms
54         of the Linux Foundation certificate of contribution and should
55         include a Signed-off-by: line.  The current version of this
56         "Developer's Certificate of Origin" (DCO) is listed in the file
57         Documentation/process/submitting-patches.rst.
58
59 6.      Make sure you have the right to send any changes you make. If you
60         do changes at work you may find your employer owns the patch
61         not you.
62
63 7.      When sending security related changes or reports to a maintainer
64         please Cc: security@kernel.org, especially if the maintainer
65         does not respond. Please keep in mind that the security team is
66         a small set of people who can be efficient only when working on
67         verified bugs. Please only Cc: this list when you have identified
68         that the bug would present a short-term risk to other users if it
69         were publicly disclosed. For example, reports of address leaks do
70         not represent an immediate threat and are better handled publicly,
71         and ideally, should come with a patch proposal. Please do not send
72         automated reports to this list either. Such bugs will be handled
73         better and faster in the usual public places.
74
75 8.      Happy hacking.
76
77 Descriptions of section entries:
78
79         P: Person (obsolete)
80         M: Mail patches to: FullName <address@domain>
81         R: Designated reviewer: FullName <address@domain>
82            These reviewers should be CCed on patches.
83         L: Mailing list that is relevant to this area
84         W: Web-page with status/info
85         B: URI for where to file bugs. A web-page with detailed bug
86            filing info, a direct bug tracker link, or a mailto: URI.
87         C: URI for chat protocol, server and channel where developers
88            usually hang out, for example irc://server/channel.
89         Q: Patchwork web based patch tracking system site
90         T: SCM tree type and location.
91            Type is one of: git, hg, quilt, stgit, topgit
92         S: Status, one of the following:
93            Supported:   Someone is actually paid to look after this.
94            Maintained:  Someone actually looks after it.
95            Odd Fixes:   It has a maintainer but they don't have time to do
96                         much other than throw the odd patch in. See below..
97            Orphan:      No current maintainer [but maybe you could take the
98                         role as you write your new code].
99            Obsolete:    Old code. Something tagged obsolete generally means
100                         it has been replaced by a better system and you
101                         should be using that.
102         F: Files and directories with wildcard patterns.
103            A trailing slash includes all files and subdirectory files.
104            F:   drivers/net/    all files in and below drivers/net
105            F:   drivers/net/*   all files in drivers/net, but not below
106            F:   */net/*         all files in "any top level directory"/net
107            One pattern per line.  Multiple F: lines acceptable.
108         N: Files and directories with regex patterns.
109            N:   [^a-z]tegra     all files whose path contains the word tegra
110            One pattern per line.  Multiple N: lines acceptable.
111            scripts/get_maintainer.pl has different behavior for files that
112            match F: pattern and matches of N: patterns.  By default,
113            get_maintainer will not look at git log history when an F: pattern
114            match occurs.  When an N: match occurs, git log history is used
115            to also notify the people that have git commit signatures.
116         X: Files and directories that are NOT maintained, same rules as F:
117            Files exclusions are tested before file matches.
118            Can be useful for excluding a specific subdirectory, for instance:
119            F:   net/
120            X:   net/ipv6/
121            matches all files in and below net excluding net/ipv6/
122         K: Keyword perl extended regex pattern to match content in a
123            patch or file.  For instance:
124            K: of_get_profile
125               matches patches or files that contain "of_get_profile"
126            K: \b(printk|pr_(info|err))\b
127               matches patches or files that contain one or more of the words
128               printk, pr_info or pr_err
129            One regex pattern per line.  Multiple K: lines acceptable.
130
131 Note: For the hard of thinking, this list is meant to remain in alphabetical
132 order. If you could add yourselves to it in alphabetical order that would be
133 so much easier [Ed]
134
135 Maintainers List (try to look for most precise areas first)
136
137                 -----------------------------------
138
139 3C59X NETWORK DRIVER
140 M:      Steffen Klassert <klassert@kernel.org>
141 L:      netdev@vger.kernel.org
142 S:      Odd Fixes
143 F:      Documentation/networking/device_drivers/3com/vortex.txt
144 F:      drivers/net/ethernet/3com/3c59x.c
145
146 3CR990 NETWORK DRIVER
147 M:      David Dillow <dave@thedillows.org>
148 L:      netdev@vger.kernel.org
149 S:      Maintained
150 F:      drivers/net/ethernet/3com/typhoon*
151
152 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
153 M:      Adam Radford <aradford@gmail.com>
154 L:      linux-scsi@vger.kernel.org
155 W:      http://www.lsi.com
156 S:      Supported
157 F:      drivers/scsi/3w-*
158
159 53C700 AND 53C700-66 SCSI DRIVER
160 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Maintained
163 F:      drivers/scsi/53c700*
164
165 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
166 M:      Alexander Aring <alex.aring@gmail.com>
167 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
168 L:      linux-bluetooth@vger.kernel.org
169 L:      linux-wpan@vger.kernel.org
170 S:      Maintained
171 F:      net/6lowpan/
172 F:      include/net/6lowpan.h
173 F:      Documentation/networking/6lowpan.txt
174
175 6PACK NETWORK DRIVER FOR AX.25
176 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
177 L:      linux-hams@vger.kernel.org
178 S:      Maintained
179 F:      drivers/net/hamradio/6pack.c
180
181 8169 10/100/1000 GIGABIT ETHERNET DRIVER
182 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
183 M:      Heiner Kallweit <hkallweit1@gmail.com>
184 L:      netdev@vger.kernel.org
185 S:      Maintained
186 F:      drivers/net/ethernet/realtek/r8169*
187
188 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
189 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
190 L:      linux-serial@vger.kernel.org
191 S:      Maintained
192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
193 F:      drivers/tty/serial/8250*
194 F:      include/linux/serial_8250.h
195
196 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
197 L:      netdev@vger.kernel.org
198 S:      Orphan / Obsolete
199 F:      drivers/net/ethernet/8390/
200
201 9P FILE SYSTEM
202 M:      Eric Van Hensbergen <ericvh@gmail.com>
203 M:      Latchesar Ionkov <lucho@ionkov.net>
204 M:      Dominique Martinet <asmadeus@codewreck.org>
205 L:      v9fs-developer@lists.sourceforge.net
206 W:      http://swik.net/v9fs
207 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
209 T:      git git://github.com/martinetd/linux.git
210 S:      Maintained
211 F:      Documentation/filesystems/9p.txt
212 F:      fs/9p/
213 F:      net/9p/
214 F:      include/net/9p/
215 F:      include/uapi/linux/virtio_9p.h
216 F:      include/trace/events/9p.h
217
218 A8293 MEDIA DRIVER
219 M:      Antti Palosaari <crope@iki.fi>
220 L:      linux-media@vger.kernel.org
221 W:      https://linuxtv.org
222 W:      http://palosaari.fi/linux/
223 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
224 T:      git git://linuxtv.org/anttip/media_tree.git
225 S:      Maintained
226 F:      drivers/media/dvb-frontends/a8293*
227
228 AACRAID SCSI RAID DRIVER
229 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
230 L:      linux-scsi@vger.kernel.org
231 W:      http://www.adaptec.com/
232 S:      Supported
233 F:      Documentation/scsi/aacraid.txt
234 F:      drivers/scsi/aacraid/
235
236 ABI/API
237 L:      linux-api@vger.kernel.org
238 F:      include/linux/syscalls.h
239 F:      kernel/sys_ni.c
240
241 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
242 M:      Hans de Goede <hdegoede@redhat.com>
243 L:      linux-hwmon@vger.kernel.org
244 S:      Maintained
245 F:      drivers/hwmon/abituguru.c
246
247 ABIT UGURU 3 HARDWARE MONITOR DRIVER
248 M:      Alistair John Strachan <alistair@devzero.co.uk>
249 L:      linux-hwmon@vger.kernel.org
250 S:      Maintained
251 F:      drivers/hwmon/abituguru3.c
252
253 ACCES 104-DIO-48E GPIO DRIVER
254 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
255 L:      linux-gpio@vger.kernel.org
256 S:      Maintained
257 F:      drivers/gpio/gpio-104-dio-48e.c
258
259 ACCES 104-IDI-48 GPIO DRIVER
260 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
261 L:      linux-gpio@vger.kernel.org
262 S:      Maintained
263 F:      drivers/gpio/gpio-104-idi-48.c
264
265 ACCES 104-IDIO-16 GPIO DRIVER
266 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
267 L:      linux-gpio@vger.kernel.org
268 S:      Maintained
269 F:      drivers/gpio/gpio-104-idio-16.c
270
271 ACCES 104-QUAD-8 DRIVER
272 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
273 L:      linux-iio@vger.kernel.org
274 S:      Maintained
275 F:      Documentation/ABI/testing/sysfs-bus-counter-104-quad-8
276 F:      Documentation/ABI/testing/sysfs-bus-iio-counter-104-quad-8
277 F:      drivers/counter/104-quad-8.c
278
279 ACCES PCI-IDIO-16 GPIO DRIVER
280 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
281 L:      linux-gpio@vger.kernel.org
282 S:      Maintained
283 F:      drivers/gpio/gpio-pci-idio-16.c
284
285 ACCES PCIe-IDIO-24 GPIO DRIVER
286 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
287 L:      linux-gpio@vger.kernel.org
288 S:      Maintained
289 F:      drivers/gpio/gpio-pcie-idio-24.c
290
291 ACENIC DRIVER
292 M:      Jes Sorensen <jes@trained-monkey.org>
293 L:      linux-acenic@sunsite.dk
294 S:      Maintained
295 F:      drivers/net/ethernet/alteon/acenic*
296
297 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
298 M:      Peter Feuerer <peter@piie.net>
299 L:      platform-driver-x86@vger.kernel.org
300 W:      http://piie.net/?section=acerhdf
301 S:      Maintained
302 F:      drivers/platform/x86/acerhdf.c
303
304 ACER WMI LAPTOP EXTRAS
305 M:      "Lee, Chun-Yi" <jlee@suse.com>
306 L:      platform-driver-x86@vger.kernel.org
307 S:      Maintained
308 F:      drivers/platform/x86/acer-wmi.c
309
310 ACPI
311 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
312 M:      Len Brown <lenb@kernel.org>
313 L:      linux-acpi@vger.kernel.org
314 W:      https://01.org/linux-acpi
315 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
316 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
317 B:      https://bugzilla.kernel.org
318 S:      Supported
319 F:      drivers/acpi/
320 F:      drivers/pnp/pnpacpi/
321 F:      include/linux/acpi.h
322 F:      include/linux/fwnode.h
323 F:      include/acpi/
324 F:      Documentation/firmware-guide/acpi/
325 F:      Documentation/ABI/testing/sysfs-bus-acpi
326 F:      Documentation/ABI/testing/configfs-acpi
327 F:      drivers/pci/*acpi*
328 F:      drivers/pci/*/*acpi*
329 F:      tools/power/acpi/
330
331 ACPI APEI
332 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
333 M:      Len Brown <lenb@kernel.org>
334 L:      linux-acpi@vger.kernel.org
335 R:      James Morse <james.morse@arm.com>
336 R:      Tony Luck <tony.luck@intel.com>
337 R:      Borislav Petkov <bp@alien8.de>
338 F:      drivers/acpi/apei/
339
340 ACPI COMPONENT ARCHITECTURE (ACPICA)
341 M:      Robert Moore <robert.moore@intel.com>
342 M:      Erik Schmauss <erik.schmauss@intel.com>
343 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
344 L:      linux-acpi@vger.kernel.org
345 L:      devel@acpica.org
346 W:      https://acpica.org/
347 W:      https://github.com/acpica/acpica/
348 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
350 B:      https://bugzilla.kernel.org
351 B:      https://bugs.acpica.org
352 S:      Supported
353 F:      drivers/acpi/acpica/
354 F:      include/acpi/
355 F:      tools/power/acpi/
356
357 ACPI FAN DRIVER
358 M:      Zhang Rui <rui.zhang@intel.com>
359 L:      linux-acpi@vger.kernel.org
360 W:      https://01.org/linux-acpi
361 B:      https://bugzilla.kernel.org
362 S:      Supported
363 F:      drivers/acpi/fan.c
364
365 ACPI FOR ARM64 (ACPI/arm64)
366 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
367 M:      Hanjun Guo <guohanjun@huawei.com>
368 M:      Sudeep Holla <sudeep.holla@arm.com>
369 L:      linux-acpi@vger.kernel.org
370 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
371 S:      Maintained
372 F:      drivers/acpi/arm64
373
374 ACPI I2C MULTI INSTANTIATE DRIVER
375 M:      Hans de Goede <hdegoede@redhat.com>
376 L:      platform-driver-x86@vger.kernel.org
377 S:      Maintained
378 F:      drivers/platform/x86/i2c-multi-instantiate.c
379
380 ACPI PMIC DRIVERS
381 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
382 M:      Len Brown <lenb@kernel.org>
383 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
384 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
385 L:      linux-acpi@vger.kernel.org
386 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
388 B:      https://bugzilla.kernel.org
389 S:      Supported
390 F:      drivers/acpi/pmic/
391
392 ACPI THERMAL DRIVER
393 M:      Zhang Rui <rui.zhang@intel.com>
394 L:      linux-acpi@vger.kernel.org
395 W:      https://01.org/linux-acpi
396 B:      https://bugzilla.kernel.org
397 S:      Supported
398 F:      drivers/acpi/*thermal*
399
400 ACPI VIDEO DRIVER
401 M:      Zhang Rui <rui.zhang@intel.com>
402 L:      linux-acpi@vger.kernel.org
403 W:      https://01.org/linux-acpi
404 B:      https://bugzilla.kernel.org
405 S:      Supported
406 F:      drivers/acpi/acpi_video.c
407
408 ACPI WMI DRIVER
409 L:      platform-driver-x86@vger.kernel.org
410 S:      Orphan
411 F:      drivers/platform/x86/wmi.c
412 F:      include/uapi/linux/wmi.h
413
414 AD1889 ALSA SOUND DRIVER
415 W:      https://parisc.wiki.kernel.org/index.php/AD1889
416 L:      linux-parisc@vger.kernel.org
417 S:      Maintained
418 F:      sound/pci/ad1889.*
419
420 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
421 M:      Michael Hennerich <michael.hennerich@analog.com>
422 W:      http://wiki.analog.com/AD5254
423 W:      http://ez.analog.com/community/linux-device-drivers
424 S:      Supported
425 F:      drivers/misc/ad525x_dpot.c
426
427 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
428 M:      Michael Hennerich <michael.hennerich@analog.com>
429 W:      http://wiki.analog.com/AD5398
430 W:      http://ez.analog.com/community/linux-device-drivers
431 S:      Supported
432 F:      drivers/regulator/ad5398.c
433
434 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
435 M:      Michael Hennerich <michael.hennerich@analog.com>
436 W:      http://wiki.analog.com/AD7142
437 W:      http://ez.analog.com/community/linux-device-drivers
438 S:      Supported
439 F:      drivers/input/misc/ad714x.c
440
441 AD7877 TOUCHSCREEN DRIVER
442 M:      Michael Hennerich <michael.hennerich@analog.com>
443 W:      http://wiki.analog.com/AD7877
444 W:      http://ez.analog.com/community/linux-device-drivers
445 S:      Supported
446 F:      drivers/input/touchscreen/ad7877.c
447
448 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
449 M:      Michael Hennerich <michael.hennerich@analog.com>
450 W:      http://wiki.analog.com/AD7879
451 W:      http://ez.analog.com/community/linux-device-drivers
452 S:      Supported
453 F:      drivers/input/touchscreen/ad7879.c
454
455 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
456 M:      Jiri Kosina <jikos@kernel.org>
457 S:      Maintained
458
459 ADF7242 IEEE 802.15.4 RADIO DRIVER
460 M:      Michael Hennerich <michael.hennerich@analog.com>
461 W:      https://wiki.analog.com/ADF7242
462 W:      http://ez.analog.com/community/linux-device-drivers
463 L:      linux-wpan@vger.kernel.org
464 S:      Supported
465 F:      drivers/net/ieee802154/adf7242.c
466 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
467
468 ADM1025 HARDWARE MONITOR DRIVER
469 M:      Jean Delvare <jdelvare@suse.com>
470 L:      linux-hwmon@vger.kernel.org
471 S:      Maintained
472 F:      Documentation/hwmon/adm1025.rst
473 F:      drivers/hwmon/adm1025.c
474
475 ADM1029 HARDWARE MONITOR DRIVER
476 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
477 L:      linux-hwmon@vger.kernel.org
478 S:      Maintained
479 F:      drivers/hwmon/adm1029.c
480
481 ADM8211 WIRELESS DRIVER
482 L:      linux-wireless@vger.kernel.org
483 W:      http://wireless.kernel.org/
484 S:      Orphan
485 F:      drivers/net/wireless/admtek/adm8211.*
486
487 ADP1653 FLASH CONTROLLER DRIVER
488 M:      Sakari Ailus <sakari.ailus@iki.fi>
489 L:      linux-media@vger.kernel.org
490 S:      Maintained
491 F:      drivers/media/i2c/adp1653.c
492 F:      include/media/i2c/adp1653.h
493
494 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
495 M:      Michael Hennerich <michael.hennerich@analog.com>
496 W:      http://wiki.analog.com/ADP5520
497 W:      http://ez.analog.com/community/linux-device-drivers
498 S:      Supported
499 F:      drivers/mfd/adp5520.c
500 F:      drivers/video/backlight/adp5520_bl.c
501 F:      drivers/leds/leds-adp5520.c
502 F:      drivers/gpio/gpio-adp5520.c
503 F:      drivers/input/keyboard/adp5520-keys.c
504
505 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
506 M:      Michael Hennerich <michael.hennerich@analog.com>
507 W:      http://wiki.analog.com/ADP5588
508 W:      http://ez.analog.com/community/linux-device-drivers
509 S:      Supported
510 F:      drivers/input/keyboard/adp5588-keys.c
511 F:      drivers/gpio/gpio-adp5588.c
512
513 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
514 M:      Michael Hennerich <michael.hennerich@analog.com>
515 W:      http://wiki.analog.com/ADP8860
516 W:      http://ez.analog.com/community/linux-device-drivers
517 S:      Supported
518 F:      drivers/video/backlight/adp8860_bl.c
519
520 ADT746X FAN DRIVER
521 M:      Colin Leroy <colin@colino.net>
522 S:      Maintained
523 F:      drivers/macintosh/therm_adt746x.c
524
525 ADT7475 HARDWARE MONITOR DRIVER
526 M:      Jean Delvare <jdelvare@suse.com>
527 L:      linux-hwmon@vger.kernel.org
528 S:      Maintained
529 F:      Documentation/hwmon/adt7475.rst
530 F:      drivers/hwmon/adt7475.c
531
532 ADVANSYS SCSI DRIVER
533 M:      Matthew Wilcox <willy@infradead.org>
534 M:      Hannes Reinecke <hare@suse.com>
535 L:      linux-scsi@vger.kernel.org
536 S:      Maintained
537 F:      Documentation/scsi/advansys.txt
538 F:      drivers/scsi/advansys.c
539
540 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
541 M:      Michael Hennerich <michael.hennerich@analog.com>
542 W:      http://wiki.analog.com/ADXL345
543 W:      http://ez.analog.com/community/linux-device-drivers
544 S:      Supported
545 F:      drivers/input/misc/adxl34x.c
546 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
547
548 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
549 M:      Stefan Popa <stefan.popa@analog.com>
550 W:      http://ez.analog.com/community/linux-device-drivers
551 S:      Supported
552 F:      drivers/iio/accel/adxl372.c
553 F:      drivers/iio/accel/adxl372_spi.c
554 F:      drivers/iio/accel/adxl372_i2c.c
555 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
556
557 AF9013 MEDIA DRIVER
558 M:      Antti Palosaari <crope@iki.fi>
559 L:      linux-media@vger.kernel.org
560 W:      https://linuxtv.org
561 W:      http://palosaari.fi/linux/
562 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
563 T:      git git://linuxtv.org/anttip/media_tree.git
564 S:      Maintained
565 F:      drivers/media/dvb-frontends/af9013*
566
567 AF9033 MEDIA DRIVER
568 M:      Antti Palosaari <crope@iki.fi>
569 L:      linux-media@vger.kernel.org
570 W:      https://linuxtv.org
571 W:      http://palosaari.fi/linux/
572 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
573 T:      git git://linuxtv.org/anttip/media_tree.git
574 S:      Maintained
575 F:      drivers/media/dvb-frontends/af9033*
576
577 AFFS FILE SYSTEM
578 M:      David Sterba <dsterba@suse.com>
579 L:      linux-fsdevel@vger.kernel.org
580 S:      Odd Fixes
581 F:      Documentation/filesystems/affs.txt
582 F:      fs/affs/
583
584 AFS FILESYSTEM
585 M:      David Howells <dhowells@redhat.com>
586 L:      linux-afs@lists.infradead.org
587 S:      Supported
588 F:      fs/afs/
589 F:      include/trace/events/afs.h
590 F:      Documentation/filesystems/afs.txt
591 W:      https://www.infradead.org/~dhowells/kafs/
592
593 AGPGART DRIVER
594 M:      David Airlie <airlied@linux.ie>
595 T:      git git://anongit.freedesktop.org/drm/drm
596 S:      Maintained
597 F:      drivers/char/agp/
598 F:      include/linux/agp*
599 F:      include/uapi/linux/agp*
600
601 AHA152X SCSI DRIVER
602 M:      "Juergen E. Fischer" <fischer@norbit.de>
603 L:      linux-scsi@vger.kernel.org
604 S:      Maintained
605 F:      drivers/scsi/aha152x*
606 F:      drivers/scsi/pcmcia/aha152x*
607
608 AIC7XXX / AIC79XX SCSI DRIVER
609 M:      Hannes Reinecke <hare@suse.com>
610 L:      linux-scsi@vger.kernel.org
611 S:      Maintained
612 F:      drivers/scsi/aic7xxx/
613
614 AIMSLAB FM RADIO RECEIVER DRIVER
615 M:      Hans Verkuil <hverkuil@xs4all.nl>
616 L:      linux-media@vger.kernel.org
617 T:      git git://linuxtv.org/media_tree.git
618 W:      https://linuxtv.org
619 S:      Maintained
620 F:      drivers/media/radio/radio-aimslab*
621
622 AIO
623 M:      Benjamin LaHaise <bcrl@kvack.org>
624 L:      linux-aio@kvack.org
625 S:      Supported
626 F:      fs/aio.c
627 F:      include/linux/*aio*.h
628
629 AIRSPY MEDIA DRIVER
630 M:      Antti Palosaari <crope@iki.fi>
631 L:      linux-media@vger.kernel.org
632 W:      https://linuxtv.org
633 W:      http://palosaari.fi/linux/
634 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
635 T:      git git://linuxtv.org/anttip/media_tree.git
636 S:      Maintained
637 F:      drivers/media/usb/airspy/
638
639 ALACRITECH GIGABIT ETHERNET DRIVER
640 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
641 S:      Maintained
642 F:      drivers/net/ethernet/alacritech/*
643
644 FORCEDETH GIGABIT ETHERNET DRIVER
645 M:      Rain River <rain.1986.08.12@gmail.com>
646 L:      netdev@vger.kernel.org
647 S:      Maintained
648 F:      drivers/net/ethernet/nvidia/*
649
650 ALCATEL SPEEDTOUCH USB DRIVER
651 M:      Duncan Sands <duncan.sands@free.fr>
652 L:      linux-usb@vger.kernel.org
653 W:      http://www.linux-usb.org/SpeedTouch/
654 S:      Maintained
655 F:      drivers/usb/atm/speedtch.c
656 F:      drivers/usb/atm/usbatm.c
657
658 ALCHEMY AU1XX0 MMC DRIVER
659 M:      Manuel Lauss <manuel.lauss@gmail.com>
660 S:      Maintained
661 F:      drivers/mmc/host/au1xmmc.c
662
663 ALI1563 I2C DRIVER
664 M:      Rudolf Marek <r.marek@assembler.cz>
665 L:      linux-i2c@vger.kernel.org
666 S:      Maintained
667 F:      Documentation/i2c/busses/i2c-ali1563.rst
668 F:      drivers/i2c/busses/i2c-ali1563.c
669
670 ALLEGRO DVT VIDEO IP CORE DRIVER
671 M:      Michael Tretter <m.tretter@pengutronix.de>
672 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
673 L:      linux-media@vger.kernel.org
674 S:      Maintained
675 F:      drivers/staging/media/allegro-dvt/
676
677 ALLWINNER CPUFREQ DRIVER
678 M:      Yangtao Li <tiny.windzz@gmail.com>
679 L:      linux-pm@vger.kernel.org
680 S:      Maintained
681 F:      Documentation/devicetree/bindings/opp/sun50i-nvmem-cpufreq.txt
682 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
683
684 ALLWINNER SECURITY SYSTEM
685 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
686 L:      linux-crypto@vger.kernel.org
687 S:      Maintained
688 F:      drivers/crypto/sunxi-ss/
689
690 ALLWINNER VPU DRIVER
691 M:      Maxime Ripard <mripard@kernel.org>
692 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
693 L:      linux-media@vger.kernel.org
694 S:      Maintained
695 F:      drivers/staging/media/sunxi/cedrus/
696
697 ALPHA PORT
698 M:      Richard Henderson <rth@twiddle.net>
699 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
700 M:      Matt Turner <mattst88@gmail.com>
701 S:      Odd Fixes
702 L:      linux-alpha@vger.kernel.org
703 F:      arch/alpha/
704
705 ALPS PS/2 TOUCHPAD DRIVER
706 R:      Pali Rohár <pali.rohar@gmail.com>
707 F:      drivers/input/mouse/alps.*
708
709 ALTERA I2C CONTROLLER DRIVER
710 M:      Thor Thayer <thor.thayer@linux.intel.com>
711 S:      Maintained
712 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
713 F:      drivers/i2c/busses/i2c-altera.c
714
715 ALTERA MAILBOX DRIVER
716 M:      Ley Foon Tan <lftan@altera.com>
717 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
718 S:      Maintained
719 F:      drivers/mailbox/mailbox-altera.c
720
721 ALTERA PIO DRIVER
722 M:      Tien Hock Loh <thloh@altera.com>
723 L:      linux-gpio@vger.kernel.org
724 S:      Maintained
725 F:      drivers/gpio/gpio-altera.c
726
727 ALTERA SYSTEM MANAGER DRIVER
728 M:      Thor Thayer <thor.thayer@linux.intel.com>
729 S:      Maintained
730 F:      drivers/mfd/altera-sysmgr.c
731 F:      include/linux/mfd/altera-sysgmr.h
732
733 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
734 M:      Thor Thayer <thor.thayer@linux.intel.com>
735 S:      Maintained
736 F:      drivers/gpio/gpio-altera-a10sr.c
737 F:      drivers/mfd/altera-a10sr.c
738 F:      drivers/reset/reset-a10sr.c
739 F:      include/linux/mfd/altera-a10sr.h
740 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
741
742 ALTERA TRIPLE SPEED ETHERNET DRIVER
743 M:      Thor Thayer <thor.thayer@linux.intel.com>
744 L:      netdev@vger.kernel.org
745 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
746 S:      Maintained
747 F:      drivers/net/ethernet/altera/
748
749 ALTERA UART/JTAG UART SERIAL DRIVERS
750 M:      Tobias Klauser <tklauser@distanz.ch>
751 L:      linux-serial@vger.kernel.org
752 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
753 S:      Maintained
754 F:      drivers/tty/serial/altera_uart.c
755 F:      drivers/tty/serial/altera_jtaguart.c
756 F:      include/linux/altera_uart.h
757 F:      include/linux/altera_jtaguart.h
758
759 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
760 M:      Talel Shenhar <talel@amazon.com>
761 S:      Maintained
762 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
763 F:      drivers/thermal/thermal_mmio.c
764
765 AMAZON ETHERNET DRIVERS
766 M:      Netanel Belgazal <netanel@amazon.com>
767 R:      Saeed Bishara <saeedb@amazon.com>
768 R:      Zorik Machulsky <zorik@amazon.com>
769 L:      netdev@vger.kernel.org
770 S:      Supported
771 F:      Documentation/networking/device_drivers/amazon/ena.txt
772 F:      drivers/net/ethernet/amazon/
773
774 AMAZON RDMA EFA DRIVER
775 M:      Gal Pressman <galpress@amazon.com>
776 R:      Yossi Leybovich <sleybo@amazon.com>
777 L:      linux-rdma@vger.kernel.org
778 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
779 S:      Supported
780 F:      drivers/infiniband/hw/efa/
781 F:      include/uapi/rdma/efa-abi.h
782
783 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
784 M:      Tom Lendacky <thomas.lendacky@amd.com>
785 M:      Gary Hook <gary.hook@amd.com>
786 L:      linux-crypto@vger.kernel.org
787 S:      Supported
788 F:      drivers/crypto/ccp/
789 F:      include/linux/ccp.h
790
791 AMD DISPLAY CORE
792 M:      Harry Wentland <harry.wentland@amd.com>
793 M:      Leo Li <sunpeng.li@amd.com>
794 L:      amd-gfx@lists.freedesktop.org
795 T:      git git://people.freedesktop.org/~agd5f/linux
796 S:      Supported
797 F:      drivers/gpu/drm/amd/display/
798
799 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
800 M:      Huang Rui <ray.huang@amd.com>
801 L:      linux-hwmon@vger.kernel.org
802 S:      Supported
803 F:      Documentation/hwmon/fam15h_power.rst
804 F:      drivers/hwmon/fam15h_power.c
805
806 AMD FCH GPIO DRIVER
807 M:      Enrico Weigelt, metux IT consult <info@metux.net>
808 L:      linux-gpio@vger.kernel.org
809 S:      Maintained
810 F:      drivers/gpio/gpio-amd-fch.c
811 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
812
813 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
814 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
815 S:      Orphan
816 F:      drivers/usb/gadget/udc/amd5536udc.*
817
818 AMD GEODE PROCESSOR/CHIPSET SUPPORT
819 P:      Andres Salomon <dilinger@queued.net>
820 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
821 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
822 S:      Supported
823 F:      drivers/char/hw_random/geode-rng.c
824 F:      drivers/crypto/geode*
825 F:      drivers/video/fbdev/geode/
826 F:      arch/x86/include/asm/geode.h
827
828 AMD IOMMU (AMD-VI)
829 M:      Joerg Roedel <joro@8bytes.org>
830 L:      iommu@lists.linux-foundation.org
831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
832 S:      Maintained
833 F:      drivers/iommu/amd_iommu*.[ch]
834 F:      include/linux/amd-iommu.h
835
836 AMD KFD
837 M:      Oded Gabbay <oded.gabbay@gmail.com>
838 L:      dri-devel@lists.freedesktop.org
839 T:      git git://people.freedesktop.org/~gabbayo/linux.git
840 S:      Supported
841 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
842 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
843 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
844 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
845 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v9.c
846 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_fence.c
847 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c
848 F:      drivers/gpu/drm/amd/amdkfd/
849 F:      drivers/gpu/drm/amd/include/cik_structs.h
850 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
851 F:      drivers/gpu/drm/amd/include/vi_structs.h
852 F:      drivers/gpu/drm/amd/include/v9_structs.h
853 F:      include/uapi/linux/kfd_ioctl.h
854
855 AMD MP2 I2C DRIVER
856 M:      Elie Morisse <syniurge@gmail.com>
857 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
858 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
859 L:      linux-i2c@vger.kernel.org
860 S:      Maintained
861 F:      drivers/i2c/busses/i2c-amd-mp2*
862
863 AMD POWERPLAY
864 M:      Rex Zhu <rex.zhu@amd.com>
865 M:      Evan Quan <evan.quan@amd.com>
866 L:      amd-gfx@lists.freedesktop.org
867 S:      Supported
868 F:      drivers/gpu/drm/amd/powerplay/
869 T:      git git://people.freedesktop.org/~agd5f/linux
870
871 AMD SEATTLE DEVICE TREE SUPPORT
872 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
873 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
874 M:      Tom Lendacky <thomas.lendacky@amd.com>
875 S:      Supported
876 F:      arch/arm64/boot/dts/amd/
877
878 AMD XGBE DRIVER
879 M:      Tom Lendacky <thomas.lendacky@amd.com>
880 L:      netdev@vger.kernel.org
881 S:      Supported
882 F:      drivers/net/ethernet/amd/xgbe/
883 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
884
885 ANALOG DEVICES INC AD5686 DRIVER
886 M:      Stefan Popa <stefan.popa@analog.com>
887 L:      linux-pm@vger.kernel.org
888 W:      http://ez.analog.com/community/linux-device-drivers
889 S:      Supported
890 F:      drivers/iio/dac/ad5686*
891 F:      drivers/iio/dac/ad5696*
892
893 ANALOG DEVICES INC AD5758 DRIVER
894 M:      Stefan Popa <stefan.popa@analog.com>
895 L:      linux-iio@vger.kernel.org
896 W:      http://ez.analog.com/community/linux-device-drivers
897 S:      Supported
898 F:      drivers/iio/dac/ad5758.c
899 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
900
901 ANALOG DEVICES INC AD7124 DRIVER
902 M:      Stefan Popa <stefan.popa@analog.com>
903 L:      linux-iio@vger.kernel.org
904 W:      http://ez.analog.com/community/linux-device-drivers
905 S:      Supported
906 F:      drivers/iio/adc/ad7124.c
907 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7124.yaml
908
909 ANALOG DEVICES INC AD7606 DRIVER
910 M:      Stefan Popa <stefan.popa@analog.com>
911 M:      Beniamin Bia <beniamin.bia@analog.com>
912 L:      linux-iio@vger.kernel.org
913 W:      http://ez.analog.com/community/linux-device-drivers
914 S:      Supported
915 F:      drivers/iio/adc/ad7606.c
916 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
917
918 ANALOG DEVICES INC AD7768-1 DRIVER
919 M:      Stefan Popa <stefan.popa@analog.com>
920 L:      linux-iio@vger.kernel.org
921 W:      http://ez.analog.com/community/linux-device-drivers
922 S:      Supported
923 F:      drivers/iio/adc/ad7768-1.c
924 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.txt
925
926 ANALOG DEVICES INC AD7780 DRIVER
927 M:      Michael Hennerich <Michael.Hennerich@analog.com>
928 M:      Renato Lui Geh <renatogeh@gmail.com>
929 L:      linux-iio@vger.kernel.org
930 W:      http://ez.analog.com/community/linux-device-drivers
931 S:      Supported
932 F:      drivers/iio/adc/ad7780.c
933 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
934
935 ANALOG DEVICES INC AD9389B DRIVER
936 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
937 L:      linux-media@vger.kernel.org
938 S:      Maintained
939 F:      drivers/media/i2c/ad9389b*
940
941 ANALOG DEVICES INC ADGS1408 DRIVER
942 M:      Mircea Caprioru <mircea.caprioru@analog.com>
943 S:      Supported
944 F:      drivers/mux/adgs1408.c
945 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
946
947 ANALOG DEVICES INC ADIN DRIVER
948 M:      Alexandru Ardelean <alexaundru.ardelean@analog.com>
949 L:      netdev@vger.kernel.org
950 W:      http://ez.analog.com/community/linux-device-drivers
951 S:      Supported
952 F:      drivers/net/phy/adin.c
953 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
954
955 ANALOG DEVICES INC ADIS DRIVER LIBRARY
956 M:      Alexandru Ardelean <alexandru.ardelean@analog.com>
957 S:      Supported
958 L:      linux-iio@vger.kernel.org
959 F:      include/linux/iio/imu/adis.h
960 F:      drivers/iio/imu/adis.c
961
962 ANALOG DEVICES INC ADIS16460 DRIVER
963 M:      Dragos Bogdan <dragos.bogdan@analog.com>
964 S:      Supported
965 L:      linux-iio@vger.kernel.org
966 W:      http://ez.analog.com/community/linux-device-drivers
967 F:      drivers/iio/imu/adis16460.c
968 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
969
970 ANALOG DEVICES INC ADP5061 DRIVER
971 M:      Stefan Popa <stefan.popa@analog.com>
972 L:      linux-pm@vger.kernel.org
973 W:      http://ez.analog.com/community/linux-device-drivers
974 S:      Supported
975 F:      drivers/power/supply/adp5061.c
976
977 ANALOG DEVICES INC ADV7180 DRIVER
978 M:      Lars-Peter Clausen <lars@metafoo.de>
979 L:      linux-media@vger.kernel.org
980 W:      http://ez.analog.com/community/linux-device-drivers
981 S:      Supported
982 F:      drivers/media/i2c/adv7180.c
983
984 ANALOG DEVICES INC ADV748X DRIVER
985 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
986 L:      linux-media@vger.kernel.org
987 S:      Maintained
988 F:      drivers/media/i2c/adv748x/*
989
990 ANALOG DEVICES INC ADV7511 DRIVER
991 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
992 L:      linux-media@vger.kernel.org
993 S:      Maintained
994 F:      drivers/media/i2c/adv7511*
995
996 ANALOG DEVICES INC ADV7604 DRIVER
997 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
998 L:      linux-media@vger.kernel.org
999 S:      Maintained
1000 F:      drivers/media/i2c/adv7604*
1001
1002 ANALOG DEVICES INC ADV7842 DRIVER
1003 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1004 L:      linux-media@vger.kernel.org
1005 S:      Maintained
1006 F:      drivers/media/i2c/adv7842*
1007
1008 ANALOG DEVICES INC ASOC CODEC DRIVERS
1009 M:      Lars-Peter Clausen <lars@metafoo.de>
1010 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1011 W:      http://wiki.analog.com/
1012 W:      http://ez.analog.com/community/linux-device-drivers
1013 S:      Supported
1014 F:      sound/soc/codecs/adau*
1015 F:      sound/soc/codecs/adav*
1016 F:      sound/soc/codecs/ad1*
1017 F:      sound/soc/codecs/ad7*
1018 F:      sound/soc/codecs/ssm*
1019 F:      sound/soc/codecs/sigmadsp.*
1020
1021 ANALOG DEVICES INC DMA DRIVERS
1022 M:      Lars-Peter Clausen <lars@metafoo.de>
1023 W:      http://ez.analog.com/community/linux-device-drivers
1024 S:      Supported
1025 F:      drivers/dma/dma-axi-dmac.c
1026
1027 ANALOG DEVICES INC IIO DRIVERS
1028 M:      Lars-Peter Clausen <lars@metafoo.de>
1029 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1030 M:      Stefan Popa <stefan.popa@analog.com>
1031 W:      http://wiki.analog.com/
1032 W:      http://ez.analog.com/community/linux-device-drivers
1033 S:      Supported
1034 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1035 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1036 F:      drivers/iio/*/ad*
1037 F:      drivers/iio/adc/ltc2497*
1038 X:      drivers/iio/*/adjd*
1039 F:      drivers/staging/iio/*/ad*
1040
1041 ANALOGBITS PLL LIBRARIES
1042 M:      Paul Walmsley <paul.walmsley@sifive.com>
1043 S:      Supported
1044 F:      drivers/clk/analogbits/*
1045 F:      include/linux/clk/analogbits*
1046
1047 ANDES ARCHITECTURE
1048 M:      Greentime Hu <green.hu@gmail.com>
1049 M:      Vincent Chen <deanbo422@gmail.com>
1050 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1051 S:      Supported
1052 F:      arch/nds32/
1053 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1054 F:      Documentation/devicetree/bindings/nds32/
1055 K:      nds32
1056 N:      nds32
1057
1058 ANDROID CONFIG FRAGMENTS
1059 M:      Rob Herring <robh@kernel.org>
1060 S:      Supported
1061 F:      kernel/configs/android*
1062
1063 ANDROID DRIVERS
1064 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1065 M:      Arve Hjønnevåg <arve@android.com>
1066 M:      Todd Kjos <tkjos@android.com>
1067 M:      Martijn Coenen <maco@android.com>
1068 M:      Joel Fernandes <joel@joelfernandes.org>
1069 M:      Christian Brauner <christian@brauner.io>
1070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1071 L:      devel@driverdev.osuosl.org
1072 S:      Supported
1073 F:      drivers/android/
1074 F:      drivers/staging/android/
1075
1076 ANDROID GOLDFISH PIC DRIVER
1077 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1078 S:      Supported
1079 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1080 F:      drivers/irqchip/irq-goldfish-pic.c
1081
1082 ANDROID GOLDFISH RTC DRIVER
1083 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1084 S:      Supported
1085 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1086 F:      drivers/rtc/rtc-goldfish.c
1087
1088 ANDROID ION DRIVER
1089 M:      Laura Abbott <labbott@redhat.com>
1090 M:      Sumit Semwal <sumit.semwal@linaro.org>
1091 L:      devel@driverdev.osuosl.org
1092 L:      dri-devel@lists.freedesktop.org
1093 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
1094 S:      Supported
1095 F:      drivers/staging/android/ion
1096 F:      drivers/staging/android/uapi/ion.h
1097
1098 AOA (Apple Onboard Audio) ALSA DRIVER
1099 M:      Johannes Berg <johannes@sipsolutions.net>
1100 L:      linuxppc-dev@lists.ozlabs.org
1101 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1102 S:      Maintained
1103 F:      sound/aoa/
1104
1105 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1106 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1107 L:      linux-iio@vger.kernel.org
1108 S:      Maintained
1109 F:      drivers/iio/adc/stx104.c
1110
1111 APM DRIVER
1112 M:      Jiri Kosina <jikos@kernel.org>
1113 S:      Odd fixes
1114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1115 F:      arch/x86/kernel/apm_32.c
1116 F:      include/linux/apm_bios.h
1117 F:      include/uapi/linux/apm_bios.h
1118 F:      drivers/char/apm-emulation.c
1119
1120 APPARMOR SECURITY MODULE
1121 M:      John Johansen <john.johansen@canonical.com>
1122 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1123 W:      wiki.apparmor.net
1124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1125 S:      Supported
1126 F:      security/apparmor/
1127 F:      Documentation/admin-guide/LSM/apparmor.rst
1128
1129 APPLE BCM5974 MULTITOUCH DRIVER
1130 M:      Henrik Rydberg <rydberg@bitmath.org>
1131 L:      linux-input@vger.kernel.org
1132 S:      Odd fixes
1133 F:      drivers/input/mouse/bcm5974.c
1134
1135 APPLE SMC DRIVER
1136 M:      Henrik Rydberg <rydberg@bitmath.org>
1137 L:      linux-hwmon@vger.kernel.org
1138 S:      Odd fixes
1139 F:      drivers/hwmon/applesmc.c
1140
1141 APPLETALK NETWORK LAYER
1142 L:      netdev@vger.kernel.org
1143 S:      Odd fixes
1144 F:      drivers/net/appletalk/
1145 F:      net/appletalk/
1146 F:      include/linux/atalk.h
1147 F:      include/uapi/linux/atalk.h
1148
1149 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1150 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1151 S:      Supported
1152 F:      arch/arm64/boot/dts/apm/
1153
1154 APPLIED MICRO (APM) X-GENE SOC EDAC
1155 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1156 S:      Supported
1157 F:      drivers/edac/xgene_edac.c
1158 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1159
1160 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1161 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1162 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1163 S:      Supported
1164 F:      drivers/net/ethernet/apm/xgene-v2/
1165
1166 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1167 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1168 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1169 M:      Quan Nguyen <quan@os.amperecomputing.com>
1170 S:      Supported
1171 F:      drivers/net/ethernet/apm/xgene/
1172 F:      drivers/net/phy/mdio-xgene.c
1173 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1174 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1175
1176 APPLIED MICRO (APM) X-GENE SOC PMU
1177 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1178 S:      Supported
1179 F:      drivers/perf/xgene_pmu.c
1180 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1181 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1182
1183 APTINA CAMERA SENSOR PLL
1184 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1185 L:      linux-media@vger.kernel.org
1186 S:      Maintained
1187 F:      drivers/media/i2c/aptina-pll.*
1188
1189 AQUANTIA ETHERNET DRIVER (atlantic)
1190 M:      Igor Russkikh <igor.russkikh@aquantia.com>
1191 L:      netdev@vger.kernel.org
1192 S:      Supported
1193 W:      http://www.aquantia.com
1194 Q:      http://patchwork.ozlabs.org/project/netdev/list/
1195 F:      drivers/net/ethernet/aquantia/atlantic/
1196 F:      Documentation/networking/device_drivers/aquantia/atlantic.txt
1197
1198 ARC FRAMEBUFFER DRIVER
1199 M:      Jaya Kumar <jayalk@intworks.biz>
1200 S:      Maintained
1201 F:      drivers/video/fbdev/arcfb.c
1202 F:      drivers/video/fbdev/core/fb_defio.c
1203
1204 ARC PGU DRM DRIVER
1205 M:      Alexey Brodkin <abrodkin@synopsys.com>
1206 S:      Supported
1207 F:      drivers/gpu/drm/arc/
1208 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1209
1210 ARCNET NETWORK LAYER
1211 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1212 L:      netdev@vger.kernel.org
1213 S:      Maintained
1214 F:      drivers/net/arcnet/
1215 F:      include/uapi/linux/if_arcnet.h
1216
1217 ARM ARCHITECTED TIMER DRIVER
1218 M:      Mark Rutland <mark.rutland@arm.com>
1219 M:      Marc Zyngier <maz@kernel.org>
1220 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1221 S:      Maintained
1222 F:      arch/arm/include/asm/arch_timer.h
1223 F:      arch/arm64/include/asm/arch_timer.h
1224 F:      drivers/clocksource/arm_arch_timer.c
1225
1226 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1227 M:      Linus Walleij <linus.walleij@linaro.org>
1228 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1229 S:      Maintained
1230 F:      Documentation/devicetree/bindings/arm/arm-boards
1231 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1232 F:      Documentation/devicetree/bindings/clock/arm-integrator.txt
1233 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1234 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1235 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1236 F:      arch/arm/mach-integrator/
1237 F:      arch/arm/mach-realview/
1238 F:      arch/arm/mach-versatile/
1239 F:      arch/arm/plat-versatile/
1240 F:      arch/arm/boot/dts/arm-realview-*
1241 F:      arch/arm/boot/dts/integrator*
1242 F:      arch/arm/boot/dts/versatile*
1243 F:      drivers/clk/versatile/
1244 F:      drivers/i2c/busses/i2c-versatile.c
1245 F:      drivers/irqchip/irq-versatile-fpga.c
1246 F:      drivers/mtd/maps/physmap_of_versatile.c
1247 F:      drivers/power/reset/arm-versatile-reboot.c
1248 F:      drivers/soc/versatile/
1249
1250 ARM HDLCD DRM DRIVER
1251 M:      Liviu Dudau <liviu.dudau@arm.com>
1252 S:      Supported
1253 F:      drivers/gpu/drm/arm/hdlcd_*
1254 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1255
1256 ARM KOMEDA DRM-KMS DRIVER
1257 M:      James (Qian) Wang <james.qian.wang@arm.com>
1258 M:      Liviu Dudau <liviu.dudau@arm.com>
1259 L:      Mali DP Maintainers <malidp@foss.arm.com>
1260 S:      Supported
1261 T:      git git://anongit.freedesktop.org/drm/drm-misc
1262 F:      drivers/gpu/drm/arm/display/include/
1263 F:      drivers/gpu/drm/arm/display/komeda/
1264 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1265 F:      Documentation/gpu/komeda-kms.rst
1266
1267 ARM MALI-DP DRM DRIVER
1268 M:      Liviu Dudau <liviu.dudau@arm.com>
1269 M:      Brian Starkey <brian.starkey@arm.com>
1270 L:      Mali DP Maintainers <malidp@foss.arm.com>
1271 S:      Supported
1272 T:      git git://anongit.freedesktop.org/drm/drm-misc
1273 F:      drivers/gpu/drm/arm/
1274 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1275 F:      Documentation/gpu/afbc.rst
1276
1277 ARM MALI PANFROST DRM DRIVER
1278 M:      Rob Herring <robh@kernel.org>
1279 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1280 L:      dri-devel@lists.freedesktop.org
1281 S:      Supported
1282 T:      git git://anongit.freedesktop.org/drm/drm-misc
1283 F:      drivers/gpu/drm/panfrost/
1284 F:      include/uapi/drm/panfrost_drm.h
1285
1286 ARM MFM AND FLOPPY DRIVERS
1287 M:      Ian Molton <spyro@f2s.com>
1288 S:      Maintained
1289 F:      arch/arm/mach-rpc/floppydma.S
1290 F:      arch/arm/include/asm/floppy.h
1291
1292 ARM PMU PROFILING AND DEBUGGING
1293 M:      Will Deacon <will@kernel.org>
1294 M:      Mark Rutland <mark.rutland@arm.com>
1295 S:      Maintained
1296 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1297 F:      arch/arm*/kernel/perf_*
1298 F:      arch/arm/oprofile/common.c
1299 F:      arch/arm*/kernel/hw_breakpoint.c
1300 F:      arch/arm*/include/asm/hw_breakpoint.h
1301 F:      arch/arm*/include/asm/perf_event.h
1302 F:      drivers/perf/*
1303 F:      include/linux/perf/arm_pmu.h
1304 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1305 F:      Documentation/devicetree/bindings/perf/
1306
1307 ARM PORT
1308 M:      Russell King <linux@armlinux.org.uk>
1309 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1310 W:      http://www.armlinux.org.uk/
1311 S:      Odd Fixes
1312 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1313 F:      arch/arm/
1314 X:      arch/arm/boot/dts/
1315
1316 ARM PRIMECELL AACI PL041 DRIVER
1317 M:      Russell King <linux@armlinux.org.uk>
1318 S:      Odd Fixes
1319 F:      sound/arm/aaci.*
1320
1321 ARM PRIMECELL BUS SUPPORT
1322 M:      Russell King <linux@armlinux.org.uk>
1323 S:      Odd Fixes
1324 F:      drivers/amba/
1325 F:      include/linux/amba/bus.h
1326
1327 ARM PRIMECELL CLCD PL110 DRIVER
1328 M:      Russell King <linux@armlinux.org.uk>
1329 S:      Odd Fixes
1330 F:      drivers/video/fbdev/amba-clcd.*
1331
1332 ARM PRIMECELL KMI PL050 DRIVER
1333 M:      Russell King <linux@armlinux.org.uk>
1334 S:      Odd Fixes
1335 F:      drivers/input/serio/ambakmi.*
1336 F:      include/linux/amba/kmi.h
1337
1338 ARM PRIMECELL MMCI PL180/1 DRIVER
1339 M:      Russell King <linux@armlinux.org.uk>
1340 S:      Odd Fixes
1341 F:      drivers/mmc/host/mmci.*
1342 F:      include/linux/amba/mmci.h
1343
1344 ARM PRIMECELL SSP PL022 SPI DRIVER
1345 M:      Linus Walleij <linus.walleij@linaro.org>
1346 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1347 S:      Maintained
1348 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1349 F:      drivers/spi/spi-pl022.c
1350
1351 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1352 M:      Russell King <linux@armlinux.org.uk>
1353 S:      Odd Fixes
1354 F:      drivers/tty/serial/amba-pl01*.c
1355 F:      include/linux/amba/serial.h
1356
1357 ARM PRIMECELL VIC PL190/PL192 DRIVER
1358 M:      Linus Walleij <linus.walleij@linaro.org>
1359 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1360 S:      Maintained
1361 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1362 F:      drivers/irqchip/irq-vic.c
1363
1364 AMAZON ANNAPURNA LABS FIC DRIVER
1365 M:      Talel Shenhar <talel@amazon.com>
1366 S:      Maintained
1367 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
1368 F:      drivers/irqchip/irq-al-fic.c
1369
1370 ARM SMMU DRIVERS
1371 M:      Will Deacon <will@kernel.org>
1372 R:      Robin Murphy <robin.murphy@arm.com>
1373 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1374 S:      Maintained
1375 F:      drivers/iommu/arm-smmu*
1376 F:      drivers/iommu/io-pgtable-arm.c
1377 F:      drivers/iommu/io-pgtable-arm-v7s.c
1378
1379 ARM SUB-ARCHITECTURES
1380 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1381 S:      Maintained
1382 F:      arch/arm/mach-*/
1383 F:      arch/arm/plat-*/
1384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1385
1386 ARM/ACTIONS SEMI ARCHITECTURE
1387 M:      Andreas Färber <afaerber@suse.de>
1388 R:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1389 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1390 S:      Maintained
1391 N:      owl
1392 F:      arch/arm/mach-actions/
1393 F:      arch/arm/boot/dts/owl-*
1394 F:      arch/arm64/boot/dts/actions/
1395 F:      drivers/clk/actions/
1396 F:      drivers/clocksource/timer-owl*
1397 F:      drivers/dma/owl-dma.c
1398 F:      drivers/i2c/busses/i2c-owl.c
1399 F:      drivers/pinctrl/actions/*
1400 F:      drivers/soc/actions/
1401 F:      include/dt-bindings/power/owl-*
1402 F:      include/linux/soc/actions/
1403 F:      Documentation/devicetree/bindings/arm/actions.txt
1404 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1405 F:      Documentation/devicetree/bindings/dma/owl-dma.txt
1406 F:      Documentation/devicetree/bindings/i2c/i2c-owl.txt
1407 F:      Documentation/devicetree/bindings/pinctrl/actions,s900-pinctrl.txt
1408 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1409 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1410
1411 ARM/ADS SPHERE MACHINE SUPPORT
1412 M:      Lennert Buytenhek <kernel@wantstofly.org>
1413 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1414 S:      Maintained
1415
1416 ARM/AFEB9260 MACHINE SUPPORT
1417 M:      Sergey Lapin <slapin@ossfans.org>
1418 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1419 S:      Maintained
1420
1421 ARM/AJECO 1ARM MACHINE SUPPORT
1422 M:      Lennert Buytenhek <kernel@wantstofly.org>
1423 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1424 S:      Maintained
1425
1426 ARM/Allwinner SoC Clock Support
1427 M:      Emilio López <emilio@elopez.com.ar>
1428 S:      Maintained
1429 F:      drivers/clk/sunxi/
1430
1431 ARM/Allwinner sunXi SoC support
1432 M:      Maxime Ripard <mripard@kernel.org>
1433 M:      Chen-Yu Tsai <wens@csie.org>
1434 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1435 S:      Maintained
1436 N:      sun[x456789]i
1437 N:      sun50i
1438 F:      arch/arm/mach-sunxi/
1439 F:      arch/arm64/boot/dts/allwinner/
1440 F:      drivers/clk/sunxi-ng/
1441 F:      drivers/pinctrl/sunxi/
1442 F:      drivers/soc/sunxi/
1443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1444
1445 Allwinner A10 CSI driver
1446 M:      Maxime Ripard <mripard@kernel.org>
1447 L:      linux-media@vger.kernel.org
1448 T:      git git://linuxtv.org/media_tree.git
1449 F:      drivers/media/platform/sunxi/sun4i-csi/
1450 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
1451 S:      Maintained
1452
1453 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1454 M:      Neil Armstrong <narmstrong@baylibre.com>
1455 M:      Jerome Brunet <jbrunet@baylibre.com>
1456 L:      linux-amlogic@lists.infradead.org
1457 S:      Maintained
1458 F:      drivers/clk/meson/
1459 F:      include/dt-bindings/clock/meson*
1460 F:      include/dt-bindings/clock/gxbb*
1461 F:      Documentation/devicetree/bindings/clock/amlogic*
1462
1463 ARM/Amlogic Meson SoC support
1464 M:      Kevin Hilman <khilman@baylibre.com>
1465 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1466 L:      linux-amlogic@lists.infradead.org
1467 W:      http://linux-meson.com/
1468 S:      Maintained
1469 F:      arch/arm/mach-meson/
1470 F:      arch/arm/boot/dts/meson*
1471 F:      arch/arm64/boot/dts/amlogic/
1472 F:      drivers/pinctrl/meson/
1473 F:      drivers/mmc/host/meson*
1474 F:      drivers/soc/amlogic/
1475 N:      meson
1476
1477 ARM/Amlogic Meson SoC Sound Drivers
1478 M:      Jerome Brunet <jbrunet@baylibre.com>
1479 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1480 S:      Maintained
1481 F:      sound/soc/meson/
1482 F:      Documentation/devicetree/bindings/sound/amlogic*
1483
1484 ARM/Annapurna Labs ALPINE ARCHITECTURE
1485 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1486 M:      Antoine Tenart <antoine.tenart@bootlin.com>
1487 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1488 S:      Maintained
1489 F:      arch/arm/mach-alpine/
1490 F:      arch/arm/boot/dts/alpine*
1491 F:      arch/arm64/boot/dts/al/
1492 F:      drivers/*/*alpine*
1493
1494 ARM/ARTPEC MACHINE SUPPORT
1495 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1496 M:      Lars Persson <lars.persson@axis.com>
1497 S:      Maintained
1498 L:      linux-arm-kernel@axis.com
1499 F:      arch/arm/mach-artpec
1500 F:      arch/arm/boot/dts/artpec6*
1501 F:      drivers/clk/axis
1502 F:      drivers/crypto/axis
1503 F:      drivers/mmc/host/usdhi6rol0.c
1504 F:      drivers/pinctrl/pinctrl-artpec*
1505 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1506
1507 ARM/ASPEED I2C DRIVER
1508 M:      Brendan Higgins <brendanhiggins@google.com>
1509 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1510 R:      Joel Stanley <joel@jms.id.au>
1511 L:      linux-i2c@vger.kernel.org
1512 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1513 S:      Maintained
1514 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1515 F:      drivers/i2c/busses/i2c-aspeed.c
1516 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1517 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1518
1519 ARM/ASPEED MACHINE SUPPORT
1520 M:      Joel Stanley <joel@jms.id.au>
1521 R:      Andrew Jeffery <andrew@aj.id.au>
1522 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1523 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1524 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1525 S:      Supported
1526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1527 F:      arch/arm/mach-aspeed/
1528 F:      arch/arm/boot/dts/aspeed-*
1529 N:      aspeed
1530
1531 ARM/BITMAIN ARCHITECTURE
1532 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1533 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1534 S:      Maintained
1535 F:      arch/arm64/boot/dts/bitmain/
1536 F:      drivers/pinctrl/pinctrl-bm1880.c
1537 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1538 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1539
1540 ARM/CALXEDA HIGHBANK ARCHITECTURE
1541 M:      Rob Herring <robh@kernel.org>
1542 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1543 S:      Maintained
1544 F:      arch/arm/mach-highbank/
1545 F:      arch/arm/boot/dts/highbank.dts
1546 F:      arch/arm/boot/dts/ecx-*.dts*
1547
1548 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1549 M:      Krzysztof Halasa <khalasa@piap.pl>
1550 S:      Maintained
1551 F:      arch/arm/mach-cns3xxx/
1552
1553 ARM/CAVIUM THUNDER NETWORK DRIVER
1554 M:      Sunil Goutham <sgoutham@cavium.com>
1555 M:      Robert Richter <rric@kernel.org>
1556 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1557 S:      Supported
1558 F:      drivers/net/ethernet/cavium/thunder/
1559
1560 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1561 M:      Lukasz Majewski <lukma@denx.de>
1562 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1563 S:      Maintained
1564 F:      arch/arm/mach-ep93xx/ts72xx.c
1565
1566 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1567 M:      Alexander Shiyan <shc_work@mail.ru>
1568 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1569 S:      Odd Fixes
1570 N:      clps711x
1571
1572 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1573 M:      Lennert Buytenhek <kernel@wantstofly.org>
1574 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1575 S:      Maintained
1576
1577 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1578 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1579 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1580 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1581 S:      Maintained
1582 F:      arch/arm/mach-ep93xx/
1583 F:      arch/arm/mach-ep93xx/include/mach/
1584
1585 ARM/CLKDEV SUPPORT
1586 M:      Russell King <linux@armlinux.org.uk>
1587 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1588 S:      Maintained
1589 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1590 F:      drivers/clk/clkdev.c
1591
1592 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1593 M:      Mike Rapoport <mike@compulab.co.il>
1594 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1595 S:      Maintained
1596
1597 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1598 M:      Baruch Siach <baruch@tkos.co.il>
1599 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1600 S:      Maintained
1601 F:      arch/arm/boot/dts/cx92755*
1602 N:      digicolor
1603
1604 ARM/CONTEC MICRO9 MACHINE SUPPORT
1605 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1606 S:      Maintained
1607 F:      arch/arm/mach-ep93xx/micro9.c
1608
1609 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1610 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1611 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
1612 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1613 S:      Maintained
1614 F:      drivers/hwtracing/coresight/*
1615 F:      Documentation/trace/coresight.rst
1616 F:      Documentation/trace/coresight-cpu-debug.rst
1617 F:      Documentation/devicetree/bindings/arm/coresight.txt
1618 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1619 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1620 F:      tools/perf/arch/arm/util/pmu.c
1621 F:      tools/perf/arch/arm/util/auxtrace.c
1622 F:      tools/perf/arch/arm/util/cs-etm.c
1623 F:      tools/perf/arch/arm/util/cs-etm.h
1624 F:      tools/perf/util/cs-etm.*
1625 F:      tools/perf/util/cs-etm-decoder/*
1626
1627 ARM/CORGI MACHINE SUPPORT
1628 M:      Richard Purdie <rpurdie@rpsys.net>
1629 S:      Maintained
1630
1631 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1632 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1633 M:      Linus Walleij <linus.walleij@linaro.org>
1634 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1635 T:      git git://github.com/ulli-kroll/linux.git
1636 S:      Maintained
1637 F:      Documentation/devicetree/bindings/arm/gemini.txt
1638 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1639 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1640 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1641 F:      arch/arm/mach-gemini/
1642 F:      drivers/net/ethernet/cortina/
1643 F:      drivers/pinctrl/pinctrl-gemini.c
1644 F:      drivers/rtc/rtc-ftrtc010.c
1645
1646 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1647 M:      Barry Song <baohua@kernel.org>
1648 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1650 S:      Maintained
1651 F:      arch/arm/boot/dts/prima2*
1652 F:      arch/arm/mach-prima2/
1653 F:      drivers/clk/sirf/
1654 F:      drivers/clocksource/timer-prima2.c
1655 F:      drivers/clocksource/timer-atlas7.c
1656 N:      [^a-z]sirf
1657 X:      drivers/gnss
1658
1659 ARM/CZ.NIC TURRIS MOX SUPPORT
1660 M:      Marek Behun <marek.behun@nic.cz>
1661 W:      http://mox.turris.cz
1662 S:      Maintained
1663 F:      Documentation/ABI/testing/debugfs-moxtet
1664 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1665 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1666 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1667 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1668 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1669 F:      include/linux/moxtet.h
1670 F:      drivers/bus/moxtet.c
1671 F:      drivers/firmware/turris-mox-rwtm.c
1672 F:      drivers/gpio/gpio-moxtet.c
1673
1674 ARM/EBSA110 MACHINE SUPPORT
1675 M:      Russell King <linux@armlinux.org.uk>
1676 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1677 W:      http://www.armlinux.org.uk/
1678 S:      Maintained
1679 F:      arch/arm/mach-ebsa110/
1680 F:      drivers/net/ethernet/amd/am79c961a.*
1681
1682 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1683 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1684 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1685 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1686 S:      Maintained
1687 N:      efm32
1688
1689 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1690 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1691 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1692 S:      Maintained
1693 F:      arch/arm/mach-pxa/ezx.c
1694
1695 ARM/FARADAY FA526 PORT
1696 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1698 S:      Maintained
1699 T:      git git://git.berlios.de/gemini-board
1700 F:      arch/arm/mm/*-fa*
1701
1702 ARM/FOOTBRIDGE ARCHITECTURE
1703 M:      Russell King <linux@armlinux.org.uk>
1704 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1705 W:      http://www.armlinux.org.uk/
1706 S:      Maintained
1707 F:      arch/arm/include/asm/hardware/dec21285.h
1708 F:      arch/arm/mach-footbridge/
1709
1710 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1711 M:      Shawn Guo <shawnguo@kernel.org>
1712 M:      Sascha Hauer <s.hauer@pengutronix.de>
1713 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1714 R:      Fabio Estevam <festevam@gmail.com>
1715 R:      NXP Linux Team <linux-imx@nxp.com>
1716 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1717 S:      Maintained
1718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1719 N:      imx
1720 N:      mxs
1721 X:      drivers/media/i2c/
1722
1723 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1724 M:      Shawn Guo <shawnguo@kernel.org>
1725 M:      Sascha Hauer <s.hauer@pengutronix.de>
1726 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1727 R:      Stefan Agner <stefan@agner.ch>
1728 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1729 S:      Maintained
1730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1731 F:      arch/arm/mach-imx/*vf610*
1732 F:      arch/arm/boot/dts/vf*
1733
1734 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1735 M:      Shawn Guo <shawnguo@kernel.org>
1736 M:      Li Yang <leoyang.li@nxp.com>
1737 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1738 S:      Maintained
1739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1740 F:      arch/arm/boot/dts/ls1021a*
1741 F:      arch/arm64/boot/dts/freescale/fsl-*
1742 F:      arch/arm64/boot/dts/freescale/qoriq-*
1743
1744 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1745 M:      Lennert Buytenhek <kernel@wantstofly.org>
1746 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1747 S:      Maintained
1748
1749 ARM/GUMSTIX MACHINE SUPPORT
1750 M:      Steve Sakoman <sakoman@gmail.com>
1751 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1752 S:      Maintained
1753
1754 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1755 M:      Philipp Zabel <philipp.zabel@gmail.com>
1756 M:      Paul Parsons <lost.distance@yahoo.com>
1757 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1758 S:      Maintained
1759 F:      arch/arm/mach-pxa/hx4700.c
1760 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1761 F:      sound/soc/pxa/hx4700.c
1762
1763 ARM/HISILICON SOC SUPPORT
1764 M:      Wei Xu <xuwei5@hisilicon.com>
1765 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1766 W:      http://www.hisilicon.com
1767 S:      Supported
1768 T:      git git://github.com/hisilicon/linux-hisi.git
1769 F:      arch/arm/mach-hisi/
1770 F:      arch/arm/boot/dts/hi3*
1771 F:      arch/arm/boot/dts/hip*
1772 F:      arch/arm/boot/dts/hisi*
1773 F:      arch/arm64/boot/dts/hisilicon/
1774
1775 ARM/HP JORNADA 7XX MACHINE SUPPORT
1776 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1777 W:      www.jlime.com
1778 S:      Maintained
1779 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1780 F:      arch/arm/mach-sa1100/jornada720.c
1781 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1782
1783 ARM/IGEP MACHINE SUPPORT
1784 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1785 M:      Javier Martinez Canillas <javier@dowhile0.org>
1786 L:      linux-omap@vger.kernel.org
1787 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1788 S:      Maintained
1789 F:      arch/arm/boot/dts/omap3-igep*
1790
1791 ARM/INCOME PXA270 SUPPORT
1792 M:      Marek Vasut <marek.vasut@gmail.com>
1793 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1794 S:      Maintained
1795 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1796
1797 ARM/INTEL IOP32X ARM ARCHITECTURE
1798 M:      Lennert Buytenhek <kernel@wantstofly.org>
1799 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1800 S:      Maintained
1801
1802 ARM/INTEL IQ81342EX MACHINE SUPPORT
1803 M:      Lennert Buytenhek <kernel@wantstofly.org>
1804 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1805 S:      Maintained
1806
1807 ARM/INTEL IXDP2850 MACHINE SUPPORT
1808 M:      Lennert Buytenhek <kernel@wantstofly.org>
1809 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1810 S:      Maintained
1811
1812 ARM/INTEL IXP4XX ARM ARCHITECTURE
1813 M:      Linus Walleij <linusw@kernel.org>
1814 M:      Imre Kaloz <kaloz@openwrt.org>
1815 M:      Krzysztof Halasa <khalasa@piap.pl>
1816 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1817 S:      Maintained
1818 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1819 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1820 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1821 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1822 F:      arch/arm/mach-ixp4xx/
1823 F:      drivers/clocksource/timer-ixp4xx.c
1824 F:      drivers/gpio/gpio-ixp4xx.c
1825 F:      drivers/irqchip/irq-ixp4xx.c
1826 F:      include/linux/irqchip/irq-ixp4xx.h
1827 F:      include/linux/platform_data/timer-ixp4xx.h
1828
1829 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1830 M:      Jonathan Cameron <jic23@cam.ac.uk>
1831 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1832 S:      Maintained
1833 F:      arch/arm/mach-pxa/stargate2.c
1834 F:      drivers/pcmcia/pxa2xx_stargate2.c
1835
1836 ARM/INTEL XSC3 (MANZANO) ARM CORE
1837 M:      Lennert Buytenhek <kernel@wantstofly.org>
1838 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1839 S:      Maintained
1840
1841 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1842 M:      Lennert Buytenhek <kernel@wantstofly.org>
1843 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1844 S:      Maintained
1845
1846 ARM/LG1K ARCHITECTURE
1847 M:      Chanho Min <chanho.min@lge.com>
1848 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1849 S:      Maintained
1850 F:      arch/arm64/boot/dts/lg/
1851
1852 ARM/LOGICPD PXA270 MACHINE SUPPORT
1853 M:      Lennert Buytenhek <kernel@wantstofly.org>
1854 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1855 S:      Maintained
1856
1857 ARM/LPC18XX ARCHITECTURE
1858 M:      Vladimir Zapolskiy <vz@mleia.com>
1859 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1860 S:      Maintained
1861 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1862 F:      arch/arm/boot/dts/lpc43*
1863 F:      drivers/i2c/busses/i2c-lpc2k.c
1864 F:      drivers/memory/pl172.c
1865 F:      drivers/mtd/spi-nor/nxp-spifi.c
1866 F:      drivers/rtc/rtc-lpc24xx.c
1867 N:      lpc18xx
1868
1869 ARM/LPC32XX SOC SUPPORT
1870 M:      Vladimir Zapolskiy <vz@mleia.com>
1871 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
1872 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1873 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1874 S:      Maintained
1875 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
1876 F:      arch/arm/boot/dts/lpc32*
1877 F:      arch/arm/mach-lpc32xx/
1878 F:      drivers/i2c/busses/i2c-pnx.c
1879 F:      drivers/net/ethernet/nxp/lpc_eth.c
1880 F:      drivers/usb/host/ohci-nxp.c
1881 F:      drivers/watchdog/pnx4008_wdt.c
1882 N:      lpc32xx
1883
1884 ARM/MAGICIAN MACHINE SUPPORT
1885 M:      Philipp Zabel <philipp.zabel@gmail.com>
1886 S:      Maintained
1887
1888 ARM/Marvell Dove/MV78xx0/Orion SOC support
1889 M:      Jason Cooper <jason@lakedaemon.net>
1890 M:      Andrew Lunn <andrew@lunn.ch>
1891 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1892 M:      Gregory Clement <gregory.clement@bootlin.com>
1893 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1894 S:      Maintained
1895 F:      Documentation/devicetree/bindings/soc/dove/
1896 F:      arch/arm/mach-dove/
1897 F:      arch/arm/mach-mv78xx0/
1898 F:      arch/arm/mach-orion5x/
1899 F:      arch/arm/plat-orion/
1900 F:      arch/arm/boot/dts/dove*
1901 F:      arch/arm/boot/dts/orion5x*
1902 T:      git git://git.infradead.org/linux-mvebu.git
1903
1904 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1905 M:      Jason Cooper <jason@lakedaemon.net>
1906 M:      Andrew Lunn <andrew@lunn.ch>
1907 M:      Gregory Clement <gregory.clement@bootlin.com>
1908 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1909 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1910 S:      Maintained
1911 F:      arch/arm/boot/dts/armada*
1912 F:      arch/arm/boot/dts/kirkwood*
1913 F:      arch/arm/configs/mvebu_*_defconfig
1914 F:      arch/arm/mach-mvebu/
1915 F:      arch/arm64/boot/dts/marvell/armada*
1916 F:      drivers/cpufreq/armada-37xx-cpufreq.c
1917 F:      drivers/cpufreq/armada-8k-cpufreq.c
1918 F:      drivers/cpufreq/mvebu-cpufreq.c
1919 F:      drivers/irqchip/irq-armada-370-xp.c
1920 F:      drivers/irqchip/irq-mvebu-*
1921 F:      drivers/pinctrl/mvebu/
1922 F:      drivers/rtc/rtc-armada38x.c
1923 T:      git git://git.infradead.org/linux-mvebu.git
1924
1925 ARM/Mediatek RTC DRIVER
1926 M:      Eddie Huang <eddie.huang@mediatek.com>
1927 M:      Sean Wang <sean.wang@mediatek.com>
1928 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1929 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1930 S:      Maintained
1931 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
1932 F:      drivers/rtc/rtc-mt6397.c
1933 F:      drivers/rtc/rtc-mt7622.c
1934
1935 ARM/Mediatek SoC support
1936 M:      Matthias Brugger <matthias.bgg@gmail.com>
1937 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1938 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1939 W:      https://mtk.bcnfs.org/
1940 C:      irc://chat.freenode.net/linux-mediatek
1941 S:      Maintained
1942 F:      arch/arm/boot/dts/mt6*
1943 F:      arch/arm/boot/dts/mt7*
1944 F:      arch/arm/boot/dts/mt8*
1945 F:      arch/arm/mach-mediatek/
1946 F:      arch/arm64/boot/dts/mediatek/
1947 F:      drivers/soc/mediatek/
1948 N:      mtk
1949 N:      mt[678]
1950 K:      mediatek
1951
1952 ARM/Mediatek USB3 PHY DRIVER
1953 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1954 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1955 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1956 S:      Maintained
1957 F:      drivers/phy/mediatek/
1958 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
1959
1960 ARM/Microchip (AT91) SoC support
1961 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
1962 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
1963 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
1964 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1965 W:      http://www.linux4sam.org
1966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
1967 S:      Supported
1968 N:      at91
1969 N:      atmel
1970 F:      arch/arm/mach-at91/
1971 F:      include/soc/at91/
1972 F:      arch/arm/boot/dts/at91*.dts
1973 F:      arch/arm/boot/dts/at91*.dtsi
1974 F:      arch/arm/boot/dts/sama*.dts
1975 F:      arch/arm/boot/dts/sama*.dtsi
1976 F:      arch/arm/include/debug/at91.S
1977 F:      drivers/memory/atmel*
1978 F:      drivers/watchdog/sama5d4_wdt.c
1979 X:      drivers/input/touchscreen/atmel_mxt_ts.c
1980 X:      drivers/net/wireless/atmel/
1981
1982 ARM/MIOA701 MACHINE SUPPORT
1983 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1984 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1985 F:      arch/arm/mach-pxa/mioa701.c
1986 S:      Maintained
1987
1988 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1989 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1990 S:      Maintained
1991
1992 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
1993 M:      Linus Walleij <linus.walleij@linaro.org>
1994 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1995 S:      Maintained
1996 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
1997 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
1998 F:      arch/arm/mach-nomadik/
1999 F:      arch/arm/mach-u300/
2000 F:      arch/arm/mach-ux500/
2001 F:      drivers/soc/ux500/
2002 F:      arch/arm/boot/dts/ste-*
2003 F:      drivers/clk/clk-nomadik.c
2004 F:      drivers/clk/clk-u300.c
2005 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2006 F:      drivers/clocksource/timer-u300.c
2007 F:      drivers/dma/coh901318*
2008 F:      drivers/dma/ste_dma40*
2009 F:      drivers/hwspinlock/u8500_hsem.c
2010 F:      drivers/i2c/busses/i2c-nomadik.c
2011 F:      drivers/i2c/busses/i2c-stu300.c
2012 F:      drivers/mfd/ab3100*
2013 F:      drivers/mfd/ab8500*
2014 F:      drivers/mfd/abx500*
2015 F:      drivers/mfd/dbx500*
2016 F:      drivers/mfd/db8500*
2017 F:      drivers/pinctrl/nomadik/
2018 F:      drivers/pinctrl/pinctrl-coh901*
2019 F:      drivers/pinctrl/pinctrl-u300.c
2020 F:      drivers/rtc/rtc-ab3100.c
2021 F:      drivers/rtc/rtc-ab8500.c
2022 F:      drivers/rtc/rtc-coh901331.c
2023 F:      drivers/rtc/rtc-pl031.c
2024 F:      drivers/watchdog/coh901327_wdt.c
2025 F:      Documentation/devicetree/bindings/arm/ste-*
2026 F:      Documentation/devicetree/bindings/arm/ux500/
2027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2028
2029 ARM/NUVOTON NPCM ARCHITECTURE
2030 M:      Avi Fishman <avifishman70@gmail.com>
2031 M:      Tomer Maimon <tmaimon77@gmail.com>
2032 M:      Tali Perry <tali.perry1@gmail.com>
2033 R:      Patrick Venture <venture@google.com>
2034 R:      Nancy Yuen <yuenn@google.com>
2035 R:      Benjamin Fair <benjaminfair@google.com>
2036 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2037 S:      Supported
2038 F:      arch/arm/mach-npcm/
2039 F:      arch/arm/boot/dts/nuvoton-npcm*
2040 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2041 F:      drivers/*/*npcm*
2042 F:      Documentation/devicetree/bindings/*/*npcm*
2043 F:      Documentation/devicetree/bindings/*/*/*npcm*
2044
2045 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2046 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2047 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2048 S:      Orphan
2049 F:      arch/arm/mach-s3c24xx/mach-gta02.c
2050 F:      arch/arm/mach-s3c24xx/gta02.h
2051
2052 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2053 M:      Alexander Clouter <alex@digriz.org.uk>
2054 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2055 W:      http://www.digriz.org.uk/ts78xx/kernel
2056 S:      Maintained
2057 F:      arch/arm/mach-orion5x/ts78xx-*
2058
2059 ARM/OXNAS platform support
2060 M:      Neil Armstrong <narmstrong@baylibre.com>
2061 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2062 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2063 S:      Maintained
2064 F:      arch/arm/mach-oxnas/
2065 F:      arch/arm/boot/dts/ox8*.dts*
2066 N:      oxnas
2067
2068 ARM/PALM TREO SUPPORT
2069 M:      Tomas Cech <sleep_walker@suse.com>
2070 L:      linux-arm-kernel@lists.infradead.org
2071 W:      http://hackndev.com
2072 S:      Maintained
2073 F:      arch/arm/mach-pxa/palmtreo.*
2074
2075 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2076 M:      Marek Vasut <marek.vasut@gmail.com>
2077 L:      linux-arm-kernel@lists.infradead.org
2078 W:      http://hackndev.com
2079 S:      Maintained
2080 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2081 F:      arch/arm/mach-pxa/palmtx.c
2082 F:      arch/arm/mach-pxa/palmt5.*
2083 F:      arch/arm/mach-pxa/include/mach/palmld.h
2084 F:      arch/arm/mach-pxa/palmld.c
2085 F:      arch/arm/mach-pxa/palmte2.*
2086 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2087 F:      arch/arm/mach-pxa/palmtc.c
2088
2089 ARM/PALMZ72 SUPPORT
2090 M:      Sergey Lapin <slapin@ossfans.org>
2091 L:      linux-arm-kernel@lists.infradead.org
2092 W:      http://hackndev.com
2093 S:      Maintained
2094 F:      arch/arm/mach-pxa/palmz72.*
2095
2096 ARM/PLEB SUPPORT
2097 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2098 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2099 S:      Maintained
2100
2101 ARM/PT DIGITAL BOARD PORT
2102 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2103 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2104 W:      http://www.armlinux.org.uk/
2105 S:      Maintained
2106
2107 ARM/QUALCOMM SUPPORT
2108 M:      Andy Gross <agross@kernel.org>
2109 L:      linux-arm-msm@vger.kernel.org
2110 S:      Maintained
2111 F:      Documentation/devicetree/bindings/soc/qcom/
2112 F:      Documentation/devicetree/bindings/*/qcom*
2113 F:      arch/arm/boot/dts/qcom-*.dts
2114 F:      arch/arm/boot/dts/qcom-*.dtsi
2115 F:      arch/arm/mach-qcom/
2116 F:      arch/arm64/boot/dts/qcom/
2117 F:      drivers/*/qcom/
2118 F:      drivers/*/qcom*
2119 F:      drivers/*/*/qcom/
2120 F:      drivers/*/*/qcom*
2121 F:      drivers/*/pm8???-*
2122 F:      drivers/bluetooth/btqcomsmd.c
2123 F:      drivers/clocksource/timer-qcom.c
2124 F:      drivers/extcon/extcon-qcom*
2125 F:      drivers/iommu/msm*
2126 F:      drivers/i2c/busses/i2c-qup.c
2127 F:      drivers/i2c/busses/i2c-qcom-geni.c
2128 F:      drivers/mfd/ssbi.c
2129 F:      drivers/mmc/host/mmci_qcom*
2130 F:      drivers/mmc/host/sdhci-msm.c
2131 F:      drivers/pci/controller/dwc/pcie-qcom.c
2132 F:      drivers/phy/qualcomm/
2133 F:      drivers/power/*/msm*
2134 F:      drivers/reset/reset-qcom-*
2135 F:      drivers/scsi/ufs/ufs-qcom.*
2136 F:      drivers/spi/spi-qup.c
2137 F:      drivers/spi/spi-geni-qcom.c
2138 F:      drivers/spi/spi-qcom-qspi.c
2139 F:      drivers/tty/serial/msm_serial.c
2140 F:      drivers/usb/dwc3/dwc3-qcom.c
2141 F:      include/dt-bindings/*/qcom*
2142 F:      include/linux/*/qcom*
2143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2144
2145 ARM/RADISYS ENP2611 MACHINE SUPPORT
2146 M:      Lennert Buytenhek <kernel@wantstofly.org>
2147 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2148 S:      Maintained
2149
2150 ARM/RDA MICRO ARCHITECTURE
2151 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2152 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2153 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2154 S:      Maintained
2155 F:      arch/arm/boot/dts/rda8810pl-*
2156 F:      drivers/clocksource/timer-rda.c
2157 F:      drivers/irqchip/irq-rda-intc.c
2158 F:      drivers/tty/serial/rda-uart.c
2159 F:      Documentation/devicetree/bindings/arm/rda.yaml
2160 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2161 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2162 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2163
2164 ARM/REALTEK ARCHITECTURE
2165 M:      Andreas Färber <afaerber@suse.de>
2166 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2167 S:      Maintained
2168 F:      arch/arm64/boot/dts/realtek/
2169 F:      Documentation/devicetree/bindings/arm/realtek.txt
2170
2171 ARM/RENESAS ARM64 ARCHITECTURE
2172 M:      Simon Horman <horms@verge.net.au>
2173 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2174 M:      Magnus Damm <magnus.damm@gmail.com>
2175 L:      linux-renesas-soc@vger.kernel.org
2176 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
2178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2179 S:      Supported
2180 F:      arch/arm64/boot/dts/renesas/
2181 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2182 F:      drivers/soc/renesas/
2183 F:      include/linux/soc/renesas/
2184
2185 ARM/RISCPC ARCHITECTURE
2186 M:      Russell King <linux@armlinux.org.uk>
2187 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2188 W:      http://www.armlinux.org.uk/
2189 S:      Maintained
2190 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2191 F:      arch/arm/include/asm/hardware/ioc.h
2192 F:      arch/arm/include/asm/hardware/iomd.h
2193 F:      arch/arm/include/asm/hardware/memc.h
2194 F:      arch/arm/mach-rpc/
2195 F:      drivers/net/ethernet/8390/etherh.c
2196 F:      drivers/net/ethernet/i825xx/ether1*
2197 F:      drivers/net/ethernet/seeq/ether3*
2198 F:      drivers/scsi/arm/
2199
2200 ARM/Rockchip SoC support
2201 M:      Heiko Stuebner <heiko@sntech.de>
2202 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2203 L:      linux-rockchip@lists.infradead.org
2204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2205 S:      Maintained
2206 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.txt
2207 F:      arch/arm/boot/dts/rk3*
2208 F:      arch/arm/boot/dts/rv1108*
2209 F:      arch/arm/mach-rockchip/
2210 F:      drivers/clk/rockchip/
2211 F:      drivers/i2c/busses/i2c-rk3x.c
2212 F:      drivers/*/*rockchip*
2213 F:      drivers/*/*/*rockchip*
2214 F:      sound/soc/rockchip/
2215 N:      rockchip
2216
2217 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
2218 M:      Kukjin Kim <kgene@kernel.org>
2219 M:      Krzysztof Kozlowski <krzk@kernel.org>
2220 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2221 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2222 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2223 S:      Maintained
2224 F:      arch/arm/boot/dts/s3c*
2225 F:      arch/arm/boot/dts/s5p*
2226 F:      arch/arm/boot/dts/exynos*
2227 F:      arch/arm64/boot/dts/exynos/
2228 F:      arch/arm/plat-samsung/
2229 F:      arch/arm/mach-s3c24*/
2230 F:      arch/arm/mach-s3c64xx/
2231 F:      arch/arm/mach-s5p*/
2232 F:      arch/arm/mach-exynos*/
2233 F:      drivers/*/*s3c24*
2234 F:      drivers/*/*/*s3c24*
2235 F:      drivers/*/*s3c64xx*
2236 F:      drivers/*/*s5pv210*
2237 F:      drivers/memory/samsung/
2238 F:      drivers/soc/samsung/
2239 F:      include/linux/soc/samsung/
2240 F:      Documentation/arm/samsung/
2241 F:      Documentation/devicetree/bindings/arm/samsung/
2242 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
2243 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
2244 N:      exynos
2245
2246 ARM/SAMSUNG MOBILE MACHINE SUPPORT
2247 M:      Kyungmin Park <kyungmin.park@samsung.com>
2248 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2249 S:      Maintained
2250 F:      arch/arm/mach-s5pv210/
2251
2252 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2253 M:      Kyungmin Park <kyungmin.park@samsung.com>
2254 M:      Kamil Debski <kamil@wypas.org>
2255 M:      Andrzej Hajda <a.hajda@samsung.com>
2256 L:      linux-arm-kernel@lists.infradead.org
2257 L:      linux-media@vger.kernel.org
2258 S:      Maintained
2259 F:      drivers/media/platform/s5p-g2d/
2260
2261 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2262 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2263 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2264 L:      linux-media@vger.kernel.org
2265 S:      Maintained
2266 F:      drivers/media/platform/s5p-cec/
2267 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2268
2269 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2270 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2271 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2272 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2273 L:      linux-arm-kernel@lists.infradead.org
2274 L:      linux-media@vger.kernel.org
2275 S:      Maintained
2276 F:      drivers/media/platform/s5p-jpeg/
2277
2278 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2279 M:      Kyungmin Park <kyungmin.park@samsung.com>
2280 M:      Kamil Debski <kamil@wypas.org>
2281 M:      Jeongtae Park <jtp.park@samsung.com>
2282 M:      Andrzej Hajda <a.hajda@samsung.com>
2283 L:      linux-arm-kernel@lists.infradead.org
2284 L:      linux-media@vger.kernel.org
2285 S:      Maintained
2286 F:      drivers/media/platform/s5p-mfc/
2287
2288 ARM/SHMOBILE ARM ARCHITECTURE
2289 M:      Simon Horman <horms@verge.net.au>
2290 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2291 M:      Magnus Damm <magnus.damm@gmail.com>
2292 L:      linux-renesas-soc@vger.kernel.org
2293 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
2295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2296 S:      Supported
2297 F:      arch/arm/boot/dts/emev2*
2298 F:      arch/arm/boot/dts/gr-peach*
2299 F:      arch/arm/boot/dts/iwg20d-q7*
2300 F:      arch/arm/boot/dts/r7s*
2301 F:      arch/arm/boot/dts/r8a*
2302 F:      arch/arm/boot/dts/r9a*
2303 F:      arch/arm/boot/dts/sh*
2304 F:      arch/arm/configs/shmobile_defconfig
2305 F:      arch/arm/include/debug/renesas-scif.S
2306 F:      arch/arm/mach-shmobile/
2307 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2308 F:      drivers/soc/renesas/
2309 F:      include/linux/soc/renesas/
2310
2311 ARM/SOCFPGA ARCHITECTURE
2312 M:      Dinh Nguyen <dinguyen@kernel.org>
2313 S:      Maintained
2314 F:      arch/arm/mach-socfpga/
2315 F:      arch/arm/boot/dts/socfpga*
2316 F:      arch/arm/configs/socfpga_defconfig
2317 F:      arch/arm64/boot/dts/altera/
2318 F:      arch/arm64/boot/dts/intel/
2319 W:      http://www.rocketboards.org
2320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2321
2322 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2323 M:      Dinh Nguyen <dinguyen@kernel.org>
2324 S:      Maintained
2325 F:      drivers/clk/socfpga/
2326
2327 ARM/SOCFPGA EDAC SUPPORT
2328 M:      Thor Thayer <thor.thayer@linux.intel.com>
2329 S:      Maintained
2330 F:      drivers/edac/altera_edac.
2331
2332 ARM/SPREADTRUM SoC SUPPORT
2333 M:      Orson Zhai <orsonzhai@gmail.com>
2334 M:      Baolin Wang <baolin.wang@linaro.org>
2335 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2336 S:      Maintained
2337 F:      arch/arm64/boot/dts/sprd
2338 N:      sprd
2339
2340 ARM/STI ARCHITECTURE
2341 M:      Patrice Chotard <patrice.chotard@st.com>
2342 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2343 W:      http://www.stlinux.com
2344 S:      Maintained
2345 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2346 F:      arch/arm/mach-sti/
2347 F:      arch/arm/boot/dts/sti*
2348 F:      drivers/char/hw_random/st-rng.c
2349 F:      drivers/clocksource/arm_global_timer.c
2350 F:      drivers/clocksource/clksrc_st_lpc.c
2351 F:      drivers/cpufreq/sti-cpufreq.c
2352 F:      drivers/dma/st_fdma*
2353 F:      drivers/i2c/busses/i2c-st.c
2354 F:      drivers/media/rc/st_rc.c
2355 F:      drivers/media/platform/sti/c8sectpfe/
2356 F:      drivers/mmc/host/sdhci-st.c
2357 F:      drivers/phy/st/phy-miphy28lp.c
2358 F:      drivers/phy/st/phy-stih407-usb.c
2359 F:      drivers/pinctrl/pinctrl-st.c
2360 F:      drivers/remoteproc/st_remoteproc.c
2361 F:      drivers/remoteproc/st_slim_rproc.c
2362 F:      drivers/reset/sti/
2363 F:      drivers/rtc/rtc-st-lpc.c
2364 F:      drivers/tty/serial/st-asc.c
2365 F:      drivers/usb/dwc3/dwc3-st.c
2366 F:      drivers/usb/host/ehci-st.c
2367 F:      drivers/usb/host/ohci-st.c
2368 F:      drivers/watchdog/st_lpc_wdt.c
2369 F:      drivers/ata/ahci_st.c
2370 F:      include/linux/remoteproc/st_slim_rproc.h
2371
2372 ARM/STM32 ARCHITECTURE
2373 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2374 M:      Alexandre Torgue <alexandre.torgue@st.com>
2375 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2376 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2377 S:      Maintained
2378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2379 N:      stm32
2380 N:      stm
2381 F:      arch/arm/boot/dts/stm32*
2382 F:      arch/arm/mach-stm32/
2383 F:      drivers/clocksource/armv7m_systick.c
2384
2385 ARM/Synaptics SoC support
2386 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2387 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2388 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2389 S:      Maintained
2390 F:      arch/arm/mach-berlin/
2391 F:      arch/arm/boot/dts/berlin*
2392 F:      arch/arm64/boot/dts/synaptics/
2393
2394 ARM/TANGO ARCHITECTURE
2395 M:      Marc Gonzalez <marc.w.gonzalez@free.fr>
2396 M:      Mans Rullgard <mans@mansr.com>
2397 L:      linux-arm-kernel@lists.infradead.org
2398 S:      Odd Fixes
2399 N:      tango
2400
2401 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2402 M:      Lennert Buytenhek <kernel@wantstofly.org>
2403 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2404 S:      Maintained
2405
2406 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2407 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2408 L:      linux-tegra@vger.kernel.org
2409 L:      linux-media@vger.kernel.org
2410 S:      Maintained
2411 F:      drivers/media/platform/tegra-cec/
2412 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2413
2414 ARM/TETON BGA MACHINE SUPPORT
2415 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2416 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2417 S:      Maintained
2418
2419 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2420 M:      Santosh Shilimkar <ssantosh@kernel.org>
2421 L:      linux-kernel@vger.kernel.org
2422 S:      Maintained
2423 F:      drivers/memory/*emif*
2424
2425 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2426 M:      Tero Kristo <t-kristo@ti.com>
2427 M:      Nishanth Menon <nm@ti.com>
2428 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2429 S:      Supported
2430 F:      Documentation/devicetree/bindings/arm/ti/k3.txt
2431 F:      arch/arm64/boot/dts/ti/Makefile
2432 F:      arch/arm64/boot/dts/ti/k3-*
2433 F:      include/dt-bindings/pinctrl/k3.h
2434
2435 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2436 M:      Santosh Shilimkar <ssantosh@kernel.org>
2437 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2438 S:      Maintained
2439 F:      arch/arm/mach-keystone/
2440 F:      arch/arm/boot/dts/keystone-*
2441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2442
2443 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2444 M:      Santosh Shilimkar <ssantosh@kernel.org>
2445 L:      linux-kernel@vger.kernel.org
2446 S:      Maintained
2447 F:      drivers/clk/keystone/
2448
2449 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2450 M:      Santosh Shilimkar <ssantosh@kernel.org>
2451 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2452 L:      linux-kernel@vger.kernel.org
2453 S:      Maintained
2454 F:      drivers/clocksource/timer-keystone.c
2455
2456 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2457 M:      Santosh Shilimkar <ssantosh@kernel.org>
2458 L:      linux-kernel@vger.kernel.org
2459 S:      Maintained
2460 F:      drivers/power/reset/keystone-reset.c
2461
2462 ARM/THECUS N2100 MACHINE SUPPORT
2463 M:      Lennert Buytenhek <kernel@wantstofly.org>
2464 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2465 S:      Maintained
2466
2467 ARM/TOSA MACHINE SUPPORT
2468 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2469 M:      Dirk Opfer <dirk@opfer-online.de>
2470 S:      Maintained
2471
2472 ARM/UNIPHIER ARCHITECTURE
2473 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
2474 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2476 S:      Maintained
2477 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.txt
2478 F:      Documentation/devicetree/bindings/gpio/gpio-uniphier.txt
2479 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.txt
2480 F:      arch/arm/boot/dts/uniphier*
2481 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2482 F:      arch/arm/mach-uniphier/
2483 F:      arch/arm/mm/cache-uniphier.c
2484 F:      arch/arm64/boot/dts/socionext/uniphier*
2485 F:      drivers/bus/uniphier-system-bus.c
2486 F:      drivers/clk/uniphier/
2487 F:      drivers/dma/uniphier-mdmac.c
2488 F:      drivers/gpio/gpio-uniphier.c
2489 F:      drivers/i2c/busses/i2c-uniphier*
2490 F:      drivers/irqchip/irq-uniphier-aidet.c
2491 F:      drivers/mmc/host/uniphier-sd.c
2492 F:      drivers/pinctrl/uniphier/
2493 F:      drivers/reset/reset-uniphier.c
2494 F:      drivers/tty/serial/8250/8250_uniphier.c
2495 N:      uniphier
2496
2497 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
2498 M:      Ulf Hansson <ulf.hansson@linaro.org>
2499 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2500 T:      git git://git.linaro.org/people/ulfh/clk.git
2501 S:      Maintained
2502 F:      drivers/clk/ux500/
2503
2504 ARM/VERSATILE EXPRESS PLATFORM
2505 M:      Liviu Dudau <liviu.dudau@arm.com>
2506 M:      Sudeep Holla <sudeep.holla@arm.com>
2507 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2508 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2509 S:      Maintained
2510 F:      arch/arm/boot/dts/vexpress*
2511 F:      arch/arm64/boot/dts/arm/
2512 F:      arch/arm/mach-vexpress/
2513 F:      */*/vexpress*
2514 F:      */*/*/vexpress*
2515 F:      drivers/clk/versatile/clk-vexpress-osc.c
2516 F:      drivers/clocksource/timer-versatile.c
2517 N:      mps2
2518
2519 ARM/VFP SUPPORT
2520 M:      Russell King <linux@armlinux.org.uk>
2521 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2522 W:      http://www.armlinux.org.uk/
2523 S:      Maintained
2524 F:      arch/arm/vfp/
2525
2526 ARM/VOIPAC PXA270 SUPPORT
2527 M:      Marek Vasut <marek.vasut@gmail.com>
2528 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2529 S:      Maintained
2530 F:      arch/arm/mach-pxa/vpac270.c
2531 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2532
2533 ARM/VT8500 ARM ARCHITECTURE
2534 M:      Tony Prisk <linux@prisktech.co.nz>
2535 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2536 S:      Maintained
2537 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2538 F:      arch/arm/mach-vt8500/
2539 F:      drivers/clocksource/timer-vt8500.c
2540 F:      drivers/i2c/busses/i2c-wmt.c
2541 F:      drivers/mmc/host/wmt-sdmmc.c
2542 F:      drivers/pwm/pwm-vt8500.c
2543 F:      drivers/rtc/rtc-vt8500.c
2544 F:      drivers/tty/serial/vt8500_serial.c
2545 F:      drivers/usb/host/ehci-platform.c
2546 F:      drivers/usb/host/uhci-platform.c
2547 F:      drivers/video/fbdev/vt8500lcdfb.*
2548 F:      drivers/video/fbdev/wm8505fb*
2549 F:      drivers/video/fbdev/wmt_ge_rops.*
2550
2551 ARM/ZIPIT Z2 SUPPORT
2552 M:      Marek Vasut <marek.vasut@gmail.com>
2553 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2554 S:      Maintained
2555 F:      arch/arm/mach-pxa/z2.c
2556 F:      arch/arm/mach-pxa/include/mach/z2.h
2557
2558 ARM/ZTE ARCHITECTURE
2559 M:      Jun Nie <jun.nie@linaro.org>
2560 M:      Shawn Guo <shawnguo@kernel.org>
2561 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2562 S:      Maintained
2563 F:      arch/arm/boot/dts/zx2967*
2564 F:      arch/arm/mach-zx/
2565 F:      arch/arm64/boot/dts/zte/
2566 F:      drivers/clk/zte/
2567 F:      drivers/dma/zx_dma.c
2568 F:      drivers/gpio/gpio-zx.c
2569 F:      drivers/i2c/busses/i2c-zx2967.c
2570 F:      drivers/mmc/host/dw_mmc-zx.*
2571 F:      drivers/pinctrl/zte/
2572 F:      drivers/soc/zte/
2573 F:      drivers/thermal/zx2967_thermal.c
2574 F:      drivers/watchdog/zx2967_wdt.c
2575 F:      Documentation/devicetree/bindings/arm/zte.yaml
2576 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2577 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2578 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2579 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2580 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2581 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2582 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2583 F:      Documentation/devicetree/bindings/soc/zte/
2584 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2585 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2586 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2587 F:      include/dt-bindings/clock/zx2967*.h
2588 F:      include/dt-bindings/soc/zte,*.h
2589 F:      sound/soc/codecs/zx_aud96p22.c
2590 F:      sound/soc/zte/
2591
2592 ARM/ZYNQ ARCHITECTURE
2593 M:      Michal Simek <michal.simek@xilinx.com>
2594 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2595 W:      http://wiki.xilinx.com
2596 T:      git https://github.com/Xilinx/linux-xlnx.git
2597 S:      Supported
2598 F:      arch/arm/mach-zynq/
2599 F:      drivers/cpuidle/cpuidle-zynq.c
2600 F:      drivers/block/xsysace.c
2601 N:      zynq
2602 N:      xilinx
2603 F:      Documentation/devicetree/bindings/i2c/i2c-cadence.txt
2604 F:      Documentation/devicetree/bindings/i2c/i2c-xiic.txt
2605 F:      drivers/clocksource/timer-cadence-ttc.c
2606 F:      drivers/i2c/busses/i2c-cadence.c
2607 F:      drivers/mmc/host/sdhci-of-arasan.c
2608 F:      drivers/edac/synopsys_edac.c
2609 F:      drivers/i2c/busses/i2c-xiic.c
2610
2611 ARM64 PORT (AARCH64 ARCHITECTURE)
2612 M:      Catalin Marinas <catalin.marinas@arm.com>
2613 M:      Will Deacon <will@kernel.org>
2614 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2616 S:      Maintained
2617 F:      arch/arm64/
2618 X:      arch/arm64/boot/dts/
2619 F:      Documentation/arm64/
2620
2621 AS3645A LED FLASH CONTROLLER DRIVER
2622 M:      Sakari Ailus <sakari.ailus@iki.fi>
2623 L:      linux-leds@vger.kernel.org
2624 S:      Maintained
2625 F:      drivers/leds/leds-as3645a.c
2626
2627 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2628 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2629 L:      linux-media@vger.kernel.org
2630 T:      git git://linuxtv.org/media_tree.git
2631 S:      Maintained
2632 F:      drivers/media/i2c/ak7375.c
2633 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2634
2635 ASAHI KASEI AK8974 DRIVER
2636 M:      Linus Walleij <linus.walleij@linaro.org>
2637 L:      linux-iio@vger.kernel.org
2638 W:      http://www.akm.com/
2639 S:      Supported
2640 F:      drivers/iio/magnetometer/ak8974.c
2641
2642 ASC7621 HARDWARE MONITOR DRIVER
2643 M:      George Joseph <george.joseph@fairview5.com>
2644 L:      linux-hwmon@vger.kernel.org
2645 S:      Maintained
2646 F:      Documentation/hwmon/asc7621.rst
2647 F:      drivers/hwmon/asc7621.c
2648
2649 ASPEED PINCTRL DRIVERS
2650 M:      Andrew Jeffery <andrew@aj.id.au>
2651 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2652 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2653 L:      linux-gpio@vger.kernel.org
2654 S:      Maintained
2655 F:      drivers/pinctrl/aspeed/
2656 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2657
2658 ASPEED VIDEO ENGINE DRIVER
2659 M:      Eddie James <eajames@linux.ibm.com>
2660 L:      linux-media@vger.kernel.org
2661 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2662 S:      Maintained
2663 F:      drivers/media/platform/aspeed-video.c
2664 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2665
2666 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2667 M:      Corentin Chary <corentin.chary@gmail.com>
2668 L:      acpi4asus-user@lists.sourceforge.net
2669 L:      platform-driver-x86@vger.kernel.org
2670 W:      http://acpi4asus.sf.net
2671 S:      Maintained
2672 F:      drivers/platform/x86/asus*.c
2673 F:      drivers/platform/x86/eeepc*.c
2674
2675 ASUS WIRELESS RADIO CONTROL DRIVER
2676 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2677 L:      platform-driver-x86@vger.kernel.org
2678 S:      Maintained
2679 F:      drivers/platform/x86/asus-wireless.c
2680
2681 ASYMMETRIC KEYS
2682 M:      David Howells <dhowells@redhat.com>
2683 L:      keyrings@vger.kernel.org
2684 S:      Maintained
2685 F:      Documentation/crypto/asymmetric-keys.txt
2686 F:      include/linux/verification.h
2687 F:      include/crypto/public_key.h
2688 F:      include/crypto/pkcs7.h
2689 F:      crypto/asymmetric_keys/
2690
2691 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2692 R:      Dan Williams <dan.j.williams@intel.com>
2693 W:      http://sourceforge.net/projects/xscaleiop
2694 S:      Odd fixes
2695 F:      Documentation/crypto/async-tx-api.txt
2696 F:      crypto/async_tx/
2697 F:      drivers/dma/
2698 F:      include/linux/dmaengine.h
2699 F:      include/linux/async_tx.h
2700
2701 AT24 EEPROM DRIVER
2702 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2703 L:      linux-i2c@vger.kernel.org
2704 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2705 S:      Maintained
2706 F:      Documentation/devicetree/bindings/eeprom/at24.txt
2707 F:      drivers/misc/eeprom/at24.c
2708
2709 ATA OVER ETHERNET (AOE) DRIVER
2710 M:      "Justin Sanders" <justin@coraid.com>
2711 W:      http://www.openaoe.org/
2712 S:      Supported
2713 F:      Documentation/admin-guide/aoe/
2714 F:      drivers/block/aoe/
2715
2716 ATHEROS 71XX/9XXX GPIO DRIVER
2717 M:      Alban Bedel <albeu@free.fr>
2718 W:      https://github.com/AlbanBedel/linux
2719 T:      git git://github.com/AlbanBedel/linux
2720 S:      Maintained
2721 F:      drivers/gpio/gpio-ath79.c
2722 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2723
2724 ATHEROS 71XX/9XXX USB PHY DRIVER
2725 M:      Alban Bedel <albeu@free.fr>
2726 W:      https://github.com/AlbanBedel/linux
2727 T:      git git://github.com/AlbanBedel/linux
2728 S:      Maintained
2729 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2730 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2731
2732 ATHEROS ATH GENERIC UTILITIES
2733 M:      Kalle Valo <kvalo@codeaurora.org>
2734 L:      linux-wireless@vger.kernel.org
2735 S:      Supported
2736 F:      drivers/net/wireless/ath/*
2737
2738 ATHEROS ATH5K WIRELESS DRIVER
2739 M:      Jiri Slaby <jirislaby@gmail.com>
2740 M:      Nick Kossifidis <mickflemm@gmail.com>
2741 M:      Luis Chamberlain <mcgrof@kernel.org>
2742 L:      linux-wireless@vger.kernel.org
2743 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
2744 S:      Maintained
2745 F:      drivers/net/wireless/ath/ath5k/
2746
2747 ATHEROS ATH6KL WIRELESS DRIVER
2748 M:      Kalle Valo <kvalo@codeaurora.org>
2749 L:      linux-wireless@vger.kernel.org
2750 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
2751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2752 S:      Supported
2753 F:      drivers/net/wireless/ath/ath6kl/
2754
2755 ATI_REMOTE2 DRIVER
2756 M:      Ville Syrjala <syrjala@sci.fi>
2757 S:      Maintained
2758 F:      drivers/input/misc/ati_remote2.c
2759
2760 ATK0110 HWMON DRIVER
2761 M:      Luca Tettamanti <kronos.it@gmail.com>
2762 L:      linux-hwmon@vger.kernel.org
2763 S:      Maintained
2764 F:      drivers/hwmon/asus_atk0110.c
2765
2766 ATLX ETHERNET DRIVERS
2767 M:      Jay Cliburn <jcliburn@gmail.com>
2768 M:      Chris Snook <chris.snook@gmail.com>
2769 L:      netdev@vger.kernel.org
2770 W:      http://sourceforge.net/projects/atl1
2771 W:      http://atl1.sourceforge.net
2772 S:      Maintained
2773 F:      drivers/net/ethernet/atheros/
2774
2775 ATM
2776 M:      Chas Williams <3chas3@gmail.com>
2777 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2778 L:      netdev@vger.kernel.org
2779 W:      http://linux-atm.sourceforge.net
2780 S:      Maintained
2781 F:      drivers/atm/
2782 F:      include/linux/atm*
2783 F:      include/uapi/linux/atm*
2784
2785 ATMEL MACB ETHERNET DRIVER
2786 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2787 S:      Supported
2788 F:      drivers/net/ethernet/cadence/
2789
2790 ATMEL MAXTOUCH DRIVER
2791 M:      Nick Dyer <nick@shmanahar.org>
2792 T:      git git://github.com/ndyer/linux.git
2793 S:      Maintained
2794 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2795 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2796
2797 ATMEL WIRELESS DRIVER
2798 M:      Simon Kelley <simon@thekelleys.org.uk>
2799 L:      linux-wireless@vger.kernel.org
2800 W:      http://www.thekelleys.org.uk/atmel
2801 W:      http://atmelwlandriver.sourceforge.net/
2802 S:      Maintained
2803 F:      drivers/net/wireless/atmel/atmel*
2804
2805 ATOMIC INFRASTRUCTURE
2806 M:      Will Deacon <will@kernel.org>
2807 M:      Peter Zijlstra <peterz@infradead.org>
2808 R:      Boqun Feng <boqun.feng@gmail.com>
2809 L:      linux-kernel@vger.kernel.org
2810 S:      Maintained
2811 F:      arch/*/include/asm/atomic*.h
2812 F:      include/*/atomic*.h
2813 F:      scripts/atomic/
2814
2815 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2816 M:      Bradley Grove <linuxdrivers@attotech.com>
2817 L:      linux-scsi@vger.kernel.org
2818 W:      http://www.attotech.com
2819 S:      Supported
2820 F:      drivers/scsi/esas2r
2821
2822 ATUSB IEEE 802.15.4 RADIO DRIVER
2823 M:      Stefan Schmidt <stefan@datenfreihafen.org>
2824 L:      linux-wpan@vger.kernel.org
2825 S:      Maintained
2826 F:      drivers/net/ieee802154/atusb.c
2827 F:      drivers/net/ieee802154/atusb.h
2828 F:      drivers/net/ieee802154/at86rf230.h
2829
2830 AUDIT SUBSYSTEM
2831 M:      Paul Moore <paul@paul-moore.com>
2832 M:      Eric Paris <eparis@redhat.com>
2833 L:      linux-audit@redhat.com (moderated for non-subscribers)
2834 W:      https://github.com/linux-audit
2835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2836 S:      Supported
2837 F:      include/linux/audit.h
2838 F:      include/uapi/linux/audit.h
2839 F:      kernel/audit*
2840
2841 AUXILIARY DISPLAY DRIVERS
2842 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2843 S:      Maintained
2844 F:      drivers/auxdisplay/
2845 F:      include/linux/cfag12864b.h
2846
2847 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
2848 M:      Andreas Klinger <ak@it-klinger.de>
2849 L:      linux-iio@vger.kernel.org
2850 S:      Maintained
2851 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
2852 F:      drivers/iio/adc/hx711.c
2853
2854 AX.25 NETWORK LAYER
2855 M:      Ralf Baechle <ralf@linux-mips.org>
2856 L:      linux-hams@vger.kernel.org
2857 W:      http://www.linux-ax25.org/
2858 S:      Maintained
2859 F:      include/uapi/linux/ax25.h
2860 F:      include/net/ax25.h
2861 F:      net/ax25/
2862
2863 AXENTIA ARM DEVICES
2864 M:      Peter Rosin <peda@axentia.se>
2865 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2866 S:      Maintained
2867 F:      Documentation/devicetree/bindings/arm/axentia.txt
2868 F:      arch/arm/boot/dts/at91-linea.dtsi
2869 F:      arch/arm/boot/dts/at91-natte.dtsi
2870 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
2871 F:      arch/arm/boot/dts/at91-tse850-3.dts
2872
2873 AXENTIA ASOC DRIVERS
2874 M:      Peter Rosin <peda@axentia.se>
2875 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2876 S:      Maintained
2877 F:      Documentation/devicetree/bindings/sound/axentia,*
2878 F:      sound/soc/atmel/tse850-pcm5142.c
2879
2880 AXXIA I2C CONTROLLER
2881 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
2882 L:      linux-i2c@vger.kernel.org
2883 S:      Maintained
2884 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
2885 F:      drivers/i2c/busses/i2c-axxia.c
2886
2887 AZ6007 DVB DRIVER
2888 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
2889 L:      linux-media@vger.kernel.org
2890 W:      https://linuxtv.org
2891 T:      git git://linuxtv.org/media_tree.git
2892 S:      Maintained
2893 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2894
2895 AZTECH FM RADIO RECEIVER DRIVER
2896 M:      Hans Verkuil <hverkuil@xs4all.nl>
2897 L:      linux-media@vger.kernel.org
2898 T:      git git://linuxtv.org/media_tree.git
2899 W:      https://linuxtv.org
2900 S:      Maintained
2901 F:      drivers/media/radio/radio-aztech*
2902
2903 B43 WIRELESS DRIVER
2904 L:      linux-wireless@vger.kernel.org
2905 L:      b43-dev@lists.infradead.org
2906 W:      http://wireless.kernel.org/en/users/Drivers/b43
2907 S:      Odd Fixes
2908 F:      drivers/net/wireless/broadcom/b43/
2909
2910 B43LEGACY WIRELESS DRIVER
2911 M:      Larry Finger <Larry.Finger@lwfinger.net>
2912 L:      linux-wireless@vger.kernel.org
2913 L:      b43-dev@lists.infradead.org
2914 W:      http://wireless.kernel.org/en/users/Drivers/b43
2915 S:      Maintained
2916 F:      drivers/net/wireless/broadcom/b43legacy/
2917
2918 BACKLIGHT CLASS/SUBSYSTEM
2919 M:      Lee Jones <lee.jones@linaro.org>
2920 M:      Daniel Thompson <daniel.thompson@linaro.org>
2921 M:      Jingoo Han <jingoohan1@gmail.com>
2922 L:      dri-devel@lists.freedesktop.org
2923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2924 S:      Maintained
2925 F:      drivers/video/backlight/
2926 F:      include/linux/backlight.h
2927 F:      include/linux/pwm_backlight.h
2928 F:      Documentation/devicetree/bindings/leds/backlight
2929
2930 BATMAN ADVANCED
2931 M:      Marek Lindner <mareklindner@neomailbox.ch>
2932 M:      Simon Wunderlich <sw@simonwunderlich.de>
2933 M:      Antonio Quartulli <a@unstable.cc>
2934 M:      Sven Eckelmann <sven@narfation.org>
2935 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
2936 W:      https://www.open-mesh.org/
2937 B:      https://www.open-mesh.org/projects/batman-adv/issues
2938 C:      irc://chat.freenode.net/batman
2939 Q:      https://patchwork.open-mesh.org/project/batman/list/
2940 T:      git https://git.open-mesh.org/linux-merge.git
2941 S:      Maintained
2942 F:      Documentation/ABI/obsolete/sysfs-class-net-batman-adv
2943 F:      Documentation/ABI/obsolete/sysfs-class-net-mesh
2944 F:      Documentation/networking/batman-adv.rst
2945 F:      include/uapi/linux/batadv_packet.h
2946 F:      include/uapi/linux/batman_adv.h
2947 F:      net/batman-adv/
2948
2949 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2950 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2951 L:      linux-hams@vger.kernel.org
2952 W:      http://www.baycom.org/~tom/ham/ham.html
2953 S:      Maintained
2954 F:      drivers/net/hamradio/baycom*
2955
2956 BCACHE (BLOCK LAYER CACHE)
2957 M:      Coly Li <colyli@suse.de>
2958 M:      Kent Overstreet <kent.overstreet@gmail.com>
2959 L:      linux-bcache@vger.kernel.org
2960 W:      http://bcache.evilpiepirate.org
2961 C:      irc://irc.oftc.net/bcache
2962 S:      Maintained
2963 F:      drivers/md/bcache/
2964
2965 BDISP ST MEDIA DRIVER
2966 M:      Fabien Dessenne <fabien.dessenne@st.com>
2967 L:      linux-media@vger.kernel.org
2968 T:      git git://linuxtv.org/media_tree.git
2969 W:      https://linuxtv.org
2970 S:      Supported
2971 F:      drivers/media/platform/sti/bdisp
2972
2973 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2974 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2975 L:      netdev@vger.kernel.org
2976 S:      Maintained
2977 F:      drivers/net/ethernet/ec_bhf.c
2978
2979 BEFS FILE SYSTEM
2980 M:      Luis de Bethencourt <luisbg@kernel.org>
2981 M:      Salah Triki <salah.triki@gmail.com>
2982 S:      Maintained
2983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
2984 F:      Documentation/filesystems/befs.txt
2985 F:      fs/befs/
2986
2987 BFQ I/O SCHEDULER
2988 M:      Paolo Valente <paolo.valente@linaro.org>
2989 M:      Jens Axboe <axboe@kernel.dk>
2990 L:      linux-block@vger.kernel.org
2991 S:      Maintained
2992 F:      block/bfq-*
2993 F:      Documentation/block/bfq-iosched.rst
2994
2995 BFS FILE SYSTEM
2996 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
2997 S:      Maintained
2998 F:      Documentation/filesystems/bfs.txt
2999 F:      fs/bfs/
3000 F:      include/uapi/linux/bfs_fs.h
3001
3002 BLINKM RGB LED DRIVER
3003 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3004 S:      Maintained
3005 F:      drivers/leds/leds-blinkm.c
3006
3007 BLOCK LAYER
3008 M:      Jens Axboe <axboe@kernel.dk>
3009 L:      linux-block@vger.kernel.org
3010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3011 S:      Maintained
3012 F:      block/
3013 F:      drivers/block/
3014 F:      kernel/trace/blktrace.c
3015 F:      lib/sbitmap.c
3016
3017 BLOCK2MTD DRIVER
3018 M:      Joern Engel <joern@lazybastard.org>
3019 L:      linux-mtd@lists.infradead.org
3020 S:      Maintained
3021 F:      drivers/mtd/devices/block2mtd.c
3022
3023 BLUETOOTH DRIVERS
3024 M:      Marcel Holtmann <marcel@holtmann.org>
3025 M:      Johan Hedberg <johan.hedberg@gmail.com>
3026 L:      linux-bluetooth@vger.kernel.org
3027 W:      http://www.bluez.org/
3028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3030 S:      Maintained
3031 F:      drivers/bluetooth/
3032
3033 BLUETOOTH SUBSYSTEM
3034 M:      Marcel Holtmann <marcel@holtmann.org>
3035 M:      Johan Hedberg <johan.hedberg@gmail.com>
3036 L:      linux-bluetooth@vger.kernel.org
3037 W:      http://www.bluez.org/
3038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3039 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3040 S:      Maintained
3041 F:      net/bluetooth/
3042 F:      include/net/bluetooth/
3043
3044 BONDING DRIVER
3045 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3046 M:      Veaceslav Falico <vfalico@gmail.com>
3047 M:      Andy Gospodarek <andy@greyhouse.net>
3048 L:      netdev@vger.kernel.org
3049 W:      http://sourceforge.net/projects/bonding/
3050 S:      Supported
3051 F:      drivers/net/bonding/
3052 F:      include/uapi/linux/if_bonding.h
3053
3054 BPF (Safe dynamic programs and tools)
3055 M:      Alexei Starovoitov <ast@kernel.org>
3056 M:      Daniel Borkmann <daniel@iogearbox.net>
3057 R:      Martin KaFai Lau <kafai@fb.com>
3058 R:      Song Liu <songliubraving@fb.com>
3059 R:      Yonghong Song <yhs@fb.com>
3060 L:      netdev@vger.kernel.org
3061 L:      bpf@vger.kernel.org
3062 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3063 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3064 Q:      https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
3065 S:      Supported
3066 F:      arch/*/net/*
3067 F:      Documentation/networking/filter.txt
3068 F:      Documentation/bpf/
3069 F:      include/linux/bpf*
3070 F:      include/linux/filter.h
3071 F:      include/trace/events/xdp.h
3072 F:      include/uapi/linux/bpf*
3073 F:      include/uapi/linux/filter.h
3074 F:      kernel/bpf/
3075 F:      kernel/trace/bpf_trace.c
3076 F:      lib/test_bpf.c
3077 F:      net/bpf/
3078 F:      net/core/filter.c
3079 F:      net/sched/act_bpf.c
3080 F:      net/sched/cls_bpf.c
3081 F:      samples/bpf/
3082 F:      tools/bpf/
3083 F:      tools/lib/bpf/
3084 F:      tools/testing/selftests/bpf/
3085 K:      bpf
3086 N:      bpf
3087
3088 BPF JIT for ARM
3089 M:      Shubham Bansal <illusionist.neo@gmail.com>
3090 L:      netdev@vger.kernel.org
3091 L:      bpf@vger.kernel.org
3092 S:      Maintained
3093 F:      arch/arm/net/
3094
3095 BPF JIT for ARM64
3096 M:      Daniel Borkmann <daniel@iogearbox.net>
3097 M:      Alexei Starovoitov <ast@kernel.org>
3098 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3099 L:      netdev@vger.kernel.org
3100 L:      bpf@vger.kernel.org
3101 S:      Supported
3102 F:      arch/arm64/net/
3103
3104 BPF JIT for MIPS (32-BIT AND 64-BIT)
3105 M:      Paul Burton <paul.burton@mips.com>
3106 L:      netdev@vger.kernel.org
3107 L:      bpf@vger.kernel.org
3108 S:      Maintained
3109 F:      arch/mips/net/
3110
3111 BPF JIT for NFP NICs
3112 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
3113 L:      netdev@vger.kernel.org
3114 L:      bpf@vger.kernel.org
3115 S:      Supported
3116 F:      drivers/net/ethernet/netronome/nfp/bpf/
3117
3118 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3119 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3120 M:      Sandipan Das <sandipan@linux.ibm.com>
3121 L:      netdev@vger.kernel.org
3122 L:      bpf@vger.kernel.org
3123 S:      Maintained
3124 F:      arch/powerpc/net/
3125
3126 BPF JIT for RISC-V (RV64G)
3127 M:      Björn Töpel <bjorn.topel@gmail.com>
3128 L:      netdev@vger.kernel.org
3129 S:      Maintained
3130 F:      arch/riscv/net/
3131
3132 BPF JIT for S390
3133 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3134 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
3135 M:      Vasily Gorbik <gor@linux.ibm.com>
3136 L:      netdev@vger.kernel.org
3137 L:      bpf@vger.kernel.org
3138 S:      Maintained
3139 F:      arch/s390/net/
3140 X:      arch/s390/net/pnet.c
3141
3142 BPF JIT for SPARC (32-BIT AND 64-BIT)
3143 M:      David S. Miller <davem@davemloft.net>
3144 L:      netdev@vger.kernel.org
3145 L:      bpf@vger.kernel.org
3146 S:      Maintained
3147 F:      arch/sparc/net/
3148
3149 BPF JIT for X86 32-BIT
3150 M:      Wang YanQing <udknight@gmail.com>
3151 L:      netdev@vger.kernel.org
3152 L:      bpf@vger.kernel.org
3153 S:      Maintained
3154 F:      arch/x86/net/bpf_jit_comp32.c
3155
3156 BPF JIT for X86 64-BIT
3157 M:      Alexei Starovoitov <ast@kernel.org>
3158 M:      Daniel Borkmann <daniel@iogearbox.net>
3159 L:      netdev@vger.kernel.org
3160 L:      bpf@vger.kernel.org
3161 S:      Supported
3162 F:      arch/x86/net/
3163 X:      arch/x86/net/bpf_jit_comp32.c
3164
3165 BROADCOM B44 10/100 ETHERNET DRIVER
3166 M:      Michael Chan <michael.chan@broadcom.com>
3167 L:      netdev@vger.kernel.org
3168 S:      Supported
3169 F:      drivers/net/ethernet/broadcom/b44.*
3170
3171 BROADCOM B53 ETHERNET SWITCH DRIVER
3172 M:      Florian Fainelli <f.fainelli@gmail.com>
3173 L:      netdev@vger.kernel.org
3174 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3175 S:      Supported
3176 F:      drivers/net/dsa/b53/*
3177 F:      include/linux/platform_data/b53.h
3178
3179 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3180 M:      Florian Fainelli <f.fainelli@gmail.com>
3181 M:      Ray Jui <rjui@broadcom.com>
3182 M:      Scott Branden <sbranden@broadcom.com>
3183 M:      bcm-kernel-feedback-list@broadcom.com
3184 T:      git git://github.com/broadcom/mach-bcm
3185 S:      Maintained
3186 N:      bcm281*
3187 N:      bcm113*
3188 N:      bcm216*
3189 N:      kona
3190 F:      arch/arm/mach-bcm/
3191
3192 BROADCOM BCM2835 ARM ARCHITECTURE
3193 M:      Eric Anholt <eric@anholt.net>
3194 M:      Stefan Wahren <wahrenst@gmx.net>
3195 L:      bcm-kernel-feedback-list@broadcom.com
3196 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3197 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3198 T:      git git://github.com/anholt/linux
3199 S:      Maintained
3200 N:      bcm2835
3201 F:      drivers/staging/vc04_services
3202
3203 BROADCOM BCM47XX MIPS ARCHITECTURE
3204 M:      Hauke Mehrtens <hauke@hauke-m.de>
3205 M:      Rafał Miłecki <zajec5@gmail.com>
3206 L:      linux-mips@vger.kernel.org
3207 S:      Maintained
3208 F:      Documentation/devicetree/bindings/mips/brcm/
3209 F:      arch/mips/bcm47xx/*
3210 F:      arch/mips/include/asm/mach-bcm47xx/*
3211
3212 BROADCOM BCM5301X ARM ARCHITECTURE
3213 M:      Hauke Mehrtens <hauke@hauke-m.de>
3214 M:      Rafał Miłecki <zajec5@gmail.com>
3215 M:      bcm-kernel-feedback-list@broadcom.com
3216 L:      linux-arm-kernel@lists.infradead.org
3217 S:      Maintained
3218 F:      arch/arm/mach-bcm/bcm_5301x.c
3219 F:      arch/arm/boot/dts/bcm5301x*.dtsi
3220 F:      arch/arm/boot/dts/bcm470*
3221 F:      arch/arm/boot/dts/bcm953012*
3222
3223 BROADCOM BCM53573 ARM ARCHITECTURE
3224 M:      Rafał Miłecki <rafal@milecki.pl>
3225 L:      bcm-kernel-feedback-list@broadcom.com
3226 L:      linux-arm-kernel@lists.infradead.org
3227 S:      Maintained
3228 F:      arch/arm/boot/dts/bcm53573*
3229 F:      arch/arm/boot/dts/bcm47189*
3230
3231 BROADCOM BCM63XX ARM ARCHITECTURE
3232 M:      Florian Fainelli <f.fainelli@gmail.com>
3233 M:      bcm-kernel-feedback-list@broadcom.com
3234 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3235 T:      git git://github.com/broadcom/stblinux.git
3236 S:      Maintained
3237 N:      bcm63xx
3238
3239 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3240 M:      Kevin Cernekee <cernekee@gmail.com>
3241 L:      linux-usb@vger.kernel.org
3242 S:      Maintained
3243 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3244
3245 BROADCOM BCM7XXX ARM ARCHITECTURE
3246 M:      Brian Norris <computersforpeace@gmail.com>
3247 M:      Gregory Fong <gregory.0xf0@gmail.com>
3248 M:      Florian Fainelli <f.fainelli@gmail.com>
3249 M:      bcm-kernel-feedback-list@broadcom.com
3250 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3251 T:      git git://github.com/broadcom/stblinux.git
3252 S:      Maintained
3253 F:      arch/arm/mach-bcm/*brcmstb*
3254 F:      arch/arm/boot/dts/bcm7*.dts*
3255 F:      drivers/bus/brcmstb_gisb.c
3256 F:      arch/arm/mm/cache-b15-rac.c
3257 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3258 N:      brcmstb
3259
3260 BROADCOM BMIPS CPUFREQ DRIVER
3261 M:      Markus Mayer <mmayer@broadcom.com>
3262 M:      bcm-kernel-feedback-list@broadcom.com
3263 L:      linux-pm@vger.kernel.org
3264 S:      Maintained
3265 F:      drivers/cpufreq/bmips-cpufreq.c
3266
3267 BROADCOM BMIPS MIPS ARCHITECTURE
3268 M:      Kevin Cernekee <cernekee@gmail.com>
3269 M:      Florian Fainelli <f.fainelli@gmail.com>
3270 L:      bcm-kernel-feedback-list@broadcom.com
3271 L:      linux-mips@vger.kernel.org
3272 T:      git git://github.com/broadcom/stblinux.git
3273 S:      Maintained
3274 F:      arch/mips/bmips/*
3275 F:      arch/mips/include/asm/mach-bmips/*
3276 F:      arch/mips/kernel/*bmips*
3277 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3278 F:      drivers/irqchip/irq-bcm63*
3279 F:      drivers/irqchip/irq-bcm7*
3280 F:      drivers/irqchip/irq-brcmstb*
3281 F:      include/linux/bcm963xx_nvram.h
3282 F:      include/linux/bcm963xx_tag.h
3283
3284 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3285 M:      Rasesh Mody <rmody@marvell.com>
3286 M:      GR-Linux-NIC-Dev@marvell.com
3287 L:      netdev@vger.kernel.org
3288 S:      Supported
3289 F:      drivers/net/ethernet/broadcom/bnx2.*
3290 F:      drivers/net/ethernet/broadcom/bnx2_*
3291
3292 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3293 M:      QLogic-Storage-Upstream@qlogic.com
3294 L:      linux-scsi@vger.kernel.org
3295 S:      Supported
3296 F:      drivers/scsi/bnx2fc/
3297
3298 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3299 M:      QLogic-Storage-Upstream@qlogic.com
3300 L:      linux-scsi@vger.kernel.org
3301 S:      Supported
3302 F:      drivers/scsi/bnx2i/
3303
3304 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3305 M:      Ariel Elior <aelior@marvell.com>
3306 M:      Sudarsana Kalluru <skalluru@marvell.com>
3307 M:      GR-everest-linux-l2@marvell.com
3308 L:      netdev@vger.kernel.org
3309 S:      Supported
3310 F:      drivers/net/ethernet/broadcom/bnx2x/
3311
3312 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3313 M:      Michael Chan <michael.chan@broadcom.com>
3314 L:      netdev@vger.kernel.org
3315 S:      Supported
3316 F:      drivers/net/ethernet/broadcom/bnxt/
3317
3318 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3319 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
3320 M:      Franky Lin <franky.lin@broadcom.com>
3321 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3322 M:      Chi-Hsien Lin <chi-hsien.lin@cypress.com>
3323 M:      Wright Feng <wright.feng@cypress.com>
3324 L:      linux-wireless@vger.kernel.org
3325 L:      brcm80211-dev-list.pdl@broadcom.com
3326 L:      brcm80211-dev-list@cypress.com
3327 S:      Supported
3328 F:      drivers/net/wireless/broadcom/brcm80211/
3329
3330 BROADCOM BRCMSTB GPIO DRIVER
3331 M:      Gregory Fong <gregory.0xf0@gmail.com>
3332 L:      bcm-kernel-feedback-list@broadcom.com
3333 S:      Supported
3334 F:      drivers/gpio/gpio-brcmstb.c
3335 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3336
3337 BROADCOM BRCMSTB I2C DRIVER
3338 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3339 L:      linux-i2c@vger.kernel.org
3340 L:      bcm-kernel-feedback-list@broadcom.com
3341 S:      Supported
3342 F:      drivers/i2c/busses/i2c-brcmstb.c
3343 F:      Documentation/devicetree/bindings/i2c/i2c-brcmstb.txt
3344
3345 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3346 M:      Al Cooper <alcooperx@gmail.com>
3347 L:      linux-kernel@vger.kernel.org
3348 L:      bcm-kernel-feedback-list@broadcom.com
3349 S:      Maintained
3350 F:      drivers/phy/broadcom/phy-brcm-usb*
3351
3352 BROADCOM GENET ETHERNET DRIVER
3353 M:      Doug Berger <opendmb@gmail.com>
3354 M:      Florian Fainelli <f.fainelli@gmail.com>
3355 L:      bcm-kernel-feedback-list@broadcom.com
3356 L:      netdev@vger.kernel.org
3357 S:      Supported
3358 F:      drivers/net/ethernet/broadcom/genet/
3359
3360 BROADCOM IPROC ARM ARCHITECTURE
3361 M:      Ray Jui <rjui@broadcom.com>
3362 M:      Scott Branden <sbranden@broadcom.com>
3363 M:      bcm-kernel-feedback-list@broadcom.com
3364 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3365 T:      git git://github.com/broadcom/cygnus-linux.git
3366 S:      Maintained
3367 N:      iproc
3368 N:      cygnus
3369 N:      bcm[-_]nsp
3370 N:      bcm9113*
3371 N:      bcm9583*
3372 N:      bcm9585*
3373 N:      bcm9586*
3374 N:      bcm988312
3375 N:      bcm113*
3376 N:      bcm583*
3377 N:      bcm585*
3378 N:      bcm586*
3379 N:      bcm88312
3380 N:      hr2
3381 N:      stingray
3382 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3383 F:      arch/arm64/boot/dts/broadcom/stingray/*
3384 F:      drivers/clk/bcm/clk-ns*
3385 F:      drivers/clk/bcm/clk-sr*
3386 F:      drivers/pinctrl/bcm/pinctrl-ns*
3387 F:      include/dt-bindings/clock/bcm-sr*
3388
3389 BROADCOM KONA GPIO DRIVER
3390 M:      Ray Jui <rjui@broadcom.com>
3391 L:      bcm-kernel-feedback-list@broadcom.com
3392 S:      Supported
3393 F:      drivers/gpio/gpio-bcm-kona.c
3394 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3395
3396 BROADCOM NETXTREME-E ROCE DRIVER
3397 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3398 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3399 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3400 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3401 L:      linux-rdma@vger.kernel.org
3402 W:      http://www.broadcom.com
3403 S:      Supported
3404 F:      drivers/infiniband/hw/bnxt_re/
3405 F:      include/uapi/rdma/bnxt_re-abi.h
3406
3407 BROADCOM NVRAM DRIVER
3408 M:      Rafał Miłecki <zajec5@gmail.com>
3409 L:      linux-mips@vger.kernel.org
3410 S:      Maintained
3411 F:      drivers/firmware/broadcom/*
3412
3413 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3414 M:      Rafał Miłecki <zajec5@gmail.com>
3415 L:      linux-wireless@vger.kernel.org
3416 S:      Maintained
3417 F:      drivers/bcma/
3418 F:      include/linux/bcma/
3419
3420 BROADCOM STB AVS CPUFREQ DRIVER
3421 M:      Markus Mayer <mmayer@broadcom.com>
3422 M:      bcm-kernel-feedback-list@broadcom.com
3423 L:      linux-pm@vger.kernel.org
3424 S:      Maintained
3425 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3426 F:      drivers/cpufreq/brcmstb*
3427
3428 BROADCOM STB AVS TMON DRIVER
3429 M:      Markus Mayer <mmayer@broadcom.com>
3430 M:      bcm-kernel-feedback-list@broadcom.com
3431 L:      linux-pm@vger.kernel.org
3432 S:      Maintained
3433 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3434 F:      drivers/thermal/broadcom/brcmstb*
3435
3436 BROADCOM STB NAND FLASH DRIVER
3437 M:      Brian Norris <computersforpeace@gmail.com>
3438 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3439 L:      linux-mtd@lists.infradead.org
3440 L:      bcm-kernel-feedback-list@broadcom.com
3441 S:      Maintained
3442 F:      drivers/mtd/nand/raw/brcmnand/
3443
3444 BROADCOM STB DPFE DRIVER
3445 M:      Markus Mayer <mmayer@broadcom.com>
3446 M:      bcm-kernel-feedback-list@broadcom.com
3447 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3448 S:      Maintained
3449 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3450 F:      drivers/memory/brcmstb_dpfe.c
3451
3452 BROADCOM SPI DRIVER
3453 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3454 M:      bcm-kernel-feedback-list@broadcom.com
3455 S:      Maintained
3456 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3457 F:      drivers/spi/spi-bcm-qspi.*
3458 F:      drivers/spi/spi-brcmstb-qspi.c
3459 F:      drivers/spi/spi-iproc-qspi.c
3460
3461 BROADCOM SYSTEMPORT ETHERNET DRIVER
3462 M:      Florian Fainelli <f.fainelli@gmail.com>
3463 L:      bcm-kernel-feedback-list@broadcom.com
3464 L:      netdev@vger.kernel.org
3465 S:      Supported
3466 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3467
3468 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3469 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3470 M:      Prashant Sreedharan <prashant@broadcom.com>
3471 M:      Michael Chan <mchan@broadcom.com>
3472 L:      netdev@vger.kernel.org
3473 S:      Supported
3474 F:      drivers/net/ethernet/broadcom/tg3.*
3475
3476 BROCADE BFA FC SCSI DRIVER
3477 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3478 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3479 L:      linux-scsi@vger.kernel.org
3480 S:      Supported
3481 F:      drivers/scsi/bfa/
3482
3483 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3484 M:      Rasesh Mody <rmody@marvell.com>
3485 M:      Sudarsana Kalluru <skalluru@marvell.com>
3486 M:      GR-Linux-NIC-Dev@marvell.com
3487 L:      netdev@vger.kernel.org
3488 S:      Supported
3489 F:      drivers/net/ethernet/brocade/bna/
3490
3491 BSG (block layer generic sg v4 driver)
3492 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3493 L:      linux-scsi@vger.kernel.org
3494 S:      Supported
3495 F:      block/bsg.c
3496 F:      include/linux/bsg.h
3497 F:      include/uapi/linux/bsg.h
3498
3499 BT87X AUDIO DRIVER
3500 M:      Clemens Ladisch <clemens@ladisch.de>
3501 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3502 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3503 S:      Maintained
3504 F:      Documentation/sound/cards/bt87x.rst
3505 F:      sound/pci/bt87x.c
3506
3507 BT8XXGPIO DRIVER
3508 M:      Michael Buesch <m@bues.ch>
3509 W:      http://bu3sch.de/btgpio.php
3510 S:      Maintained
3511 F:      drivers/gpio/gpio-bt8xx.c
3512
3513 BTRFS FILE SYSTEM
3514 M:      Chris Mason <clm@fb.com>
3515 M:      Josef Bacik <josef@toxicpanda.com>
3516 M:      David Sterba <dsterba@suse.com>
3517 L:      linux-btrfs@vger.kernel.org
3518 W:      http://btrfs.wiki.kernel.org/
3519 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
3521 S:      Maintained
3522 F:      Documentation/filesystems/btrfs.txt
3523 F:      fs/btrfs/
3524 F:      include/linux/btrfs*
3525 F:      include/uapi/linux/btrfs*
3526
3527 BTTV VIDEO4LINUX DRIVER
3528 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3529 L:      linux-media@vger.kernel.org
3530 W:      https://linuxtv.org
3531 T:      git git://linuxtv.org/media_tree.git
3532 S:      Odd fixes
3533 F:      Documentation/media/v4l-drivers/bttv*
3534 F:      drivers/media/pci/bt8xx/bttv*
3535
3536 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3537 M:      Chanwoo Choi <cw00.choi@samsung.com>
3538 L:      linux-pm@vger.kernel.org
3539 L:      linux-samsung-soc@vger.kernel.org
3540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3541 S:      Maintained
3542 F:      drivers/devfreq/exynos-bus.c
3543 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3544
3545 BUSLOGIC SCSI DRIVER
3546 M:      Khalid Aziz <khalid@gonehiking.org>
3547 L:      linux-scsi@vger.kernel.org
3548 S:      Maintained
3549 F:      drivers/scsi/BusLogic.*
3550 F:      drivers/scsi/FlashPoint.*
3551
3552 C-MEDIA CMI8788 DRIVER
3553 M:      Clemens Ladisch <clemens@ladisch.de>
3554 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3556 S:      Maintained
3557 F:      sound/pci/oxygen/
3558
3559 C-SKY ARCHITECTURE
3560 M:      Guo Ren <guoren@kernel.org>
3561 T:      git https://github.com/c-sky/csky-linux.git
3562 S:      Supported
3563 F:      arch/csky/
3564 F:      Documentation/devicetree/bindings/csky/
3565 F:      drivers/irqchip/irq-csky-*
3566 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3567 F:      drivers/clocksource/timer-gx6605s.c
3568 F:      drivers/clocksource/timer-mp-csky.c
3569 F:      Documentation/devicetree/bindings/timer/csky,*
3570 K:      csky
3571 N:      csky
3572
3573 C6X ARCHITECTURE
3574 M:      Mark Salter <msalter@redhat.com>
3575 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3576 L:      linux-c6x-dev@linux-c6x.org
3577 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3578 S:      Maintained
3579 F:      arch/c6x/
3580
3581 CA8210 IEEE-802.15.4 RADIO DRIVER
3582 M:      Harry Morris <h.morris@cascoda.com>
3583 L:      linux-wpan@vger.kernel.org
3584 W:      https://github.com/Cascoda/ca8210-linux.git
3585 S:      Maintained
3586 F:      drivers/net/ieee802154/ca8210.c
3587 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3588
3589 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3590 M:      David Howells <dhowells@redhat.com>
3591 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3592 S:      Supported
3593 F:      Documentation/filesystems/caching/cachefiles.txt
3594 F:      fs/cachefiles/
3595
3596 CADENCE MIPI-CSI2 BRIDGES
3597 M:      Maxime Ripard <mripard@kernel.org>
3598 L:      linux-media@vger.kernel.org
3599 S:      Maintained
3600 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3601 F:      drivers/media/platform/cadence/cdns-csi2*
3602
3603 CADET FM/AM RADIO RECEIVER DRIVER
3604 M:      Hans Verkuil <hverkuil@xs4all.nl>
3605 L:      linux-media@vger.kernel.org
3606 T:      git git://linuxtv.org/media_tree.git
3607 W:      https://linuxtv.org
3608 S:      Maintained
3609 F:      drivers/media/radio/radio-cadet*
3610
3611 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3612 M:      Jonathan Corbet <corbet@lwn.net>
3613 L:      linux-media@vger.kernel.org
3614 T:      git git://linuxtv.org/media_tree.git
3615 S:      Maintained
3616 F:      Documentation/media/v4l-drivers/cafe_ccic*
3617 F:      drivers/media/platform/marvell-ccic/
3618
3619 CAIF NETWORK LAYER
3620 L:      netdev@vger.kernel.org
3621 S:      Orphan
3622 F:      Documentation/networking/caif/
3623 F:      drivers/net/caif/
3624 F:      include/uapi/linux/caif/
3625 F:      include/net/caif/
3626 F:      net/caif/
3627
3628 CAKE QDISC
3629 M:      Toke Høiland-Jørgensen <toke@toke.dk>
3630 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
3631 S:      Maintained
3632 F:      net/sched/sch_cake.c
3633
3634 CALGARY x86-64 IOMMU
3635 M:      Muli Ben-Yehuda <mulix@mulix.org>
3636 M:      Jon Mason <jdmason@kudzu.us>
3637 L:      iommu@lists.linux-foundation.org
3638 S:      Maintained
3639 F:      arch/x86/kernel/pci-calgary_64.c
3640 F:      arch/x86/kernel/tce_64.c
3641 F:      arch/x86/include/asm/calgary.h
3642 F:      arch/x86/include/asm/tce.h
3643
3644 CAN NETWORK DRIVERS
3645 M:      Wolfgang Grandegger <wg@grandegger.com>
3646 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3647 L:      linux-can@vger.kernel.org
3648 W:      https://github.com/linux-can
3649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3651 S:      Maintained
3652 F:      Documentation/devicetree/bindings/net/can/
3653 F:      drivers/net/can/
3654 F:      include/linux/can/dev.h
3655 F:      include/linux/can/led.h
3656 F:      include/linux/can/rx-offload.h
3657 F:      include/linux/can/platform/
3658 F:      include/uapi/linux/can/error.h
3659 F:      include/uapi/linux/can/netlink.h
3660 F:      include/uapi/linux/can/vxcan.h
3661
3662 CAN NETWORK LAYER
3663 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3664 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3665 L:      linux-can@vger.kernel.org
3666 W:      https://github.com/linux-can
3667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3669 S:      Maintained
3670 F:      Documentation/networking/can.rst
3671 F:      net/can/
3672 F:      include/linux/can/core.h
3673 F:      include/linux/can/skb.h
3674 F:      include/net/netns/can.h
3675 F:      include/uapi/linux/can.h
3676 F:      include/uapi/linux/can/bcm.h
3677 F:      include/uapi/linux/can/raw.h
3678 F:      include/uapi/linux/can/gw.h
3679
3680 CAN-J1939 NETWORK LAYER
3681 M:      Robin van der Gracht <robin@protonic.nl>
3682 M:      Oleksij Rempel <o.rempel@pengutronix.de>
3683 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
3684 L:      linux-can@vger.kernel.org
3685 S:      Maintained
3686 F:      Documentation/networking/j1939.txt
3687 F:      net/can/j1939/
3688 F:      include/uapi/linux/can/j1939.h
3689
3690 CAPABILITIES
3691 M:      Serge Hallyn <serge@hallyn.com>
3692 L:      linux-security-module@vger.kernel.org
3693 S:      Supported
3694 F:      include/linux/capability.h
3695 F:      include/uapi/linux/capability.h
3696 F:      security/commoncap.c
3697 F:      kernel/capability.c
3698
3699 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3700 M:      Kevin Tsai <ktsai@capellamicro.com>
3701 S:      Maintained
3702 F:      drivers/iio/light/cm*
3703
3704 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3705 M:      Christian Lamparter <chunkeey@googlemail.com>
3706 L:      linux-wireless@vger.kernel.org
3707 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
3708 S:      Maintained
3709 F:      drivers/net/wireless/ath/carl9170/
3710
3711 CAVIUM I2C DRIVER
3712 M:      Jan Glauber <jglauber@cavium.com>
3713 M:      David Daney <david.daney@cavium.com>
3714 W:      http://www.cavium.com
3715 S:      Supported
3716 F:      drivers/i2c/busses/i2c-octeon*
3717 F:      drivers/i2c/busses/i2c-thunderx*
3718
3719 CAVIUM LIQUIDIO NETWORK DRIVER
3720 M:      Derek Chickles <dchickles@marvell.com>
3721 M:      Satanand Burla <sburla@marvell.com>
3722 M:      Felix Manlunas <fmanlunas@marvell.com>
3723 L:      netdev@vger.kernel.org
3724 W:      http://www.cavium.com
3725 S:      Supported
3726 F:      drivers/net/ethernet/cavium/liquidio/
3727
3728 CAVIUM MMC DRIVER
3729 M:      Jan Glauber <jglauber@cavium.com>
3730 M:      David Daney <david.daney@cavium.com>
3731 M:      Steven J. Hill <Steven.Hill@cavium.com>
3732 W:      http://www.cavium.com
3733 S:      Supported
3734 F:      drivers/mmc/host/cavium*
3735
3736 CAVIUM OCTEON-TX CRYPTO DRIVER
3737 M:      George Cherian <george.cherian@cavium.com>
3738 L:      linux-crypto@vger.kernel.org
3739 W:      http://www.cavium.com
3740 S:      Supported
3741 F:      drivers/crypto/cavium/cpt/
3742
3743 CAVIUM THUNDERX2 ARM64 SOC
3744 M:      Robert Richter <rrichter@cavium.com>
3745 M:      Jayachandran C <jnair@caviumnetworks.com>
3746 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3747 S:      Maintained
3748 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3749 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3750
3751 CC2520 IEEE-802.15.4 RADIO DRIVER
3752 M:      Varka Bhadram <varkabhadram@gmail.com>
3753 L:      linux-wpan@vger.kernel.org
3754 S:      Maintained
3755 F:      drivers/net/ieee802154/cc2520.c
3756 F:      include/linux/spi/cc2520.h
3757 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3758
3759 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3760 M:      Gilad Ben-Yossef <gilad@benyossef.com>
3761 L:      linux-crypto@vger.kernel.org
3762 S:      Supported
3763 F:      drivers/crypto/ccree/
3764 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3765
3766 CEC FRAMEWORK
3767 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3768 L:      linux-media@vger.kernel.org
3769 T:      git git://linuxtv.org/media_tree.git
3770 W:      http://linuxtv.org
3771 S:      Supported
3772 F:      Documentation/media/kapi/cec-core.rst
3773 F:      Documentation/media/uapi/cec
3774 F:      drivers/media/cec/
3775 F:      drivers/media/rc/keymaps/rc-cec.c
3776 F:      include/media/cec.h
3777 F:      include/media/cec-notifier.h
3778 F:      include/uapi/linux/cec.h
3779 F:      include/uapi/linux/cec-funcs.h
3780 F:      Documentation/devicetree/bindings/media/cec.txt
3781 F:      Documentation/ABI/testing/debugfs-cec-error-inj
3782
3783 CEC GPIO DRIVER
3784 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3785 L:      linux-media@vger.kernel.org
3786 T:      git git://linuxtv.org/media_tree.git
3787 W:      http://linuxtv.org
3788 S:      Supported
3789 F:      drivers/media/platform/cec-gpio/
3790 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
3791
3792 CELL BROADBAND ENGINE ARCHITECTURE
3793 M:      Arnd Bergmann <arnd@arndb.de>
3794 L:      linuxppc-dev@lists.ozlabs.org
3795 W:      http://www.ibm.com/developerworks/power/cell/
3796 S:      Supported
3797 F:      arch/powerpc/include/asm/cell*.h
3798 F:      arch/powerpc/include/asm/spu*.h
3799 F:      arch/powerpc/include/uapi/asm/spu*.h
3800 F:      arch/powerpc/oprofile/*cell*
3801 F:      arch/powerpc/platforms/cell/
3802
3803 CEPH COMMON CODE (LIBCEPH)
3804 M:      Ilya Dryomov <idryomov@gmail.com>
3805 M:      Jeff Layton <jlayton@kernel.org>
3806 M:      Sage Weil <sage@redhat.com>
3807 L:      ceph-devel@vger.kernel.org
3808 W:      http://ceph.com/
3809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3810 T:      git git://github.com/ceph/ceph-client.git
3811 S:      Supported
3812 F:      net/ceph/
3813 F:      include/linux/ceph/
3814 F:      include/linux/crush/
3815
3816 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3817 M:      Jeff Layton <jlayton@kernel.org>
3818 M:      Sage Weil <sage@redhat.com>
3819 M:      Ilya Dryomov <idryomov@gmail.com>
3820 L:      ceph-devel@vger.kernel.org
3821 W:      http://ceph.com/
3822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3823 T:      git git://github.com/ceph/ceph-client.git
3824 S:      Supported
3825 F:      Documentation/filesystems/ceph.txt
3826 F:      fs/ceph/
3827
3828 CERTIFICATE HANDLING:
3829 M:      David Howells <dhowells@redhat.com>
3830 M:      David Woodhouse <dwmw2@infradead.org>
3831 L:      keyrings@vger.kernel.org
3832 S:      Maintained
3833 F:      Documentation/admin-guide/module-signing.rst
3834 F:      certs/
3835 F:      scripts/sign-file.c
3836 F:      scripts/extract-cert.c
3837
3838 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
3839 L:      devel@driverdev.osuosl.org
3840 S:      Obsolete
3841 F:      drivers/staging/wusbcore/
3842
3843 CFAG12864B LCD DRIVER
3844 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3845 S:      Maintained
3846 F:      drivers/auxdisplay/cfag12864b.c
3847 F:      include/linux/cfag12864b.h
3848
3849 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3850 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3851 S:      Maintained
3852 F:      drivers/auxdisplay/cfag12864bfb.c
3853 F:      include/linux/cfag12864b.h
3854
3855 802.11 (including CFG80211/NL80211)
3856 M:      Johannes Berg <johannes@sipsolutions.net>
3857 L:      linux-wireless@vger.kernel.org
3858 W:      http://wireless.kernel.org/
3859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3861 S:      Maintained
3862 F:      net/wireless/
3863 F:      include/uapi/linux/nl80211.h
3864 F:      include/linux/ieee80211.h
3865 F:      include/net/wext.h
3866 F:      include/net/cfg80211.h
3867 F:      include/net/iw_handler.h
3868 F:      include/net/ieee80211_radiotap.h
3869 F:      Documentation/driver-api/80211/cfg80211.rst
3870 F:      Documentation/networking/regulatory.txt
3871
3872 CHAR and MISC DRIVERS
3873 M:      Arnd Bergmann <arnd@arndb.de>
3874 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
3876 S:      Supported
3877 F:      drivers/char/
3878 F:      drivers/misc/
3879 F:      include/linux/miscdevice.h
3880
3881 CHECKPATCH
3882 M:      Andy Whitcroft <apw@canonical.com>
3883 M:      Joe Perches <joe@perches.com>
3884 S:      Maintained
3885 F:      scripts/checkpatch.pl
3886
3887 CHINESE DOCUMENTATION
3888 M:      Harry Wei <harryxiyou@gmail.com>
3889 M:      Alex Shi <alex.shi@linux.alibaba.com>
3890 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
3891 S:      Maintained
3892 F:      Documentation/translations/zh_CN/
3893
3894 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
3895 M:      Peter Chen <Peter.Chen@nxp.com>
3896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3897 L:      linux-usb@vger.kernel.org
3898 S:      Maintained
3899 F:      drivers/usb/chipidea/
3900
3901 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
3902 M:      Hans de Goede <hdegoede@redhat.com>
3903 L:      linux-input@vger.kernel.org
3904 S:      Maintained
3905 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
3906 F:      drivers/input/touchscreen/chipone_icn8318.c
3907
3908 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
3909 M:      Hans de Goede <hdegoede@redhat.com>
3910 L:      linux-input@vger.kernel.org
3911 S:      Maintained
3912 F:      drivers/input/touchscreen/chipone_icn8505.c
3913
3914 CHROME HARDWARE PLATFORM SUPPORT
3915 M:      Benson Leung <bleung@chromium.org>
3916 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
3917 S:      Maintained
3918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
3919 F:      drivers/platform/chrome/
3920
3921 CHROMEOS EC SUBDRIVERS
3922 M:      Benson Leung <bleung@chromium.org>
3923 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
3924 R:      Guenter Roeck <groeck@chromium.org>
3925 S:      Maintained
3926 N:      cros_ec
3927 N:      cros-ec
3928 F:      drivers/power/supply/cros_usbpd-charger.c
3929
3930 CHROMEOS EC CODEC DRIVER
3931 M:      Cheng-Yi Chiang <cychiang@chromium.org>
3932 S:      Maintained
3933 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
3934 R:      Guenter Roeck <groeck@chromium.org>
3935 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.txt
3936 F:      sound/soc/codecs/cros_ec_codec.*
3937
3938 CIRRUS LOGIC AUDIO CODEC DRIVERS
3939 M:      Brian Austin <brian.austin@cirrus.com>
3940 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
3941 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3942 S:      Maintained
3943 F:      sound/soc/codecs/cs*
3944
3945 CIRRUS LOGIC EP93XX ETHERNET DRIVER
3946 M:      Hartley Sweeten <hsweeten@visionengravers.com>
3947 L:      netdev@vger.kernel.org
3948 S:      Maintained
3949 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
3950
3951 CIRRUS LOGIC LOCHNAGAR DRIVER
3952 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
3953 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
3954 L:      patches@opensource.cirrus.com
3955 S:      Supported
3956 F:      drivers/clk/clk-lochnagar.c
3957 F:      drivers/hwmon/lochnagar-hwmon.c
3958 F:      drivers/mfd/lochnagar-i2c.c
3959 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
3960 F:      drivers/regulator/lochnagar-regulator.c
3961 F:      sound/soc/codecs/lochnagar-sc.c
3962 F:      include/dt-bindings/clk/lochnagar.h
3963 F:      include/dt-bindings/pinctrl/lochnagar.h
3964 F:      include/linux/mfd/lochnagar*
3965 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.txt
3966 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.txt
3967 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.txt
3968 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.txt
3969 F:      Documentation/devicetree/bindings/regulator/cirrus,lochnagar.txt
3970 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.txt
3971 F:      Documentation/hwmon/lochnagar.rst
3972
3973 CISCO FCOE HBA DRIVER
3974 M:      Satish Kharat <satishkh@cisco.com>
3975 M:      Sesidhar Baddela <sebaddel@cisco.com>
3976 M:      Karan Tilak Kumar <kartilak@cisco.com>
3977 L:      linux-scsi@vger.kernel.org
3978 S:      Supported
3979 F:      drivers/scsi/fnic/
3980
3981 CISCO SCSI HBA DRIVER
3982 M:      Karan Tilak Kumar <kartilak@cisco.com>
3983 M:      Sesidhar Baddela <sebaddel@cisco.com>
3984 L:      linux-scsi@vger.kernel.org
3985 S:      Supported
3986 F:      drivers/scsi/snic/
3987
3988 CISCO VIC ETHERNET NIC DRIVER
3989 M:      Christian Benvenuti <benve@cisco.com>
3990 M:      Govindarajulu Varadarajan <_govind@gmx.com>
3991 M:      Parvi Kaustubhi <pkaustub@cisco.com>
3992 S:      Supported
3993 F:      drivers/net/ethernet/cisco/enic/
3994
3995 CISCO VIC LOW LATENCY NIC DRIVER
3996 M:      Christian Benvenuti <benve@cisco.com>
3997 M:      Nelson Escobar <neescoba@cisco.com>
3998 M:      Parvi Kaustubhi <pkaustub@cisco.com>
3999 S:      Supported
4000 F:      drivers/infiniband/hw/usnic/
4001
4002 CIRRUS LOGIC MADERA CODEC DRIVERS
4003 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4004 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4005 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4006 L:      patches@opensource.cirrus.com
4007 T:      git https://github.com/CirrusLogic/linux-drivers.git
4008 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4009 S:      Supported
4010 F:      Documentation/devicetree/bindings/mfd/madera.txt
4011 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera-pinctrl.txt
4012 F:      Documentation/devicetree/bindings/sound/madera.txt
4013 F:      include/dt-bindings/sound/madera*
4014 F:      include/linux/irqchip/irq-madera*
4015 F:      include/linux/mfd/madera/*
4016 F:      include/sound/madera*
4017 F:      drivers/gpio/gpio-madera*
4018 F:      drivers/irqchip/irq-madera*
4019 F:      drivers/mfd/madera*
4020 F:      drivers/mfd/cs47l*
4021 F:      drivers/pinctrl/cirrus/*
4022 F:      sound/soc/codecs/cs47l*
4023 F:      sound/soc/codecs/madera*
4024
4025 CLANG-FORMAT FILE
4026 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4027 S:      Maintained
4028 F:      .clang-format
4029
4030 CLANG/LLVM BUILD SUPPORT
4031 L:      clang-built-linux@googlegroups.com
4032 W:      https://clangbuiltlinux.github.io/
4033 B:      https://github.com/ClangBuiltLinux/linux/issues
4034 C:      irc://chat.freenode.net/clangbuiltlinux
4035 S:      Supported
4036 K:      \b(?i:clang|llvm)\b
4037
4038 CLEANCACHE API
4039 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4040 L:      linux-kernel@vger.kernel.org
4041 S:      Maintained
4042 F:      mm/cleancache.c
4043 F:      include/linux/cleancache.h
4044
4045 CLK API
4046 M:      Russell King <linux@armlinux.org.uk>
4047 L:      linux-clk@vger.kernel.org
4048 S:      Maintained
4049 F:      include/linux/clk.h
4050
4051 CLOCKSOURCE, CLOCKEVENT DRIVERS
4052 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4053 M:      Thomas Gleixner <tglx@linutronix.de>
4054 L:      linux-kernel@vger.kernel.org
4055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4056 S:      Supported
4057 F:      drivers/clocksource/
4058 F:      Documentation/devicetree/bindings/timer/
4059
4060 CMPC ACPI DRIVER
4061 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4062 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4063 L:      platform-driver-x86@vger.kernel.org
4064 S:      Supported
4065 F:      drivers/platform/x86/classmate-laptop.c
4066
4067 COBALT MEDIA DRIVER
4068 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4069 L:      linux-media@vger.kernel.org
4070 T:      git git://linuxtv.org/media_tree.git
4071 W:      https://linuxtv.org
4072 S:      Supported
4073 F:      drivers/media/pci/cobalt/
4074
4075 COCCINELLE/Semantic Patches (SmPL)
4076 M:      Julia Lawall <Julia.Lawall@lip6.fr>
4077 M:      Gilles Muller <Gilles.Muller@lip6.fr>
4078 M:      Nicolas Palix <nicolas.palix@imag.fr>
4079 M:      Michal Marek <michal.lkml@markovi.net>
4080 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4082 W:      http://coccinelle.lip6.fr/
4083 S:      Supported
4084 F:      Documentation/dev-tools/coccinelle.rst
4085 F:      scripts/coccinelle/
4086 F:      scripts/coccicheck
4087
4088 CODA FILE SYSTEM
4089 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4090 M:      coda@cs.cmu.edu
4091 L:      codalist@coda.cs.cmu.edu
4092 W:      http://www.coda.cs.cmu.edu/
4093 S:      Maintained
4094 F:      Documentation/filesystems/coda.txt
4095 F:      fs/coda/
4096 F:      include/linux/coda*.h
4097 F:      include/uapi/linux/coda*.h
4098
4099 CODA V4L2 MEM2MEM DRIVER
4100 M:      Philipp Zabel <p.zabel@pengutronix.de>
4101 L:      linux-media@vger.kernel.org
4102 S:      Maintained
4103 F:      Documentation/devicetree/bindings/media/coda.txt
4104 F:      drivers/media/platform/coda/
4105
4106 CODE OF CONDUCT
4107 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4108 S:      Supported
4109 F:      Documentation/process/code-of-conduct.rst
4110 F:      Documentation/process/code-of-conduct-interpretation.rst
4111
4112 COMMON CLK FRAMEWORK
4113 M:      Michael Turquette <mturquette@baylibre.com>
4114 M:      Stephen Boyd <sboyd@kernel.org>
4115 L:      linux-clk@vger.kernel.org
4116 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4118 S:      Maintained
4119 F:      Documentation/devicetree/bindings/clock/
4120 F:      drivers/clk/
4121 X:      drivers/clk/clkdev.c
4122 F:      include/linux/clk-pr*
4123 F:      include/linux/clk/
4124 F:      include/linux/of_clk.h
4125
4126 COMMON INTERNET FILE SYSTEM (CIFS)
4127 M:      Steve French <sfrench@samba.org>
4128 L:      linux-cifs@vger.kernel.org
4129 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4130 W:      http://linux-cifs.samba.org/
4131 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4132 S:      Supported
4133 F:      Documentation/admin-guide/cifs/
4134 F:      fs/cifs/
4135
4136 COMPACTPCI HOTPLUG CORE
4137 M:      Scott Murray <scott@spiteful.org>
4138 L:      linux-pci@vger.kernel.org
4139 S:      Maintained
4140 F:      drivers/pci/hotplug/cpci_hotplug*
4141
4142 COMPACTPCI HOTPLUG GENERIC DRIVER
4143 M:      Scott Murray <scott@spiteful.org>
4144 L:      linux-pci@vger.kernel.org
4145 S:      Maintained
4146 F:      drivers/pci/hotplug/cpcihp_generic.c
4147
4148 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4149 M:      Scott Murray <scott@spiteful.org>
4150 L:      linux-pci@vger.kernel.org
4151 S:      Maintained
4152 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4153
4154 COMPAL LAPTOP SUPPORT
4155 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4156 L:      platform-driver-x86@vger.kernel.org
4157 S:      Maintained
4158 F:      drivers/platform/x86/compal-laptop.c
4159
4160 COMPILER ATTRIBUTES
4161 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4162 S:      Maintained
4163 F:      include/linux/compiler_attributes.h
4164
4165 CONEXANT ACCESSRUNNER USB DRIVER
4166 L:      accessrunner-general@lists.sourceforge.net
4167 W:      http://accessrunner.sourceforge.net/
4168 S:      Orphan
4169 F:      drivers/usb/atm/cxacru.c
4170
4171 CONFIGFS
4172 M:      Joel Becker <jlbec@evilplan.org>
4173 M:      Christoph Hellwig <hch@lst.de>
4174 T:      git git://git.infradead.org/users/hch/configfs.git
4175 S:      Supported
4176 F:      fs/configfs/
4177 F:      include/linux/configfs.h
4178
4179 CONNECTOR
4180 M:      Evgeniy Polyakov <zbr@ioremap.net>
4181 L:      netdev@vger.kernel.org
4182 S:      Maintained
4183 F:      drivers/connector/
4184
4185 CONTROL GROUP (CGROUP)
4186 M:      Tejun Heo <tj@kernel.org>
4187 M:      Li Zefan <lizefan@huawei.com>
4188 M:      Johannes Weiner <hannes@cmpxchg.org>
4189 L:      cgroups@vger.kernel.org
4190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4191 S:      Maintained
4192 F:      Documentation/admin-guide/cgroup-v2.rst
4193 F:      Documentation/admin-guide/cgroup-v1/
4194 F:      include/linux/cgroup*
4195 F:      kernel/cgroup/
4196
4197 CONTROL GROUP - CPUSET
4198 M:      Li Zefan <lizefan@huawei.com>
4199 L:      cgroups@vger.kernel.org
4200 W:      http://www.bullopensource.org/cpuset/
4201 W:      http://oss.sgi.com/projects/cpusets/
4202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4203 S:      Maintained
4204 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4205 F:      include/linux/cpuset.h
4206 F:      kernel/cgroup/cpuset.c
4207
4208 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4209 M:      Johannes Weiner <hannes@cmpxchg.org>
4210 M:      Michal Hocko <mhocko@kernel.org>
4211 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4212 L:      cgroups@vger.kernel.org
4213 L:      linux-mm@kvack.org
4214 S:      Maintained
4215 F:      mm/memcontrol.c
4216 F:      mm/swap_cgroup.c
4217
4218 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4219 M:      Tejun Heo <tj@kernel.org>
4220 M:      Jens Axboe <axboe@kernel.dk>
4221 L:      cgroups@vger.kernel.org
4222 L:      linux-block@vger.kernel.org
4223 T:      git git://git.kernel.dk/linux-block
4224 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4225 F:      block/blk-cgroup.c
4226 F:      include/linux/blk-cgroup.h
4227 F:      block/blk-throttle.c
4228 F:      block/blk-iolatency.c
4229 F:      block/bfq-cgroup.c
4230
4231 CORETEMP HARDWARE MONITORING DRIVER
4232 M:      Fenghua Yu <fenghua.yu@intel.com>
4233 L:      linux-hwmon@vger.kernel.org
4234 S:      Maintained
4235 F:      Documentation/hwmon/coretemp.rst
4236 F:      drivers/hwmon/coretemp.c
4237
4238 COSA/SRP SYNC SERIAL DRIVER
4239 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4240 W:      http://www.fi.muni.cz/~kas/cosa/
4241 S:      Maintained
4242 F:      drivers/net/wan/cosa*
4243
4244 COUNTER SUBSYSTEM
4245 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4246 L:      linux-iio@vger.kernel.org
4247 S:      Maintained
4248 F:      Documentation/ABI/testing/sysfs-bus-counter*
4249 F:      Documentation/driver-api/generic-counter.rst
4250 F:      drivers/counter/
4251 F:      include/linux/counter.h
4252 F:      include/linux/counter_enum.h
4253
4254 CPMAC ETHERNET DRIVER
4255 M:      Florian Fainelli <f.fainelli@gmail.com>
4256 L:      netdev@vger.kernel.org
4257 S:      Maintained
4258 F:      drivers/net/ethernet/ti/cpmac.c
4259
4260 CPU FREQUENCY SCALING FRAMEWORK
4261 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4262 M:      Viresh Kumar <viresh.kumar@linaro.org>
4263 L:      linux-pm@vger.kernel.org
4264 S:      Maintained
4265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4267 B:      https://bugzilla.kernel.org
4268 F:      Documentation/admin-guide/pm/cpufreq.rst
4269 F:      Documentation/admin-guide/pm/intel_pstate.rst
4270 F:      Documentation/cpu-freq/
4271 F:      Documentation/devicetree/bindings/cpufreq/
4272 F:      drivers/cpufreq/
4273 F:      kernel/sched/cpufreq*.c
4274 F:      include/linux/cpufreq.h
4275 F:      include/linux/sched/cpufreq.h
4276 F:      tools/testing/selftests/cpufreq/
4277
4278 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
4279 M:      Viresh Kumar <viresh.kumar@linaro.org>
4280 M:      Sudeep Holla <sudeep.holla@arm.com>
4281 L:      linux-pm@vger.kernel.org
4282 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4283 S:      Maintained
4284 F:      drivers/cpufreq/arm_big_little.h
4285 F:      drivers/cpufreq/arm_big_little.c
4286
4287 CPU POWER MONITORING SUBSYSTEM
4288 M:      Thomas Renninger <trenn@suse.com>
4289 M:      Shuah Khan <shuah@kernel.org>
4290 M:      Shuah Khan <skhan@linuxfoundation.org>
4291 L:      linux-pm@vger.kernel.org
4292 S:      Maintained
4293 F:      tools/power/cpupower/
4294
4295 CPUID/MSR DRIVER
4296 M:      "H. Peter Anvin" <hpa@zytor.com>
4297 S:      Maintained
4298 F:      arch/x86/kernel/cpuid.c
4299 F:      arch/x86/kernel/msr.c
4300
4301 CPUIDLE DRIVER - ARM BIG LITTLE
4302 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4303 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4304 L:      linux-pm@vger.kernel.org
4305 L:      linux-arm-kernel@lists.infradead.org
4306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4307 S:      Maintained
4308 F:      drivers/cpuidle/cpuidle-big_little.c
4309
4310 CPUIDLE DRIVER - ARM EXYNOS
4311 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4312 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4313 M:      Kukjin Kim <kgene@kernel.org>
4314 L:      linux-pm@vger.kernel.org
4315 L:      linux-samsung-soc@vger.kernel.org
4316 S:      Supported
4317 F:      drivers/cpuidle/cpuidle-exynos.c
4318 F:      arch/arm/mach-exynos/pm.c
4319
4320 CPUIDLE DRIVER - ARM PSCI
4321 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4322 M:      Sudeep Holla <sudeep.holla@arm.com>
4323 L:      linux-pm@vger.kernel.org
4324 L:      linux-arm-kernel@lists.infradead.org
4325 S:      Supported
4326 F:      drivers/cpuidle/cpuidle-psci.c
4327
4328 CPU IDLE TIME MANAGEMENT FRAMEWORK
4329 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4330 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4331 L:      linux-pm@vger.kernel.org
4332 S:      Maintained
4333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4334 B:      https://bugzilla.kernel.org
4335 F:      Documentation/admin-guide/pm/cpuidle.rst
4336 F:      Documentation/driver-api/pm/cpuidle.rst
4337 F:      drivers/cpuidle/*
4338 F:      include/linux/cpuidle.h
4339
4340 CRAMFS FILESYSTEM
4341 M:      Nicolas Pitre <nico@fluxnic.net>
4342 S:      Maintained
4343 F:      Documentation/filesystems/cramfs.txt
4344 F:      fs/cramfs/
4345
4346 CRYPTO API
4347 M:      Herbert Xu <herbert@gondor.apana.org.au>
4348 M:      "David S. Miller" <davem@davemloft.net>
4349 L:      linux-crypto@vger.kernel.org
4350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4352 S:      Maintained
4353 F:      Documentation/crypto/
4354 F:      Documentation/devicetree/bindings/crypto/
4355 F:      arch/*/crypto/
4356 F:      crypto/
4357 F:      drivers/crypto/
4358 F:      include/crypto/
4359 F:      include/linux/crypto*
4360 F:      lib/crypto/
4361
4362 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4363 M:      Neil Horman <nhorman@tuxdriver.com>
4364 L:      linux-crypto@vger.kernel.org
4365 S:      Maintained
4366 F:      crypto/ansi_cprng.c
4367 F:      crypto/rng.c
4368
4369 CS3308 MEDIA DRIVER
4370 M:      Hans Verkuil <hverkuil@xs4all.nl>
4371 L:      linux-media@vger.kernel.org
4372 T:      git git://linuxtv.org/media_tree.git
4373 W:      http://linuxtv.org
4374 S:      Odd Fixes
4375 F:      drivers/media/i2c/cs3308.c
4376
4377 CS5535 Audio ALSA driver
4378 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4379 S:      Maintained
4380 F:      sound/pci/cs5535audio/
4381
4382 CSI DRIVERS FOR ALLWINNER V3s
4383 M:      Yong Deng <yong.deng@magewell.com>
4384 L:      linux-media@vger.kernel.org
4385 T:      git git://linuxtv.org/media_tree.git
4386 S:      Maintained
4387 F:      drivers/media/platform/sunxi/sun6i-csi/
4388 F:      Documentation/devicetree/bindings/media/sun6i-csi.txt
4389
4390 CW1200 WLAN driver
4391 M:      Solomon Peachy <pizza@shaftnet.org>
4392 S:      Maintained
4393 F:      drivers/net/wireless/st/cw1200/
4394
4395 CX18 VIDEO4LINUX DRIVER
4396 M:      Andy Walls <awalls@md.metrocast.net>
4397 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
4398 L:      linux-media@vger.kernel.org
4399 T:      git git://linuxtv.org/media_tree.git
4400 W:      https://linuxtv.org
4401 W:      http://www.ivtvdriver.org/index.php/Cx18
4402 S:      Maintained
4403 F:      Documentation/media/v4l-drivers/cx18*
4404 F:      drivers/media/pci/cx18/
4405 F:      include/uapi/linux/ivtv*
4406
4407 CX2341X MPEG ENCODER HELPER MODULE
4408 M:      Hans Verkuil <hverkuil@xs4all.nl>
4409 L:      linux-media@vger.kernel.org
4410 T:      git git://linuxtv.org/media_tree.git
4411 W:      https://linuxtv.org
4412 S:      Maintained
4413 F:      drivers/media/common/cx2341x*
4414 F:      include/media/drv-intf/cx2341x.h
4415
4416 CX24120 MEDIA DRIVER
4417 M:      Jemma Denson <jdenson@gmail.com>
4418 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4419 L:      linux-media@vger.kernel.org
4420 W:      https://linuxtv.org
4421 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4422 S:      Maintained
4423 F:      drivers/media/dvb-frontends/cx24120*
4424
4425 CX88 VIDEO4LINUX DRIVER
4426 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4427 L:      linux-media@vger.kernel.org
4428 W:      https://linuxtv.org
4429 T:      git git://linuxtv.org/media_tree.git
4430 S:      Odd fixes
4431 F:      Documentation/media/v4l-drivers/cx88*
4432 F:      drivers/media/pci/cx88/
4433
4434 CXD2820R MEDIA DRIVER
4435 M:      Antti Palosaari <crope@iki.fi>
4436 L:      linux-media@vger.kernel.org
4437 W:      https://linuxtv.org
4438 W:      http://palosaari.fi/linux/
4439 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4440 T:      git git://linuxtv.org/anttip/media_tree.git
4441 S:      Maintained
4442 F:      drivers/media/dvb-frontends/cxd2820r*
4443
4444 CXGB3 ETHERNET DRIVER (CXGB3)
4445 M:      Vishal Kulkarni <vishal@chelsio.com>
4446 L:      netdev@vger.kernel.org
4447 W:      http://www.chelsio.com
4448 S:      Supported
4449 F:      drivers/net/ethernet/chelsio/cxgb3/
4450
4451 CXGB3 ISCSI DRIVER (CXGB3I)
4452 M:      Karen Xie <kxie@chelsio.com>
4453 L:      linux-scsi@vger.kernel.org
4454 W:      http://www.chelsio.com
4455 S:      Supported
4456 F:      drivers/scsi/cxgbi/cxgb3i
4457
4458 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
4459 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4460 L:      linux-rdma@vger.kernel.org
4461 W:      http://www.openfabrics.org
4462 S:      Supported
4463 F:      drivers/infiniband/hw/cxgb3/
4464 F:      include/uapi/rdma/cxgb3-abi.h
4465
4466 CXGB4 CRYPTO DRIVER (chcr)
4467 M:      Atul Gupta <atul.gupta@chelsio.com>
4468 L:      linux-crypto@vger.kernel.org
4469 W:      http://www.chelsio.com
4470 S:      Supported
4471 F:      drivers/crypto/chelsio
4472
4473 CXGB4 ETHERNET DRIVER (CXGB4)
4474 M:      Vishal Kulkarni <vishal@chelsio.com>
4475 L:      netdev@vger.kernel.org
4476 W:      http://www.chelsio.com
4477 S:      Supported
4478 F:      drivers/net/ethernet/chelsio/cxgb4/
4479
4480 CXGB4 ISCSI DRIVER (CXGB4I)
4481 M:      Karen Xie <kxie@chelsio.com>
4482 L:      linux-scsi@vger.kernel.org
4483 W:      http://www.chelsio.com
4484 S:      Supported
4485 F:      drivers/scsi/cxgbi/cxgb4i
4486
4487 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4488 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4489 L:      linux-rdma@vger.kernel.org
4490 W:      http://www.openfabrics.org
4491 S:      Supported
4492 F:      drivers/infiniband/hw/cxgb4/
4493 F:      include/uapi/rdma/cxgb4-abi.h
4494
4495 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4496 M:      Casey Leedom <leedom@chelsio.com>
4497 L:      netdev@vger.kernel.org
4498 W:      http://www.chelsio.com
4499 S:      Supported
4500 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4501
4502 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4503 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4504 M:      Andrew Donnellan <ajd@linux.ibm.com>
4505 L:      linuxppc-dev@lists.ozlabs.org
4506 S:      Supported
4507 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4508 F:      drivers/misc/cxl/
4509 F:      include/misc/cxl*
4510 F:      include/uapi/misc/cxl.h
4511 F:      Documentation/powerpc/cxl.rst
4512 F:      Documentation/ABI/testing/sysfs-class-cxl
4513
4514 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4515 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4516 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4517 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4518 L:      linux-scsi@vger.kernel.org
4519 S:      Supported
4520 F:      drivers/scsi/cxlflash/
4521 F:      include/uapi/scsi/cxlflash_ioctl.h
4522 F:      Documentation/powerpc/cxlflash.rst
4523
4524 CYBERPRO FB DRIVER
4525 M:      Russell King <linux@armlinux.org.uk>
4526 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4527 W:      http://www.armlinux.org.uk/
4528 S:      Maintained
4529 F:      drivers/video/fbdev/cyber2000fb.*
4530
4531 CYCLADES ASYNC MUX DRIVER
4532 W:      http://www.cyclades.com/
4533 S:      Orphan
4534 F:      drivers/tty/cyclades.c
4535 F:      include/linux/cyclades.h
4536 F:      include/uapi/linux/cyclades.h
4537
4538 CYCLADES PC300 DRIVER
4539 W:      http://www.cyclades.com/
4540 S:      Orphan
4541 F:      drivers/net/wan/pc300*
4542
4543 CYPRESS_FIRMWARE MEDIA DRIVER
4544 M:      Antti Palosaari <crope@iki.fi>
4545 L:      linux-media@vger.kernel.org
4546 W:      https://linuxtv.org
4547 W:      http://palosaari.fi/linux/
4548 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4549 T:      git git://linuxtv.org/anttip/media_tree.git
4550 S:      Maintained
4551 F:      drivers/media/common/cypress_firmware*
4552
4553 CYTTSP TOUCHSCREEN DRIVER
4554 M:      Ferruh Yigit <fery@cypress.com>
4555 L:      linux-input@vger.kernel.org
4556 S:      Supported
4557 F:      drivers/input/touchscreen/cyttsp*
4558 F:      include/linux/input/cyttsp.h
4559
4560 D-LINK DIR-685 TOUCHKEYS DRIVER
4561 M:      Linus Walleij <linus.walleij@linaro.org>
4562 L:      linux-input@vger.kernel.org
4563 S:      Supported
4564 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4565
4566 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4567 M:      Joshua Kinard <kumba@gentoo.org>
4568 S:      Maintained
4569 F:      drivers/rtc/rtc-ds1685.c
4570 F:      include/linux/rtc/ds1685.h
4571
4572 DAMA SLAVE for AX.25
4573 M:      Joerg Reuter <jreuter@yaina.de>
4574 W:      http://yaina.de/jreuter/
4575 W:      http://www.qsl.net/dl1bke/
4576 L:      linux-hams@vger.kernel.org
4577 S:      Maintained
4578 F:      net/ax25/af_ax25.c
4579 F:      net/ax25/ax25_dev.c
4580 F:      net/ax25/ax25_ds_*
4581 F:      net/ax25/ax25_in.c
4582 F:      net/ax25/ax25_out.c
4583 F:      net/ax25/ax25_timer.c
4584 F:      net/ax25/sysctl_net_ax25.c
4585
4586 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4587 L:      netdev@vger.kernel.org
4588 S:      Orphan
4589 F:      Documentation/networking/device_drivers/dec/dmfe.txt
4590 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4591
4592 DC390/AM53C974 SCSI driver
4593 M:      Hannes Reinecke <hare@suse.com>
4594 L:      linux-scsi@vger.kernel.org
4595 S:      Maintained
4596 F:      drivers/scsi/am53c974.c
4597
4598 DC395x SCSI driver
4599 M:      Oliver Neukum <oliver@neukum.org>
4600 M:      Ali Akcaagac <aliakc@web.de>
4601 M:      Jamie Lenehan <lenehan@twibble.org>
4602 L:      dc395x@twibble.org
4603 W:      http://twibble.org/dist/dc395x/
4604 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4605 S:      Maintained
4606 F:      Documentation/scsi/dc395x.txt
4607 F:      drivers/scsi/dc395x.*
4608
4609 DCCP PROTOCOL
4610 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
4611 L:      dccp@vger.kernel.org
4612 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4613 S:      Maintained
4614 F:      include/linux/dccp.h
4615 F:      include/uapi/linux/dccp.h
4616 F:      include/linux/tfrc.h
4617 F:      net/dccp/
4618
4619 DECnet NETWORK LAYER
4620 W:      http://linux-decnet.sourceforge.net
4621 L:      linux-decnet-user@lists.sourceforge.net
4622 S:      Orphan
4623 F:      Documentation/networking/decnet.txt
4624 F:      net/decnet/
4625
4626 DECSTATION PLATFORM SUPPORT
4627 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4628 L:      linux-mips@vger.kernel.org
4629 W:      http://www.linux-mips.org/wiki/DECstation
4630 S:      Maintained
4631 F:      arch/mips/dec/
4632 F:      arch/mips/include/asm/dec/
4633 F:      arch/mips/include/asm/mach-dec/
4634
4635 DEFXX FDDI NETWORK DRIVER
4636 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4637 S:      Maintained
4638 F:      drivers/net/fddi/defxx.*
4639
4640 DELL SMBIOS DRIVER
4641 M:      Pali Rohár <pali.rohar@gmail.com>
4642 M:      Mario Limonciello <mario.limonciello@dell.com>
4643 L:      platform-driver-x86@vger.kernel.org
4644 S:      Maintained
4645 F:      drivers/platform/x86/dell-smbios.*
4646
4647 DELL SMBIOS SMM DRIVER
4648 M:      Mario Limonciello <mario.limonciello@dell.com>
4649 L:      platform-driver-x86@vger.kernel.org
4650 S:      Maintained
4651 F:      drivers/platform/x86/dell-smbios-smm.c
4652
4653 DELL SMBIOS WMI DRIVER
4654 M:      Mario Limonciello <mario.limonciello@dell.com>
4655 L:      platform-driver-x86@vger.kernel.org
4656 S:      Maintained
4657 F:      drivers/platform/x86/dell-smbios-wmi.c
4658 F:      tools/wmi/dell-smbios-example.c
4659
4660 DEFZA FDDI NETWORK DRIVER
4661 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4662 S:      Maintained
4663 F:      drivers/net/fddi/defza.*
4664
4665 DELL LAPTOP DRIVER
4666 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4667 M:      Pali Rohár <pali.rohar@gmail.com>
4668 L:      platform-driver-x86@vger.kernel.org
4669 S:      Maintained
4670 F:      drivers/platform/x86/dell-laptop.c
4671
4672 DELL LAPTOP FREEFALL DRIVER
4673 M:      Pali Rohár <pali.rohar@gmail.com>
4674 S:      Maintained
4675 F:      drivers/platform/x86/dell-smo8800.c
4676
4677 DELL LAPTOP RBTN DRIVER
4678 M:      Pali Rohár <pali.rohar@gmail.com>
4679 S:      Maintained
4680 F:      drivers/platform/x86/dell-rbtn.*
4681
4682 DELL REMOTE BIOS UPDATE DRIVER
4683 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4684 L:      platform-driver-x86@vger.kernel.org
4685 S:      Maintained
4686 F:      drivers/platform/x86/dell_rbu.c
4687
4688 DELL LAPTOP SMM DRIVER
4689 M:      Pali Rohár <pali.rohar@gmail.com>
4690 S:      Maintained
4691 F:      drivers/hwmon/dell-smm-hwmon.c
4692 F:      include/uapi/linux/i8k.h
4693
4694 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4695 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4696 L:      platform-driver-x86@vger.kernel.org
4697 S:      Maintained
4698 F:      Documentation/driver-api/dcdbas.rst
4699 F:      drivers/platform/x86/dcdbas.*
4700
4701 DELL WMI NOTIFICATIONS DRIVER
4702 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4703 M:      Pali Rohár <pali.rohar@gmail.com>
4704 S:      Maintained
4705 F:      drivers/platform/x86/dell-wmi.c
4706
4707 DELL WMI DESCRIPTOR DRIVER
4708 M:      Mario Limonciello <mario.limonciello@dell.com>
4709 S:      Maintained
4710 F:      drivers/platform/x86/dell-wmi-descriptor.c
4711
4712 DELTA ST MEDIA DRIVER
4713 M:      Hugues Fruchet <hugues.fruchet@st.com>
4714 L:      linux-media@vger.kernel.org
4715 T:      git git://linuxtv.org/media_tree.git
4716 W:      https://linuxtv.org
4717 S:      Supported
4718 F:      drivers/media/platform/sti/delta
4719
4720 DENALI NAND DRIVER
4721 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
4722 L:      linux-mtd@lists.infradead.org
4723 S:      Supported
4724 F:      drivers/mtd/nand/raw/denali*
4725
4726 DESIGNWARE EDMA CORE IP DRIVER
4727 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
4728 L:      dmaengine@vger.kernel.org
4729 S:      Maintained
4730 F:      drivers/dma/dw-edma/
4731 F:      include/linux/dma/edma.h
4732
4733 DESIGNWARE USB2 DRD IP DRIVER
4734 M:      Minas Harutyunyan <hminas@synopsys.com>
4735 L:      linux-usb@vger.kernel.org
4736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4737 S:      Maintained
4738 F:      drivers/usb/dwc2/
4739
4740 DESIGNWARE USB3 DRD IP DRIVER
4741 M:      Felipe Balbi <balbi@kernel.org>
4742 L:      linux-usb@vger.kernel.org
4743 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4744 S:      Maintained
4745 F:      drivers/usb/dwc3/
4746
4747 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4748 M:      Andreas Klinger <ak@it-klinger.de>
4749 L:      linux-iio@vger.kernel.org
4750 S:      Maintained
4751 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4752 F:      drivers/iio/proximity/srf*.c
4753
4754 DEVICE COREDUMP (DEV_COREDUMP)
4755 M:      Johannes Berg <johannes@sipsolutions.net>
4756 L:      linux-kernel@vger.kernel.org
4757 S:      Maintained
4758 F:      drivers/base/devcoredump.c
4759 F:      include/linux/devcoredump.h
4760
4761 DEVICE FREQUENCY (DEVFREQ)
4762 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4763 M:      Kyungmin Park <kyungmin.park@samsung.com>
4764 R:      Chanwoo Choi <cw00.choi@samsung.com>
4765 L:      linux-pm@vger.kernel.org
4766 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4767 S:      Maintained
4768 F:      drivers/devfreq/
4769 F:      include/linux/devfreq.h
4770 F:      Documentation/devicetree/bindings/devfreq/
4771 F:      include/trace/events/devfreq.h
4772
4773 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4774 M:      Chanwoo Choi <cw00.choi@samsung.com>
4775 L:      linux-pm@vger.kernel.org
4776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4777 S:      Supported
4778 F:      drivers/devfreq/event/
4779 F:      drivers/devfreq/devfreq-event.c
4780 F:      include/linux/devfreq-event.h
4781 F:      Documentation/devicetree/bindings/devfreq/event/
4782
4783 DEVICE NUMBER REGISTRY
4784 M:      Torben Mathiasen <device@lanana.org>
4785 W:      http://lanana.org/docs/device-list/index.html
4786 S:      Maintained
4787
4788 DEVICE-MAPPER  (LVM)
4789 M:      Alasdair Kergon <agk@redhat.com>
4790 M:      Mike Snitzer <snitzer@redhat.com>
4791 M:      dm-devel@redhat.com
4792 L:      dm-devel@redhat.com
4793 W:      http://sources.redhat.com/dm
4794 Q:      http://patchwork.kernel.org/project/dm-devel/list/
4795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4796 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
4797 S:      Maintained
4798 F:      Documentation/admin-guide/device-mapper/
4799 F:      drivers/md/Makefile
4800 F:      drivers/md/Kconfig
4801 F:      drivers/md/dm*
4802 F:      drivers/md/persistent-data/
4803 F:      include/linux/device-mapper.h
4804 F:      include/linux/dm-*.h
4805 F:      include/uapi/linux/dm-*.h
4806
4807 DEVLINK
4808 M:      Jiri Pirko <jiri@mellanox.com>
4809 L:      netdev@vger.kernel.org
4810 S:      Supported
4811 F:      net/core/devlink.c
4812 F:      include/net/devlink.h
4813 F:      include/uapi/linux/devlink.h
4814
4815 DIALOG SEMICONDUCTOR DRIVERS
4816 M:      Support Opensource <support.opensource@diasemi.com>
4817 W:      http://www.dialog-semiconductor.com/products
4818 S:      Supported
4819 F:      Documentation/hwmon/da90??.rst
4820 F:      Documentation/devicetree/bindings/mfd/da90*.txt
4821 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
4822 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4823 F:      Documentation/devicetree/bindings/regulator/da92*.txt
4824 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
4825 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
4826 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
4827 F:      drivers/gpio/gpio-da90??.c
4828 F:      drivers/hwmon/da90??-hwmon.c
4829 F:      drivers/iio/adc/da91??-*.c
4830 F:      drivers/input/misc/da90??_onkey.c
4831 F:      drivers/input/touchscreen/da9052_tsi.c
4832 F:      drivers/leds/leds-da90??.c
4833 F:      drivers/mfd/da903x.c
4834 F:      drivers/mfd/da90??-*.c
4835 F:      drivers/mfd/da91??-*.c
4836 F:      drivers/power/supply/da9052-battery.c
4837 F:      drivers/power/supply/da91??-*.c
4838 F:      drivers/regulator/da903x.c
4839 F:      drivers/regulator/da9???-regulator.[ch]
4840 F:      drivers/regulator/slg51000-regulator.[ch]
4841 F:      drivers/thermal/da90??-thermal.c
4842 F:      drivers/rtc/rtc-da90??.c
4843 F:      drivers/video/backlight/da90??_bl.c
4844 F:      drivers/watchdog/da90??_wdt.c
4845 F:      include/linux/mfd/da903x.h
4846 F:      include/linux/mfd/da9052/
4847 F:      include/linux/mfd/da9055/
4848 F:      include/linux/mfd/da9062/
4849 F:      include/linux/mfd/da9063/
4850 F:      include/linux/mfd/da9150/
4851 F:      include/linux/regulator/da9211.h
4852 F:      include/sound/da[79]*.h
4853 F:      sound/soc/codecs/da[79]*.[ch]
4854
4855 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
4856 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4857 L:      linux-gpio@vger.kernel.org
4858 S:      Maintained
4859 F:      drivers/gpio/gpio-gpio-mm.c
4860
4861 DIOLAN U2C-12 I2C DRIVER
4862 M:      Guenter Roeck <linux@roeck-us.net>
4863 L:      linux-i2c@vger.kernel.org
4864 S:      Maintained
4865 F:      drivers/i2c/busses/i2c-diolan-u2c.c
4866
4867 FILESYSTEM DIRECT ACCESS (DAX)
4868 M:      Dan Williams <dan.j.williams@intel.com>
4869 R:      Matthew Wilcox <willy@infradead.org>
4870 R:      Jan Kara <jack@suse.cz>
4871 L:      linux-fsdevel@vger.kernel.org
4872 L:      linux-nvdimm@lists.01.org
4873 S:      Supported
4874 F:      fs/dax.c
4875 F:      include/linux/dax.h
4876 F:      include/trace/events/fs_dax.h
4877
4878 DEVICE DIRECT ACCESS (DAX)
4879 M:      Dan Williams <dan.j.williams@intel.com>
4880 M:      Vishal Verma <vishal.l.verma@intel.com>
4881 M:      Keith Busch <keith.busch@intel.com>
4882 M:      Dave Jiang <dave.jiang@intel.com>
4883 L:      linux-nvdimm@lists.01.org
4884 S:      Supported
4885 F:      drivers/dax/
4886
4887 DIRECTORY NOTIFICATION (DNOTIFY)
4888 M:      Jan Kara <jack@suse.cz>
4889 R:      Amir Goldstein <amir73il@gmail.com>
4890 L:      linux-fsdevel@vger.kernel.org
4891 S:      Maintained
4892 F:      Documentation/filesystems/dnotify.txt
4893 F:      fs/notify/dnotify/
4894 F:      include/linux/dnotify.h
4895
4896 DISK GEOMETRY AND PARTITION HANDLING
4897 M:      Andries Brouwer <aeb@cwi.nl>
4898 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
4899 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
4900 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
4901 S:      Maintained
4902
4903 DISKQUOTA
4904 M:      Jan Kara <jack@suse.com>
4905 S:      Maintained
4906 F:      Documentation/filesystems/quota.txt
4907 F:      fs/quota/
4908 F:      include/linux/quota*.h
4909 F:      include/uapi/linux/quota*.h
4910
4911 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
4912 M:      Bernie Thompson <bernie@plugable.com>
4913 L:      linux-fbdev@vger.kernel.org
4914 S:      Maintained
4915 W:      http://plugable.com/category/projects/udlfb/
4916 F:      drivers/video/fbdev/udlfb.c
4917 F:      include/video/udlfb.h
4918 F:      Documentation/fb/udlfb.rst
4919
4920 DISTRIBUTED LOCK MANAGER (DLM)
4921 M:      Christine Caulfield <ccaulfie@redhat.com>
4922 M:      David Teigland <teigland@redhat.com>
4923 L:      cluster-devel@redhat.com
4924 W:      http://sources.redhat.com/cluster/
4925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
4926 S:      Supported
4927 F:      fs/dlm/
4928
4929 DMA BUFFER SHARING FRAMEWORK
4930 M:      Sumit Semwal <sumit.semwal@linaro.org>
4931 S:      Maintained
4932 L:      linux-media@vger.kernel.org
4933 L:      dri-devel@lists.freedesktop.org
4934 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
4935 F:      drivers/dma-buf/
4936 F:      include/linux/dma-buf*
4937 F:      include/linux/reservation.h
4938 F:      include/linux/*fence.h
4939 F:      Documentation/driver-api/dma-buf.rst
4940 T:      git git://anongit.freedesktop.org/drm/drm-misc
4941
4942 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
4943 M:      Vinod Koul <vkoul@kernel.org>
4944 L:      dmaengine@vger.kernel.org
4945 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
4946 S:      Maintained
4947 F:      drivers/dma/
4948 F:      include/linux/dmaengine.h
4949 F:      include/linux/of_dma.h
4950 F:      Documentation/devicetree/bindings/dma/
4951 F:      Documentation/driver-api/dmaengine/
4952 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
4953
4954 DMA MAPPING HELPERS
4955 M:      Christoph Hellwig <hch@lst.de>
4956 M:      Marek Szyprowski <m.szyprowski@samsung.com>
4957 R:      Robin Murphy <robin.murphy@arm.com>
4958 L:      iommu@lists.linux-foundation.org
4959 T:      git git://git.infradead.org/users/hch/dma-mapping.git
4960 W:      http://git.infradead.org/users/hch/dma-mapping.git
4961 S:      Supported
4962 F:      kernel/dma/
4963 F:      include/asm-generic/dma-mapping.h
4964 F:      include/linux/dma-direct.h
4965 F:      include/linux/dma-mapping.h
4966 F:      include/linux/dma-noncoherent.h
4967
4968 DME1737 HARDWARE MONITOR DRIVER
4969 M:      Juerg Haefliger <juergh@gmail.com>
4970 L:      linux-hwmon@vger.kernel.org
4971 S:      Maintained
4972 F:      Documentation/hwmon/dme1737.rst
4973 F:      drivers/hwmon/dme1737.c
4974
4975 DMI/SMBIOS SUPPORT
4976 M:      Jean Delvare <jdelvare@suse.com>
4977 S:      Maintained
4978 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
4979 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
4980 F:      drivers/firmware/dmi-id.c
4981 F:      drivers/firmware/dmi_scan.c
4982 F:      include/linux/dmi.h
4983
4984 DOCUMENTATION
4985 M:      Jonathan Corbet <corbet@lwn.net>
4986 L:      linux-doc@vger.kernel.org
4987 S:      Maintained
4988 F:      Documentation/
4989 F:      scripts/documentation-file-ref-check
4990 F:      scripts/kernel-doc
4991 F:      scripts/sphinx-pre-install
4992 X:      Documentation/ABI/
4993 X:      Documentation/firmware-guide/acpi/
4994 X:      Documentation/devicetree/
4995 X:      Documentation/i2c/
4996 X:      Documentation/media/
4997 X:      Documentation/power/
4998 X:      Documentation/spi/
4999 T:      git git://git.lwn.net/linux.git docs-next
5000
5001 DOCUMENTATION/ITALIAN
5002 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5003 L:      linux-doc@vger.kernel.org
5004 S:      Maintained
5005 F:      Documentation/translations/it_IT
5006
5007 DOCUMENTATION SCRIPTS
5008 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5009 L:      linux-doc@vger.kernel.org
5010 S:      Maintained
5011 F:      scripts/documentation-file-ref-check
5012 F:      scripts/sphinx-pre-install
5013 F:      Documentation/sphinx/parse-headers.pl
5014
5015 DONGWOON DW9714 LENS VOICE COIL DRIVER
5016 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5017 L:      linux-media@vger.kernel.org
5018 T:      git git://linuxtv.org/media_tree.git
5019 S:      Maintained
5020 F:      drivers/media/i2c/dw9714.c
5021 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5022
5023 DONGWOON DW9807 LENS VOICE COIL DRIVER
5024 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5025 L:      linux-media@vger.kernel.org
5026 T:      git git://linuxtv.org/media_tree.git
5027 S:      Maintained
5028 F:      drivers/media/i2c/dw9807-vcm.c
5029 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5030
5031 DOUBLETALK DRIVER
5032 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5033 L:      blinux-list@redhat.com
5034 S:      Maintained
5035 F:      drivers/char/dtlk.c
5036 F:      include/linux/dtlk.h
5037
5038 DPAA2 DATAPATH I/O (DPIO) DRIVER
5039 M:      Roy Pledge <Roy.Pledge@nxp.com>
5040 L:      linux-kernel@vger.kernel.org
5041 S:      Maintained
5042 F:      drivers/soc/fsl/dpio
5043
5044 DPAA2 ETHERNET DRIVER
5045 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5046 L:      netdev@vger.kernel.org
5047 S:      Maintained
5048 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5049 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5050 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5051 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5052 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5053
5054 DPAA2 ETHERNET SWITCH DRIVER
5055 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5056 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5057 L:      linux-kernel@vger.kernel.org
5058 S:      Maintained
5059 F:      drivers/staging/fsl-dpaa2/ethsw
5060
5061 DPT_I2O SCSI RAID DRIVER
5062 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5063 L:      linux-scsi@vger.kernel.org
5064 W:      http://www.adaptec.com/
5065 S:      Maintained
5066 F:      drivers/scsi/dpt*
5067 F:      drivers/scsi/dpt/
5068
5069 DRBD DRIVER
5070 M:      Philipp Reisner <philipp.reisner@linbit.com>
5071 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5072 L:      drbd-dev@lists.linbit.com
5073 W:      http://www.drbd.org
5074 T:      git git://git.linbit.com/linux-drbd.git
5075 T:      git git://git.linbit.com/drbd-8.4.git
5076 S:      Supported
5077 F:      drivers/block/drbd/
5078 F:      lib/lru_cache.c
5079 F:      Documentation/admin-guide/blockdev/
5080
5081 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5082 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5083 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5085 S:      Supported
5086 F:      Documentation/kobject.txt
5087 F:      drivers/base/
5088 F:      fs/debugfs/
5089 F:      fs/sysfs/
5090 F:      include/linux/debugfs.h
5091 F:      include/linux/kobj*
5092 F:      lib/kobj*
5093
5094 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
5095 M:      Kevin Hilman <khilman@kernel.org>
5096 M:      Nishanth Menon <nm@ti.com>
5097 S:      Maintained
5098 F:      drivers/power/avs/
5099 F:      include/linux/power/smartreflex.h
5100 L:      linux-pm@vger.kernel.org
5101
5102 DRM DRIVER FOR ARM PL111 CLCD
5103 M:      Eric Anholt <eric@anholt.net>
5104 T:      git git://anongit.freedesktop.org/drm/drm-misc
5105 S:      Supported
5106 F:      drivers/gpu/drm/pl111/
5107
5108 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5109 M:      Linus Walleij <linus.walleij@linaro.org>
5110 T:      git git://anongit.freedesktop.org/drm/drm-misc
5111 S:      Maintained
5112 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5113 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.txt
5114
5115 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5116 M:      Dave Airlie <airlied@redhat.com>
5117 S:      Odd Fixes
5118 F:      drivers/gpu/drm/ast/
5119
5120 DRM DRIVER FOR ASPEED BMC GFX
5121 M:      Joel Stanley <joel@jms.id.au>
5122 L:      linux-aspeed@lists.ozlabs.org
5123 T:      git git://anongit.freedesktop.org/drm/drm-misc
5124 S:      Supported
5125 F:      drivers/gpu/drm/aspeed/
5126 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5127
5128 DRM DRIVER FOR BOCHS VIRTUAL GPU
5129 M:      Gerd Hoffmann <kraxel@redhat.com>
5130 L:      virtualization@lists.linux-foundation.org
5131 T:      git git://anongit.freedesktop.org/drm/drm-misc
5132 S:      Maintained
5133 F:      drivers/gpu/drm/bochs/
5134
5135 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5136 M:      Linus Walleij <linus.walleij@linaro.org>
5137 T:      git git://anongit.freedesktop.org/drm/drm-misc
5138 S:      Maintained
5139 F:      drivers/gpu/drm/tve200/
5140
5141 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5142 M:      Jagan Teki <jagan@amarulasolutions.com>
5143 S:      Maintained
5144 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5145 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.txt
5146
5147 DRM DRIVER FOR ILITEK ILI9225 PANELS
5148 M:      David Lechner <david@lechnology.com>
5149 S:      Maintained
5150 F:      drivers/gpu/drm/tinydrm/ili9225.c
5151 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5152
5153 DRM DRIVER FOR HX8357D PANELS
5154 M:      Eric Anholt <eric@anholt.net>
5155 T:      git git://anongit.freedesktop.org/drm/drm-misc
5156 S:      Maintained
5157 F:      drivers/gpu/drm/tinydrm/hx8357d.c
5158 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5159
5160 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5161 S:      Orphan / Obsolete
5162 F:      drivers/gpu/drm/i810/
5163 F:      include/uapi/drm/i810_drm.h
5164
5165 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5166 S:      Orphan / Obsolete
5167 F:      drivers/gpu/drm/mga/
5168 F:      include/uapi/drm/mga_drm.h
5169
5170 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
5171 M:      Dave Airlie <airlied@redhat.com>
5172 S:      Odd Fixes
5173 F:      drivers/gpu/drm/mgag200/
5174
5175 DRM DRIVER FOR MI0283QT
5176 M:      Noralf Trønnes <noralf@tronnes.org>
5177 S:      Maintained
5178 F:      drivers/gpu/drm/tinydrm/mi0283qt.c
5179 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5180
5181 DRM DRIVER FOR MSM ADRENO GPU
5182 M:      Rob Clark <robdclark@gmail.com>
5183 M:      Sean Paul <sean@poorly.run>
5184 L:      linux-arm-msm@vger.kernel.org
5185 L:      dri-devel@lists.freedesktop.org
5186 L:      freedreno@lists.freedesktop.org
5187 T:      git https://gitlab.freedesktop.org/drm/msm.git
5188 S:      Maintained
5189 F:      drivers/gpu/drm/msm/
5190 F:      include/uapi/drm/msm_drm.h
5191 F:      Documentation/devicetree/bindings/display/msm/
5192
5193 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5194 M:      Ben Skeggs <bskeggs@redhat.com>
5195 L:      dri-devel@lists.freedesktop.org
5196 L:      nouveau@lists.freedesktop.org
5197 T:      git git://github.com/skeggsb/linux
5198 S:      Supported
5199 F:      drivers/gpu/drm/nouveau/
5200 F:      include/uapi/drm/nouveau_drm.h
5201
5202 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5203 M:      Stefan Mavrodiev <stefan@olimex.com>
5204 S:      Maintained
5205 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5206 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.txt
5207
5208 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5209 M:      Noralf Trønnes <noralf@tronnes.org>
5210 S:      Maintained
5211 F:      drivers/gpu/drm/tinydrm/repaper.c
5212 F:      Documentation/devicetree/bindings/display/repaper.txt
5213
5214 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5215 M:      Dave Airlie <airlied@redhat.com>
5216 M:      Gerd Hoffmann <kraxel@redhat.com>
5217 L:      virtualization@lists.linux-foundation.org
5218 T:      git git://anongit.freedesktop.org/drm/drm-misc
5219 S:      Obsolete
5220 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5221 F:      drivers/gpu/drm/cirrus/
5222
5223 DRM DRIVER FOR QXL VIRTUAL GPU
5224 M:      Dave Airlie <airlied@redhat.com>
5225 M:      Gerd Hoffmann <kraxel@redhat.com>
5226 L:      virtualization@lists.linux-foundation.org
5227 L:      spice-devel@lists.freedesktop.org
5228 T:      git git://anongit.freedesktop.org/drm/drm-misc
5229 S:      Maintained
5230 F:      drivers/gpu/drm/qxl/
5231 F:      include/uapi/drm/qxl_drm.h
5232
5233 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5234 S:      Orphan / Obsolete
5235 F:      drivers/gpu/drm/r128/
5236 F:      include/uapi/drm/r128_drm.h
5237
5238 DRM DRIVER FOR ROCKTECH JH057N00900 PANELS
5239 M:      Guido Günther <agx@sigxcpu.org>
5240 S:      Maintained
5241 F:      drivers/gpu/drm/panel/panel-rocktech-jh057n00900.c
5242 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.txt
5243
5244 DRM DRIVER FOR SAVAGE VIDEO CARDS
5245 S:      Orphan / Obsolete
5246 F:      drivers/gpu/drm/savage/
5247 F:      include/uapi/drm/savage_drm.h
5248
5249 DRM DRIVER FOR SIS VIDEO CARDS
5250 S:      Orphan / Obsolete
5251 F:      drivers/gpu/drm/sis/
5252 F:      include/uapi/drm/sis_drm.h
5253
5254 DRM DRIVER FOR SITRONIX ST7701 PANELS
5255 M:      Jagan Teki <jagan@amarulasolutions.com>
5256 S:      Maintained
5257 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5258 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.txt
5259
5260 DRM DRIVER FOR SITRONIX ST7586 PANELS
5261 M:      David Lechner <david@lechnology.com>
5262 S:      Maintained
5263 F:      drivers/gpu/drm/tinydrm/st7586.c
5264 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5265
5266 DRM DRIVER FOR SITRONIX ST7735R PANELS
5267 M:      David Lechner <david@lechnology.com>
5268 S:      Maintained
5269 F:      drivers/gpu/drm/tinydrm/st7735r.c
5270 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.txt
5271
5272 DRM DRIVER FOR ST-ERICSSON MCDE
5273 M:      Linus Walleij <linus.walleij@linaro.org>
5274 T:      git git://anongit.freedesktop.org/drm/drm-misc
5275 S:      Maintained
5276 F:      drivers/gpu/drm/mcde/
5277 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5278
5279 DRM DRIVER FOR TDFX VIDEO CARDS
5280 S:      Orphan / Obsolete
5281 F:      drivers/gpu/drm/tdfx/
5282
5283 DRM DRIVER FOR TPO TPG110 PANELS
5284 M:      Linus Walleij <linus.walleij@linaro.org>
5285 T:      git git://anongit.freedesktop.org/drm/drm-misc
5286 S:      Maintained
5287 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5288 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.txt
5289
5290 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5291 M:      Dave Airlie <airlied@redhat.com>
5292 R:      Sean Paul <sean@poorly.run>
5293 L:      dri-devel@lists.freedesktop.org
5294 S:      Odd Fixes
5295 F:      drivers/gpu/drm/udl/
5296 T:      git git://anongit.freedesktop.org/drm/drm-misc
5297
5298 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5299 M:      Hans de Goede <hdegoede@redhat.com>
5300 L:      dri-devel@lists.freedesktop.org
5301 S:      Maintained
5302 F:      drivers/gpu/drm/vboxvideo/
5303 T:      git git://anongit.freedesktop.org/drm/drm-misc
5304
5305 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5306 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5307 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
5308 R:      Daniel Vetter <daniel@ffwll.ch>
5309 T:      git git://anongit.freedesktop.org/drm/drm-misc
5310 S:      Maintained
5311 L:      dri-devel@lists.freedesktop.org
5312 F:      drivers/gpu/drm/vkms/
5313 F:      Documentation/gpu/vkms.rst
5314
5315 DRM DRIVER FOR VMWARE VIRTUAL GPU
5316 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5317 M:      Thomas Hellstrom <thellstrom@vmware.com>
5318 L:      dri-devel@lists.freedesktop.org
5319 T:      git git://people.freedesktop.org/~thomash/linux
5320 S:      Supported
5321 F:      drivers/gpu/drm/vmwgfx/
5322 F:      include/uapi/drm/vmwgfx_drm.h
5323
5324 DRM DRIVERS
5325 M:      David Airlie <airlied@linux.ie>
5326 M:      Daniel Vetter <daniel@ffwll.ch>
5327 L:      dri-devel@lists.freedesktop.org
5328 T:      git git://anongit.freedesktop.org/drm/drm
5329 B:      https://bugs.freedesktop.org/
5330 C:      irc://chat.freenode.net/dri-devel
5331 S:      Maintained
5332 F:      drivers/gpu/drm/
5333 F:      drivers/gpu/vga/
5334 F:      Documentation/devicetree/bindings/display/
5335 F:      Documentation/devicetree/bindings/gpu/
5336 F:      Documentation/gpu/
5337 F:      include/drm/
5338 F:      include/uapi/drm/
5339 F:      include/linux/vga*
5340
5341 DRM DRIVERS AND MISC GPU PATCHES
5342 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5343 M:      Maxime Ripard <mripard@kernel.org>
5344 M:      Sean Paul <sean@poorly.run>
5345 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5346 S:      Maintained
5347 T:      git git://anongit.freedesktop.org/drm/drm-misc
5348 F:      Documentation/gpu/
5349 F:      drivers/gpu/vga/
5350 F:      drivers/gpu/drm/*
5351 F:      include/drm/drm*
5352 F:      include/uapi/drm/drm*
5353 F:      include/linux/vga*
5354
5355 DRM DRIVERS FOR ALLWINNER A10
5356 M:      Maxime Ripard <mripard@kernel.org>
5357 L:      dri-devel@lists.freedesktop.org
5358 S:      Supported
5359 F:      drivers/gpu/drm/sun4i/
5360 F:      Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
5361 T:      git git://anongit.freedesktop.org/drm/drm-misc
5362
5363 DRM DRIVERS FOR AMLOGIC SOCS
5364 M:      Neil Armstrong <narmstrong@baylibre.com>
5365 L:      dri-devel@lists.freedesktop.org
5366 L:      linux-amlogic@lists.infradead.org
5367 W:      http://linux-meson.com/
5368 S:      Supported
5369 F:      drivers/gpu/drm/meson/
5370 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.txt
5371 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.txt
5372 F:      Documentation/gpu/meson.rst
5373 T:      git git://anongit.freedesktop.org/drm/drm-misc
5374
5375 DRM DRIVERS FOR ATMEL HLCDC
5376 M:      Boris Brezillon <bbrezillon@kernel.org>
5377 L:      dri-devel@lists.freedesktop.org
5378 S:      Supported
5379 F:      drivers/gpu/drm/atmel-hlcdc/
5380 F:      Documentation/devicetree/bindings/display/atmel/
5381 T:      git git://anongit.freedesktop.org/drm/drm-misc
5382
5383 DRM DRIVERS FOR BRIDGE CHIPS
5384 M:      Andrzej Hajda <a.hajda@samsung.com>
5385 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5386 S:      Maintained
5387 T:      git git://anongit.freedesktop.org/drm/drm-misc
5388 F:      drivers/gpu/drm/bridge/
5389
5390 DRM DRIVERS FOR EXYNOS
5391 M:      Inki Dae <inki.dae@samsung.com>
5392 M:      Joonyoung Shim <jy0922.shim@samsung.com>
5393 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
5394 M:      Kyungmin Park <kyungmin.park@samsung.com>
5395 L:      dri-devel@lists.freedesktop.org
5396 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5397 S:      Supported
5398 F:      drivers/gpu/drm/exynos/
5399 F:      include/uapi/drm/exynos_drm.h
5400 F:      Documentation/devicetree/bindings/display/exynos/
5401
5402 DRM DRIVERS FOR FREESCALE DCU
5403 M:      Stefan Agner <stefan@agner.ch>
5404 M:      Alison Wang <alison.wang@nxp.com>
5405 L:      dri-devel@lists.freedesktop.org
5406 S:      Supported
5407 F:      drivers/gpu/drm/fsl-dcu/
5408 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5409 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5410 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19-05b.txt
5411 T:      git git://anongit.freedesktop.org/drm/drm-misc
5412
5413 DRM DRIVERS FOR FREESCALE IMX
5414 M:      Philipp Zabel <p.zabel@pengutronix.de>
5415 L:      dri-devel@lists.freedesktop.org
5416 S:      Maintained
5417 F:      drivers/gpu/drm/imx/
5418 F:      drivers/gpu/ipu-v3/
5419 F:      Documentation/devicetree/bindings/display/imx/
5420
5421 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5422 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5423 L:      dri-devel@lists.freedesktop.org
5424 T:      git git://github.com/patjak/drm-gma500
5425 S:      Maintained
5426 F:      drivers/gpu/drm/gma500/
5427
5428 DRM DRIVERS FOR HISILICON
5429 M:      Xinliang Liu <z.liuxinliang@hisilicon.com>
5430 M:      Rongrong Zou <zourongrong@gmail.com>
5431 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
5432 R:      Chen Feng <puck.chen@hisilicon.com>
5433 L:      dri-devel@lists.freedesktop.org
5434 T:      git git://github.com/xin3liang/linux.git
5435 S:      Maintained
5436 F:      drivers/gpu/drm/hisilicon/
5437 F:      Documentation/devicetree/bindings/display/hisilicon/
5438
5439 DRM DRIVERS FOR LIMA
5440 M:      Qiang Yu <yuq825@gmail.com>
5441 L:      dri-devel@lists.freedesktop.org
5442 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
5443 S:      Maintained
5444 F:      drivers/gpu/drm/lima/
5445 F:      include/uapi/drm/lima_drm.h
5446 T:      git git://anongit.freedesktop.org/drm/drm-misc
5447
5448 DRM DRIVERS FOR MEDIATEK
5449 M:      CK Hu <ck.hu@mediatek.com>
5450 M:      Philipp Zabel <p.zabel@pengutronix.de>
5451 L:      dri-devel@lists.freedesktop.org
5452 S:      Supported
5453 F:      drivers/gpu/drm/mediatek/
5454 F:      Documentation/devicetree/bindings/display/mediatek/
5455
5456 DRM DRIVERS FOR NVIDIA TEGRA
5457 M:      Thierry Reding <thierry.reding@gmail.com>
5458 L:      dri-devel@lists.freedesktop.org
5459 L:      linux-tegra@vger.kernel.org
5460 T:      git git://anongit.freedesktop.org/tegra/linux.git
5461 S:      Supported
5462 F:      drivers/gpu/drm/tegra/
5463 F:      drivers/gpu/host1x/
5464 F:      include/linux/host1x.h
5465 F:      include/uapi/drm/tegra_drm.h
5466 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5467
5468 DRM DRIVERS FOR RENESAS
5469 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5470 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5471 L:      dri-devel@lists.freedesktop.org
5472 L:      linux-renesas-soc@vger.kernel.org
5473 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5474 S:      Supported
5475 F:      drivers/gpu/drm/rcar-du/
5476 F:      drivers/gpu/drm/shmobile/
5477 F:      include/linux/platform_data/shmob_drm.h
5478 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5479 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
5480 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5481
5482 DRM DRIVERS FOR ROCKCHIP
5483 M:      Sandy Huang <hjc@rock-chips.com>
5484 M:      Heiko Stübner <heiko@sntech.de>
5485 L:      dri-devel@lists.freedesktop.org
5486 S:      Maintained
5487 F:      drivers/gpu/drm/rockchip/
5488 F:      Documentation/devicetree/bindings/display/rockchip/
5489 T:      git git://anongit.freedesktop.org/drm/drm-misc
5490
5491 DRM DRIVERS FOR STI
5492 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5493 M:      Vincent Abriou <vincent.abriou@st.com>
5494 L:      dri-devel@lists.freedesktop.org
5495 T:      git git://anongit.freedesktop.org/drm/drm-misc
5496 S:      Maintained
5497 F:      drivers/gpu/drm/sti
5498 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5499
5500 DRM DRIVERS FOR STM
5501 M:      Yannick Fertre <yannick.fertre@st.com>
5502 M:      Philippe Cornu <philippe.cornu@st.com>
5503 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5504 M:      Vincent Abriou <vincent.abriou@st.com>
5505 L:      dri-devel@lists.freedesktop.org
5506 T:      git git://anongit.freedesktop.org/drm/drm-misc
5507 S:      Maintained
5508 F:      drivers/gpu/drm/stm
5509 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.txt
5510
5511 DRM DRIVERS FOR TI LCDC
5512 M:      Jyri Sarha <jsarha@ti.com>
5513 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5514 L:      dri-devel@lists.freedesktop.org
5515 S:      Maintained
5516 F:      drivers/gpu/drm/tilcdc/
5517 F:      Documentation/devicetree/bindings/display/tilcdc/
5518
5519 DRM DRIVERS FOR TI OMAP
5520 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5521 L:      dri-devel@lists.freedesktop.org
5522 S:      Maintained
5523 F:      drivers/gpu/drm/omapdrm/
5524 F:      Documentation/devicetree/bindings/display/ti/
5525
5526 DRM DRIVERS FOR V3D
5527 M:      Eric Anholt <eric@anholt.net>
5528 S:      Supported
5529 F:      drivers/gpu/drm/v3d/
5530 F:      include/uapi/drm/v3d_drm.h
5531 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5532 T:      git git://anongit.freedesktop.org/drm/drm-misc
5533
5534 DRM DRIVERS FOR VC4
5535 M:      Eric Anholt <eric@anholt.net>
5536 T:      git git://github.com/anholt/linux
5537 S:      Supported
5538 F:      drivers/gpu/drm/vc4/
5539 F:      include/uapi/drm/vc4_drm.h
5540 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
5541 T:      git git://anongit.freedesktop.org/drm/drm-misc
5542
5543 DRM DRIVERS FOR VIVANTE GPU IP
5544 M:      Lucas Stach <l.stach@pengutronix.de>
5545 R:      Russell King <linux+etnaviv@armlinux.org.uk>
5546 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
5547 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
5548 L:      dri-devel@lists.freedesktop.org
5549 S:      Maintained
5550 F:      drivers/gpu/drm/etnaviv/
5551 F:      include/uapi/drm/etnaviv_drm.h
5552 F:      Documentation/devicetree/bindings/display/etnaviv/
5553
5554 DRM DRIVERS FOR ZTE ZX
5555 M:      Shawn Guo <shawnguo@kernel.org>
5556 L:      dri-devel@lists.freedesktop.org
5557 S:      Maintained
5558 F:      drivers/gpu/drm/zte/
5559 F:      Documentation/devicetree/bindings/display/zte,vou.txt
5560 T:      git git://anongit.freedesktop.org/drm/drm-misc
5561
5562 DRM PANEL DRIVERS
5563 M:      Thierry Reding <thierry.reding@gmail.com>
5564 R:      Sam Ravnborg <sam@ravnborg.org>
5565 L:      dri-devel@lists.freedesktop.org
5566 T:      git git://anongit.freedesktop.org/drm/drm-misc
5567 S:      Maintained
5568 F:      drivers/gpu/drm/drm_panel.c
5569 F:      drivers/gpu/drm/panel/
5570 F:      include/drm/drm_panel.h
5571 F:      Documentation/devicetree/bindings/display/panel/
5572
5573 DRM TINYDRM DRIVERS
5574 M:      Noralf Trønnes <noralf@tronnes.org>
5575 W:      https://github.com/notro/tinydrm/wiki/Development
5576 T:      git git://anongit.freedesktop.org/drm/drm-misc
5577 S:      Maintained
5578 F:      drivers/gpu/drm/tinydrm/
5579 F:      include/drm/tinydrm/
5580
5581 DRM DRIVERS FOR XEN
5582 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
5583 T:      git git://anongit.freedesktop.org/drm/drm-misc
5584 L:      dri-devel@lists.freedesktop.org
5585 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
5586 S:      Supported
5587 F:      drivers/gpu/drm/xen/
5588 F:      Documentation/gpu/xen-front.rst
5589
5590 DRM TTM SUBSYSTEM
5591 M:      Christian Koenig <christian.koenig@amd.com>
5592 M:      Huang Rui <ray.huang@amd.com>
5593 T:      git git://people.freedesktop.org/~agd5f/linux
5594 S:      Maintained
5595 L:      dri-devel@lists.freedesktop.org
5596 F:      include/drm/ttm/
5597 F:      drivers/gpu/drm/ttm/
5598
5599 DSBR100 USB FM RADIO DRIVER
5600 M:      Alexey Klimov <klimov.linux@gmail.com>
5601 L:      linux-media@vger.kernel.org
5602 T:      git git://linuxtv.org/media_tree.git
5603 S:      Maintained
5604 F:      drivers/media/radio/dsbr100.c
5605
5606 DT3155 MEDIA DRIVER
5607 M:      Hans Verkuil <hverkuil@xs4all.nl>
5608 L:      linux-media@vger.kernel.org
5609 T:      git git://linuxtv.org/media_tree.git
5610 W:      https://linuxtv.org
5611 S:      Odd Fixes
5612 F:      drivers/media/pci/dt3155/
5613
5614 DVB_USB_AF9015 MEDIA DRIVER
5615 M:      Antti Palosaari <crope@iki.fi>
5616 L:      linux-media@vger.kernel.org
5617 W:      https://linuxtv.org
5618 W:      http://palosaari.fi/linux/
5619 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5620 T:      git git://linuxtv.org/anttip/media_tree.git
5621 S:      Maintained
5622 F:      drivers/media/usb/dvb-usb-v2/af9015*
5623
5624 DVB_USB_AF9035 MEDIA DRIVER
5625 M:      Antti Palosaari <crope@iki.fi>
5626 L:      linux-media@vger.kernel.org
5627 W:      https://linuxtv.org
5628 W:      http://palosaari.fi/linux/
5629 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5630 T:      git git://linuxtv.org/anttip/media_tree.git
5631 S:      Maintained
5632 F:      drivers/media/usb/dvb-usb-v2/af9035*
5633
5634 DVB_USB_ANYSEE MEDIA DRIVER
5635 M:      Antti Palosaari <crope@iki.fi>
5636 L:      linux-media@vger.kernel.org
5637 W:      https://linuxtv.org
5638 W:      http://palosaari.fi/linux/
5639 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5640 T:      git git://linuxtv.org/anttip/media_tree.git
5641 S:      Maintained
5642 F:      drivers/media/usb/dvb-usb-v2/anysee*
5643
5644 DVB_USB_AU6610 MEDIA DRIVER
5645 M:      Antti Palosaari <crope@iki.fi>
5646 L:      linux-media@vger.kernel.org
5647 W:      https://linuxtv.org
5648 W:      http://palosaari.fi/linux/
5649 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5650 T:      git git://linuxtv.org/anttip/media_tree.git
5651 S:      Maintained
5652 F:      drivers/media/usb/dvb-usb-v2/au6610*
5653
5654 DVB_USB_CE6230 MEDIA DRIVER
5655 M:      Antti Palosaari <crope@iki.fi>
5656 L:      linux-media@vger.kernel.org
5657 W:      https://linuxtv.org
5658 W:      http://palosaari.fi/linux/
5659 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5660 T:      git git://linuxtv.org/anttip/media_tree.git
5661 S:      Maintained
5662 F:      drivers/media/usb/dvb-usb-v2/ce6230*
5663
5664 DVB_USB_CXUSB MEDIA DRIVER
5665 M:      Michael Krufky <mkrufky@linuxtv.org>
5666 L:      linux-media@vger.kernel.org
5667 W:      https://linuxtv.org
5668 W:      http://github.com/mkrufky
5669 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5670 T:      git git://linuxtv.org/media_tree.git
5671 S:      Maintained
5672 F:      drivers/media/usb/dvb-usb/cxusb*
5673
5674 DVB_USB_EC168 MEDIA DRIVER
5675 M:      Antti Palosaari <crope@iki.fi>
5676 L:      linux-media@vger.kernel.org
5677 W:      https://linuxtv.org
5678 W:      http://palosaari.fi/linux/
5679 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5680 T:      git git://linuxtv.org/anttip/media_tree.git
5681 S:      Maintained
5682 F:      drivers/media/usb/dvb-usb-v2/ec168*
5683
5684 DVB_USB_GL861 MEDIA DRIVER
5685 M:      Antti Palosaari <crope@iki.fi>
5686 L:      linux-media@vger.kernel.org
5687 W:      https://linuxtv.org
5688 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5689 T:      git git://linuxtv.org/anttip/media_tree.git
5690 S:      Maintained
5691 F:      drivers/media/usb/dvb-usb-v2/gl861*
5692
5693 DVB_USB_MXL111SF MEDIA DRIVER
5694 M:      Michael Krufky <mkrufky@linuxtv.org>
5695 L:      linux-media@vger.kernel.org
5696 W:      https://linuxtv.org
5697 W:      http://github.com/mkrufky
5698 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5699 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
5700 S:      Maintained
5701 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
5702
5703 DVB_USB_RTL28XXU MEDIA DRIVER
5704 M:      Antti Palosaari <crope@iki.fi>
5705 L:      linux-media@vger.kernel.org
5706 W:      https://linuxtv.org
5707 W:      http://palosaari.fi/linux/
5708 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5709 T:      git git://linuxtv.org/anttip/media_tree.git
5710 S:      Maintained
5711 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
5712
5713 DVB_USB_V2 MEDIA DRIVER
5714 M:      Antti Palosaari <crope@iki.fi>
5715 L:      linux-media@vger.kernel.org
5716 W:      https://linuxtv.org
5717 W:      http://palosaari.fi/linux/
5718 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5719 T:      git git://linuxtv.org/anttip/media_tree.git
5720 S:      Maintained
5721 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
5722 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
5723
5724 DYNAMIC DEBUG
5725 M:      Jason Baron <jbaron@akamai.com>
5726 S:      Maintained
5727 F:      lib/dynamic_debug.c
5728 F:      include/linux/dynamic_debug.h
5729
5730 DYNAMIC INTERRUPT MODERATION
5731 M:      Tal Gilboa <talgi@mellanox.com>
5732 S:      Maintained
5733 F:      include/linux/dim.h
5734 F:      lib/dim/
5735
5736 DZ DECSTATION DZ11 SERIAL DRIVER
5737 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
5738 S:      Maintained
5739 F:      drivers/tty/serial/dz.*
5740
5741 E3X0 POWER BUTTON DRIVER
5742 M:      Moritz Fischer <moritz.fischer@ettus.com>
5743 L:      usrp-users@lists.ettus.com
5744 W:      http://www.ettus.com
5745 S:      Supported
5746 F:      drivers/input/misc/e3x0-button.c
5747 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
5748
5749 E4000 MEDIA DRIVER
5750 M:      Antti Palosaari <crope@iki.fi>
5751 L:      linux-media@vger.kernel.org
5752 W:      https://linuxtv.org
5753 W:      http://palosaari.fi/linux/
5754 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5755 T:      git git://linuxtv.org/anttip/media_tree.git
5756 S:      Maintained
5757 F:      drivers/media/tuners/e4000*
5758
5759 EARTH_PT1 MEDIA DRIVER
5760 M:      Akihiro Tsukada <tskd08@gmail.com>
5761 L:      linux-media@vger.kernel.org
5762 S:      Odd Fixes
5763 F:      drivers/media/pci/pt1/
5764
5765 EARTH_PT3 MEDIA DRIVER
5766 M:      Akihiro Tsukada <tskd08@gmail.com>
5767 L:      linux-media@vger.kernel.org
5768 S:      Odd Fixes
5769 F:      drivers/media/pci/pt3/
5770
5771 EC100 MEDIA DRIVER
5772 M:      Antti Palosaari <crope@iki.fi>
5773 L:      linux-media@vger.kernel.org
5774 W:      https://linuxtv.org
5775 W:      http://palosaari.fi/linux/
5776 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5777 T:      git git://linuxtv.org/anttip/media_tree.git
5778 S:      Maintained
5779 F:      drivers/media/dvb-frontends/ec100*
5780
5781 ECRYPT FILE SYSTEM
5782 M:      Tyler Hicks <tyhicks@canonical.com>
5783 L:      ecryptfs@vger.kernel.org
5784 W:      http://ecryptfs.org
5785 W:      https://launchpad.net/ecryptfs
5786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
5787 S:      Supported
5788 F:      Documentation/filesystems/ecryptfs.txt
5789 F:      fs/ecryptfs/
5790
5791 EDAC-AMD64
5792 M:      Borislav Petkov <bp@alien8.de>
5793 L:      linux-edac@vger.kernel.org
5794 S:      Maintained
5795 F:      drivers/edac/amd64_edac*
5796
5797 EDAC-AST2500
5798 M:      Stefan Schaeckeler <sschaeck@cisco.com>
5799 S:      Supported
5800 F:      drivers/edac/aspeed_edac.c
5801 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
5802
5803 EDAC-BLUEFIELD
5804 M:      Shravan Kumar Ramani <sramani@mellanox.com>
5805 S:      Supported
5806 F:      drivers/edac/bluefield_edac.c
5807
5808 EDAC-CALXEDA
5809 M:      Robert Richter <rric@kernel.org>
5810 L:      linux-edac@vger.kernel.org
5811 S:      Maintained
5812 F:      drivers/edac/highbank*
5813
5814 EDAC-CAVIUM OCTEON
5815 M:      Ralf Baechle <ralf@linux-mips.org>
5816 M:      David Daney <david.daney@cavium.com>
5817 L:      linux-edac@vger.kernel.org
5818 L:      linux-mips@vger.kernel.org
5819 S:      Supported
5820 F:      drivers/edac/octeon_edac*
5821
5822 EDAC-CAVIUM THUNDERX
5823 M:      David Daney <david.daney@cavium.com>
5824 M:      Jan Glauber <jglauber@cavium.com>
5825 L:      linux-edac@vger.kernel.org
5826 S:      Supported
5827 F:      drivers/edac/thunderx_edac*
5828
5829 EDAC-CORE
5830 M:      Borislav Petkov <bp@alien8.de>
5831 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5832 M:      Tony Luck <tony.luck@intel.com>
5833 R:      James Morse <james.morse@arm.com>
5834 R:      Robert Richter <rrichter@marvell.com>
5835 L:      linux-edac@vger.kernel.org
5836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
5837 S:      Supported
5838 F:      Documentation/admin-guide/ras.rst
5839 F:      Documentation/driver-api/edac.rst
5840 F:      drivers/edac/
5841 F:      include/linux/edac.h
5842
5843 EDAC-E752X
5844 M:      Mark Gross <mark.gross@intel.com>
5845 L:      linux-edac@vger.kernel.org
5846 S:      Maintained
5847 F:      drivers/edac/e752x_edac.c
5848
5849 EDAC-E7XXX
5850 L:      linux-edac@vger.kernel.org
5851 S:      Maintained
5852 F:      drivers/edac/e7xxx_edac.c
5853
5854 EDAC-FSL_DDR
5855 M:      York Sun <york.sun@nxp.com>
5856 L:      linux-edac@vger.kernel.org
5857 S:      Maintained
5858 F:      drivers/edac/fsl_ddr_edac.*
5859
5860 EDAC-GHES
5861 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5862 L:      linux-edac@vger.kernel.org
5863 S:      Maintained
5864 F:      drivers/edac/ghes_edac.c
5865
5866 EDAC-I10NM
5867 M:      Tony Luck <tony.luck@intel.com>
5868 L:      linux-edac@vger.kernel.org
5869 S:      Maintained
5870 F:      drivers/edac/i10nm_base.c
5871
5872 EDAC-I3000
5873 L:      linux-edac@vger.kernel.org
5874 S:      Orphan
5875 F:      drivers/edac/i3000_edac.c
5876
5877 EDAC-I5000
5878 L:      linux-edac@vger.kernel.org
5879 S:      Maintained
5880 F:      drivers/edac/i5000_edac.c
5881
5882 EDAC-I5400
5883 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5884 L:      linux-edac@vger.kernel.org
5885 S:      Maintained
5886 F:      drivers/edac/i5400_edac.c
5887
5888 EDAC-I7300
5889 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5890 L:      linux-edac@vger.kernel.org
5891 S:      Maintained
5892 F:      drivers/edac/i7300_edac.c
5893
5894 EDAC-I7CORE
5895 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5896 L:      linux-edac@vger.kernel.org
5897 S:      Maintained
5898 F:      drivers/edac/i7core_edac.c
5899
5900 EDAC-I82443BXGX
5901 M:      Tim Small <tim@buttersideup.com>
5902 L:      linux-edac@vger.kernel.org
5903 S:      Maintained
5904 F:      drivers/edac/i82443bxgx_edac.c
5905
5906 EDAC-I82975X
5907 M:      "Arvind R." <arvino55@gmail.com>
5908 L:      linux-edac@vger.kernel.org
5909 S:      Maintained
5910 F:      drivers/edac/i82975x_edac.c
5911
5912 EDAC-IE31200
5913 M:      Jason Baron <jbaron@akamai.com>
5914 L:      linux-edac@vger.kernel.org
5915 S:      Maintained
5916 F:      drivers/edac/ie31200_edac.c
5917
5918 EDAC-MPC85XX
5919 M:      Johannes Thumshirn <morbidrsa@gmail.com>
5920 L:      linux-edac@vger.kernel.org
5921 S:      Maintained
5922 F:      drivers/edac/mpc85xx_edac.[ch]
5923
5924 EDAC-PASEMI
5925 M:      Egor Martovetsky <egor@pasemi.com>
5926 L:      linux-edac@vger.kernel.org
5927 S:      Maintained
5928 F:      drivers/edac/pasemi_edac.c
5929
5930 EDAC-PND2
5931 M:      Tony Luck <tony.luck@intel.com>
5932 L:      linux-edac@vger.kernel.org
5933 S:      Maintained
5934 F:      drivers/edac/pnd2_edac.[ch]
5935
5936 EDAC-R82600
5937 M:      Tim Small <tim@buttersideup.com>
5938 L:      linux-edac@vger.kernel.org
5939 S:      Maintained
5940 F:      drivers/edac/r82600_edac.c
5941
5942 EDAC-SBRIDGE
5943 M:      Tony Luck <tony.luck@intel.com>
5944 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
5945 L:      linux-edac@vger.kernel.org
5946 S:      Maintained
5947 F:      drivers/edac/sb_edac.c
5948
5949 EDAC-SIFIVE
5950 M:      Yash Shah <yash.shah@sifive.com>
5951 L:      linux-edac@vger.kernel.org
5952 S:      Supported
5953 F:      drivers/edac/sifive_edac.c
5954
5955 EDAC-SKYLAKE
5956 M:      Tony Luck <tony.luck@intel.com>
5957 L:      linux-edac@vger.kernel.org
5958 S:      Maintained
5959 F:      drivers/edac/skx_*.c
5960
5961 EDAC-TI
5962 M:      Tero Kristo <t-kristo@ti.com>
5963 L:      linux-edac@vger.kernel.org
5964 S:      Maintained
5965 F:      drivers/edac/ti_edac.c
5966
5967 EDAC-QCOM
5968 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
5969 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
5970 L:      linux-arm-msm@vger.kernel.org
5971 L:      linux-edac@vger.kernel.org
5972 S:      Maintained
5973 F:      drivers/edac/qcom_edac.c
5974
5975 EDIROL UA-101/UA-1000 DRIVER
5976 M:      Clemens Ladisch <clemens@ladisch.de>
5977 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
5979 S:      Maintained
5980 F:      sound/usb/misc/ua101.c
5981
5982 EFI TEST DRIVER
5983 L:      linux-efi@vger.kernel.org
5984 M:      Ivan Hu <ivan.hu@canonical.com>
5985 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
5986 S:      Maintained
5987 F:      drivers/firmware/efi/test/
5988
5989 EFI VARIABLE FILESYSTEM
5990 M:      Matthew Garrett <matthew.garrett@nebula.com>
5991 M:      Jeremy Kerr <jk@ozlabs.org>
5992 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
5993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
5994 L:      linux-efi@vger.kernel.org
5995 S:      Maintained
5996 F:      fs/efivarfs/
5997
5998 EFIFB FRAMEBUFFER DRIVER
5999 L:      linux-fbdev@vger.kernel.org
6000 M:      Peter Jones <pjones@redhat.com>
6001 S:      Maintained
6002 F:      drivers/video/fbdev/efifb.c
6003
6004 EFS FILESYSTEM
6005 W:      http://aeschi.ch.eu.org/efs/
6006 S:      Orphan
6007 F:      fs/efs/
6008
6009 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6010 M:      Douglas Miller <dougmill@linux.ibm.com>
6011 L:      netdev@vger.kernel.org
6012 S:      Maintained
6013 F:      drivers/net/ethernet/ibm/ehea/
6014
6015 EM28XX VIDEO4LINUX DRIVER
6016 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6017 L:      linux-media@vger.kernel.org
6018 W:      https://linuxtv.org
6019 T:      git git://linuxtv.org/media_tree.git
6020 S:      Maintained
6021 F:      drivers/media/usb/em28xx/
6022 F:      Documentation/media/v4l-drivers/em28xx*
6023
6024 EMBEDDED LINUX
6025 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6026 M:      Matt Mackall <mpm@selenic.com>
6027 M:      David Woodhouse <dwmw2@infradead.org>
6028 L:      linux-embedded@vger.kernel.org
6029 S:      Maintained
6030
6031 Emulex 10Gbps iSCSI - OneConnect DRIVER
6032 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6033 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6034 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6035 L:      linux-scsi@vger.kernel.org
6036 W:      http://www.broadcom.com
6037 S:      Supported
6038 F:      drivers/scsi/be2iscsi/
6039
6040 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6041 M:      Sathya Perla <sathya.perla@broadcom.com>
6042 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6043 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6044 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6045 L:      netdev@vger.kernel.org
6046 W:      http://www.emulex.com
6047 S:      Supported
6048 F:      drivers/net/ethernet/emulex/benet/
6049
6050 EMULEX ONECONNECT ROCE DRIVER
6051 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6052 M:      Devesh Sharma <devesh.sharma@broadcom.com>
6053 L:      linux-rdma@vger.kernel.org
6054 W:      http://www.broadcom.com
6055 S:      Odd Fixes
6056 F:      drivers/infiniband/hw/ocrdma/
6057 F:      include/uapi/rdma/ocrdma-abi.h
6058
6059 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6060 M:      James Smart <james.smart@broadcom.com>
6061 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6062 L:      linux-scsi@vger.kernel.org
6063 W:      http://www.broadcom.com
6064 S:      Supported
6065 F:      drivers/scsi/lpfc/
6066
6067 ENE CB710 FLASH CARD READER DRIVER
6068 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6069 S:      Maintained
6070 F:      drivers/misc/cb710/
6071 F:      drivers/mmc/host/cb710-mmc.*
6072 F:      include/linux/cb710.h
6073
6074 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6075 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6076 S:      Maintained
6077 F:      drivers/media/rc/ene_ir.*
6078
6079 EPSON S1D13XXX FRAMEBUFFER DRIVER
6080 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6081 S:      Maintained
6082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6083 F:      drivers/video/fbdev/s1d13xxxfb.c
6084 F:      include/video/s1d13xxxfb.h
6085
6086 EROFS FILE SYSTEM
6087 M:      Gao Xiang <gaoxiang25@huawei.com>
6088 M:      Chao Yu <yuchao0@huawei.com>
6089 L:      linux-erofs@lists.ozlabs.org
6090 S:      Maintained
6091 F:      fs/erofs/
6092
6093 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6094 M:      Jeff Layton <jlayton@kernel.org>
6095 S:      Maintained
6096 F:      lib/errseq.c
6097 F:      include/linux/errseq.h
6098
6099 ET131X NETWORK DRIVER
6100 M:      Mark Einon <mark.einon@gmail.com>
6101 S:      Odd Fixes
6102 F:      drivers/net/ethernet/agere/
6103
6104 ETHERNET BRIDGE
6105 M:      Roopa Prabhu <roopa@cumulusnetworks.com>
6106 M:      Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
6107 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6108 L:      netdev@vger.kernel.org
6109 W:      http://www.linuxfoundation.org/en/Net:Bridge
6110 S:      Maintained
6111 F:      include/linux/netfilter_bridge/
6112 F:      net/bridge/
6113
6114 ETHERNET PHY LIBRARY
6115 M:      Andrew Lunn <andrew@lunn.ch>
6116 M:      Florian Fainelli <f.fainelli@gmail.com>
6117 M:      Heiner Kallweit <hkallweit1@gmail.com>
6118 L:      netdev@vger.kernel.org
6119 S:      Maintained
6120 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6121 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6122 F:      Documentation/devicetree/bindings/net/mdio*
6123 F:      Documentation/networking/phy.rst
6124 F:      drivers/net/phy/
6125 F:      drivers/of/of_mdio.c
6126 F:      drivers/of/of_net.c
6127 F:      include/linux/*mdio*.h
6128 F:      include/linux/of_net.h
6129 F:      include/linux/phy.h
6130 F:      include/linux/phy_fixed.h
6131 F:      include/linux/platform_data/mdio-bcm-unimac.h
6132 F:      include/linux/platform_data/mdio-gpio.h
6133 F:      include/trace/events/mdio.h
6134 F:      include/uapi/linux/mdio.h
6135 F:      include/uapi/linux/mii.h
6136
6137 EXFAT FILE SYSTEM
6138 M:      Valdis Kletnieks <valdis.kletnieks@vt.edu>
6139 S:      Maintained
6140 F:      drivers/staging/exfat/
6141
6142 EXT2 FILE SYSTEM
6143 M:      Jan Kara <jack@suse.com>
6144 L:      linux-ext4@vger.kernel.org
6145 S:      Maintained
6146 F:      Documentation/filesystems/ext2.txt
6147 F:      fs/ext2/
6148 F:      include/linux/ext2*
6149
6150 EXT4 FILE SYSTEM
6151 M:      "Theodore Ts'o" <tytso@mit.edu>
6152 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6153 L:      linux-ext4@vger.kernel.org
6154 W:      http://ext4.wiki.kernel.org
6155 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6157 S:      Maintained
6158 F:      Documentation/filesystems/ext4/
6159 F:      fs/ext4/
6160
6161 Extended Verification Module (EVM)
6162 M:      Mimi Zohar <zohar@linux.ibm.com>
6163 L:      linux-integrity@vger.kernel.org
6164 S:      Supported
6165 F:      security/integrity/evm/
6166
6167 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6168 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
6169 L:      linux-efi@vger.kernel.org
6170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6171 S:      Maintained
6172 F:      Documentation/admin-guide/efi-stub.rst
6173 F:      arch/*/kernel/efi.c
6174 F:      arch/x86/boot/compressed/eboot.[ch]
6175 F:      arch/*/include/asm/efi.h
6176 F:      arch/x86/platform/efi/
6177 F:      drivers/firmware/efi/
6178 F:      include/linux/efi*.h
6179 F:      arch/arm/boot/compressed/efi-header.S
6180 F:      arch/arm64/kernel/efi-entry.S
6181
6182 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6183 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6184 M:      Chanwoo Choi <cw00.choi@samsung.com>
6185 L:      linux-kernel@vger.kernel.org
6186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6187 S:      Maintained
6188 F:      drivers/extcon/
6189 F:      include/linux/extcon/
6190 F:      include/linux/extcon.h
6191 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6192 F:      Documentation/devicetree/bindings/extcon/
6193
6194 EXYNOS DP DRIVER
6195 M:      Jingoo Han <jingoohan1@gmail.com>
6196 L:      dri-devel@lists.freedesktop.org
6197 S:      Maintained
6198 F:      drivers/gpu/drm/exynos/exynos_dp*
6199
6200 EXYNOS SYSMMU (IOMMU) driver
6201 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6202 L:      iommu@lists.linux-foundation.org
6203 S:      Maintained
6204 F:      drivers/iommu/exynos-iommu.c
6205
6206 EZchip NPS platform support
6207 M:      Vineet Gupta <vgupta@synopsys.com>
6208 M:      Ofer Levi <oferle@mellanox.com>
6209 S:      Supported
6210 F:      arch/arc/plat-eznps
6211 F:      arch/arc/boot/dts/eznps.dts
6212
6213 F2FS FILE SYSTEM
6214 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6215 M:      Chao Yu <yuchao0@huawei.com>
6216 L:      linux-f2fs-devel@lists.sourceforge.net
6217 W:      https://f2fs.wiki.kernel.org/
6218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6219 S:      Maintained
6220 F:      Documentation/filesystems/f2fs.txt
6221 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6222 F:      fs/f2fs/
6223 F:      include/linux/f2fs_fs.h
6224 F:      include/trace/events/f2fs.h
6225
6226 F71805F HARDWARE MONITORING DRIVER
6227 M:      Jean Delvare <jdelvare@suse.com>
6228 L:      linux-hwmon@vger.kernel.org
6229 S:      Maintained
6230 F:      Documentation/hwmon/f71805f.rst
6231 F:      drivers/hwmon/f71805f.c
6232
6233 FADDR2LINE
6234 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6235 S:      Maintained
6236 F:      scripts/faddr2line
6237
6238 FAILOVER MODULE
6239 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
6240 L:      netdev@vger.kernel.org
6241 S:      Supported
6242 F:      net/core/failover.c
6243 F:      include/net/failover.h
6244 F:      Documentation/networking/failover.rst
6245
6246 FANOTIFY
6247 M:      Jan Kara <jack@suse.cz>
6248 R:      Amir Goldstein <amir73il@gmail.com>
6249 L:      linux-fsdevel@vger.kernel.org
6250 S:      Maintained
6251 F:      fs/notify/fanotify/
6252 F:      include/linux/fanotify.h
6253 F:      include/uapi/linux/fanotify.h
6254
6255 FARSYNC SYNCHRONOUS DRIVER
6256 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
6257 W:      http://www.farsite.co.uk/
6258 S:      Supported
6259 F:      drivers/net/wan/farsync.*
6260
6261 FAULT INJECTION SUPPORT
6262 M:      Akinobu Mita <akinobu.mita@gmail.com>
6263 S:      Supported
6264 F:      Documentation/fault-injection/
6265 F:      lib/fault-inject.c
6266
6267 FBTFT Framebuffer drivers
6268 S:      Orphan
6269 L:      dri-devel@lists.freedesktop.org
6270 L:      linux-fbdev@vger.kernel.org
6271 F:      drivers/staging/fbtft/
6272
6273 FC0011 TUNER DRIVER
6274 M:      Michael Buesch <m@bues.ch>
6275 L:      linux-media@vger.kernel.org
6276 S:      Maintained
6277 F:      drivers/media/tuners/fc0011.h
6278 F:      drivers/media/tuners/fc0011.c
6279
6280 FC2580 MEDIA DRIVER
6281 M:      Antti Palosaari <crope@iki.fi>
6282 L:      linux-media@vger.kernel.org
6283 W:      https://linuxtv.org
6284 W:      http://palosaari.fi/linux/
6285 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6286 T:      git git://linuxtv.org/anttip/media_tree.git
6287 S:      Maintained
6288 F:      drivers/media/tuners/fc2580*
6289
6290 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6291 M:      Hannes Reinecke <hare@suse.de>
6292 L:      linux-scsi@vger.kernel.org
6293 W:      www.Open-FCoE.org
6294 S:      Supported
6295 F:      drivers/scsi/libfc/
6296 F:      drivers/scsi/fcoe/
6297 F:      include/scsi/fc/
6298 F:      include/scsi/libfc.h
6299 F:      include/scsi/libfcoe.h
6300 F:      include/uapi/scsi/fc/
6301
6302 FILE LOCKING (flock() and fcntl()/lockf())
6303 M:      Jeff Layton <jlayton@kernel.org>
6304 M:      "J. Bruce Fields" <bfields@fieldses.org>
6305 L:      linux-fsdevel@vger.kernel.org
6306 S:      Maintained
6307 F:      include/linux/fcntl.h
6308 F:      include/uapi/linux/fcntl.h
6309 F:      fs/fcntl.c
6310 F:      fs/locks.c
6311
6312 FILESYSTEMS (VFS and infrastructure)
6313 M:      Alexander Viro <viro@zeniv.linux.org.uk>
6314 L:      linux-fsdevel@vger.kernel.org
6315 S:      Maintained
6316 F:      fs/*
6317 F:      include/linux/fs.h
6318 F:      include/linux/fs_types.h
6319 F:      include/uapi/linux/fs.h
6320
6321 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6322 M:      Riku Voipio <riku.voipio@iki.fi>
6323 L:      linux-hwmon@vger.kernel.org
6324 S:      Maintained
6325 F:      drivers/hwmon/f75375s.c
6326 F:      include/linux/f75375s.h
6327
6328 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6329 M:      Clemens Ladisch <clemens@ladisch.de>
6330 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
6331 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6333 S:      Maintained
6334 F:      sound/firewire/
6335 F:      include/uapi/sound/firewire.h
6336
6337 FIREWIRE MEDIA DRIVERS (firedtv)
6338 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6339 L:      linux-media@vger.kernel.org
6340 L:      linux1394-devel@lists.sourceforge.net
6341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6342 S:      Maintained
6343 F:      drivers/media/firewire/
6344
6345 FIREWIRE SBP-2 TARGET
6346 M:      Chris Boot <bootc@bootc.net>
6347 L:      linux-scsi@vger.kernel.org
6348 L:      target-devel@vger.kernel.org
6349 L:      linux1394-devel@lists.sourceforge.net
6350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6351 S:      Maintained
6352 F:      drivers/target/sbp/
6353
6354 FIREWIRE SUBSYSTEM
6355 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6356 L:      linux1394-devel@lists.sourceforge.net
6357 W:      http://ieee1394.wiki.kernel.org/
6358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6359 S:      Maintained
6360 F:      drivers/firewire/
6361 F:      include/linux/firewire.h
6362 F:      include/uapi/linux/firewire*.h
6363 F:      tools/firewire/
6364
6365 FIRMWARE LOADER (request_firmware)
6366 M:      Luis Chamberlain <mcgrof@kernel.org>
6367 L:      linux-kernel@vger.kernel.org
6368 S:      Maintained
6369 F:      Documentation/firmware_class/
6370 F:      drivers/base/firmware_loader/
6371 F:      include/linux/firmware.h
6372
6373 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6374 M:      Joshua Morris <josh.h.morris@us.ibm.com>
6375 M:      Philip Kelleher <pjk1939@linux.ibm.com>
6376 S:      Maintained
6377 F:      drivers/block/rsxx/
6378
6379 FLEXTIMER FTM-QUADDEC DRIVER
6380 M:      Patrick Havelange <patrick.havelange@essensium.com>
6381 L:      linux-iio@vger.kernel.org
6382 S:      Maintained
6383 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6384 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6385 F:      drivers/counter/ftm-quaddec.c
6386
6387 FLOPPY DRIVER
6388 M:      Denis Efremov <efremov@linux.com>
6389 S:      Odd Fixes
6390 L:      linux-block@vger.kernel.org
6391 F:      drivers/block/floppy.c
6392
6393 FPGA MANAGER FRAMEWORK
6394 M:      Moritz Fischer <mdf@kernel.org>
6395 L:      linux-fpga@vger.kernel.org
6396 S:      Maintained
6397 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6398 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6399 F:      Documentation/fpga/
6400 F:      Documentation/driver-api/fpga/
6401 F:      Documentation/devicetree/bindings/fpga/
6402 F:      drivers/fpga/
6403 F:      include/linux/fpga/
6404 W:      http://www.rocketboards.org
6405
6406 FPGA DFL DRIVERS
6407 M:      Wu Hao <hao.wu@intel.com>
6408 L:      linux-fpga@vger.kernel.org
6409 S:      Maintained
6410 F:      Documentation/fpga/dfl.rst
6411 F:      include/uapi/linux/fpga-dfl.h
6412 F:      drivers/fpga/dfl*
6413
6414 FPU EMULATOR
6415 M:      Bill Metzenthen <billm@melbpc.org.au>
6416 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6417 S:      Maintained
6418 F:      arch/x86/math-emu/
6419
6420 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
6421 L:      netdev@vger.kernel.org
6422 S:      Orphan
6423 F:      drivers/net/wan/dlci.c
6424 F:      drivers/net/wan/sdla.c
6425
6426 FRAMEBUFFER LAYER
6427 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6428 L:      dri-devel@lists.freedesktop.org
6429 L:      linux-fbdev@vger.kernel.org
6430 T:      git git://anongit.freedesktop.org/drm/drm-misc
6431 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6432 S:      Maintained
6433 F:      Documentation/fb/
6434 F:      drivers/video/
6435 F:      include/video/
6436 F:      include/linux/fb.h
6437 F:      include/uapi/video/
6438 F:      include/uapi/linux/fb.h
6439
6440 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6441 M:      Horia Geantă <horia.geanta@nxp.com>
6442 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
6443 L:      linux-crypto@vger.kernel.org
6444 S:      Maintained
6445 F:      drivers/crypto/caam/
6446 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6447
6448 FREESCALE DIU FRAMEBUFFER DRIVER
6449 M:      Timur Tabi <timur@kernel.org>
6450 L:      linux-fbdev@vger.kernel.org
6451 S:      Maintained
6452 F:      drivers/video/fbdev/fsl-diu-fb.*
6453
6454 FREESCALE DMA DRIVER
6455 M:      Li Yang <leoyang.li@nxp.com>
6456 M:      Zhang Wei <zw@zh-kernel.org>
6457 L:      linuxppc-dev@lists.ozlabs.org
6458 S:      Maintained
6459 F:      drivers/dma/fsldma.*
6460
6461 FREESCALE ENETC ETHERNET DRIVERS
6462 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6463 L:      netdev@vger.kernel.org
6464 S:      Maintained
6465 F:      drivers/net/ethernet/freescale/enetc/
6466
6467 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6468 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6469 L:      netdev@vger.kernel.org
6470 S:      Maintained
6471 F:      drivers/net/ethernet/freescale/gianfar*
6472 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6473
6474 FREESCALE GPMI NAND DRIVER
6475 M:      Han Xu <han.xu@nxp.com>
6476 L:      linux-mtd@lists.infradead.org
6477 S:      Maintained
6478 F:      drivers/mtd/nand/raw/gpmi-nand/*
6479
6480 FREESCALE I2C CPM DRIVER
6481 M:      Jochen Friedrich <jochen@scram.de>
6482 L:      linuxppc-dev@lists.ozlabs.org
6483 L:      linux-i2c@vger.kernel.org
6484 S:      Maintained
6485 F:      drivers/i2c/busses/i2c-cpm.c
6486
6487 FREESCALE IMX DDR PMU DRIVER
6488 M:      Frank Li <Frank.li@nxp.com>
6489 L:      linux-arm-kernel@lists.infradead.org
6490 S:      Maintained
6491 F:      drivers/perf/fsl_imx8_ddr_perf.c
6492 F:      Documentation/admin-guide/perf/imx-ddr.rst
6493 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.txt
6494
6495 FREESCALE IMX I2C DRIVER
6496 M:      Oleksij Rempel <o.rempel@pengutronix.de>
6497 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6498 L:      linux-i2c@vger.kernel.org
6499 S:      Maintained
6500 F:      drivers/i2c/busses/i2c-imx.c
6501 F:      Documentation/devicetree/bindings/i2c/i2c-imx.txt
6502
6503 FREESCALE IMX LPI2C DRIVER
6504 M:      Dong Aisheng <aisheng.dong@nxp.com>
6505 L:      linux-i2c@vger.kernel.org
6506 L:      linux-imx@nxp.com
6507 S:      Maintained
6508 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
6509 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.txt
6510
6511 FREESCALE IMX / MXC FEC DRIVER
6512 M:      Fugang Duan <fugang.duan@nxp.com>
6513 L:      netdev@vger.kernel.org
6514 S:      Maintained
6515 F:      drivers/net/ethernet/freescale/fec_main.c
6516 F:      drivers/net/ethernet/freescale/fec_ptp.c
6517 F:      drivers/net/ethernet/freescale/fec.h
6518 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
6519
6520 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
6521 M:      Sascha Hauer <s.hauer@pengutronix.de>
6522 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6523 L:      linux-fbdev@vger.kernel.org
6524 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6525 S:      Maintained
6526 F:      include/linux/platform_data/video-imxfb.h
6527 F:      drivers/video/fbdev/imxfb.c
6528
6529 FREESCALE QORIQ DPAA ETHERNET DRIVER
6530 M:      Madalin Bucur <madalin.bucur@nxp.com>
6531 L:      netdev@vger.kernel.org
6532 S:      Maintained
6533 F:      drivers/net/ethernet/freescale/dpaa
6534
6535 FREESCALE QORIQ DPAA FMAN DRIVER
6536 M:      Madalin Bucur <madalin.bucur@nxp.com>
6537 L:      netdev@vger.kernel.org
6538 S:      Maintained
6539 F:      drivers/net/ethernet/freescale/fman
6540 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
6541
6542 FREESCALE QORIQ PTP CLOCK DRIVER
6543 M:      Yangbo Lu <yangbo.lu@nxp.com>
6544 L:      netdev@vger.kernel.org
6545 S:      Maintained
6546 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
6547 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
6548 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
6549 F:      drivers/ptp/ptp_qoriq.c
6550 F:      drivers/ptp/ptp_qoriq_debugfs.c
6551 F:      include/linux/fsl/ptp_qoriq.h
6552 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
6553
6554 FREESCALE QUAD SPI DRIVER
6555 M:      Han Xu <han.xu@nxp.com>
6556 L:      linux-spi@vger.kernel.org
6557 S:      Maintained
6558 F:      drivers/spi/spi-fsl-qspi.c
6559
6560 FREESCALE QUICC ENGINE LIBRARY
6561 M:      Qiang Zhao <qiang.zhao@nxp.com>
6562 L:      linuxppc-dev@lists.ozlabs.org
6563 S:      Maintained
6564 F:      drivers/soc/fsl/qe/
6565 F:      include/soc/fsl/*qe*.h
6566 F:      include/soc/fsl/*ucc*.h
6567
6568 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
6569 M:      Li Yang <leoyang.li@nxp.com>
6570 L:      netdev@vger.kernel.org
6571 L:      linuxppc-dev@lists.ozlabs.org
6572 S:      Maintained
6573 F:      drivers/net/ethernet/freescale/ucc_geth*
6574
6575 FREESCALE QUICC ENGINE UCC HDLC DRIVER
6576 M:      Zhao Qiang <qiang.zhao@nxp.com>
6577 L:      netdev@vger.kernel.org
6578 L:      linuxppc-dev@lists.ozlabs.org
6579 S:      Maintained
6580 F:      drivers/net/wan/fsl_ucc_hdlc*
6581
6582 FREESCALE QUICC ENGINE UCC UART DRIVER
6583 M:      Timur Tabi <timur@kernel.org>
6584 L:      linuxppc-dev@lists.ozlabs.org
6585 S:      Maintained
6586 F:      drivers/tty/serial/ucc_uart.c
6587
6588 FREESCALE SOC DRIVERS
6589 M:      Li Yang <leoyang.li@nxp.com>
6590 L:      linuxppc-dev@lists.ozlabs.org
6591 L:      linux-arm-kernel@lists.infradead.org
6592 S:      Maintained
6593 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
6594 F:      Documentation/devicetree/bindings/soc/fsl/
6595 F:      drivers/soc/fsl/
6596 F:      include/linux/fsl/
6597
6598 FREESCALE SOC FS_ENET DRIVER
6599 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
6600 L:      linuxppc-dev@lists.ozlabs.org
6601 L:      netdev@vger.kernel.org
6602 S:      Maintained
6603 F:      drivers/net/ethernet/freescale/fs_enet/
6604 F:      include/linux/fs_enet_pd.h
6605
6606 FREESCALE SOC SOUND DRIVERS
6607 M:      Timur Tabi <timur@kernel.org>
6608 M:      Nicolin Chen <nicoleotsuka@gmail.com>
6609 M:      Xiubo Li <Xiubo.Lee@gmail.com>
6610 R:      Fabio Estevam <festevam@gmail.com>
6611 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6612 L:      linuxppc-dev@lists.ozlabs.org
6613 S:      Maintained
6614 F:      sound/soc/fsl/fsl*
6615 F:      sound/soc/fsl/imx*
6616 F:      sound/soc/fsl/mpc8610_hpcd.c
6617
6618 FREESCALE USB PERIPHERAL DRIVERS
6619 M:      Li Yang <leoyang.li@nxp.com>
6620 L:      linux-usb@vger.kernel.org
6621 L:      linuxppc-dev@lists.ozlabs.org
6622 S:      Maintained
6623 F:      drivers/usb/gadget/udc/fsl*
6624
6625 FREEVXFS FILESYSTEM
6626 M:      Christoph Hellwig <hch@infradead.org>
6627 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
6628 S:      Maintained
6629 F:      fs/freevxfs/
6630
6631 FREEZER
6632 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
6633 M:      Pavel Machek <pavel@ucw.cz>
6634 L:      linux-pm@vger.kernel.org
6635 S:      Supported
6636 F:      Documentation/power/freezing-of-tasks.rst
6637 F:      include/linux/freezer.h
6638 F:      kernel/freezer.c
6639
6640 FRONTSWAP API
6641 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
6642 L:      linux-kernel@vger.kernel.org
6643 S:      Maintained
6644 F:      mm/frontswap.c
6645 F:      include/linux/frontswap.h
6646
6647 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
6648 M:      David Howells <dhowells@redhat.com>
6649 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
6650 S:      Supported
6651 F:      Documentation/filesystems/caching/
6652 F:      fs/fscache/
6653 F:      include/linux/fscache*.h
6654
6655 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
6656 M:      Theodore Y. Ts'o <tytso@mit.edu>
6657 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6658 M:      Eric Biggers <ebiggers@kernel.org>
6659 L:      linux-fscrypt@vger.kernel.org
6660 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
6661 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
6662 S:      Supported
6663 F:      fs/crypto/
6664 F:      include/linux/fscrypt*.h
6665 F:      Documentation/filesystems/fscrypt.rst
6666
6667 FSI SUBSYSTEM
6668 M:      Jeremy Kerr <jk@ozlabs.org>
6669 M:      Joel Stanley <joel@jms.id.au>
6670 R:      Alistar Popple <alistair@popple.id.au>
6671 R:      Eddie James <eajames@linux.ibm.com>
6672 L:      linux-fsi@lists.ozlabs.org
6673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
6674 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
6675 S:      Supported
6676 F:      drivers/fsi/
6677 F:      include/linux/fsi*.h
6678 F:      include/trace/events/fsi*.h
6679
6680 FSI-ATTACHED I2C DRIVER
6681 M:      Eddie James <eajames@linux.ibm.com>
6682 L:      linux-i2c@vger.kernel.org
6683 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
6684 S:      Maintained
6685 F:      drivers/i2c/busses/i2c-fsi.c
6686 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
6687
6688 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
6689 M:      Jan Kara <jack@suse.cz>
6690 R:      Amir Goldstein <amir73il@gmail.com>
6691 L:      linux-fsdevel@vger.kernel.org
6692 S:      Maintained
6693 F:      fs/notify/
6694 F:      include/linux/fsnotify*.h
6695
6696 FUJITSU LAPTOP EXTRAS
6697 M:      Jonathan Woithe <jwoithe@just42.net>
6698 L:      platform-driver-x86@vger.kernel.org
6699 S:      Maintained
6700 F:      drivers/platform/x86/fujitsu-laptop.c
6701
6702 FUJITSU M-5MO LS CAMERA ISP DRIVER
6703 M:      Kyungmin Park <kyungmin.park@samsung.com>
6704 M:      Heungjun Kim <riverful.kim@samsung.com>
6705 L:      linux-media@vger.kernel.org
6706 S:      Maintained
6707 F:      drivers/media/i2c/m5mols/
6708 F:      include/media/i2c/m5mols.h
6709
6710 FUJITSU TABLET EXTRAS
6711 M:      Robert Gerlach <khnz@gmx.de>
6712 L:      platform-driver-x86@vger.kernel.org
6713 S:      Maintained
6714 F:      drivers/platform/x86/fujitsu-tablet.c
6715
6716 FUSE: FILESYSTEM IN USERSPACE
6717 M:      Miklos Szeredi <miklos@szeredi.hu>
6718 L:      linux-fsdevel@vger.kernel.org
6719 W:      http://fuse.sourceforge.net/
6720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
6721 S:      Maintained
6722 F:      fs/fuse/
6723 F:      include/uapi/linux/fuse.h
6724 F:      Documentation/filesystems/fuse.txt
6725
6726 FUTEX SUBSYSTEM
6727 M:      Thomas Gleixner <tglx@linutronix.de>
6728 M:      Ingo Molnar <mingo@redhat.com>
6729 R:      Peter Zijlstra <peterz@infradead.org>
6730 R:      Darren Hart <dvhart@infradead.org>
6731 L:      linux-kernel@vger.kernel.org
6732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
6733 S:      Maintained
6734 F:      kernel/futex.c
6735 F:      include/asm-generic/futex.h
6736 F:      include/linux/futex.h
6737 F:      include/uapi/linux/futex.h
6738 F:      tools/testing/selftests/futex/
6739 F:      tools/perf/bench/futex*
6740 F:      Documentation/*futex*
6741
6742 GCC PLUGINS
6743 M:      Kees Cook <keescook@chromium.org>
6744 R:      Emese Revfy <re.emese@gmail.com>
6745 L:      kernel-hardening@lists.openwall.com
6746 S:      Maintained
6747 F:      scripts/gcc-plugins/
6748 F:      scripts/gcc-plugin.sh
6749 F:      scripts/Makefile.gcc-plugins
6750 F:      Documentation/core-api/gcc-plugins.rst
6751
6752 GASKET DRIVER FRAMEWORK
6753 M:      Rob Springer <rspringer@google.com>
6754 M:      Todd Poynor <toddpoynor@google.com>
6755 M:      Ben Chan <benchan@chromium.org>
6756 S:      Maintained
6757 F:      drivers/staging/gasket/
6758
6759 GCOV BASED KERNEL PROFILING
6760 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
6761 S:      Maintained
6762 F:      kernel/gcov/
6763 F:      Documentation/dev-tools/gcov.rst
6764
6765 GDB KERNEL DEBUGGING HELPER SCRIPTS
6766 M:      Jan Kiszka <jan.kiszka@siemens.com>
6767 M:      Kieran Bingham <kbingham@kernel.org>
6768 S:      Supported
6769 F:      scripts/gdb/
6770
6771 GDT SCSI DISK ARRAY CONTROLLER DRIVER
6772 M:      Achim Leubner <achim_leubner@adaptec.com>
6773 L:      linux-scsi@vger.kernel.org
6774 W:      http://www.icp-vortex.com/
6775 S:      Supported
6776 F:      drivers/scsi/gdt*
6777
6778 GEMTEK FM RADIO RECEIVER DRIVER
6779 M:      Hans Verkuil <hverkuil@xs4all.nl>
6780 L:      linux-media@vger.kernel.org
6781 T:      git git://linuxtv.org/media_tree.git
6782 W:      https://linuxtv.org
6783 S:      Maintained
6784 F:      drivers/media/radio/radio-gemtek*
6785
6786 GENERIC ARCHITECTURE TOPOLOGY
6787 M:      Sudeep Holla <sudeep.holla@arm.com>
6788 L:      linux-kernel@vger.kernel.org
6789 S:      Maintained
6790 F:      drivers/base/arch_topology.c
6791 F:      include/linux/arch_topology.h
6792
6793 GENERIC GPIO I2C DRIVER
6794 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
6795 S:      Supported
6796 F:      drivers/i2c/busses/i2c-gpio.c
6797 F:      include/linux/platform_data/i2c-gpio.h
6798
6799 GENERIC GPIO I2C MULTIPLEXER DRIVER
6800 M:      Peter Korsgaard <peter.korsgaard@barco.com>
6801 L:      linux-i2c@vger.kernel.org
6802 S:      Supported
6803 F:      drivers/i2c/muxes/i2c-mux-gpio.c
6804 F:      include/linux/platform_data/i2c-mux-gpio.h
6805 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
6806
6807 GENERIC HDLC (WAN) DRIVERS
6808 M:      Krzysztof Halasa <khc@pm.waw.pl>
6809 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
6810 S:      Maintained
6811 F:      drivers/net/wan/c101.c
6812 F:      drivers/net/wan/hd6457*
6813 F:      drivers/net/wan/hdlc*
6814 F:      drivers/net/wan/n2.c
6815 F:      drivers/net/wan/pc300too.c
6816 F:      drivers/net/wan/pci200syn.c
6817 F:      drivers/net/wan/wanxl*
6818
6819 GENERIC INCLUDE/ASM HEADER FILES
6820 M:      Arnd Bergmann <arnd@arndb.de>
6821 L:      linux-arch@vger.kernel.org
6822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
6823 S:      Maintained
6824 F:      include/asm-generic/
6825 F:      include/uapi/asm-generic/
6826
6827 GENERIC PHY FRAMEWORK
6828 M:      Kishon Vijay Abraham I <kishon@ti.com>
6829 L:      linux-kernel@vger.kernel.org
6830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
6831 S:      Supported
6832 F:      drivers/phy/
6833 F:      include/linux/phy/
6834 F:      Documentation/devicetree/bindings/phy/
6835
6836 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
6837 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
6838 S:      Supported
6839 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
6840
6841 GENERIC PM DOMAINS
6842 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
6843 M:      Kevin Hilman <khilman@kernel.org>
6844 M:      Ulf Hansson <ulf.hansson@linaro.org>
6845 L:      linux-pm@vger.kernel.org
6846 S:      Supported
6847 F:      drivers/base/power/domain*.c
6848 F:      include/linux/pm_domain.h
6849 F:      Documentation/devicetree/bindings/power/power_domain.txt
6850
6851 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
6852 M:      Eugen Hristev <eugen.hristev@microchip.com>
6853 L:      linux-input@vger.kernel.org
6854 S:      Maintained
6855 F:      drivers/input/touchscreen/resistive-adc-touch.c
6856
6857 GENERIC UIO DRIVER FOR PCI DEVICES
6858 M:      "Michael S. Tsirkin" <mst@redhat.com>
6859 L:      kvm@vger.kernel.org
6860 S:      Supported
6861 F:      drivers/uio/uio_pci_generic.c
6862
6863 GENERIC VDSO LIBRARY:
6864 M:      Andy Lutomirski <luto@kernel.org>
6865 M:      Thomas Gleixner <tglx@linutronix.de>
6866 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
6867 L:      linux-kernel@vger.kernel.org
6868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
6869 S:      Maintained
6870 F:      lib/vdso/
6871 F:      kernel/time/vsyscall.c
6872 F:      include/vdso/
6873 F:      include/asm-generic/vdso/vsyscall.h
6874
6875 GENWQE (IBM Generic Workqueue Card)
6876 M:      Frank Haverkamp <haver@linux.ibm.com>
6877 S:      Supported
6878 F:      drivers/misc/genwqe/
6879
6880 GET_MAINTAINER SCRIPT
6881 M:      Joe Perches <joe@perches.com>
6882 S:      Maintained
6883 F:      scripts/get_maintainer.pl
6884
6885 GFS2 FILE SYSTEM
6886 M:      Bob Peterson <rpeterso@redhat.com>
6887 M:      Andreas Gruenbacher <agruenba@redhat.com>
6888 L:      cluster-devel@redhat.com
6889 W:      http://sources.redhat.com/cluster/
6890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
6891 S:      Supported
6892 F:      Documentation/filesystems/gfs2*.txt
6893 F:      fs/gfs2/
6894 F:      include/uapi/linux/gfs2_ondisk.h
6895
6896 GNSS SUBSYSTEM
6897 M:      Johan Hovold <johan@kernel.org>
6898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
6899 S:      Maintained
6900 F:      Documentation/ABI/testing/sysfs-class-gnss
6901 F:      Documentation/devicetree/bindings/gnss/
6902 F:      drivers/gnss/
6903 F:      include/linux/gnss.h
6904
6905 GO7007 MPEG CODEC
6906 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
6907 L:      linux-media@vger.kernel.org
6908 S:      Maintained
6909 F:      drivers/media/usb/go7007/
6910
6911 GOODIX TOUCHSCREEN
6912 M:      Bastien Nocera <hadess@hadess.net>
6913 L:      linux-input@vger.kernel.org
6914 S:      Maintained
6915 F:      drivers/input/touchscreen/goodix.c
6916
6917 GOOGLE ETHERNET DRIVERS
6918 M:      Catherine Sullivan <csully@google.com>
6919 R:      Sagi Shahar <sagis@google.com>
6920 R:      Jon Olson <jonolson@google.com>
6921 L:      netdev@vger.kernel.org
6922 S:      Supported
6923 F:      Documentation/networking/device_drivers/google/gve.rst
6924 F:      drivers/net/ethernet/google
6925
6926 GPD POCKET FAN DRIVER
6927 M:      Hans de Goede <hdegoede@redhat.com>
6928 L:      platform-driver-x86@vger.kernel.org
6929 S:      Maintained
6930 F:      drivers/platform/x86/gpd-pocket-fan.c
6931
6932 GPIO ACPI SUPPORT
6933 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
6934 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
6935 L:      linux-gpio@vger.kernel.org
6936 L:      linux-acpi@vger.kernel.org
6937 S:      Maintained
6938 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
6939 F:      drivers/gpio/gpiolib-acpi.c
6940
6941 GPIO IR Transmitter
6942 M:      Sean Young <sean@mess.org>
6943 L:      linux-media@vger.kernel.org
6944 S:      Maintained
6945 F:      drivers/media/rc/gpio-ir-tx.c
6946
6947 GPIO MOCKUP DRIVER
6948 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
6949 L:      linux-gpio@vger.kernel.org
6950 S:      Maintained
6951 F:      drivers/gpio/gpio-mockup.c
6952 F:      tools/testing/selftests/gpio/
6953
6954 GPIO SUBSYSTEM
6955 M:      Linus Walleij <linus.walleij@linaro.org>
6956 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
6957 L:      linux-gpio@vger.kernel.org
6958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
6959 S:      Maintained
6960 F:      Documentation/devicetree/bindings/gpio/
6961 F:      Documentation/driver-api/gpio/
6962 F:      Documentation/admin-guide/gpio/
6963 F:      Documentation/ABI/testing/gpio-cdev
6964 F:      Documentation/ABI/obsolete/sysfs-gpio
6965 F:      drivers/gpio/
6966 F:      include/linux/gpio/
6967 F:      include/linux/gpio.h
6968 F:      include/linux/of_gpio.h
6969 F:      include/asm-generic/gpio.h
6970 F:      include/uapi/linux/gpio.h
6971 F:      tools/gpio/
6972
6973 GRE DEMULTIPLEXER DRIVER
6974 M:      Dmitry Kozlov <xeb@mail.ru>
6975 L:      netdev@vger.kernel.org
6976 S:      Maintained
6977 F:      net/ipv4/gre_demux.c
6978 F:      net/ipv4/gre_offload.c
6979 F:      include/net/gre.h
6980
6981 GRETH 10/100/1G Ethernet MAC device driver
6982 M:      Andreas Larsson <andreas@gaisler.com>
6983 L:      netdev@vger.kernel.org
6984 S:      Maintained
6985 F:      drivers/net/ethernet/aeroflex/
6986
6987 GREYBUS AUDIO PROTOCOLS DRIVERS
6988 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
6989 M:      Mark Greer <mgreer@animalcreek.com>
6990 S:      Maintained
6991 F:      drivers/staging/greybus/audio_apbridgea.c
6992 F:      drivers/staging/greybus/audio_apbridgea.h
6993 F:      drivers/staging/greybus/audio_codec.c
6994 F:      drivers/staging/greybus/audio_codec.h
6995 F:      drivers/staging/greybus/audio_gb.c
6996 F:      drivers/staging/greybus/audio_manager.c
6997 F:      drivers/staging/greybus/audio_manager.h
6998 F:      drivers/staging/greybus/audio_manager_module.c
6999 F:      drivers/staging/greybus/audio_manager_private.h
7000 F:      drivers/staging/greybus/audio_manager_sysfs.c
7001 F:      drivers/staging/greybus/audio_module.c
7002 F:      drivers/staging/greybus/audio_topology.c
7003
7004 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7005 M:      Viresh Kumar <vireshk@kernel.org>
7006 S:      Maintained
7007 F:      drivers/staging/greybus/authentication.c
7008 F:      drivers/staging/greybus/bootrom.c
7009 F:      drivers/staging/greybus/firmware.h
7010 F:      drivers/staging/greybus/fw-core.c
7011 F:      drivers/staging/greybus/fw-download.c
7012 F:      drivers/staging/greybus/fw-management.c
7013 F:      drivers/staging/greybus/greybus_authentication.h
7014 F:      drivers/staging/greybus/greybus_firmware.h
7015 F:      drivers/staging/greybus/hid.c
7016 F:      drivers/staging/greybus/i2c.c
7017 F:      drivers/staging/greybus/spi.c
7018 F:      drivers/staging/greybus/spilib.c
7019 F:      drivers/staging/greybus/spilib.h
7020
7021 GREYBUS LOOPBACK DRIVER
7022 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7023 S:      Maintained
7024 F:      drivers/staging/greybus/loopback.c
7025
7026 GREYBUS PLATFORM DRIVERS
7027 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7028 S:      Maintained
7029 F:      drivers/staging/greybus/arche-platform.c
7030 F:      drivers/staging/greybus/arche-apb-ctrl.c
7031 F:      drivers/staging/greybus/arche_platform.h
7032
7033 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7034 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7035 S:      Maintained
7036 F:      drivers/staging/greybus/sdio.c
7037 F:      drivers/staging/greybus/light.c
7038 F:      drivers/staging/greybus/gpio.c
7039 F:      drivers/staging/greybus/power_supply.c
7040 F:      drivers/staging/greybus/spi.c
7041 F:      drivers/staging/greybus/spilib.c
7042
7043 GREYBUS SUBSYSTEM
7044 M:      Johan Hovold <johan@kernel.org>
7045 M:      Alex Elder <elder@kernel.org>
7046 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7047 S:      Maintained
7048 F:      drivers/staging/greybus/
7049 F:      drivers/greybus/
7050 F:      include/linux/greybus.h
7051 F:      include/linux/greybus/
7052 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7053
7054 GREYBUS UART PROTOCOLS DRIVERS
7055 M:      David Lin <dtwlin@gmail.com>
7056 S:      Maintained
7057 F:      drivers/staging/greybus/uart.c
7058 F:      drivers/staging/greybus/log.c
7059
7060 GS1662 VIDEO SERIALIZER
7061 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7062 L:      linux-media@vger.kernel.org
7063 T:      git git://linuxtv.org/media_tree.git
7064 S:      Maintained
7065 F:      drivers/media/spi/gs1662.c
7066
7067 GSPCA FINEPIX SUBDRIVER
7068 M:      Frank Zago <frank@zago.net>
7069 L:      linux-media@vger.kernel.org
7070 T:      git git://linuxtv.org/media_tree.git
7071 S:      Maintained
7072 F:      drivers/media/usb/gspca/finepix.c
7073
7074 GSPCA GL860 SUBDRIVER
7075 M:      Olivier Lorin <o.lorin@laposte.net>
7076 L:      linux-media@vger.kernel.org
7077 T:      git git://linuxtv.org/media_tree.git
7078 S:      Maintained
7079 F:      drivers/media/usb/gspca/gl860/
7080
7081 GSPCA M5602 SUBDRIVER
7082 M:      Erik Andren <erik.andren@gmail.com>
7083 L:      linux-media@vger.kernel.org
7084 T:      git git://linuxtv.org/media_tree.git
7085 S:      Maintained
7086 F:      drivers/media/usb/gspca/m5602/
7087
7088 GSPCA PAC207 SONIXB SUBDRIVER
7089 M:      Hans Verkuil <hverkuil@xs4all.nl>
7090 L:      linux-media@vger.kernel.org
7091 T:      git git://linuxtv.org/media_tree.git
7092 S:      Odd Fixes
7093 F:      drivers/media/usb/gspca/pac207.c
7094
7095 GSPCA SN9C20X SUBDRIVER
7096 M:      Brian Johnson <brijohn@gmail.com>
7097 L:      linux-media@vger.kernel.org
7098 T:      git git://linuxtv.org/media_tree.git
7099 S:      Maintained
7100 F:      drivers/media/usb/gspca/sn9c20x.c
7101
7102 GSPCA T613 SUBDRIVER
7103 M:      Leandro Costantino <lcostantino@gmail.com>
7104 L:      linux-media@vger.kernel.org
7105 T:      git git://linuxtv.org/media_tree.git
7106 S:      Maintained
7107 F:      drivers/media/usb/gspca/t613.c
7108
7109 GSPCA USB WEBCAM DRIVER
7110 M:      Hans Verkuil <hverkuil@xs4all.nl>
7111 L:      linux-media@vger.kernel.org
7112 T:      git git://linuxtv.org/media_tree.git
7113 S:      Odd Fixes
7114 F:      drivers/media/usb/gspca/
7115
7116 GTP (GPRS Tunneling Protocol)
7117 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7118 M:      Harald Welte <laforge@gnumonks.org>
7119 L:      osmocom-net-gprs@lists.osmocom.org
7120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7121 S:      Maintained
7122 F:      drivers/net/gtp.c
7123
7124 GUID PARTITION TABLE (GPT)
7125 M:      Davidlohr Bueso <dave@stgolabs.net>
7126 L:      linux-efi@vger.kernel.org
7127 S:      Maintained
7128 F:      block/partitions/efi.*
7129
7130 H8/300 ARCHITECTURE
7131 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
7132 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7133 W:      http://uclinux-h8.sourceforge.jp
7134 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7135 S:      Maintained
7136 F:      arch/h8300/
7137 F:      drivers/clocksource/h8300_*.c
7138 F:      drivers/clk/h8300/
7139 F:      drivers/irqchip/irq-renesas-h8*.c
7140
7141 HABANALABS PCI DRIVER
7142 M:      Oded Gabbay <oded.gabbay@gmail.com>
7143 T:      git https://github.com/HabanaAI/linux.git
7144 S:      Supported
7145 F:      drivers/misc/habanalabs/
7146 F:      include/uapi/misc/habanalabs.h
7147 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7148 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7149
7150 HACKRF MEDIA DRIVER
7151 M:      Antti Palosaari <crope@iki.fi>
7152 L:      linux-media@vger.kernel.org
7153 W:      https://linuxtv.org
7154 W:      http://palosaari.fi/linux/
7155 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7156 T:      git git://linuxtv.org/anttip/media_tree.git
7157 S:      Maintained
7158 F:      drivers/media/usb/hackrf/
7159
7160 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7161 M:      Frank Seidel <frank@f-seidel.de>
7162 L:      platform-driver-x86@vger.kernel.org
7163 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7164 S:      Maintained
7165 F:      drivers/platform/x86/hdaps.c
7166
7167 HARDWARE MONITORING
7168 M:      Jean Delvare <jdelvare@suse.com>
7169 M:      Guenter Roeck <linux@roeck-us.net>
7170 L:      linux-hwmon@vger.kernel.org
7171 W:      http://hwmon.wiki.kernel.org/
7172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7173 S:      Maintained
7174 F:      Documentation/devicetree/bindings/hwmon/
7175 F:      Documentation/hwmon/
7176 F:      drivers/hwmon/
7177 F:      include/linux/hwmon*.h
7178 F:      include/trace/events/hwmon*.h
7179
7180 HARDWARE RANDOM NUMBER GENERATOR CORE
7181 M:      Matt Mackall <mpm@selenic.com>
7182 M:      Herbert Xu <herbert@gondor.apana.org.au>
7183 L:      linux-crypto@vger.kernel.org
7184 S:      Odd fixes
7185 F:      Documentation/devicetree/bindings/rng/
7186 F:      Documentation/admin-guide/hw_random.rst
7187 F:      drivers/char/hw_random/
7188 F:      include/linux/hw_random.h
7189
7190 HARDWARE TRACING FACILITIES
7191 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7192 S:      Maintained
7193 F:      drivers/hwtracing/
7194
7195 HARDWARE SPINLOCK CORE
7196 M:      Ohad Ben-Cohen <ohad@wizery.com>
7197 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
7198 L:      linux-remoteproc@vger.kernel.org
7199 S:      Maintained
7200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
7201 F:      Documentation/devicetree/bindings/hwlock/
7202 F:      Documentation/hwspinlock.txt
7203 F:      drivers/hwspinlock/
7204 F:      include/linux/hwspinlock.h
7205
7206 HARMONY SOUND DRIVER
7207 L:      linux-parisc@vger.kernel.org
7208 S:      Maintained
7209 F:      sound/parisc/harmony.*
7210
7211 HDPVR USB VIDEO ENCODER DRIVER
7212 M:      Hans Verkuil <hverkuil@xs4all.nl>
7213 L:      linux-media@vger.kernel.org
7214 T:      git git://linuxtv.org/media_tree.git
7215 W:      https://linuxtv.org
7216 S:      Odd Fixes
7217 F:      drivers/media/usb/hdpvr/
7218
7219 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7220 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
7221 S:      Supported
7222 F:      Documentation/watchdog/hpwdt.rst
7223 F:      drivers/watchdog/hpwdt.c
7224
7225 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7226 M:      Don Brace <don.brace@microsemi.com>
7227 L:      esc.storagedev@microsemi.com
7228 L:      linux-scsi@vger.kernel.org
7229 S:      Supported
7230 F:      Documentation/scsi/hpsa.txt
7231 F:      drivers/scsi/hpsa*.[ch]
7232 F:      include/linux/cciss*.h
7233 F:      include/uapi/linux/cciss*.h
7234
7235 HFI1 DRIVER
7236 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
7237 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
7238 L:      linux-rdma@vger.kernel.org
7239 S:      Supported
7240 F:      drivers/infiniband/hw/hfi1
7241
7242 HFS FILESYSTEM
7243 L:      linux-fsdevel@vger.kernel.org
7244 S:      Orphan
7245 F:      Documentation/filesystems/hfs.txt
7246 F:      fs/hfs/
7247
7248 HFSPLUS FILESYSTEM
7249 L:      linux-fsdevel@vger.kernel.org
7250 S:      Orphan
7251 F:      Documentation/filesystems/hfsplus.txt
7252 F:      fs/hfsplus/
7253
7254 HGA FRAMEBUFFER DRIVER
7255 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
7256 L:      linux-nvidia@lists.surfsouth.com
7257 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7258 S:      Maintained
7259 F:      drivers/video/fbdev/hgafb.c
7260
7261 HIBERNATION (aka Software Suspend, aka swsusp)
7262 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7263 M:      Pavel Machek <pavel@ucw.cz>
7264 L:      linux-pm@vger.kernel.org
7265 B:      https://bugzilla.kernel.org
7266 S:      Supported
7267 F:      arch/x86/power/
7268 F:      drivers/base/power/
7269 F:      kernel/power/
7270 F:      include/linux/suspend.h
7271 F:      include/linux/freezer.h
7272 F:      include/linux/pm.h
7273 F:      arch/*/include/asm/suspend*.h
7274
7275 HID CORE LAYER
7276 M:      Jiri Kosina <jikos@kernel.org>
7277 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
7278 L:      linux-input@vger.kernel.org
7279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7280 S:      Maintained
7281 F:      drivers/hid/
7282 F:      include/linux/hid*
7283 F:      include/uapi/linux/hid*
7284
7285 HID SENSOR HUB DRIVERS
7286 M:      Jiri Kosina <jikos@kernel.org>
7287 M:      Jonathan Cameron <jic23@kernel.org>
7288 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7289 L:      linux-input@vger.kernel.org
7290 L:      linux-iio@vger.kernel.org
7291 S:      Maintained
7292 F:      Documentation/hid/hid-sensor*
7293 F:      drivers/hid/hid-sensor-*
7294 F:      drivers/iio/*/hid-*
7295 F:      include/linux/hid-sensor-*
7296
7297 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7298 M:      Thomas Gleixner <tglx@linutronix.de>
7299 L:      linux-kernel@vger.kernel.org
7300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7301 S:      Maintained
7302 F:      Documentation/timers/
7303 F:      kernel/time/hrtimer.c
7304 F:      kernel/time/clockevents.c
7305 F:      kernel/time/timer_*.c
7306 F:      include/linux/clockchips.h
7307 F:      include/linux/hrtimer.h
7308
7309 HIGH-SPEED SCC DRIVER FOR AX.25
7310 L:      linux-hams@vger.kernel.org
7311 S:      Orphan
7312 F:      drivers/net/hamradio/dmascc.c
7313 F:      drivers/net/hamradio/scc.c
7314
7315 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7316 M:      HighPoint Linux Team <linux@highpoint-tech.com>
7317 W:      http://www.highpoint-tech.com
7318 S:      Supported
7319 F:      Documentation/scsi/hptiop.txt
7320 F:      drivers/scsi/hptiop.c
7321
7322 HIPPI
7323 M:      Jes Sorensen <jes@trained-monkey.org>
7324 L:      linux-hippi@sunsite.dk
7325 S:      Maintained
7326 F:      include/linux/hippidevice.h
7327 F:      include/uapi/linux/if_hippi.h
7328 F:      net/802/hippi.c
7329 F:      drivers/net/hippi/
7330
7331 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7332 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7333 M:      Salil Mehta <salil.mehta@huawei.com>
7334 L:      netdev@vger.kernel.org
7335 W:      http://www.hisilicon.com
7336 S:      Maintained
7337 F:      drivers/net/ethernet/hisilicon/hns3/
7338
7339 HISILICON LPC BUS DRIVER
7340 M:      john.garry@huawei.com
7341 W:      http://www.hisilicon.com
7342 S:      Maintained
7343 F:      drivers/bus/hisi_lpc.c
7344 F:      Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
7345
7346 HISILICON NETWORK SUBSYSTEM DRIVER
7347 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7348 M:      Salil Mehta <salil.mehta@huawei.com>
7349 L:      netdev@vger.kernel.org
7350 W:      http://www.hisilicon.com
7351 S:      Maintained
7352 F:      drivers/net/ethernet/hisilicon/
7353 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
7354
7355 HISILICON PMU DRIVER
7356 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
7357 W:      http://www.hisilicon.com
7358 S:      Supported
7359 F:      drivers/perf/hisilicon
7360 F:      Documentation/admin-guide/perf/hisi-pmu.rst
7361
7362 HISILICON ROCE DRIVER
7363 M:      Lijun Ou <oulijun@huawei.com>
7364 M:      Wei Hu(Xavier) <xavier.huwei@huawei.com>
7365 L:      linux-rdma@vger.kernel.org
7366 S:      Maintained
7367 F:      drivers/infiniband/hw/hns/
7368 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
7369
7370 HISILICON SAS Controller
7371 M:      John Garry <john.garry@huawei.com>
7372 W:      http://www.hisilicon.com
7373 S:      Supported
7374 F:      drivers/scsi/hisi_sas/
7375 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
7376
7377 HISILICON QM AND ZIP Controller DRIVER
7378 M:      Zhou Wang <wangzhou1@hisilicon.com>
7379 L:      linux-crypto@vger.kernel.org
7380 S:      Maintained
7381 F:      drivers/crypto/hisilicon/qm.c
7382 F:      drivers/crypto/hisilicon/qm.h
7383 F:      drivers/crypto/hisilicon/sgl.c
7384 F:      drivers/crypto/hisilicon/sgl.h
7385 F:      drivers/crypto/hisilicon/zip/
7386 F:      Documentation/ABI/testing/debugfs-hisi-zip
7387
7388 HMM - Heterogeneous Memory Management
7389 M:      Jérôme Glisse <jglisse@redhat.com>
7390 L:      linux-mm@kvack.org
7391 S:      Maintained
7392 F:      mm/hmm*
7393 F:      include/linux/hmm*
7394 F:      Documentation/vm/hmm.rst
7395
7396 HOST AP DRIVER
7397 M:      Jouni Malinen <j@w1.fi>
7398 L:      linux-wireless@vger.kernel.org
7399 W:      http://w1.fi/hostap-driver.html
7400 S:      Obsolete
7401 F:      drivers/net/wireless/intersil/hostap/
7402
7403 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
7404 L:      platform-driver-x86@vger.kernel.org
7405 S:      Orphan
7406 F:      drivers/platform/x86/tc1100-wmi.c
7407
7408 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
7409 M:      Jaroslav Kysela <perex@perex.cz>
7410 S:      Maintained
7411 F:      drivers/net/ethernet/hp/hp100.*
7412
7413 HPET:   High Precision Event Timers driver
7414 M:      Clemens Ladisch <clemens@ladisch.de>
7415 S:      Maintained
7416 F:      Documentation/timers/hpet.rst
7417 F:      drivers/char/hpet.c
7418 F:      include/linux/hpet.h
7419 F:      include/uapi/linux/hpet.h
7420
7421 HPET:   x86
7422 S:      Orphan
7423 F:      arch/x86/kernel/hpet.c
7424 F:      arch/x86/include/asm/hpet.h
7425
7426 HPFS FILESYSTEM
7427 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
7428 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
7429 S:      Maintained
7430 F:      fs/hpfs/
7431
7432 HSI SUBSYSTEM
7433 M:      Sebastian Reichel <sre@kernel.org>
7434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
7435 S:      Maintained
7436 F:      Documentation/ABI/testing/sysfs-bus-hsi
7437 F:      Documentation/driver-api/hsi.rst
7438 F:      drivers/hsi/
7439 F:      include/linux/hsi/
7440 F:      include/uapi/linux/hsi/
7441
7442 HSO 3G MODEM DRIVER
7443 L:      linux-usb@vger.kernel.org
7444 S:      Orphan
7445 F:      drivers/net/usb/hso.c
7446
7447 HSR NETWORK PROTOCOL
7448 M:      Arvid Brodin <arvid.brodin@alten.se>
7449 L:      netdev@vger.kernel.org
7450 S:      Maintained
7451 F:      net/hsr/
7452
7453 HT16K33 LED CONTROLLER DRIVER
7454 M:      Robin van der Gracht <robin@protonic.nl>
7455 S:      Maintained
7456 F:      drivers/auxdisplay/ht16k33.c
7457 F:      Documentation/devicetree/bindings/display/ht16k33.txt
7458
7459 HTCPEN TOUCHSCREEN DRIVER
7460 M:      Pau Oliva Fora <pof@eslack.org>
7461 L:      linux-input@vger.kernel.org
7462 S:      Maintained
7463 F:      drivers/input/touchscreen/htcpen.c
7464
7465 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
7466 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
7467 L:      linux-iio@vger.kernel.org
7468 W:      http://www.st.com/
7469 S:      Maintained
7470 F:      drivers/iio/humidity/hts221*
7471 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
7472
7473 HUAWEI ETHERNET DRIVER
7474 M:      Aviad Krawczyk <aviad.krawczyk@huawei.com>
7475 L:      netdev@vger.kernel.org
7476 S:      Supported
7477 F:      Documentation/networking/hinic.txt
7478 F:      drivers/net/ethernet/huawei/hinic/
7479
7480 HUGETLB FILESYSTEM
7481 M:      Mike Kravetz <mike.kravetz@oracle.com>
7482 L:      linux-mm@kvack.org
7483 S:      Maintained
7484 F:      fs/hugetlbfs/
7485 F:      mm/hugetlb.c
7486 F:      include/linux/hugetlb.h
7487 F:      Documentation/admin-guide/mm/hugetlbpage.rst
7488 F:      Documentation/vm/hugetlbfs_reserv.rst
7489 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
7490
7491 HVA ST MEDIA DRIVER
7492 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
7493 L:      linux-media@vger.kernel.org
7494 T:      git git://linuxtv.org/media_tree.git
7495 W:      https://linuxtv.org
7496 S:      Supported
7497 F:      drivers/media/platform/sti/hva
7498
7499 HWPOISON MEMORY FAILURE HANDLING
7500 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
7501 L:      linux-mm@kvack.org
7502 S:      Maintained
7503 F:      mm/memory-failure.c
7504 F:      mm/hwpoison-inject.c
7505
7506 HYGON PROCESSOR SUPPORT
7507 M:      Pu Wen <puwen@hygon.cn>
7508 L:      linux-kernel@vger.kernel.org
7509 S:      Maintained
7510 F:      arch/x86/kernel/cpu/hygon.c
7511
7512 Hyper-V CORE AND DRIVERS
7513 M:      "K. Y. Srinivasan" <kys@microsoft.com>
7514 M:      Haiyang Zhang <haiyangz@microsoft.com>
7515 M:      Stephen Hemminger <sthemmin@microsoft.com>
7516 M:      Sasha Levin <sashal@kernel.org>
7517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
7518 L:      linux-hyperv@vger.kernel.org
7519 S:      Supported
7520 F:      Documentation/networking/device_drivers/microsoft/netvsc.txt
7521 F:      arch/x86/include/asm/mshyperv.h
7522 F:      arch/x86/include/asm/trace/hyperv.h
7523 F:      arch/x86/include/asm/hyperv-tlfs.h
7524 F:      arch/x86/kernel/cpu/mshyperv.c
7525 F:      arch/x86/hyperv
7526 F:      drivers/clocksource/hyperv_timer.c
7527 F:      drivers/hid/hid-hyperv.c
7528 F:      drivers/hv/
7529 F:      drivers/input/serio/hyperv-keyboard.c
7530 F:      drivers/pci/controller/pci-hyperv.c
7531 F:      drivers/pci/controller/pci-hyperv-intf.c
7532 F:      drivers/net/hyperv/
7533 F:      drivers/scsi/storvsc_drv.c
7534 F:      drivers/uio/uio_hv_generic.c
7535 F:      drivers/video/fbdev/hyperv_fb.c
7536 F:      drivers/iommu/hyperv-iommu.c
7537 F:      net/vmw_vsock/hyperv_transport.c
7538 F:      include/clocksource/hyperv_timer.h
7539 F:      include/linux/hyperv.h
7540 F:      include/uapi/linux/hyperv.h
7541 F:      include/asm-generic/mshyperv.h
7542 F:      tools/hv/
7543 F:      Documentation/ABI/stable/sysfs-bus-vmbus
7544
7545 HYPERBUS SUPPORT
7546 M:      Vignesh Raghavendra <vigneshr@ti.com>
7547 S:      Supported
7548 F:      drivers/mtd/hyperbus/
7549 F:      include/linux/mtd/hyperbus.h
7550 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
7551 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
7552
7553 HYPERVISOR VIRTUAL CONSOLE DRIVER
7554 L:      linuxppc-dev@lists.ozlabs.org
7555 S:      Odd Fixes
7556 F:      drivers/tty/hvc/
7557
7558 I2C ACPI SUPPORT
7559 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7560 L:      linux-i2c@vger.kernel.org
7561 L:      linux-acpi@vger.kernel.org
7562 S:      Maintained
7563 F:      drivers/i2c/i2c-core-acpi.c
7564
7565 I2C CONTROLLER DRIVER FOR NVIDIA GPU
7566 M:      Ajay Gupta <ajayg@nvidia.com>
7567 L:      linux-i2c@vger.kernel.org
7568 S:      Maintained
7569 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
7570 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
7571
7572 I2C MUXES
7573 M:      Peter Rosin <peda@axentia.se>
7574 L:      linux-i2c@vger.kernel.org
7575 S:      Maintained
7576 F:      Documentation/i2c/i2c-topology.rst
7577 F:      Documentation/i2c/muxes/
7578 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
7579 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
7580 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
7581 F:      drivers/i2c/i2c-mux.c
7582 F:      drivers/i2c/muxes/
7583 F:      include/linux/i2c-mux.h
7584
7585 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
7586 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
7587 L:      linux-i2c@vger.kernel.org
7588 S:      Maintained
7589 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
7590 F:      drivers/i2c/busses/i2c-mv64xxx.c
7591
7592 I2C OVER PARALLEL PORT
7593 M:      Jean Delvare <jdelvare@suse.com>
7594 L:      linux-i2c@vger.kernel.org
7595 S:      Maintained
7596 F:      Documentation/i2c/busses/i2c-parport.rst
7597 F:      Documentation/i2c/busses/i2c-parport-light.rst
7598 F:      drivers/i2c/busses/i2c-parport.c
7599 F:      drivers/i2c/busses/i2c-parport-light.c
7600
7601 I2C SUBSYSTEM
7602 M:      Wolfram Sang <wsa@the-dreams.de>
7603 L:      linux-i2c@vger.kernel.org
7604 W:      https://i2c.wiki.kernel.org/
7605 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7606 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7607 S:      Maintained
7608 F:      Documentation/devicetree/bindings/i2c/i2c.txt
7609 F:      Documentation/i2c/
7610 F:      drivers/i2c/*
7611 F:      include/linux/i2c.h
7612 F:      include/linux/i2c-dev.h
7613 F:      include/linux/i2c-smbus.h
7614 F:      include/uapi/linux/i2c.h
7615 F:      include/uapi/linux/i2c-*.h
7616
7617 I2C SUBSYSTEM HOST DRIVERS
7618 L:      linux-i2c@vger.kernel.org
7619 W:      https://i2c.wiki.kernel.org/
7620 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7622 S:      Odd Fixes
7623 F:      Documentation/devicetree/bindings/i2c/
7624 F:      drivers/i2c/algos/
7625 F:      drivers/i2c/busses/
7626
7627 I2C-TAOS-EVM DRIVER
7628 M:      Jean Delvare <jdelvare@suse.com>
7629 L:      linux-i2c@vger.kernel.org
7630 S:      Maintained
7631 F:      Documentation/i2c/busses/i2c-taos-evm.rst
7632 F:      drivers/i2c/busses/i2c-taos-evm.c
7633
7634 I2C-TINY-USB DRIVER
7635 M:      Till Harbaum <till@harbaum.org>
7636 L:      linux-i2c@vger.kernel.org
7637 W:      http://www.harbaum.org/till/i2c_tiny_usb
7638 S:      Maintained
7639 F:      drivers/i2c/busses/i2c-tiny-usb.c
7640
7641 I2C/SMBUS CONTROLLER DRIVERS FOR PC
7642 M:      Jean Delvare <jdelvare@suse.com>
7643 L:      linux-i2c@vger.kernel.org
7644 S:      Maintained
7645 F:      Documentation/i2c/busses/i2c-ali1535.rst
7646 F:      Documentation/i2c/busses/i2c-ali1563.rst
7647 F:      Documentation/i2c/busses/i2c-ali15x3.rst
7648 F:      Documentation/i2c/busses/i2c-amd756.rst
7649 F:      Documentation/i2c/busses/i2c-amd8111.rst
7650 F:      Documentation/i2c/busses/i2c-i801.rst
7651 F:      Documentation/i2c/busses/i2c-nforce2.rst
7652 F:      Documentation/i2c/busses/i2c-piix4.rst
7653 F:      Documentation/i2c/busses/i2c-sis5595.rst
7654 F:      Documentation/i2c/busses/i2c-sis630.rst
7655 F:      Documentation/i2c/busses/i2c-sis96x.rst
7656 F:      Documentation/i2c/busses/i2c-via.rst
7657 F:      Documentation/i2c/busses/i2c-viapro.rst
7658 F:      drivers/i2c/busses/i2c-ali1535.c
7659 F:      drivers/i2c/busses/i2c-ali1563.c
7660 F:      drivers/i2c/busses/i2c-ali15x3.c
7661 F:      drivers/i2c/busses/i2c-amd756.c
7662 F:      drivers/i2c/busses/i2c-amd756-s4882.c
7663 F:      drivers/i2c/busses/i2c-amd8111.c
7664 F:      drivers/i2c/busses/i2c-i801.c
7665 F:      drivers/i2c/busses/i2c-isch.c
7666 F:      drivers/i2c/busses/i2c-nforce2.c
7667 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
7668 F:      drivers/i2c/busses/i2c-piix4.c
7669 F:      drivers/i2c/busses/i2c-sis5595.c
7670 F:      drivers/i2c/busses/i2c-sis630.c
7671 F:      drivers/i2c/busses/i2c-sis96x.c
7672 F:      drivers/i2c/busses/i2c-via.c
7673 F:      drivers/i2c/busses/i2c-viapro.c
7674
7675 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
7676 M:      Hans de Goede <hdegoede@redhat.com>
7677 L:      linux-i2c@vger.kernel.org
7678 S:      Maintained
7679 F:      drivers/i2c/busses/i2c-cht-wc.c
7680
7681 I2C/SMBUS ISMT DRIVER
7682 M:      Seth Heasley <seth.heasley@intel.com>
7683 M:      Neil Horman <nhorman@tuxdriver.com>
7684 L:      linux-i2c@vger.kernel.org
7685 F:      drivers/i2c/busses/i2c-ismt.c
7686 F:      Documentation/i2c/busses/i2c-ismt.rst
7687
7688 I2C/SMBUS STUB DRIVER
7689 M:      Jean Delvare <jdelvare@suse.com>
7690 L:      linux-i2c@vger.kernel.org
7691 S:      Maintained
7692 F:      drivers/i2c/i2c-stub.c
7693
7694 I3C SUBSYSTEM
7695 M:      Boris Brezillon <bbrezillon@kernel.org>
7696 L:      linux-i3c@lists.infradead.org
7697 C:      irc://chat.freenode.net/linux-i3c
7698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
7699 S:      Maintained
7700 F:      Documentation/ABI/testing/sysfs-bus-i3c
7701 F:      Documentation/devicetree/bindings/i3c/
7702 F:      Documentation/driver-api/i3c
7703 F:      drivers/i3c/
7704 F:      include/linux/i3c/
7705
7706 I3C DRIVER FOR SYNOPSYS DESIGNWARE
7707 M:      Vitor Soares <vitor.soares@synopsys.com>
7708 S:      Maintained
7709 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
7710 F:      drivers/i3c/master/dw*
7711
7712 IA64 (Itanium) PLATFORM
7713 M:      Tony Luck <tony.luck@intel.com>
7714 M:      Fenghua Yu <fenghua.yu@intel.com>
7715 L:      linux-ia64@vger.kernel.org
7716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
7717 S:      Maintained
7718 F:      arch/ia64/
7719
7720 IBM Power 842 compression accelerator
7721 M:      Haren Myneni <haren@us.ibm.com>
7722 S:      Supported
7723 F:      drivers/crypto/nx/Makefile
7724 F:      drivers/crypto/nx/Kconfig
7725 F:      drivers/crypto/nx/nx-842*
7726 F:      include/linux/sw842.h
7727 F:      crypto/842.c
7728 F:      lib/842/
7729
7730 IBM Power in-Nest Crypto Acceleration
7731 M:      Breno Leitão <leitao@debian.org>
7732 M:      Nayna Jain <nayna@linux.ibm.com>
7733 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
7734 L:      linux-crypto@vger.kernel.org
7735 S:      Supported
7736 F:      drivers/crypto/nx/Makefile
7737 F:      drivers/crypto/nx/Kconfig
7738 F:      drivers/crypto/nx/nx-aes*
7739 F:      drivers/crypto/nx/nx-sha*
7740 F:      drivers/crypto/nx/nx.*
7741 F:      drivers/crypto/nx/nx_csbcpb.h
7742 F:      drivers/crypto/nx/nx_debugfs.c
7743
7744 IBM Power Linux RAID adapter
7745 M:      Brian King <brking@us.ibm.com>
7746 S:      Supported
7747 F:      drivers/scsi/ipr.*
7748
7749 IBM Power SRIOV Virtual NIC Device Driver
7750 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
7751 M:      John Allen <jallen@linux.ibm.com>
7752 L:      netdev@vger.kernel.org
7753 S:      Supported
7754 F:      drivers/net/ethernet/ibm/ibmvnic.*
7755
7756 IBM Power Virtual Accelerator Switchboard
7757 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
7758 L:      linuxppc-dev@lists.ozlabs.org
7759 S:      Supported
7760 F:      arch/powerpc/platforms/powernv/vas*
7761 F:      arch/powerpc/platforms/powernv/copy-paste.h
7762 F:      arch/powerpc/include/asm/vas.h
7763
7764 IBM Power Virtual Ethernet Device Driver
7765 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
7766 L:      netdev@vger.kernel.org
7767 S:      Supported
7768 F:      drivers/net/ethernet/ibm/ibmveth.*
7769
7770 IBM Power Virtual FC Device Drivers
7771 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
7772 L:      linux-scsi@vger.kernel.org
7773 S:      Supported
7774 F:      drivers/scsi/ibmvscsi/ibmvfc*
7775
7776 IBM Power Virtual Management Channel Driver
7777 M:      Steven Royer <seroyer@linux.ibm.com>
7778 S:      Supported
7779 F:      drivers/misc/ibmvmc.*
7780
7781 IBM Power Virtual SCSI Device Drivers
7782 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
7783 L:      linux-scsi@vger.kernel.org
7784 S:      Supported
7785 F:      drivers/scsi/ibmvscsi/ibmvscsi*
7786 F:      include/scsi/viosrp.h
7787
7788 IBM Power Virtual SCSI Device Target Driver
7789 M:      Michael Cyr <mikecyr@linux.ibm.com>
7790 L:      linux-scsi@vger.kernel.org
7791 L:      target-devel@vger.kernel.org
7792 S:      Supported
7793 F:      drivers/scsi/ibmvscsi_tgt/
7794
7795 IBM Power VMX Cryptographic instructions
7796 M:      Breno Leitão <leitao@debian.org>
7797 M:      Nayna Jain <nayna@linux.ibm.com>
7798 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
7799 L:      linux-crypto@vger.kernel.org
7800 S:      Supported
7801 F:      drivers/crypto/vmx/Makefile
7802 F:      drivers/crypto/vmx/Kconfig
7803 F:      drivers/crypto/vmx/vmx.c
7804 F:      drivers/crypto/vmx/aes*
7805 F:      drivers/crypto/vmx/ghash*
7806 F:      drivers/crypto/vmx/ppc-xlate.pl
7807
7808 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
7809 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
7810 L:      linux-pci@vger.kernel.org
7811 L:      linuxppc-dev@lists.ozlabs.org
7812 S:      Supported
7813 F:      drivers/pci/hotplug/rpaphp*
7814
7815 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
7816 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
7817 L:      linux-pci@vger.kernel.org
7818 L:      linuxppc-dev@lists.ozlabs.org
7819 S:      Supported
7820 F:      drivers/pci/hotplug/rpadlpar*
7821
7822 IBM ServeRAID RAID DRIVER
7823 S:      Orphan
7824 F:      drivers/scsi/ips.*
7825
7826 ICH LPC AND GPIO DRIVER
7827 M:      Peter Tyser <ptyser@xes-inc.com>
7828 S:      Maintained
7829 F:      drivers/mfd/lpc_ich.c
7830 F:      drivers/gpio/gpio-ich.c
7831
7832 IDE SUBSYSTEM
7833 M:      "David S. Miller" <davem@davemloft.net>
7834 L:      linux-ide@vger.kernel.org
7835 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
7836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
7837 S:      Maintained
7838 F:      Documentation/ide/
7839 F:      drivers/ide/
7840 F:      include/linux/ide.h
7841
7842 IDE/ATAPI DRIVERS
7843 M:      Borislav Petkov <bp@alien8.de>
7844 L:      linux-ide@vger.kernel.org
7845 S:      Maintained
7846 F:      Documentation/cdrom/ide-cd.rst
7847 F:      drivers/ide/ide-cd*
7848
7849 IDEAPAD LAPTOP EXTRAS DRIVER
7850 M:      Ike Panhc <ike.pan@canonical.com>
7851 L:      platform-driver-x86@vger.kernel.org
7852 W:      http://launchpad.net/ideapad-laptop
7853 S:      Maintained
7854 F:      drivers/platform/x86/ideapad-laptop.c
7855
7856 IDEAPAD LAPTOP SLIDEBAR DRIVER
7857 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
7858 L:      linux-input@vger.kernel.org
7859 W:      https://github.com/o2genum/ideapad-slidebar
7860 S:      Maintained
7861 F:      drivers/input/misc/ideapad_slidebar.c
7862
7863 IDT VersaClock 5 CLOCK DRIVER
7864 M:      Marek Vasut <marek.vasut@gmail.com>
7865 S:      Maintained
7866 F:      drivers/clk/clk-versaclock5.c
7867
7868 IEEE 802.15.4 SUBSYSTEM
7869 M:      Alexander Aring <alex.aring@gmail.com>
7870 M:      Stefan Schmidt <stefan@datenfreihafen.org>
7871 L:      linux-wpan@vger.kernel.org
7872 W:      http://wpan.cakelab.org/
7873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
7874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
7875 S:      Maintained
7876 F:      net/ieee802154/
7877 F:      net/mac802154/
7878 F:      drivers/net/ieee802154/
7879 F:      include/linux/nl802154.h
7880 F:      include/linux/ieee802154.h
7881 F:      include/net/nl802154.h
7882 F:      include/net/mac802154.h
7883 F:      include/net/af_ieee802154.h
7884 F:      include/net/cfg802154.h
7885 F:      include/net/ieee802154_netdev.h
7886 F:      Documentation/networking/ieee802154.rst
7887
7888 IFE PROTOCOL
7889 M:      Yotam Gigi <yotam.gi@gmail.com>
7890 M:      Jamal Hadi Salim <jhs@mojatatu.com>
7891 F:      net/ife
7892 F:      include/net/ife.h
7893 F:      include/uapi/linux/ife.h
7894
7895 IGORPLUG-USB IR RECEIVER
7896 M:      Sean Young <sean@mess.org>
7897 L:      linux-media@vger.kernel.org
7898 S:      Maintained
7899 F:      drivers/media/rc/igorplugusb.c
7900
7901 IGUANAWORKS USB IR TRANSCEIVER
7902 M:      Sean Young <sean@mess.org>
7903 L:      linux-media@vger.kernel.org
7904 S:      Maintained
7905 F:      drivers/media/rc/iguanair.c
7906
7907 IIO DIGITAL POTENTIOMETER DAC
7908 M:      Peter Rosin <peda@axentia.se>
7909 L:      linux-iio@vger.kernel.org
7910 S:      Maintained
7911 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
7912 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
7913 F:      drivers/iio/dac/dpot-dac.c
7914
7915 IIO ENVELOPE DETECTOR
7916 M:      Peter Rosin <peda@axentia.se>
7917 L:      linux-iio@vger.kernel.org
7918 S:      Maintained
7919 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
7920 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
7921 F:      drivers/iio/adc/envelope-detector.c
7922
7923 IIO MULTIPLEXER
7924 M:      Peter Rosin <peda@axentia.se>
7925 L:      linux-iio@vger.kernel.org
7926 S:      Maintained
7927 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
7928 F:      drivers/iio/multiplexer/iio-mux.c
7929
7930 IIO SUBSYSTEM AND DRIVERS
7931 M:      Jonathan Cameron <jic23@kernel.org>
7932 R:      Hartmut Knaack <knaack.h@gmx.de>
7933 R:      Lars-Peter Clausen <lars@metafoo.de>
7934 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
7935 L:      linux-iio@vger.kernel.org
7936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
7937 S:      Maintained
7938 F:      Documentation/ABI/testing/configfs-iio*
7939 F:      Documentation/ABI/testing/sysfs-bus-iio*
7940 F:      Documentation/devicetree/bindings/iio/
7941 F:      drivers/iio/
7942 F:      drivers/staging/iio/
7943 F:      include/linux/iio/
7944 F:      tools/iio/
7945
7946 IIO UNIT CONVERTER
7947 M:      Peter Rosin <peda@axentia.se>
7948 L:      linux-iio@vger.kernel.org
7949 S:      Maintained
7950 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
7951 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
7952 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
7953 F:      drivers/iio/afe/iio-rescale.c
7954
7955 IKANOS/ADI EAGLE ADSL USB DRIVER
7956 M:      Matthieu Castet <castet.matthieu@free.fr>
7957 M:      Stanislaw Gruszka <stf_xl@wp.pl>
7958 S:      Maintained
7959 F:      drivers/usb/atm/ueagle-atm.c
7960
7961 IMGTEC ASCII LCD DRIVER
7962 M:      Paul Burton <paul.burton@mips.com>
7963 S:      Maintained
7964 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
7965 F:      drivers/auxdisplay/img-ascii-lcd.c
7966
7967 IMGTEC IR DECODER DRIVER
7968 M:      James Hogan <jhogan@kernel.org>
7969 S:      Maintained
7970 F:      drivers/media/rc/img-ir/
7971
7972 IMON SOUNDGRAPH USB IR RECEIVER
7973 M:      Sean Young <sean@mess.org>
7974 L:      linux-media@vger.kernel.org
7975 S:      Maintained
7976 F:      drivers/media/rc/imon_raw.c
7977 F:      drivers/media/rc/imon.c
7978
7979 IMS TWINTURBO FRAMEBUFFER DRIVER
7980 L:      linux-fbdev@vger.kernel.org
7981 S:      Orphan
7982 F:      drivers/video/fbdev/imsttfb.c
7983
7984 INA209 HARDWARE MONITOR DRIVER
7985 M:      Guenter Roeck <linux@roeck-us.net>
7986 L:      linux-hwmon@vger.kernel.org
7987 S:      Maintained
7988 F:      Documentation/hwmon/ina209.rst
7989 F:      Documentation/devicetree/bindings/hwmon/ina2xx.txt
7990 F:      drivers/hwmon/ina209.c
7991
7992 INA2XX HARDWARE MONITOR DRIVER
7993 M:      Guenter Roeck <linux@roeck-us.net>
7994 L:      linux-hwmon@vger.kernel.org
7995 S:      Maintained
7996 F:      Documentation/hwmon/ina2xx.rst
7997 F:      drivers/hwmon/ina2xx.c
7998 F:      include/linux/platform_data/ina2xx.h
7999
8000 INDUSTRY PACK SUBSYSTEM (IPACK)
8001 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8002 M:      Jens Taprogge <jens.taprogge@taprogge.org>
8003 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8004 L:      industrypack-devel@lists.sourceforge.net
8005 W:      http://industrypack.sourceforge.net
8006 S:      Maintained
8007 F:      drivers/ipack/
8008
8009 INFINEON DPS310 Driver
8010 M:      Eddie James <eajames@linux.ibm.com>
8011 L:      linux-iio@vger.kernel.org
8012 F:      drivers/iio/pressure/dps310.c
8013 S:      Maintained
8014
8015 INFINIBAND SUBSYSTEM
8016 M:      Doug Ledford <dledford@redhat.com>
8017 M:      Jason Gunthorpe <jgg@mellanox.com>
8018 L:      linux-rdma@vger.kernel.org
8019 W:      https://github.com/linux-rdma/rdma-core
8020 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8022 S:      Supported
8023 F:      Documentation/devicetree/bindings/infiniband/
8024 F:      Documentation/infiniband/
8025 F:      drivers/infiniband/
8026 F:      include/uapi/linux/if_infiniband.h
8027 F:      include/uapi/rdma/
8028 F:      include/rdma/
8029 F:      include/trace/events/ib_mad.h
8030 F:      include/trace/events/ib_umad.h
8031 F:      samples/bpf/ibumad_kern.c
8032 F:      samples/bpf/ibumad_user.c
8033
8034 INGENIC JZ4780 DMA Driver
8035 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
8036 S:      Maintained
8037 F:      drivers/dma/dma-jz4780.c
8038
8039 INGENIC JZ4780 NAND DRIVER
8040 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
8041 L:      linux-mtd@lists.infradead.org
8042 S:      Maintained
8043 F:      drivers/mtd/nand/raw/ingenic/
8044
8045 INGENIC JZ47xx SoCs
8046 M:      Paul Cercueil <paul@crapouillou.net>
8047 S:      Maintained
8048 F:      arch/mips/boot/dts/ingenic/
8049 F:      arch/mips/include/asm/mach-jz4740/
8050 F:      arch/mips/jz4740/
8051 F:      drivers/clk/ingenic/
8052 F:      drivers/dma/dma-jz4780.c
8053 F:      drivers/gpu/drm/ingenic/
8054 F:      drivers/i2c/busses/i2c-jz4780.c
8055 F:      drivers/iio/adc/ingenic-adc.c
8056 F:      drivers/irqchip/irq-ingenic.c
8057 F:      drivers/memory/jz4780-nemc.c
8058 F:      drivers/mmc/host/jz4740_mmc.c
8059 F:      drivers/mtd/nand/raw/ingenic/
8060 F:      drivers/pinctrl/pinctrl-ingenic.c
8061 F:      drivers/power/supply/ingenic-battery.c
8062 F:      drivers/pwm/pwm-jz4740.c
8063 F:      drivers/rtc/rtc-jz4740.c
8064 F:      drivers/tty/serial/8250/8250_ingenic.c
8065 F:      drivers/usb/musb/jz4740.c
8066 F:      drivers/watchdog/jz4740_wdt.c
8067 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8068 F:      include/linux/mfd/ingenic-tcu.h
8069 F:      sound/soc/jz4740/
8070 F:      sound/soc/codecs/jz47*
8071
8072 INOTIFY
8073 M:      Jan Kara <jack@suse.cz>
8074 R:      Amir Goldstein <amir73il@gmail.com>
8075 L:      linux-fsdevel@vger.kernel.org
8076 S:      Maintained
8077 F:      Documentation/filesystems/inotify.txt
8078 F:      fs/notify/inotify/
8079 F:      include/linux/inotify.h
8080 F:      include/uapi/linux/inotify.h
8081
8082 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8083 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
8084 L:      linux-input@vger.kernel.org
8085 Q:      http://patchwork.kernel.org/project/linux-input/list/
8086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8087 S:      Maintained
8088 F:      drivers/input/
8089 F:      include/linux/input.h
8090 F:      include/uapi/linux/input.h
8091 F:      include/uapi/linux/input-event-codes.h
8092 F:      include/linux/input/
8093 F:      Documentation/devicetree/bindings/input/
8094 F:      Documentation/devicetree/bindings/serio/
8095 F:      Documentation/input/
8096
8097 INPUT MULTITOUCH (MT) PROTOCOL
8098 M:      Henrik Rydberg <rydberg@bitmath.org>
8099 L:      linux-input@vger.kernel.org
8100 S:      Odd fixes
8101 F:      Documentation/input/multi-touch-protocol.rst
8102 F:      drivers/input/input-mt.c
8103 K:      \b(ABS|SYN)_MT_
8104
8105 INSIDE SECURE CRYPTO DRIVER
8106 M:      Antoine Tenart <antoine.tenart@bootlin.com>
8107 F:      drivers/crypto/inside-secure/
8108 S:      Maintained
8109 L:      linux-crypto@vger.kernel.org
8110
8111 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8112 M:      Mimi Zohar <zohar@linux.ibm.com>
8113 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
8114 L:      linux-integrity@vger.kernel.org
8115 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8116 S:      Supported
8117 F:      security/integrity/ima/
8118
8119 INTEL 810/815 FRAMEBUFFER DRIVER
8120 M:      Antonino Daplas <adaplas@gmail.com>
8121 L:      linux-fbdev@vger.kernel.org
8122 S:      Maintained
8123 F:      drivers/video/fbdev/i810/
8124
8125 INTEL ASoC DRIVERS
8126 M:      Cezary Rojewski <cezary.rojewski@intel.com>
8127 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
8128 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
8129 M:      Jie Yang <yang.jie@linux.intel.com>
8130 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8131 S:      Supported
8132 F:      sound/soc/intel/
8133
8134 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8135 M:      Hans de Goede <hdegoede@redhat.com>
8136 L:      platform-driver-x86@vger.kernel.org
8137 S:      Maintained
8138 F:      drivers/platform/x86/intel_atomisp2_pm.c
8139
8140 INTEL C600 SERIES SAS CONTROLLER DRIVER
8141 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
8142 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
8143 L:      linux-scsi@vger.kernel.org
8144 T:      git git://git.code.sf.net/p/intel-sas/isci
8145 S:      Supported
8146 F:      drivers/scsi/isci/
8147
8148 INTEL CPU family model numbers
8149 M:      Tony Luck <tony.luck@intel.com>
8150 M:      x86@kernel.org
8151 L:      linux-kernel@vger.kernel.org
8152 S:      Supported
8153 F:      arch/x86/include/asm/intel-family.h
8154
8155 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8156 M:      Jani Nikula <jani.nikula@linux.intel.com>
8157 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
8158 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
8159 L:      intel-gfx@lists.freedesktop.org
8160 W:      https://01.org/linuxgraphics/
8161 B:      https://01.org/linuxgraphics/documentation/how-report-bugs
8162 C:      irc://chat.freenode.net/intel-gfx
8163 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8164 T:      git git://anongit.freedesktop.org/drm-intel
8165 S:      Supported
8166 F:      drivers/gpu/drm/i915/
8167 F:      include/drm/i915*
8168 F:      include/uapi/drm/i915_drm.h
8169 F:      Documentation/gpu/i915.rst
8170
8171 INTEL ETHERNET DRIVERS
8172 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
8173 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
8174 W:      http://www.intel.com/support/feedback.htm
8175 W:      http://e1000.sourceforge.net/
8176 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
8178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
8179 S:      Supported
8180 F:      Documentation/networking/device_drivers/intel/e100.rst
8181 F:      Documentation/networking/device_drivers/intel/e1000.rst
8182 F:      Documentation/networking/device_drivers/intel/e1000e.rst
8183 F:      Documentation/networking/device_drivers/intel/fm10k.rst
8184 F:      Documentation/networking/device_drivers/intel/igb.rst
8185 F:      Documentation/networking/device_drivers/intel/igbvf.rst
8186 F:      Documentation/networking/device_drivers/intel/ixgb.rst
8187 F:      Documentation/networking/device_drivers/intel/ixgbe.rst
8188 F:      Documentation/networking/device_drivers/intel/ixgbevf.rst
8189 F:      Documentation/networking/device_drivers/intel/i40e.rst
8190 F:      Documentation/networking/device_drivers/intel/iavf.rst
8191 F:      Documentation/networking/device_drivers/intel/ice.rst
8192 F:      drivers/net/ethernet/intel/
8193 F:      drivers/net/ethernet/intel/*/
8194 F:      include/linux/avf/virtchnl.h
8195
8196 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8197 M:      Maik Broemme <mbroemme@libmpq.org>
8198 L:      linux-fbdev@vger.kernel.org
8199 S:      Maintained
8200 F:      Documentation/fb/intelfb.rst
8201 F:      drivers/video/fbdev/intelfb/
8202
8203 INTEL GPIO DRIVERS
8204 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8205 L:      linux-gpio@vger.kernel.org
8206 S:      Maintained
8207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8208 F:      drivers/gpio/gpio-ich.c
8209 F:      drivers/gpio/gpio-intel-mid.c
8210 F:      drivers/gpio/gpio-lynxpoint.c
8211 F:      drivers/gpio/gpio-merrifield.c
8212 F:      drivers/gpio/gpio-ml-ioh.c
8213 F:      drivers/gpio/gpio-pch.c
8214 F:      drivers/gpio/gpio-sch.c
8215 F:      drivers/gpio/gpio-sodaville.c
8216
8217 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8218 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
8219 M:      Zhi Wang <zhi.a.wang@intel.com>
8220 L:      intel-gvt-dev@lists.freedesktop.org
8221 L:      intel-gfx@lists.freedesktop.org
8222 W:      https://01.org/igvt-g
8223 T:      git https://github.com/intel/gvt-linux.git
8224 S:      Supported
8225 F:      drivers/gpu/drm/i915/gvt/
8226
8227 INTEL HID EVENT DRIVER
8228 M:      Alex Hung <alex.hung@canonical.com>
8229 L:      platform-driver-x86@vger.kernel.org
8230 S:      Maintained
8231 F:      drivers/platform/x86/intel-hid.c
8232
8233 INTEL I/OAT DMA DRIVER
8234 M:      Dave Jiang <dave.jiang@intel.com>
8235 R:      Dan Williams <dan.j.williams@intel.com>
8236 L:      dmaengine@vger.kernel.org
8237 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8238 S:      Supported
8239 F:      drivers/dma/ioat*
8240
8241 INTEL IDLE DRIVER
8242 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
8243 M:      Len Brown <lenb@kernel.org>
8244 L:      linux-pm@vger.kernel.org
8245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8246 B:      https://bugzilla.kernel.org
8247 S:      Supported
8248 F:      drivers/idle/intel_idle.c
8249
8250 INTEL INTEGRATED SENSOR HUB DRIVER
8251 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8252 M:      Jiri Kosina <jikos@kernel.org>
8253 L:      linux-input@vger.kernel.org
8254 S:      Maintained
8255 F:      drivers/hid/intel-ish-hid/
8256
8257 INTEL IOMMU (VT-d)
8258 M:      David Woodhouse <dwmw2@infradead.org>
8259 L:      iommu@lists.linux-foundation.org
8260 T:      git git://git.infradead.org/iommu-2.6.git
8261 S:      Supported
8262 F:      drivers/iommu/intel-iommu.c
8263 F:      include/linux/intel-iommu.h
8264
8265 INTEL IOP-ADMA DMA DRIVER
8266 R:      Dan Williams <dan.j.williams@intel.com>
8267 S:      Odd fixes
8268 F:      drivers/dma/iop-adma.c
8269
8270 INTEL IPU3 CSI-2 CIO2 DRIVER
8271 M:      Yong Zhi <yong.zhi@intel.com>
8272 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8273 M:      Bingbu Cao <bingbu.cao@intel.com>
8274 R:      Tian Shu Qiu <tian.shu.qiu@intel.com>
8275 L:      linux-media@vger.kernel.org
8276 S:      Maintained
8277 F:      drivers/media/pci/intel/ipu3/
8278 F:      Documentation/media/uapi/v4l/pixfmt-srggb10-ipu3.rst
8279
8280 INTEL IPU3 CSI-2 IMGU DRIVER
8281 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8282 L:      linux-media@vger.kernel.org
8283 S:      Maintained
8284 F:      drivers/staging/media/ipu3/
8285 F:      Documentation/media/uapi/v4l/pixfmt-meta-intel-ipu3.rst
8286 F:      Documentation/media/v4l-drivers/ipu3.rst
8287
8288 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8289 M:      Krzysztof Halasa <khalasa@piap.pl>
8290 S:      Maintained
8291 F:      include/linux/soc/ixp4xx/qmgr.h
8292 F:      include/linux/soc/ixp4xx/npe.h
8293 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
8294 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
8295 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
8296 F:      drivers/net/wan/ixp4xx_hss.c
8297
8298 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
8299 M:      Deepak Saxena <dsaxena@plexity.net>
8300 S:      Maintained
8301 F:      drivers/char/hw_random/ixp4xx-rng.c
8302
8303 INTEL MANAGEMENT ENGINE (mei)
8304 M:      Tomas Winkler <tomas.winkler@intel.com>
8305 L:      linux-kernel@vger.kernel.org
8306 S:      Supported
8307 F:      include/uapi/linux/mei.h
8308 F:      include/linux/mei_cl_bus.h
8309 F:      drivers/misc/mei/*
8310 F:      drivers/watchdog/mei_wdt.c
8311 F:      Documentation/driver-api/mei/*
8312 F:      samples/mei/*
8313
8314 INTEL MENLOW THERMAL DRIVER
8315 M:      Sujith Thomas <sujith.thomas@intel.com>
8316 L:      platform-driver-x86@vger.kernel.org
8317 W:      https://01.org/linux-acpi
8318 S:      Supported
8319 F:      drivers/platform/x86/intel_menlow.c
8320
8321 INTEL MIC DRIVERS (mic)
8322 M:      Sudeep Dutt <sudeep.dutt@intel.com>
8323 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
8324 S:      Supported
8325 W:      https://github.com/sudeepdutt/mic
8326 W:      http://software.intel.com/en-us/mic-developer
8327 F:      include/linux/mic_bus.h
8328 F:      include/linux/scif.h
8329 F:      include/uapi/linux/mic_common.h
8330 F:      include/uapi/linux/mic_ioctl.h
8331 F:      include/uapi/linux/scif_ioctl.h
8332 F:      drivers/misc/mic/
8333 F:      drivers/dma/mic_x100_dma.c
8334 F:      drivers/dma/mic_x100_dma.h
8335 F:      Documentation/mic/
8336
8337 INTEL PMC CORE DRIVER
8338 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
8339 M:      Vishwanath Somayaji <vishwanath.somayaji@intel.com>
8340 L:      platform-driver-x86@vger.kernel.org
8341 S:      Maintained
8342 F:      drivers/platform/x86/intel_pmc_core*
8343
8344 INTEL PMC/P-Unit IPC DRIVER
8345 M:      Zha Qipeng<qipeng.zha@intel.com>
8346 L:      platform-driver-x86@vger.kernel.org
8347 S:      Maintained
8348 F:      drivers/platform/x86/intel_pmc_ipc.c
8349 F:      drivers/platform/x86/intel_punit_ipc.c
8350 F:      arch/x86/include/asm/intel_pmc_ipc.h
8351 F:      arch/x86/include/asm/intel_punit_ipc.h
8352
8353 INTEL PMIC GPIO DRIVERS
8354 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8355 S:      Maintained
8356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8357 F:      drivers/gpio/gpio-*cove.c
8358 F:      drivers/gpio/gpio-msic.c
8359
8360 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
8361 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8362 S:      Maintained
8363 F:      drivers/mfd/intel_msic.c
8364 F:      drivers/mfd/intel_soc_pmic*
8365 F:      include/linux/mfd/intel_msic.h
8366 F:      include/linux/mfd/intel_soc_pmic*
8367
8368 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
8369 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
8370 L:      linux-wireless@vger.kernel.org
8371 S:      Maintained
8372 F:      Documentation/networking/device_drivers/intel/ipw2100.txt
8373 F:      Documentation/networking/device_drivers/intel/ipw2200.txt
8374 F:      drivers/net/wireless/intel/ipw2x00/
8375
8376 INTEL PSTATE DRIVER
8377 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8378 M:      Len Brown <lenb@kernel.org>
8379 L:      linux-pm@vger.kernel.org
8380 S:      Supported
8381 F:      drivers/cpufreq/intel_pstate.c
8382
8383 INTEL RDMA RNIC DRIVER
8384 M:      Faisal Latif <faisal.latif@intel.com>
8385 M:      Shiraz Saleem <shiraz.saleem@intel.com>
8386 L:      linux-rdma@vger.kernel.org
8387 S:      Supported
8388 F:      drivers/infiniband/hw/i40iw/
8389 F:      include/uapi/rdma/i40iw-abi.h
8390
8391 INTEL SPEED SELECT TECHNOLOGY
8392 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8393 L:      platform-driver-x86@vger.kernel.org
8394 S:      Maintained
8395 F:      drivers/platform/x86/intel_speed_select_if/
8396 F:      tools/power/x86/intel-speed-select/
8397 F:      include/uapi/linux/isst_if.h
8398
8399 INTEL STRATIX10 FIRMWARE DRIVERS
8400 M:      Richard Gong <richard.gong@linux.intel.com>
8401 L:      linux-kernel@vger.kernel.org
8402 S:      Maintained
8403 F:      drivers/firmware/stratix10-rsu.c
8404 F:      drivers/firmware/stratix10-svc.c
8405 F:      include/linux/firmware/intel/stratix10-smc.h
8406 F:      include/linux/firmware/intel/stratix10-svc-client.h
8407 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
8408 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
8409
8410 INTEL TELEMETRY DRIVER
8411 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
8412 M:      "David E. Box" <david.e.box@linux.intel.com>
8413 L:      platform-driver-x86@vger.kernel.org
8414 S:      Maintained
8415 F:      arch/x86/include/asm/intel_telemetry.h
8416 F:      drivers/platform/x86/intel_telemetry*
8417
8418 INTEL VIRTUAL BUTTON DRIVER
8419 M:      AceLan Kao <acelan.kao@canonical.com>
8420 L:      platform-driver-x86@vger.kernel.org
8421 S:      Maintained
8422 F:      drivers/platform/x86/intel-vbtn.c
8423
8424 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
8425 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8426 L:      linux-wireless@vger.kernel.org
8427 S:      Supported
8428 F:      drivers/net/wireless/intel/iwlegacy/
8429
8430 INTEL WIRELESS WIFI LINK (iwlwifi)
8431 M:      Johannes Berg <johannes.berg@intel.com>
8432 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
8433 M:      Luca Coelho <luciano.coelho@intel.com>
8434 M:      Intel Linux Wireless <linuxwifi@intel.com>
8435 L:      linux-wireless@vger.kernel.org
8436 W:      http://intellinuxwireless.org
8437 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
8438 S:      Supported
8439 F:      drivers/net/wireless/intel/iwlwifi/
8440
8441 INTEL WIRELESS WIMAX CONNECTION 2400
8442 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
8443 M:      linux-wimax@intel.com
8444 L:      wimax@linuxwimax.org (subscribers-only)
8445 S:      Supported
8446 W:      http://linuxwimax.org
8447 F:      Documentation/admin-guide/wimax/i2400m.rst
8448 F:      drivers/net/wimax/i2400m/
8449 F:      include/uapi/linux/wimax/i2400m.h
8450
8451 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
8452 M:      Mario Limonciello <mario.limonciello@dell.com>
8453 S:      Maintained
8454 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
8455
8456 INTEL(R) TRACE HUB
8457 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8458 S:      Supported
8459 F:      Documentation/trace/intel_th.rst
8460 F:      drivers/hwtracing/intel_th/
8461 F:      include/linux/intel_th.h
8462
8463 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
8464 M:      Ning Sun <ning.sun@intel.com>
8465 L:      tboot-devel@lists.sourceforge.net
8466 W:      http://tboot.sourceforge.net
8467 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
8468 S:      Supported
8469 F:      Documentation/x86/intel_txt.rst
8470 F:      include/linux/tboot.h
8471 F:      arch/x86/kernel/tboot.c
8472
8473 INTERCONNECT API
8474 M:      Georgi Djakov <georgi.djakov@linaro.org>
8475 L:      linux-pm@vger.kernel.org
8476 S:      Maintained
8477 F:      Documentation/driver-api/interconnect.rst
8478 F:      Documentation/devicetree/bindings/interconnect/
8479 F:      drivers/interconnect/
8480 F:      include/dt-bindings/interconnect/
8481 F:      include/linux/interconnect-provider.h
8482 F:      include/linux/interconnect.h
8483
8484 INVENSENSE MPU-3050 GYROSCOPE DRIVER
8485 M:      Linus Walleij <linus.walleij@linaro.org>
8486 L:      linux-iio@vger.kernel.org
8487 S:      Maintained
8488 F:      drivers/iio/gyro/mpu3050*
8489 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
8490
8491 IOC3 ETHERNET DRIVER
8492 M:      Ralf Baechle <ralf@linux-mips.org>
8493 L:      linux-mips@vger.kernel.org
8494 S:      Maintained
8495 F:      drivers/net/ethernet/sgi/ioc3-eth.c
8496
8497 IOMAP FILESYSTEM LIBRARY
8498 M:      Christoph Hellwig <hch@infradead.org>
8499 M:      Darrick J. Wong <darrick.wong@oracle.com>
8500 M:      linux-xfs@vger.kernel.org
8501 M:      linux-fsdevel@vger.kernel.org
8502 L:      linux-xfs@vger.kernel.org
8503 L:      linux-fsdevel@vger.kernel.org
8504 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
8505 S:      Supported
8506 F:      fs/iomap/
8507 F:      include/linux/iomap.h
8508
8509 IOMMU DRIVERS
8510 M:      Joerg Roedel <joro@8bytes.org>
8511 L:      iommu@lists.linux-foundation.org
8512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8513 S:      Maintained
8514 F:      Documentation/devicetree/bindings/iommu/
8515 F:      drivers/iommu/
8516 F:      include/linux/iommu.h
8517 F:      include/linux/of_iommu.h
8518 F:      include/linux/iova.h
8519
8520 IO_URING
8521 M:      Jens Axboe <axboe@kernel.dk>
8522 L:      linux-block@vger.kernel.org
8523 L:      linux-fsdevel@vger.kernel.org
8524 T:      git git://git.kernel.dk/linux-block
8525 T:      git git://git.kernel.dk/liburing
8526 S:      Maintained
8527 F:      fs/io_uring.c
8528 F:      include/uapi/linux/io_uring.h
8529
8530 IPMI SUBSYSTEM
8531 M:      Corey Minyard <minyard@acm.org>
8532 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
8533 W:      http://openipmi.sourceforge.net/
8534 S:      Supported
8535 F:      Documentation/devicetree/bindings/ipmi/
8536 F:      Documentation/IPMI.txt
8537 F:      drivers/char/ipmi/
8538 F:      include/linux/ipmi*
8539 F:      include/uapi/linux/ipmi*
8540
8541 IPS SCSI RAID DRIVER
8542 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
8543 L:      linux-scsi@vger.kernel.org
8544 W:      http://www.adaptec.com/
8545 S:      Maintained
8546 F:      drivers/scsi/ips*
8547
8548 IPVS
8549 M:      Wensong Zhang <wensong@linux-vs.org>
8550 M:      Simon Horman <horms@verge.net.au>
8551 M:      Julian Anastasov <ja@ssi.bg>
8552 L:      netdev@vger.kernel.org
8553 L:      lvs-devel@vger.kernel.org
8554 S:      Maintained
8555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
8556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
8557 F:      Documentation/networking/ipvs-sysctl.txt
8558 F:      include/net/ip_vs.h
8559 F:      include/uapi/linux/ip_vs.h
8560 F:      net/netfilter/ipvs/
8561
8562 IPWIRELESS DRIVER
8563 M:      Jiri Kosina <jikos@kernel.org>
8564 M:      David Sterba <dsterba@suse.com>
8565 S:      Odd Fixes
8566 F:      drivers/tty/ipwireless/
8567
8568 IPX NETWORK LAYER
8569 L:      netdev@vger.kernel.org
8570 S:      Obsolete
8571 F:      include/uapi/linux/ipx.h
8572
8573 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
8574 M:      Marc Zyngier <maz@kernel.org>
8575 S:      Maintained
8576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8577 F:      Documentation/IRQ-domain.txt
8578 F:      include/linux/irqdomain.h
8579 F:      kernel/irq/irqdomain.c
8580 F:      kernel/irq/msi.c
8581
8582 IRQ SUBSYSTEM
8583 M:      Thomas Gleixner <tglx@linutronix.de>
8584 L:      linux-kernel@vger.kernel.org
8585 S:      Maintained
8586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8587 F:      kernel/irq/
8588
8589 IRQCHIP DRIVERS
8590 M:      Thomas Gleixner <tglx@linutronix.de>
8591 M:      Jason Cooper <jason@lakedaemon.net>
8592 M:      Marc Zyngier <maz@kernel.org>
8593 L:      linux-kernel@vger.kernel.org
8594 S:      Maintained
8595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8596 F:      Documentation/devicetree/bindings/interrupt-controller/
8597 F:      drivers/irqchip/
8598
8599 ISA
8600 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
8601 S:      Maintained
8602 F:      Documentation/driver-api/isa.rst
8603 F:      drivers/base/isa.c
8604 F:      include/linux/isa.h
8605
8606 ISA RADIO MODULE
8607 M:      Hans Verkuil <hverkuil@xs4all.nl>
8608 L:      linux-media@vger.kernel.org
8609 T:      git git://linuxtv.org/media_tree.git
8610 W:      https://linuxtv.org
8611 S:      Maintained
8612 F:      drivers/media/radio/radio-isa*
8613
8614 ISAPNP
8615 M:      Jaroslav Kysela <perex@perex.cz>
8616 S:      Maintained
8617 F:      Documentation/driver-api/isapnp.rst
8618 F:      drivers/pnp/isapnp/
8619 F:      include/linux/isapnp.h
8620
8621 ISCSI
8622 M:      Lee Duncan <lduncan@suse.com>
8623 M:      Chris Leech <cleech@redhat.com>
8624 L:      open-iscsi@googlegroups.com
8625 W:      www.open-iscsi.com
8626 S:      Maintained
8627 F:      drivers/scsi/*iscsi*
8628 F:      include/scsi/*iscsi*
8629
8630 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
8631 M:      Peter Jones <pjones@redhat.com>
8632 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
8633 S:      Maintained
8634 F:      drivers/firmware/iscsi_ibft*
8635
8636 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
8637 M:      Sagi Grimberg <sagi@grimberg.me>
8638 M:      Max Gurtovoy <maxg@mellanox.com>
8639 L:      linux-rdma@vger.kernel.org
8640 S:      Supported
8641 W:      http://www.openfabrics.org
8642 W:      www.open-iscsi.org
8643 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8644 F:      drivers/infiniband/ulp/iser/
8645
8646 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
8647 M:      Sagi Grimberg <sagi@grimberg.me>
8648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
8649 L:      linux-rdma@vger.kernel.org
8650 L:      target-devel@vger.kernel.org
8651 S:      Supported
8652 W:      http://www.linux-iscsi.org
8653 F:      drivers/infiniband/ulp/isert
8654
8655 ISDN/mISDN SUBSYSTEM
8656 M:      Karsten Keil <isdn@linux-pingi.de>
8657 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
8658 L:      netdev@vger.kernel.org
8659 W:      http://www.isdn4linux.de
8660 S:      Maintained
8661 F:      drivers/isdn/mISDN
8662 F:      drivers/isdn/hardware
8663
8664 ISDN/CAPI SUBSYSTEM
8665 M:      Karsten Keil <isdn@linux-pingi.de>
8666 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
8667 L:      netdev@vger.kernel.org
8668 W:      http://www.isdn4linux.de
8669 S:      Odd Fixes
8670 F:      Documentation/isdn/
8671 F:      drivers/isdn/capi/
8672 F:      drivers/staging/isdn/
8673 F:      net/bluetooth/cmtp/
8674 F:      include/linux/isdn/
8675 F:      include/uapi/linux/isdn/
8676
8677 IT87 HARDWARE MONITORING DRIVER
8678 M:      Jean Delvare <jdelvare@suse.com>
8679 L:      linux-hwmon@vger.kernel.org
8680 S:      Maintained
8681 F:      Documentation/hwmon/it87.rst
8682 F:      drivers/hwmon/it87.c
8683
8684 IT913X MEDIA DRIVER
8685 M:      Antti Palosaari <crope@iki.fi>
8686 L:      linux-media@vger.kernel.org
8687 W:      https://linuxtv.org
8688 W:      http://palosaari.fi/linux/
8689 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8690 T:      git git://linuxtv.org/anttip/media_tree.git
8691 S:      Maintained
8692 F:      drivers/media/tuners/it913x*
8693
8694 IVTV VIDEO4LINUX DRIVER
8695 M:      Andy Walls <awalls@md.metrocast.net>
8696 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
8697 L:      linux-media@vger.kernel.org
8698 T:      git git://linuxtv.org/media_tree.git
8699 W:      http://www.ivtvdriver.org
8700 S:      Maintained
8701 F:      Documentation/media/v4l-drivers/ivtv*
8702 F:      drivers/media/pci/ivtv/
8703 F:      include/uapi/linux/ivtv*
8704
8705 IX2505V MEDIA DRIVER
8706 M:      Malcolm Priestley <tvboxspy@gmail.com>
8707 L:      linux-media@vger.kernel.org
8708 W:      https://linuxtv.org
8709 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8710 S:      Maintained
8711 F:      drivers/media/dvb-frontends/ix2505v*
8712
8713 JAILHOUSE HYPERVISOR INTERFACE
8714 M:      Jan Kiszka <jan.kiszka@siemens.com>
8715 L:      jailhouse-dev@googlegroups.com
8716 S:      Maintained
8717 F:      arch/x86/kernel/jailhouse.c
8718 F:      arch/x86/include/asm/jailhouse_para.h
8719
8720 JC42.4 TEMPERATURE SENSOR DRIVER
8721 M:      Guenter Roeck <linux@roeck-us.net>
8722 L:      linux-hwmon@vger.kernel.org
8723 S:      Maintained
8724 F:      drivers/hwmon/jc42.c
8725 F:      Documentation/hwmon/jc42.rst
8726
8727 JFS FILESYSTEM
8728 M:      Dave Kleikamp <shaggy@kernel.org>
8729 L:      jfs-discussion@lists.sourceforge.net
8730 W:      http://jfs.sourceforge.net/
8731 T:      git git://github.com/kleikamp/linux-shaggy.git
8732 S:      Maintained
8733 F:      Documentation/admin-guide/jfs.rst
8734 F:      fs/jfs/
8735
8736 JME NETWORK DRIVER
8737 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
8738 L:      netdev@vger.kernel.org
8739 S:      Maintained
8740 F:      drivers/net/ethernet/jme.*
8741
8742 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
8743 M:      David Woodhouse <dwmw2@infradead.org>
8744 M:      Richard Weinberger <richard@nod.at>
8745 L:      linux-mtd@lists.infradead.org
8746 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
8747 T:      git git://git.infradead.org/ubifs-2.6.git
8748 S:      Odd Fixes
8749 F:      fs/jffs2/
8750 F:      include/uapi/linux/jffs2.h
8751
8752 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
8753 M:      "Theodore Ts'o" <tytso@mit.edu>
8754 M:      Jan Kara <jack@suse.com>
8755 L:      linux-ext4@vger.kernel.org
8756 S:      Maintained
8757 F:      fs/jbd2/
8758 F:      include/linux/jbd2.h
8759
8760 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
8761 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
8762 L:      linux-media@vger.kernel.org
8763 S:      Maintained
8764 F:      drivers/media/platform/rcar_jpu.c
8765
8766 JSM Neo PCI based serial card
8767 L:      linux-serial@vger.kernel.org
8768 S:      Orphan
8769 F:      drivers/tty/serial/jsm/
8770
8771 K10TEMP HARDWARE MONITORING DRIVER
8772 M:      Clemens Ladisch <clemens@ladisch.de>
8773 L:      linux-hwmon@vger.kernel.org
8774 S:      Maintained
8775 F:      Documentation/hwmon/k10temp.rst
8776 F:      drivers/hwmon/k10temp.c
8777
8778 K8TEMP HARDWARE MONITORING DRIVER
8779 M:      Rudolf Marek <r.marek@assembler.cz>
8780 L:      linux-hwmon@vger.kernel.org
8781 S:      Maintained
8782 F:      Documentation/hwmon/k8temp.rst
8783 F:      drivers/hwmon/k8temp.c
8784
8785 KASAN
8786 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
8787 R:      Alexander Potapenko <glider@google.com>
8788 R:      Dmitry Vyukov <dvyukov@google.com>
8789 L:      kasan-dev@googlegroups.com
8790 S:      Maintained
8791 F:      arch/*/include/asm/kasan.h
8792 F:      arch/*/mm/kasan_init*
8793 F:      Documentation/dev-tools/kasan.rst
8794 F:      include/linux/kasan*.h
8795 F:      lib/test_kasan.c
8796 F:      mm/kasan/
8797 F:      scripts/Makefile.kasan
8798
8799 KCONFIG
8800 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
8801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
8802 L:      linux-kbuild@vger.kernel.org
8803 S:      Maintained
8804 F:      Documentation/kbuild/kconfig*
8805 F:      scripts/kconfig/
8806 F:      scripts/Kconfig.include
8807
8808 KDUMP
8809 M:      Dave Young <dyoung@redhat.com>
8810 M:      Baoquan He <bhe@redhat.com>
8811 R:      Vivek Goyal <vgoyal@redhat.com>
8812 L:      kexec@lists.infradead.org
8813 W:      http://lse.sourceforge.net/kdump/
8814 S:      Maintained
8815 F:      Documentation/admin-guide/kdump/
8816
8817 KEENE FM RADIO TRANSMITTER DRIVER
8818 M:      Hans Verkuil <hverkuil@xs4all.nl>
8819 L:      linux-media@vger.kernel.org
8820 T:      git git://linuxtv.org/media_tree.git
8821 W:      https://linuxtv.org
8822 S:      Maintained
8823 F:      drivers/media/radio/radio-keene*
8824
8825 KERNEL AUTOMOUNTER
8826 M:      Ian Kent <raven@themaw.net>
8827 L:      autofs@vger.kernel.org
8828 S:      Maintained
8829 F:      fs/autofs/
8830
8831 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
8832 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
8833 M:      Michal Marek <michal.lkml@markovi.net>
8834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
8835 L:      linux-kbuild@vger.kernel.org
8836 S:      Maintained
8837 F:      Documentation/kbuild/
8838 F:      Makefile
8839 F:      scripts/Kbuild*
8840 F:      scripts/Makefile*
8841 F:      scripts/basic/
8842 F:      scripts/mk*
8843 F:      scripts/*vmlinux*
8844 F:      scripts/mod/
8845 F:      scripts/package/
8846
8847 KERNEL JANITORS
8848 L:      kernel-janitors@vger.kernel.org
8849 W:      http://kernelnewbies.org/KernelJanitors
8850 S:      Odd Fixes
8851
8852 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
8853 M:      "J. Bruce Fields" <bfields@fieldses.org>
8854 M:      Chuck Lever <chuck.lever@oracle.com>
8855 L:      linux-nfs@vger.kernel.org
8856 W:      http://nfs.sourceforge.net/
8857 T:      git git://linux-nfs.org/~bfields/linux.git
8858 S:      Supported
8859 F:      fs/nfsd/
8860 F:      include/uapi/linux/nfsd/
8861 F:      fs/lockd/
8862 F:      fs/nfs_common/
8863 F:      net/sunrpc/
8864 F:      include/linux/lockd/
8865 F:      include/linux/sunrpc/
8866 F:      include/uapi/linux/sunrpc/
8867
8868 KERNEL SELFTEST FRAMEWORK
8869 M:      Shuah Khan <shuah@kernel.org>
8870 M:      Shuah Khan <skhan@linuxfoundation.org>
8871 L:      linux-kselftest@vger.kernel.org
8872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
8873 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
8874 S:      Maintained
8875 F:      tools/testing/selftests/
8876 F:      Documentation/dev-tools/kselftest*
8877
8878 KERNEL USERMODE HELPER
8879 M:      Luis Chamberlain <mcgrof@kernel.org>
8880 L:      linux-kernel@vger.kernel.org
8881 S:      Maintained
8882 F:      kernel/umh.c
8883 F:      include/linux/umh.h
8884
8885 KERNEL VIRTUAL MACHINE (KVM)
8886 M:      Paolo Bonzini <pbonzini@redhat.com>
8887 M:      Radim Krčmář <rkrcmar@redhat.com>
8888 L:      kvm@vger.kernel.org
8889 W:      http://www.linux-kvm.org
8890 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
8891 S:      Supported
8892 F:      Documentation/virt/kvm/
8893 F:      include/trace/events/kvm.h
8894 F:      include/uapi/asm-generic/kvm*
8895 F:      include/uapi/linux/kvm*
8896 F:      include/asm-generic/kvm*
8897 F:      include/linux/kvm*
8898 F:      include/kvm/iodev.h
8899 F:      virt/kvm/*
8900 F:      tools/kvm/
8901 F:      tools/testing/selftests/kvm/
8902
8903 KERNEL VIRTUAL MACHINE FOR ARM/ARM64 (KVM/arm, KVM/arm64)
8904 M:      Marc Zyngier <maz@kernel.org>
8905 R:      James Morse <james.morse@arm.com>
8906 R:      Julien Thierry <julien.thierry.kdev@gmail.com>
8907 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
8908 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8909 L:      kvmarm@lists.cs.columbia.edu
8910 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
8911 S:      Maintained
8912 F:      arch/arm/include/uapi/asm/kvm*
8913 F:      arch/arm/include/asm/kvm*
8914 F:      arch/arm/kvm/
8915 F:      arch/arm64/include/uapi/asm/kvm*
8916 F:      arch/arm64/include/asm/kvm*
8917 F:      arch/arm64/kvm/
8918 F:      virt/kvm/arm/
8919 F:      include/kvm/arm_*
8920
8921 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
8922 M:      James Hogan <jhogan@kernel.org>
8923 L:      linux-mips@vger.kernel.org
8924 S:      Supported
8925 F:      arch/mips/include/uapi/asm/kvm*
8926 F:      arch/mips/include/asm/kvm*
8927 F:      arch/mips/kvm/
8928
8929 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
8930 M:      Paul Mackerras <paulus@ozlabs.org>
8931 L:      kvm-ppc@vger.kernel.org
8932 W:      http://www.linux-kvm.org/
8933 T:      git git://github.com/agraf/linux-2.6.git
8934 S:      Supported
8935 F:      arch/powerpc/include/uapi/asm/kvm*
8936 F:      arch/powerpc/include/asm/kvm*
8937 F:      arch/powerpc/kvm/
8938 F:      arch/powerpc/kernel/kvm*
8939
8940 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
8941 M:      Christian Borntraeger <borntraeger@de.ibm.com>
8942 M:      Janosch Frank <frankja@linux.ibm.com>
8943 R:      David Hildenbrand <david@redhat.com>
8944 R:      Cornelia Huck <cohuck@redhat.com>
8945 L:      kvm@vger.kernel.org
8946 W:      http://www.ibm.com/developerworks/linux/linux390/
8947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
8948 S:      Supported
8949 F:      arch/s390/include/uapi/asm/kvm*
8950 F:      arch/s390/include/asm/gmap.h
8951 F:      arch/s390/include/asm/kvm*
8952 F:      arch/s390/kvm/
8953 F:      arch/s390/mm/gmap.c
8954 F:      tools/testing/selftests/kvm/s390x/
8955 F:      tools/testing/selftests/kvm/*/s390x/
8956
8957 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
8958 M:      Paolo Bonzini <pbonzini@redhat.com>
8959 M:      Radim Krčmář <rkrcmar@redhat.com>
8960 R:      Sean Christopherson <sean.j.christopherson@intel.com>
8961 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
8962 R:      Wanpeng Li <wanpengli@tencent.com>
8963 R:      Jim Mattson <jmattson@google.com>
8964 R:      Joerg Roedel <joro@8bytes.org>
8965 L:      kvm@vger.kernel.org
8966 W:      http://www.linux-kvm.org
8967 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
8968 S:      Supported
8969 F:      arch/x86/kvm/
8970 F:      arch/x86/kvm/*/
8971 F:      arch/x86/include/uapi/asm/kvm*
8972 F:      arch/x86/include/uapi/asm/vmx.h
8973 F:      arch/x86/include/uapi/asm/svm.h
8974 F:      arch/x86/include/asm/kvm*
8975 F:      arch/x86/include/asm/pvclock-abi.h
8976 F:      arch/x86/include/asm/svm.h
8977 F:      arch/x86/include/asm/vmx.h
8978 F:      arch/x86/kernel/kvm.c
8979 F:      arch/x86/kernel/kvmclock.c
8980
8981 KERNFS
8982 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8983 M:      Tejun Heo <tj@kernel.org>
8984 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8985 S:      Supported
8986 F:      include/linux/kernfs.h
8987 F:      fs/kernfs/
8988
8989 KEXEC
8990 M:      Eric Biederman <ebiederm@xmission.com>
8991 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
8992 L:      kexec@lists.infradead.org
8993 S:      Maintained
8994 F:      include/linux/kexec.h
8995 F:      include/uapi/linux/kexec.h
8996 F:      kernel/kexec*
8997
8998 KEYS-ENCRYPTED
8999 M:      Mimi Zohar <zohar@linux.ibm.com>
9000 L:      linux-integrity@vger.kernel.org
9001 L:      keyrings@vger.kernel.org
9002 S:      Supported
9003 F:      Documentation/security/keys/trusted-encrypted.rst
9004 F:      include/keys/encrypted-type.h
9005 F:      security/keys/encrypted-keys/
9006
9007 KEYS-TRUSTED
9008 M:      James Bottomley <jejb@linux.ibm.com>
9009 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9010 M:      Mimi Zohar <zohar@linux.ibm.com>
9011 L:      linux-integrity@vger.kernel.org
9012 L:      keyrings@vger.kernel.org
9013 S:      Supported
9014 F:      Documentation/security/keys/trusted-encrypted.rst
9015 F:      include/keys/trusted-type.h
9016 F:      security/keys/trusted.c
9017 F:      security/keys/trusted.h
9018
9019 KEYS/KEYRINGS:
9020 M:      David Howells <dhowells@redhat.com>
9021 L:      keyrings@vger.kernel.org
9022 S:      Maintained
9023 F:      Documentation/security/keys/core.rst
9024 F:      include/linux/key.h
9025 F:      include/linux/key-type.h
9026 F:      include/linux/keyctl.h
9027 F:      include/uapi/linux/keyctl.h
9028 F:      include/keys/
9029 F:      security/keys/
9030
9031 KGDB / KDB /debug_core
9032 M:      Jason Wessel <jason.wessel@windriver.com>
9033 M:      Daniel Thompson <daniel.thompson@linaro.org>
9034 W:      http://kgdb.wiki.kernel.org/
9035 L:      kgdb-bugreport@lists.sourceforge.net
9036 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9037 S:      Maintained
9038 F:      Documentation/dev-tools/kgdb.rst
9039 F:      drivers/misc/kgdbts.c
9040 F:      drivers/tty/serial/kgdboc.c
9041 F:      include/linux/kdb.h
9042 F:      include/linux/kgdb.h
9043 F:      kernel/debug/
9044
9045 KMEMLEAK
9046 M:      Catalin Marinas <catalin.marinas@arm.com>
9047 S:      Maintained
9048 F:      Documentation/dev-tools/kmemleak.rst
9049 F:      include/linux/kmemleak.h
9050 F:      mm/kmemleak.c
9051 F:      mm/kmemleak-test.c
9052
9053 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9054 M:      Luis Chamberlain <mcgrof@kernel.org>
9055 L:      linux-kernel@vger.kernel.org
9056 S:      Maintained
9057 F:      kernel/kmod.c
9058 F:      include/linux/kmod.h
9059 F:      lib/test_kmod.c
9060 F:      tools/testing/selftests/kmod/
9061
9062 KPROBES
9063 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
9064 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9065 M:      "David S. Miller" <davem@davemloft.net>
9066 M:      Masami Hiramatsu <mhiramat@kernel.org>
9067 S:      Maintained
9068 F:      Documentation/kprobes.txt
9069 F:      include/linux/kprobes.h
9070 F:      include/asm-generic/kprobes.h
9071 F:      kernel/kprobes.c
9072
9073 KS0108 LCD CONTROLLER DRIVER
9074 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
9075 S:      Maintained
9076 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9077 F:      drivers/auxdisplay/ks0108.c
9078 F:      include/linux/ks0108.h
9079
9080 L3MDEV
9081 M:      David Ahern <dsa@cumulusnetworks.com>
9082 L:      netdev@vger.kernel.org
9083 S:      Maintained
9084 F:      net/l3mdev
9085 F:      include/net/l3mdev.h
9086
9087 L7 BPF FRAMEWORK
9088 M:      John Fastabend <john.fastabend@gmail.com>
9089 M:      Daniel Borkmann <daniel@iogearbox.net>
9090 L:      netdev@vger.kernel.org
9091 L:      bpf@vger.kernel.org
9092 S:      Maintained
9093 F:      include/linux/skmsg.h
9094 F:      net/core/skmsg.c
9095 F:      net/core/sock_map.c
9096 F:      net/ipv4/tcp_bpf.c
9097
9098 LANTIQ / INTEL Ethernet drivers
9099 M:      Hauke Mehrtens <hauke@hauke-m.de>
9100 L:      netdev@vger.kernel.org
9101 S:      Maintained
9102 F:      net/dsa/tag_gswip.c
9103 F:      drivers/net/ethernet/lantiq_xrx200.c
9104 F:      drivers/net/dsa/lantiq_pce.h
9105 F:      drivers/net/dsa/lantiq_gswip.c
9106
9107 LANTIQ MIPS ARCHITECTURE
9108 M:      John Crispin <john@phrozen.org>
9109 L:      linux-mips@vger.kernel.org
9110 S:      Maintained
9111 F:      arch/mips/lantiq
9112 F:      drivers/soc/lantiq
9113
9114 LAPB module
9115 L:      linux-x25@vger.kernel.org
9116 S:      Orphan
9117 F:      Documentation/networking/lapb-module.txt
9118 F:      include/*/lapb.h
9119 F:      net/lapb/
9120
9121 LASI 53c700 driver for PARISC
9122 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9123 L:      linux-scsi@vger.kernel.org
9124 S:      Maintained
9125 F:      Documentation/scsi/53c700.txt
9126 F:      drivers/scsi/53c700*
9127
9128 LEAKING_ADDRESSES
9129 M:      Tobin C. Harding <me@tobin.cc>
9130 M:      Tycho Andersen <tycho@tycho.ws>
9131 L:      kernel-hardening@lists.openwall.com
9132 S:      Maintained
9133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9134 F:      scripts/leaking_addresses.pl
9135
9136 LED SUBSYSTEM
9137 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
9138 M:      Pavel Machek <pavel@ucw.cz>
9139 R:      Dan Murphy <dmurphy@ti.com>
9140 L:      linux-leds@vger.kernel.org
9141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
9142 S:      Maintained
9143 F:      Documentation/devicetree/bindings/leds/
9144 F:      drivers/leds/
9145 F:      include/linux/leds.h
9146
9147 LEGACY EEPROM DRIVER
9148 M:      Jean Delvare <jdelvare@suse.com>
9149 S:      Maintained
9150 F:      Documentation/misc-devices/eeprom.rst
9151 F:      drivers/misc/eeprom/eeprom.c
9152
9153 LEGO MINDSTORMS EV3
9154 R:      David Lechner <david@lechnology.com>
9155 S:      Maintained
9156 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9157 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9158 F:      drivers/power/supply/lego_ev3_battery.c
9159
9160 LEGO USB Tower driver
9161 M:      Juergen Stuber <starblue@users.sourceforge.net>
9162 L:      legousb-devel@lists.sourceforge.net
9163 W:      http://legousb.sourceforge.net/
9164 S:      Maintained
9165 F:      drivers/usb/misc/legousbtower.c
9166
9167 LG LAPTOP EXTRAS
9168 M:      Matan Ziv-Av <matan@svgalib.org>
9169 L:      platform-driver-x86@vger.kernel.org
9170 S:      Maintained
9171 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9172 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9173 F:      drivers/platform/x86/lg-laptop.c
9174
9175 LG2160 MEDIA DRIVER
9176 M:      Michael Krufky <mkrufky@linuxtv.org>
9177 L:      linux-media@vger.kernel.org
9178 W:      https://linuxtv.org
9179 W:      http://github.com/mkrufky
9180 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9181 T:      git git://linuxtv.org/mkrufky/tuners.git
9182 S:      Maintained
9183 F:      drivers/media/dvb-frontends/lg2160.*
9184
9185 LGDT3305 MEDIA DRIVER
9186 M:      Michael Krufky <mkrufky@linuxtv.org>
9187 L:      linux-media@vger.kernel.org
9188 W:      https://linuxtv.org
9189 W:      http://github.com/mkrufky
9190 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9191 T:      git git://linuxtv.org/mkrufky/tuners.git
9192 S:      Maintained
9193 F:      drivers/media/dvb-frontends/lgdt3305.*
9194
9195 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9196 M:      Viresh Kumar <vireshk@kernel.org>
9197 L:      linux-ide@vger.kernel.org
9198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9199 S:      Maintained
9200 F:      include/linux/pata_arasan_cf_data.h
9201 F:      drivers/ata/pata_arasan_cf.c
9202
9203 LIBATA PATA DRIVERS
9204 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
9205 M:      Jens Axboe <axboe@kernel.dk>
9206 L:      linux-ide@vger.kernel.org
9207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9208 S:      Maintained
9209 F:      drivers/ata/pata_*.c
9210 F:      drivers/ata/ata_generic.c
9211
9212 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9213 M:      Linus Walleij <linus.walleij@linaro.org>
9214 L:      linux-ide@vger.kernel.org
9215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9216 S:      Maintained
9217 F:      drivers/ata/pata_ftide010.c
9218 F:      drivers/ata/sata_gemini.c
9219 F:      drivers/ata/sata_gemini.h
9220
9221 LIBATA SATA AHCI PLATFORM devices support
9222 M:      Hans de Goede <hdegoede@redhat.com>
9223 M:      Jens Axboe <axboe@kernel.dk>
9224 L:      linux-ide@vger.kernel.org
9225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9226 S:      Maintained
9227 F:      drivers/ata/ahci_platform.c
9228 F:      drivers/ata/libahci_platform.c
9229 F:      include/linux/ahci_platform.h
9230
9231 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
9232 M:      Mikael Pettersson <mikpelinux@gmail.com>
9233 L:      linux-ide@vger.kernel.org
9234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9235 S:      Maintained
9236 F:      drivers/ata/sata_promise.*
9237
9238 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
9239 M:      Jens Axboe <axboe@kernel.dk>
9240 L:      linux-ide@vger.kernel.org
9241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9242 S:      Maintained
9243 F:      drivers/ata/
9244 F:      include/linux/ata.h
9245 F:      include/linux/libata.h
9246 F:      Documentation/devicetree/bindings/ata/
9247
9248 LIBLOCKDEP
9249 M:      Sasha Levin <alexander.levin@microsoft.com>
9250 S:      Maintained
9251 F:      tools/lib/lockdep/
9252
9253 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
9254 M:      Dan Williams <dan.j.williams@intel.com>
9255 M:      Vishal Verma <vishal.l.verma@intel.com>
9256 M:      Dave Jiang <dave.jiang@intel.com>
9257 L:      linux-nvdimm@lists.01.org
9258 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9259 S:      Supported
9260 F:      drivers/nvdimm/blk.c
9261 F:      drivers/nvdimm/region_devs.c
9262
9263 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
9264 M:      Vishal Verma <vishal.l.verma@intel.com>
9265 M:      Dan Williams <dan.j.williams@intel.com>
9266 M:      Dave Jiang <dave.jiang@intel.com>
9267 L:      linux-nvdimm@lists.01.org
9268 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9269 S:      Supported
9270 F:      drivers/nvdimm/btt*
9271
9272 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
9273 M:      Dan Williams <dan.j.williams@intel.com>
9274 M:      Vishal Verma <vishal.l.verma@intel.com>
9275 M:      Dave Jiang <dave.jiang@intel.com>
9276 L:      linux-nvdimm@lists.01.org
9277 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9278 S:      Supported
9279 F:      drivers/nvdimm/pmem*
9280
9281 LIBNVDIMM: DEVICETREE BINDINGS
9282 M:      Oliver O'Halloran <oohall@gmail.com>
9283 L:      linux-nvdimm@lists.01.org
9284 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9285 S:      Supported
9286 F:      drivers/nvdimm/of_pmem.c
9287 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
9288
9289 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
9290 M:      Dan Williams <dan.j.williams@intel.com>
9291 M:      Vishal Verma <vishal.l.verma@intel.com>
9292 M:      Dave Jiang <dave.jiang@intel.com>
9293 M:      Keith Busch <keith.busch@intel.com>
9294 M:      Ira Weiny <ira.weiny@intel.com>
9295 L:      linux-nvdimm@lists.01.org
9296 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
9298 S:      Supported
9299 F:      drivers/nvdimm/*
9300 F:      drivers/acpi/nfit/*
9301 F:      include/linux/nd.h
9302 F:      include/linux/libnvdimm.h
9303 F:      include/uapi/linux/ndctl.h
9304
9305 LICENSES and SPDX stuff
9306 M:      Thomas Gleixner <tglx@linutronix.de>
9307 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9308 L:      linux-spdx@vger.kernel.org
9309 S:      Maintained
9310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
9311 F:      COPYING
9312 F:      Documentation/process/license-rules.rst
9313 F:      LICENSES/
9314 F:      scripts/spdxcheck-test.sh
9315 F:      scripts/spdxcheck.py
9316
9317 LIGHTNVM PLATFORM SUPPORT
9318 M:      Matias Bjorling <mb@lightnvm.io>
9319 W:      http://github/OpenChannelSSD
9320 L:      linux-block@vger.kernel.org
9321 S:      Maintained
9322 F:      drivers/lightnvm/
9323 F:      include/linux/lightnvm.h
9324 F:      include/uapi/linux/lightnvm.h
9325
9326 LINUX FOR POWER MACINTOSH
9327 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9328 W:      http://www.penguinppc.org/
9329 L:      linuxppc-dev@lists.ozlabs.org
9330 S:      Maintained
9331 F:      arch/powerpc/platforms/powermac/
9332 F:      drivers/macintosh/
9333
9334 LINUX FOR POWERPC (32-BIT AND 64-BIT)
9335 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9336 M:      Paul Mackerras <paulus@samba.org>
9337 M:      Michael Ellerman <mpe@ellerman.id.au>
9338 W:      https://github.com/linuxppc/linux/wiki
9339 L:      linuxppc-dev@lists.ozlabs.org
9340 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
9341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
9342 S:      Supported
9343 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
9344 F:      Documentation/devicetree/bindings/powerpc/
9345 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
9346 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
9347 F:      Documentation/powerpc/
9348 F:      arch/powerpc/
9349 F:      drivers/char/tpm/tpm_ibmvtpm*
9350 F:      drivers/crypto/nx/
9351 F:      drivers/crypto/vmx/
9352 F:      drivers/i2c/busses/i2c-opal.c
9353 F:      drivers/net/ethernet/ibm/ibmveth.*
9354 F:      drivers/net/ethernet/ibm/ibmvnic.*
9355 F:      drivers/pci/hotplug/pnv_php.c
9356 F:      drivers/pci/hotplug/rpa*
9357 F:      drivers/rtc/rtc-opal.c
9358 F:      drivers/scsi/ibmvscsi/
9359 F:      drivers/tty/hvc/hvc_opal.c
9360 F:      drivers/watchdog/wdrtas.c
9361 F:      tools/testing/selftests/powerpc
9362 N:      /pmac
9363 N:      powermac
9364 N:      powernv
9365 N:      [^a-z0-9]ps3
9366 N:      pseries
9367
9368 LINUX FOR POWERPC EMBEDDED MPC5XXX
9369 M:      Anatolij Gustschin <agust@denx.de>
9370 L:      linuxppc-dev@lists.ozlabs.org
9371 T:      git git://git.denx.de/linux-denx-agust.git
9372 S:      Maintained
9373 F:      arch/powerpc/platforms/512x/
9374 F:      arch/powerpc/platforms/52xx/
9375
9376 LINUX FOR POWERPC EMBEDDED PPC4XX
9377 M:      Alistair Popple <alistair@popple.id.au>
9378 M:      Matt Porter <mporter@kernel.crashing.org>
9379 W:      http://www.penguinppc.org/
9380 L:      linuxppc-dev@lists.ozlabs.org
9381 S:      Maintained
9382 F:      arch/powerpc/platforms/40x/
9383 F:      arch/powerpc/platforms/44x/
9384
9385 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
9386 M:      Scott Wood <oss@buserror.net>
9387 M:      Kumar Gala <galak@kernel.crashing.org>
9388 W:      http://www.penguinppc.org/
9389 L:      linuxppc-dev@lists.ozlabs.org
9390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
9391 S:      Maintained
9392 F:      arch/powerpc/platforms/83xx/
9393 F:      arch/powerpc/platforms/85xx/
9394 F:      Documentation/devicetree/bindings/powerpc/fsl/
9395
9396 LINUX FOR POWERPC EMBEDDED PPC8XX
9397 M:      Vitaly Bordug <vitb@kernel.crashing.org>
9398 W:      http://www.penguinppc.org/
9399 L:      linuxppc-dev@lists.ozlabs.org
9400 S:      Maintained
9401 F:      arch/powerpc/platforms/8xx/
9402
9403 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
9404 L:      linuxppc-dev@lists.ozlabs.org
9405 S:      Orphan
9406 F:      arch/powerpc/*/*virtex*
9407 F:      arch/powerpc/*/*/*virtex*
9408
9409 LINUX FOR POWERPC PA SEMI PWRFICIENT
9410 L:      linuxppc-dev@lists.ozlabs.org
9411 S:      Orphan
9412 F:      arch/powerpc/platforms/pasemi/
9413 F:      drivers/*/*pasemi*
9414 F:      drivers/*/*/*pasemi*
9415
9416 LINUX KERNEL DUMP TEST MODULE (LKDTM)
9417 M:      Kees Cook <keescook@chromium.org>
9418 S:      Maintained
9419 F:      drivers/misc/lkdtm/*
9420
9421 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
9422 M:      Alan Stern <stern@rowland.harvard.edu>
9423 M:      Andrea Parri <parri.andrea@gmail.com>
9424 M:      Will Deacon <will@kernel.org>
9425 M:      Peter Zijlstra <peterz@infradead.org>
9426 M:      Boqun Feng <boqun.feng@gmail.com>
9427 M:      Nicholas Piggin <npiggin@gmail.com>
9428 M:      David Howells <dhowells@redhat.com>
9429 M:      Jade Alglave <j.alglave@ucl.ac.uk>
9430 M:      Luc Maranget <luc.maranget@inria.fr>
9431 M:      "Paul E. McKenney" <paulmck@kernel.org>
9432 R:      Akira Yokosawa <akiyks@gmail.com>
9433 R:      Daniel Lustig <dlustig@nvidia.com>
9434 L:      linux-kernel@vger.kernel.org
9435 L:      linux-arch@vger.kernel.org
9436 S:      Supported
9437 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
9438 F:      tools/memory-model/
9439 F:      Documentation/atomic_bitops.txt
9440 F:      Documentation/atomic_t.txt
9441 F:      Documentation/core-api/atomic_ops.rst
9442 F:      Documentation/core-api/refcount-vs-atomic.rst
9443 F:      Documentation/memory-barriers.txt
9444
9445 LIS3LV02D ACCELEROMETER DRIVER
9446 M:      Eric Piel <eric.piel@tremplin-utc.net>
9447 S:      Maintained
9448 F:      Documentation/misc-devices/lis3lv02d.rst
9449 F:      drivers/misc/lis3lv02d/
9450 F:      drivers/platform/x86/hp_accel.c
9451
9452 LIVE PATCHING
9453 M:      Josh Poimboeuf <jpoimboe@redhat.com>
9454 M:      Jiri Kosina <jikos@kernel.org>
9455 M:      Miroslav Benes <mbenes@suse.cz>
9456 M:      Petr Mladek <pmladek@suse.com>
9457 R:      Joe Lawrence <joe.lawrence@redhat.com>
9458 S:      Maintained
9459 F:      kernel/livepatch/
9460 F:      include/linux/livepatch.h
9461 F:      arch/x86/include/asm/livepatch.h
9462 F:      arch/x86/kernel/livepatch.c
9463 F:      Documentation/livepatch/
9464 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
9465 F:      samples/livepatch/
9466 F:      tools/testing/selftests/livepatch/
9467 L:      live-patching@vger.kernel.org
9468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
9469
9470 LLC (802.2)
9471 L:      netdev@vger.kernel.org
9472 S:      Odd fixes
9473 F:      include/linux/llc.h
9474 F:      include/uapi/linux/llc.h
9475 F:      include/net/llc*
9476 F:      net/llc/
9477
9478 LM73 HARDWARE MONITOR DRIVER
9479 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
9480 L:      linux-hwmon@vger.kernel.org
9481 S:      Maintained
9482 F:      drivers/hwmon/lm73.c
9483
9484 LM78 HARDWARE MONITOR DRIVER
9485 M:      Jean Delvare <jdelvare@suse.com>
9486 L:      linux-hwmon@vger.kernel.org
9487 S:      Maintained
9488 F:      Documentation/hwmon/lm78.rst
9489 F:      drivers/hwmon/lm78.c
9490
9491 LM83 HARDWARE MONITOR DRIVER
9492 M:      Jean Delvare <jdelvare@suse.com>
9493 L:      linux-hwmon@vger.kernel.org
9494 S:      Maintained
9495 F:      Documentation/hwmon/lm83.rst
9496 F:      drivers/hwmon/lm83.c
9497
9498 LM90 HARDWARE MONITOR DRIVER
9499 M:      Jean Delvare <jdelvare@suse.com>
9500 L:      linux-hwmon@vger.kernel.org
9501 S:      Maintained
9502 F:      Documentation/hwmon/lm90.rst
9503 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
9504 F:      drivers/hwmon/lm90.c
9505 F:      include/dt-bindings/thermal/lm90.h
9506
9507 LM95234 HARDWARE MONITOR DRIVER
9508 M:      Guenter Roeck <linux@roeck-us.net>
9509 L:      linux-hwmon@vger.kernel.org
9510 S:      Maintained
9511 F:      Documentation/hwmon/lm95234.rst
9512 F:      drivers/hwmon/lm95234.c
9513
9514 LME2510 MEDIA DRIVER
9515 M:      Malcolm Priestley <tvboxspy@gmail.com>
9516 L:      linux-media@vger.kernel.org
9517 W:      https://linuxtv.org
9518 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9519 S:      Maintained
9520 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
9521
9522 LOADPIN SECURITY MODULE
9523 M:      Kees Cook <keescook@chromium.org>
9524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
9525 S:      Supported
9526 F:      security/loadpin/
9527 F:      Documentation/admin-guide/LSM/LoadPin.rst
9528
9529 LOCKING PRIMITIVES
9530 M:      Peter Zijlstra <peterz@infradead.org>
9531 M:      Ingo Molnar <mingo@redhat.com>
9532 M:      Will Deacon <will@kernel.org>
9533 L:      linux-kernel@vger.kernel.org
9534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
9535 S:      Maintained
9536 F:      Documentation/locking/
9537 F:      include/linux/lockdep.h
9538 F:      include/linux/spinlock*.h
9539 F:      arch/*/include/asm/spinlock*.h
9540 F:      include/linux/rwlock*.h
9541 F:      include/linux/mutex*.h
9542 F:      include/linux/rwsem*.h
9543 F:      include/linux/seqlock.h
9544 F:      lib/locking*.[ch]
9545 F:      kernel/locking/
9546 X:      kernel/locking/locktorture.c
9547
9548 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
9549 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
9550 L:      linux-ntfs-dev@lists.sourceforge.net
9551 W:      http://www.linux-ntfs.org/content/view/19/37/
9552 S:      Maintained
9553 F:      Documentation/admin-guide/ldm.rst
9554 F:      block/partitions/ldm.*
9555
9556 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
9557 M:      Sathya Prakash <sathya.prakash@broadcom.com>
9558 M:      Chaitra P B <chaitra.basappa@broadcom.com>
9559 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
9560 L:      MPT-FusionLinux.pdl@broadcom.com
9561 L:      linux-scsi@vger.kernel.org
9562 W:      http://www.avagotech.com/support/
9563 S:      Supported
9564 F:      drivers/message/fusion/
9565 F:      drivers/scsi/mpt3sas/
9566
9567 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
9568 M:      Matthew Wilcox <willy@infradead.org>
9569 L:      linux-scsi@vger.kernel.org
9570 S:      Maintained
9571 F:      drivers/scsi/sym53c8xx_2/
9572
9573 LTC1660 DAC DRIVER
9574 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
9575 L:      linux-iio@vger.kernel.org
9576 S:      Maintained
9577 F:      Documentation/devicetree/bindings/iio/dac/ltc1660.txt
9578 F:      drivers/iio/dac/ltc1660.c
9579
9580 LTC4261 HARDWARE MONITOR DRIVER
9581 M:      Guenter Roeck <linux@roeck-us.net>
9582 L:      linux-hwmon@vger.kernel.org
9583 S:      Maintained
9584 F:      Documentation/hwmon/ltc4261.rst
9585 F:      drivers/hwmon/ltc4261.c
9586
9587 LTC4306 I2C MULTIPLEXER DRIVER
9588 M:      Michael Hennerich <michael.hennerich@analog.com>
9589 W:      http://ez.analog.com/community/linux-device-drivers
9590 L:      linux-i2c@vger.kernel.org
9591 S:      Supported
9592 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
9593 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
9594
9595 LTP (Linux Test Project)
9596 M:      Mike Frysinger <vapier@gentoo.org>
9597 M:      Cyril Hrubis <chrubis@suse.cz>
9598 M:      Wanlong Gao <wanlong.gao@gmail.com>
9599 M:      Jan Stancek <jstancek@redhat.com>
9600 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
9601 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
9602 L:      ltp@lists.linux.it (subscribers-only)
9603 W:      http://linux-test-project.github.io/
9604 T:      git git://github.com/linux-test-project/ltp.git
9605 S:      Maintained
9606
9607 M68K ARCHITECTURE
9608 M:      Geert Uytterhoeven <geert@linux-m68k.org>
9609 L:      linux-m68k@lists.linux-m68k.org
9610 W:      http://www.linux-m68k.org/
9611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
9612 S:      Maintained
9613 F:      arch/m68k/
9614 F:      drivers/zorro/
9615
9616 M68K ON APPLE MACINTOSH
9617 M:      Joshua Thompson <funaho@jurai.org>
9618 W:      http://www.mac.linux-m68k.org/
9619 L:      linux-m68k@lists.linux-m68k.org
9620 S:      Maintained
9621 F:      arch/m68k/mac/
9622
9623 M68K ON HP9000/300
9624 M:      Philip Blundell <philb@gnu.org>
9625 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
9626 S:      Maintained
9627 F:      arch/m68k/hp300/
9628
9629 M88DS3103 MEDIA DRIVER
9630 M:      Antti Palosaari <crope@iki.fi>
9631 L:      linux-media@vger.kernel.org
9632 W:      https://linuxtv.org
9633 W:      http://palosaari.fi/linux/
9634 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9635 T:      git git://linuxtv.org/anttip/media_tree.git
9636 S:      Maintained
9637 F:      drivers/media/dvb-frontends/m88ds3103*
9638
9639 M88RS2000 MEDIA DRIVER
9640 M:      Malcolm Priestley <tvboxspy@gmail.com>
9641 L:      linux-media@vger.kernel.org
9642 W:      https://linuxtv.org
9643 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9644 S:      Maintained
9645 F:      drivers/media/dvb-frontends/m88rs2000*
9646
9647 MA901 MASTERKIT USB FM RADIO DRIVER
9648 M:      Alexey Klimov <klimov.linux@gmail.com>
9649 L:      linux-media@vger.kernel.org
9650 T:      git git://linuxtv.org/media_tree.git
9651 S:      Maintained
9652 F:      drivers/media/radio/radio-ma901.c
9653
9654 MAC80211
9655 M:      Johannes Berg <johannes@sipsolutions.net>
9656 L:      linux-wireless@vger.kernel.org
9657 W:      http://wireless.kernel.org/
9658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
9660 S:      Maintained
9661 F:      Documentation/networking/mac80211-injection.txt
9662 F:      include/net/mac80211.h
9663 F:      net/mac80211/
9664 F:      drivers/net/wireless/mac80211_hwsim.[ch]
9665 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
9666
9667 MAILBOX API
9668 M:      Jassi Brar <jassisinghbrar@gmail.com>
9669 L:      linux-kernel@vger.kernel.org
9670 S:      Maintained
9671 F:      drivers/mailbox/
9672 F:      include/linux/mailbox_client.h
9673 F:      include/linux/mailbox_controller.h
9674
9675 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
9676 M:      Michael Kerrisk <mtk.manpages@gmail.com>
9677 W:      http://www.kernel.org/doc/man-pages
9678 L:      linux-man@vger.kernel.org
9679 S:      Maintained
9680
9681 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
9682 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
9683 L:      linux-mips@vger.kernel.org
9684 S:      Maintained
9685 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
9686
9687 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
9688 M:      Andrew Lunn <andrew@lunn.ch>
9689 M:      Vivien Didelot <vivien.didelot@gmail.com>
9690 L:      netdev@vger.kernel.org
9691 S:      Maintained
9692 F:      drivers/net/dsa/mv88e6xxx/
9693 F:      include/linux/platform_data/mv88e6xxx.h
9694 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
9695
9696 MARVELL ARMADA DRM SUPPORT
9697 M:      Russell King <linux@armlinux.org.uk>
9698 S:      Maintained
9699 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
9700 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
9701 F:      drivers/gpu/drm/armada/
9702 F:      include/uapi/drm/armada_drm.h
9703 F:      Documentation/devicetree/bindings/display/armada/
9704
9705 MARVELL ARMADA 3700 PHY DRIVERS
9706 M:      Miquel Raynal <miquel.raynal@bootlin.com>
9707 S:      Maintained
9708 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
9709 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
9710 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
9711 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
9712
9713 MARVELL CRYPTO DRIVER
9714 M:      Boris Brezillon <bbrezillon@kernel.org>
9715 M:      Arnaud Ebalard <arno@natisbad.org>
9716 F:      drivers/crypto/marvell/
9717 S:      Maintained
9718 L:      linux-crypto@vger.kernel.org
9719
9720 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
9721 M:      Mirko Lindner <mlindner@marvell.com>
9722 M:      Stephen Hemminger <stephen@networkplumber.org>
9723 L:      netdev@vger.kernel.org
9724 S:      Maintained
9725 F:      drivers/net/ethernet/marvell/sk*
9726
9727 MARVELL LIBERTAS WIRELESS DRIVER
9728 L:      libertas-dev@lists.infradead.org
9729 S:      Orphan
9730 F:      drivers/net/wireless/marvell/libertas/
9731
9732 MARVELL MACCHIATOBIN SUPPORT
9733 M:      Russell King <linux@armlinux.org.uk>
9734 L:      linux-arm-kernel@lists.infradead.org
9735 S:      Maintained
9736 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
9737
9738 MARVELL MV643XX ETHERNET DRIVER
9739 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
9740 L:      netdev@vger.kernel.org
9741 S:      Maintained
9742 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
9743 F:      include/linux/mv643xx.h
9744
9745 MARVELL MV88X3310 PHY DRIVER
9746 M:      Russell King <linux@armlinux.org.uk>
9747 L:      netdev@vger.kernel.org
9748 S:      Maintained
9749 F:      drivers/net/phy/marvell10g.c
9750
9751 MARVELL MVEBU THERMAL DRIVER
9752 M:      Miquel Raynal <miquel.raynal@bootlin.com>
9753 S:      Maintained
9754 F:      drivers/thermal/armada_thermal.c
9755
9756 MARVELL MVNETA ETHERNET DRIVER
9757 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
9758 L:      netdev@vger.kernel.org
9759 S:      Maintained
9760 F:      drivers/net/ethernet/marvell/mvneta.*
9761
9762 MARVELL MWIFIEX WIRELESS DRIVER
9763 M:      Amitkumar Karwar <amitkarwar@gmail.com>
9764 M:      Nishant Sarmukadam <nishants@marvell.com>
9765 M:      Ganapathi Bhat <gbhat@marvell.com>
9766 M:      Xinming Hu <huxinming820@gmail.com>
9767 L:      linux-wireless@vger.kernel.org
9768 S:      Maintained
9769 F:      drivers/net/wireless/marvell/mwifiex/
9770
9771 MARVELL MWL8K WIRELESS DRIVER
9772 M:      Lennert Buytenhek <buytenh@wantstofly.org>
9773 L:      linux-wireless@vger.kernel.org
9774 S:      Odd Fixes
9775 F:      drivers/net/wireless/marvell/mwl8k.c
9776
9777 MARVELL NAND CONTROLLER DRIVER
9778 M:      Miquel Raynal <miquel.raynal@bootlin.com>
9779 L:      linux-mtd@lists.infradead.org
9780 S:      Maintained
9781 F:      drivers/mtd/nand/raw/marvell_nand.c
9782 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
9783
9784 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
9785 M:      Nicolas Pitre <nico@fluxnic.net>
9786 S:      Odd Fixes
9787 F:      drivers/mmc/host/mvsdio.*
9788
9789 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
9790 M:      Hu Ziji <huziji@marvell.com>
9791 L:      linux-mmc@vger.kernel.org
9792 S:      Supported
9793 F:      drivers/mmc/host/sdhci-xenon*
9794 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
9795
9796 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
9797 M:      Sunil Goutham <sgoutham@marvell.com>
9798 M:      Linu Cherian <lcherian@marvell.com>
9799 M:      Geetha sowjanya <gakula@marvell.com>
9800 M:      Jerin Jacob <jerinj@marvell.com>
9801 L:      netdev@vger.kernel.org
9802 S:      Supported
9803 F:      drivers/net/ethernet/marvell/octeontx2/af/
9804
9805 MATROX FRAMEBUFFER DRIVER
9806 L:      linux-fbdev@vger.kernel.org
9807 S:      Orphan
9808 F:      drivers/video/fbdev/matrox/matroxfb_*
9809 F:      include/uapi/linux/matroxfb.h
9810
9811 MAX16065 HARDWARE MONITOR DRIVER
9812 M:      Guenter Roeck <linux@roeck-us.net>
9813 L:      linux-hwmon@vger.kernel.org
9814 S:      Maintained
9815 F:      Documentation/hwmon/max16065.rst
9816 F:      drivers/hwmon/max16065.c
9817
9818 MAX2175 SDR TUNER DRIVER
9819 M:      Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
9820 L:      linux-media@vger.kernel.org
9821 T:      git git://linuxtv.org/media_tree.git
9822 S:      Maintained
9823 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
9824 F:      Documentation/media/v4l-drivers/max2175.rst
9825 F:      drivers/media/i2c/max2175*
9826 F:      include/uapi/linux/max2175.h
9827
9828 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
9829 L:      linux-hwmon@vger.kernel.org
9830 S:      Orphan
9831 F:      Documentation/hwmon/max6650.rst
9832 F:      drivers/hwmon/max6650.c
9833
9834 MAX6697 HARDWARE MONITOR DRIVER
9835 M:      Guenter Roeck <linux@roeck-us.net>
9836 L:      linux-hwmon@vger.kernel.org
9837 S:      Maintained
9838 F:      Documentation/hwmon/max6697.rst
9839 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
9840 F:      drivers/hwmon/max6697.c
9841 F:      include/linux/platform_data/max6697.h
9842
9843 MAX9860 MONO AUDIO VOICE CODEC DRIVER
9844 M:      Peter Rosin <peda@axentia.se>
9845 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9846 S:      Maintained
9847 F:      Documentation/devicetree/bindings/sound/max9860.txt
9848 F:      sound/soc/codecs/max9860.*
9849
9850 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
9851 M:      Andreas Klinger <ak@it-klinger.de>
9852 L:      linux-iio@vger.kernel.org
9853 S:      Maintained
9854 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.txt
9855 F:      drivers/iio/proximity/mb1232.c
9856
9857 MAXIM MAX77650 PMIC MFD DRIVER
9858 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
9859 L:      linux-kernel@vger.kernel.org
9860 S:      Maintained
9861 F:      Documentation/devicetree/bindings/*/*max77650.txt
9862 F:      Documentation/devicetree/bindings/*/max77650*.txt
9863 F:      include/linux/mfd/max77650.h
9864 F:      drivers/mfd/max77650.c
9865 F:      drivers/regulator/max77650-regulator.c
9866 F:      drivers/power/supply/max77650-charger.c
9867 F:      drivers/input/misc/max77650-onkey.c
9868 F:      drivers/leds/leds-max77650.c
9869 F:      drivers/gpio/gpio-max77650.c
9870
9871 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
9872 M:      Javier Martinez Canillas <javier@dowhile0.org>
9873 L:      linux-kernel@vger.kernel.org
9874 S:      Supported
9875 F:      drivers/regulator/max77802-regulator.c
9876 F:      Documentation/devicetree/bindings/*/*max77802.txt
9877 F:      include/dt-bindings/*/*max77802.h
9878
9879 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
9880 M:      Krzysztof Kozlowski <krzk@kernel.org>
9881 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
9882 L:      linux-pm@vger.kernel.org
9883 S:      Supported
9884 F:      drivers/power/supply/max14577_charger.c
9885 F:      drivers/power/supply/max77693_charger.c
9886
9887 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
9888 M:      Chanwoo Choi <cw00.choi@samsung.com>
9889 M:      Krzysztof Kozlowski <krzk@kernel.org>
9890 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
9891 L:      linux-kernel@vger.kernel.org
9892 S:      Supported
9893 F:      drivers/*/max14577*.c
9894 F:      drivers/*/max77686*.c
9895 F:      drivers/*/max77693*.c
9896 F:      drivers/extcon/extcon-max14577.c
9897 F:      drivers/extcon/extcon-max77693.c
9898 F:      drivers/rtc/rtc-max77686.c
9899 F:      drivers/clk/clk-max77686.c
9900 F:      Documentation/devicetree/bindings/mfd/max14577.txt
9901 F:      Documentation/devicetree/bindings/*/max77686.txt
9902 F:      Documentation/devicetree/bindings/mfd/max77693.txt
9903 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
9904 F:      include/linux/mfd/max14577*.h
9905 F:      include/linux/mfd/max77686*.h
9906 F:      include/linux/mfd/max77693*.h
9907
9908 MAXIRADIO FM RADIO RECEIVER DRIVER
9909 M:      Hans Verkuil <hverkuil@xs4all.nl>
9910 L:      linux-media@vger.kernel.org
9911 T:      git git://linuxtv.org/media_tree.git
9912 W:      https://linuxtv.org
9913 S:      Maintained
9914 F:      drivers/media/radio/radio-maxiradio*
9915
9916 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
9917 M:      Peter Rosin <peda@axentia.se>
9918 L:      linux-iio@vger.kernel.org
9919 S:      Maintained
9920 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
9921 F:      drivers/iio/potentiometer/mcp4018.c
9922 F:      drivers/iio/potentiometer/mcp4531.c
9923
9924 MCR20A IEEE-802.15.4 RADIO DRIVER
9925 M:      Xue Liu <liuxuenetmail@gmail.com>
9926 L:      linux-wpan@vger.kernel.org
9927 W:      https://github.com/xueliu/mcr20a-linux
9928 S:      Maintained
9929 F:      drivers/net/ieee802154/mcr20a.c
9930 F:      drivers/net/ieee802154/mcr20a.h
9931 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
9932
9933 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
9934 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9935 L:      linux-iio@vger.kernel.org
9936 S:      Maintained
9937 F:      drivers/iio/dac/cio-dac.c
9938
9939 MEDIA CONTROLLER FRAMEWORK
9940 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9941 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9942 L:      linux-media@vger.kernel.org
9943 W:      https://www.linuxtv.org
9944 T:      git git://linuxtv.org/media_tree.git
9945 S:      Supported
9946 F:      drivers/media/mc/
9947 F:      include/media/media-*.h
9948 F:      include/uapi/linux/media.h
9949
9950 MEDIA DRIVERS FOR ASCOT2E
9951 M:      Sergey Kozlov <serjk@netup.ru>
9952 M:      Abylay Ospan <aospan@netup.ru>
9953 L:      linux-media@vger.kernel.org
9954 W:      https://linuxtv.org
9955 W:      http://netup.tv/
9956 T:      git git://linuxtv.org/media_tree.git
9957 S:      Supported
9958 F:      drivers/media/dvb-frontends/ascot2e*
9959
9960 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
9961 M:      Jasmin Jessich <jasmin@anw.at>
9962 L:      linux-media@vger.kernel.org
9963 W:      https://linuxtv.org
9964 T:      git git://linuxtv.org/media_tree.git
9965 S:      Maintained
9966 F:      drivers/media/dvb-frontends/cxd2099*
9967
9968 MEDIA DRIVERS FOR CXD2841ER
9969 M:      Sergey Kozlov <serjk@netup.ru>
9970 M:      Abylay Ospan <aospan@netup.ru>
9971 L:      linux-media@vger.kernel.org
9972 W:      https://linuxtv.org
9973 W:      http://netup.tv/
9974 T:      git git://linuxtv.org/media_tree.git
9975 S:      Supported
9976 F:      drivers/media/dvb-frontends/cxd2841er*
9977
9978 MEDIA DRIVERS FOR CXD2880
9979 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
9980 L:      linux-media@vger.kernel.org
9981 W:      http://linuxtv.org/
9982 T:      git git://linuxtv.org/media_tree.git
9983 S:      Supported
9984 F:      drivers/media/dvb-frontends/cxd2880/*
9985 F:      drivers/media/spi/cxd2880*
9986
9987 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
9988 L:      linux-media@vger.kernel.org
9989 W:      https://linuxtv.org
9990 T:      git git://linuxtv.org/media_tree.git
9991 S:      Orphan
9992 F:      drivers/media/pci/ddbridge/*
9993
9994 MEDIA DRIVERS FOR FREESCALE IMX
9995 M:      Steve Longerbeam <slongerbeam@gmail.com>
9996 M:      Philipp Zabel <p.zabel@pengutronix.de>
9997 L:      linux-media@vger.kernel.org
9998 T:      git git://linuxtv.org/media_tree.git
9999 S:      Maintained
10000 F:      Documentation/devicetree/bindings/media/imx.txt
10001 F:      Documentation/media/v4l-drivers/imx.rst
10002 F:      drivers/staging/media/imx/
10003 F:      include/linux/imx-media.h
10004 F:      include/media/imx.h
10005
10006 MEDIA DRIVER FOR FREESCALE IMX PXP
10007 M:      Philipp Zabel <p.zabel@pengutronix.de>
10008 L:      linux-media@vger.kernel.org
10009 T:      git git://linuxtv.org/media_tree.git
10010 S:      Maintained
10011 F:      drivers/media/platform/imx-pxp.[ch]
10012
10013 MEDIA DRIVERS FOR FREESCALE IMX7
10014 M:      Rui Miguel Silva <rmfrfs@gmail.com>
10015 L:      linux-media@vger.kernel.org
10016 T:      git git://linuxtv.org/media_tree.git
10017 S:      Maintained
10018 F:      Documentation/devicetree/bindings/media/imx7-csi.txt
10019 F:      Documentation/devicetree/bindings/media/imx7-mipi-csi2.txt
10020 F:      Documentation/media/v4l-drivers/imx7.rst
10021 F:      drivers/staging/media/imx/imx7-media-csi.c
10022 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10023
10024 MEDIA DRIVERS FOR HELENE
10025 M:      Abylay Ospan <aospan@netup.ru>
10026 L:      linux-media@vger.kernel.org
10027 W:      https://linuxtv.org
10028 W:      http://netup.tv/
10029 T:      git git://linuxtv.org/media_tree.git
10030 S:      Supported
10031 F:      drivers/media/dvb-frontends/helene*
10032
10033 MEDIA DRIVERS FOR HORUS3A
10034 M:      Sergey Kozlov <serjk@netup.ru>
10035 M:      Abylay Ospan <aospan@netup.ru>
10036 L:      linux-media@vger.kernel.org
10037 W:      https://linuxtv.org
10038 W:      http://netup.tv/
10039 T:      git git://linuxtv.org/media_tree.git
10040 S:      Supported
10041 F:      drivers/media/dvb-frontends/horus3a*
10042
10043 MEDIA DRIVERS FOR LNBH25
10044 M:      Sergey Kozlov <serjk@netup.ru>
10045 M:      Abylay Ospan <aospan@netup.ru>
10046 L:      linux-media@vger.kernel.org
10047 W:      https://linuxtv.org
10048 W:      http://netup.tv/
10049 T:      git git://linuxtv.org/media_tree.git
10050 S:      Supported
10051 F:      drivers/media/dvb-frontends/lnbh25*
10052
10053 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10054 L:      linux-media@vger.kernel.org
10055 W:      https://linuxtv.org
10056 T:      git git://linuxtv.org/media_tree.git
10057 S:      Orphan
10058 F:      drivers/media/dvb-frontends/mxl5xx*
10059
10060 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10061 M:      Sergey Kozlov <serjk@netup.ru>
10062 M:      Abylay Ospan <aospan@netup.ru>
10063 L:      linux-media@vger.kernel.org
10064 W:      https://linuxtv.org
10065 W:      http://netup.tv/
10066 T:      git git://linuxtv.org/media_tree.git
10067 S:      Supported
10068 F:      drivers/media/pci/netup_unidvb/*
10069
10070 MEDIA DRIVERS FOR RENESAS - CEU
10071 M:      Jacopo Mondi <jacopo@jmondi.org>
10072 L:      linux-media@vger.kernel.org
10073 L:      linux-renesas-soc@vger.kernel.org
10074 T:      git git://linuxtv.org/media_tree.git
10075 S:      Supported
10076 F:      Documentation/devicetree/bindings/media/renesas,ceu.txt
10077 F:      drivers/media/platform/renesas-ceu.c
10078 F:      include/media/drv-intf/renesas-ceu.h
10079
10080 MEDIA DRIVERS FOR RENESAS - DRIF
10081 M:      Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
10082 L:      linux-media@vger.kernel.org
10083 L:      linux-renesas-soc@vger.kernel.org
10084 T:      git git://linuxtv.org/media_tree.git
10085 S:      Supported
10086 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
10087 F:      drivers/media/platform/rcar_drif.c
10088
10089 MEDIA DRIVERS FOR RENESAS - FCP
10090 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10091 L:      linux-media@vger.kernel.org
10092 L:      linux-renesas-soc@vger.kernel.org
10093 T:      git git://linuxtv.org/media_tree.git
10094 S:      Supported
10095 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
10096 F:      drivers/media/platform/rcar-fcp.c
10097 F:      include/media/rcar-fcp.h
10098
10099 MEDIA DRIVERS FOR RENESAS - FDP1
10100 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10101 L:      linux-media@vger.kernel.org
10102 L:      linux-renesas-soc@vger.kernel.org
10103 T:      git git://linuxtv.org/media_tree.git
10104 S:      Supported
10105 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
10106 F:      drivers/media/platform/rcar_fdp1.c
10107
10108 MEDIA DRIVERS FOR RENESAS - VIN
10109 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
10110 L:      linux-media@vger.kernel.org
10111 L:      linux-renesas-soc@vger.kernel.org
10112 T:      git git://linuxtv.org/media_tree.git
10113 S:      Supported
10114 F:      Documentation/devicetree/bindings/media/renesas,csi2.txt
10115 F:      Documentation/devicetree/bindings/media/renesas,vin.txt
10116 F:      drivers/media/platform/rcar-vin/
10117
10118 MEDIA DRIVERS FOR RENESAS - VSP1
10119 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10120 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10121 L:      linux-media@vger.kernel.org
10122 L:      linux-renesas-soc@vger.kernel.org
10123 T:      git git://linuxtv.org/media_tree.git
10124 S:      Supported
10125 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
10126 F:      drivers/media/platform/vsp1/
10127
10128 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
10129 L:      linux-media@vger.kernel.org
10130 W:      https://linuxtv.org
10131 T:      git git://linuxtv.org/media_tree.git
10132 S:      Orphan
10133 F:      drivers/media/dvb-frontends/stv0910*
10134
10135 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
10136 L:      linux-media@vger.kernel.org
10137 W:      https://linuxtv.org
10138 T:      git git://linuxtv.org/media_tree.git
10139 S:      Orphan
10140 F:      drivers/media/dvb-frontends/stv6111*
10141
10142 MEDIA DRIVERS FOR STM32 - DCMI
10143 M:      Hugues Fruchet <hugues.fruchet@st.com>
10144 L:      linux-media@vger.kernel.org
10145 T:      git git://linuxtv.org/media_tree.git
10146 S:      Supported
10147 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.txt
10148 F:      drivers/media/platform/stm32/stm32-dcmi.c
10149
10150 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10151 M:      Dmitry Osipenko <digetx@gmail.com>
10152 L:      linux-media@vger.kernel.org
10153 L:      linux-tegra@vger.kernel.org
10154 T:      git git://linuxtv.org/media_tree.git
10155 S:      Maintained
10156 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10157 F:      drivers/staging/media/tegra-vde/
10158
10159 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
10160 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
10161 P:      LinuxTV.org Project
10162 L:      linux-media@vger.kernel.org
10163 W:      https://linuxtv.org
10164 Q:      http://patchwork.kernel.org/project/linux-media/list/
10165 T:      git git://linuxtv.org/media_tree.git
10166 S:      Maintained
10167 F:      Documentation/devicetree/bindings/media/
10168 F:      Documentation/media/
10169 F:      drivers/media/
10170 F:      drivers/staging/media/
10171 F:      include/linux/platform_data/media/
10172 F:      include/media/
10173 F:      include/uapi/linux/dvb/
10174 F:      include/uapi/linux/videodev2.h
10175 F:      include/uapi/linux/media.h
10176 F:      include/uapi/linux/v4l2-*
10177 F:      include/uapi/linux/meye.h
10178 F:      include/uapi/linux/ivtv*
10179 F:      include/uapi/linux/uvcvideo.h
10180
10181 MEDIATEK BLUETOOTH DRIVER
10182 M:      Sean Wang <sean.wang@mediatek.com>
10183 L:      linux-bluetooth@vger.kernel.org
10184 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10185 S:      Maintained
10186 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
10187 F:      drivers/bluetooth/btmtkuart.c
10188
10189 MEDIATEK CIR DRIVER
10190 M:      Sean Wang <sean.wang@mediatek.com>
10191 S:      Maintained
10192 F:      drivers/media/rc/mtk-cir.c
10193
10194 MEDIATEK DMA DRIVER
10195 M:      Sean Wang <sean.wang@mediatek.com>
10196 L:      dmaengine@vger.kernel.org
10197 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10198 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10199 S:      Maintained
10200 F:      Documentation/devicetree/bindings/dma/mtk-*
10201 F:      drivers/dma/mediatek/
10202
10203 MEDIATEK PMIC LED DRIVER
10204 M:      Sean Wang <sean.wang@mediatek.com>
10205 S:      Maintained
10206 F:      drivers/leds/leds-mt6323.c
10207 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
10208
10209 MEDIATEK ETHERNET DRIVER
10210 M:      Felix Fietkau <nbd@openwrt.org>
10211 M:      John Crispin <john@phrozen.org>
10212 M:      Sean Wang <sean.wang@mediatek.com>
10213 M:      Nelson Chang <nelson.chang@mediatek.com>
10214 L:      netdev@vger.kernel.org
10215 S:      Maintained
10216 F:      drivers/net/ethernet/mediatek/
10217
10218 MEDIATEK SWITCH DRIVER
10219 M:      Sean Wang <sean.wang@mediatek.com>
10220 L:      netdev@vger.kernel.org
10221 S:      Maintained
10222 F:      drivers/net/dsa/mt7530.*
10223 F:      net/dsa/tag_mtk.c
10224
10225 MEDIATEK JPEG DRIVER
10226 M:      Rick Chang <rick.chang@mediatek.com>
10227 M:      Bin Liu <bin.liu@mediatek.com>
10228 S:      Supported
10229 F:      drivers/media/platform/mtk-jpeg/
10230 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
10231
10232 MEDIATEK MDP DRIVER
10233 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
10234 M:      Houlong Wei <houlong.wei@mediatek.com>
10235 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10236 S:      Supported
10237 F:      drivers/media/platform/mtk-mdp/
10238 F:      drivers/media/platform/mtk-vpu/
10239 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
10240
10241 MEDIATEK MEDIA DRIVER
10242 M:      Tiffany Lin <tiffany.lin@mediatek.com>
10243 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10244 S:      Supported
10245 F:      drivers/media/platform/mtk-vcodec/
10246 F:      drivers/media/platform/mtk-vpu/
10247 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
10248 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
10249
10250 MEDIATEK MMC/SD/SDIO DRIVER
10251 M:      Chaotian Jing <chaotian.jing@mediatek.com>
10252 S:      Maintained
10253 F:      drivers/mmc/host/mtk-sd.c
10254 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
10255
10256 MEDIATEK MT76 WIRELESS LAN DRIVER
10257 M:      Felix Fietkau <nbd@nbd.name>
10258 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
10259 R:      Ryder Lee <ryder.lee@mediatek.com>
10260 R:      Roy Luo <royluo@google.com>
10261 L:      linux-wireless@vger.kernel.org
10262 S:      Maintained
10263 F:      drivers/net/wireless/mediatek/mt76/
10264
10265 MEDIATEK MT7601U WIRELESS LAN DRIVER
10266 M:      Jakub Kicinski <kubakici@wp.pl>
10267 L:      linux-wireless@vger.kernel.org
10268 S:      Maintained
10269 F:      drivers/net/wireless/mediatek/mt7601u/
10270
10271 MEDIATEK MT7621/28/88 I2C DRIVER
10272 M:      Stefan Roese <sr@denx.de>
10273 L:      linux-i2c@vger.kernel.org
10274 S:      Maintained
10275 F:      drivers/i2c/busses/i2c-mt7621.c
10276 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
10277
10278 MEDIATEK NAND CONTROLLER DRIVER
10279 M:      Xiaolei Li <xiaolei.li@mediatek.com>
10280 L:      linux-mtd@lists.infradead.org
10281 S:      Maintained
10282 F:      drivers/mtd/nand/raw/mtk_*
10283 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
10284
10285 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
10286 M:      Sean Wang <sean.wang@mediatek.com>
10287 S:      Maintained
10288 F:      drivers/char/hw_random/mtk-rng.c
10289
10290 MEDIATEK USB3 DRD IP DRIVER
10291 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
10292 L:      linux-usb@vger.kernel.org (moderated for non-subscribers)
10293 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10294 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10295 S:      Maintained
10296 F:      drivers/usb/mtu3/
10297
10298 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
10299 M:      Peter Senna Tschudin <peter.senna@gmail.com>
10300 M:      Martin Donnelly <martin.donnelly@ge.com>
10301 M:      Martyn Welch <martyn.welch@collabora.co.uk>
10302 S:      Maintained
10303 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
10304 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
10305
10306 MEGARAID SCSI/SAS DRIVERS
10307 M:      Kashyap Desai <kashyap.desai@broadcom.com>
10308 M:      Sumit Saxena <sumit.saxena@broadcom.com>
10309 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
10310 L:      megaraidlinux.pdl@broadcom.com
10311 L:      linux-scsi@vger.kernel.org
10312 W:      http://www.avagotech.com/support/
10313 S:      Maintained
10314 F:      Documentation/scsi/megaraid.txt
10315 F:      drivers/scsi/megaraid.*
10316 F:      drivers/scsi/megaraid/
10317
10318 MELEXIS MLX90614 DRIVER
10319 M:      Crt Mori <cmo@melexis.com>
10320 L:      linux-iio@vger.kernel.org
10321 W:      http://www.melexis.com
10322 S:      Supported
10323 F:      drivers/iio/temperature/mlx90614.c
10324
10325 MELEXIS MLX90632 DRIVER
10326 M:      Crt Mori <cmo@melexis.com>
10327 L:      linux-iio@vger.kernel.org
10328 W:      http://www.melexis.com
10329 S:      Supported
10330 F:      drivers/iio/temperature/mlx90632.c
10331
10332 MELFAS MIP4 TOUCHSCREEN DRIVER
10333 M:      Sangwon Jee <jeesw@melfas.com>
10334 W:      http://www.melfas.com
10335 S:      Supported
10336 F:      drivers/input/touchscreen/melfas_mip4.c
10337 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
10338
10339 MELLANOX ETHERNET DRIVER (mlx4_en)
10340 M:      Tariq Toukan <tariqt@mellanox.com>
10341 L:      netdev@vger.kernel.org
10342 S:      Supported
10343 W:      http://www.mellanox.com
10344 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10345 F:      drivers/net/ethernet/mellanox/mlx4/en_*
10346
10347 MELLANOX ETHERNET DRIVER (mlx5e)
10348 M:      Saeed Mahameed <saeedm@mellanox.com>
10349 L:      netdev@vger.kernel.org
10350 S:      Supported
10351 W:      http://www.mellanox.com
10352 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10353 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
10354
10355 MELLANOX ETHERNET INNOVA DRIVERS
10356 R:      Boris Pismenny <borisp@mellanox.com>
10357 L:      netdev@vger.kernel.org
10358 S:      Supported
10359 W:      http://www.mellanox.com
10360 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10361 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
10362 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
10363 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
10364 F:      include/linux/mlx5/mlx5_ifc_fpga.h
10365
10366 MELLANOX ETHERNET SWITCH DRIVERS
10367 M:      Jiri Pirko <jiri@mellanox.com>
10368 M:      Ido Schimmel <idosch@mellanox.com>
10369 L:      netdev@vger.kernel.org
10370 S:      Supported
10371 W:      http://www.mellanox.com
10372 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10373 F:      drivers/net/ethernet/mellanox/mlxsw/
10374 F:      tools/testing/selftests/drivers/net/mlxsw/
10375
10376 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
10377 M:      mlxsw@mellanox.com
10378 L:      netdev@vger.kernel.org
10379 S:      Supported
10380 W:      http://www.mellanox.com
10381 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10382 F:      drivers/net/ethernet/mellanox/mlxfw/
10383
10384 MELLANOX HARDWARE PLATFORM SUPPORT
10385 M:      Andy Shevchenko <andy@infradead.org>
10386 M:      Darren Hart <dvhart@infradead.org>
10387 M:      Vadim Pasternak <vadimp@mellanox.com>
10388 L:      platform-driver-x86@vger.kernel.org
10389 S:      Supported
10390 F:      drivers/platform/mellanox/
10391 F:      include/linux/platform_data/mlxreg.h
10392
10393 MELLANOX MLX4 core VPI driver
10394 M:      Tariq Toukan <tariqt@mellanox.com>
10395 L:      netdev@vger.kernel.org
10396 L:      linux-rdma@vger.kernel.org
10397 W:      http://www.mellanox.com
10398 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10399 S:      Supported
10400 F:      drivers/net/ethernet/mellanox/mlx4/
10401 F:      include/linux/mlx4/
10402
10403 MELLANOX MLX4 IB driver
10404 M:      Yishai Hadas <yishaih@mellanox.com>
10405 L:      linux-rdma@vger.kernel.org
10406 W:      http://www.mellanox.com
10407 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10408 S:      Supported
10409 F:      drivers/infiniband/hw/mlx4/
10410 F:      include/linux/mlx4/
10411 F:      include/uapi/rdma/mlx4-abi.h
10412
10413 MELLANOX MLX5 core VPI driver
10414 M:      Saeed Mahameed <saeedm@mellanox.com>
10415 M:      Leon Romanovsky <leonro@mellanox.com>
10416 L:      netdev@vger.kernel.org
10417 L:      linux-rdma@vger.kernel.org
10418 W:      http://www.mellanox.com
10419 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10420 S:      Supported
10421 F:      drivers/net/ethernet/mellanox/mlx5/core/
10422 F:      include/linux/mlx5/
10423 F:      Documentation/networking/device_drivers/mellanox/
10424
10425 MELLANOX MLX5 IB driver
10426 M:      Leon Romanovsky <leonro@mellanox.com>
10427 L:      linux-rdma@vger.kernel.org
10428 W:      http://www.mellanox.com
10429 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10430 S:      Supported
10431 F:      drivers/infiniband/hw/mlx5/
10432 F:      include/linux/mlx5/
10433 F:      include/uapi/rdma/mlx5-abi.h
10434
10435 MELLANOX MLXCPLD I2C AND MUX DRIVER
10436 M:      Vadim Pasternak <vadimp@mellanox.com>
10437 M:      Michael Shych <michaelsh@mellanox.com>
10438 L:      linux-i2c@vger.kernel.org
10439 S:      Supported
10440 F:      drivers/i2c/busses/i2c-mlxcpld.c
10441 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
10442 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
10443
10444 MELLANOX MLXCPLD LED DRIVER
10445 M:      Vadim Pasternak <vadimp@mellanox.com>
10446 L:      linux-leds@vger.kernel.org
10447 S:      Supported
10448 F:      drivers/leds/leds-mlxcpld.c
10449 F:      drivers/leds/leds-mlxreg.c
10450 F:      Documentation/leds/leds-mlxcpld.rst
10451
10452 MELLANOX PLATFORM DRIVER
10453 M:      Vadim Pasternak <vadimp@mellanox.com>
10454 L:      platform-driver-x86@vger.kernel.org
10455 S:      Supported
10456 F:      drivers/platform/x86/mlx-platform.c
10457
10458 MEMBARRIER SUPPORT
10459 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10460 M:      "Paul E. McKenney" <paulmck@kernel.org>
10461 L:      linux-kernel@vger.kernel.org
10462 S:      Supported
10463 F:      kernel/sched/membarrier.c
10464 F:      include/uapi/linux/membarrier.h
10465 F:      arch/powerpc/include/asm/membarrier.h
10466
10467 MEMBLOCK
10468 M:      Mike Rapoport <rppt@linux.ibm.com>
10469 L:      linux-mm@kvack.org
10470 S:      Maintained
10471 F:      include/linux/memblock.h
10472 F:      mm/memblock.c
10473 F:      Documentation/core-api/boot-time-mm.rst
10474
10475 MEMORY MANAGEMENT
10476 L:      linux-mm@kvack.org
10477 W:      http://www.linux-mm.org
10478 S:      Maintained
10479 F:      include/linux/mm.h
10480 F:      include/linux/gfp.h
10481 F:      include/linux/mmzone.h
10482 F:      include/linux/memory_hotplug.h
10483 F:      include/linux/vmalloc.h
10484 F:      mm/
10485
10486 MEMORY TECHNOLOGY DEVICES (MTD)
10487 M:      David Woodhouse <dwmw2@infradead.org>
10488 M:      Brian Norris <computersforpeace@gmail.com>
10489 M:      Marek Vasut <marek.vasut@gmail.com>
10490 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10491 M:      Richard Weinberger <richard@nod.at>
10492 M:      Vignesh Raghavendra <vigneshr@ti.com>
10493 L:      linux-mtd@lists.infradead.org
10494 W:      http://www.linux-mtd.infradead.org/
10495 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
10496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
10497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
10498 S:      Maintained
10499 F:      Documentation/devicetree/bindings/mtd/
10500 F:      drivers/mtd/
10501 F:      include/linux/mtd/
10502 F:      include/uapi/mtd/
10503
10504 MEN A21 WATCHDOG DRIVER
10505 M:      Johannes Thumshirn <morbidrsa@gmail.com>
10506 L:      linux-watchdog@vger.kernel.org
10507 S:      Maintained
10508 F:      drivers/watchdog/mena21_wdt.c
10509
10510 MEN CHAMELEON BUS (mcb)
10511 M:      Johannes Thumshirn <morbidrsa@gmail.com>
10512 S:      Maintained
10513 F:      drivers/mcb/
10514 F:      include/linux/mcb.h
10515 F:      Documentation/driver-api/men-chameleon-bus.rst
10516
10517 MEN F21BMC (Board Management Controller)
10518 M:      Andreas Werner <andreas.werner@men.de>
10519 S:      Supported
10520 F:      drivers/mfd/menf21bmc.c
10521 F:      drivers/watchdog/menf21bmc_wdt.c
10522 F:      drivers/leds/leds-menf21bmc.c
10523 F:      drivers/hwmon/menf21bmc_hwmon.c
10524 F:      Documentation/hwmon/menf21bmc.rst
10525
10526 MEN Z069 WATCHDOG DRIVER
10527 M:      Johannes Thumshirn <jth@kernel.org>
10528 L:      linux-watchdog@vger.kernel.org
10529 S:      Maintained
10530 F:      drivers/watchdog/menz69_wdt.c
10531
10532 MESON AO CEC DRIVER FOR AMLOGIC SOCS
10533 M:      Neil Armstrong <narmstrong@baylibre.com>
10534 L:      linux-media@vger.kernel.org
10535 L:      linux-amlogic@lists.infradead.org
10536 W:      http://linux-meson.com/
10537 S:      Supported
10538 F:      drivers/media/platform/meson/ao-cec.c
10539 F:      drivers/media/platform/meson/ao-cec-g12a.c
10540 F:      Documentation/devicetree/bindings/media/meson-ao-cec.txt
10541 T:      git git://linuxtv.org/media_tree.git
10542
10543 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
10544 M:      Liang Yang <liang.yang@amlogic.com>
10545 L:      linux-mtd@lists.infradead.org
10546 S:      Maintained
10547 F:      drivers/mtd/nand/raw/meson_*
10548 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
10549
10550 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
10551 M:      Maxime Jourdan <mjourdan@baylibre.com>
10552 L:      linux-media@vger.kernel.org
10553 L:      linux-amlogic@lists.infradead.org
10554 S:      Supported
10555 F:      drivers/staging/media/meson/vdec/
10556 T:      git git://linuxtv.org/media_tree.git
10557
10558 METHODE UDPU SUPPORT
10559 M:      Vladimir Vid <vladimir.vid@sartura.hr>
10560 S:      Maintained
10561 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
10562
10563 MICROBLAZE ARCHITECTURE
10564 M:      Michal Simek <monstr@monstr.eu>
10565 W:      http://www.monstr.eu/fdt/
10566 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
10567 S:      Supported
10568 F:      arch/microblaze/
10569
10570 MICROCHIP AT91 SERIAL DRIVER
10571 M:      Richard Genoud <richard.genoud@gmail.com>
10572 S:      Maintained
10573 F:      drivers/tty/serial/atmel_serial.c
10574 F:      drivers/tty/serial/atmel_serial.h
10575 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
10576
10577 MICROCHIP AUDIO ASOC DRIVERS
10578 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
10579 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10580 S:      Supported
10581 F:      sound/soc/atmel
10582
10583 MICROCHIP DMA DRIVER
10584 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10585 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10586 L:      dmaengine@vger.kernel.org
10587 S:      Supported
10588 F:      drivers/dma/at_hdmac.c
10589 F:      drivers/dma/at_hdmac_regs.h
10590 F:      include/linux/platform_data/dma-atmel.h
10591 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
10592 F:      include/dt-bindings/dma/at91.h
10593
10594 MICROCHIP ECC DRIVER
10595 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
10596 L:      linux-crypto@vger.kernel.org
10597 S:      Maintained
10598 F:      drivers/crypto/atmel-ecc.*
10599
10600 MICROCHIP I2C DRIVER
10601 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10602 L:      linux-i2c@vger.kernel.org
10603 S:      Supported
10604 F:      drivers/i2c/busses/i2c-at91.h
10605 F:      drivers/i2c/busses/i2c-at91-*.c
10606
10607 MICROCHIP ISC DRIVER
10608 M:      Eugen Hristev <eugen.hristev@microchip.com>
10609 L:      linux-media@vger.kernel.org
10610 S:      Supported
10611 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
10612 F:      drivers/media/platform/atmel/atmel-isc.h
10613 F:      drivers/media/platform/atmel/atmel-isc-base.c
10614 F:      drivers/media/platform/atmel/atmel-isc-regs.h
10615 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
10616
10617 MICROCHIP ISI DRIVER
10618 M:      Eugen Hristev <eugen.hristev@microchip.com>
10619 L:      linux-media@vger.kernel.org
10620 S:      Supported
10621 F:      drivers/media/platform/atmel/atmel-isi.c
10622 F:      drivers/media/platform/atmel/atmel-isi.h
10623
10624 MICROCHIP AT91 USART MFD DRIVER
10625 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
10626 L:      linux-kernel@vger.kernel.org
10627 S:      Supported
10628 F:      drivers/mfd/at91-usart.c
10629 F:      include/dt-bindings/mfd/at91-usart.h
10630 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
10631
10632 MICROCHIP AT91 USART SPI DRIVER
10633 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
10634 L:      linux-spi@vger.kernel.org
10635 S:      Supported
10636 F:      drivers/spi/spi-at91-usart.c
10637 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
10638
10639 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
10640 M:      Woojung Huh <woojung.huh@microchip.com>
10641 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
10642 L:      netdev@vger.kernel.org
10643 S:      Maintained
10644 F:      net/dsa/tag_ksz.c
10645 F:      drivers/net/dsa/microchip/*
10646 F:      include/linux/platform_data/microchip-ksz.h
10647 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
10648
10649 MICROCHIP LAN743X ETHERNET DRIVER
10650 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
10651 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
10652 L:      netdev@vger.kernel.org
10653 S:      Maintained
10654 F:      drivers/net/ethernet/microchip/lan743x_*
10655
10656 MICROCHIP LCDFB DRIVER
10657 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
10658 L:      linux-fbdev@vger.kernel.org
10659 S:      Maintained
10660 F:      drivers/video/fbdev/atmel_lcdfb.c
10661 F:      include/video/atmel_lcdc.h
10662
10663 MICROCHIP MMC/SD/SDIO MCI DRIVER
10664 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10665 S:      Maintained
10666 F:      drivers/mmc/host/atmel-mci.c
10667
10668 MICROCHIP MCP16502 PMIC DRIVER
10669 M:      Andrei Stefanescu <andrei.stefanescu@microchip.com>
10670 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10671 S:      Maintained
10672 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
10673 F:      drivers/regulator/mcp16502.c
10674
10675 MICROCHIP MCP3911 ADC DRIVER
10676 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10677 M:      Kent Gustavsson <kent@minoris.se>
10678 L:      linux-iio@vger.kernel.org
10679 S:      Supported
10680 F:      drivers/iio/adc/mcp3911.c
10681 F:      Documentation/devicetree/bindings/iio/adc/mcp3911.txt
10682
10683 MICROCHIP NAND DRIVER
10684 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
10685 L:      linux-mtd@lists.infradead.org
10686 S:      Supported
10687 F:      drivers/mtd/nand/raw/atmel/*
10688 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
10689
10690 MICROCHIP PWM DRIVER
10691 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
10692 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10693 L:      linux-pwm@vger.kernel.org
10694 S:      Supported
10695 F:      drivers/pwm/pwm-atmel.c
10696 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
10697
10698 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
10699 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10700 M:      Eugen Hristev <eugen.hristev@microchip.com>
10701 L:      linux-iio@vger.kernel.org
10702 S:      Supported
10703 F:      drivers/iio/adc/at91-sama5d2_adc.c
10704 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
10705 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
10706
10707 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
10708 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
10709 S:      Supported
10710 F:      drivers/power/reset/at91-sama5d2_shdwc.c
10711
10712 MICROCHIP SPI DRIVER
10713 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
10714 S:      Supported
10715 F:      drivers/spi/spi-atmel.*
10716
10717 MICROCHIP SSC DRIVER
10718 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
10719 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10720 S:      Supported
10721 F:      drivers/misc/atmel-ssc.c
10722 F:      include/linux/atmel-ssc.h
10723
10724 MICROCHIP USBA UDC DRIVER
10725 M:      Cristian Birsan <cristian.birsan@microchip.com>
10726 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10727 S:      Supported
10728 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
10729
10730 MICROCHIP USB251XB DRIVER
10731 M:      Richard Leitner <richard.leitner@skidata.com>
10732 L:      linux-usb@vger.kernel.org
10733 S:      Maintained
10734 F:      drivers/usb/misc/usb251xb.c
10735 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
10736
10737 MICROCHIP XDMA DRIVER
10738 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10739 L:      linux-arm-kernel@lists.infradead.org
10740 L:      dmaengine@vger.kernel.org
10741 S:      Supported
10742 F:      drivers/dma/at_xdmac.c
10743
10744 MICROSEMI MIPS SOCS
10745 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
10746 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
10747 L:      linux-mips@vger.kernel.org
10748 S:      Supported
10749 F:      arch/mips/generic/board-ocelot.c
10750 F:      arch/mips/configs/generic/board-ocelot.config
10751 F:      arch/mips/boot/dts/mscc/
10752 F:      Documentation/devicetree/bindings/mips/mscc.txt
10753
10754 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
10755 M:      Don Brace <don.brace@microsemi.com>
10756 L:      esc.storagedev@microsemi.com
10757 L:      linux-scsi@vger.kernel.org
10758 S:      Supported
10759 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
10760 F:      drivers/scsi/smartpqi/Kconfig
10761 F:      drivers/scsi/smartpqi/Makefile
10762 F:      include/linux/cciss*.h
10763 F:      include/uapi/linux/cciss*.h
10764 F:      Documentation/scsi/smartpqi.txt
10765
10766 MICROSEMI ETHERNET SWITCH DRIVER
10767 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
10768 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
10769 L:      netdev@vger.kernel.org
10770 S:      Supported
10771 F:      drivers/net/ethernet/mscc/
10772
10773 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
10774 M:      Chen Yu <yu.c.chen@intel.com>
10775 L:      platform-driver-x86@vger.kernel.org
10776 S:      Supported
10777 F:      drivers/platform/x86/surfacepro3_button.c
10778
10779 MICROTEK X6 SCANNER
10780 M:      Oliver Neukum <oliver@neukum.org>
10781 S:      Maintained
10782 F:      drivers/usb/image/microtek.*
10783
10784 MIPS
10785 M:      Ralf Baechle <ralf@linux-mips.org>
10786 M:      Paul Burton <paul.burton@mips.com>
10787 M:      James Hogan <jhogan@kernel.org>
10788 L:      linux-mips@vger.kernel.org
10789 W:      http://www.linux-mips.org/
10790 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
10791 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
10792 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
10793 S:      Supported
10794 F:      Documentation/devicetree/bindings/mips/
10795 F:      Documentation/mips/
10796 F:      arch/mips/
10797 F:      drivers/platform/mips/
10798
10799 MIPS BOSTON DEVELOPMENT BOARD
10800 M:      Paul Burton <paul.burton@mips.com>
10801 L:      linux-mips@vger.kernel.org
10802 S:      Maintained
10803 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
10804 F:      arch/mips/boot/dts/img/boston.dts
10805 F:      arch/mips/configs/generic/board-boston.config
10806 F:      drivers/clk/imgtec/clk-boston.c
10807 F:      include/dt-bindings/clock/boston-clock.h
10808
10809 MIPS GENERIC PLATFORM
10810 M:      Paul Burton <paul.burton@mips.com>
10811 L:      linux-mips@vger.kernel.org
10812 S:      Supported
10813 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.txt
10814 F:      arch/mips/generic/
10815 F:      arch/mips/tools/generic-board-config.sh
10816
10817 MIPS/LOONGSON1 ARCHITECTURE
10818 M:      Keguang Zhang <keguang.zhang@gmail.com>
10819 L:      linux-mips@vger.kernel.org
10820 S:      Maintained
10821 F:      arch/mips/loongson32/
10822 F:      arch/mips/include/asm/mach-loongson32/
10823 F:      drivers/*/*loongson1*
10824 F:      drivers/*/*/*loongson1*
10825
10826 MIPS/LOONGSON2 ARCHITECTURE
10827 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
10828 L:      linux-mips@vger.kernel.org
10829 S:      Maintained
10830 F:      arch/mips/loongson64/fuloong-2e/
10831 F:      arch/mips/loongson64/lemote-2f/
10832 F:      arch/mips/include/asm/mach-loongson64/
10833 F:      drivers/*/*loongson2*
10834 F:      drivers/*/*/*loongson2*
10835
10836 MIPS/LOONGSON3 ARCHITECTURE
10837 M:      Huacai Chen <chenhc@lemote.com>
10838 L:      linux-mips@vger.kernel.org
10839 S:      Maintained
10840 F:      arch/mips/loongson64/
10841 F:      arch/mips/include/asm/mach-loongson64/
10842 F:      drivers/platform/mips/cpu_hwmon.c
10843 F:      drivers/*/*loongson3*
10844 F:      drivers/*/*/*loongson3*
10845
10846 MIPS RINT INSTRUCTION EMULATION
10847 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
10848 L:      linux-mips@vger.kernel.org
10849 S:      Supported
10850 F:      arch/mips/math-emu/sp_rint.c
10851 F:      arch/mips/math-emu/dp_rint.c
10852
10853 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
10854 M:      Hans Verkuil <hverkuil@xs4all.nl>
10855 L:      linux-media@vger.kernel.org
10856 T:      git git://linuxtv.org/media_tree.git
10857 W:      https://linuxtv.org
10858 S:      Odd Fixes
10859 F:      drivers/media/radio/radio-miropcm20*
10860
10861 MMP SUPPORT
10862 R:      Lubomir Rintel <lkundrak@v3.sk>
10863 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10864 S:      Odd Fixes
10865 F:      arch/arm/boot/dts/mmp*
10866 F:      arch/arm/mach-mmp/
10867
10868 MMU GATHER AND TLB INVALIDATION
10869 M:      Will Deacon <will@kernel.org>
10870 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
10871 M:      Andrew Morton <akpm@linux-foundation.org>
10872 M:      Nick Piggin <npiggin@gmail.com>
10873 M:      Peter Zijlstra <peterz@infradead.org>
10874 L:      linux-arch@vger.kernel.org
10875 L:      linux-mm@kvack.org
10876 S:      Maintained
10877 F:      arch/*/include/asm/tlb.h
10878 F:      include/asm-generic/tlb.h
10879 F:      mm/mmu_gather.c
10880
10881 MN88472 MEDIA DRIVER
10882 M:      Antti Palosaari <crope@iki.fi>
10883 L:      linux-media@vger.kernel.org
10884 W:      https://linuxtv.org
10885 W:      http://palosaari.fi/linux/
10886 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10887 S:      Maintained
10888 F:      drivers/media/dvb-frontends/mn88472*
10889
10890 MN88473 MEDIA DRIVER
10891 M:      Antti Palosaari <crope@iki.fi>
10892 L:      linux-media@vger.kernel.org
10893 W:      https://linuxtv.org
10894 W:      http://palosaari.fi/linux/
10895 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10896 S:      Maintained
10897 F:      drivers/media/dvb-frontends/mn88473*
10898
10899 MODULE SUPPORT
10900 M:      Jessica Yu <jeyu@kernel.org>
10901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
10902 S:      Maintained
10903 F:      include/linux/module.h
10904 F:      kernel/module.c
10905
10906 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
10907 W:      http://popies.net/meye/
10908 S:      Orphan
10909 F:      Documentation/media/v4l-drivers/meye*
10910 F:      drivers/media/pci/meye/
10911 F:      include/uapi/linux/meye.h
10912
10913 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
10914 M:      Jiri Slaby <jirislaby@gmail.com>
10915 S:      Maintained
10916 F:      Documentation/driver-api/serial/moxa-smartio.rst
10917 F:      drivers/tty/mxser.*
10918
10919 MR800 AVERMEDIA USB FM RADIO DRIVER
10920 M:      Alexey Klimov <klimov.linux@gmail.com>
10921 L:      linux-media@vger.kernel.org
10922 T:      git git://linuxtv.org/media_tree.git
10923 S:      Maintained
10924 F:      drivers/media/radio/radio-mr800.c
10925
10926 MRF24J40 IEEE 802.15.4 RADIO DRIVER
10927 M:      Alan Ott <alan@signal11.us>
10928 L:      linux-wpan@vger.kernel.org
10929 S:      Maintained
10930 F:      drivers/net/ieee802154/mrf24j40.c
10931 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
10932
10933 MSI LAPTOP SUPPORT
10934 M:      "Lee, Chun-Yi" <jlee@suse.com>
10935 L:      platform-driver-x86@vger.kernel.org
10936 S:      Maintained
10937 F:      drivers/platform/x86/msi-laptop.c
10938
10939 MSI WMI SUPPORT
10940 L:      platform-driver-x86@vger.kernel.org
10941 S:      Orphan
10942 F:      drivers/platform/x86/msi-wmi.c
10943
10944 MSI001 MEDIA DRIVER
10945 M:      Antti Palosaari <crope@iki.fi>
10946 L:      linux-media@vger.kernel.org
10947 W:      https://linuxtv.org
10948 W:      http://palosaari.fi/linux/
10949 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10950 T:      git git://linuxtv.org/anttip/media_tree.git
10951 S:      Maintained
10952 F:      drivers/media/tuners/msi001*
10953
10954 MSI2500 MEDIA DRIVER
10955 M:      Antti Palosaari <crope@iki.fi>
10956 L:      linux-media@vger.kernel.org
10957 W:      https://linuxtv.org
10958 W:      http://palosaari.fi/linux/
10959 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10960 T:      git git://linuxtv.org/anttip/media_tree.git
10961 S:      Maintained
10962 F:      drivers/media/usb/msi2500/
10963
10964 MSYSTEMS DISKONCHIP G3 MTD DRIVER
10965 M:      Robert Jarzmik <robert.jarzmik@free.fr>
10966 L:      linux-mtd@lists.infradead.org
10967 S:      Maintained
10968 F:      drivers/mtd/devices/docg3*
10969
10970 MT9M032 APTINA SENSOR DRIVER
10971 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10972 L:      linux-media@vger.kernel.org
10973 T:      git git://linuxtv.org/media_tree.git
10974 S:      Maintained
10975 F:      drivers/media/i2c/mt9m032.c
10976 F:      include/media/i2c/mt9m032.h
10977
10978 MT9P031 APTINA CAMERA SENSOR
10979 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10980 L:      linux-media@vger.kernel.org
10981 T:      git git://linuxtv.org/media_tree.git
10982 S:      Maintained
10983 F:      drivers/media/i2c/mt9p031.c
10984 F:      include/media/i2c/mt9p031.h
10985
10986 MT9T001 APTINA CAMERA SENSOR
10987 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10988 L:      linux-media@vger.kernel.org
10989 T:      git git://linuxtv.org/media_tree.git
10990 S:      Maintained
10991 F:      drivers/media/i2c/mt9t001.c
10992 F:      include/media/i2c/mt9t001.h
10993
10994 MT9T112 APTINA CAMERA SENSOR
10995 M:      Jacopo Mondi <jacopo@jmondi.org>
10996 L:      linux-media@vger.kernel.org
10997 T:      git git://linuxtv.org/media_tree.git
10998 S:      Odd Fixes
10999 F:      drivers/media/i2c/mt9t112.c
11000 F:      include/media/i2c/mt9t112.h
11001
11002 MT9V032 APTINA CAMERA SENSOR
11003 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11004 L:      linux-media@vger.kernel.org
11005 T:      git git://linuxtv.org/media_tree.git
11006 S:      Maintained
11007 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
11008 F:      drivers/media/i2c/mt9v032.c
11009 F:      include/media/i2c/mt9v032.h
11010
11011 MT9V111 APTINA CAMERA SENSOR
11012 M:      Jacopo Mondi <jacopo@jmondi.org>
11013 L:      linux-media@vger.kernel.org
11014 T:      git git://linuxtv.org/media_tree.git
11015 S:      Maintained
11016 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt
11017 F:      drivers/media/i2c/mt9v111.c
11018
11019 MULTIFUNCTION DEVICES (MFD)
11020 M:      Lee Jones <lee.jones@linaro.org>
11021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11022 S:      Supported
11023 F:      Documentation/devicetree/bindings/mfd/
11024 F:      drivers/mfd/
11025 F:      include/linux/mfd/
11026 F:      include/dt-bindings/mfd/
11027
11028 MULTIMEDIA CARD (MMC) ETC. OVER SPI
11029 S:      Orphan
11030 F:      drivers/mmc/host/mmc_spi.c
11031 F:      include/linux/spi/mmc_spi.h
11032
11033 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
11034 M:      Ulf Hansson <ulf.hansson@linaro.org>
11035 L:      linux-mmc@vger.kernel.org
11036 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
11037 S:      Maintained
11038 F:      Documentation/devicetree/bindings/mmc/
11039 F:      drivers/mmc/
11040 F:      include/linux/mmc/
11041 F:      include/uapi/linux/mmc/
11042
11043 MULTIPLEXER SUBSYSTEM
11044 M:      Peter Rosin <peda@axentia.se>
11045 S:      Maintained
11046 F:      Documentation/ABI/testing/sysfs-class-mux*
11047 F:      Documentation/devicetree/bindings/mux/
11048 F:      include/dt-bindings/mux/
11049 F:      include/linux/mux/
11050 F:      drivers/mux/
11051
11052 MULTITECH MULTIPORT CARD (ISICOM)
11053 S:      Orphan
11054 F:      drivers/tty/isicom.c
11055 F:      include/linux/isicom.h
11056
11057 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
11058 M:      Bin Liu <b-liu@ti.com>
11059 L:      linux-usb@vger.kernel.org
11060 S:      Maintained
11061 F:      drivers/usb/musb/
11062
11063 MXL301RF MEDIA DRIVER
11064 M:      Akihiro Tsukada <tskd08@gmail.com>
11065 L:      linux-media@vger.kernel.org
11066 S:      Odd Fixes
11067 F:      drivers/media/tuners/mxl301rf*
11068
11069 MXL5007T MEDIA DRIVER
11070 M:      Michael Krufky <mkrufky@linuxtv.org>
11071 L:      linux-media@vger.kernel.org
11072 W:      https://linuxtv.org
11073 W:      http://github.com/mkrufky
11074 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11075 T:      git git://linuxtv.org/mkrufky/tuners.git
11076 S:      Maintained
11077 F:      drivers/media/tuners/mxl5007t.*
11078
11079 MXSFB DRM DRIVER
11080 M:      Marek Vasut <marex@denx.de>
11081 M:      Stefan Agner <stefan@agner.ch>
11082 L:      dri-devel@lists.freedesktop.org
11083 S:      Supported
11084 F:      drivers/gpu/drm/mxsfb/
11085 F:      Documentation/devicetree/bindings/display/mxsfb.txt
11086 T:      git git://anongit.freedesktop.org/drm/drm-misc
11087
11088 MYLEX DAC960 PCI RAID Controller
11089 M:      Hannes Reinecke <hare@kernel.org>
11090 L:      linux-scsi@vger.kernel.org
11091 S:      Supported
11092 F:      drivers/scsi/myrb.*
11093 F:      drivers/scsi/myrs.*
11094
11095 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
11096 M:      Chris Lee <christopher.lee@cspi.com>
11097 L:      netdev@vger.kernel.org
11098 W:      https://www.cspi.com/ethernet-products/support/downloads/
11099 S:      Supported
11100 F:      drivers/net/ethernet/myricom/myri10ge/
11101
11102 NAND FLASH SUBSYSTEM
11103 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11104 R:      Richard Weinberger <richard@nod.at>
11105 L:      linux-mtd@lists.infradead.org
11106 W:      http://www.linux-mtd.infradead.org/
11107 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
11109 S:      Maintained
11110 F:      drivers/mtd/nand/
11111 F:      include/linux/mtd/*nand*.h
11112
11113 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
11114 M:      Daniel Mack <zonque@gmail.com>
11115 S:      Maintained
11116 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11117 W:      http://www.native-instruments.com
11118 F:      sound/usb/caiaq/
11119
11120 NATSEMI ETHERNET DRIVER (DP8381x)
11121 S:      Orphan
11122 F:      drivers/net/ethernet/natsemi/natsemi.c
11123
11124 NCR 5380 SCSI DRIVERS
11125 M:      Finn Thain <fthain@telegraphics.com.au>
11126 M:      Michael Schmitz <schmitzmic@gmail.com>
11127 L:      linux-scsi@vger.kernel.org
11128 S:      Maintained
11129 F:      Documentation/scsi/g_NCR5380.txt
11130 F:      drivers/scsi/NCR5380.*
11131 F:      drivers/scsi/arm/cumana_1.c
11132 F:      drivers/scsi/arm/oak.c
11133 F:      drivers/scsi/atari_scsi.*
11134 F:      drivers/scsi/dmx3191d.c
11135 F:      drivers/scsi/g_NCR5380.*
11136 F:      drivers/scsi/mac_scsi.*
11137 F:      drivers/scsi/sun3_scsi.*
11138 F:      drivers/scsi/sun3_scsi_vme.c
11139
11140 NCSI LIBRARY:
11141 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
11142 S:      Maintained
11143 F:      net/ncsi/
11144
11145 NCT6775 HARDWARE MONITOR DRIVER
11146 M:      Guenter Roeck <linux@roeck-us.net>
11147 L:      linux-hwmon@vger.kernel.org
11148 S:      Maintained
11149 F:      Documentation/hwmon/nct6775.rst
11150 F:      drivers/hwmon/nct6775.c
11151
11152 NET_FAILOVER MODULE
11153 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
11154 L:      netdev@vger.kernel.org
11155 S:      Supported
11156 F:      drivers/net/net_failover.c
11157 F:      include/net/net_failover.h
11158 F:      Documentation/networking/net_failover.rst
11159
11160 NETEM NETWORK EMULATOR
11161 M:      Stephen Hemminger <stephen@networkplumber.org>
11162 L:      netem@lists.linux-foundation.org (moderated for non-subscribers)
11163 S:      Maintained
11164 F:      net/sched/sch_netem.c
11165
11166 NETERION 10GbE DRIVERS (s2io/vxge)
11167 M:      Jon Mason <jdmason@kudzu.us>
11168 L:      netdev@vger.kernel.org
11169 S:      Supported
11170 F:      Documentation/networking/device_drivers/neterion/s2io.txt
11171 F:      Documentation/networking/device_drivers/neterion/vxge.txt
11172 F:      drivers/net/ethernet/neterion/
11173
11174 NETFILTER
11175 M:      Pablo Neira Ayuso <pablo@netfilter.org>
11176 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
11177 M:      Florian Westphal <fw@strlen.de>
11178 L:      netfilter-devel@vger.kernel.org
11179 L:      coreteam@netfilter.org
11180 W:      http://www.netfilter.org/
11181 W:      http://www.iptables.org/
11182 W:      http://www.nftables.org/
11183 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
11184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
11185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
11186 S:      Maintained
11187 F:      include/linux/netfilter*
11188 F:      include/linux/netfilter/
11189 F:      include/net/netfilter/
11190 F:      include/uapi/linux/netfilter*
11191 F:      include/uapi/linux/netfilter/
11192 F:      net/*/netfilter.c
11193 F:      net/*/netfilter/
11194 F:      net/netfilter/
11195 F:      net/bridge/br_netfilter*.c
11196
11197 NETROM NETWORK LAYER
11198 M:      Ralf Baechle <ralf@linux-mips.org>
11199 L:      linux-hams@vger.kernel.org
11200 W:      http://www.linux-ax25.org/
11201 S:      Maintained
11202 F:      include/net/netrom.h
11203 F:      include/uapi/linux/netrom.h
11204 F:      net/netrom/
11205
11206 NETRONOME ETHERNET DRIVERS
11207 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
11208 L:      oss-drivers@netronome.com
11209 S:      Maintained
11210 F:      drivers/net/ethernet/netronome/
11211
11212 NETWORK BLOCK DEVICE (NBD)
11213 M:      Josef Bacik <josef@toxicpanda.com>
11214 S:      Maintained
11215 L:      linux-block@vger.kernel.org
11216 L:      nbd@other.debian.org
11217 F:      Documentation/admin-guide/blockdev/nbd.rst
11218 F:      drivers/block/nbd.c
11219 F:      include/trace/events/nbd.h
11220 F:      include/uapi/linux/nbd.h
11221
11222 NETWORK DROP MONITOR
11223 M:      Neil Horman <nhorman@tuxdriver.com>
11224 L:      netdev@vger.kernel.org
11225 S:      Maintained
11226 W:      https://fedorahosted.org/dropwatch/
11227 F:      net/core/drop_monitor.c
11228 F:      include/uapi/linux/net_dropmon.h
11229 F:      include/net/drop_monitor.h
11230
11231 NETWORKING DRIVERS
11232 M:      "David S. Miller" <davem@davemloft.net>
11233 L:      netdev@vger.kernel.org
11234 W:      http://www.linuxfoundation.org/en/Net
11235 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
11237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
11238 S:      Odd Fixes
11239 F:      Documentation/devicetree/bindings/net/
11240 F:      drivers/net/
11241 F:      include/linux/if_*
11242 F:      include/linux/netdevice.h
11243 F:      include/linux/etherdevice.h
11244 F:      include/linux/fcdevice.h
11245 F:      include/linux/fddidevice.h
11246 F:      include/linux/hippidevice.h
11247 F:      include/linux/inetdevice.h
11248 F:      include/uapi/linux/if_*
11249 F:      include/uapi/linux/netdevice.h
11250
11251 NETWORKING DRIVERS (WIRELESS)
11252 M:      Kalle Valo <kvalo@codeaurora.org>
11253 L:      linux-wireless@vger.kernel.org
11254 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
11256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
11257 S:      Maintained
11258 F:      Documentation/devicetree/bindings/net/wireless/
11259 F:      drivers/net/wireless/
11260
11261 NETWORKING [DSA]
11262 M:      Andrew Lunn <andrew@lunn.ch>
11263 M:      Vivien Didelot <vivien.didelot@gmail.com>
11264 M:      Florian Fainelli <f.fainelli@gmail.com>
11265 S:      Maintained
11266 F:      Documentation/devicetree/bindings/net/dsa/
11267 F:      net/dsa/
11268 F:      include/net/dsa.h
11269 F:      include/linux/dsa/
11270 F:      include/linux/platform_data/dsa.h
11271 F:      drivers/net/dsa/
11272
11273 NETWORKING [GENERAL]
11274 M:      "David S. Miller" <davem@davemloft.net>
11275 L:      netdev@vger.kernel.org
11276 W:      http://www.linuxfoundation.org/en/Net
11277 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
11279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
11280 B:      mailto:netdev@vger.kernel.org
11281 S:      Maintained
11282 F:      net/
11283 F:      include/net/
11284 F:      include/linux/in.h
11285 F:      include/linux/net.h
11286 F:      include/linux/netdevice.h
11287 F:      include/uapi/linux/in.h
11288 F:      include/uapi/linux/net.h
11289 F:      include/uapi/linux/netdevice.h
11290 F:      include/uapi/linux/net_namespace.h
11291 F:      tools/testing/selftests/net/
11292 F:      lib/net_utils.c
11293 F:      lib/random32.c
11294 F:      Documentation/networking/
11295
11296 NETWORKING [IPSEC]
11297 M:      Steffen Klassert <steffen.klassert@secunet.com>
11298 M:      Herbert Xu <herbert@gondor.apana.org.au>
11299 M:      "David S. Miller" <davem@davemloft.net>
11300 L:      netdev@vger.kernel.org
11301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
11302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
11303 S:      Maintained
11304 F:      net/xfrm/
11305 F:      net/key/
11306 F:      net/ipv4/xfrm*
11307 F:      net/ipv4/esp4*
11308 F:      net/ipv4/ah4.c
11309 F:      net/ipv4/ipcomp.c
11310 F:      net/ipv4/ip_vti.c
11311 F:      net/ipv6/xfrm*
11312 F:      net/ipv6/esp6*
11313 F:      net/ipv6/ah6.c
11314 F:      net/ipv6/ipcomp6.c
11315 F:      net/ipv6/ip6_vti.c
11316 F:      include/uapi/linux/xfrm.h
11317 F:      include/net/xfrm.h
11318
11319 NETWORKING [IPv4/IPv6]
11320 M:      "David S. Miller" <davem@davemloft.net>
11321 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
11322 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
11323 L:      netdev@vger.kernel.org
11324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
11325 S:      Maintained
11326 F:      net/ipv4/
11327 F:      net/ipv6/
11328 F:      include/net/ip*
11329 F:      arch/x86/net/*
11330
11331 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
11332 M:      Paul Moore <paul@paul-moore.com>
11333 W:      https://github.com/netlabel
11334 L:      netdev@vger.kernel.org
11335 L:      linux-security-module@vger.kernel.org
11336 S:      Maintained
11337 F:      Documentation/netlabel/
11338 F:      include/net/calipso.h
11339 F:      include/net/cipso_ipv4.h
11340 F:      include/net/netlabel.h
11341 F:      include/uapi/linux/netfilter/xt_SECMARK.h
11342 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
11343 F:      net/netlabel/
11344 F:      net/ipv4/cipso_ipv4.c
11345 F:      net/ipv6/calipso.c
11346 F:      net/netfilter/xt_CONNSECMARK.c
11347 F:      net/netfilter/xt_SECMARK.c
11348
11349 NETWORKING [TCP]
11350 M:      Eric Dumazet <edumazet@google.com>
11351 L:      netdev@vger.kernel.org
11352 S:      Maintained
11353 F:      net/ipv4/tcp*.c
11354 F:      net/ipv4/syncookies.c
11355 F:      net/ipv6/tcp*.c
11356 F:      net/ipv6/syncookies.c
11357 F:      include/uapi/linux/tcp.h
11358 F:      include/net/tcp.h
11359 F:      include/linux/tcp.h
11360 F:      include/trace/events/tcp.h
11361
11362 NETWORKING [TLS]
11363 M:      Boris Pismenny <borisp@mellanox.com>
11364 M:      Aviad Yehezkel <aviadye@mellanox.com>
11365 M:      Dave Watson <davejwatson@fb.com>
11366 M:      John Fastabend <john.fastabend@gmail.com>
11367 M:      Daniel Borkmann <daniel@iogearbox.net>
11368 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
11369 L:      netdev@vger.kernel.org
11370 S:      Maintained
11371 F:      net/tls/*
11372 F:      include/uapi/linux/tls.h
11373 F:      include/net/tls.h
11374
11375 NETWORKING [WIRELESS]
11376 L:      linux-wireless@vger.kernel.org
11377 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11378
11379 NETDEVSIM
11380 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
11381 S:      Maintained
11382 F:      drivers/net/netdevsim/*
11383
11384 NETXEN (1/10) GbE SUPPORT
11385 M:      Manish Chopra <manishc@marvell.com>
11386 M:      Rahul Verma <rahulv@marvell.com>
11387 M:      GR-Linux-NIC-Dev@marvell.com
11388 L:      netdev@vger.kernel.org
11389 S:      Supported
11390 F:      drivers/net/ethernet/qlogic/netxen/
11391
11392 NEXTHOP
11393 M:      David Ahern <dsahern@kernel.org>
11394 L:      netdev@vger.kernel.org
11395 S:      Maintained
11396 F:      include/net/nexthop.h
11397 F:      include/uapi/linux/nexthop.h
11398 F:      include/net/netns/nexthop.h
11399 F:      net/ipv4/nexthop.c
11400
11401 NFC SUBSYSTEM
11402 L:      netdev@vger.kernel.org
11403 S:      Orphan
11404 F:      net/nfc/
11405 F:      include/net/nfc/
11406 F:      include/uapi/linux/nfc.h
11407 F:      drivers/nfc/
11408 F:      include/linux/platform_data/nfcmrvl.h
11409 F:      Documentation/devicetree/bindings/net/nfc/
11410
11411 NFS, SUNRPC, AND LOCKD CLIENTS
11412 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
11413 M:      Anna Schumaker <anna.schumaker@netapp.com>
11414 L:      linux-nfs@vger.kernel.org
11415 W:      http://client.linux-nfs.org
11416 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
11417 S:      Maintained
11418 F:      fs/lockd/
11419 F:      fs/nfs/
11420 F:      fs/nfs_common/
11421 F:      net/sunrpc/
11422 F:      include/linux/lockd/
11423 F:      include/linux/nfs*
11424 F:      include/linux/sunrpc/
11425 F:      include/uapi/linux/nfs*
11426 F:      include/uapi/linux/sunrpc/
11427
11428 NILFS2 FILESYSTEM
11429 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
11430 L:      linux-nilfs@vger.kernel.org
11431 W:      https://nilfs.sourceforge.io/
11432 W:      https://nilfs.osdn.jp/
11433 T:      git git://github.com/konis/nilfs2.git
11434 S:      Supported
11435 F:      Documentation/filesystems/nilfs2.txt
11436 F:      fs/nilfs2/
11437 F:      include/trace/events/nilfs2.h
11438 F:      include/uapi/linux/nilfs2_api.h
11439 F:      include/uapi/linux/nilfs2_ondisk.h
11440
11441 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
11442 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
11443 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11444 S:      Maintained
11445 F:      Documentation/scsi/NinjaSCSI.txt
11446 F:      drivers/scsi/pcmcia/nsp_*
11447
11448 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
11449 M:      GOTO Masanori <gotom@debian.or.jp>
11450 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
11451 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11452 S:      Maintained
11453 F:      Documentation/scsi/NinjaSCSI.txt
11454 F:      drivers/scsi/nsp32*
11455
11456 NIOS2 ARCHITECTURE
11457 M:      Ley Foon Tan <lftan@altera.com>
11458 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
11459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
11460 S:      Maintained
11461 F:      arch/nios2/
11462
11463 NOHZ, DYNTICKS SUPPORT
11464 M:      Frederic Weisbecker <fweisbec@gmail.com>
11465 M:      Thomas Gleixner <tglx@linutronix.de>
11466 M:      Ingo Molnar <mingo@kernel.org>
11467 L:      linux-kernel@vger.kernel.org
11468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
11469 S:      Maintained
11470 F:      kernel/time/tick*.*
11471 F:      include/linux/tick.h
11472 F:      include/linux/sched/nohz.h
11473
11474 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
11475 M:      Pavel Machek <pavel@ucw.cz>
11476 M:      Sakari Ailus <sakari.ailus@iki.fi>
11477 L:      linux-media@vger.kernel.org
11478 S:      Maintained
11479 F:      drivers/media/i2c/et8ek8
11480 F:      drivers/media/i2c/ad5820.c
11481
11482 NOKIA N900 POWER SUPPLY DRIVERS
11483 R:      Pali Rohár <pali.rohar@gmail.com>
11484 F:      include/linux/power/bq2415x_charger.h
11485 F:      include/linux/power/bq27xxx_battery.h
11486 F:      include/linux/power/isp1704_charger.h
11487 F:      drivers/power/supply/bq2415x_charger.c
11488 F:      drivers/power/supply/bq27xxx_battery.c
11489 F:      drivers/power/supply/bq27xxx_battery_i2c.c
11490 F:      drivers/power/supply/isp1704_charger.c
11491 F:      drivers/power/supply/rx51_battery.c
11492
11493 NOLIBC HEADER FILE
11494 M:      Willy Tarreau <w@1wt.eu>
11495 S:      Maintained
11496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
11497 F:      tools/include/nolibc/
11498
11499 NTB AMD DRIVER
11500 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
11501 L:      linux-ntb@googlegroups.com
11502 S:      Supported
11503 F:      drivers/ntb/hw/amd/
11504
11505 NTB DRIVER CORE
11506 M:      Jon Mason <jdmason@kudzu.us>
11507 M:      Dave Jiang <dave.jiang@intel.com>
11508 M:      Allen Hubbe <allenbh@gmail.com>
11509 L:      linux-ntb@googlegroups.com
11510 S:      Supported
11511 W:      https://github.com/jonmason/ntb/wiki
11512 T:      git git://github.com/jonmason/ntb.git
11513 F:      drivers/ntb/
11514 F:      drivers/net/ntb_netdev.c
11515 F:      include/linux/ntb.h
11516 F:      include/linux/ntb_transport.h
11517 F:      tools/testing/selftests/ntb/
11518
11519 NTB IDT DRIVER
11520 M:      Serge Semin <fancer.lancer@gmail.com>
11521 L:      linux-ntb@googlegroups.com
11522 S:      Supported
11523 F:      drivers/ntb/hw/idt/
11524
11525 NTB INTEL DRIVER
11526 M:      Dave Jiang <dave.jiang@intel.com>
11527 L:      linux-ntb@googlegroups.com
11528 S:      Supported
11529 W:      https://github.com/davejiang/linux/wiki
11530 T:      git https://github.com/davejiang/linux.git
11531 F:      drivers/ntb/hw/intel/
11532
11533 NTFS FILESYSTEM
11534 M:      Anton Altaparmakov <anton@tuxera.com>
11535 L:      linux-ntfs-dev@lists.sourceforge.net
11536 W:      http://www.tuxera.com/
11537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
11538 S:      Supported
11539 F:      Documentation/filesystems/ntfs.txt
11540 F:      fs/ntfs/
11541
11542 NUBUS SUBSYSTEM
11543 M:      Finn Thain <fthain@telegraphics.com.au>
11544 L:      linux-m68k@lists.linux-m68k.org
11545 S:      Maintained
11546 F:      arch/*/include/asm/nubus.h
11547 F:      drivers/nubus/
11548 F:      include/linux/nubus.h
11549 F:      include/uapi/linux/nubus.h
11550
11551 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
11552 M:      Antonino Daplas <adaplas@gmail.com>
11553 L:      linux-fbdev@vger.kernel.org
11554 S:      Maintained
11555 F:      drivers/video/fbdev/riva/
11556 F:      drivers/video/fbdev/nvidia/
11557
11558 NVM EXPRESS DRIVER
11559 M:      Keith Busch <kbusch@kernel.org>
11560 M:      Jens Axboe <axboe@fb.com>
11561 M:      Christoph Hellwig <hch@lst.de>
11562 M:      Sagi Grimberg <sagi@grimberg.me>
11563 L:      linux-nvme@lists.infradead.org
11564 T:      git://git.infradead.org/nvme.git
11565 W:      http://git.infradead.org/nvme.git
11566 S:      Supported
11567 F:      drivers/nvme/host/
11568 F:      include/linux/nvme.h
11569 F:      include/uapi/linux/nvme_ioctl.h
11570
11571 NVM EXPRESS FC TRANSPORT DRIVERS
11572 M:      James Smart <james.smart@broadcom.com>
11573 L:      linux-nvme@lists.infradead.org
11574 S:      Supported
11575 F:      include/linux/nvme-fc.h
11576 F:      include/linux/nvme-fc-driver.h
11577 F:      drivers/nvme/host/fc.c
11578 F:      drivers/nvme/target/fc.c
11579 F:      drivers/nvme/target/fcloop.c
11580
11581 NVM EXPRESS TARGET DRIVER
11582 M:      Christoph Hellwig <hch@lst.de>
11583 M:      Sagi Grimberg <sagi@grimberg.me>
11584 L:      linux-nvme@lists.infradead.org
11585 T:      git://git.infradead.org/nvme.git
11586 W:      http://git.infradead.org/nvme.git
11587 S:      Supported
11588 F:      drivers/nvme/target/
11589
11590 NVMEM FRAMEWORK
11591 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
11592 S:      Maintained
11593 F:      drivers/nvmem/
11594 F:      Documentation/devicetree/bindings/nvmem/
11595 F:      Documentation/ABI/stable/sysfs-bus-nvmem
11596 F:      include/linux/nvmem-consumer.h
11597 F:      include/linux/nvmem-provider.h
11598
11599 NXP FXAS21002C DRIVER
11600 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11601 L:      linux-iio@vger.kernel.org
11602 S:      Maintained
11603 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
11604 F:      drivers/iio/gyro/fxas21002c_core.c
11605 F:      drivers/iio/gyro/fxas21002c.h
11606 F:      drivers/iio/gyro/fxas21002c_i2c.c
11607 F:      drivers/iio/gyro/fxas21002c_spi.c
11608
11609 NXP SGTL5000 DRIVER
11610 M:      Fabio Estevam <festevam@gmail.com>
11611 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11612 S:      Maintained
11613 F:      Documentation/devicetree/bindings/sound/sgtl5000.txt
11614 F:      sound/soc/codecs/sgtl5000*
11615
11616 NXP SJA1105 ETHERNET SWITCH DRIVER
11617 M:      Vladimir Oltean <olteanv@gmail.com>
11618 L:      linux-kernel@vger.kernel.org
11619 S:      Maintained
11620 F:      drivers/net/dsa/sja1105
11621
11622 NXP TDA998X DRM DRIVER
11623 M:      Russell King <linux@armlinux.org.uk>
11624 S:      Maintained
11625 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
11626 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
11627 F:      drivers/gpu/drm/i2c/tda998x_drv.c
11628 F:      include/drm/i2c/tda998x.h
11629 F:      include/dt-bindings/display/tda998x.h
11630 K:      "nxp,tda998x"
11631
11632 NXP TFA9879 DRIVER
11633 M:      Peter Rosin <peda@axentia.se>
11634 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11635 S:      Maintained
11636 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
11637 F:      sound/soc/codecs/tfa9879*
11638
11639 NXP-NCI NFC DRIVER
11640 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
11641 R:      Charles Gorand <charles.gorand@effinnov.com>
11642 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
11643 S:      Supported
11644 F:      drivers/nfc/nxp-nci
11645
11646 OBJAGG
11647 M:      Jiri Pirko <jiri@mellanox.com>
11648 L:      netdev@vger.kernel.org
11649 S:      Supported
11650 F:      lib/objagg.c
11651 F:      lib/test_objagg.c
11652 F:      include/linux/objagg.h
11653
11654 NXP FSPI DRIVER
11655 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
11656 M:      Ashish Kumar <ashish.kumar@nxp.com>
11657 L:      linux-spi@vger.kernel.org
11658 S:      Maintained
11659 F:      drivers/spi/spi-nxp-fspi.c
11660 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
11661
11662 OBJTOOL
11663 M:      Josh Poimboeuf <jpoimboe@redhat.com>
11664 M:      Peter Zijlstra <peterz@infradead.org>
11665 S:      Supported
11666 F:      tools/objtool/
11667
11668 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
11669 M:      Frederic Barrat <fbarrat@linux.ibm.com>
11670 M:      Andrew Donnellan <ajd@linux.ibm.com>
11671 L:      linuxppc-dev@lists.ozlabs.org
11672 S:      Supported
11673 F:      arch/powerpc/platforms/powernv/ocxl.c
11674 F:      arch/powerpc/include/asm/pnv-ocxl.h
11675 F:      drivers/misc/ocxl/
11676 F:      include/misc/ocxl*
11677 F:      include/uapi/misc/ocxl.h
11678 F:      Documentation/userspace-api/accelerators/ocxl.rst
11679
11680 OMAP AUDIO SUPPORT
11681 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
11682 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
11683 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11684 L:      linux-omap@vger.kernel.org
11685 S:      Maintained
11686 F:      sound/soc/ti/omap*
11687 F:      sound/soc/ti/rx51.c
11688 F:      sound/soc/ti/n810.c
11689 F:      sound/soc/ti/sdma-pcm.*
11690
11691 OMAP CLOCK FRAMEWORK SUPPORT
11692 M:      Paul Walmsley <paul@pwsan.com>
11693 L:      linux-omap@vger.kernel.org
11694 S:      Maintained
11695 F:      arch/arm/*omap*/*clock*
11696
11697 OMAP DEVICE TREE SUPPORT
11698 M:      Benoît Cousson <bcousson@baylibre.com>
11699 M:      Tony Lindgren <tony@atomide.com>
11700 L:      linux-omap@vger.kernel.org
11701 L:      devicetree@vger.kernel.org
11702 S:      Maintained
11703 F:      arch/arm/boot/dts/*omap*
11704 F:      arch/arm/boot/dts/*am3*
11705 F:      arch/arm/boot/dts/*am4*
11706 F:      arch/arm/boot/dts/*am5*
11707 F:      arch/arm/boot/dts/*dra7*
11708
11709 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
11710 L:      linux-omap@vger.kernel.org
11711 L:      linux-fbdev@vger.kernel.org
11712 S:      Orphan
11713 F:      drivers/video/fbdev/omap2/
11714 F:      Documentation/arm/omap/dss.rst
11715
11716 OMAP FRAMEBUFFER SUPPORT
11717 L:      linux-fbdev@vger.kernel.org
11718 L:      linux-omap@vger.kernel.org
11719 S:      Orphan
11720 F:      drivers/video/fbdev/omap/
11721
11722 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
11723 M:      Roger Quadros <rogerq@ti.com>
11724 M:      Tony Lindgren <tony@atomide.com>
11725 L:      linux-omap@vger.kernel.org
11726 S:      Maintained
11727 F:      drivers/memory/omap-gpmc.c
11728 F:      arch/arm/mach-omap2/*gpmc*
11729
11730 OMAP GPIO DRIVER
11731 M:      Grygorii Strashko <grygorii.strashko@ti.com>
11732 M:      Santosh Shilimkar <ssantosh@kernel.org>
11733 M:      Kevin Hilman <khilman@kernel.org>
11734 L:      linux-omap@vger.kernel.org
11735 S:      Maintained
11736 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
11737 F:      drivers/gpio/gpio-omap.c
11738
11739 OMAP HARDWARE SPINLOCK SUPPORT
11740 M:      Ohad Ben-Cohen <ohad@wizery.com>
11741 L:      linux-omap@vger.kernel.org
11742 S:      Maintained
11743 F:      drivers/hwspinlock/omap_hwspinlock.c
11744
11745 OMAP HS MMC SUPPORT
11746 L:      linux-mmc@vger.kernel.org
11747 L:      linux-omap@vger.kernel.org
11748 S:      Orphan
11749 F:      drivers/mmc/host/omap_hsmmc.c
11750
11751 OMAP HWMOD DATA
11752 M:      Paul Walmsley <paul@pwsan.com>
11753 L:      linux-omap@vger.kernel.org
11754 S:      Maintained
11755 F:      arch/arm/mach-omap2/omap_hwmod*data*
11756
11757 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
11758 M:      Benoît Cousson <bcousson@baylibre.com>
11759 L:      linux-omap@vger.kernel.org
11760 S:      Maintained
11761 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
11762
11763 OMAP HWMOD SUPPORT
11764 M:      Benoît Cousson <bcousson@baylibre.com>
11765 M:      Paul Walmsley <paul@pwsan.com>
11766 L:      linux-omap@vger.kernel.org
11767 S:      Maintained
11768 F:      arch/arm/mach-omap2/omap_hwmod.*
11769
11770 OMAP I2C DRIVER
11771 M:      Vignesh R <vigneshr@ti.com>
11772 L:      linux-omap@vger.kernel.org
11773 L:      linux-i2c@vger.kernel.org
11774 S:      Maintained
11775 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
11776 F:      drivers/i2c/busses/i2c-omap.c
11777
11778 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
11779 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11780 L:      linux-media@vger.kernel.org
11781 S:      Maintained
11782 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
11783 F:      drivers/media/platform/omap3isp/
11784 F:      drivers/staging/media/omap4iss/
11785
11786 OMAP MMC SUPPORT
11787 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
11788 L:      linux-omap@vger.kernel.org
11789 S:      Odd Fixes
11790 F:      drivers/mmc/host/omap.c
11791
11792 OMAP POWER MANAGEMENT SUPPORT
11793 M:      Kevin Hilman <khilman@kernel.org>
11794 L:      linux-omap@vger.kernel.org
11795 S:      Maintained
11796 F:      arch/arm/*omap*/*pm*
11797 F:      drivers/cpufreq/omap-cpufreq.c
11798
11799 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
11800 M:      Rajendra Nayak <rnayak@codeaurora.org>
11801 M:      Paul Walmsley <paul@pwsan.com>
11802 L:      linux-omap@vger.kernel.org
11803 S:      Maintained
11804 F:      arch/arm/mach-omap2/prm*
11805
11806 OMAP RANDOM NUMBER GENERATOR SUPPORT
11807 M:      Deepak Saxena <dsaxena@plexity.net>
11808 S:      Maintained
11809 F:      drivers/char/hw_random/omap-rng.c
11810
11811 OMAP USB SUPPORT
11812 L:      linux-usb@vger.kernel.org
11813 L:      linux-omap@vger.kernel.org
11814 S:      Orphan
11815 F:      drivers/usb/*/*omap*
11816 F:      arch/arm/*omap*/usb*
11817
11818 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
11819 M:      Mark Jackson <mpfj@newflow.co.uk>
11820 L:      linux-omap@vger.kernel.org
11821 S:      Maintained
11822 F:      arch/arm/boot/dts/am335x-nano.dts
11823
11824 OMAP1 SUPPORT
11825 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
11826 M:      Tony Lindgren <tony@atomide.com>
11827 L:      linux-omap@vger.kernel.org
11828 Q:      http://patchwork.kernel.org/project/linux-omap/list/
11829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
11830 S:      Maintained
11831 F:      arch/arm/mach-omap1/
11832 F:      arch/arm/plat-omap/
11833 F:      arch/arm/configs/omap1_defconfig
11834 F:      drivers/i2c/busses/i2c-omap.c
11835 F:      include/linux/platform_data/i2c-omap.h
11836 F:      include/linux/platform_data/ams-delta-fiq.h
11837
11838 OMAP2+ SUPPORT
11839 M:      Tony Lindgren <tony@atomide.com>
11840 L:      linux-omap@vger.kernel.org
11841 W:      http://www.muru.com/linux/omap/
11842 W:      http://linux.omap.com/
11843 Q:      http://patchwork.kernel.org/project/linux-omap/list/
11844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
11845 S:      Maintained
11846 F:      arch/arm/mach-omap2/
11847 F:      arch/arm/plat-omap/
11848 F:      arch/arm/configs/omap2plus_defconfig
11849 F:      drivers/i2c/busses/i2c-omap.c
11850 F:      drivers/irqchip/irq-omap-intc.c
11851 F:      drivers/mfd/*omap*.c
11852 F:      drivers/mfd/menelaus.c
11853 F:      drivers/mfd/palmas.c
11854 F:      drivers/mfd/tps65217.c
11855 F:      drivers/mfd/tps65218.c
11856 F:      drivers/mfd/tps65910.c
11857 F:      drivers/mfd/twl-core.[ch]
11858 F:      drivers/mfd/twl4030*.c
11859 F:      drivers/mfd/twl6030*.c
11860 F:      drivers/mfd/twl6040*.c
11861 F:      drivers/regulator/palmas-regulator*.c
11862 F:      drivers/regulator/pbias-regulator.c
11863 F:      drivers/regulator/tps65217-regulator.c
11864 F:      drivers/regulator/tps65218-regulator.c
11865 F:      drivers/regulator/tps65910-regulator.c
11866 F:      drivers/regulator/twl-regulator.c
11867 F:      drivers/regulator/twl6030-regulator.c
11868 F:      include/linux/platform_data/i2c-omap.h
11869
11870 ONION OMEGA2+ BOARD
11871 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
11872 L:      linux-mips@vger.kernel.org
11873 S:      Maintained
11874 F:      arch/mips/boot/dts/ralink/omega2p.dts
11875
11876 OMFS FILESYSTEM
11877 M:      Bob Copeland <me@bobcopeland.com>
11878 L:      linux-karma-devel@lists.sourceforge.net
11879 S:      Maintained
11880 F:      Documentation/filesystems/omfs.txt
11881 F:      fs/omfs/
11882
11883 OMNIKEY CARDMAN 4000 DRIVER
11884 M:      Harald Welte <laforge@gnumonks.org>
11885 S:      Maintained
11886 F:      drivers/char/pcmcia/cm4000_cs.c
11887 F:      include/linux/cm4000_cs.h
11888 F:      include/uapi/linux/cm4000_cs.h
11889
11890 OMNIKEY CARDMAN 4040 DRIVER
11891 M:      Harald Welte <laforge@gnumonks.org>
11892 S:      Maintained
11893 F:      drivers/char/pcmcia/cm4040_cs.*
11894
11895 OMNIVISION OV13858 SENSOR DRIVER
11896 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11897 L:      linux-media@vger.kernel.org
11898 T:      git git://linuxtv.org/media_tree.git
11899 S:      Maintained
11900 F:      drivers/media/i2c/ov13858.c
11901
11902 OMNIVISION OV2680 SENSOR DRIVER
11903 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11904 L:      linux-media@vger.kernel.org
11905 T:      git git://linuxtv.org/media_tree.git
11906 S:      Maintained
11907 F:      drivers/media/i2c/ov2680.c
11908 F:      Documentation/devicetree/bindings/media/i2c/ov2680.txt
11909
11910 OMNIVISION OV2685 SENSOR DRIVER
11911 M:      Shunqian Zheng <zhengsq@rock-chips.com>
11912 L:      linux-media@vger.kernel.org
11913 T:      git git://linuxtv.org/media_tree.git
11914 S:      Maintained
11915 F:      drivers/media/i2c/ov2685.c
11916
11917 OMNIVISION OV5640 SENSOR DRIVER
11918 M:      Steve Longerbeam <slongerbeam@gmail.com>
11919 L:      linux-media@vger.kernel.org
11920 T:      git git://linuxtv.org/media_tree.git
11921 S:      Maintained
11922 F:      drivers/media/i2c/ov5640.c
11923
11924 OMNIVISION OV5647 SENSOR DRIVER
11925 M:      Luis Oliveira <lolivei@synopsys.com>
11926 L:      linux-media@vger.kernel.org
11927 T:      git git://linuxtv.org/media_tree.git
11928 S:      Maintained
11929 F:      drivers/media/i2c/ov5647.c
11930
11931 OMNIVISION OV5670 SENSOR DRIVER
11932 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
11933 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
11934 L:      linux-media@vger.kernel.org
11935 T:      git git://linuxtv.org/media_tree.git
11936 S:      Maintained
11937 F:      drivers/media/i2c/ov5670.c
11938
11939 OMNIVISION OV5675 SENSOR DRIVER
11940 M:      Shawn Tu <shawnx.tu@intel.com>
11941 L:      linux-media@vger.kernel.org
11942 T:      git git://linuxtv.org/media_tree.git
11943 S:      Maintained
11944 F:      drivers/media/i2c/ov5675.c
11945
11946 OMNIVISION OV5695 SENSOR DRIVER
11947 M:      Shunqian Zheng <zhengsq@rock-chips.com>
11948 L:      linux-media@vger.kernel.org
11949 T:      git git://linuxtv.org/media_tree.git
11950 S:      Maintained
11951 F:      drivers/media/i2c/ov5695.c
11952
11953 OMNIVISION OV7670 SENSOR DRIVER
11954 M:      Jonathan Corbet <corbet@lwn.net>
11955 L:      linux-media@vger.kernel.org
11956 T:      git git://linuxtv.org/media_tree.git
11957 S:      Maintained
11958 F:      drivers/media/i2c/ov7670.c
11959 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
11960
11961 OMNIVISION OV772x SENSOR DRIVER
11962 M:      Jacopo Mondi <jacopo@jmondi.org>
11963 L:      linux-media@vger.kernel.org
11964 T:      git git://linuxtv.org/media_tree.git
11965 S:      Odd fixes
11966 F:      drivers/media/i2c/ov772x.c
11967 F:      include/media/i2c/ov772x.h
11968 F:      Documentation/devicetree/bindings/media/i2c/ov772x.txt
11969
11970 OMNIVISION OV7740 SENSOR DRIVER
11971 M:      Wenyou Yang <wenyou.yang@microchip.com>
11972 L:      linux-media@vger.kernel.org
11973 T:      git git://linuxtv.org/media_tree.git
11974 S:      Maintained
11975 F:      drivers/media/i2c/ov7740.c
11976 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
11977
11978 OMNIVISION OV9640 SENSOR DRIVER
11979 M:      Petr Cvek <petrcvekcz@gmail.com>
11980 L:      linux-media@vger.kernel.org
11981 S:      Maintained
11982 F:      drivers/media/i2c/ov9640.*
11983
11984 OMNIVISION OV8856 SENSOR DRIVER
11985 M:      Ben Kao <ben.kao@intel.com>
11986 L:      linux-media@vger.kernel.org
11987 T:      git git://linuxtv.org/media_tree.git
11988 S:      Maintained
11989 F:      drivers/media/i2c/ov8856.c
11990
11991 OMNIVISION OV9650 SENSOR DRIVER
11992 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11993 R:      Akinobu Mita <akinobu.mita@gmail.com>
11994 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
11995 L:      linux-media@vger.kernel.org
11996 T:      git git://linuxtv.org/media_tree.git
11997 S:      Maintained
11998 F:      drivers/media/i2c/ov9650.c
11999 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
12000
12001 ONENAND FLASH DRIVER
12002 M:      Kyungmin Park <kyungmin.park@samsung.com>
12003 L:      linux-mtd@lists.infradead.org
12004 S:      Maintained
12005 F:      drivers/mtd/nand/onenand/
12006 F:      include/linux/mtd/onenand*.h
12007
12008 OP-TEE DRIVER
12009 M:      Jens Wiklander <jens.wiklander@linaro.org>
12010 L:      tee-dev@lists.linaro.org
12011 S:      Maintained
12012 F:      drivers/tee/optee/
12013
12014 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
12015 M:      Sumit Garg <sumit.garg@linaro.org>
12016 L:      tee-dev@lists.linaro.org
12017 S:      Maintained
12018 F:      drivers/char/hw_random/optee-rng.c
12019
12020 OPA-VNIC DRIVER
12021 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
12022 M:      Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
12023 L:      linux-rdma@vger.kernel.org
12024 S:      Supported
12025 F:      drivers/infiniband/ulp/opa_vnic
12026
12027 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
12028 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
12029 M:      Frank Rowand <frowand.list@gmail.com>
12030 L:      devicetree@vger.kernel.org
12031 S:      Maintained
12032 F:      Documentation/devicetree/dynamic-resolution-notes.txt
12033 F:      Documentation/devicetree/overlay-notes.txt
12034 F:      drivers/of/overlay.c
12035 F:      drivers/of/resolver.c
12036 K:      of_overlay_notifier_
12037
12038 OPEN FIRMWARE AND FLATTENED DEVICE TREE
12039 M:      Rob Herring <robh+dt@kernel.org>
12040 M:      Frank Rowand <frowand.list@gmail.com>
12041 L:      devicetree@vger.kernel.org
12042 W:      http://www.devicetree.org/
12043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12044 S:      Maintained
12045 F:      drivers/of/
12046 F:      include/linux/of*.h
12047 F:      scripts/dtc/
12048 F:      Documentation/ABI/testing/sysfs-firmware-ofw
12049
12050 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
12051 M:      Rob Herring <robh+dt@kernel.org>
12052 M:      Mark Rutland <mark.rutland@arm.com>
12053 L:      devicetree@vger.kernel.org
12054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12055 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
12056 S:      Maintained
12057 F:      Documentation/devicetree/
12058 F:      arch/*/boot/dts/
12059 F:      include/dt-bindings/
12060
12061 OPENCORES I2C BUS DRIVER
12062 M:      Peter Korsgaard <peter@korsgaard.com>
12063 M:      Andrew Lunn <andrew@lunn.ch>
12064 L:      linux-i2c@vger.kernel.org
12065 S:      Maintained
12066 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
12067 F:      Documentation/i2c/busses/i2c-ocores.rst
12068 F:      drivers/i2c/busses/i2c-ocores.c
12069 F:      include/linux/platform_data/i2c-ocores.h
12070
12071 OPENRISC ARCHITECTURE
12072 M:      Jonas Bonn <jonas@southpole.se>
12073 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
12074 M:      Stafford Horne <shorne@gmail.com>
12075 T:      git git://github.com/openrisc/linux.git
12076 L:      openrisc@lists.librecores.org
12077 W:      http://openrisc.io
12078 S:      Maintained
12079 F:      Documentation/devicetree/bindings/openrisc/
12080 F:      Documentation/openrisc/
12081 F:      arch/openrisc/
12082 F:      drivers/irqchip/irq-ompic.c
12083 F:      drivers/irqchip/irq-or1k-*
12084
12085 OPENVSWITCH
12086 M:      Pravin B Shelar <pshelar@ovn.org>
12087 L:      netdev@vger.kernel.org
12088 L:      dev@openvswitch.org
12089 W:      http://openvswitch.org
12090 S:      Maintained
12091 F:      net/openvswitch/
12092 F:      include/uapi/linux/openvswitch.h
12093
12094 OPERATING PERFORMANCE POINTS (OPP)
12095 M:      Viresh Kumar <vireshk@kernel.org>
12096 M:      Nishanth Menon <nm@ti.com>
12097 M:      Stephen Boyd <sboyd@kernel.org>
12098 L:      linux-pm@vger.kernel.org
12099 S:      Maintained
12100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
12101 F:      drivers/opp/
12102 F:      include/linux/pm_opp.h
12103 F:      Documentation/power/opp.rst
12104 F:      Documentation/devicetree/bindings/opp/
12105
12106 OPL4 DRIVER
12107 M:      Clemens Ladisch <clemens@ladisch.de>
12108 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12109 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12110 S:      Maintained
12111 F:      sound/drivers/opl4/
12112
12113 OPROFILE
12114 M:      Robert Richter <rric@kernel.org>
12115 L:      oprofile-list@lists.sf.net
12116 S:      Maintained
12117 F:      arch/*/include/asm/oprofile*.h
12118 F:      arch/*/oprofile/
12119 F:      drivers/oprofile/
12120 F:      include/linux/oprofile.h
12121
12122 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
12123 M:      Mark Fasheh <mark@fasheh.com>
12124 M:      Joel Becker <jlbec@evilplan.org>
12125 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
12126 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
12127 W:      http://ocfs2.wiki.kernel.org
12128 S:      Supported
12129 F:      Documentation/filesystems/ocfs2.txt
12130 F:      Documentation/filesystems/dlmfs.txt
12131 F:      fs/ocfs2/
12132
12133 ORANGEFS FILESYSTEM
12134 M:      Mike Marshall <hubcap@omnibond.com>
12135 R:      Martin Brandenburg <martin@omnibond.com>
12136 L:      devel@lists.orangefs.org
12137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
12138 S:      Supported
12139 F:      fs/orangefs/
12140 F:      Documentation/filesystems/orangefs.txt
12141
12142 ORINOCO DRIVER
12143 L:      linux-wireless@vger.kernel.org
12144 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
12145 W:      http://www.nongnu.org/orinoco/
12146 S:      Orphan
12147 F:      drivers/net/wireless/intersil/orinoco/
12148
12149 OV2659 OMNIVISION SENSOR DRIVER
12150 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
12151 L:      linux-media@vger.kernel.org
12152 W:      https://linuxtv.org
12153 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12154 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12155 S:      Maintained
12156 F:      drivers/media/i2c/ov2659.c
12157 F:      include/media/i2c/ov2659.h
12158
12159 OVERLAY FILESYSTEM
12160 M:      Miklos Szeredi <miklos@szeredi.hu>
12161 L:      linux-unionfs@vger.kernel.org
12162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
12163 S:      Supported
12164 F:      fs/overlayfs/
12165 F:      Documentation/filesystems/overlayfs.txt
12166
12167 P54 WIRELESS DRIVER
12168 M:      Christian Lamparter <chunkeey@googlemail.com>
12169 L:      linux-wireless@vger.kernel.org
12170 W:      http://wireless.kernel.org/en/users/Drivers/p54
12171 S:      Maintained
12172 F:      drivers/net/wireless/intersil/p54/
12173
12174 PA SEMI ETHERNET DRIVER
12175 L:      netdev@vger.kernel.org
12176 S:      Orphan
12177 F:      drivers/net/ethernet/pasemi/*
12178
12179 PA SEMI SMBUS DRIVER
12180 L:      linux-i2c@vger.kernel.org
12181 S:      Orphan
12182 F:      drivers/i2c/busses/i2c-pasemi.c
12183
12184 PACKING
12185 M:      Vladimir Oltean <olteanv@gmail.com>
12186 L:      netdev@vger.kernel.org
12187 S:      Supported
12188 F:      lib/packing.c
12189 F:      include/linux/packing.h
12190 F:      Documentation/core-api/packing.rst
12191
12192 PADATA PARALLEL EXECUTION MECHANISM
12193 M:      Steffen Klassert <steffen.klassert@secunet.com>
12194 L:      linux-crypto@vger.kernel.org
12195 S:      Maintained
12196 F:      kernel/padata.c
12197 F:      include/linux/padata.h
12198 F:      Documentation/padata.txt
12199
12200 PAGE POOL
12201 M:      Jesper Dangaard Brouer <hawk@kernel.org>
12202 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
12203 L:      netdev@vger.kernel.org
12204 S:      Supported
12205 F:      net/core/page_pool.c
12206 F:      include/net/page_pool.h
12207
12208 PANASONIC LAPTOP ACPI EXTRAS DRIVER
12209 M:      Harald Welte <laforge@gnumonks.org>
12210 L:      platform-driver-x86@vger.kernel.org
12211 S:      Maintained
12212 F:      drivers/platform/x86/panasonic-laptop.c
12213
12214 PARALLEL LCD/KEYPAD PANEL DRIVER
12215 M:      Willy Tarreau <willy@haproxy.com>
12216 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
12217 S:      Odd Fixes
12218 F:      Documentation/admin-guide/lcd-panel-cgram.rst
12219 F:      drivers/auxdisplay/panel.c
12220
12221 PARALLEL PORT SUBSYSTEM
12222 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12223 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12224 L:      linux-parport@lists.infradead.org (subscribers-only)
12225 S:      Maintained
12226 F:      drivers/parport/
12227 F:      include/linux/parport*.h
12228 F:      drivers/char/ppdev.c
12229 F:      include/uapi/linux/ppdev.h
12230 F:      Documentation/driver-api/parport*.rst
12231
12232 PARAVIRT_OPS INTERFACE
12233 M:      Juergen Gross <jgross@suse.com>
12234 M:      Thomas Hellstrom <thellstrom@vmware.com>
12235 M:      "VMware, Inc." <pv-drivers@vmware.com>
12236 L:      virtualization@lists.linux-foundation.org
12237 S:      Supported
12238 F:      Documentation/virt/paravirt_ops.rst
12239 F:      arch/*/kernel/paravirt*
12240 F:      arch/*/include/asm/paravirt*.h
12241 F:      include/linux/hypervisor.h
12242
12243 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
12244 M:      Tim Waugh <tim@cyberelk.net>
12245 L:      linux-parport@lists.infradead.org (subscribers-only)
12246 S:      Maintained
12247 F:      Documentation/admin-guide/blockdev/paride.rst
12248 F:      drivers/block/paride/
12249
12250 PARISC ARCHITECTURE
12251 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
12252 M:      Helge Deller <deller@gmx.de>
12253 L:      linux-parisc@vger.kernel.org
12254 W:      http://www.parisc-linux.org/
12255 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
12256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
12257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
12258 S:      Maintained
12259 F:      arch/parisc/
12260 F:      Documentation/parisc/
12261 F:      drivers/parisc/
12262 F:      drivers/char/agp/parisc-agp.c
12263 F:      drivers/input/serio/gscps2.c
12264 F:      drivers/parport/parport_gsc.*
12265 F:      drivers/tty/serial/8250/8250_gsc.c
12266 F:      drivers/video/fbdev/sti*
12267 F:      drivers/video/console/sti*
12268 F:      drivers/video/logo/logo_parisc*
12269
12270 PARMAN
12271 M:      Jiri Pirko <jiri@mellanox.com>
12272 L:      netdev@vger.kernel.org
12273 S:      Supported
12274 F:      lib/parman.c
12275 F:      lib/test_parman.c
12276 F:      include/linux/parman.h
12277
12278 PC ENGINES APU BOARD DRIVER
12279 M:      Enrico Weigelt, metux IT consult <info@metux.net>
12280 S:      Maintained
12281 F:      drivers/platform/x86/pcengines-apuv2.c
12282
12283 PC87360 HARDWARE MONITORING DRIVER
12284 M:      Jim Cromie <jim.cromie@gmail.com>
12285 L:      linux-hwmon@vger.kernel.org
12286 S:      Maintained
12287 F:      Documentation/hwmon/pc87360.rst
12288 F:      drivers/hwmon/pc87360.c
12289
12290 PC8736x GPIO DRIVER
12291 M:      Jim Cromie <jim.cromie@gmail.com>
12292 S:      Maintained
12293 F:      drivers/char/pc8736x_gpio.c
12294
12295 PC87427 HARDWARE MONITORING DRIVER
12296 M:      Jean Delvare <jdelvare@suse.com>
12297 L:      linux-hwmon@vger.kernel.org
12298 S:      Maintained
12299 F:      Documentation/hwmon/pc87427.rst
12300 F:      drivers/hwmon/pc87427.c
12301
12302 PCA9532 LED DRIVER
12303 M:      Riku Voipio <riku.voipio@iki.fi>
12304 S:      Maintained
12305 F:      drivers/leds/leds-pca9532.c
12306 F:      include/linux/leds-pca9532.h
12307
12308 PCA9541 I2C BUS MASTER SELECTOR DRIVER
12309 M:      Guenter Roeck <linux@roeck-us.net>
12310 L:      linux-i2c@vger.kernel.org
12311 S:      Maintained
12312 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
12313
12314 PCDP - PRIMARY CONSOLE AND DEBUG PORT
12315 M:      Khalid Aziz <khalid@gonehiking.org>
12316 S:      Maintained
12317 F:      drivers/firmware/pcdp.*
12318
12319 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
12320 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12321 L:      linux-pci@vger.kernel.org
12322 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12323 S:      Maintained
12324 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
12325 F:      drivers/pci/controller/pci-aardvark.c
12326
12327 PCI DRIVER FOR ALTERA PCIE IP
12328 M:      Ley Foon Tan <lftan@altera.com>
12329 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
12330 L:      linux-pci@vger.kernel.org
12331 S:      Supported
12332 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
12333 F:      drivers/pci/controller/pcie-altera.c
12334
12335 PCI DRIVER FOR APPLIEDMICRO XGENE
12336 M:      Toan Le <toan@os.amperecomputing.com>
12337 L:      linux-pci@vger.kernel.org
12338 L:      linux-arm-kernel@lists.infradead.org
12339 S:      Maintained
12340 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
12341 F:      drivers/pci/controller/pci-xgene.c
12342
12343 PCI DRIVER FOR ARM VERSATILE PLATFORM
12344 M:      Rob Herring <robh@kernel.org>
12345 L:      linux-pci@vger.kernel.org
12346 L:      linux-arm-kernel@lists.infradead.org
12347 S:      Maintained
12348 F:      Documentation/devicetree/bindings/pci/versatile.txt
12349 F:      drivers/pci/controller/pci-versatile.c
12350
12351 PCI DRIVER FOR ARMADA 8K
12352 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12353 L:      linux-pci@vger.kernel.org
12354 L:      linux-arm-kernel@lists.infradead.org
12355 S:      Maintained
12356 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
12357 F:      drivers/pci/controller/dwc/pcie-armada8k.c
12358
12359 PCI DRIVER FOR CADENCE PCIE IP
12360 M:      Tom Joseph <tjoseph@cadence.com>
12361 L:      linux-pci@vger.kernel.org
12362 S:      Maintained
12363 F:      Documentation/devicetree/bindings/pci/cdns,*.txt
12364 F:      drivers/pci/controller/pcie-cadence*
12365
12366 PCI DRIVER FOR FREESCALE LAYERSCAPE
12367 M:      Minghuan Lian <minghuan.Lian@nxp.com>
12368 M:      Mingkai Hu <mingkai.hu@nxp.com>
12369 M:      Roy Zang <roy.zang@nxp.com>
12370 L:      linuxppc-dev@lists.ozlabs.org
12371 L:      linux-pci@vger.kernel.org
12372 L:      linux-arm-kernel@lists.infradead.org
12373 S:      Maintained
12374 F:      drivers/pci/controller/dwc/*layerscape*
12375
12376 PCI DRIVER FOR GENERIC OF HOSTS
12377 M:      Will Deacon <will@kernel.org>
12378 L:      linux-pci@vger.kernel.org
12379 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12380 S:      Maintained
12381 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
12382 F:      drivers/pci/controller/pci-host-common.c
12383 F:      drivers/pci/controller/pci-host-generic.c
12384
12385 PCI DRIVER FOR IMX6
12386 M:      Richard Zhu <hongxing.zhu@nxp.com>
12387 M:      Lucas Stach <l.stach@pengutronix.de>
12388 L:      linux-pci@vger.kernel.org
12389 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12390 S:      Maintained
12391 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
12392 F:      drivers/pci/controller/dwc/*imx6*
12393
12394 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
12395 M:      Keith Busch <keith.busch@intel.com>
12396 M:      Jonathan Derrick <jonathan.derrick@intel.com>
12397 L:      linux-pci@vger.kernel.org
12398 S:      Supported
12399 F:      drivers/pci/controller/vmd.c
12400
12401 PCI DRIVER FOR MICROSEMI SWITCHTEC
12402 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
12403 M:      Logan Gunthorpe <logang@deltatee.com>
12404 L:      linux-pci@vger.kernel.org
12405 S:      Maintained
12406 F:      Documentation/driver-api/switchtec.rst
12407 F:      Documentation/ABI/testing/sysfs-class-switchtec
12408 F:      drivers/pci/switch/switchtec*
12409 F:      include/uapi/linux/switchtec_ioctl.h
12410 F:      include/linux/switchtec.h
12411 F:      drivers/ntb/hw/mscc/
12412
12413 PCI DRIVER FOR MOBIVEIL PCIE IP
12414 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
12415 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
12416 L:      linux-pci@vger.kernel.org
12417 S:      Supported
12418 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
12419 F:      drivers/pci/controller/pcie-mobiveil.c
12420
12421 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
12422 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12423 M:      Jason Cooper <jason@lakedaemon.net>
12424 L:      linux-pci@vger.kernel.org
12425 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12426 S:      Maintained
12427 F:      drivers/pci/controller/*mvebu*
12428
12429 PCI DRIVER FOR NVIDIA TEGRA
12430 M:      Thierry Reding <thierry.reding@gmail.com>
12431 L:      linux-tegra@vger.kernel.org
12432 L:      linux-pci@vger.kernel.org
12433 S:      Supported
12434 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
12435 F:      drivers/pci/controller/pci-tegra.c
12436
12437 PCI DRIVER FOR RENESAS R-CAR
12438 M:      Simon Horman <horms@verge.net.au>
12439 L:      linux-pci@vger.kernel.org
12440 L:      linux-renesas-soc@vger.kernel.org
12441 S:      Maintained
12442 F:      drivers/pci/controller/*rcar*
12443
12444 PCI DRIVER FOR SAMSUNG EXYNOS
12445 M:      Jingoo Han <jingoohan1@gmail.com>
12446 L:      linux-pci@vger.kernel.org
12447 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12448 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12449 S:      Maintained
12450 F:      drivers/pci/controller/dwc/pci-exynos.c
12451
12452 PCI DRIVER FOR SYNOPSYS DESIGNWARE
12453 M:      Jingoo Han <jingoohan1@gmail.com>
12454 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
12455 L:      linux-pci@vger.kernel.org
12456 S:      Maintained
12457 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
12458 F:      drivers/pci/controller/dwc/*designware*
12459
12460 PCI DRIVER FOR TI DRA7XX
12461 M:      Kishon Vijay Abraham I <kishon@ti.com>
12462 L:      linux-omap@vger.kernel.org
12463 L:      linux-pci@vger.kernel.org
12464 S:      Supported
12465 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
12466 F:      drivers/pci/controller/dwc/pci-dra7xx.c
12467
12468 PCI DRIVER FOR TI KEYSTONE
12469 M:      Murali Karicheri <m-karicheri2@ti.com>
12470 L:      linux-pci@vger.kernel.org
12471 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12472 S:      Maintained
12473 F:      drivers/pci/controller/dwc/pci-keystone.c
12474
12475 PCI ENDPOINT SUBSYSTEM
12476 M:      Kishon Vijay Abraham I <kishon@ti.com>
12477 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
12478 L:      linux-pci@vger.kernel.org
12479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
12480 S:      Supported
12481 F:      drivers/pci/endpoint/
12482 F:      drivers/misc/pci_endpoint_test.c
12483 F:      tools/pci/
12484
12485 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
12486 M:      Russell Currey <ruscur@russell.cc>
12487 M:      Sam Bobroff <sbobroff@linux.ibm.com>
12488 M:      Oliver O'Halloran <oohall@gmail.com>
12489 L:      linuxppc-dev@lists.ozlabs.org
12490 S:      Supported
12491 F:      Documentation/PCI/pci-error-recovery.rst
12492 F:      drivers/pci/pcie/aer.c
12493 F:      drivers/pci/pcie/dpc.c
12494 F:      drivers/pci/pcie/err.c
12495 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
12496 F:      arch/powerpc/kernel/eeh*.c
12497 F:      arch/powerpc/platforms/*/eeh*.c
12498 F:      arch/powerpc/include/*/eeh*.h
12499
12500 PCI ERROR RECOVERY
12501 M:      Linas Vepstas <linasvepstas@gmail.com>
12502 L:      linux-pci@vger.kernel.org
12503 S:      Supported
12504 F:      Documentation/PCI/pci-error-recovery.rst
12505
12506 PCI MSI DRIVER FOR ALTERA MSI IP
12507 M:      Ley Foon Tan <lftan@altera.com>
12508 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
12509 L:      linux-pci@vger.kernel.org
12510 S:      Supported
12511 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
12512 F:      drivers/pci/controller/pcie-altera-msi.c
12513
12514 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
12515 M:      Toan Le <toan@os.amperecomputing.com>
12516 L:      linux-pci@vger.kernel.org
12517 L:      linux-arm-kernel@lists.infradead.org
12518 S:      Maintained
12519 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
12520 F:      drivers/pci/controller/pci-xgene-msi.c
12521
12522 PCI SUBSYSTEM
12523 M:      Bjorn Helgaas <bhelgaas@google.com>
12524 L:      linux-pci@vger.kernel.org
12525 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
12526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
12527 S:      Supported
12528 F:      Documentation/devicetree/bindings/pci/
12529 F:      Documentation/PCI/
12530 F:      drivers/acpi/pci*
12531 F:      drivers/pci/
12532 F:      include/asm-generic/pci*
12533 F:      include/linux/pci*
12534 F:      include/linux/of_pci.h
12535 F:      include/uapi/linux/pci*
12536 F:      lib/pci*
12537 F:      arch/x86/pci/
12538 F:      arch/x86/kernel/quirks.c
12539 F:      arch/x86/kernel/early-quirks.c
12540
12541 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
12542 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
12543 L:      linux-pci@vger.kernel.org
12544 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
12545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
12546 S:      Supported
12547 F:      drivers/pci/controller/
12548
12549 PCIE DRIVER FOR ANNAPURNA LABS
12550 M:      Jonathan Chocron <jonnyc@amazon.com>
12551 L:      linux-pci@vger.kernel.org
12552 S:      Maintained
12553 F:      drivers/pci/controller/dwc/pcie-al.c
12554
12555 PCIE DRIVER FOR AMLOGIC MESON
12556 M:      Yue Wang <yue.wang@Amlogic.com>
12557 L:      linux-pci@vger.kernel.org
12558 L:      linux-amlogic@lists.infradead.org
12559 S:      Maintained
12560 F:      drivers/pci/controller/dwc/pci-meson.c
12561
12562 PCIE DRIVER FOR AXIS ARTPEC
12563 M:      Jesper Nilsson <jesper.nilsson@axis.com>
12564 L:      linux-arm-kernel@axis.com
12565 L:      linux-pci@vger.kernel.org
12566 S:      Maintained
12567 F:      Documentation/devicetree/bindings/pci/axis,artpec*
12568 F:      drivers/pci/controller/dwc/*artpec*
12569
12570 PCIE DRIVER FOR CAVIUM THUNDERX
12571 M:      David Daney <david.daney@cavium.com>
12572 L:      linux-pci@vger.kernel.org
12573 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12574 S:      Supported
12575 F:      Documentation/devicetree/bindings/pci/pci-thunder-*
12576 F:      drivers/pci/controller/pci-thunder-*
12577
12578 PCIE DRIVER FOR HISILICON
12579 M:      Zhou Wang <wangzhou1@hisilicon.com>
12580 L:      linux-pci@vger.kernel.org
12581 S:      Maintained
12582 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
12583 F:      drivers/pci/controller/dwc/pcie-hisi.c
12584
12585 PCIE DRIVER FOR HISILICON KIRIN
12586 M:      Xiaowei Song <songxiaowei@hisilicon.com>
12587 M:      Binghui Wang <wangbinghui@hisilicon.com>
12588 L:      linux-pci@vger.kernel.org
12589 S:      Maintained
12590 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
12591 F:      drivers/pci/controller/dwc/pcie-kirin.c
12592
12593 PCIE DRIVER FOR HISILICON STB
12594 M:      Shawn Guo <shawn.guo@linaro.org>
12595 L:      linux-pci@vger.kernel.org
12596 S:      Maintained
12597 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
12598 F:      drivers/pci/controller/dwc/pcie-histb.c
12599
12600 PCIE DRIVER FOR MEDIATEK
12601 M:      Ryder Lee <ryder.lee@mediatek.com>
12602 L:      linux-pci@vger.kernel.org
12603 L:      linux-mediatek@lists.infradead.org
12604 S:      Supported
12605 F:      Documentation/devicetree/bindings/pci/mediatek*
12606 F:      drivers/pci/controller/*mediatek*
12607
12608 PCIE DRIVER FOR QUALCOMM MSM
12609 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
12610 L:      linux-pci@vger.kernel.org
12611 L:      linux-arm-msm@vger.kernel.org
12612 S:      Maintained
12613 F:      drivers/pci/controller/dwc/*qcom*
12614
12615 PCIE DRIVER FOR ROCKCHIP
12616 M:      Shawn Lin <shawn.lin@rock-chips.com>
12617 L:      linux-pci@vger.kernel.org
12618 L:      linux-rockchip@lists.infradead.org
12619 S:      Maintained
12620 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
12621 F:      drivers/pci/controller/pcie-rockchip*
12622
12623 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
12624 M:      Linus Walleij <linus.walleij@linaro.org>
12625 L:      linux-pci@vger.kernel.org
12626 S:      Maintained
12627 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
12628 F:      drivers/pci/controller/pci-v3-semi.c
12629
12630 PCIE DRIVER FOR SOCIONEXT UNIPHIER
12631 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
12632 L:      linux-pci@vger.kernel.org
12633 S:      Maintained
12634 F:      Documentation/devicetree/bindings/pci/uniphier-pcie.txt
12635 F:      drivers/pci/controller/dwc/pcie-uniphier.c
12636
12637 PCIE DRIVER FOR ST SPEAR13XX
12638 M:      Pratyush Anand <pratyush.anand@gmail.com>
12639 L:      linux-pci@vger.kernel.org
12640 S:      Maintained
12641 F:      drivers/pci/controller/dwc/*spear*
12642
12643 PCMCIA SUBSYSTEM
12644 M:      Dominik Brodowski <linux@dominikbrodowski.net>
12645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
12646 S:      Odd Fixes
12647 F:      Documentation/pcmcia/
12648 F:      tools/pcmcia/
12649 F:      drivers/pcmcia/
12650 F:      include/pcmcia/
12651
12652 PCNET32 NETWORK DRIVER
12653 M:      Don Fry <pcnet32@frontier.com>
12654 L:      netdev@vger.kernel.org
12655 S:      Maintained
12656 F:      drivers/net/ethernet/amd/pcnet32.c
12657
12658 PCRYPT PARALLEL CRYPTO ENGINE
12659 M:      Steffen Klassert <steffen.klassert@secunet.com>
12660 L:      linux-crypto@vger.kernel.org
12661 S:      Maintained
12662 F:      crypto/pcrypt.c
12663 F:      include/crypto/pcrypt.h
12664
12665 PEAQ WMI HOTKEYS DRIVER
12666 M:      Hans de Goede <hdegoede@redhat.com>
12667 L:      platform-driver-x86@vger.kernel.org
12668 S:      Maintained
12669 F:      drivers/platform/x86/peaq-wmi.c
12670
12671 PENSANDO ETHERNET DRIVERS
12672 M:      Shannon Nelson <snelson@pensando.io>
12673 M:      Pensando Drivers <drivers@pensando.io>
12674 L:      netdev@vger.kernel.org
12675 S:      Supported
12676 F:      Documentation/networking/device_drivers/pensando/ionic.rst
12677 F:      drivers/net/ethernet/pensando/
12678
12679 PER-CPU MEMORY ALLOCATOR
12680 M:      Dennis Zhou <dennis@kernel.org>
12681 M:      Tejun Heo <tj@kernel.org>
12682 M:      Christoph Lameter <cl@linux.com>
12683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
12684 S:      Maintained
12685 F:      include/linux/percpu*.h
12686 F:      mm/percpu*.c
12687 F:      arch/*/include/asm/percpu.h
12688
12689 PER-TASK DELAY ACCOUNTING
12690 M:      Balbir Singh <bsingharora@gmail.com>
12691 S:      Maintained
12692 F:      include/linux/delayacct.h
12693 F:      kernel/delayacct.c
12694
12695 PERFORMANCE EVENTS SUBSYSTEM
12696 M:      Peter Zijlstra <peterz@infradead.org>
12697 M:      Ingo Molnar <mingo@redhat.com>
12698 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
12699 R:      Mark Rutland <mark.rutland@arm.com>
12700 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
12701 R:      Jiri Olsa <jolsa@redhat.com>
12702 R:      Namhyung Kim <namhyung@kernel.org>
12703 L:      linux-kernel@vger.kernel.org
12704 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
12705 S:      Supported
12706 F:      kernel/events/*
12707 F:      include/linux/perf_event.h
12708 F:      include/uapi/linux/perf_event.h
12709 F:      arch/*/kernel/perf_event*.c
12710 F:      arch/*/kernel/*/perf_event*.c
12711 F:      arch/*/kernel/*/*/perf_event*.c
12712 F:      arch/*/include/asm/perf_event.h
12713 F:      arch/*/kernel/perf_callchain.c
12714 F:      arch/*/events/*
12715 F:      arch/*/events/*/*
12716 F:      tools/perf/
12717
12718 PERSONALITY HANDLING
12719 M:      Christoph Hellwig <hch@infradead.org>
12720 L:      linux-abi-devel@lists.sourceforge.net
12721 S:      Maintained
12722 F:      include/linux/personality.h
12723 F:      include/uapi/linux/personality.h
12724
12725 PHOENIX RC FLIGHT CONTROLLER ADAPTER
12726 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12727 L:      linux-input@vger.kernel.org
12728 S:      Maintained
12729 F:      Documentation/input/devices/pxrc.rst
12730 F:      drivers/input/joystick/pxrc.c
12731
12732 PHONET PROTOCOL
12733 M:      Remi Denis-Courmont <courmisch@gmail.com>
12734 S:      Supported
12735 F:      Documentation/networking/phonet.txt
12736 F:      include/linux/phonet.h
12737 F:      include/net/phonet/
12738 F:      include/uapi/linux/phonet.h
12739 F:      net/phonet/
12740
12741 PHRAM MTD DRIVER
12742 M:      Joern Engel <joern@lazybastard.org>
12743 L:      linux-mtd@lists.infradead.org
12744 S:      Maintained
12745 F:      drivers/mtd/devices/phram.c
12746
12747 PICOLCD HID DRIVER
12748 M:      Bruno Prémont <bonbons@linux-vserver.org>
12749 L:      linux-input@vger.kernel.org
12750 S:      Maintained
12751 F:      drivers/hid/hid-picolcd*
12752
12753 PICOXCELL SUPPORT
12754 M:      Jamie Iles <jamie@jamieiles.com>
12755 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12756 T:      git git://github.com/jamieiles/linux-2.6-ji.git
12757 S:      Supported
12758 F:      arch/arm/boot/dts/picoxcell*
12759 F:      arch/arm/mach-picoxcell/
12760 F:      drivers/crypto/picoxcell*
12761
12762 PIDFD API
12763 M:      Christian Brauner <christian@brauner.io>
12764 L:      linux-kernel@vger.kernel.org
12765 S:      Maintained
12766 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
12767 F:      samples/pidfd/
12768 F:      tools/testing/selftests/pidfd/
12769 K:      (?i)pidfd
12770 K:      (?i)clone3
12771 K:      \b(clone_args|kernel_clone_args)\b
12772
12773 PIN CONTROL SUBSYSTEM
12774 M:      Linus Walleij <linus.walleij@linaro.org>
12775 L:      linux-gpio@vger.kernel.org
12776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
12777 S:      Maintained
12778 F:      Documentation/devicetree/bindings/pinctrl/
12779 F:      Documentation/driver-api/pinctl.rst
12780 F:      drivers/pinctrl/
12781 F:      include/linux/pinctrl/
12782
12783 PIN CONTROLLER - MICROCHIP AT91
12784 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12785 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12786 L:      linux-gpio@vger.kernel.org
12787 S:      Supported
12788 F:      drivers/pinctrl/pinctrl-at91*
12789 F:      drivers/gpio/gpio-sama5d2-piobu.c
12790
12791 PIN CONTROLLER - FREESCALE
12792 M:      Dong Aisheng <aisheng.dong@nxp.com>
12793 M:      Fabio Estevam <festevam@gmail.com>
12794 M:      Shawn Guo <shawnguo@kernel.org>
12795 M:      Stefan Agner <stefan@agner.ch>
12796 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
12797 L:      linux-gpio@vger.kernel.org
12798 S:      Maintained
12799 F:      drivers/pinctrl/freescale/
12800 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
12801
12802 PIN CONTROLLER - INTEL
12803 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
12804 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
12805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
12806 S:      Maintained
12807 F:      drivers/pinctrl/intel/
12808
12809 PIN CONTROLLER - MEDIATEK
12810 M:      Sean Wang <sean.wang@kernel.org>
12811 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12812 S:      Maintained
12813 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
12814 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
12815 F:      drivers/pinctrl/mediatek/
12816
12817 PIN CONTROLLER - QUALCOMM
12818 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
12819 S:      Maintained
12820 L:      linux-arm-msm@vger.kernel.org
12821 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
12822 F:      drivers/pinctrl/qcom/
12823
12824 PIN CONTROLLER - RENESAS
12825 M:      Geert Uytterhoeven <geert+renesas@glider.be>
12826 L:      linux-renesas-soc@vger.kernel.org
12827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
12828 S:      Maintained
12829 F:      drivers/pinctrl/pinctrl-rz*
12830 F:      drivers/pinctrl/sh-pfc/
12831
12832 PIN CONTROLLER - SAMSUNG
12833 M:      Tomasz Figa <tomasz.figa@gmail.com>
12834 M:      Krzysztof Kozlowski <krzk@kernel.org>
12835 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12836 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12837 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12838 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
12839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
12840 S:      Maintained
12841 F:      drivers/pinctrl/samsung/
12842 F:      include/dt-bindings/pinctrl/samsung.h
12843 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
12844
12845 PIN CONTROLLER - SINGLE
12846 M:      Tony Lindgren <tony@atomide.com>
12847 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
12848 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12849 L:      linux-omap@vger.kernel.org
12850 S:      Maintained
12851 F:      drivers/pinctrl/pinctrl-single.c
12852
12853 PIN CONTROLLER - ST SPEAR
12854 M:      Viresh Kumar <vireshk@kernel.org>
12855 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12856 W:      http://www.st.com/spear
12857 S:      Maintained
12858 F:      drivers/pinctrl/spear/
12859
12860 PISTACHIO SOC SUPPORT
12861 M:      James Hartley <james.hartley@sondrel.com>
12862 L:      linux-mips@vger.kernel.org
12863 S:      Odd Fixes
12864 F:      arch/mips/pistachio/
12865 F:      arch/mips/include/asm/mach-pistachio/
12866 F:      arch/mips/boot/dts/img/pistachio*
12867 F:      arch/mips/configs/pistachio*_defconfig
12868
12869 PKTCDVD DRIVER
12870 S:      Orphan
12871 M:      linux-block@vger.kernel.org
12872 F:      drivers/block/pktcdvd.c
12873 F:      include/linux/pktcdvd.h
12874 F:      include/uapi/linux/pktcdvd.h
12875
12876 PKUNITY SOC DRIVERS
12877 M:      Guan Xuetao <gxt@pku.edu.cn>
12878 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
12879 S:      Maintained
12880 T:      git git://github.com/gxt/linux.git
12881 F:      drivers/input/serio/i8042-unicore32io.h
12882 F:      drivers/i2c/busses/i2c-puv3.c
12883 F:      drivers/video/fbdev/fb-puv3.c
12884 F:      drivers/rtc/rtc-puv3.c
12885
12886 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
12887 M:      Tomasz Duszynski <tduszyns@gmail.com>
12888 S:      Maintained
12889 F:      drivers/iio/chemical/pms7003.c
12890 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
12891
12892 PMBUS HARDWARE MONITORING DRIVERS
12893 M:      Guenter Roeck <linux@roeck-us.net>
12894 L:      linux-hwmon@vger.kernel.org
12895 W:      http://hwmon.wiki.kernel.org/
12896 W:      http://www.roeck-us.net/linux/drivers/
12897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
12898 S:      Maintained
12899 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
12900 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
12901 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
12902 F:      Documentation/hwmon/adm1275.rst
12903 F:      Documentation/hwmon/ibm-cffps.rst
12904 F:      Documentation/hwmon/ir35221.rst
12905 F:      Documentation/hwmon/lm25066.rst
12906 F:      Documentation/hwmon/ltc2978.rst
12907 F:      Documentation/hwmon/ltc3815.rst
12908 F:      Documentation/hwmon/max16064.rst
12909 F:      Documentation/hwmon/max20751.rst
12910 F:      Documentation/hwmon/max31785.rst
12911 F:      Documentation/hwmon/max34440.rst
12912 F:      Documentation/hwmon/max8688.rst
12913 F:      Documentation/hwmon/pmbus.rst
12914 F:      Documentation/hwmon/pmbus-core.rst
12915 F:      Documentation/hwmon/tps40422.rst
12916 F:      Documentation/hwmon/ucd9000.rst
12917 F:      Documentation/hwmon/ucd9200.rst
12918 F:      Documentation/hwmon/zl6100.rst
12919 F:      drivers/hwmon/pmbus/
12920 F:      include/linux/pmbus.h
12921
12922 PMC SIERRA MaxRAID DRIVER
12923 L:      linux-scsi@vger.kernel.org
12924 W:      http://www.pmc-sierra.com/
12925 S:      Orphan
12926 F:      drivers/scsi/pmcraid.*
12927
12928 PMC SIERRA PM8001 DRIVER
12929 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
12930 L:      linux-scsi@vger.kernel.org
12931 S:      Supported
12932 F:      drivers/scsi/pm8001/
12933
12934 PNP SUPPORT
12935 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
12936 S:      Maintained
12937 F:      drivers/pnp/
12938
12939 PNI RM3100 IIO DRIVER
12940 M:      Song Qiang <songqiang1304521@gmail.com>
12941 L:      linux-iio@vger.kernel.org
12942 S:      Maintained
12943 F:      drivers/iio/magnetometer/rm3100*
12944 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
12945
12946 POSIX CLOCKS and TIMERS
12947 M:      Thomas Gleixner <tglx@linutronix.de>
12948 L:      linux-kernel@vger.kernel.org
12949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
12950 S:      Maintained
12951 F:      fs/timerfd.c
12952 F:      include/linux/timer*
12953 F:      kernel/time/*timer*
12954
12955 POWER MANAGEMENT CORE
12956 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
12957 L:      linux-pm@vger.kernel.org
12958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
12959 B:      https://bugzilla.kernel.org
12960 S:      Supported
12961 F:      drivers/base/power/
12962 F:      include/linux/pm.h
12963 F:      include/linux/pm_*
12964 F:      include/linux/powercap.h
12965 F:      include/linux/intel_rapl.h
12966 F:      drivers/powercap/
12967 F:      kernel/configs/nopm.config
12968
12969 POWER STATE COORDINATION INTERFACE (PSCI)
12970 M:      Mark Rutland <mark.rutland@arm.com>
12971 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
12972 L:      linux-arm-kernel@lists.infradead.org
12973 S:      Maintained
12974 F:      drivers/firmware/psci/
12975 F:      include/linux/psci.h
12976 F:      include/uapi/linux/psci.h
12977
12978 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
12979 M:      Sebastian Reichel <sre@kernel.org>
12980 L:      linux-pm@vger.kernel.org
12981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
12982 S:      Maintained
12983 F:      Documentation/ABI/testing/sysfs-class-power
12984 F:      Documentation/devicetree/bindings/power/supply/
12985 F:      include/linux/power_supply.h
12986 F:      drivers/power/supply/
12987
12988 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
12989 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
12990 L:      linuxppc-dev@lists.ozlabs.org
12991 S:      Maintained
12992 F:      drivers/char/powernv-op-panel.c
12993
12994 PPP OVER ATM (RFC 2364)
12995 M:      Mitchell Blank Jr <mitch@sfgoth.com>
12996 S:      Maintained
12997 F:      net/atm/pppoatm.c
12998 F:      include/uapi/linux/atmppp.h
12999
13000 PPP OVER ETHERNET
13001 M:      Michal Ostrowski <mostrows@earthlink.net>
13002 S:      Maintained
13003 F:      drivers/net/ppp/pppoe.c
13004 F:      drivers/net/ppp/pppox.c
13005
13006 PPP OVER L2TP
13007 M:      James Chapman <jchapman@katalix.com>
13008 S:      Maintained
13009 F:      net/l2tp/l2tp_ppp.c
13010 F:      include/linux/if_pppol2tp.h
13011 F:      include/uapi/linux/if_pppol2tp.h
13012
13013 PPP PROTOCOL DRIVERS AND COMPRESSORS
13014 M:      Paul Mackerras <paulus@samba.org>
13015 L:      linux-ppp@vger.kernel.org
13016 S:      Maintained
13017 F:      drivers/net/ppp/ppp_*
13018
13019 PPS SUPPORT
13020 M:      Rodolfo Giometti <giometti@enneenne.com>
13021 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
13022 L:      linuxpps@ml.enneenne.com (subscribers-only)
13023 S:      Maintained
13024 F:      Documentation/driver-api/pps.rst
13025 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
13026 F:      Documentation/ABI/testing/sysfs-pps
13027 F:      drivers/pps/
13028 F:      include/linux/pps*.h
13029 F:      include/uapi/linux/pps.h
13030
13031 PPTP DRIVER
13032 M:      Dmitry Kozlov <xeb@mail.ru>
13033 L:      netdev@vger.kernel.org
13034 S:      Maintained
13035 F:      drivers/net/ppp/pptp.c
13036 W:      http://sourceforge.net/projects/accel-pptp
13037
13038 PRINTK
13039 M:      Petr Mladek <pmladek@suse.com>
13040 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
13041 R:      Steven Rostedt <rostedt@goodmis.org>
13042 S:      Maintained
13043 F:      kernel/printk/
13044 F:      include/linux/printk.h
13045
13046 PRISM54 WIRELESS DRIVER
13047 M:      Luis Chamberlain <mcgrof@kernel.org>
13048 L:      linux-wireless@vger.kernel.org
13049 W:      http://wireless.kernel.org/en/users/Drivers/p54
13050 S:      Obsolete
13051 F:      drivers/net/wireless/intersil/prism54/
13052
13053 PROC FILESYSTEM
13054 R:      Alexey Dobriyan <adobriyan@gmail.com>
13055 L:      linux-kernel@vger.kernel.org
13056 L:      linux-fsdevel@vger.kernel.org
13057 S:      Maintained
13058 F:      fs/proc/
13059 F:      include/linux/proc_fs.h
13060 F:      tools/testing/selftests/proc/
13061 F:      Documentation/filesystems/proc.txt
13062
13063 PROC SYSCTL
13064 M:      Luis Chamberlain <mcgrof@kernel.org>
13065 M:      Kees Cook <keescook@chromium.org>
13066 L:      linux-kernel@vger.kernel.org
13067 L:      linux-fsdevel@vger.kernel.org
13068 S:      Maintained
13069 F:      fs/proc/proc_sysctl.c
13070 F:      include/linux/sysctl.h
13071 F:      kernel/sysctl.c
13072 F:      tools/testing/selftests/sysctl/
13073
13074 PS3 NETWORK SUPPORT
13075 M:      Geoff Levand <geoff@infradead.org>
13076 L:      netdev@vger.kernel.org
13077 L:      linuxppc-dev@lists.ozlabs.org
13078 S:      Maintained
13079 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
13080
13081 PS3 PLATFORM SUPPORT
13082 M:      Geoff Levand <geoff@infradead.org>
13083 L:      linuxppc-dev@lists.ozlabs.org
13084 S:      Maintained
13085 F:      arch/powerpc/boot/ps3*
13086 F:      arch/powerpc/include/asm/lv1call.h
13087 F:      arch/powerpc/include/asm/ps3*.h
13088 F:      arch/powerpc/platforms/ps3/
13089 F:      drivers/*/ps3*
13090 F:      drivers/ps3/
13091 F:      drivers/rtc/rtc-ps3.c
13092 F:      drivers/usb/host/*ps3.c
13093 F:      sound/ppc/snd_ps3*
13094
13095 PS3VRAM DRIVER
13096 M:      Jim Paris <jim@jtan.com>
13097 M:      Geoff Levand <geoff@infradead.org>
13098 L:      linuxppc-dev@lists.ozlabs.org
13099 S:      Maintained
13100 F:      drivers/block/ps3vram.c
13101
13102 PSAMPLE PACKET SAMPLING SUPPORT:
13103 M:      Yotam Gigi <yotam.gi@gmail.com>
13104 S:      Maintained
13105 F:      net/psample
13106 F:      include/net/psample.h
13107 F:      include/uapi/linux/psample.h
13108
13109 PSTORE FILESYSTEM
13110 M:      Kees Cook <keescook@chromium.org>
13111 M:      Anton Vorontsov <anton@enomsg.org>
13112 M:      Colin Cross <ccross@android.com>
13113 M:      Tony Luck <tony.luck@intel.com>
13114 S:      Maintained
13115 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
13116 F:      fs/pstore/
13117 F:      include/linux/pstore*
13118 F:      drivers/firmware/efi/efi-pstore.c
13119 F:      drivers/acpi/apei/erst.c
13120 F:      Documentation/admin-guide/ramoops.rst
13121 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
13122 K:      \b(pstore|ramoops)
13123
13124 PTP HARDWARE CLOCK SUPPORT
13125 M:      Richard Cochran <richardcochran@gmail.com>
13126 L:      netdev@vger.kernel.org
13127 S:      Maintained
13128 W:      http://linuxptp.sourceforge.net/
13129 F:      Documentation/ABI/testing/sysfs-ptp
13130 F:      Documentation/driver-api/ptp.rst
13131 F:      drivers/net/phy/dp83640*
13132 F:      drivers/ptp/*
13133 F:      include/linux/ptp_cl*
13134
13135 PTRACE SUPPORT
13136 M:      Oleg Nesterov <oleg@redhat.com>
13137 S:      Maintained
13138 F:      include/asm-generic/syscall.h
13139 F:      include/linux/ptrace.h
13140 F:      include/linux/regset.h
13141 F:      include/linux/tracehook.h
13142 F:      include/uapi/linux/ptrace.h
13143 F:      include/uapi/linux/ptrace.h
13144 F:      kernel/ptrace.c
13145 F:      arch/*/ptrace*.c
13146 F:      arch/*/*/ptrace*.c
13147 F:      arch/*/include/asm/ptrace*.h
13148
13149 PULSE8-CEC DRIVER
13150 M:      Hans Verkuil <hverkuil@xs4all.nl>
13151 L:      linux-media@vger.kernel.org
13152 T:      git git://linuxtv.org/media_tree.git
13153 S:      Maintained
13154 F:      drivers/media/usb/pulse8-cec/*
13155 F:      Documentation/media/cec-drivers/pulse8-cec.rst
13156
13157 PVRUSB2 VIDEO4LINUX DRIVER
13158 M:      Mike Isely <isely@pobox.com>
13159 L:      pvrusb2@isely.net       (subscribers-only)
13160 L:      linux-media@vger.kernel.org
13161 W:      http://www.isely.net/pvrusb2/
13162 T:      git git://linuxtv.org/media_tree.git
13163 S:      Maintained
13164 F:      Documentation/media/v4l-drivers/pvrusb2*
13165 F:      drivers/media/usb/pvrusb2/
13166
13167 PWC WEBCAM DRIVER
13168 M:      Hans Verkuil <hverkuil@xs4all.nl>
13169 L:      linux-media@vger.kernel.org
13170 T:      git git://linuxtv.org/media_tree.git
13171 S:      Odd Fixes
13172 F:      drivers/media/usb/pwc/*
13173 F:      include/trace/events/pwc.h
13174
13175 PWM FAN DRIVER
13176 M:      Kamil Debski <kamil@wypas.org>
13177 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
13178 L:      linux-hwmon@vger.kernel.org
13179 S:      Supported
13180 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
13181 F:      Documentation/hwmon/pwm-fan.rst
13182 F:      drivers/hwmon/pwm-fan.c
13183
13184 PWM IR Transmitter
13185 M:      Sean Young <sean@mess.org>
13186 L:      linux-media@vger.kernel.org
13187 S:      Maintained
13188 F:      drivers/media/rc/pwm-ir-tx.c
13189
13190 PWM SUBSYSTEM
13191 M:      Thierry Reding <thierry.reding@gmail.com>
13192 L:      linux-pwm@vger.kernel.org
13193 S:      Maintained
13194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
13195 F:      Documentation/driver-api/pwm.rst
13196 F:      Documentation/devicetree/bindings/pwm/
13197 F:      include/linux/pwm.h
13198 F:      drivers/pwm/
13199 F:      drivers/video/backlight/pwm_bl.c
13200 F:      include/linux/pwm_backlight.h
13201 F:      drivers/gpio/gpio-mvebu.c
13202 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
13203
13204 PXA GPIO DRIVER
13205 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13206 L:      linux-gpio@vger.kernel.org
13207 S:      Maintained
13208 F:      drivers/gpio/gpio-pxa.c
13209
13210 PXA MMCI DRIVER
13211 S:      Orphan
13212
13213 PXA RTC DRIVER
13214 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13215 L:      linux-rtc@vger.kernel.org
13216 S:      Maintained
13217
13218 PXA2xx/PXA3xx SUPPORT
13219 M:      Daniel Mack <daniel@zonque.org>
13220 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
13221 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13222 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13223 T:      git git://github.com/hzhuang1/linux.git
13224 T:      git git://github.com/rjarzmik/linux.git
13225 S:      Maintained
13226 F:      arch/arm/boot/dts/pxa*
13227 F:      arch/arm/mach-pxa/
13228 F:      drivers/dma/pxa*
13229 F:      drivers/pcmcia/pxa2xx*
13230 F:      drivers/pinctrl/pxa/
13231 F:      drivers/spi/spi-pxa2xx*
13232 F:      drivers/usb/gadget/udc/pxa2*
13233 F:      include/sound/pxa2xx-lib.h
13234 F:      sound/arm/pxa*
13235 F:      sound/soc/pxa/
13236
13237 QAT DRIVER
13238 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
13239 L:      qat-linux@intel.com
13240 S:      Supported
13241 F:      drivers/crypto/qat/
13242
13243 QCOM AUDIO (ASoC) DRIVERS
13244 M:      Patrick Lai <plai@codeaurora.org>
13245 M:      Banajit Goswami <bgoswami@codeaurora.org>
13246 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13247 S:      Supported
13248 F:      sound/soc/qcom/
13249
13250 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
13251 M:      Gabriel Somlo <somlo@cmu.edu>
13252 M:      "Michael S. Tsirkin" <mst@redhat.com>
13253 L:      qemu-devel@nongnu.org
13254 S:      Maintained
13255 F:      drivers/firmware/qemu_fw_cfg.c
13256 F:      include/uapi/linux/qemu_fw_cfg.h
13257
13258 QIB DRIVER
13259 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
13260 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
13261 L:      linux-rdma@vger.kernel.org
13262 S:      Supported
13263 F:      drivers/infiniband/hw/qib/
13264
13265 QLOGIC QL41xxx FCOE DRIVER
13266 M:      QLogic-Storage-Upstream@cavium.com
13267 L:      linux-scsi@vger.kernel.org
13268 S:      Supported
13269 F:      drivers/scsi/qedf/
13270
13271 QLOGIC QL41xxx ISCSI DRIVER
13272 M:      QLogic-Storage-Upstream@cavium.com
13273 L:      linux-scsi@vger.kernel.org
13274 S:      Supported
13275 F:      drivers/scsi/qedi/
13276
13277 QLOGIC QL4xxx ETHERNET DRIVER
13278 M:      Ariel Elior <aelior@marvell.com>
13279 M:      GR-everest-linux-l2@marvell.com
13280 L:      netdev@vger.kernel.org
13281 S:      Supported
13282 F:      drivers/net/ethernet/qlogic/qed/
13283 F:      include/linux/qed/
13284 F:      drivers/net/ethernet/qlogic/qede/
13285
13286 QLOGIC QL4xxx RDMA DRIVER
13287 M:      Michal Kalderon <mkalderon@marvell.com>
13288 M:      Ariel Elior <aelior@marvell.com>
13289 L:      linux-rdma@vger.kernel.org
13290 S:      Supported
13291 F:      drivers/infiniband/hw/qedr/
13292 F:      include/uapi/rdma/qedr-abi.h
13293
13294 QLOGIC QLA1280 SCSI DRIVER
13295 M:      Michael Reed <mdr@sgi.com>
13296 L:      linux-scsi@vger.kernel.org
13297 S:      Maintained
13298 F:      drivers/scsi/qla1280.[ch]
13299
13300 QLOGIC QLA2XXX FC-SCSI DRIVER
13301 M:      qla2xxx-upstream@qlogic.com
13302 L:      linux-scsi@vger.kernel.org
13303 S:      Supported
13304 F:      Documentation/scsi/LICENSE.qla2xxx
13305 F:      drivers/scsi/qla2xxx/
13306
13307 QLOGIC QLA3XXX NETWORK DRIVER
13308 M:      GR-Linux-NIC-Dev@marvell.com
13309 L:      netdev@vger.kernel.org
13310 S:      Supported
13311 F:      Documentation/networking/device_drivers/qlogic/LICENSE.qla3xxx
13312 F:      drivers/net/ethernet/qlogic/qla3xxx.*
13313
13314 QLOGIC QLA4XXX iSCSI DRIVER
13315 M:      QLogic-Storage-Upstream@qlogic.com
13316 L:      linux-scsi@vger.kernel.org
13317 S:      Supported
13318 F:      Documentation/scsi/LICENSE.qla4xxx
13319 F:      drivers/scsi/qla4xxx/
13320
13321 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
13322 M:      Shahed Shaikh <shshaikh@marvell.com>
13323 M:      Manish Chopra <manishc@marvell.com>
13324 M:      GR-Linux-NIC-Dev@marvell.com
13325 L:      netdev@vger.kernel.org
13326 S:      Supported
13327 F:      drivers/net/ethernet/qlogic/qlcnic/
13328
13329 QLOGIC QLGE 10Gb ETHERNET DRIVER
13330 M:      Manish Chopra <manishc@marvell.com>
13331 M:      GR-Linux-NIC-Dev@marvell.com
13332 L:      netdev@vger.kernel.org
13333 S:      Supported
13334 F:      drivers/staging/qlge/
13335
13336 QM1D1B0004 MEDIA DRIVER
13337 M:      Akihiro Tsukada <tskd08@gmail.com>
13338 L:      linux-media@vger.kernel.org
13339 S:      Odd Fixes
13340 F:      drivers/media/tuners/qm1d1b0004*
13341
13342 QM1D1C0042 MEDIA DRIVER
13343 M:      Akihiro Tsukada <tskd08@gmail.com>
13344 L:      linux-media@vger.kernel.org
13345 S:      Odd Fixes
13346 F:      drivers/media/tuners/qm1d1c0042*
13347
13348 QNX4 FILESYSTEM
13349 M:      Anders Larsen <al@alarsen.net>
13350 W:      http://www.alarsen.net/linux/qnx4fs/
13351 S:      Maintained
13352 F:      fs/qnx4/
13353 F:      include/uapi/linux/qnx4_fs.h
13354 F:      include/uapi/linux/qnxtypes.h
13355
13356 QORIQ DPAA2 FSL-MC BUS DRIVER
13357 M:      Stuart Yoder <stuyoder@gmail.com>
13358 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
13359 L:      linux-kernel@vger.kernel.org
13360 S:      Maintained
13361 F:      drivers/bus/fsl-mc/
13362 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
13363 F:      Documentation/networking/device_drivers/freescale/dpaa2/overview.rst
13364
13365 QT1010 MEDIA DRIVER
13366 M:      Antti Palosaari <crope@iki.fi>
13367 L:      linux-media@vger.kernel.org
13368 W:      https://linuxtv.org
13369 W:      http://palosaari.fi/linux/
13370 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13371 T:      git git://linuxtv.org/anttip/media_tree.git
13372 S:      Maintained
13373 F:      drivers/media/tuners/qt1010*
13374
13375 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
13376 M:      Kalle Valo <kvalo@codeaurora.org>
13377 L:      ath10k@lists.infradead.org
13378 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
13379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
13380 S:      Supported
13381 F:      drivers/net/wireless/ath/ath10k/
13382
13383 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
13384 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
13385 L:      linux-wireless@vger.kernel.org
13386 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
13387 S:      Supported
13388 F:      drivers/net/wireless/ath/ath9k/
13389
13390 QUALCOMM CAMERA SUBSYSTEM DRIVER
13391 M:      Todor Tomov <todor.too@gmail.com>
13392 L:      linux-media@vger.kernel.org
13393 S:      Maintained
13394 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
13395 F:      Documentation/media/v4l-drivers/qcom_camss.rst
13396 F:      drivers/media/platform/qcom/camss/
13397
13398 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
13399 M:      Ilia Lin <ilia.lin@kernel.org>
13400 L:      linux-pm@vger.kernel.org
13401 S:      Maintained
13402 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
13403 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
13404
13405 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
13406 M:      Timur Tabi <timur@kernel.org>
13407 L:      netdev@vger.kernel.org
13408 S:      Maintained
13409 F:      drivers/net/ethernet/qualcomm/emac/
13410
13411 QUALCOMM ETHQOS ETHERNET DRIVER
13412 M:      Vinod Koul <vkoul@kernel.org>
13413 M:      Niklas Cassel <niklas.cassel@linaro.org>
13414 L:      netdev@vger.kernel.org
13415 S:      Maintained
13416 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
13417 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
13418
13419 QUALCOMM GENERIC INTERFACE I2C DRIVER
13420 M:      Alok Chauhan <alokc@codeaurora.org>
13421 L:      linux-i2c@vger.kernel.org
13422 L:      linux-arm-msm@vger.kernel.org
13423 S:      Supported
13424 F:      drivers/i2c/busses/i2c-qcom-geni.c
13425
13426 QUALCOMM HEXAGON ARCHITECTURE
13427 M:      Richard Kuo <rkuo@codeaurora.org>
13428 L:      linux-hexagon@vger.kernel.org
13429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
13430 S:      Supported
13431 F:      arch/hexagon/
13432
13433 QUALCOMM HIDMA DRIVER
13434 M:      Sinan Kaya <okaya@kernel.org>
13435 L:      linux-arm-kernel@lists.infradead.org
13436 L:      linux-arm-msm@vger.kernel.org
13437 L:      dmaengine@vger.kernel.org
13438 S:      Supported
13439 F:      drivers/dma/qcom/hidma*
13440
13441 QUALCOMM IOMMU
13442 M:      Rob Clark <robdclark@gmail.com>
13443 L:      iommu@lists.linux-foundation.org
13444 L:      linux-arm-msm@vger.kernel.org
13445 S:      Maintained
13446 F:      drivers/iommu/qcom_iommu.c
13447
13448 QUALCOMM TSENS THERMAL DRIVER
13449 M:      Amit Kucheria <amit.kucheria@linaro.org>
13450 L:      linux-pm@vger.kernel.org
13451 L:      linux-arm-msm@vger.kernel.org
13452 S:      Maintained
13453 F:      drivers/thermal/qcom/
13454
13455 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
13456 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
13457 L:      linux-media@vger.kernel.org
13458 L:      linux-arm-msm@vger.kernel.org
13459 T:      git git://linuxtv.org/media_tree.git
13460 S:      Maintained
13461 F:      drivers/media/platform/qcom/venus/
13462
13463 QUALCOMM WCN36XX WIRELESS DRIVER
13464 M:      Kalle Valo <kvalo@codeaurora.org>
13465 L:      wcn36xx@lists.infradead.org
13466 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
13467 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
13468 S:      Supported
13469 F:      drivers/net/wireless/ath/wcn36xx/
13470
13471 QUANTENNA QTNFMAC WIRELESS DRIVER
13472 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
13473 M:      Avinash Patil <avinashp@quantenna.com>
13474 M:      Sergey Matyukevich <smatyukevich@quantenna.com>
13475 L:      linux-wireless@vger.kernel.org
13476 S:      Maintained
13477 F:      drivers/net/wireless/quantenna
13478
13479 RADEON and AMDGPU DRM DRIVERS
13480 M:      Alex Deucher <alexander.deucher@amd.com>
13481 M:      Christian König <christian.koenig@amd.com>
13482 M:      David (ChunMing) Zhou <David1.Zhou@amd.com>
13483 L:      amd-gfx@lists.freedesktop.org
13484 T:      git git://people.freedesktop.org/~agd5f/linux
13485 S:      Supported
13486 F:      drivers/gpu/drm/radeon/
13487 F:      include/uapi/drm/radeon_drm.h
13488 F:      drivers/gpu/drm/amd/
13489 F:      include/uapi/drm/amdgpu_drm.h
13490
13491 RADEON FRAMEBUFFER DISPLAY DRIVER
13492 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
13493 L:      linux-fbdev@vger.kernel.org
13494 S:      Maintained
13495 F:      drivers/video/fbdev/aty/radeon*
13496 F:      include/uapi/linux/radeonfb.h
13497
13498 RADIOSHARK RADIO DRIVER
13499 M:      Hans Verkuil <hverkuil@xs4all.nl>
13500 L:      linux-media@vger.kernel.org
13501 T:      git git://linuxtv.org/media_tree.git
13502 S:      Maintained
13503 F:      drivers/media/radio/radio-shark.c
13504
13505 RADIOSHARK2 RADIO DRIVER
13506 M:      Hans Verkuil <hverkuil@xs4all.nl>
13507 L:      linux-media@vger.kernel.org
13508 T:      git git://linuxtv.org/media_tree.git
13509 S:      Maintained
13510 F:      drivers/media/radio/radio-shark2.c
13511 F:      drivers/media/radio/radio-tea5777.c
13512
13513 RADOS BLOCK DEVICE (RBD)
13514 M:      Ilya Dryomov <idryomov@gmail.com>
13515 M:      Sage Weil <sage@redhat.com>
13516 M:      Alex Elder <elder@kernel.org>
13517 L:      ceph-devel@vger.kernel.org
13518 W:      http://ceph.com/
13519 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
13520 T:      git git://github.com/ceph/ceph-client.git
13521 S:      Supported
13522 F:      Documentation/ABI/testing/sysfs-bus-rbd
13523 F:      drivers/block/rbd.c
13524 F:      drivers/block/rbd_types.h
13525
13526 RAGE128 FRAMEBUFFER DISPLAY DRIVER
13527 M:      Paul Mackerras <paulus@samba.org>
13528 L:      linux-fbdev@vger.kernel.org
13529 S:      Maintained
13530 F:      drivers/video/fbdev/aty/aty128fb.c
13531
13532 RAINSHADOW-CEC DRIVER
13533 M:      Hans Verkuil <hverkuil@xs4all.nl>
13534 L:      linux-media@vger.kernel.org
13535 T:      git git://linuxtv.org/media_tree.git
13536 S:      Maintained
13537 F:      drivers/media/usb/rainshadow-cec/*
13538
13539 RALINK MIPS ARCHITECTURE
13540 M:      John Crispin <john@phrozen.org>
13541 L:      linux-mips@vger.kernel.org
13542 S:      Maintained
13543 F:      arch/mips/ralink
13544
13545 RALINK RT2X00 WIRELESS LAN DRIVER
13546 P:      rt2x00 project
13547 M:      Stanislaw Gruszka <sgruszka@redhat.com>
13548 M:      Helmut Schaa <helmut.schaa@googlemail.com>
13549 L:      linux-wireless@vger.kernel.org
13550 S:      Maintained
13551 F:      drivers/net/wireless/ralink/rt2x00/
13552
13553 RAMDISK RAM BLOCK DEVICE DRIVER
13554 M:      Jens Axboe <axboe@kernel.dk>
13555 S:      Maintained
13556 F:      Documentation/admin-guide/blockdev/ramdisk.rst
13557 F:      drivers/block/brd.c
13558
13559 RANCHU VIRTUAL BOARD FOR MIPS
13560 M:      Miodrag Dinic <miodrag.dinic@mips.com>
13561 L:      linux-mips@vger.kernel.org
13562 S:      Supported
13563 F:      arch/mips/generic/board-ranchu.c
13564 F:      arch/mips/configs/generic/board-ranchu.config
13565
13566 RANDOM NUMBER DRIVER
13567 M:      "Theodore Ts'o" <tytso@mit.edu>
13568 S:      Maintained
13569 F:      drivers/char/random.c
13570
13571 RAPIDIO SUBSYSTEM
13572 M:      Matt Porter <mporter@kernel.crashing.org>
13573 M:      Alexandre Bounine <alex.bou9@gmail.com>
13574 S:      Maintained
13575 F:      drivers/rapidio/
13576
13577 RAS INFRASTRUCTURE
13578 M:      Tony Luck <tony.luck@intel.com>
13579 M:      Borislav Petkov <bp@alien8.de>
13580 L:      linux-edac@vger.kernel.org
13581 S:      Maintained
13582 F:      drivers/ras/
13583 F:      include/linux/ras.h
13584 F:      include/ras/ras_event.h
13585 F:      Documentation/admin-guide/ras.rst
13586
13587 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
13588 L:      linux-wireless@vger.kernel.org
13589 S:      Orphan
13590 F:      drivers/net/wireless/ray*
13591
13592 RCUTORTURE TEST FRAMEWORK
13593 M:      "Paul E. McKenney" <paulmck@kernel.org>
13594 M:      Josh Triplett <josh@joshtriplett.org>
13595 R:      Steven Rostedt <rostedt@goodmis.org>
13596 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13597 R:      Lai Jiangshan <jiangshanlai@gmail.com>
13598 L:      rcu@vger.kernel.org
13599 S:      Supported
13600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
13601 F:      tools/testing/selftests/rcutorture
13602
13603 RDC R-321X SoC
13604 M:      Florian Fainelli <florian@openwrt.org>
13605 S:      Maintained
13606
13607 RDC R6040 FAST ETHERNET DRIVER
13608 M:      Florian Fainelli <f.fainelli@gmail.com>
13609 L:      netdev@vger.kernel.org
13610 S:      Maintained
13611 F:      drivers/net/ethernet/rdc/r6040.c
13612
13613 RDMAVT - RDMA verbs software
13614 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
13615 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
13616 L:      linux-rdma@vger.kernel.org
13617 S:      Supported
13618 F:      drivers/infiniband/sw/rdmavt
13619
13620 RDS - RELIABLE DATAGRAM SOCKETS
13621 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
13622 L:      netdev@vger.kernel.org
13623 L:      linux-rdma@vger.kernel.org
13624 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
13625 W:      https://oss.oracle.com/projects/rds/
13626 S:      Supported
13627 F:      net/rds/
13628 F:      Documentation/networking/rds.txt
13629
13630 RDT - RESOURCE ALLOCATION
13631 M:      Fenghua Yu <fenghua.yu@intel.com>
13632 M:      Reinette Chatre <reinette.chatre@intel.com>
13633 L:      linux-kernel@vger.kernel.org
13634 S:      Supported
13635 F:      arch/x86/kernel/cpu/resctrl/
13636 F:      arch/x86/include/asm/resctrl_sched.h
13637 F:      Documentation/x86/resctrl*
13638
13639 READ-COPY UPDATE (RCU)
13640 M:      "Paul E. McKenney" <paulmck@kernel.org>
13641 M:      Josh Triplett <josh@joshtriplett.org>
13642 R:      Steven Rostedt <rostedt@goodmis.org>
13643 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13644 R:      Lai Jiangshan <jiangshanlai@gmail.com>
13645 R:      Joel Fernandes <joel@joelfernandes.org>
13646 L:      rcu@vger.kernel.org
13647 W:      http://www.rdrop.com/users/paulmck/RCU/
13648 S:      Supported
13649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
13650 F:      Documentation/RCU/
13651 X:      Documentation/RCU/torture.txt
13652 F:      include/linux/rcu*
13653 X:      include/linux/srcu*.h
13654 F:      kernel/rcu/
13655 X:      kernel/rcu/srcu*.c
13656
13657 REAL TIME CLOCK (RTC) SUBSYSTEM
13658 M:      Alessandro Zummo <a.zummo@towertech.it>
13659 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13660 L:      linux-rtc@vger.kernel.org
13661 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
13662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
13663 S:      Maintained
13664 F:      Documentation/devicetree/bindings/rtc/
13665 F:      Documentation/admin-guide/rtc.rst
13666 F:      drivers/rtc/
13667 F:      include/linux/rtc.h
13668 F:      include/uapi/linux/rtc.h
13669 F:      include/linux/rtc/
13670 F:      include/linux/platform_data/rtc-*
13671 F:      tools/testing/selftests/rtc/
13672
13673 REALTEK AUDIO CODECS
13674 M:      Bard Liao <bardliao@realtek.com>
13675 M:      Oder Chiou <oder_chiou@realtek.com>
13676 S:      Maintained
13677 F:      sound/soc/codecs/rt*
13678 F:      include/sound/rt*.h
13679
13680 REALTEK RTL83xx SMI DSA ROUTER CHIPS
13681 M:      Linus Walleij <linus.walleij@linaro.org>
13682 S:      Maintained
13683 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
13684 F:      drivers/net/dsa/realtek-smi*
13685 F:      drivers/net/dsa/rtl83*
13686
13687 REDPINE WIRELESS DRIVER
13688 M:      Amitkumar Karwar <amitkarwar@gmail.com>
13689 M:      Siva Rebbagondla <siva8118@gmail.com>
13690 L:      linux-wireless@vger.kernel.org
13691 S:      Maintained
13692 F:      drivers/net/wireless/rsi/
13693
13694 REGISTER MAP ABSTRACTION
13695 M:      Mark Brown <broonie@kernel.org>
13696 L:      linux-kernel@vger.kernel.org
13697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
13698 S:      Supported
13699 F:      Documentation/devicetree/bindings/regmap/
13700 F:      drivers/base/regmap/
13701 F:      include/linux/regmap.h
13702
13703 REISERFS FILE SYSTEM
13704 L:      reiserfs-devel@vger.kernel.org
13705 S:      Supported
13706 F:      fs/reiserfs/
13707
13708 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
13709 M:      Ohad Ben-Cohen <ohad@wizery.com>
13710 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13711 L:      linux-remoteproc@vger.kernel.org
13712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
13713 S:      Maintained
13714 F:      Documentation/devicetree/bindings/remoteproc/
13715 F:      Documentation/ABI/testing/sysfs-class-remoteproc
13716 F:      Documentation/remoteproc.txt
13717 F:      drivers/remoteproc/
13718 F:      include/linux/remoteproc.h
13719 F:      include/linux/remoteproc/
13720
13721 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
13722 M:      Ohad Ben-Cohen <ohad@wizery.com>
13723 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13724 L:      linux-remoteproc@vger.kernel.org
13725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
13726 S:      Maintained
13727 F:      drivers/rpmsg/
13728 F:      Documentation/rpmsg.txt
13729 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
13730 F:      include/linux/rpmsg.h
13731 F:      include/linux/rpmsg/
13732 F:      include/uapi/linux/rpmsg.h
13733 F:      samples/rpmsg/
13734
13735 RENESAS CLOCK DRIVERS
13736 M:      Geert Uytterhoeven <geert+renesas@glider.be>
13737 L:      linux-renesas-soc@vger.kernel.org
13738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
13739 S:      Supported
13740 F:      drivers/clk/renesas/
13741
13742 RENESAS EMEV2 I2C DRIVER
13743 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
13744 S:      Supported
13745 F:      Documentation/devicetree/bindings/i2c/i2c-emev2.txt
13746 F:      drivers/i2c/busses/i2c-emev2.c
13747
13748 RENESAS ETHERNET DRIVERS
13749 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
13750 L:      netdev@vger.kernel.org
13751 L:      linux-renesas-soc@vger.kernel.org
13752 F:      Documentation/devicetree/bindings/net/renesas,*.txt
13753 F:      Documentation/devicetree/bindings/net/sh_eth.txt
13754 F:      drivers/net/ethernet/renesas/
13755 F:      include/linux/sh_eth.h
13756
13757 RENESAS R-CAR GYROADC DRIVER
13758 M:      Marek Vasut <marek.vasut@gmail.com>
13759 L:      linux-iio@vger.kernel.org
13760 S:      Supported
13761 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
13762 F:      drivers/iio/adc/rcar-gyroadc.c
13763
13764 RENESAS R-CAR I2C DRIVERS
13765 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
13766 S:      Supported
13767 F:      Documentation/devicetree/bindings/i2c/i2c-rcar.txt
13768 F:      Documentation/devicetree/bindings/i2c/i2c-sh_mobile.txt
13769 F:      drivers/i2c/busses/i2c-rcar.c
13770 F:      drivers/i2c/busses/i2c-sh_mobile.c
13771
13772 RENESAS RIIC DRIVER
13773 M:      Chris Brandt <chris.brandt@renesas.com>
13774 S:      Supported
13775 F:      Documentation/devicetree/bindings/i2c/i2c-riic.txt
13776 F:      drivers/i2c/busses/i2c-riic.c
13777
13778 RENESAS USB PHY DRIVER
13779 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
13780 L:      linux-renesas-soc@vger.kernel.org
13781 S:      Maintained
13782 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
13783
13784 RESET CONTROLLER FRAMEWORK
13785 M:      Philipp Zabel <p.zabel@pengutronix.de>
13786 T:      git git://git.pengutronix.de/git/pza/linux
13787 S:      Maintained
13788 F:      drivers/reset/
13789 F:      Documentation/devicetree/bindings/reset/
13790 F:      include/dt-bindings/reset/
13791 F:      include/linux/reset.h
13792 F:      include/linux/reset/
13793 F:      include/linux/reset-controller.h
13794
13795 RESTARTABLE SEQUENCES SUPPORT
13796 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13797 M:      Peter Zijlstra <peterz@infradead.org>
13798 M:      "Paul E. McKenney" <paulmck@kernel.org>
13799 M:      Boqun Feng <boqun.feng@gmail.com>
13800 L:      linux-kernel@vger.kernel.org
13801 S:      Supported
13802 F:      kernel/rseq.c
13803 F:      include/uapi/linux/rseq.h
13804 F:      include/trace/events/rseq.h
13805 F:      tools/testing/selftests/rseq/
13806
13807 RFKILL
13808 M:      Johannes Berg <johannes@sipsolutions.net>
13809 L:      linux-wireless@vger.kernel.org
13810 W:      http://wireless.kernel.org/
13811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
13812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
13813 S:      Maintained
13814 F:      Documentation/driver-api/rfkill.rst
13815 F:      Documentation/ABI/stable/sysfs-class-rfkill
13816 F:      net/rfkill/
13817 F:      include/linux/rfkill.h
13818 F:      include/uapi/linux/rfkill.h
13819
13820 RHASHTABLE
13821 M:      Thomas Graf <tgraf@suug.ch>
13822 M:      Herbert Xu <herbert@gondor.apana.org.au>
13823 L:      netdev@vger.kernel.org
13824 S:      Maintained
13825 F:      lib/rhashtable.c
13826 F:      lib/test_rhashtable.c
13827 F:      include/linux/rhashtable.h
13828 F:      include/linux/rhashtable-types.h
13829
13830 RICOH R5C592 MEMORYSTICK DRIVER
13831 M:      Maxim Levitsky <maximlevitsky@gmail.com>
13832 S:      Maintained
13833 F:      drivers/memstick/host/r592.*
13834
13835 RICOH SMARTMEDIA/XD DRIVER
13836 M:      Maxim Levitsky <maximlevitsky@gmail.com>
13837 S:      Maintained
13838 F:      drivers/mtd/nand/raw/r852.c
13839 F:      drivers/mtd/nand/raw/r852.h
13840
13841 RISC-V ARCHITECTURE
13842 M:      Paul Walmsley <paul.walmsley@sifive.com>
13843 M:      Palmer Dabbelt <palmer@sifive.com>
13844 M:      Albert Ou <aou@eecs.berkeley.edu>
13845 L:      linux-riscv@lists.infradead.org
13846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
13847 S:      Supported
13848 F:      arch/riscv/
13849 K:      riscv
13850 N:      riscv
13851
13852 ROCCAT DRIVERS
13853 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
13854 W:      http://sourceforge.net/projects/roccat/
13855 S:      Maintained
13856 F:      drivers/hid/hid-roccat*
13857 F:      include/linux/hid-roccat*
13858 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
13859
13860 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
13861 M:      Jacob Chen <jacob-chen@iotwrt.com>
13862 M:      Ezequiel Garcia <ezequiel@collabora.com>
13863 L:      linux-media@vger.kernel.org
13864 S:      Maintained
13865 F:      drivers/media/platform/rockchip/rga/
13866 F:      Documentation/devicetree/bindings/media/rockchip-rga.txt
13867
13868 HANTRO VPU CODEC DRIVER
13869 M:      Ezequiel Garcia <ezequiel@collabora.com>
13870 L:      linux-media@vger.kernel.org
13871 S:      Maintained
13872 F:      drivers/staging/media/hantro/
13873 F:      Documentation/devicetree/bindings/media/rockchip-vpu.txt
13874
13875 ROCKER DRIVER
13876 M:      Jiri Pirko <jiri@resnulli.us>
13877 L:      netdev@vger.kernel.org
13878 S:      Supported
13879 F:      drivers/net/ethernet/rocker/
13880
13881 ROCKETPORT DRIVER
13882 P:      Comtrol Corp.
13883 W:      http://www.comtrol.com
13884 S:      Maintained
13885 F:      Documentation/driver-api/serial/rocket.rst
13886 F:      drivers/tty/rocket*
13887
13888 ROCKETPORT EXPRESS/INFINITY DRIVER
13889 M:      Kevin Cernekee <cernekee@gmail.com>
13890 L:      linux-serial@vger.kernel.org
13891 S:      Odd Fixes
13892 F:      drivers/tty/serial/rp2.*
13893
13894 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
13895 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
13896 L:      linux-kernel@vger.kernel.org
13897 L:      linux-renesas-soc@vger.kernel.org
13898 S:      Supported
13899 F:      drivers/mfd/bd9571mwv.c
13900 F:      drivers/regulator/bd9571mwv-regulator.c
13901 F:      drivers/gpio/gpio-bd9571mwv.c
13902 F:      include/linux/mfd/bd9571mwv.h
13903 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
13904
13905 ROSE NETWORK LAYER
13906 M:      Ralf Baechle <ralf@linux-mips.org>
13907 L:      linux-hams@vger.kernel.org
13908 W:      http://www.linux-ax25.org/
13909 S:      Maintained
13910 F:      include/net/rose.h
13911 F:      include/uapi/linux/rose.h
13912 F:      net/rose/
13913
13914 RTL2830 MEDIA DRIVER
13915 M:      Antti Palosaari <crope@iki.fi>
13916 L:      linux-media@vger.kernel.org
13917 W:      https://linuxtv.org
13918 W:      http://palosaari.fi/linux/
13919 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13920 T:      git git://linuxtv.org/anttip/media_tree.git
13921 S:      Maintained
13922 F:      drivers/media/dvb-frontends/rtl2830*
13923
13924 RTL2832 MEDIA DRIVER
13925 M:      Antti Palosaari <crope@iki.fi>
13926 L:      linux-media@vger.kernel.org
13927 W:      https://linuxtv.org
13928 W:      http://palosaari.fi/linux/
13929 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13930 T:      git git://linuxtv.org/anttip/media_tree.git
13931 S:      Maintained
13932 F:      drivers/media/dvb-frontends/rtl2832*
13933
13934 RTL2832_SDR MEDIA DRIVER
13935 M:      Antti Palosaari <crope@iki.fi>
13936 L:      linux-media@vger.kernel.org
13937 W:      https://linuxtv.org
13938 W:      http://palosaari.fi/linux/
13939 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13940 T:      git git://linuxtv.org/anttip/media_tree.git
13941 S:      Maintained
13942 F:      drivers/media/dvb-frontends/rtl2832_sdr*
13943
13944 RTL8180 WIRELESS DRIVER
13945 L:      linux-wireless@vger.kernel.org
13946 W:      http://wireless.kernel.org/
13947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
13948 S:      Orphan
13949 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
13950
13951 RTL8187 WIRELESS DRIVER
13952 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
13953 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
13954 M:      Larry Finger <Larry.Finger@lwfinger.net>
13955 L:      linux-wireless@vger.kernel.org
13956 W:      http://wireless.kernel.org/
13957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
13958 S:      Maintained
13959 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
13960
13961 REALTEK WIRELESS DRIVER (rtlwifi family)
13962 M:      Ping-Ke Shih <pkshih@realtek.com>
13963 L:      linux-wireless@vger.kernel.org
13964 W:      http://wireless.kernel.org/
13965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
13966 S:      Maintained
13967 F:      drivers/net/wireless/realtek/rtlwifi/
13968
13969 REALTEK WIRELESS DRIVER (rtw88)
13970 M:      Yan-Hsuan Chuang <yhchuang@realtek.com>
13971 L:      linux-wireless@vger.kernel.org
13972 S:      Maintained
13973 F:      drivers/net/wireless/realtek/rtw88/
13974
13975 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
13976 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
13977 L:      linux-wireless@vger.kernel.org
13978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
13979 S:      Maintained
13980 F:      drivers/net/wireless/realtek/rtl8xxxu/
13981
13982 RXRPC SOCKETS (AF_RXRPC)
13983 M:      David Howells <dhowells@redhat.com>
13984 L:      linux-afs@lists.infradead.org
13985 S:      Supported
13986 F:      net/rxrpc/
13987 F:      include/keys/rxrpc-type.h
13988 F:      include/net/af_rxrpc.h
13989 F:      include/trace/events/rxrpc.h
13990 F:      include/uapi/linux/rxrpc.h
13991 F:      Documentation/networking/rxrpc.txt
13992 W:      https://www.infradead.org/~dhowells/kafs/
13993
13994 S3 SAVAGE FRAMEBUFFER DRIVER
13995 M:      Antonino Daplas <adaplas@gmail.com>
13996 L:      linux-fbdev@vger.kernel.org
13997 S:      Maintained
13998 F:      drivers/video/fbdev/savage/
13999
14000 S390
14001 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
14002 M:      Vasily Gorbik <gor@linux.ibm.com>
14003 M:      Christian Borntraeger <borntraeger@de.ibm.com>
14004 L:      linux-s390@vger.kernel.org
14005 W:      http://www.ibm.com/developerworks/linux/linux390/
14006 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
14007 S:      Supported
14008 F:      arch/s390/
14009 F:      drivers/s390/
14010 F:      Documentation/s390/
14011 F:      Documentation/driver-api/s390-drivers.rst
14012
14013 S390 COMMON I/O LAYER
14014 M:      Sebastian Ott <sebott@linux.ibm.com>
14015 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
14016 L:      linux-s390@vger.kernel.org
14017 W:      http://www.ibm.com/developerworks/linux/linux390/
14018 S:      Supported
14019 F:      drivers/s390/cio/
14020
14021 S390 DASD DRIVER
14022 M:      Stefan Haberland <sth@linux.ibm.com>
14023 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
14024 L:      linux-s390@vger.kernel.org
14025 W:      http://www.ibm.com/developerworks/linux/linux390/
14026 S:      Supported
14027 F:      drivers/s390/block/dasd*
14028 F:      block/partitions/ibm.c
14029
14030 S390 IOMMU (PCI)
14031 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
14032 L:      linux-s390@vger.kernel.org
14033 W:      http://www.ibm.com/developerworks/linux/linux390/
14034 S:      Supported
14035 F:      drivers/iommu/s390-iommu.c
14036
14037 S390 IUCV NETWORK LAYER
14038 M:      Julian Wiedmann <jwi@linux.ibm.com>
14039 M:      Ursula Braun <ubraun@linux.ibm.com>
14040 L:      linux-s390@vger.kernel.org
14041 W:      http://www.ibm.com/developerworks/linux/linux390/
14042 S:      Supported
14043 F:      drivers/s390/net/*iucv*
14044 F:      include/net/iucv/
14045 F:      net/iucv/
14046
14047 S390 NETWORK DRIVERS
14048 M:      Julian Wiedmann <jwi@linux.ibm.com>
14049 M:      Ursula Braun <ubraun@linux.ibm.com>
14050 L:      linux-s390@vger.kernel.org
14051 W:      http://www.ibm.com/developerworks/linux/linux390/
14052 S:      Supported
14053 F:      drivers/s390/net/
14054
14055 S390 PCI SUBSYSTEM
14056 M:      Sebastian Ott <sebott@linux.ibm.com>
14057 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
14058 L:      linux-s390@vger.kernel.org
14059 W:      http://www.ibm.com/developerworks/linux/linux390/
14060 S:      Supported
14061 F:      arch/s390/pci/
14062 F:      drivers/pci/hotplug/s390_pci_hpc.c
14063
14064 S390 VFIO-CCW DRIVER
14065 M:      Cornelia Huck <cohuck@redhat.com>
14066 M:      Eric Farman <farman@linux.ibm.com>
14067 R:      Halil Pasic <pasic@linux.ibm.com>
14068 L:      linux-s390@vger.kernel.org
14069 L:      kvm@vger.kernel.org
14070 S:      Supported
14071 F:      drivers/s390/cio/vfio_ccw*
14072 F:      Documentation/s390/vfio-ccw.rst
14073 F:      include/uapi/linux/vfio_ccw.h
14074
14075 S390 ZCRYPT DRIVER
14076 M:      Harald Freudenberger <freude@linux.ibm.com>
14077 L:      linux-s390@vger.kernel.org
14078 W:      http://www.ibm.com/developerworks/linux/linux390/
14079 S:      Supported
14080 F:      drivers/s390/crypto/
14081
14082 S390 VFIO AP DRIVER
14083 M:      Tony Krowiak <akrowiak@linux.ibm.com>
14084 M:      Pierre Morel <pmorel@linux.ibm.com>
14085 M:      Halil Pasic <pasic@linux.ibm.com>
14086 L:      linux-s390@vger.kernel.org
14087 W:      http://www.ibm.com/developerworks/linux/linux390/
14088 S:      Supported
14089 F:      drivers/s390/crypto/vfio_ap_drv.c
14090 F:      drivers/s390/crypto/vfio_ap_private.h
14091 F:      drivers/s390/crypto/vfio_ap_ops.c
14092 F:      Documentation/s390/vfio-ap.rst
14093
14094 S390 ZFCP DRIVER
14095 M:      Steffen Maier <maier@linux.ibm.com>
14096 M:      Benjamin Block <bblock@linux.ibm.com>
14097 L:      linux-s390@vger.kernel.org
14098 W:      http://www.ibm.com/developerworks/linux/linux390/
14099 S:      Supported
14100 F:      drivers/s390/scsi/zfcp_*
14101
14102 S3C24XX SD/MMC Driver
14103 M:      Ben Dooks <ben-linux@fluff.org>
14104 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14105 S:      Supported
14106 F:      drivers/mmc/host/s3cmci.*
14107
14108 SAA6588 RDS RECEIVER DRIVER
14109 M:      Hans Verkuil <hverkuil@xs4all.nl>
14110 L:      linux-media@vger.kernel.org
14111 T:      git git://linuxtv.org/media_tree.git
14112 W:      https://linuxtv.org
14113 S:      Odd Fixes
14114 F:      drivers/media/i2c/saa6588*
14115
14116 SAA7134 VIDEO4LINUX DRIVER
14117 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
14118 L:      linux-media@vger.kernel.org
14119 W:      https://linuxtv.org
14120 T:      git git://linuxtv.org/media_tree.git
14121 S:      Odd fixes
14122 F:      Documentation/media/v4l-drivers/saa7134*
14123 F:      drivers/media/pci/saa7134/
14124
14125 SAA7146 VIDEO4LINUX-2 DRIVER
14126 M:      Hans Verkuil <hverkuil@xs4all.nl>
14127 L:      linux-media@vger.kernel.org
14128 T:      git git://linuxtv.org/media_tree.git
14129 S:      Maintained
14130 F:      drivers/media/common/saa7146/
14131 F:      drivers/media/pci/saa7146/
14132 F:      include/media/drv-intf/saa7146*
14133
14134 SAFESETID SECURITY MODULE
14135 M:     Micah Morton <mortonm@chromium.org>
14136 S:     Supported
14137 F:     security/safesetid/
14138 F:     Documentation/admin-guide/LSM/SafeSetID.rst
14139
14140 SAMSUNG AUDIO (ASoC) DRIVERS
14141 M:      Krzysztof Kozlowski <krzk@kernel.org>
14142 M:      Sangbeom Kim <sbkim73@samsung.com>
14143 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14144 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14145 S:      Supported
14146 F:      sound/soc/samsung/
14147 F:      Documentation/devicetree/bindings/sound/samsung*
14148
14149 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
14150 M:      Krzysztof Kozlowski <krzk@kernel.org>
14151 L:      linux-crypto@vger.kernel.org
14152 L:      linux-samsung-soc@vger.kernel.org
14153 S:      Maintained
14154 F:      drivers/crypto/exynos-rng.c
14155 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.txt
14156
14157 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
14158 M:      Łukasz Stelmach <l.stelmach@samsung.com>
14159 L:      linux-samsung-soc@vger.kernel.org
14160 S:      Maintained
14161 F:      drivers/char/hw_random/exynos-trng.c
14162 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
14163
14164 SAMSUNG FRAMEBUFFER DRIVER
14165 M:      Jingoo Han <jingoohan1@gmail.com>
14166 L:      linux-fbdev@vger.kernel.org
14167 S:      Maintained
14168 F:      drivers/video/fbdev/s3c-fb.c
14169
14170 SAMSUNG LAPTOP DRIVER
14171 M:      Corentin Chary <corentin.chary@gmail.com>
14172 L:      platform-driver-x86@vger.kernel.org
14173 S:      Maintained
14174 F:      drivers/platform/x86/samsung-laptop.c
14175
14176 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
14177 M:      Sangbeom Kim <sbkim73@samsung.com>
14178 M:      Krzysztof Kozlowski <krzk@kernel.org>
14179 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14180 L:      linux-kernel@vger.kernel.org
14181 L:      linux-samsung-soc@vger.kernel.org
14182 S:      Supported
14183 F:      drivers/mfd/sec*.c
14184 F:      drivers/regulator/s2m*.c
14185 F:      drivers/regulator/s5m*.c
14186 F:      drivers/clk/clk-s2mps11.c
14187 F:      drivers/rtc/rtc-s5m.c
14188 F:      include/linux/mfd/samsung/
14189 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
14190 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
14191 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
14192 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
14193
14194 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
14195 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
14196 L:      linux-media@vger.kernel.org
14197 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14198 S:      Maintained
14199 F:      drivers/media/platform/s3c-camif/
14200 F:      include/media/drv-intf/s3c_camif.h
14201
14202 SAMSUNG S3FWRN5 NFC DRIVER
14203 M:      Robert Baldyga <r.baldyga@samsung.com>
14204 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
14205 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
14206 S:      Supported
14207 F:      drivers/nfc/s3fwrn5
14208
14209 SAMSUNG S5C73M3 CAMERA DRIVER
14210 M:      Kyungmin Park <kyungmin.park@samsung.com>
14211 M:      Andrzej Hajda <a.hajda@samsung.com>
14212 L:      linux-media@vger.kernel.org
14213 S:      Supported
14214 F:      drivers/media/i2c/s5c73m3/*
14215
14216 SAMSUNG S5K5BAF CAMERA DRIVER
14217 M:      Kyungmin Park <kyungmin.park@samsung.com>
14218 M:      Andrzej Hajda <a.hajda@samsung.com>
14219 L:      linux-media@vger.kernel.org
14220 S:      Supported
14221 F:      drivers/media/i2c/s5k5baf.c
14222
14223 SAMSUNG S5P Security SubSystem (SSS) DRIVER
14224 M:      Krzysztof Kozlowski <krzk@kernel.org>
14225 M:      Vladimir Zapolskiy <vz@mleia.com>
14226 M:      Kamil Konieczny <k.konieczny@partner.samsung.com>
14227 L:      linux-crypto@vger.kernel.org
14228 L:      linux-samsung-soc@vger.kernel.org
14229 S:      Maintained
14230 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.txt
14231 F:      Documentation/devicetree/bindings/crypto/samsung-sss.txt
14232 F:      drivers/crypto/s5p-sss.c
14233
14234 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
14235 M:      Kyungmin Park <kyungmin.park@samsung.com>
14236 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14237 L:      linux-media@vger.kernel.org
14238 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
14239 S:      Supported
14240 F:      drivers/media/platform/exynos4-is/
14241
14242 SAMSUNG SOC CLOCK DRIVERS
14243 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14244 M:      Tomasz Figa <tomasz.figa@gmail.com>
14245 M:      Chanwoo Choi <cw00.choi@samsung.com>
14246 S:      Supported
14247 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
14249 F:      drivers/clk/samsung/
14250 F:      include/dt-bindings/clock/exynos*.h
14251 F:      Documentation/devicetree/bindings/clock/exynos*.txt
14252 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
14253 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
14254
14255 SAMSUNG SPI DRIVERS
14256 M:      Kukjin Kim <kgene@kernel.org>
14257 M:      Krzysztof Kozlowski <krzk@kernel.org>
14258 M:      Andi Shyti <andi@etezian.org>
14259 L:      linux-spi@vger.kernel.org
14260 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14261 S:      Maintained
14262 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
14263 F:      drivers/spi/spi-s3c*
14264 F:      include/linux/platform_data/spi-s3c64xx.h
14265
14266 SAMSUNG SXGBE DRIVERS
14267 M:      Byungho An <bh74.an@samsung.com>
14268 M:      Girish K S <ks.giri@samsung.com>
14269 M:      Vipul Pandya <vipul.pandya@samsung.com>
14270 S:      Supported
14271 L:      netdev@vger.kernel.org
14272 F:      drivers/net/ethernet/samsung/sxgbe/
14273
14274 SAMSUNG THERMAL DRIVER
14275 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14276 L:      linux-pm@vger.kernel.org
14277 L:      linux-samsung-soc@vger.kernel.org
14278 S:      Supported
14279 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
14280 F:      drivers/thermal/samsung/
14281
14282 SAMSUNG USB2 PHY DRIVER
14283 M:      Kamil Debski <kamil@wypas.org>
14284 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14285 L:      linux-kernel@vger.kernel.org
14286 S:      Supported
14287 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
14288 F:      Documentation/driver-api/phy/samsung-usb2.rst
14289 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
14290 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
14291 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
14292 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
14293 F:      drivers/phy/samsung/phy-samsung-usb2.c
14294 F:      drivers/phy/samsung/phy-samsung-usb2.h
14295
14296 SC1200 WDT DRIVER
14297 M:      Zwane Mwaikambo <zwanem@gmail.com>
14298 S:      Maintained
14299 F:      drivers/watchdog/sc1200wdt.c
14300
14301 SCHEDULER
14302 M:      Ingo Molnar <mingo@redhat.com>
14303 M:      Peter Zijlstra <peterz@infradead.org>
14304 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
14305 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
14306 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
14307 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
14308 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
14309 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
14310 L:      linux-kernel@vger.kernel.org
14311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
14312 S:      Maintained
14313 F:      kernel/sched/
14314 F:      include/linux/sched.h
14315 F:      include/uapi/linux/sched.h
14316 F:      include/linux/wait.h
14317 F:      include/linux/preempt.h
14318
14319 SCR24X CHIP CARD INTERFACE DRIVER
14320 M:      Lubomir Rintel <lkundrak@v3.sk>
14321 S:      Supported
14322 F:      drivers/char/pcmcia/scr24x_cs.c
14323
14324 SCSI CDROM DRIVER
14325 M:      Jens Axboe <axboe@kernel.dk>
14326 L:      linux-scsi@vger.kernel.org
14327 W:      http://www.kernel.dk
14328 S:      Maintained
14329 F:      drivers/scsi/sr*
14330
14331 SCSI RDMA PROTOCOL (SRP) INITIATOR
14332 M:      Bart Van Assche <bvanassche@acm.org>
14333 L:      linux-rdma@vger.kernel.org
14334 S:      Supported
14335 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14336 F:      drivers/infiniband/ulp/srp/
14337 F:      include/scsi/srp.h
14338
14339 SCSI RDMA PROTOCOL (SRP) TARGET
14340 M:      Bart Van Assche <bvanassche@acm.org>
14341 L:      linux-rdma@vger.kernel.org
14342 L:      target-devel@vger.kernel.org
14343 S:      Supported
14344 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14345 F:      drivers/infiniband/ulp/srpt/
14346
14347 SCSI SG DRIVER
14348 M:      Doug Gilbert <dgilbert@interlog.com>
14349 L:      linux-scsi@vger.kernel.org
14350 W:      http://sg.danny.cz/sg
14351 S:      Maintained
14352 F:      Documentation/scsi/scsi-generic.txt
14353 F:      drivers/scsi/sg.c
14354 F:      include/scsi/sg.h
14355
14356 SCSI SUBSYSTEM
14357 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
14358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
14359 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
14360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
14361 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
14362 L:      linux-scsi@vger.kernel.org
14363 S:      Maintained
14364 F:      Documentation/devicetree/bindings/scsi/
14365 F:      drivers/scsi/
14366 F:      include/scsi/
14367
14368 SCSI TAPE DRIVER
14369 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
14370 L:      linux-scsi@vger.kernel.org
14371 S:      Maintained
14372 F:      Documentation/scsi/st.txt
14373 F:      drivers/scsi/st.*
14374 F:      drivers/scsi/st_*.h
14375
14376 SCSI TARGET SUBSYSTEM
14377 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
14378 L:      linux-scsi@vger.kernel.org
14379 L:      target-devel@vger.kernel.org
14380 W:      http://www.linux-iscsi.org
14381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
14382 Q:      https://patchwork.kernel.org/project/target-devel/list/
14383 S:      Supported
14384 F:      drivers/target/
14385 F:      include/target/
14386 F:      Documentation/target/
14387
14388 SCTP PROTOCOL
14389 M:      Vlad Yasevich <vyasevich@gmail.com>
14390 M:      Neil Horman <nhorman@tuxdriver.com>
14391 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
14392 L:      linux-sctp@vger.kernel.org
14393 W:      http://lksctp.sourceforge.net
14394 S:      Maintained
14395 F:      Documentation/networking/sctp.txt
14396 F:      include/linux/sctp.h
14397 F:      include/uapi/linux/sctp.h
14398 F:      include/net/sctp/
14399 F:      net/sctp/
14400
14401 SCx200 CPU SUPPORT
14402 M:      Jim Cromie <jim.cromie@gmail.com>
14403 S:      Odd Fixes
14404 F:      Documentation/i2c/busses/scx200_acb.rst
14405 F:      arch/x86/platform/scx200/
14406 F:      drivers/watchdog/scx200_wdt.c
14407 F:      drivers/i2c/busses/scx200*
14408 F:      drivers/mtd/maps/scx200_docflash.c
14409 F:      include/linux/scx200.h
14410
14411 SCx200 GPIO DRIVER
14412 M:      Jim Cromie <jim.cromie@gmail.com>
14413 S:      Maintained
14414 F:      drivers/char/scx200_gpio.c
14415 F:      include/linux/scx200_gpio.h
14416
14417 SCx200 HRT CLOCKSOURCE DRIVER
14418 M:      Jim Cromie <jim.cromie@gmail.com>
14419 S:      Maintained
14420 F:      drivers/clocksource/scx200_hrt.c
14421
14422 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
14423 M:      Sascha Sommer <saschasommer@freenet.de>
14424 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
14425 S:      Maintained
14426 F:      drivers/mmc/host/sdricoh_cs.c
14427
14428 SECO BOARDS CEC DRIVER
14429 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
14430 S:      Maintained
14431 F:      drivers/media/platform/seco-cec/seco-cec.c
14432 F:      drivers/media/platform/seco-cec/seco-cec.h
14433
14434 SECURE COMPUTING
14435 M:      Kees Cook <keescook@chromium.org>
14436 R:      Andy Lutomirski <luto@amacapital.net>
14437 R:      Will Drewry <wad@chromium.org>
14438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
14439 S:      Supported
14440 F:      kernel/seccomp.c
14441 F:      include/uapi/linux/seccomp.h
14442 F:      include/linux/seccomp.h
14443 F:      tools/testing/selftests/seccomp/*
14444 F:      tools/testing/selftests/kselftest_harness.h
14445 F:      Documentation/userspace-api/seccomp_filter.rst
14446 K:      \bsecure_computing
14447 K:      \bTIF_SECCOMP\b
14448
14449 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
14450 M:      Al Cooper <alcooperx@gmail.com>
14451 L:      linux-mmc@vger.kernel.org
14452 L:      bcm-kernel-feedback-list@broadcom.com
14453 S:      Maintained
14454 F:      drivers/mmc/host/sdhci-brcmstb*
14455
14456 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
14457 M:      Adrian Hunter <adrian.hunter@intel.com>
14458 L:      linux-mmc@vger.kernel.org
14459 S:      Maintained
14460 F:      drivers/mmc/host/sdhci*
14461 F:      include/linux/mmc/sdhci*
14462
14463 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
14464 M:      Adrian Hunter <adrian.hunter@intel.com>
14465 M:      Ritesh Harjani <riteshh@codeaurora.org>
14466 M:      Asutosh Das <asutoshd@codeaurora.org>
14467 L:      linux-mmc@vger.kernel.org
14468 S:      Maintained
14469 F:      drivers/mmc/host/cqhci*
14470
14471 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
14472 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
14473 M:      Manjunath M B <manjumb@synopsys.com>
14474 L:      linux-mmc@vger.kernel.org
14475 S:      Maintained
14476 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
14477
14478 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
14479 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
14480 L:      linux-mmc@vger.kernel.org
14481 S:      Supported
14482 F:      drivers/mmc/host/sdhci-of-at91.c
14483
14484 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
14485 M:      Ben Dooks <ben-linux@fluff.org>
14486 M:      Jaehoon Chung <jh80.chung@samsung.com>
14487 L:      linux-mmc@vger.kernel.org
14488 S:      Maintained
14489 F:      drivers/mmc/host/sdhci-s3c*
14490
14491 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
14492 M:      Viresh Kumar <vireshk@kernel.org>
14493 L:      linux-mmc@vger.kernel.org
14494 S:      Maintained
14495 F:      drivers/mmc/host/sdhci-spear.c
14496
14497 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
14498 M:      Kishon Vijay Abraham I <kishon@ti.com>
14499 L:      linux-mmc@vger.kernel.org
14500 S:      Maintained
14501 F:      drivers/mmc/host/sdhci-omap.c
14502
14503 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
14504 M:      Scott Bauer <scott.bauer@intel.com>
14505 M:      Jonathan Derrick <jonathan.derrick@intel.com>
14506 L:      linux-block@vger.kernel.org
14507 S:      Supported
14508 F:      block/sed*
14509 F:      block/opal_proto.h
14510 F:      include/linux/sed*
14511 F:      include/uapi/linux/sed*
14512
14513 SECURITY CONTACT
14514 M:      Security Officers <security@kernel.org>
14515 S:      Supported
14516
14517 SECURITY SUBSYSTEM
14518 M:      James Morris <jmorris@namei.org>
14519 M:      "Serge E. Hallyn" <serge@hallyn.com>
14520 L:      linux-security-module@vger.kernel.org (suggested Cc:)
14521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
14522 W:      http://kernsec.org/
14523 S:      Supported
14524 F:      security/
14525 X:      security/selinux/
14526
14527 SELINUX SECURITY MODULE
14528 M:      Paul Moore <paul@paul-moore.com>
14529 M:      Stephen Smalley <sds@tycho.nsa.gov>
14530 M:      Eric Paris <eparis@parisplace.org>
14531 L:      selinux@vger.kernel.org
14532 W:      https://selinuxproject.org
14533 W:      https://github.com/SELinuxProject
14534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
14535 S:      Supported
14536 F:      include/uapi/linux/selinux_netlink.h
14537 F:      security/selinux/
14538 F:      scripts/selinux/
14539 F:      Documentation/admin-guide/LSM/SELinux.rst
14540
14541 SENSABLE PHANTOM
14542 M:      Jiri Slaby <jirislaby@gmail.com>
14543 S:      Maintained
14544 F:      drivers/misc/phantom.c
14545 F:      include/uapi/linux/phantom.h
14546
14547 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
14548 M:      Tomasz Duszynski <tduszyns@gmail.com>
14549 S:      Maintained
14550 F:      drivers/iio/chemical/sps30.c
14551 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
14552
14553 SERIAL DEVICE BUS
14554 M:      Rob Herring <robh@kernel.org>
14555 L:      linux-serial@vger.kernel.org
14556 S:      Maintained
14557 F:      Documentation/devicetree/bindings/serial/slave-device.txt
14558 F:      drivers/tty/serdev/
14559 F:      include/linux/serdev.h
14560
14561 SERIAL DRIVERS
14562 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14563 L:      linux-serial@vger.kernel.org
14564 S:      Maintained
14565 F:      Documentation/devicetree/bindings/serial/
14566 F:      drivers/tty/serial/
14567
14568 SERIAL IR RECEIVER
14569 M:      Sean Young <sean@mess.org>
14570 L:      linux-media@vger.kernel.org
14571 S:      Maintained
14572 F:      drivers/media/rc/serial_ir.c
14573
14574 SFC NETWORK DRIVER
14575 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
14576 M:      Edward Cree <ecree@solarflare.com>
14577 M:      Martin Habets <mhabets@solarflare.com>
14578 L:      netdev@vger.kernel.org
14579 S:      Supported
14580 F:      drivers/net/ethernet/sfc/
14581
14582 SFF/SFP/SFP+ MODULE SUPPORT
14583 M:      Russell King <linux@armlinux.org.uk>
14584 L:      netdev@vger.kernel.org
14585 S:      Maintained
14586 F:      drivers/net/phy/phylink.c
14587 F:      drivers/net/phy/sfp*
14588 F:      include/linux/phylink.h
14589 F:      include/linux/sfp.h
14590 K:      phylink
14591
14592 SGI GRU DRIVER
14593 M:      Dimitri Sivanich <sivanich@sgi.com>
14594 S:      Maintained
14595 F:      drivers/misc/sgi-gru/
14596
14597 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
14598 M:      Pat Gefre <pfg@sgi.com>
14599 L:      linux-ia64@vger.kernel.org
14600 S:      Supported
14601 F:      Documentation/ia64/serial.rst
14602 F:      drivers/tty/serial/ioc?_serial.c
14603 F:      include/linux/ioc?.h
14604
14605 SGI XP/XPC/XPNET DRIVER
14606 M:      Cliff Whickman <cpw@sgi.com>
14607 M:      Robin Holt <robinmholt@gmail.com>
14608 S:      Maintained
14609 F:      drivers/misc/sgi-xp/
14610
14611 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
14612 M:      Ursula Braun <ubraun@linux.ibm.com>
14613 M:      Karsten Graul <kgraul@linux.ibm.com>
14614 L:      linux-s390@vger.kernel.org
14615 W:      http://www.ibm.com/developerworks/linux/linux390/
14616 S:      Supported
14617 F:      net/smc/
14618
14619 SHARP RJ54N1CB0C SENSOR DRIVER
14620 M:      Jacopo Mondi <jacopo@jmondi.org>
14621 L:      linux-media@vger.kernel.org
14622 T:      git git://linuxtv.org/media_tree.git
14623 S:      Odd fixes
14624 F:      drivers/media/i2c/rj54n1cb0c.c
14625 F:      include/media/i2c/rj54n1cb0c.h
14626
14627 SH_VEU V4L2 MEM2MEM DRIVER
14628 L:      linux-media@vger.kernel.org
14629 S:      Orphan
14630 F:      drivers/media/platform/sh_veu.c
14631
14632 SH_VOU V4L2 OUTPUT DRIVER
14633 L:      linux-media@vger.kernel.org
14634 S:      Orphan
14635 F:      drivers/media/platform/sh_vou.c
14636 F:      include/media/drv-intf/sh_vou.h
14637
14638 SI2157 MEDIA DRIVER
14639 M:      Antti Palosaari <crope@iki.fi>
14640 L:      linux-media@vger.kernel.org
14641 W:      https://linuxtv.org
14642 W:      http://palosaari.fi/linux/
14643 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14644 T:      git git://linuxtv.org/anttip/media_tree.git
14645 S:      Maintained
14646 F:      drivers/media/tuners/si2157*
14647
14648 SI2165 MEDIA DRIVER
14649 M:      Matthias Schwarzott <zzam@gentoo.org>
14650 L:      linux-media@vger.kernel.org
14651 W:      https://linuxtv.org
14652 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14653 S:      Maintained
14654 F:      drivers/media/dvb-frontends/si2165*
14655
14656 SI2168 MEDIA DRIVER
14657 M:      Antti Palosaari <crope@iki.fi>
14658 L:      linux-media@vger.kernel.org
14659 W:      https://linuxtv.org
14660 W:      http://palosaari.fi/linux/
14661 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14662 T:      git git://linuxtv.org/anttip/media_tree.git
14663 S:      Maintained
14664 F:      drivers/media/dvb-frontends/si2168*
14665
14666 SI470X FM RADIO RECEIVER I2C DRIVER
14667 M:      Hans Verkuil <hverkuil@xs4all.nl>
14668 L:      linux-media@vger.kernel.org
14669 T:      git git://linuxtv.org/media_tree.git
14670 W:      https://linuxtv.org
14671 S:      Odd Fixes
14672 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
14673
14674 SI470X FM RADIO RECEIVER USB DRIVER
14675 M:      Hans Verkuil <hverkuil@xs4all.nl>
14676 L:      linux-media@vger.kernel.org
14677 T:      git git://linuxtv.org/media_tree.git
14678 W:      https://linuxtv.org
14679 S:      Maintained
14680 F:      drivers/media/radio/si470x/radio-si470x-common.c
14681 F:      drivers/media/radio/si470x/radio-si470x.h
14682 F:      drivers/media/radio/si470x/radio-si470x-usb.c
14683
14684 SI4713 FM RADIO TRANSMITTER I2C DRIVER
14685 M:      Eduardo Valentin <edubezval@gmail.com>
14686 L:      linux-media@vger.kernel.org
14687 T:      git git://linuxtv.org/media_tree.git
14688 W:      https://linuxtv.org
14689 S:      Odd Fixes
14690 F:      drivers/media/radio/si4713/si4713.?
14691
14692 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
14693 M:      Eduardo Valentin <edubezval@gmail.com>
14694 L:      linux-media@vger.kernel.org
14695 T:      git git://linuxtv.org/media_tree.git
14696 W:      https://linuxtv.org
14697 S:      Odd Fixes
14698 F:      drivers/media/radio/si4713/radio-platform-si4713.c
14699
14700 SI4713 FM RADIO TRANSMITTER USB DRIVER
14701 M:      Hans Verkuil <hverkuil@xs4all.nl>
14702 L:      linux-media@vger.kernel.org
14703 T:      git git://linuxtv.org/media_tree.git
14704 W:      https://linuxtv.org
14705 S:      Maintained
14706 F:      drivers/media/radio/si4713/radio-usb-si4713.c
14707
14708 SIANO DVB DRIVER
14709 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
14710 L:      linux-media@vger.kernel.org
14711 W:      https://linuxtv.org
14712 T:      git git://linuxtv.org/media_tree.git
14713 S:      Odd fixes
14714 F:      drivers/media/common/siano/
14715 F:      drivers/media/usb/siano/
14716 F:      drivers/media/usb/siano/
14717 F:      drivers/media/mmc/siano/
14718
14719 SIFIVE DRIVERS
14720 M:      Palmer Dabbelt <palmer@sifive.com>
14721 M:      Paul Walmsley <paul.walmsley@sifive.com>
14722 L:      linux-riscv@lists.infradead.org
14723 T:      git git://github.com/sifive/riscv-linux.git
14724 S:      Supported
14725 K:      [^@]sifive
14726 N:      sifive
14727
14728 SIFIVE FU540 SYSTEM-ON-CHIP
14729 M:      Paul Walmsley <paul.walmsley@sifive.com>
14730 M:      Palmer Dabbelt <palmer@sifive.com>
14731 L:      linux-riscv@lists.infradead.org
14732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
14733 S:      Supported
14734 K:      fu540
14735 N:      fu540
14736
14737 SILEAD TOUCHSCREEN DRIVER
14738 M:      Hans de Goede <hdegoede@redhat.com>
14739 L:      linux-input@vger.kernel.org
14740 L:      platform-driver-x86@vger.kernel.org
14741 S:      Maintained
14742 F:      drivers/input/touchscreen/silead.c
14743 F:      drivers/platform/x86/touchscreen_dmi.c
14744
14745 SILICON MOTION SM712 FRAME BUFFER DRIVER
14746 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14747 M:      Teddy Wang <teddy.wang@siliconmotion.com>
14748 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14749 L:      linux-fbdev@vger.kernel.org
14750 S:      Maintained
14751 F:      drivers/video/fbdev/sm712*
14752 F:      Documentation/fb/sm712fb.rst
14753
14754 SIMPLE FIRMWARE INTERFACE (SFI)
14755 M:      Len Brown <lenb@kernel.org>
14756 L:      sfi-devel@simplefirmware.org
14757 W:      http://simplefirmware.org/
14758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
14759 S:      Supported
14760 F:      arch/x86/platform/sfi/
14761 F:      drivers/sfi/
14762 F:      include/linux/sfi*.h
14763
14764 SIMPLEFB FB DRIVER
14765 M:      Hans de Goede <hdegoede@redhat.com>
14766 L:      linux-fbdev@vger.kernel.org
14767 S:      Maintained
14768 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
14769 F:      drivers/video/fbdev/simplefb.c
14770 F:      include/linux/platform_data/simplefb.h
14771
14772 SIMTEC EB110ATX (Chalice CATS)
14773 P:      Ben Dooks
14774 P:      Vincent Sanders <vince@simtec.co.uk>
14775 M:      Simtec Linux Team <linux@simtec.co.uk>
14776 W:      http://www.simtec.co.uk/products/EB110ATX/
14777 S:      Supported
14778
14779 SIMTEC EB2410ITX (BAST)
14780 P:      Ben Dooks
14781 P:      Vincent Sanders <vince@simtec.co.uk>
14782 M:      Simtec Linux Team <linux@simtec.co.uk>
14783 W:      http://www.simtec.co.uk/products/EB2410ITX/
14784 S:      Supported
14785 F:      arch/arm/mach-s3c24xx/mach-bast.c
14786 F:      arch/arm/mach-s3c24xx/bast-ide.c
14787 F:      arch/arm/mach-s3c24xx/bast-irq.c
14788
14789 SIPHASH PRF ROUTINES
14790 M:      Jason A. Donenfeld <Jason@zx2c4.com>
14791 S:      Maintained
14792 F:      lib/siphash.c
14793 F:      lib/test_siphash.c
14794 F:      include/linux/siphash.h
14795
14796 SIOX
14797 M:      Thorsten Scherer <t.scherer@eckelmann.de>
14798 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
14799 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
14800 S:      Supported
14801 F:      drivers/siox/*
14802 F:      drivers/gpio/gpio-siox.c
14803 F:      include/trace/events/siox.h
14804
14805 SIS 190 ETHERNET DRIVER
14806 M:      Francois Romieu <romieu@fr.zoreil.com>
14807 L:      netdev@vger.kernel.org
14808 S:      Maintained
14809 F:      drivers/net/ethernet/sis/sis190.c
14810
14811 SIS 900/7016 FAST ETHERNET DRIVER
14812 M:      Daniele Venzano <venza@brownhat.org>
14813 W:      http://www.brownhat.org/sis900.html
14814 L:      netdev@vger.kernel.org
14815 S:      Maintained
14816 F:      drivers/net/ethernet/sis/sis900.*
14817
14818 SIS FRAMEBUFFER DRIVER
14819 M:      Thomas Winischhofer <thomas@winischhofer.net>
14820 W:      http://www.winischhofer.net/linuxsisvga.shtml
14821 S:      Maintained
14822 F:      Documentation/fb/sisfb.rst
14823 F:      drivers/video/fbdev/sis/
14824 F:      include/video/sisfb.h
14825
14826 SIS USB2VGA DRIVER
14827 M:      Thomas Winischhofer <thomas@winischhofer.net>
14828 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
14829 S:      Maintained
14830 F:      drivers/usb/misc/sisusbvga/
14831
14832 SLAB ALLOCATOR
14833 M:      Christoph Lameter <cl@linux.com>
14834 M:      Pekka Enberg <penberg@kernel.org>
14835 M:      David Rientjes <rientjes@google.com>
14836 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
14837 M:      Andrew Morton <akpm@linux-foundation.org>
14838 L:      linux-mm@kvack.org
14839 S:      Maintained
14840 F:      include/linux/sl?b*.h
14841 F:      mm/sl?b*
14842
14843 SLEEPABLE READ-COPY UPDATE (SRCU)
14844 M:      Lai Jiangshan <jiangshanlai@gmail.com>
14845 M:      "Paul E. McKenney" <paulmck@kernel.org>
14846 M:      Josh Triplett <josh@joshtriplett.org>
14847 R:      Steven Rostedt <rostedt@goodmis.org>
14848 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14849 L:      rcu@vger.kernel.org
14850 W:      http://www.rdrop.com/users/paulmck/RCU/
14851 S:      Supported
14852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14853 F:      include/linux/srcu*.h
14854 F:      kernel/rcu/srcu*.c
14855
14856 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
14857 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14858 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14859 S:      Maintained
14860 F:      drivers/slimbus/
14861 F:      Documentation/devicetree/bindings/slimbus/
14862 F:      include/linux/slimbus.h
14863
14864 SMACK SECURITY MODULE
14865 M:      Casey Schaufler <casey@schaufler-ca.com>
14866 L:      linux-security-module@vger.kernel.org
14867 W:      http://schaufler-ca.com
14868 T:      git git://github.com/cschaufler/smack-next
14869 S:      Maintained
14870 F:      Documentation/admin-guide/LSM/Smack.rst
14871 F:      security/smack/
14872
14873 SMC91x ETHERNET DRIVER
14874 M:      Nicolas Pitre <nico@fluxnic.net>
14875 S:      Odd Fixes
14876 F:      drivers/net/ethernet/smsc/smc91x.*
14877
14878 SMIA AND SMIA++ IMAGE SENSOR DRIVER
14879 M:      Sakari Ailus <sakari.ailus@iki.fi>
14880 L:      linux-media@vger.kernel.org
14881 S:      Maintained
14882 F:      drivers/media/i2c/smiapp/
14883 F:      include/media/i2c/smiapp.h
14884 F:      drivers/media/i2c/smiapp-pll.c
14885 F:      drivers/media/i2c/smiapp-pll.h
14886 F:      include/uapi/linux/smiapp.h
14887 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
14888
14889 SMM665 HARDWARE MONITOR DRIVER
14890 M:      Guenter Roeck <linux@roeck-us.net>
14891 L:      linux-hwmon@vger.kernel.org
14892 S:      Maintained
14893 F:      Documentation/hwmon/smm665.rst
14894 F:      drivers/hwmon/smm665.c
14895
14896 SMSC EMC2103 HARDWARE MONITOR DRIVER
14897 M:      Steve Glendinning <steve.glendinning@shawell.net>
14898 L:      linux-hwmon@vger.kernel.org
14899 S:      Maintained
14900 F:      Documentation/hwmon/emc2103.rst
14901 F:      drivers/hwmon/emc2103.c
14902
14903 SMSC SCH5627 HARDWARE MONITOR DRIVER
14904 M:      Hans de Goede <hdegoede@redhat.com>
14905 L:      linux-hwmon@vger.kernel.org
14906 S:      Supported
14907 F:      Documentation/hwmon/sch5627.rst
14908 F:      drivers/hwmon/sch5627.c
14909
14910 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
14911 M:      Steve Glendinning <steve.glendinning@shawell.net>
14912 L:      linux-fbdev@vger.kernel.org
14913 S:      Maintained
14914 F:      drivers/video/fbdev/smscufx.c
14915
14916 SMSC47B397 HARDWARE MONITOR DRIVER
14917 M:      Jean Delvare <jdelvare@suse.com>
14918 L:      linux-hwmon@vger.kernel.org
14919 S:      Maintained
14920 F:      Documentation/hwmon/smsc47b397.rst
14921 F:      drivers/hwmon/smsc47b397.c
14922
14923 SMSC911x ETHERNET DRIVER
14924 M:      Steve Glendinning <steve.glendinning@shawell.net>
14925 L:      netdev@vger.kernel.org
14926 S:      Maintained
14927 F:      include/linux/smsc911x.h
14928 F:      drivers/net/ethernet/smsc/smsc911x.*
14929
14930 SMSC9420 PCI ETHERNET DRIVER
14931 M:      Steve Glendinning <steve.glendinning@shawell.net>
14932 L:      netdev@vger.kernel.org
14933 S:      Maintained
14934 F:      drivers/net/ethernet/smsc/smsc9420.*
14935
14936 SOC-CAMERA V4L2 SUBSYSTEM
14937 L:      linux-media@vger.kernel.org
14938 T:      git git://linuxtv.org/media_tree.git
14939 S:      Orphan
14940 F:      include/media/soc_camera.h
14941 F:      drivers/staging/media/soc_camera/
14942
14943 SOCIONEXT SYNQUACER I2C DRIVER
14944 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
14945 L:      linux-i2c@vger.kernel.org
14946 S:      Maintained
14947 F:      drivers/i2c/busses/i2c-synquacer.c
14948 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
14949
14950 SOCIONEXT UNIPHIER SOUND DRIVER
14951 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14952 S:      Orphan
14953 F:      sound/soc/uniphier/
14954
14955 SOEKRIS NET48XX LED SUPPORT
14956 M:      Chris Boot <bootc@bootc.net>
14957 S:      Maintained
14958 F:      drivers/leds/leds-net48xx.c
14959
14960 SOFT-IWARP DRIVER (siw)
14961 M:      Bernard Metzler <bmt@zurich.ibm.com>
14962 L:      linux-rdma@vger.kernel.org
14963 S:      Supported
14964 F:      drivers/infiniband/sw/siw/
14965 F:      include/uapi/rdma/siw-abi.h
14966
14967 SOFT-ROCE DRIVER (rxe)
14968 M:      Moni Shoua <monis@mellanox.com>
14969 L:      linux-rdma@vger.kernel.org
14970 S:      Supported
14971 W:      https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home
14972 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14973 F:      drivers/infiniband/sw/rxe/
14974 F:      include/uapi/rdma/rdma_user_rxe.h
14975
14976 SOFTLOGIC 6x10 MPEG CODEC
14977 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
14978 M:      Anton Sviridenko <anton@corp.bluecherry.net>
14979 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
14980 M:      Andrey Utkin <andrey_utkin@fastmail.com>
14981 M:      Ismael Luceno <ismael@iodev.co.uk>
14982 L:      linux-media@vger.kernel.org
14983 S:      Supported
14984 F:      drivers/media/pci/solo6x10/
14985
14986 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
14987 M:      James Morse <james.morse@arm.com>
14988 L:      linux-arm-kernel@lists.infradead.org
14989 S:      Maintained
14990 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
14991 F:      drivers/firmware/arm_sdei.c
14992 F:      include/linux/arm_sdei.h
14993 F:      include/uapi/linux/arm_sdei.h
14994
14995 SOFTWARE RAID (Multiple Disks) SUPPORT
14996 M:      Song Liu <song@kernel.org>
14997 L:      linux-raid@vger.kernel.org
14998 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
14999 S:      Supported
15000 F:      drivers/md/Makefile
15001 F:      drivers/md/Kconfig
15002 F:      drivers/md/md*
15003 F:      drivers/md/raid*
15004 F:      include/linux/raid/
15005 F:      include/uapi/linux/raid/
15006
15007 SOCIONEXT (SNI) AVE NETWORK DRIVER
15008 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15009 L:      netdev@vger.kernel.org
15010 S:      Maintained
15011 F:      drivers/net/ethernet/socionext/sni_ave.c
15012 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.txt
15013
15014 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
15015 M:      Jassi Brar <jaswinder.singh@linaro.org>
15016 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15017 L:      netdev@vger.kernel.org
15018 S:      Maintained
15019 F:      drivers/net/ethernet/socionext/netsec.c
15020 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
15021
15022 SOCIONEXT (SNI) Synquacer SPI DRIVER
15023 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
15024 M:      Jassi Brar <jaswinder.singh@linaro.org>
15025 L:      linux-spi@vger.kernel.org
15026 S:      Maintained
15027 F:      drivers/spi/spi-synquacer.c
15028 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
15029
15030 SOLIDRUN CLEARFOG SUPPORT
15031 M:      Russell King <linux@armlinux.org.uk>
15032 S:      Maintained
15033 F:      arch/arm/boot/dts/armada-388-clearfog*
15034 F:      arch/arm/boot/dts/armada-38x-solidrun-*
15035
15036 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
15037 M:      Russell King <linux@armlinux.org.uk>
15038 S:      Maintained
15039 F:      arch/arm/boot/dts/imx6*-cubox-i*
15040 F:      arch/arm/boot/dts/imx6*-hummingboard*
15041 F:      arch/arm/boot/dts/imx6*-sr-*
15042
15043 SONIC NETWORK DRIVER
15044 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
15045 L:      netdev@vger.kernel.org
15046 S:      Maintained
15047 F:      drivers/net/ethernet/natsemi/sonic.*
15048
15049 SONICS SILICON BACKPLANE DRIVER (SSB)
15050 M:      Michael Buesch <m@bues.ch>
15051 L:      linux-wireless@vger.kernel.org
15052 S:      Maintained
15053 F:      drivers/ssb/
15054 F:      include/linux/ssb/
15055
15056 SONY IMX214 SENSOR DRIVER
15057 M:      Ricardo Ribalda <ricardo.ribalda@gmail.com>
15058 L:      linux-media@vger.kernel.org
15059 T:      git git://linuxtv.org/media_tree.git
15060 S:      Maintained
15061 F:      drivers/media/i2c/imx214.c
15062 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.txt
15063
15064 SONY IMX258 SENSOR DRIVER
15065 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15066 L:      linux-media@vger.kernel.org
15067 T:      git git://linuxtv.org/media_tree.git
15068 S:      Maintained
15069 F:      drivers/media/i2c/imx258.c
15070
15071 SONY IMX274 SENSOR DRIVER
15072 M:      Leon Luo <leonl@leopardimaging.com>
15073 L:      linux-media@vger.kernel.org
15074 T:      git git://linuxtv.org/media_tree.git
15075 S:      Maintained
15076 F:      drivers/media/i2c/imx274.c
15077 F:      Documentation/devicetree/bindings/media/i2c/imx274.txt
15078
15079 SONY IMX319 SENSOR DRIVER
15080 M:      Bingbu Cao <bingbu.cao@intel.com>
15081 L:      linux-media@vger.kernel.org
15082 T:      git git://linuxtv.org/media_tree.git
15083 S:      Maintained
15084 F:      drivers/media/i2c/imx319.c
15085
15086 SONY IMX355 SENSOR DRIVER
15087 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15088 L:      linux-media@vger.kernel.org
15089 T:      git git://linuxtv.org/media_tree.git
15090 S:      Maintained
15091 F:      drivers/media/i2c/imx355.c
15092
15093 SONY MEMORYSTICK SUBSYSTEM
15094 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15095 M:      Alex Dubov <oakad@yahoo.com>
15096 M:      Ulf Hansson <ulf.hansson@linaro.org>
15097 L:      linux-mmc@vger.kernel.org
15098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
15099 S:      Maintained
15100 F:      drivers/memstick/
15101 F:      include/linux/memstick.h
15102
15103 SONY VAIO CONTROL DEVICE DRIVER
15104 M:      Mattia Dongili <malattia@linux.it>
15105 L:      platform-driver-x86@vger.kernel.org
15106 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
15107 S:      Maintained
15108 F:      Documentation/admin-guide/laptops/sony-laptop.rst
15109 F:      drivers/char/sonypi.c
15110 F:      drivers/platform/x86/sony-laptop.c
15111 F:      include/linux/sony-laptop.h
15112
15113 SOUND
15114 M:      Jaroslav Kysela <perex@perex.cz>
15115 M:      Takashi Iwai <tiwai@suse.com>
15116 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15117 W:      http://www.alsa-project.org/
15118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15119 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
15120 S:      Maintained
15121 F:      Documentation/sound/
15122 F:      include/sound/
15123 F:      include/uapi/sound/
15124 F:      sound/
15125
15126 SOUND - COMPRESSED AUDIO
15127 M:      Vinod Koul <vkoul@kernel.org>
15128 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15130 S:      Supported
15131 F:      Documentation/sound/designs/compress-offload.rst
15132 F:      include/sound/compress_driver.h
15133 F:      include/uapi/sound/compress_*
15134 F:      sound/core/compress_offload.c
15135 F:      sound/soc/soc-compress.c
15136
15137 SOUND - DMAENGINE HELPERS
15138 M:      Lars-Peter Clausen <lars@metafoo.de>
15139 S:      Supported
15140 F:      include/sound/dmaengine_pcm.h
15141 F:      sound/core/pcm_dmaengine.c
15142 F:      sound/soc/soc-generic-dmaengine-pcm.c
15143
15144 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
15145 M:      Liam Girdwood <lgirdwood@gmail.com>
15146 M:      Mark Brown <broonie@kernel.org>
15147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
15148 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15149 W:      http://alsa-project.org/main/index.php/ASoC
15150 S:      Supported
15151 F:      Documentation/devicetree/bindings/sound/
15152 F:      Documentation/sound/soc/
15153 F:      sound/soc/
15154 F:      include/dt-bindings/sound/
15155 F:      include/sound/soc*
15156
15157 SOUNDWIRE SUBSYSTEM
15158 M:      Vinod Koul <vkoul@kernel.org>
15159 M:      Sanyog Kale <sanyog.r.kale@intel.com>
15160 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
15161 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15162 S:      Supported
15163 F:      Documentation/driver-api/soundwire/
15164 F:      drivers/soundwire/
15165 F:      include/linux/soundwire/
15166
15167 SP2 MEDIA DRIVER
15168 M:      Olli Salonen <olli.salonen@iki.fi>
15169 L:      linux-media@vger.kernel.org
15170 W:      https://linuxtv.org
15171 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15172 S:      Maintained
15173 F:      drivers/media/dvb-frontends/sp2*
15174
15175 SPARC + UltraSPARC (sparc/sparc64)
15176 M:      "David S. Miller" <davem@davemloft.net>
15177 L:      sparclinux@vger.kernel.org
15178 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
15179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15181 S:      Maintained
15182 F:      arch/sparc/
15183 F:      drivers/sbus/
15184
15185 SPARC SERIAL DRIVERS
15186 M:      "David S. Miller" <davem@davemloft.net>
15187 L:      sparclinux@vger.kernel.org
15188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15190 S:      Maintained
15191 F:      include/linux/sunserialcore.h
15192 F:      drivers/tty/serial/suncore.c
15193 F:      drivers/tty/serial/sunhv.c
15194 F:      drivers/tty/serial/sunsab.c
15195 F:      drivers/tty/serial/sunsab.h
15196 F:      drivers/tty/serial/sunsu.c
15197 F:      drivers/tty/serial/sunzilog.c
15198 F:      drivers/tty/serial/sunzilog.h
15199 F:      drivers/tty/vcc.c
15200
15201 SPARSE CHECKER
15202 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
15203 L:      linux-sparse@vger.kernel.org
15204 W:      https://sparse.wiki.kernel.org/
15205 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
15206 S:      Maintained
15207 F:      include/linux/compiler.h
15208
15209 SPEAR CLOCK FRAMEWORK SUPPORT
15210 M:      Viresh Kumar <vireshk@kernel.org>
15211 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15212 W:      http://www.st.com/spear
15213 S:      Maintained
15214 F:      drivers/clk/spear/
15215
15216 SPEAR PLATFORM SUPPORT
15217 M:      Viresh Kumar <vireshk@kernel.org>
15218 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
15219 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15220 W:      http://www.st.com/spear
15221 S:      Maintained
15222 F:      arch/arm/boot/dts/spear*
15223 F:      arch/arm/mach-spear/
15224
15225 SPI NOR SUBSYSTEM
15226 M:      Marek Vasut <marek.vasut@gmail.com>
15227 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
15228 L:      linux-mtd@lists.infradead.org
15229 W:      http://www.linux-mtd.infradead.org/
15230 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
15231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
15232 S:      Maintained
15233 F:      drivers/mtd/spi-nor/
15234 F:      include/linux/mtd/spi-nor.h
15235
15236 SPI SUBSYSTEM
15237 M:      Mark Brown <broonie@kernel.org>
15238 L:      linux-spi@vger.kernel.org
15239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
15240 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
15241 S:      Maintained
15242 F:      Documentation/devicetree/bindings/spi/
15243 F:      Documentation/spi/
15244 F:      drivers/spi/
15245 F:      include/linux/spi/
15246 F:      include/uapi/linux/spi/
15247 F:      tools/spi/
15248
15249 SPIDERNET NETWORK DRIVER for CELL
15250 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
15251 L:      netdev@vger.kernel.org
15252 S:      Supported
15253 F:      Documentation/networking/device_drivers/toshiba/spider_net.txt
15254 F:      drivers/net/ethernet/toshiba/spider_net*
15255
15256 SPMI SUBSYSTEM
15257 R:      Stephen Boyd <sboyd@kernel.org>
15258 L:      linux-arm-msm@vger.kernel.org
15259 F:      Documentation/devicetree/bindings/spmi/
15260 F:      drivers/spmi/
15261 F:      include/dt-bindings/spmi/spmi.h
15262 F:      include/linux/spmi.h
15263 F:      include/trace/events/spmi.h
15264
15265 SPU FILE SYSTEM
15266 M:      Jeremy Kerr <jk@ozlabs.org>
15267 L:      linuxppc-dev@lists.ozlabs.org
15268 W:      http://www.ibm.com/developerworks/power/cell/
15269 S:      Supported
15270 F:      Documentation/filesystems/spufs.txt
15271 F:      arch/powerpc/platforms/cell/spufs/
15272
15273 SQUASHFS FILE SYSTEM
15274 M:      Phillip Lougher <phillip@squashfs.org.uk>
15275 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
15276 W:      http://squashfs.org.uk
15277 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
15278 S:      Maintained
15279 F:      Documentation/filesystems/squashfs.txt
15280 F:      fs/squashfs/
15281
15282 SRM (Alpha) environment access
15283 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
15284 S:      Maintained
15285 F:      arch/alpha/kernel/srm_env.c
15286
15287 ST LSM6DSx IMU IIO DRIVER
15288 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
15289 L:      linux-iio@vger.kernel.org
15290 W:      http://www.st.com/
15291 S:      Maintained
15292 F:      drivers/iio/imu/st_lsm6dsx/
15293 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
15294
15295 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
15296 M:      Mickael Guene <mickael.guene@st.com>
15297 L:      linux-media@vger.kernel.org
15298 T:      git git://linuxtv.org/media_tree.git
15299 S:      Maintained
15300 F:      drivers/media/i2c/st-mipid02.c
15301 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
15302
15303 ST STM32 I2C/SMBUS DRIVER
15304 M:      Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
15305 L:      linux-i2c@vger.kernel.org
15306 S:      Maintained
15307 F:      drivers/i2c/busses/i2c-stm32*
15308
15309 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
15310 M:      Song Qiang <songqiang1304521@gmail.com>
15311 L:      linux-iio@vger.kernel.org
15312 S:      Maintained
15313 F:      drivers/iio/proximity/vl53l0x-i2c.c
15314 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
15315
15316 STABLE BRANCH
15317 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15318 M:      Sasha Levin <sashal@kernel.org>
15319 L:      stable@vger.kernel.org
15320 S:      Supported
15321 F:      Documentation/process/stable-kernel-rules.rst
15322
15323 STAGING - COMEDI
15324 M:      Ian Abbott <abbotti@mev.co.uk>
15325 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
15326 S:      Odd Fixes
15327 F:      drivers/staging/comedi/
15328
15329 STAGING - FIELDBUS SUBSYSTEM
15330 M:      Sven Van Asbroeck <TheSven73@gmail.com>
15331 S:      Maintained
15332 F:      drivers/staging/fieldbus/*
15333 F:      drivers/staging/fieldbus/Documentation/
15334
15335 STAGING - HMS ANYBUS-S BUS
15336 M:      Sven Van Asbroeck <TheSven73@gmail.com>
15337 S:      Maintained
15338 F:      drivers/staging/fieldbus/anybuss/
15339
15340 STAGING - INDUSTRIAL IO
15341 M:      Jonathan Cameron <jic23@kernel.org>
15342 L:      linux-iio@vger.kernel.org
15343 S:      Odd Fixes
15344 F:      Documentation/devicetree/bindings/staging/iio/
15345 F:      drivers/staging/iio/
15346
15347 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
15348 M:      Marc Dietrich <marvin24@gmx.de>
15349 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
15350 L:      linux-tegra@vger.kernel.org
15351 S:      Maintained
15352 F:      drivers/staging/nvec/
15353
15354 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
15355 M:      Jens Frederich <jfrederich@gmail.com>
15356 M:      Daniel Drake <dsd@laptop.org>
15357 M:      Jon Nettleton <jon.nettleton@gmail.com>
15358 W:      http://wiki.laptop.org/go/DCON
15359 S:      Maintained
15360 F:      drivers/staging/olpc_dcon/
15361
15362 STAGING - REALTEK RTL8712U DRIVERS
15363 M:      Larry Finger <Larry.Finger@lwfinger.net>
15364 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
15365 S:      Odd Fixes
15366 F:      drivers/staging/rtl8712/
15367
15368 STAGING - REALTEK RTL8188EU DRIVERS
15369 M:      Larry Finger <Larry.Finger@lwfinger.net>
15370 S:      Odd Fixes
15371 F:      drivers/staging/rtl8188eu/
15372
15373 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
15374 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15375 M:      Teddy Wang <teddy.wang@siliconmotion.com>
15376 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15377 L:      linux-fbdev@vger.kernel.org
15378 S:      Maintained
15379 F:      drivers/staging/sm750fb/
15380
15381 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
15382 M:      William Hubbs <w.d.hubbs@gmail.com>
15383 M:      Chris Brannon <chris@the-brannons.com>
15384 M:      Kirk Reiser <kirk@reisers.ca>
15385 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
15386 L:      speakup@linux-speakup.org
15387 W:      http://www.linux-speakup.org/
15388 S:      Odd Fixes
15389 F:      drivers/staging/speakup/
15390
15391 STAGING - VIA VT665X DRIVERS
15392 M:      Forest Bond <forest@alittletooquiet.net>
15393 S:      Odd Fixes
15394 F:      drivers/staging/vt665?/
15395
15396 STAGING - WILC1000 WIFI DRIVER
15397 M:      Adham Abozaeid <adham.abozaeid@microchip.com>
15398 M:      Ajay Singh <ajay.kathat@microchip.com>
15399 L:      linux-wireless@vger.kernel.org
15400 S:      Supported
15401 F:      drivers/staging/wilc1000/
15402
15403 STAGING SUBSYSTEM
15404 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
15406 L:      devel@driverdev.osuosl.org
15407 S:      Supported
15408 F:      drivers/staging/
15409
15410 STARFIRE/DURALAN NETWORK DRIVER
15411 M:      Ion Badulescu <ionut@badula.org>
15412 S:      Odd Fixes
15413 F:      drivers/net/ethernet/adaptec/starfire*
15414
15415 STEC S1220 SKD DRIVER
15416 M:      Damien Le Moal <Damien.LeMoal@wdc.com>
15417 L:      linux-block@vger.kernel.org
15418 S:      Maintained
15419 F:      drivers/block/skd*[ch]
15420
15421 STI AUDIO (ASoC) DRIVERS
15422 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
15423 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15424 S:      Maintained
15425 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
15426 F:      sound/soc/sti/
15427
15428 STI CEC DRIVER
15429 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
15430 S:      Maintained
15431 F:      drivers/media/platform/sti/cec/
15432 F:      Documentation/devicetree/bindings/media/stih-cec.txt
15433
15434 STK1160 USB VIDEO CAPTURE DRIVER
15435 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
15436 L:      linux-media@vger.kernel.org
15437 T:      git git://linuxtv.org/media_tree.git
15438 S:      Maintained
15439 F:      drivers/media/usb/stk1160/
15440
15441 STM32 AUDIO (ASoC) DRIVERS
15442 M:      Olivier Moysan <olivier.moysan@st.com>
15443 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
15444 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15445 S:      Maintained
15446 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
15447 F:      sound/soc/stm/
15448
15449 STM32 TIMER/LPTIMER DRIVERS
15450 M:      Fabrice Gasnier <fabrice.gasnier@st.com>
15451 S:      Maintained
15452 F:      drivers/*/stm32-*timer*
15453 F:      drivers/pwm/pwm-stm32*
15454 F:      include/linux/*/stm32-*tim*
15455 F:      Documentation/ABI/testing/*timer-stm32
15456 F:      Documentation/devicetree/bindings/*/stm32-*timer*
15457 F:      Documentation/devicetree/bindings/pwm/pwm-stm32*
15458
15459 STMMAC ETHERNET DRIVER
15460 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
15461 M:      Alexandre Torgue <alexandre.torgue@st.com>
15462 M:      Jose Abreu <joabreu@synopsys.com>
15463 L:      netdev@vger.kernel.org
15464 W:      http://www.stlinux.com
15465 S:      Supported
15466 F:      drivers/net/ethernet/stmicro/stmmac/
15467
15468 SUN3/3X
15469 M:      Sam Creasey <sammy@sammy.net>
15470 W:      http://sammy.net/sun3/
15471 S:      Maintained
15472 F:      arch/m68k/kernel/*sun3*
15473 F:      arch/m68k/sun3*/
15474 F:      arch/m68k/include/asm/sun3*
15475 F:      drivers/net/ethernet/i825xx/sun3*
15476
15477 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
15478 M:      Hans de Goede <hdegoede@redhat.com>
15479 L:      linux-input@vger.kernel.org
15480 S:      Maintained
15481 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
15482 F:      drivers/input/keyboard/sun4i-lradc-keys.c
15483
15484 SUNDANCE NETWORK DRIVER
15485 M:      Denis Kirjanov <kda@linux-powerpc.org>
15486 L:      netdev@vger.kernel.org
15487 S:      Maintained
15488 F:      drivers/net/ethernet/dlink/sundance.c
15489
15490 SUPERH
15491 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
15492 M:      Rich Felker <dalias@libc.org>
15493 L:      linux-sh@vger.kernel.org
15494 Q:      http://patchwork.kernel.org/project/linux-sh/list/
15495 S:      Maintained
15496 F:      Documentation/sh/
15497 F:      arch/sh/
15498 F:      drivers/sh/
15499
15500 SUSPEND TO RAM
15501 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
15502 M:      Len Brown <len.brown@intel.com>
15503 M:      Pavel Machek <pavel@ucw.cz>
15504 L:      linux-pm@vger.kernel.org
15505 B:      https://bugzilla.kernel.org
15506 S:      Supported
15507 F:      Documentation/power/
15508 F:      arch/x86/kernel/acpi/
15509 F:      drivers/base/power/
15510 F:      kernel/power/
15511 F:      include/linux/suspend.h
15512 F:      include/linux/freezer.h
15513 F:      include/linux/pm.h
15514
15515 SVGA HANDLING
15516 M:      Martin Mares <mj@ucw.cz>
15517 L:      linux-video@atrey.karlin.mff.cuni.cz
15518 S:      Maintained
15519 F:      Documentation/admin-guide/svga.rst
15520 F:      arch/x86/boot/video*
15521
15522 SWIOTLB SUBSYSTEM
15523 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
15524 L:      iommu@lists.linux-foundation.org
15525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
15526 S:      Supported
15527 F:      kernel/dma/swiotlb.c
15528 F:      arch/*/kernel/pci-swiotlb.c
15529 F:      include/linux/swiotlb.h
15530
15531 SWITCHDEV
15532 M:      Jiri Pirko <jiri@resnulli.us>
15533 M:      Ivan Vecera <ivecera@redhat.com>
15534 L:      netdev@vger.kernel.org
15535 S:      Supported
15536 F:      net/switchdev/
15537 F:      include/net/switchdev.h
15538
15539 SY8106A REGULATOR DRIVER
15540 M:      Icenowy Zheng <icenowy@aosc.io>
15541 S:      Maintained
15542 F:      drivers/regulator/sy8106a-regulator.c
15543 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
15544
15545 SYNC FILE FRAMEWORK
15546 M:      Sumit Semwal <sumit.semwal@linaro.org>
15547 R:      Gustavo Padovan <gustavo@padovan.org>
15548 S:      Maintained
15549 L:      linux-media@vger.kernel.org
15550 L:      dri-devel@lists.freedesktop.org
15551 F:      drivers/dma-buf/sync_*
15552 F:      drivers/dma-buf/dma-fence*
15553 F:      drivers/dma-buf/sw_sync.c
15554 F:      include/linux/sync_file.h
15555 F:      include/uapi/linux/sync_file.h
15556 F:      Documentation/driver-api/sync_file.rst
15557 T:      git git://anongit.freedesktop.org/drm/drm-misc
15558
15559 SYNOPSYS ARC ARCHITECTURE
15560 M:      Vineet Gupta <vgupta@synopsys.com>
15561 L:      linux-snps-arc@lists.infradead.org
15562 S:      Supported
15563 F:      arch/arc/
15564 F:      Documentation/devicetree/bindings/arc/*
15565 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
15566 F:      drivers/clocksource/arc_timer.c
15567 F:      drivers/tty/serial/arc_uart.c
15568 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
15569
15570 SYNOPSYS ARC HSDK SDP pll clock driver
15571 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15572 S:      Supported
15573 F:      drivers/clk/clk-hsdk-pll.c
15574 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
15575
15576 SYNOPSYS ARC SDP clock driver
15577 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15578 S:      Supported
15579 F:      drivers/clk/axs10x/*
15580 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
15581
15582 SYNOPSYS ARC SDP platform support
15583 M:      Alexey Brodkin <abrodkin@synopsys.com>
15584 S:      Supported
15585 F:      arch/arc/plat-axs10x
15586 F:      arch/arc/boot/dts/ax*
15587 F:      Documentation/devicetree/bindings/arc/axs10*
15588
15589 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
15590 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15591 S:      Supported
15592 F:      drivers/reset/reset-axs10x.c
15593 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
15594
15595 SYNOPSYS CREG GPIO DRIVER
15596 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15597 S:      Maintained
15598 F:      drivers/gpio/gpio-creg-snps.c
15599 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
15600
15601 SYNOPSYS DESIGNWARE 8250 UART DRIVER
15602 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
15603 S:      Maintained
15604 F:      drivers/tty/serial/8250/8250_dw.c
15605
15606 SYNOPSYS DESIGNWARE APB GPIO DRIVER
15607 M:      Hoan Tran <hoan@os.amperecomputing.com>
15608 L:      linux-gpio@vger.kernel.org
15609 S:      Maintained
15610 F:      drivers/gpio/gpio-dwapb.c
15611 F:      Documentation/devicetree/bindings/gpio/snps-dwapb-gpio.txt
15612
15613 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
15614 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15615 S:      Maintained
15616 F:      drivers/dma/dw-axi-dmac/
15617 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
15618
15619 SYNOPSYS DESIGNWARE DMAC DRIVER
15620 M:      Viresh Kumar <vireshk@kernel.org>
15621 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
15622 S:      Maintained
15623 F:      Documentation/devicetree/bindings/dma/snps-dma.txt
15624 F:      drivers/dma/dw/
15625 F:      include/dt-bindings/dma/dw-dmac.h
15626 F:      include/linux/dma/dw.h
15627 F:      include/linux/platform_data/dma-dw.h
15628
15629 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
15630 M:      Jose Abreu <Jose.Abreu@synopsys.com>
15631 L:      netdev@vger.kernel.org
15632 S:      Supported
15633 F:      drivers/net/ethernet/synopsys/
15634
15635 SYNOPSYS DESIGNWARE I2C DRIVER
15636 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
15637 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
15638 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
15639 L:      linux-i2c@vger.kernel.org
15640 S:      Maintained
15641 F:      drivers/i2c/busses/i2c-designware-*
15642 F:      include/linux/platform_data/i2c-designware.h
15643
15644 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
15645 M:      Jaehoon Chung <jh80.chung@samsung.com>
15646 L:      linux-mmc@vger.kernel.org
15647 S:      Maintained
15648 F:      drivers/mmc/host/dw_mmc*
15649
15650 SYNOPSYS HSDK RESET CONTROLLER DRIVER
15651 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15652 S:      Supported
15653 F:      drivers/reset/reset-hsdk.c
15654 F:      include/dt-bindings/reset/snps,hsdk-reset.h
15655 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
15656
15657 SYSTEM CONFIGURATION (SYSCON)
15658 M:      Lee Jones <lee.jones@linaro.org>
15659 M:      Arnd Bergmann <arnd@arndb.de>
15660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
15661 S:      Supported
15662 F:      drivers/mfd/syscon.c
15663
15664 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
15665 M:      Sudeep Holla <sudeep.holla@arm.com>
15666 L:      linux-arm-kernel@lists.infradead.org
15667 S:      Maintained
15668 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
15669 F:      drivers/clk/clk-sc[mp]i.c
15670 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
15671 F:      drivers/firmware/arm_scpi.c
15672 F:      drivers/firmware/arm_scmi/
15673 F:      drivers/reset/reset-scmi.c
15674 F:      include/linux/sc[mp]i_protocol.h
15675
15676 SYSTEM RESET/SHUTDOWN DRIVERS
15677 M:      Sebastian Reichel <sre@kernel.org>
15678 L:      linux-pm@vger.kernel.org
15679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15680 S:      Maintained
15681 F:      Documentation/devicetree/bindings/power/reset/
15682 F:      drivers/power/reset/
15683
15684 SYSTEM TRACE MODULE CLASS
15685 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
15686 S:      Maintained
15687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
15688 F:      Documentation/trace/stm.rst
15689 F:      drivers/hwtracing/stm/
15690 F:      include/linux/stm.h
15691 F:      include/uapi/linux/stm.h
15692
15693 SYSV FILESYSTEM
15694 M:      Christoph Hellwig <hch@infradead.org>
15695 S:      Maintained
15696 F:      Documentation/filesystems/sysv-fs.txt
15697 F:      fs/sysv/
15698 F:      include/linux/sysv_fs.h
15699
15700 TASKSTATS STATISTICS INTERFACE
15701 M:      Balbir Singh <bsingharora@gmail.com>
15702 S:      Maintained
15703 F:      Documentation/accounting/taskstats*
15704 F:      include/linux/taskstats*
15705 F:      kernel/taskstats.c
15706
15707 TC subsystem
15708 M:      Jamal Hadi Salim <jhs@mojatatu.com>
15709 M:      Cong Wang <xiyou.wangcong@gmail.com>
15710 M:      Jiri Pirko <jiri@resnulli.us>
15711 L:      netdev@vger.kernel.org
15712 S:      Maintained
15713 F:      include/net/pkt_cls.h
15714 F:      include/net/pkt_sched.h
15715 F:      include/net/tc_act/
15716 F:      include/uapi/linux/pkt_cls.h
15717 F:      include/uapi/linux/pkt_sched.h
15718 F:      include/uapi/linux/tc_act/
15719 F:      include/uapi/linux/tc_ematch/
15720 F:      net/sched/
15721
15722 TC90522 MEDIA DRIVER
15723 M:      Akihiro Tsukada <tskd08@gmail.com>
15724 L:      linux-media@vger.kernel.org
15725 S:      Odd Fixes
15726 F:      drivers/media/dvb-frontends/tc90522*
15727
15728 TCP LOW PRIORITY MODULE
15729 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
15730 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
15731 W:      http://tcp-lp-mod.sourceforge.net/
15732 S:      Maintained
15733 F:      net/ipv4/tcp_lp.c
15734
15735 TDA10071 MEDIA DRIVER
15736 M:      Antti Palosaari <crope@iki.fi>
15737 L:      linux-media@vger.kernel.org
15738 W:      https://linuxtv.org
15739 W:      http://palosaari.fi/linux/
15740 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15741 T:      git git://linuxtv.org/anttip/media_tree.git
15742 S:      Maintained
15743 F:      drivers/media/dvb-frontends/tda10071*
15744
15745 TDA18212 MEDIA DRIVER
15746 M:      Antti Palosaari <crope@iki.fi>
15747 L:      linux-media@vger.kernel.org
15748 W:      https://linuxtv.org
15749 W:      http://palosaari.fi/linux/
15750 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15751 T:      git git://linuxtv.org/anttip/media_tree.git
15752 S:      Maintained
15753 F:      drivers/media/tuners/tda18212*
15754
15755 TDA18218 MEDIA DRIVER
15756 M:      Antti Palosaari <crope@iki.fi>
15757 L:      linux-media@vger.kernel.org
15758 W:      https://linuxtv.org
15759 W:      http://palosaari.fi/linux/
15760 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15761 T:      git git://linuxtv.org/anttip/media_tree.git
15762 S:      Maintained
15763 F:      drivers/media/tuners/tda18218*
15764
15765 TDA18250 MEDIA DRIVER
15766 M:      Olli Salonen <olli.salonen@iki.fi>
15767 L:      linux-media@vger.kernel.org
15768 W:      https://linuxtv.org
15769 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15770 T:      git git://linuxtv.org/media_tree.git
15771 S:      Maintained
15772 F:      drivers/media/tuners/tda18250*
15773
15774 TDA18271 MEDIA DRIVER
15775 M:      Michael Krufky <mkrufky@linuxtv.org>
15776 L:      linux-media@vger.kernel.org
15777 W:      https://linuxtv.org
15778 W:      http://github.com/mkrufky
15779 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15780 T:      git git://linuxtv.org/mkrufky/tuners.git
15781 S:      Maintained
15782 F:      drivers/media/tuners/tda18271*
15783
15784 TDA1997x MEDIA DRIVER
15785 M:      Tim Harvey <tharvey@gateworks.com>
15786 L:      linux-media@vger.kernel.org
15787 W:      https://linuxtv.org
15788 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15789 S:      Maintained
15790 F:      drivers/media/i2c/tda1997x.*
15791
15792 TDA827x MEDIA DRIVER
15793 M:      Michael Krufky <mkrufky@linuxtv.org>
15794 L:      linux-media@vger.kernel.org
15795 W:      https://linuxtv.org
15796 W:      http://github.com/mkrufky
15797 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15798 T:      git git://linuxtv.org/mkrufky/tuners.git
15799 S:      Maintained
15800 F:      drivers/media/tuners/tda8290.*
15801
15802 TDA8290 MEDIA DRIVER
15803 M:      Michael Krufky <mkrufky@linuxtv.org>
15804 L:      linux-media@vger.kernel.org
15805 W:      https://linuxtv.org
15806 W:      http://github.com/mkrufky
15807 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15808 T:      git git://linuxtv.org/mkrufky/tuners.git
15809 S:      Maintained
15810 F:      drivers/media/tuners/tda8290.*
15811
15812 TDA9840 MEDIA DRIVER
15813 M:      Hans Verkuil <hverkuil@xs4all.nl>
15814 L:      linux-media@vger.kernel.org
15815 T:      git git://linuxtv.org/media_tree.git
15816 W:      https://linuxtv.org
15817 S:      Maintained
15818 F:      drivers/media/i2c/tda9840*
15819
15820 TEA5761 TUNER DRIVER
15821 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15822 L:      linux-media@vger.kernel.org
15823 W:      https://linuxtv.org
15824 T:      git git://linuxtv.org/media_tree.git
15825 S:      Odd fixes
15826 F:      drivers/media/tuners/tea5761.*
15827
15828 TEA5767 TUNER DRIVER
15829 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15830 L:      linux-media@vger.kernel.org
15831 W:      https://linuxtv.org
15832 T:      git git://linuxtv.org/media_tree.git
15833 S:      Maintained
15834 F:      drivers/media/tuners/tea5767.*
15835
15836 TEA6415C MEDIA DRIVER
15837 M:      Hans Verkuil <hverkuil@xs4all.nl>
15838 L:      linux-media@vger.kernel.org
15839 T:      git git://linuxtv.org/media_tree.git
15840 W:      https://linuxtv.org
15841 S:      Maintained
15842 F:      drivers/media/i2c/tea6415c*
15843
15844 TEA6420 MEDIA DRIVER
15845 M:      Hans Verkuil <hverkuil@xs4all.nl>
15846 L:      linux-media@vger.kernel.org
15847 T:      git git://linuxtv.org/media_tree.git
15848 W:      https://linuxtv.org
15849 S:      Maintained
15850 F:      drivers/media/i2c/tea6420*
15851
15852 TEAM DRIVER
15853 M:      Jiri Pirko <jiri@resnulli.us>
15854 L:      netdev@vger.kernel.org
15855 S:      Supported
15856 F:      drivers/net/team/
15857 F:      include/linux/if_team.h
15858 F:      include/uapi/linux/if_team.h
15859
15860 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
15861 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
15862 S:      Maintained
15863 F:      arch/x86/platform/ts5500/
15864
15865 TECHNOTREND USB IR RECEIVER
15866 M:      Sean Young <sean@mess.org>
15867 L:      linux-media@vger.kernel.org
15868 S:      Maintained
15869 F:      drivers/media/rc/ttusbir.c
15870
15871 TECHWELL TW9910 VIDEO DECODER
15872 L:      linux-media@vger.kernel.org
15873 S:      Orphan
15874 F:      drivers/media/i2c/tw9910.c
15875 F:      include/media/i2c/tw9910.h
15876
15877 TEE SUBSYSTEM
15878 M:      Jens Wiklander <jens.wiklander@linaro.org>
15879 L:      tee-dev@lists.linaro.org
15880 S:      Maintained
15881 F:      include/linux/tee_drv.h
15882 F:      include/uapi/linux/tee.h
15883 F:      drivers/tee/
15884 F:      Documentation/tee.txt
15885
15886 TEGRA ARCHITECTURE SUPPORT
15887 M:      Thierry Reding <thierry.reding@gmail.com>
15888 M:      Jonathan Hunter <jonathanh@nvidia.com>
15889 L:      linux-tegra@vger.kernel.org
15890 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
15891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
15892 S:      Supported
15893 N:      [^a-z]tegra
15894
15895 TEGRA CLOCK DRIVER
15896 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
15897 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
15898 S:      Supported
15899 F:      drivers/clk/tegra/
15900
15901 TEGRA DMA DRIVERS
15902 M:      Laxman Dewangan <ldewangan@nvidia.com>
15903 M:      Jon Hunter <jonathanh@nvidia.com>
15904 S:      Supported
15905 F:      drivers/dma/tegra*
15906
15907 TEGRA I2C DRIVER
15908 M:      Laxman Dewangan <ldewangan@nvidia.com>
15909 R:      Dmitry Osipenko <digetx@gmail.com>
15910 S:      Supported
15911 F:      drivers/i2c/busses/i2c-tegra.c
15912
15913 TEGRA IOMMU DRIVERS
15914 M:      Thierry Reding <thierry.reding@gmail.com>
15915 L:      linux-tegra@vger.kernel.org
15916 S:      Supported
15917 F:      drivers/iommu/tegra*
15918
15919 TEGRA KBC DRIVER
15920 M:      Laxman Dewangan <ldewangan@nvidia.com>
15921 S:      Supported
15922 F:      drivers/input/keyboard/tegra-kbc.c
15923
15924 TEGRA NAND DRIVER
15925 M:      Stefan Agner <stefan@agner.ch>
15926 M:      Lucas Stach <dev@lynxeye.de>
15927 S:      Maintained
15928 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
15929 F:      drivers/mtd/nand/raw/tegra_nand.c
15930
15931 TEGRA PWM DRIVER
15932 M:      Thierry Reding <thierry.reding@gmail.com>
15933 S:      Supported
15934 F:      drivers/pwm/pwm-tegra.c
15935
15936 TEGRA SERIAL DRIVER
15937 M:      Laxman Dewangan <ldewangan@nvidia.com>
15938 S:      Supported
15939 F:      drivers/tty/serial/serial-tegra.c
15940
15941 TEGRA SPI DRIVER
15942 M:      Laxman Dewangan <ldewangan@nvidia.com>
15943 S:      Supported
15944 F:      drivers/spi/spi-tegra*
15945
15946 TEGRA XUSB PADCTL DRIVER
15947 M:      JC Kuo <jckuo@nvidia.com>
15948 S:      Supported
15949 F:      drivers/phy/tegra/xusb*
15950
15951 TEHUTI ETHERNET DRIVER
15952 M:      Andy Gospodarek <andy@greyhouse.net>
15953 L:      netdev@vger.kernel.org
15954 S:      Supported
15955 F:      drivers/net/ethernet/tehuti/*
15956
15957 Telecom Clock Driver for MCPL0010
15958 M:      Mark Gross <mark.gross@intel.com>
15959 S:      Supported
15960 F:      drivers/char/tlclk.c
15961
15962 TENSILICA XTENSA PORT (xtensa)
15963 M:      Chris Zankel <chris@zankel.net>
15964 M:      Max Filippov <jcmvbkbc@gmail.com>
15965 L:      linux-xtensa@linux-xtensa.org
15966 T:      git git://github.com/czankel/xtensa-linux.git
15967 S:      Maintained
15968 F:      arch/xtensa/
15969 F:      drivers/irqchip/irq-xtensa-*
15970
15971 Texas Instruments' System Control Interface (TISCI) Protocol Driver
15972 M:      Nishanth Menon <nm@ti.com>
15973 M:      Tero Kristo <t-kristo@ti.com>
15974 M:      Santosh Shilimkar <ssantosh@kernel.org>
15975 L:      linux-arm-kernel@lists.infradead.org
15976 S:      Maintained
15977 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
15978 F:      drivers/firmware/ti_sci*
15979 F:      include/linux/soc/ti/ti_sci_protocol.h
15980 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
15981 F:      drivers/soc/ti/ti_sci_pm_domains.c
15982 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
15983 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
15984 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
15985 F:      drivers/clk/keystone/sci-clk.c
15986 F:      drivers/reset/reset-ti-sci.c
15987 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.txt
15988 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.txt
15989 F:      drivers/irqchip/irq-ti-sci-intr.c
15990 F:      drivers/irqchip/irq-ti-sci-inta.c
15991 F:      include/linux/soc/ti/ti_sci_inta_msi.h
15992 F:      drivers/soc/ti/ti_sci_inta_msi.c
15993
15994 Texas Instruments ASoC drivers
15995 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
15996 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15997 S:      Maintained
15998 F:      sound/soc/ti/
15999
16000 Texas Instruments' DAC7612 DAC Driver
16001 M:      Ricardo Ribalda <ricardo@ribalda.com>
16002 L:      linux-iio@vger.kernel.org
16003 S:      Supported
16004 F:      drivers/iio/dac/ti-dac7612.c
16005 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
16006
16007 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
16008 M:      Hans Verkuil <hverkuil@xs4all.nl>
16009 L:      linux-media@vger.kernel.org
16010 T:      git git://linuxtv.org/media_tree.git
16011 W:      https://linuxtv.org
16012 S:      Maintained
16013 F:      drivers/media/radio/radio-raremono.c
16014
16015 THERMAL
16016 M:      Zhang Rui <rui.zhang@intel.com>
16017 M:      Eduardo Valentin <edubezval@gmail.com>
16018 R:      Daniel Lezcano <daniel.lezcano@linaro.org>
16019 L:      linux-pm@vger.kernel.org
16020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
16021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
16022 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16023 S:      Supported
16024 F:      drivers/thermal/
16025 F:      include/linux/thermal.h
16026 F:      include/uapi/linux/thermal.h
16027 F:      include/linux/cpu_cooling.h
16028 F:      Documentation/devicetree/bindings/thermal/
16029
16030 THERMAL/CPU_COOLING
16031 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
16032 M:      Viresh Kumar <viresh.kumar@linaro.org>
16033 M:      Javi Merino <javi.merino@kernel.org>
16034 L:      linux-pm@vger.kernel.org
16035 S:      Supported
16036 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
16037 F:      drivers/thermal/cpu_cooling.c
16038 F:      include/linux/cpu_cooling.h
16039
16040 THINKPAD ACPI EXTRAS DRIVER
16041 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
16042 L:      ibm-acpi-devel@lists.sourceforge.net
16043 L:      platform-driver-x86@vger.kernel.org
16044 W:      http://ibm-acpi.sourceforge.net
16045 W:      http://thinkwiki.org/wiki/Ibm-acpi
16046 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
16047 S:      Maintained
16048 F:      drivers/platform/x86/thinkpad_acpi.c
16049
16050 THUNDERBOLT DRIVER
16051 M:      Andreas Noever <andreas.noever@gmail.com>
16052 M:      Michael Jamet <michael.jamet@intel.com>
16053 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16054 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
16056 S:      Maintained
16057 F:      Documentation/admin-guide/thunderbolt.rst
16058 F:      drivers/thunderbolt/
16059 F:      include/linux/thunderbolt.h
16060
16061 THUNDERBOLT NETWORK DRIVER
16062 M:      Michael Jamet <michael.jamet@intel.com>
16063 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16064 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16065 L:      netdev@vger.kernel.org
16066 S:      Maintained
16067 F:      drivers/net/thunderbolt.c
16068
16069 THUNDERX GPIO DRIVER
16070 M:      David Daney <david.daney@cavium.com>
16071 S:      Maintained
16072 F:      drivers/gpio/gpio-thunderx.c
16073
16074 TI AM437X VPFE DRIVER
16075 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
16076 L:      linux-media@vger.kernel.org
16077 W:      https://linuxtv.org
16078 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16079 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16080 S:      Maintained
16081 F:      drivers/media/platform/am437x/
16082
16083 TI BANDGAP AND THERMAL DRIVER
16084 M:      Eduardo Valentin <edubezval@gmail.com>
16085 M:      Keerthy <j-keerthy@ti.com>
16086 L:      linux-pm@vger.kernel.org
16087 L:      linux-omap@vger.kernel.org
16088 S:      Maintained
16089 F:      drivers/thermal/ti-soc-thermal/
16090
16091 TI BQ27XXX POWER SUPPLY DRIVER
16092 R:      Andrew F. Davis <afd@ti.com>
16093 F:      include/linux/power/bq27xxx_battery.h
16094 F:      drivers/power/supply/bq27xxx_battery.c
16095 F:      drivers/power/supply/bq27xxx_battery_i2c.c
16096
16097 TI CDCE706 CLOCK DRIVER
16098 M:      Max Filippov <jcmvbkbc@gmail.com>
16099 S:      Maintained
16100 F:      drivers/clk/clk-cdce706.c
16101
16102 TI CLOCK DRIVER
16103 M:      Tero Kristo <t-kristo@ti.com>
16104 L:      linux-omap@vger.kernel.org
16105 S:      Maintained
16106 F:      drivers/clk/ti/
16107 F:      include/linux/clk/ti.h
16108
16109 TI DAVINCI MACHINE SUPPORT
16110 M:      Sekhar Nori <nsekhar@ti.com>
16111 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
16112 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
16114 S:      Supported
16115 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
16116 F:      arch/arm/mach-davinci/
16117 F:      drivers/i2c/busses/i2c-davinci.c
16118 F:      arch/arm/boot/dts/da850*
16119
16120 TI DAVINCI SERIES CLOCK DRIVER
16121 M:      David Lechner <david@lechnology.com>
16122 R:      Sekhar Nori <nsekhar@ti.com>
16123 S:      Maintained
16124 F:      Documentation/devicetree/bindings/clock/ti/davinci/
16125 F:      drivers/clk/davinci/
16126
16127 TI DAVINCI SERIES GPIO DRIVER
16128 M:      Keerthy <j-keerthy@ti.com>
16129 L:      linux-gpio@vger.kernel.org
16130 S:      Maintained
16131 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
16132 F:      drivers/gpio/gpio-davinci.c
16133
16134 TI DAVINCI SERIES MEDIA DRIVER
16135 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
16136 L:      linux-media@vger.kernel.org
16137 W:      https://linuxtv.org
16138 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16139 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16140 S:      Maintained
16141 F:      drivers/media/platform/davinci/
16142 F:      include/media/davinci/
16143
16144 TI ETHERNET SWITCH DRIVER (CPSW)
16145 R:      Grygorii Strashko <grygorii.strashko@ti.com>
16146 L:      linux-omap@vger.kernel.org
16147 L:      netdev@vger.kernel.org
16148 S:      Maintained
16149 F:      drivers/net/ethernet/ti/cpsw*
16150 F:      drivers/net/ethernet/ti/davinci*
16151
16152 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
16153 M:      Alex Dubov <oakad@yahoo.com>
16154 S:      Maintained
16155 W:      http://tifmxx.berlios.de/
16156 F:      drivers/memstick/host/tifm_ms.c
16157 F:      drivers/misc/tifm*
16158 F:      drivers/mmc/host/tifm_sd.c
16159 F:      include/linux/tifm.h
16160
16161 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
16162 M:      Santosh Shilimkar <ssantosh@kernel.org>
16163 L:      linux-kernel@vger.kernel.org
16164 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16165 S:      Maintained
16166 F:      drivers/soc/ti/*
16167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
16168
16169 TI LM49xxx FAMILY ASoC CODEC DRIVERS
16170 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
16171 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
16172 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16173 S:      Maintained
16174 F:      sound/soc/codecs/lm49453*
16175 F:      sound/soc/codecs/isabelle*
16176
16177 TI LP855x BACKLIGHT DRIVER
16178 M:      Milo Kim <milo.kim@ti.com>
16179 S:      Maintained
16180 F:      Documentation/driver-api/backlight/lp855x-driver.rst
16181 F:      drivers/video/backlight/lp855x_bl.c
16182 F:      include/linux/platform_data/lp855x.h
16183
16184 TI LP8727 CHARGER DRIVER
16185 M:      Milo Kim <milo.kim@ti.com>
16186 S:      Maintained
16187 F:      drivers/power/supply/lp8727_charger.c
16188 F:      include/linux/platform_data/lp8727.h
16189
16190 TI LP8788 MFD DRIVER
16191 M:      Milo Kim <milo.kim@ti.com>
16192 S:      Maintained
16193 F:      drivers/iio/adc/lp8788_adc.c
16194 F:      drivers/leds/leds-lp8788.c
16195 F:      drivers/mfd/lp8788*.c
16196 F:      drivers/power/supply/lp8788-charger.c
16197 F:      drivers/regulator/lp8788-*.c
16198 F:      include/linux/mfd/lp8788*.h
16199
16200 TI NETCP ETHERNET DRIVER
16201 M:      Wingman Kwok <w-kwok2@ti.com>
16202 M:      Murali Karicheri <m-karicheri2@ti.com>
16203 L:      netdev@vger.kernel.org
16204 S:      Maintained
16205 F:      drivers/net/ethernet/ti/netcp*
16206
16207 TI PCM3060 ASoC CODEC DRIVER
16208 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
16209 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16210 S:      Maintained
16211 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
16212 F:      sound/soc/codecs/pcm3060*
16213
16214 TI TAS571X FAMILY ASoC CODEC DRIVER
16215 M:      Kevin Cernekee <cernekee@chromium.org>
16216 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16217 S:      Odd Fixes
16218 F:      sound/soc/codecs/tas571x*
16219
16220 TI TRF7970A NFC DRIVER
16221 M:      Mark Greer <mgreer@animalcreek.com>
16222 L:      linux-wireless@vger.kernel.org
16223 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
16224 S:      Supported
16225 F:      drivers/nfc/trf7970a.c
16226 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
16227
16228 TI TWL4030 SERIES SOC CODEC DRIVER
16229 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
16230 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16231 S:      Maintained
16232 F:      sound/soc/codecs/twl4030*
16233
16234 TI VPE/CAL DRIVERS
16235 M:      Benoit Parrot <bparrot@ti.com>
16236 L:      linux-media@vger.kernel.org
16237 W:      http://linuxtv.org/
16238 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16239 S:      Maintained
16240 F:      drivers/media/platform/ti-vpe/
16241
16242 TI WILINK WIRELESS DRIVERS
16243 L:      linux-wireless@vger.kernel.org
16244 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
16245 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
16246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
16247 S:      Orphan
16248 F:      drivers/net/wireless/ti/
16249 F:      include/linux/wl12xx.h
16250
16251 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
16252 M:      John Stultz <john.stultz@linaro.org>
16253 M:      Thomas Gleixner <tglx@linutronix.de>
16254 R:      Stephen Boyd <sboyd@kernel.org>
16255 L:      linux-kernel@vger.kernel.org
16256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16257 S:      Supported
16258 F:      include/linux/clocksource.h
16259 F:      include/linux/time.h
16260 F:      include/linux/timex.h
16261 F:      include/uapi/linux/time.h
16262 F:      include/uapi/linux/timex.h
16263 F:      kernel/time/clocksource.c
16264 F:      kernel/time/time*.c
16265 F:      kernel/time/alarmtimer.c
16266 F:      kernel/time/ntp.c
16267 F:      tools/testing/selftests/timers/
16268
16269 TIPC NETWORK LAYER
16270 M:      Jon Maloy <jon.maloy@ericsson.com>
16271 M:      Ying Xue <ying.xue@windriver.com>
16272 L:      netdev@vger.kernel.org (core kernel code)
16273 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
16274 W:      http://tipc.sourceforge.net/
16275 S:      Maintained
16276 F:      include/uapi/linux/tipc*.h
16277 F:      net/tipc/
16278
16279 TLAN NETWORK DRIVER
16280 M:      Samuel Chessman <chessman@tux.org>
16281 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
16282 W:      http://sourceforge.net/projects/tlan/
16283 S:      Maintained
16284 F:      Documentation/networking/device_drivers/ti/tlan.txt
16285 F:      drivers/net/ethernet/ti/tlan.*
16286
16287 TM6000 VIDEO4LINUX DRIVER
16288 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16289 L:      linux-media@vger.kernel.org
16290 W:      https://linuxtv.org
16291 T:      git git://linuxtv.org/media_tree.git
16292 S:      Odd fixes
16293 F:      drivers/media/usb/tm6000/
16294 F:      Documentation/media/v4l-drivers/tm6000*
16295
16296 TMIO/SDHI MMC DRIVER
16297 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16298 L:      linux-mmc@vger.kernel.org
16299 S:      Supported
16300 F:      drivers/mmc/host/tmio_mmc*
16301 F:      drivers/mmc/host/renesas_sdhi*
16302 F:      include/linux/mfd/tmio.h
16303
16304 TMP401 HARDWARE MONITOR DRIVER
16305 M:      Guenter Roeck <linux@roeck-us.net>
16306 L:      linux-hwmon@vger.kernel.org
16307 S:      Maintained
16308 F:      Documentation/hwmon/tmp401.rst
16309 F:      drivers/hwmon/tmp401.c
16310
16311 TMPFS (SHMEM FILESYSTEM)
16312 M:      Hugh Dickins <hughd@google.com>
16313 L:      linux-mm@kvack.org
16314 S:      Maintained
16315 F:      include/linux/shmem_fs.h
16316 F:      mm/shmem.c
16317
16318 TOMOYO SECURITY MODULE
16319 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
16320 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
16321 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
16322 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
16323 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
16324 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
16325 W:      https://tomoyo.osdn.jp/
16326 S:      Maintained
16327 F:      security/tomoyo/
16328
16329 TOPSTAR LAPTOP EXTRAS DRIVER
16330 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
16331 L:      platform-driver-x86@vger.kernel.org
16332 S:      Maintained
16333 F:      drivers/platform/x86/topstar-laptop.c
16334
16335 TORTURE-TEST MODULES
16336 M:      Davidlohr Bueso <dave@stgolabs.net>
16337 M:      "Paul E. McKenney" <paulmck@kernel.org>
16338 M:      Josh Triplett <josh@joshtriplett.org>
16339 L:      linux-kernel@vger.kernel.org
16340 S:      Supported
16341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16342 F:      Documentation/RCU/torture.txt
16343 F:      kernel/torture.c
16344 F:      kernel/rcu/rcutorture.c
16345 F:      kernel/rcu/rcuperf.c
16346 F:      kernel/locking/locktorture.c
16347
16348 TOSHIBA ACPI EXTRAS DRIVER
16349 M:      Azael Avalos <coproscefalo@gmail.com>
16350 L:      platform-driver-x86@vger.kernel.org
16351 S:      Maintained
16352 F:      drivers/platform/x86/toshiba_acpi.c
16353
16354 TOSHIBA BLUETOOTH DRIVER
16355 M:      Azael Avalos <coproscefalo@gmail.com>
16356 L:      platform-driver-x86@vger.kernel.org
16357 S:      Maintained
16358 F:      drivers/platform/x86/toshiba_bluetooth.c
16359
16360 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
16361 M:      Azael Avalos <coproscefalo@gmail.com>
16362 L:      platform-driver-x86@vger.kernel.org
16363 S:      Maintained
16364 F:      drivers/platform/x86/toshiba_haps.c
16365
16366 TOSHIBA SMM DRIVER
16367 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
16368 W:      http://www.buzzard.org.uk/toshiba/
16369 S:      Maintained
16370 F:      drivers/char/toshiba.c
16371 F:      include/linux/toshiba.h
16372 F:      include/uapi/linux/toshiba.h
16373
16374 TOSHIBA TC358743 DRIVER
16375 M:      Mats Randgaard <matrandg@cisco.com>
16376 L:      linux-media@vger.kernel.org
16377 S:      Maintained
16378 F:      drivers/media/i2c/tc358743*
16379 F:      include/media/i2c/tc358743.h
16380
16381 TOSHIBA WMI HOTKEYS DRIVER
16382 M:      Azael Avalos <coproscefalo@gmail.com>
16383 L:      platform-driver-x86@vger.kernel.org
16384 S:      Maintained
16385 F:      drivers/platform/x86/toshiba-wmi.c
16386
16387 TPM DEVICE DRIVER
16388 M:      Peter Huewe <peterhuewe@gmx.de>
16389 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
16390 R:      Jason Gunthorpe <jgg@ziepe.ca>
16391 L:      linux-integrity@vger.kernel.org
16392 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
16393 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
16394 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
16395 S:      Maintained
16396 F:      drivers/char/tpm/
16397
16398 TRACING
16399 M:      Steven Rostedt <rostedt@goodmis.org>
16400 M:      Ingo Molnar <mingo@redhat.com>
16401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
16402 S:      Maintained
16403 F:      Documentation/trace/ftrace.rst
16404 F:      arch/*/*/*/ftrace.h
16405 F:      arch/*/kernel/ftrace.c
16406 F:      include/*/ftrace.h
16407 F:      include/linux/trace*.h
16408 F:      include/trace/
16409 F:      kernel/trace/
16410 F:      tools/testing/selftests/ftrace/
16411
16412 TRACING MMIO ACCESSES (MMIOTRACE)
16413 M:      Steven Rostedt <rostedt@goodmis.org>
16414 M:      Ingo Molnar <mingo@kernel.org>
16415 R:      Karol Herbst <karolherbst@gmail.com>
16416 R:      Pekka Paalanen <ppaalanen@gmail.com>
16417 S:      Maintained
16418 L:      linux-kernel@vger.kernel.org
16419 L:      nouveau@lists.freedesktop.org
16420 F:      kernel/trace/trace_mmiotrace.c
16421 F:      include/linux/mmiotrace.h
16422 F:      arch/x86/mm/kmmio.c
16423 F:      arch/x86/mm/mmio-mod.c
16424 F:      arch/x86/mm/testmmiotrace.c
16425
16426 TRIVIAL PATCHES
16427 M:      Jiri Kosina <trivial@kernel.org>
16428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
16429 S:      Maintained
16430 K:      ^Subject:.*(?i)trivial
16431
16432 TEMPO SEMICONDUCTOR DRIVERS
16433 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
16434 S:      Maintained
16435 F:      sound/soc/codecs/tscs*.c
16436 F:      sound/soc/codecs/tscs*.h
16437 F:      Documentation/devicetree/bindings/sound/tscs*.txt
16438
16439 TTY LAYER
16440 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16441 M:      Jiri Slaby <jslaby@suse.com>
16442 S:      Supported
16443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
16444 F:      Documentation/driver-api/serial/
16445 F:      drivers/tty/
16446 F:      drivers/tty/serial/serial_core.c
16447 F:      include/linux/serial_core.h
16448 F:      include/linux/serial.h
16449 F:      include/linux/tty.h
16450 F:      include/uapi/linux/serial_core.h
16451 F:      include/uapi/linux/serial.h
16452 F:      include/uapi/linux/tty.h
16453
16454 TUA9001 MEDIA DRIVER
16455 M:      Antti Palosaari <crope@iki.fi>
16456 L:      linux-media@vger.kernel.org
16457 W:      https://linuxtv.org
16458 W:      http://palosaari.fi/linux/
16459 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16460 T:      git git://linuxtv.org/anttip/media_tree.git
16461 S:      Maintained
16462 F:      drivers/media/tuners/tua9001*
16463
16464 TULIP NETWORK DRIVERS
16465 L:      netdev@vger.kernel.org
16466 L:      linux-parisc@vger.kernel.org
16467 S:      Orphan
16468 F:      drivers/net/ethernet/dec/tulip/
16469
16470 TUN/TAP driver
16471 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
16472 W:      http://vtun.sourceforge.net/tun
16473 S:      Maintained
16474 F:      Documentation/networking/tuntap.txt
16475 F:      arch/um/os-Linux/drivers/
16476
16477 TURBOCHANNEL SUBSYSTEM
16478 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
16479 M:      Ralf Baechle <ralf@linux-mips.org>
16480 L:      linux-mips@vger.kernel.org
16481 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
16482 S:      Maintained
16483 F:      drivers/tc/
16484 F:      include/linux/tc.h
16485
16486 TURBOSTAT UTILITY
16487 M:      "Len Brown" <lenb@kernel.org>
16488 L:      linux-pm@vger.kernel.org
16489 B:      https://bugzilla.kernel.org
16490 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16491 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
16492 S:      Supported
16493 F:      tools/power/x86/turbostat/
16494
16495 TW5864 VIDEO4LINUX DRIVER
16496 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
16497 M:      Anton Sviridenko <anton@corp.bluecherry.net>
16498 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
16499 M:      Andrey Utkin <andrey_utkin@fastmail.com>
16500 L:      linux-media@vger.kernel.org
16501 S:      Supported
16502 F:      drivers/media/pci/tw5864/
16503
16504 TW68 VIDEO4LINUX DRIVER
16505 M:      Hans Verkuil <hverkuil@xs4all.nl>
16506 L:      linux-media@vger.kernel.org
16507 T:      git git://linuxtv.org/media_tree.git
16508 W:      https://linuxtv.org
16509 S:      Odd Fixes
16510 F:      drivers/media/pci/tw68/
16511
16512 TW686X VIDEO4LINUX DRIVER
16513 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16514 L:      linux-media@vger.kernel.org
16515 T:      git git://linuxtv.org/media_tree.git
16516 W:      http://linuxtv.org
16517 S:      Maintained
16518 F:      drivers/media/pci/tw686x/
16519
16520 UBI FILE SYSTEM (UBIFS)
16521 M:      Richard Weinberger <richard@nod.at>
16522 M:      Artem Bityutskiy <dedekind1@gmail.com>
16523 M:      Adrian Hunter <adrian.hunter@intel.com>
16524 L:      linux-mtd@lists.infradead.org
16525 T:      git git://git.infradead.org/ubifs-2.6.git
16526 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
16527 S:      Supported
16528 F:      Documentation/filesystems/ubifs.txt
16529 F:      fs/ubifs/
16530
16531 UCLINUX (M68KNOMMU AND COLDFIRE)
16532 M:      Greg Ungerer <gerg@linux-m68k.org>
16533 W:      http://www.linux-m68k.org/
16534 W:      http://www.uclinux.org/
16535 L:      linux-m68k@lists.linux-m68k.org
16536 L:      uclinux-dev@uclinux.org  (subscribers-only)
16537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
16538 S:      Maintained
16539 F:      arch/m68k/coldfire/
16540 F:      arch/m68k/68*/
16541 F:      arch/m68k/*/*_no.*
16542 F:      arch/m68k/include/asm/*_no.*
16543
16544 UDF FILESYSTEM
16545 M:      Jan Kara <jack@suse.com>
16546 S:      Maintained
16547 F:      Documentation/filesystems/udf.txt
16548 F:      fs/udf/
16549
16550 UDRAW TABLET
16551 M:      Bastien Nocera <hadess@hadess.net>
16552 L:      linux-input@vger.kernel.org
16553 S:      Maintained
16554 F:      drivers/hid/hid-udraw-ps3.c
16555
16556 UFS FILESYSTEM
16557 M:      Evgeniy Dushistov <dushistov@mail.ru>
16558 S:      Maintained
16559 F:      Documentation/admin-guide/ufs.rst
16560 F:      fs/ufs/
16561
16562 UHID USERSPACE HID IO DRIVER:
16563 M:      David Herrmann <dh.herrmann@googlemail.com>
16564 L:      linux-input@vger.kernel.org
16565 S:      Maintained
16566 F:      drivers/hid/uhid.c
16567 F:      include/uapi/linux/uhid.h
16568
16569 ULPI BUS
16570 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
16571 L:      linux-usb@vger.kernel.org
16572 S:      Maintained
16573 F:      drivers/usb/common/ulpi.c
16574 F:      include/linux/ulpi/
16575
16576 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
16577 L:      devel@driverdev.osuosl.org
16578 S:      Obsolete
16579 F:      drivers/staging/uwb/
16580
16581 UNICODE SUBSYSTEM:
16582 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
16583 L:      linux-fsdevel@vger.kernel.org
16584 S:      Supported
16585 F:      fs/unicode/
16586
16587 UNICORE32 ARCHITECTURE:
16588 M:      Guan Xuetao <gxt@pku.edu.cn>
16589 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
16590 S:      Maintained
16591 T:      git git://github.com/gxt/linux.git
16592 F:      arch/unicore32/
16593
16594 UNIFDEF
16595 M:      Tony Finch <dot@dotat.at>
16596 W:      http://dotat.at/prog/unifdef
16597 S:      Maintained
16598 F:      scripts/unifdef.c
16599
16600 UNIFORM CDROM DRIVER
16601 M:      Jens Axboe <axboe@kernel.dk>
16602 W:      http://www.kernel.dk
16603 S:      Maintained
16604 F:      Documentation/cdrom/
16605 F:      drivers/cdrom/cdrom.c
16606 F:      include/linux/cdrom.h
16607 F:      include/uapi/linux/cdrom.h
16608
16609 UNISYS S-PAR DRIVERS
16610 M:      David Kershner <david.kershner@unisys.com>
16611 L:      sparmaintainer@unisys.com (Unisys internal)
16612 S:      Supported
16613 F:      include/linux/visorbus.h
16614 F:      drivers/visorbus/
16615 F:      drivers/staging/unisys/
16616
16617 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
16618 R:      Alim Akhtar <alim.akhtar@samsung.com>
16619 R:      Avri Altman <avri.altman@wdc.com>
16620 R:      Pedro Sousa <pedrom.sousa@synopsys.com>
16621 L:      linux-scsi@vger.kernel.org
16622 S:      Supported
16623 F:      Documentation/scsi/ufs.txt
16624 F:      drivers/scsi/ufs/
16625
16626 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
16627 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
16628 L:      linux-scsi@vger.kernel.org
16629 S:      Supported
16630 F:      drivers/scsi/ufs/*dwc*
16631
16632 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
16633 M:      Stanley Chu <stanley.chu@mediatek.com>
16634 L:      linux-scsi@vger.kernel.org
16635 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16636 S:      Maintained
16637 F:      drivers/scsi/ufs/ufs-mediatek*
16638
16639 UNSORTED BLOCK IMAGES (UBI)
16640 M:      Artem Bityutskiy <dedekind1@gmail.com>
16641 M:      Richard Weinberger <richard@nod.at>
16642 W:      http://www.linux-mtd.infradead.org/
16643 L:      linux-mtd@lists.infradead.org
16644 T:      git git://git.infradead.org/ubifs-2.6.git
16645 S:      Supported
16646 F:      drivers/mtd/ubi/
16647 F:      include/linux/mtd/ubi.h
16648 F:      include/uapi/mtd/ubi-user.h
16649
16650 USB "USBNET" DRIVER FRAMEWORK
16651 M:      Oliver Neukum <oneukum@suse.com>
16652 L:      netdev@vger.kernel.org
16653 W:      http://www.linux-usb.org/usbnet
16654 S:      Maintained
16655 F:      drivers/net/usb/usbnet.c
16656 F:      include/linux/usb/usbnet.h
16657
16658 USB ACM DRIVER
16659 M:      Oliver Neukum <oneukum@suse.com>
16660 L:      linux-usb@vger.kernel.org
16661 S:      Maintained
16662 F:      Documentation/usb/acm.rst
16663 F:      drivers/usb/class/cdc-acm.*
16664
16665 USB AR5523 WIRELESS DRIVER
16666 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
16667 L:      linux-wireless@vger.kernel.org
16668 S:      Maintained
16669 F:      drivers/net/wireless/ath/ar5523/
16670
16671 USB ATTACHED SCSI
16672 M:      Oliver Neukum <oneukum@suse.com>
16673 L:      linux-usb@vger.kernel.org
16674 L:      linux-scsi@vger.kernel.org
16675 S:      Maintained
16676 F:      drivers/usb/storage/uas.c
16677
16678 USB CDC ETHERNET DRIVER
16679 M:      Oliver Neukum <oliver@neukum.org>
16680 L:      linux-usb@vger.kernel.org
16681 S:      Maintained
16682 F:      drivers/net/usb/cdc_*.c
16683 F:      include/uapi/linux/usb/cdc.h
16684
16685 USB CHAOSKEY DRIVER
16686 M:      Keith Packard <keithp@keithp.com>
16687 L:      linux-usb@vger.kernel.org
16688 S:      Maintained
16689 F:      drivers/usb/misc/chaoskey.c
16690
16691 USB CYPRESS C67X00 DRIVER
16692 M:      Peter Korsgaard <jacmet@sunsite.dk>
16693 L:      linux-usb@vger.kernel.org
16694 S:      Maintained
16695 F:      drivers/usb/c67x00/
16696
16697 USB DAVICOM DM9601 DRIVER
16698 M:      Peter Korsgaard <jacmet@sunsite.dk>
16699 L:      netdev@vger.kernel.org
16700 W:      http://www.linux-usb.org/usbnet
16701 S:      Maintained
16702 F:      drivers/net/usb/dm9601.c
16703
16704 USB DIAMOND RIO500 DRIVER
16705 M:      Cesar Miquel <miquel@df.uba.ar>
16706 L:      rio500-users@lists.sourceforge.net
16707 W:      http://rio500.sourceforge.net
16708 S:      Maintained
16709 F:      drivers/usb/misc/rio500*
16710
16711 USB EHCI DRIVER
16712 M:      Alan Stern <stern@rowland.harvard.edu>
16713 L:      linux-usb@vger.kernel.org
16714 S:      Maintained
16715 F:      Documentation/usb/ehci.rst
16716 F:      drivers/usb/host/ehci*
16717
16718 USB GADGET/PERIPHERAL SUBSYSTEM
16719 M:      Felipe Balbi <balbi@kernel.org>
16720 L:      linux-usb@vger.kernel.org
16721 W:      http://www.linux-usb.org/gadget
16722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
16723 S:      Maintained
16724 F:      drivers/usb/gadget/
16725 F:      include/linux/usb/gadget*
16726
16727 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
16728 M:      Jiri Kosina <jikos@kernel.org>
16729 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
16730 L:      linux-usb@vger.kernel.org
16731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
16732 S:      Maintained
16733 F:      Documentation/hid/hiddev.rst
16734 F:      drivers/hid/usbhid/
16735
16736 USB INTEL XHCI ROLE MUX DRIVER
16737 M:      Hans de Goede <hdegoede@redhat.com>
16738 L:      linux-usb@vger.kernel.org
16739 S:      Maintained
16740 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
16741
16742 USB IP DRIVER FOR HISILICON KIRIN
16743 M:      Yu Chen <chenyu56@huawei.com>
16744 M:      Binghui Wang <wangbinghui@hisilicon.com>
16745 L:      linux-usb@vger.kernel.org
16746 S:      Maintained
16747 F:      Documentation/devicetree/bindings/phy/phy-hi3660-usb3.txt
16748 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
16749
16750 USB ISP116X DRIVER
16751 M:      Olav Kongas <ok@artecdesign.ee>
16752 L:      linux-usb@vger.kernel.org
16753 S:      Maintained
16754 F:      drivers/usb/host/isp116x*
16755 F:      include/linux/usb/isp116x.h
16756
16757 USB LAN78XX ETHERNET DRIVER
16758 M:      Woojung Huh <woojung.huh@microchip.com>
16759 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
16760 L:      netdev@vger.kernel.org
16761 S:      Maintained
16762 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
16763 F:      drivers/net/usb/lan78xx.*
16764 F:      include/dt-bindings/net/microchip-lan78xx.h
16765
16766 USB MASS STORAGE DRIVER
16767 M:      Alan Stern <stern@rowland.harvard.edu>
16768 L:      linux-usb@vger.kernel.org
16769 L:      usb-storage@lists.one-eyed-alien.net
16770 S:      Maintained
16771 F:      drivers/usb/storage/
16772
16773 USB MIDI DRIVER
16774 M:      Clemens Ladisch <clemens@ladisch.de>
16775 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16777 S:      Maintained
16778 F:      sound/usb/midi.*
16779
16780 USB NETWORKING DRIVERS
16781 L:      linux-usb@vger.kernel.org
16782 S:      Odd Fixes
16783 F:      drivers/net/usb/
16784
16785 USB OHCI DRIVER
16786 M:      Alan Stern <stern@rowland.harvard.edu>
16787 L:      linux-usb@vger.kernel.org
16788 S:      Maintained
16789 F:      Documentation/usb/ohci.rst
16790 F:      drivers/usb/host/ohci*
16791
16792 USB OTG FSM (Finite State Machine)
16793 M:      Peter Chen <Peter.Chen@nxp.com>
16794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
16795 L:      linux-usb@vger.kernel.org
16796 S:      Maintained
16797 F:      drivers/usb/common/usb-otg-fsm.c
16798
16799 USB OVER IP DRIVER
16800 M:      Valentina Manea <valentina.manea.m@gmail.com>
16801 M:      Shuah Khan <shuah@kernel.org>
16802 M:      Shuah Khan <skhan@linuxfoundation.org>
16803 L:      linux-usb@vger.kernel.org
16804 S:      Maintained
16805 F:      Documentation/usb/usbip_protocol.rst
16806 F:      drivers/usb/usbip/
16807 F:      tools/usb/usbip/
16808 F:      tools/testing/selftests/drivers/usb/usbip/
16809
16810 USB PEGASUS DRIVER
16811 M:      Petko Manolov <petkan@nucleusys.com>
16812 L:      linux-usb@vger.kernel.org
16813 L:      netdev@vger.kernel.org
16814 T:      git git://github.com/petkan/pegasus.git
16815 W:      https://github.com/petkan/pegasus
16816 S:      Maintained
16817 F:      drivers/net/usb/pegasus.*
16818
16819 USB PHY LAYER
16820 M:      Felipe Balbi <balbi@kernel.org>
16821 L:      linux-usb@vger.kernel.org
16822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
16823 S:      Maintained
16824 F:      drivers/usb/phy/
16825
16826 USB PRINTER DRIVER (usblp)
16827 M:      Pete Zaitcev <zaitcev@redhat.com>
16828 L:      linux-usb@vger.kernel.org
16829 S:      Supported
16830 F:      drivers/usb/class/usblp.c
16831
16832 USB QMI WWAN NETWORK DRIVER
16833 M:      Bjørn Mork <bjorn@mork.no>
16834 L:      netdev@vger.kernel.org
16835 S:      Maintained
16836 F:      Documentation/ABI/testing/sysfs-class-net-qmi
16837 F:      drivers/net/usb/qmi_wwan.c
16838
16839 USB RTL8150 DRIVER
16840 M:      Petko Manolov <petkan@nucleusys.com>
16841 L:      linux-usb@vger.kernel.org
16842 L:      netdev@vger.kernel.org
16843 T:      git git://github.com/petkan/rtl8150.git
16844 W:      https://github.com/petkan/rtl8150
16845 S:      Maintained
16846 F:      drivers/net/usb/rtl8150.c
16847
16848 USB SERIAL SUBSYSTEM
16849 M:      Johan Hovold <johan@kernel.org>
16850 L:      linux-usb@vger.kernel.org
16851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
16852 S:      Maintained
16853 F:      Documentation/usb/usb-serial.rst
16854 F:      drivers/usb/serial/
16855 F:      include/linux/usb/serial.h
16856
16857 USB SMSC75XX ETHERNET DRIVER
16858 M:      Steve Glendinning <steve.glendinning@shawell.net>
16859 L:      netdev@vger.kernel.org
16860 S:      Maintained
16861 F:      drivers/net/usb/smsc75xx.*
16862
16863 USB SMSC95XX ETHERNET DRIVER
16864 M:      Steve Glendinning <steve.glendinning@shawell.net>
16865 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
16866 L:      netdev@vger.kernel.org
16867 S:      Maintained
16868 F:      drivers/net/usb/smsc95xx.*
16869
16870 USB SUBSYSTEM
16871 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16872 L:      linux-usb@vger.kernel.org
16873 W:      http://www.linux-usb.org
16874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
16875 S:      Supported
16876 F:      Documentation/devicetree/bindings/usb/
16877 F:      Documentation/usb/
16878 F:      drivers/usb/
16879 F:      include/linux/usb.h
16880 F:      include/linux/usb/
16881
16882 USB TYPEC PI3USB30532 MUX DRIVER
16883 M:      Hans de Goede <hdegoede@redhat.com>
16884 L:      linux-usb@vger.kernel.org
16885 S:      Maintained
16886 F:      drivers/usb/typec/mux/pi3usb30532.c
16887
16888 USB TYPEC CLASS
16889 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
16890 L:      linux-usb@vger.kernel.org
16891 S:      Maintained
16892 F:      Documentation/ABI/testing/sysfs-class-typec
16893 F:      Documentation/driver-api/usb/typec.rst
16894 F:      drivers/usb/typec/
16895 F:      include/linux/usb/typec.h
16896
16897 USB TYPEC BUS FOR ALTERNATE MODES
16898 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
16899 L:      linux-usb@vger.kernel.org
16900 S:      Maintained
16901 F:      Documentation/ABI/testing/sysfs-bus-typec
16902 F:      Documentation/driver-api/usb/typec_bus.rst
16903 F:      drivers/usb/typec/altmodes/
16904 F:      include/linux/usb/typec_altmode.h
16905
16906 USB TYPEC PORT CONTROLLER DRIVERS
16907 M:      Guenter Roeck <linux@roeck-us.net>
16908 L:      linux-usb@vger.kernel.org
16909 S:      Maintained
16910 F:      drivers/usb/typec/tcpm/
16911
16912 USB UHCI DRIVER
16913 M:      Alan Stern <stern@rowland.harvard.edu>
16914 L:      linux-usb@vger.kernel.org
16915 S:      Maintained
16916 F:      drivers/usb/host/uhci*
16917
16918 USB VIDEO CLASS
16919 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
16920 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
16921 L:      linux-media@vger.kernel.org
16922 T:      git git://linuxtv.org/media_tree.git
16923 W:      http://www.ideasonboard.org/uvc/
16924 S:      Maintained
16925 F:      drivers/media/usb/uvc/
16926 F:      include/uapi/linux/uvcvideo.h
16927
16928 USB VISION DRIVER
16929 M:      Hans Verkuil <hverkuil@xs4all.nl>
16930 L:      linux-media@vger.kernel.org
16931 T:      git git://linuxtv.org/media_tree.git
16932 W:      https://linuxtv.org
16933 S:      Odd Fixes
16934 F:      drivers/media/usb/usbvision/
16935
16936 USB WEBCAM GADGET
16937 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
16938 L:      linux-usb@vger.kernel.org
16939 S:      Maintained
16940 F:      drivers/usb/gadget/function/*uvc*
16941 F:      drivers/usb/gadget/legacy/webcam.c
16942 F:      include/uapi/linux/usb/g_uvc.h
16943
16944 USB WIRELESS RNDIS DRIVER (rndis_wlan)
16945 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
16946 L:      linux-wireless@vger.kernel.org
16947 S:      Maintained
16948 F:      drivers/net/wireless/rndis_wlan.c
16949
16950 USB XHCI DRIVER
16951 M:      Mathias Nyman <mathias.nyman@intel.com>
16952 L:      linux-usb@vger.kernel.org
16953 S:      Supported
16954 F:      drivers/usb/host/xhci*
16955 F:      drivers/usb/host/pci-quirks*
16956
16957 USB ZD1201 DRIVER
16958 L:      linux-wireless@vger.kernel.org
16959 W:      http://linux-lc100020.sourceforge.net
16960 S:      Orphan
16961 F:      drivers/net/wireless/zydas/zd1201.*
16962
16963 USB ZR364XX DRIVER
16964 M:      Antoine Jacquet <royale@zerezo.com>
16965 L:      linux-usb@vger.kernel.org
16966 L:      linux-media@vger.kernel.org
16967 T:      git git://linuxtv.org/media_tree.git
16968 W:      http://royale.zerezo.com/zr364xx/
16969 S:      Maintained
16970 F:      Documentation/media/v4l-drivers/zr364xx*
16971 F:      drivers/media/usb/zr364xx/
16972
16973 USER-MODE LINUX (UML)
16974 M:      Jeff Dike <jdike@addtoit.com>
16975 M:      Richard Weinberger <richard@nod.at>
16976 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
16977 L:      linux-um@lists.infradead.org
16978 W:      http://user-mode-linux.sourceforge.net
16979 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
16980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
16981 S:      Maintained
16982 F:      Documentation/virt/uml/
16983 F:      arch/um/
16984 F:      arch/x86/um/
16985 F:      fs/hostfs/
16986
16987 USERSPACE COPYIN/COPYOUT (UIOVEC)
16988 M:      Alexander Viro <viro@zeniv.linux.org.uk>
16989 S:      Maintained
16990 F:      lib/iov_iter.c
16991 F:      include/linux/uio.h
16992
16993 USERSPACE DMA BUFFER DRIVER
16994 M:      Gerd Hoffmann <kraxel@redhat.com>
16995 S:      Maintained
16996 L:      dri-devel@lists.freedesktop.org
16997 F:      drivers/dma-buf/udmabuf.c
16998 F:      include/uapi/linux/udmabuf.h
16999 T:      git git://anongit.freedesktop.org/drm/drm-misc
17000
17001 USERSPACE I/O (UIO)
17002 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17003 S:      Maintained
17004 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17005 F:      Documentation/driver-api/uio-howto.rst
17006 F:      drivers/uio/
17007 F:      include/linux/uio_driver.h
17008
17009 UTIL-LINUX PACKAGE
17010 M:      Karel Zak <kzak@redhat.com>
17011 L:      util-linux@vger.kernel.org
17012 W:      http://en.wikipedia.org/wiki/Util-linux
17013 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
17014 S:      Maintained
17015
17016 UUID HELPERS
17017 M:      Christoph Hellwig <hch@lst.de>
17018 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17019 L:      linux-kernel@vger.kernel.org
17020 T:      git git://git.infradead.org/users/hch/uuid.git
17021 F:      lib/uuid.c
17022 F:      lib/test_uuid.c
17023 F:      include/linux/uuid.h
17024 F:      include/uapi/linux/uuid.h
17025 S:      Maintained
17026
17027 UVESAFB DRIVER
17028 M:      Michal Januszewski <spock@gentoo.org>
17029 L:      linux-fbdev@vger.kernel.org
17030 W:      https://github.com/mjanusz/v86d
17031 S:      Maintained
17032 F:      Documentation/fb/uvesafb.rst
17033 F:      drivers/video/fbdev/uvesafb.*
17034
17035 VF610 NAND DRIVER
17036 M:      Stefan Agner <stefan@agner.ch>
17037 L:      linux-mtd@lists.infradead.org
17038 S:      Supported
17039 F:      drivers/mtd/nand/raw/vf610_nfc.c
17040
17041 VFAT/FAT/MSDOS FILESYSTEM
17042 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
17043 S:      Maintained
17044 F:      Documentation/filesystems/vfat.txt
17045 F:      fs/fat/
17046
17047 VFIO DRIVER
17048 M:      Alex Williamson <alex.williamson@redhat.com>
17049 R:      Cornelia Huck <cohuck@redhat.com>
17050 L:      kvm@vger.kernel.org
17051 T:      git git://github.com/awilliam/linux-vfio.git
17052 S:      Maintained
17053 F:      Documentation/driver-api/vfio.rst
17054 F:      drivers/vfio/
17055 F:      include/linux/vfio.h
17056 F:      include/uapi/linux/vfio.h
17057
17058 VFIO MEDIATED DEVICE DRIVERS
17059 M:      Kirti Wankhede <kwankhede@nvidia.com>
17060 L:      kvm@vger.kernel.org
17061 S:      Maintained
17062 F:      Documentation/driver-api/vfio-mediated-device.rst
17063 F:      drivers/vfio/mdev/
17064 F:      include/linux/mdev.h
17065 F:      samples/vfio-mdev/
17066
17067 VFIO PLATFORM DRIVER
17068 M:      Eric Auger <eric.auger@redhat.com>
17069 L:      kvm@vger.kernel.org
17070 S:      Maintained
17071 F:      drivers/vfio/platform/
17072
17073 VGA_SWITCHEROO
17074 R:      Lukas Wunner <lukas@wunner.de>
17075 S:      Maintained
17076 F:      Documentation/gpu/vga-switcheroo.rst
17077 F:      drivers/gpu/vga/vga_switcheroo.c
17078 F:      include/linux/vga_switcheroo.h
17079 T:      git git://anongit.freedesktop.org/drm/drm-misc
17080
17081 VIA RHINE NETWORK DRIVER
17082 S:      Orphan
17083 F:      drivers/net/ethernet/via/via-rhine.c
17084
17085 VIA SD/MMC CARD CONTROLLER DRIVER
17086 M:      Bruce Chang <brucechang@via.com.tw>
17087 M:      Harald Welte <HaraldWelte@viatech.com>
17088 S:      Maintained
17089 F:      drivers/mmc/host/via-sdmmc.c
17090
17091 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
17092 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
17093 L:      linux-fbdev@vger.kernel.org
17094 S:      Maintained
17095 F:      include/linux/via-core.h
17096 F:      include/linux/via-gpio.h
17097 F:      include/linux/via_i2c.h
17098 F:      drivers/video/fbdev/via/
17099
17100 VIA VELOCITY NETWORK DRIVER
17101 M:      Francois Romieu <romieu@fr.zoreil.com>
17102 L:      netdev@vger.kernel.org
17103 S:      Maintained
17104 F:      drivers/net/ethernet/via/via-velocity.*
17105
17106 VICODEC VIRTUAL CODEC DRIVER
17107 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
17108 L:      linux-media@vger.kernel.org
17109 T:      git git://linuxtv.org/media_tree.git
17110 W:      https://linuxtv.org
17111 S:      Maintained
17112 F:      drivers/media/platform/vicodec/*
17113
17114 VIDEO MULTIPLEXER DRIVER
17115 M:      Philipp Zabel <p.zabel@pengutronix.de>
17116 L:      linux-media@vger.kernel.org
17117 S:      Maintained
17118 F:      drivers/media/platform/video-mux.c
17119
17120 VIDEO I2C POLLING DRIVER
17121 M:      Matt Ranostay <matt.ranostay@konsulko.com>
17122 L:      linux-media@vger.kernel.org
17123 S:      Maintained
17124 F:      drivers/media/i2c/video-i2c.c
17125
17126 VIDEOBUF2 FRAMEWORK
17127 M:      Pawel Osciak <pawel@osciak.com>
17128 M:      Marek Szyprowski <m.szyprowski@samsung.com>
17129 M:      Kyungmin Park <kyungmin.park@samsung.com>
17130 R:      Tomasz Figa <tfiga@chromium.org>
17131 L:      linux-media@vger.kernel.org
17132 S:      Maintained
17133 F:      drivers/media/common/videobuf2/*
17134 F:      include/media/videobuf2-*
17135
17136 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
17137 M:      Helen Koike <helen.koike@collabora.com>
17138 L:      linux-media@vger.kernel.org
17139 T:      git git://linuxtv.org/media_tree.git
17140 W:      https://linuxtv.org
17141 S:      Maintained
17142 F:      drivers/media/platform/vimc/*
17143
17144 VIRT LIB
17145 M:      Alex Williamson <alex.williamson@redhat.com>
17146 M:      Paolo Bonzini <pbonzini@redhat.com>
17147 L:      kvm@vger.kernel.org
17148 S:      Supported
17149 F:      virt/lib/
17150
17151 VIRTIO AND VHOST VSOCK DRIVER
17152 M:      Stefan Hajnoczi <stefanha@redhat.com>
17153 L:      kvm@vger.kernel.org
17154 L:      virtualization@lists.linux-foundation.org
17155 L:      netdev@vger.kernel.org
17156 S:      Maintained
17157 F:      include/linux/virtio_vsock.h
17158 F:      include/uapi/linux/virtio_vsock.h
17159 F:      include/uapi/linux/vsockmon.h
17160 F:      include/uapi/linux/vm_sockets_diag.h
17161 F:      net/vmw_vsock/diag.c
17162 F:      net/vmw_vsock/af_vsock_tap.c
17163 F:      net/vmw_vsock/virtio_transport_common.c
17164 F:      net/vmw_vsock/virtio_transport.c
17165 F:      drivers/net/vsockmon.c
17166 F:      drivers/vhost/vsock.c
17167 F:      tools/testing/vsock/
17168
17169 VIRTIO CONSOLE DRIVER
17170 M:      Amit Shah <amit@kernel.org>
17171 L:      virtualization@lists.linux-foundation.org
17172 S:      Maintained
17173 F:      drivers/char/virtio_console.c
17174 F:      include/linux/virtio_console.h
17175 F:      include/uapi/linux/virtio_console.h
17176
17177 VIRTIO CORE AND NET DRIVERS
17178 M:      "Michael S. Tsirkin" <mst@redhat.com>
17179 M:      Jason Wang <jasowang@redhat.com>
17180 L:      virtualization@lists.linux-foundation.org
17181 S:      Maintained
17182 F:      Documentation/devicetree/bindings/virtio/
17183 F:      drivers/virtio/
17184 F:      tools/virtio/
17185 F:      drivers/net/virtio_net.c
17186 F:      drivers/block/virtio_blk.c
17187 F:      include/linux/virtio*.h
17188 F:      include/uapi/linux/virtio_*.h
17189 F:      drivers/crypto/virtio/
17190 F:      mm/balloon_compaction.c
17191
17192 VIRTIO BLOCK AND SCSI DRIVERS
17193 M:      "Michael S. Tsirkin" <mst@redhat.com>
17194 M:      Jason Wang <jasowang@redhat.com>
17195 R:      Paolo Bonzini <pbonzini@redhat.com>
17196 R:      Stefan Hajnoczi <stefanha@redhat.com>
17197 L:      virtualization@lists.linux-foundation.org
17198 S:      Maintained
17199 F:      drivers/block/virtio_blk.c
17200 F:      drivers/scsi/virtio_scsi.c
17201 F:      include/uapi/linux/virtio_blk.h
17202 F:      include/uapi/linux/virtio_scsi.h
17203 F:      drivers/vhost/scsi.c
17204
17205 VIRTIO CRYPTO DRIVER
17206 M:      Gonglei <arei.gonglei@huawei.com>
17207 L:      virtualization@lists.linux-foundation.org
17208 L:      linux-crypto@vger.kernel.org
17209 S:      Maintained
17210 F:      drivers/crypto/virtio/
17211 F:      include/uapi/linux/virtio_crypto.h
17212
17213 VIRTIO DRIVERS FOR S390
17214 M:      Cornelia Huck <cohuck@redhat.com>
17215 M:      Halil Pasic <pasic@linux.ibm.com>
17216 L:      linux-s390@vger.kernel.org
17217 L:      virtualization@lists.linux-foundation.org
17218 L:      kvm@vger.kernel.org
17219 S:      Supported
17220 F:      drivers/s390/virtio/
17221 F:      arch/s390/include/uapi/asm/virtio-ccw.h
17222
17223 VIRTIO GPU DRIVER
17224 M:      David Airlie <airlied@linux.ie>
17225 M:      Gerd Hoffmann <kraxel@redhat.com>
17226 L:      dri-devel@lists.freedesktop.org
17227 L:      virtualization@lists.linux-foundation.org
17228 T:      git git://anongit.freedesktop.org/drm/drm-misc
17229 S:      Maintained
17230 F:      drivers/gpu/drm/virtio/
17231 F:      include/uapi/linux/virtio_gpu.h
17232
17233 VIRTIO HOST (VHOST)
17234 M:      "Michael S. Tsirkin" <mst@redhat.com>
17235 M:      Jason Wang <jasowang@redhat.com>
17236 L:      kvm@vger.kernel.org
17237 L:      virtualization@lists.linux-foundation.org
17238 L:      netdev@vger.kernel.org
17239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
17240 S:      Maintained
17241 F:      drivers/vhost/
17242 F:      include/uapi/linux/vhost.h
17243
17244 VIRTIO INPUT DRIVER
17245 M:      Gerd Hoffmann <kraxel@redhat.com>
17246 S:      Maintained
17247 F:      drivers/virtio/virtio_input.c
17248 F:      include/uapi/linux/virtio_input.h
17249
17250 VIRTIO IOMMU DRIVER
17251 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
17252 L:      virtualization@lists.linux-foundation.org
17253 S:      Maintained
17254 F:      drivers/iommu/virtio-iommu.c
17255 F:      include/uapi/linux/virtio_iommu.h
17256
17257 VIRTUAL BOX GUEST DEVICE DRIVER
17258 M:      Hans de Goede <hdegoede@redhat.com>
17259 M:      Arnd Bergmann <arnd@arndb.de>
17260 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17261 S:      Maintained
17262 F:      include/linux/vbox_utils.h
17263 F:      include/uapi/linux/vbox*.h
17264 F:      drivers/virt/vboxguest/
17265
17266 VIRTUAL SERIO DEVICE DRIVER
17267 M:      Stephen Chandler Paul <thatslyude@gmail.com>
17268 S:      Maintained
17269 F:      drivers/input/serio/userio.c
17270 F:      include/uapi/linux/userio.h
17271
17272 VIVID VIRTUAL VIDEO DRIVER
17273 M:      Hans Verkuil <hverkuil@xs4all.nl>
17274 L:      linux-media@vger.kernel.org
17275 T:      git git://linuxtv.org/media_tree.git
17276 W:      https://linuxtv.org
17277 S:      Maintained
17278 F:      drivers/media/platform/vivid/*
17279
17280 VLYNQ BUS
17281 M:      Florian Fainelli <f.fainelli@gmail.com>
17282 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
17283 S:      Maintained
17284 F:      drivers/vlynq/vlynq.c
17285 F:      include/linux/vlynq.h
17286
17287 VME SUBSYSTEM
17288 M:      Martyn Welch <martyn@welchs.me.uk>
17289 M:      Manohar Vanga <manohar.vanga@gmail.com>
17290 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17291 L:      devel@driverdev.osuosl.org
17292 S:      Maintained
17293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17294 F:      Documentation/driver-api/vme.rst
17295 F:      drivers/staging/vme/
17296 F:      drivers/vme/
17297 F:      include/linux/vme*
17298
17299 VMWARE BALLOON DRIVER
17300 M:      Nadav Amit <namit@vmware.com>
17301 M:      "VMware, Inc." <pv-drivers@vmware.com>
17302 L:      linux-kernel@vger.kernel.org
17303 S:      Maintained
17304 F:      drivers/misc/vmw_balloon.c
17305
17306 VMWARE HYPERVISOR INTERFACE
17307 M:      Thomas Hellstrom <thellstrom@vmware.com>
17308 M:      "VMware, Inc." <pv-drivers@vmware.com>
17309 L:      virtualization@lists.linux-foundation.org
17310 S:      Supported
17311 F:      arch/x86/kernel/cpu/vmware.c
17312 F:      arch/x86/include/asm/vmware.h
17313
17314 VMWARE PVRDMA DRIVER
17315 M:      Adit Ranadive <aditr@vmware.com>
17316 M:      VMware PV-Drivers <pv-drivers@vmware.com>
17317 L:      linux-rdma@vger.kernel.org
17318 S:      Maintained
17319 F:      drivers/infiniband/hw/vmw_pvrdma/
17320
17321 VMware PVSCSI driver
17322 M:      Jim Gill <jgill@vmware.com>
17323 M:      VMware PV-Drivers <pv-drivers@vmware.com>
17324 L:      linux-scsi@vger.kernel.org
17325 S:      Maintained
17326 F:      drivers/scsi/vmw_pvscsi.c
17327 F:      drivers/scsi/vmw_pvscsi.h
17328
17329 VMWARE VMMOUSE SUBDRIVER
17330 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
17331 M:      "VMware, Inc." <pv-drivers@vmware.com>
17332 L:      linux-input@vger.kernel.org
17333 S:      Maintained
17334 F:      drivers/input/mouse/vmmouse.c
17335 F:      drivers/input/mouse/vmmouse.h
17336
17337 VMWARE VMXNET3 ETHERNET DRIVER
17338 M:      Ronak Doshi <doshir@vmware.com>
17339 M:      "VMware, Inc." <pv-drivers@vmware.com>
17340 L:      netdev@vger.kernel.org
17341 S:      Maintained
17342 F:      drivers/net/vmxnet3/
17343
17344 VOCORE VOCORE2 BOARD
17345 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
17346 L:      linux-mips@vger.kernel.org
17347 S:      Maintained
17348 F:      arch/mips/boot/dts/ralink/vocore2.dts
17349
17350 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
17351 M:      Liam Girdwood <lgirdwood@gmail.com>
17352 M:      Mark Brown <broonie@kernel.org>
17353 L:      linux-kernel@vger.kernel.org
17354 W:      http://www.slimlogic.co.uk/?p=48
17355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
17356 S:      Supported
17357 F:      Documentation/devicetree/bindings/regulator/
17358 F:      Documentation/power/regulator/
17359 F:      drivers/regulator/
17360 F:      include/dt-bindings/regulator/
17361 F:      include/linux/regulator/
17362 K:      regulator_get_optional
17363
17364 VRF
17365 M:      David Ahern <dsa@cumulusnetworks.com>
17366 M:      Shrijeet Mukherjee <shrijeet@gmail.com>
17367 L:      netdev@vger.kernel.org
17368 S:      Maintained
17369 F:      drivers/net/vrf.c
17370 F:      Documentation/networking/vrf.txt
17371
17372 VT1211 HARDWARE MONITOR DRIVER
17373 M:      Juerg Haefliger <juergh@gmail.com>
17374 L:      linux-hwmon@vger.kernel.org
17375 S:      Maintained
17376 F:      Documentation/hwmon/vt1211.rst
17377 F:      drivers/hwmon/vt1211.c
17378
17379 VT8231 HARDWARE MONITOR DRIVER
17380 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
17381 L:      linux-hwmon@vger.kernel.org
17382 S:      Maintained
17383 F:      drivers/hwmon/vt8231.c
17384
17385 VUB300 USB to SDIO/SD/MMC bridge chip
17386 M:      Tony Olech <tony.olech@elandigitalsystems.com>
17387 L:      linux-mmc@vger.kernel.org
17388 L:      linux-usb@vger.kernel.org
17389 S:      Supported
17390 F:      drivers/mmc/host/vub300.c
17391
17392 W1 DALLAS'S 1-WIRE BUS
17393 M:      Evgeniy Polyakov <zbr@ioremap.net>
17394 S:      Maintained
17395 F:      Documentation/devicetree/bindings/w1/
17396 F:      Documentation/w1/
17397 F:      drivers/w1/
17398 F:      include/linux/w1.h
17399
17400 W83791D HARDWARE MONITORING DRIVER
17401 M:      Marc Hulsman <m.hulsman@tudelft.nl>
17402 L:      linux-hwmon@vger.kernel.org
17403 S:      Maintained
17404 F:      Documentation/hwmon/w83791d.rst
17405 F:      drivers/hwmon/w83791d.c
17406
17407 W83793 HARDWARE MONITORING DRIVER
17408 M:      Rudolf Marek <r.marek@assembler.cz>
17409 L:      linux-hwmon@vger.kernel.org
17410 S:      Maintained
17411 F:      Documentation/hwmon/w83793.rst
17412 F:      drivers/hwmon/w83793.c
17413
17414 W83795 HARDWARE MONITORING DRIVER
17415 M:      Jean Delvare <jdelvare@suse.com>
17416 L:      linux-hwmon@vger.kernel.org
17417 S:      Maintained
17418 F:      drivers/hwmon/w83795.c
17419
17420 W83L51xD SD/MMC CARD INTERFACE DRIVER
17421 M:      Pierre Ossman <pierre@ossman.eu>
17422 S:      Maintained
17423 F:      drivers/mmc/host/wbsd.*
17424
17425 WACOM PROTOCOL 4 SERIAL TABLETS
17426 M:      Julian Squires <julian@cipht.net>
17427 M:      Hans de Goede <hdegoede@redhat.com>
17428 L:      linux-input@vger.kernel.org
17429 S:      Maintained
17430 F:      drivers/input/tablet/wacom_serial4.c
17431
17432 WATCHDOG DEVICE DRIVERS
17433 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
17434 M:      Guenter Roeck <linux@roeck-us.net>
17435 L:      linux-watchdog@vger.kernel.org
17436 W:      http://www.linux-watchdog.org/
17437 T:      git git://www.linux-watchdog.org/linux-watchdog.git
17438 S:      Maintained
17439 F:      Documentation/devicetree/bindings/watchdog/
17440 F:      Documentation/watchdog/
17441 F:      drivers/watchdog/
17442 F:      include/linux/watchdog.h
17443 F:      include/uapi/linux/watchdog.h
17444
17445 WHISKEYCOVE PMIC GPIO DRIVER
17446 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
17447 L:      linux-gpio@vger.kernel.org
17448 S:      Maintained
17449 F:      drivers/gpio/gpio-wcove.c
17450
17451 WHWAVE RTC DRIVER
17452 M:      Dianlong Li <long17.cool@163.com>
17453 L:      linux-rtc@vger.kernel.org
17454 S:      Maintained
17455 F:      drivers/rtc/rtc-sd3078.c
17456
17457 WIIMOTE HID DRIVER
17458 M:      David Herrmann <dh.herrmann@googlemail.com>
17459 L:      linux-input@vger.kernel.org
17460 S:      Maintained
17461 F:      drivers/hid/hid-wiimote*
17462
17463 WILOCITY WIL6210 WIRELESS DRIVER
17464 M:      Maya Erez <merez@codeaurora.org>
17465 L:      linux-wireless@vger.kernel.org
17466 L:      wil6210@qti.qualcomm.com
17467 S:      Supported
17468 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
17469 F:      drivers/net/wireless/ath/wil6210/
17470
17471 WIMAX STACK
17472 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
17473 M:      linux-wimax@intel.com
17474 L:      wimax@linuxwimax.org (subscribers-only)
17475 S:      Supported
17476 W:      http://linuxwimax.org
17477 F:      Documentation/admin-guide/wimax/wimax.rst
17478 F:      include/linux/wimax/debug.h
17479 F:      include/net/wimax.h
17480 F:      include/uapi/linux/wimax.h
17481 F:      net/wimax/
17482
17483 WINBOND CIR DRIVER
17484 M:      David Härdeman <david@hardeman.nu>
17485 S:      Maintained
17486 F:      drivers/media/rc/winbond-cir.c
17487
17488 RCMM REMOTE CONTROLS DECODER
17489 M:      Patrick Lerda <patrick9876@free.fr>
17490 S:      Maintained
17491 F:      drivers/media/rc/ir-rcmm-decoder.c
17492
17493 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
17494 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
17495 L:      linux-watchdog@vger.kernel.org
17496 S:      Maintained
17497 F:      drivers/watchdog/ebc-c384_wdt.c
17498
17499 WINSYSTEMS WS16C48 GPIO DRIVER
17500 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
17501 L:      linux-gpio@vger.kernel.org
17502 S:      Maintained
17503 F:      drivers/gpio/gpio-ws16c48.c
17504
17505 WISTRON LAPTOP BUTTON DRIVER
17506 M:      Miloslav Trmac <mitr@volny.cz>
17507 S:      Maintained
17508 F:      drivers/input/misc/wistron_btns.c
17509
17510 WL3501 WIRELESS PCMCIA CARD DRIVER
17511 L:      linux-wireless@vger.kernel.org
17512 S:      Odd fixes
17513 F:      drivers/net/wireless/wl3501*
17514
17515 WOLFSON MICROELECTRONICS DRIVERS
17516 L:      patches@opensource.cirrus.com
17517 T:      git https://github.com/CirrusLogic/linux-drivers.git
17518 W:      https://github.com/CirrusLogic/linux-drivers/wiki
17519 S:      Supported
17520 F:      Documentation/hwmon/wm83??.rst
17521 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
17522 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
17523 F:      Documentation/devicetree/bindings/mfd/arizona.txt
17524 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
17525 F:      Documentation/devicetree/bindings/sound/wlf,arizona.txt
17526 F:      arch/arm/mach-s3c64xx/mach-crag6410*
17527 F:      drivers/clk/clk-wm83*.c
17528 F:      drivers/extcon/extcon-arizona.c
17529 F:      drivers/leds/leds-wm83*.c
17530 F:      drivers/gpio/gpio-*wm*.c
17531 F:      drivers/gpio/gpio-arizona.c
17532 F:      drivers/hwmon/wm83??-hwmon.c
17533 F:      drivers/input/misc/wm831x-on.c
17534 F:      drivers/input/touchscreen/wm831x-ts.c
17535 F:      drivers/input/touchscreen/wm97*.c
17536 F:      drivers/mfd/arizona*
17537 F:      drivers/mfd/wm*.c
17538 F:      drivers/mfd/cs47l24*
17539 F:      drivers/power/supply/wm83*.c
17540 F:      drivers/rtc/rtc-wm83*.c
17541 F:      drivers/regulator/wm8*.c
17542 F:      drivers/regulator/arizona*
17543 F:      drivers/video/backlight/wm83*_bl.c
17544 F:      drivers/watchdog/wm83*_wdt.c
17545 F:      include/linux/mfd/arizona/
17546 F:      include/linux/mfd/wm831x/
17547 F:      include/linux/mfd/wm8350/
17548 F:      include/linux/mfd/wm8400*
17549 F:      include/linux/regulator/arizona*
17550 F:      include/linux/wm97xx.h
17551 F:      include/sound/wm????.h
17552 F:      sound/soc/codecs/arizona.?
17553 F:      sound/soc/codecs/wm*
17554 F:      sound/soc/codecs/cs47l24*
17555
17556 WORKQUEUE
17557 M:      Tejun Heo <tj@kernel.org>
17558 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
17560 S:      Maintained
17561 F:      include/linux/workqueue.h
17562 F:      kernel/workqueue.c
17563 F:      Documentation/core-api/workqueue.rst
17564
17565 X-POWERS AXP288 PMIC DRIVERS
17566 M:      Hans de Goede <hdegoede@redhat.com>
17567 S:      Maintained
17568 N:      axp288
17569 F:      drivers/acpi/pmic/intel_pmic_xpower.c
17570
17571 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
17572 M:      Chen-Yu Tsai <wens@csie.org>
17573 L:      linux-kernel@vger.kernel.org
17574 S:      Maintained
17575 N:      axp[128]
17576
17577 X.25 NETWORK LAYER
17578 M:      Andrew Hendry <andrew.hendry@gmail.com>
17579 L:      linux-x25@vger.kernel.org
17580 S:      Odd Fixes
17581 F:      Documentation/networking/x25*
17582 F:      include/net/x25*
17583 F:      net/x25/
17584
17585 X86 ARCHITECTURE (32-BIT AND 64-BIT)
17586 M:      Thomas Gleixner <tglx@linutronix.de>
17587 M:      Ingo Molnar <mingo@redhat.com>
17588 M:      Borislav Petkov <bp@alien8.de>
17589 R:      "H. Peter Anvin" <hpa@zytor.com>
17590 M:      x86@kernel.org
17591 L:      linux-kernel@vger.kernel.org
17592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
17593 S:      Maintained
17594 F:      Documentation/devicetree/bindings/x86/
17595 F:      Documentation/x86/
17596 F:      arch/x86/
17597
17598 X86 ENTRY CODE
17599 M:      Andy Lutomirski <luto@kernel.org>
17600 L:      linux-kernel@vger.kernel.org
17601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
17602 S:      Maintained
17603 F:      arch/x86/entry/
17604
17605 X86 MCE INFRASTRUCTURE
17606 M:      Tony Luck <tony.luck@intel.com>
17607 M:      Borislav Petkov <bp@alien8.de>
17608 L:      linux-edac@vger.kernel.org
17609 S:      Maintained
17610 F:      arch/x86/kernel/cpu/mce/*
17611
17612 X86 MICROCODE UPDATE SUPPORT
17613 M:      Borislav Petkov <bp@alien8.de>
17614 S:      Maintained
17615 F:      arch/x86/kernel/cpu/microcode/*
17616
17617 X86 MM
17618 M:      Dave Hansen <dave.hansen@linux.intel.com>
17619 M:      Andy Lutomirski <luto@kernel.org>
17620 M:      Peter Zijlstra <peterz@infradead.org>
17621 L:      linux-kernel@vger.kernel.org
17622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
17623 S:      Maintained
17624 F:      arch/x86/mm/
17625
17626 X86 PLATFORM DRIVERS
17627 M:      Darren Hart <dvhart@infradead.org>
17628 M:      Andy Shevchenko <andy@infradead.org>
17629 L:      platform-driver-x86@vger.kernel.org
17630 T:      git git://git.infradead.org/linux-platform-drivers-x86.git
17631 S:      Odd Fixes
17632 F:      drivers/platform/x86/
17633 F:      drivers/platform/olpc/
17634
17635 X86 PLATFORM DRIVERS - ARCH
17636 R:      Darren Hart <dvhart@infradead.org>
17637 R:      Andy Shevchenko <andy@infradead.org>
17638 L:      platform-driver-x86@vger.kernel.org
17639 L:      x86@kernel.org
17640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
17641 S:      Maintained
17642 F:      arch/x86/platform
17643
17644 X86 VDSO
17645 M:      Andy Lutomirski <luto@kernel.org>
17646 L:      linux-kernel@vger.kernel.org
17647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
17648 S:      Maintained
17649 F:      arch/x86/entry/vdso/
17650
17651 XARRAY
17652 M:      Matthew Wilcox <willy@infradead.org>
17653 L:      linux-fsdevel@vger.kernel.org
17654 S:      Supported
17655 F:      Documentation/core-api/xarray.rst
17656 F:      lib/idr.c
17657 F:      lib/xarray.c
17658 F:      include/linux/idr.h
17659 F:      include/linux/xarray.h
17660 F:      tools/testing/radix-tree
17661
17662 XBOX DVD IR REMOTE
17663 M:      Benjamin Valentin <benpicco@googlemail.com>
17664 S:      Maintained
17665 F:      drivers/media/rc/xbox_remote.c
17666 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
17667
17668 XC2028/3028 TUNER DRIVER
17669 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17670 L:      linux-media@vger.kernel.org
17671 W:      https://linuxtv.org
17672 T:      git git://linuxtv.org/media_tree.git
17673 S:      Maintained
17674 F:      drivers/media/tuners/tuner-xc2028.*
17675
17676 XDP (eXpress Data Path)
17677 M:      Alexei Starovoitov <ast@kernel.org>
17678 M:      Daniel Borkmann <daniel@iogearbox.net>
17679 M:      David S. Miller <davem@davemloft.net>
17680 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
17681 M:      Jesper Dangaard Brouer <hawk@kernel.org>
17682 M:      John Fastabend <john.fastabend@gmail.com>
17683 L:      netdev@vger.kernel.org
17684 L:      bpf@vger.kernel.org
17685 S:      Supported
17686 F:      net/core/xdp.c
17687 F:      include/net/xdp.h
17688 F:      kernel/bpf/devmap.c
17689 F:      kernel/bpf/cpumap.c
17690 F:      include/trace/events/xdp.h
17691 K:      xdp
17692 N:      xdp
17693
17694 XDP SOCKETS (AF_XDP)
17695 M:      Björn Töpel <bjorn.topel@intel.com>
17696 M:      Magnus Karlsson <magnus.karlsson@intel.com>
17697 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
17698 L:      netdev@vger.kernel.org
17699 L:      bpf@vger.kernel.org
17700 S:      Maintained
17701 F:      kernel/bpf/xskmap.c
17702 F:      net/xdp/
17703
17704 XEN BLOCK SUBSYSTEM
17705 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
17706 M:      Roger Pau Monné <roger.pau@citrix.com>
17707 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17708 S:      Supported
17709 F:      drivers/block/xen-blkback/*
17710 F:      drivers/block/xen*
17711
17712 XEN HYPERVISOR ARM
17713 M:      Stefano Stabellini <sstabellini@kernel.org>
17714 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17715 S:      Maintained
17716 F:      arch/arm/xen/
17717 F:      arch/arm/include/asm/xen/
17718
17719 XEN HYPERVISOR ARM64
17720 M:      Stefano Stabellini <sstabellini@kernel.org>
17721 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17722 S:      Maintained
17723 F:      arch/arm64/xen/
17724 F:      arch/arm64/include/asm/xen/
17725
17726 XEN HYPERVISOR INTERFACE
17727 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
17728 M:      Juergen Gross <jgross@suse.com>
17729 R:      Stefano Stabellini <sstabellini@kernel.org>
17730 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
17732 S:      Supported
17733 F:      arch/x86/xen/
17734 F:      arch/x86/platform/pvh/
17735 F:      drivers/*/xen-*front.c
17736 F:      drivers/xen/
17737 F:      arch/x86/include/asm/xen/
17738 F:      arch/x86/include/asm/pvclock-abi.h
17739 F:      include/xen/
17740 F:      include/uapi/xen/
17741 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
17742 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
17743
17744 XEN NETWORK BACKEND DRIVER
17745 M:      Wei Liu <wei.liu@kernel.org>
17746 M:      Paul Durrant <paul@xen.org>
17747 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17748 L:      netdev@vger.kernel.org
17749 S:      Supported
17750 F:      drivers/net/xen-netback/*
17751
17752 XEN PCI SUBSYSTEM
17753 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
17754 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17755 S:      Supported
17756 F:      arch/x86/pci/*xen*
17757 F:      drivers/pci/*xen*
17758
17759 XEN PVSCSI DRIVERS
17760 M:      Juergen Gross <jgross@suse.com>
17761 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17762 L:      linux-scsi@vger.kernel.org
17763 S:      Supported
17764 F:      drivers/scsi/xen-scsifront.c
17765 F:      drivers/xen/xen-scsiback.c
17766 F:      include/xen/interface/io/vscsiif.h
17767
17768 XEN SWIOTLB SUBSYSTEM
17769 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
17770 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17771 L:      iommu@lists.linux-foundation.org
17772 S:      Supported
17773 F:      arch/x86/xen/*swiotlb*
17774 F:      drivers/xen/*swiotlb*
17775
17776 XEN SOUND FRONTEND DRIVER
17777 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
17778 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17779 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17780 S:      Supported
17781 F:      sound/xen/*
17782
17783 XFS FILESYSTEM
17784 M:      Darrick J. Wong <darrick.wong@oracle.com>
17785 M:      linux-xfs@vger.kernel.org
17786 L:      linux-xfs@vger.kernel.org
17787 W:      http://xfs.org/
17788 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
17789 S:      Supported
17790 F:      Documentation/admin-guide/xfs.rst
17791 F:      Documentation/ABI/testing/sysfs-fs-xfs
17792 F:      Documentation/filesystems/xfs-delayed-logging-design.txt
17793 F:      Documentation/filesystems/xfs-self-describing-metadata.txt
17794 F:      fs/xfs/
17795 F:      include/uapi/linux/dqblk_xfs.h
17796 F:      include/uapi/linux/fsmap.h
17797
17798 XILINX AXI ETHERNET DRIVER
17799 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
17800 S:      Maintained
17801 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
17802
17803 XILINX UARTLITE SERIAL DRIVER
17804 M:      Peter Korsgaard <jacmet@sunsite.dk>
17805 L:      linux-serial@vger.kernel.org
17806 S:      Maintained
17807 F:      drivers/tty/serial/uartlite.c
17808
17809 XILINX VIDEO IP CORES
17810 M:      Hyun Kwon <hyun.kwon@xilinx.com>
17811 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17812 L:      linux-media@vger.kernel.org
17813 T:      git git://linuxtv.org/media_tree.git
17814 S:      Supported
17815 F:      Documentation/devicetree/bindings/media/xilinx/
17816 F:      drivers/media/platform/xilinx/
17817 F:      include/uapi/linux/xilinx-v4l2-controls.h
17818
17819 XILINX SD-FEC IP CORES
17820 M:      Derek Kiernan <derek.kiernan@xilinx.com>
17821 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
17822 S:      Maintained
17823 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
17824 F:      Documentation/misc-devices/xilinx_sdfec.rst
17825 F:      drivers/misc/xilinx_sdfec.c
17826 F:      drivers/misc/Kconfig
17827 F:      drivers/misc/Makefile
17828 F:      include/uapi/misc/xilinx_sdfec.h
17829
17830 XILLYBUS DRIVER
17831 M:      Eli Billauer <eli.billauer@gmail.com>
17832 L:      linux-kernel@vger.kernel.org
17833 S:      Supported
17834 F:      drivers/char/xillybus/
17835
17836 XLP9XX I2C DRIVER
17837 M:      George Cherian <george.cherian@cavium.com>
17838 M:      Jan Glauber <jglauber@cavium.com>
17839 L:      linux-i2c@vger.kernel.org
17840 W:      http://www.cavium.com
17841 S:      Supported
17842 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
17843 F:      drivers/i2c/busses/i2c-xlp9xx.c
17844
17845 XRA1403 GPIO EXPANDER
17846 M:      Nandor Han <nandor.han@ge.com>
17847 M:      Semi Malinen <semi.malinen@ge.com>
17848 L:      linux-gpio@vger.kernel.org
17849 S:      Maintained
17850 F:      drivers/gpio/gpio-xra1403.c
17851 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
17852
17853 XTENSA XTFPGA PLATFORM SUPPORT
17854 M:      Max Filippov <jcmvbkbc@gmail.com>
17855 L:      linux-xtensa@linux-xtensa.org
17856 S:      Maintained
17857 F:      drivers/spi/spi-xtensa-xtfpga.c
17858 F:      sound/soc/xtensa/xtfpga-i2s.c
17859
17860 YAM DRIVER FOR AX.25
17861 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
17862 L:      linux-hams@vger.kernel.org
17863 S:      Maintained
17864 F:      drivers/net/hamradio/yam*
17865 F:      include/linux/yam.h
17866
17867 YAMA SECURITY MODULE
17868 M:      Kees Cook <keescook@chromium.org>
17869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
17870 S:      Supported
17871 F:      security/yama/
17872 F:      Documentation/admin-guide/LSM/Yama.rst
17873
17874 YEALINK PHONE DRIVER
17875 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
17876 L:      usbb2k-api-dev@nongnu.org
17877 S:      Maintained
17878 F:      Documentation/input/devices/yealink.rst
17879 F:      drivers/input/misc/yealink.*
17880
17881 Z8530 DRIVER FOR AX.25
17882 M:      Joerg Reuter <jreuter@yaina.de>
17883 W:      http://yaina.de/jreuter/
17884 W:      http://www.qsl.net/dl1bke/
17885 L:      linux-hams@vger.kernel.org
17886 S:      Maintained
17887 F:      Documentation/networking/z8530drv.txt
17888 F:      drivers/net/hamradio/*scc.c
17889 F:      drivers/net/hamradio/z8530.h
17890
17891 ZBUD COMPRESSED PAGE ALLOCATOR
17892 M:      Seth Jennings <sjenning@redhat.com>
17893 M:      Dan Streetman <ddstreet@ieee.org>
17894 L:      linux-mm@kvack.org
17895 S:      Maintained
17896 F:      mm/zbud.c
17897 F:      include/linux/zbud.h
17898
17899 ZD1211RW WIRELESS DRIVER
17900 M:      Daniel Drake <dsd@gentoo.org>
17901 M:      Ulrich Kunitz <kune@deine-taler.de>
17902 W:      http://zd1211.ath.cx/wiki/DriverRewrite
17903 L:      linux-wireless@vger.kernel.org
17904 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
17905 S:      Maintained
17906 F:      drivers/net/wireless/zydas/zd1211rw/
17907
17908 ZD1301 MEDIA DRIVER
17909 M:      Antti Palosaari <crope@iki.fi>
17910 L:      linux-media@vger.kernel.org
17911 W:      https://linuxtv.org/
17912 W:      http://palosaari.fi/linux/
17913 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
17914 S:      Maintained
17915 F:      drivers/media/usb/dvb-usb-v2/zd1301*
17916
17917 ZD1301_DEMOD MEDIA DRIVER
17918 M:      Antti Palosaari <crope@iki.fi>
17919 L:      linux-media@vger.kernel.org
17920 W:      https://linuxtv.org/
17921 W:      http://palosaari.fi/linux/
17922 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
17923 S:      Maintained
17924 F:      drivers/media/dvb-frontends/zd1301_demod*
17925
17926 ZHAOXIN PROCESSOR SUPPORT
17927 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
17928 L:      linux-kernel@vger.kernel.org
17929 S:      Maintained
17930 F:      arch/x86/kernel/cpu/zhaoxin.c
17931
17932 ZPOOL COMPRESSED PAGE STORAGE API
17933 M:      Dan Streetman <ddstreet@ieee.org>
17934 L:      linux-mm@kvack.org
17935 S:      Maintained
17936 F:      mm/zpool.c
17937 F:      include/linux/zpool.h
17938
17939 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
17940 M:      Minchan Kim <minchan@kernel.org>
17941 M:      Nitin Gupta <ngupta@vflare.org>
17942 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
17943 L:      linux-kernel@vger.kernel.org
17944 S:      Maintained
17945 F:      drivers/block/zram/
17946 F:      Documentation/admin-guide/blockdev/zram.rst
17947
17948 ZS DECSTATION Z85C30 SERIAL DRIVER
17949 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
17950 S:      Maintained
17951 F:      drivers/tty/serial/zs.*
17952
17953 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
17954 M:      Minchan Kim <minchan@kernel.org>
17955 M:      Nitin Gupta <ngupta@vflare.org>
17956 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
17957 L:      linux-mm@kvack.org
17958 S:      Maintained
17959 F:      mm/zsmalloc.c
17960 F:      include/linux/zsmalloc.h
17961 F:      Documentation/vm/zsmalloc.rst
17962
17963 ZSWAP COMPRESSED SWAP CACHING
17964 M:      Seth Jennings <sjenning@redhat.com>
17965 M:      Dan Streetman <ddstreet@ieee.org>
17966 L:      linux-mm@kvack.org
17967 S:      Maintained
17968 F:      mm/zswap.c
17969
17970 THE REST
17971 M:      Linus Torvalds <torvalds@linux-foundation.org>
17972 L:      linux-kernel@vger.kernel.org
17973 Q:      http://patchwork.kernel.org/project/LKML/list/
17974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
17975 S:      Buried alive in reporters
17976 F:      *
17977 F:      */