Merge branch 'for-upstream' of git://git.kernel.org/pub/scm/linux/kernel/git/bluetoot...
[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 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
647 L:      netdev@vger.kernel.org
648 S:      Maintained
649 F:      drivers/net/ethernet/nvidia/*
650
651 ALCATEL SPEEDTOUCH USB DRIVER
652 M:      Duncan Sands <duncan.sands@free.fr>
653 L:      linux-usb@vger.kernel.org
654 W:      http://www.linux-usb.org/SpeedTouch/
655 S:      Maintained
656 F:      drivers/usb/atm/speedtch.c
657 F:      drivers/usb/atm/usbatm.c
658
659 ALCHEMY AU1XX0 MMC DRIVER
660 M:      Manuel Lauss <manuel.lauss@gmail.com>
661 S:      Maintained
662 F:      drivers/mmc/host/au1xmmc.c
663
664 ALI1563 I2C DRIVER
665 M:      Rudolf Marek <r.marek@assembler.cz>
666 L:      linux-i2c@vger.kernel.org
667 S:      Maintained
668 F:      Documentation/i2c/busses/i2c-ali1563.rst
669 F:      drivers/i2c/busses/i2c-ali1563.c
670
671 ALLEGRO DVT VIDEO IP CORE DRIVER
672 M:      Michael Tretter <m.tretter@pengutronix.de>
673 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
674 L:      linux-media@vger.kernel.org
675 S:      Maintained
676 F:      drivers/staging/media/allegro-dvt/
677
678 ALLWINNER CPUFREQ DRIVER
679 M:      Yangtao Li <tiny.windzz@gmail.com>
680 L:      linux-pm@vger.kernel.org
681 S:      Maintained
682 F:      Documentation/devicetree/bindings/opp/sun50i-nvmem-cpufreq.txt
683 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
684
685 ALLWINNER SECURITY SYSTEM
686 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
687 L:      linux-crypto@vger.kernel.org
688 S:      Maintained
689 F:      drivers/crypto/sunxi-ss/
690
691 ALLWINNER VPU DRIVER
692 M:      Maxime Ripard <mripard@kernel.org>
693 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
694 L:      linux-media@vger.kernel.org
695 S:      Maintained
696 F:      drivers/staging/media/sunxi/cedrus/
697
698 ALPHA PORT
699 M:      Richard Henderson <rth@twiddle.net>
700 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
701 M:      Matt Turner <mattst88@gmail.com>
702 S:      Odd Fixes
703 L:      linux-alpha@vger.kernel.org
704 F:      arch/alpha/
705
706 ALPS PS/2 TOUCHPAD DRIVER
707 R:      Pali Rohár <pali.rohar@gmail.com>
708 F:      drivers/input/mouse/alps.*
709
710 ALTERA I2C CONTROLLER DRIVER
711 M:      Thor Thayer <thor.thayer@linux.intel.com>
712 S:      Maintained
713 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
714 F:      drivers/i2c/busses/i2c-altera.c
715
716 ALTERA MAILBOX DRIVER
717 M:      Ley Foon Tan <lftan@altera.com>
718 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
719 S:      Maintained
720 F:      drivers/mailbox/mailbox-altera.c
721
722 ALTERA PIO DRIVER
723 M:      Tien Hock Loh <thloh@altera.com>
724 L:      linux-gpio@vger.kernel.org
725 S:      Maintained
726 F:      drivers/gpio/gpio-altera.c
727
728 ALTERA SYSTEM MANAGER DRIVER
729 M:      Thor Thayer <thor.thayer@linux.intel.com>
730 S:      Maintained
731 F:      drivers/mfd/altera-sysmgr.c
732 F:      include/linux/mfd/altera-sysmgr.h
733
734 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
735 M:      Thor Thayer <thor.thayer@linux.intel.com>
736 S:      Maintained
737 F:      drivers/gpio/gpio-altera-a10sr.c
738 F:      drivers/mfd/altera-a10sr.c
739 F:      drivers/reset/reset-a10sr.c
740 F:      include/linux/mfd/altera-a10sr.h
741 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
742
743 ALTERA TRIPLE SPEED ETHERNET DRIVER
744 M:      Thor Thayer <thor.thayer@linux.intel.com>
745 L:      netdev@vger.kernel.org
746 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
747 S:      Maintained
748 F:      drivers/net/ethernet/altera/
749
750 ALTERA UART/JTAG UART SERIAL DRIVERS
751 M:      Tobias Klauser <tklauser@distanz.ch>
752 L:      linux-serial@vger.kernel.org
753 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
754 S:      Maintained
755 F:      drivers/tty/serial/altera_uart.c
756 F:      drivers/tty/serial/altera_jtaguart.c
757 F:      include/linux/altera_uart.h
758 F:      include/linux/altera_jtaguart.h
759
760 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
761 M:      Talel Shenhar <talel@amazon.com>
762 S:      Maintained
763 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
764 F:      drivers/thermal/thermal_mmio.c
765
766 AMAZON ETHERNET DRIVERS
767 M:      Netanel Belgazal <netanel@amazon.com>
768 R:      Saeed Bishara <saeedb@amazon.com>
769 R:      Zorik Machulsky <zorik@amazon.com>
770 L:      netdev@vger.kernel.org
771 S:      Supported
772 F:      Documentation/networking/device_drivers/amazon/ena.txt
773 F:      drivers/net/ethernet/amazon/
774
775 AMAZON RDMA EFA DRIVER
776 M:      Gal Pressman <galpress@amazon.com>
777 R:      Yossi Leybovich <sleybo@amazon.com>
778 L:      linux-rdma@vger.kernel.org
779 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
780 S:      Supported
781 F:      drivers/infiniband/hw/efa/
782 F:      include/uapi/rdma/efa-abi.h
783
784 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
785 M:      Tom Lendacky <thomas.lendacky@amd.com>
786 M:      Gary Hook <gary.hook@amd.com>
787 L:      linux-crypto@vger.kernel.org
788 S:      Supported
789 F:      drivers/crypto/ccp/
790 F:      include/linux/ccp.h
791
792 AMD DISPLAY CORE
793 M:      Harry Wentland <harry.wentland@amd.com>
794 M:      Leo Li <sunpeng.li@amd.com>
795 L:      amd-gfx@lists.freedesktop.org
796 T:      git git://people.freedesktop.org/~agd5f/linux
797 S:      Supported
798 F:      drivers/gpu/drm/amd/display/
799
800 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
801 M:      Huang Rui <ray.huang@amd.com>
802 L:      linux-hwmon@vger.kernel.org
803 S:      Supported
804 F:      Documentation/hwmon/fam15h_power.rst
805 F:      drivers/hwmon/fam15h_power.c
806
807 AMD FCH GPIO DRIVER
808 M:      Enrico Weigelt, metux IT consult <info@metux.net>
809 L:      linux-gpio@vger.kernel.org
810 S:      Maintained
811 F:      drivers/gpio/gpio-amd-fch.c
812 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
813
814 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
815 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
816 S:      Orphan
817 F:      drivers/usb/gadget/udc/amd5536udc.*
818
819 AMD GEODE PROCESSOR/CHIPSET SUPPORT
820 P:      Andres Salomon <dilinger@queued.net>
821 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
822 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
823 S:      Supported
824 F:      drivers/char/hw_random/geode-rng.c
825 F:      drivers/crypto/geode*
826 F:      drivers/video/fbdev/geode/
827 F:      arch/x86/include/asm/geode.h
828
829 AMD IOMMU (AMD-VI)
830 M:      Joerg Roedel <joro@8bytes.org>
831 L:      iommu@lists.linux-foundation.org
832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
833 S:      Maintained
834 F:      drivers/iommu/amd_iommu*.[ch]
835 F:      include/linux/amd-iommu.h
836
837 AMD KFD
838 M:      Felix Kuehling <Felix.Kuehling@amd.com>
839 L:      amd-gfx@lists.freedesktop.org
840 T:      git git://people.freedesktop.org/~agd5f/linux
841 S:      Supported
842 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
843 F:      drivers/gpu/drm/amd/amdkfd/
844 F:      drivers/gpu/drm/amd/include/cik_structs.h
845 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
846 F:      drivers/gpu/drm/amd/include/vi_structs.h
847 F:      drivers/gpu/drm/amd/include/v9_structs.h
848 F:      include/uapi/linux/kfd_ioctl.h
849
850 AMD MP2 I2C DRIVER
851 M:      Elie Morisse <syniurge@gmail.com>
852 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
853 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
854 L:      linux-i2c@vger.kernel.org
855 S:      Maintained
856 F:      drivers/i2c/busses/i2c-amd-mp2*
857
858 AMD POWERPLAY
859 M:      Rex Zhu <rex.zhu@amd.com>
860 M:      Evan Quan <evan.quan@amd.com>
861 L:      amd-gfx@lists.freedesktop.org
862 S:      Supported
863 F:      drivers/gpu/drm/amd/powerplay/
864 T:      git git://people.freedesktop.org/~agd5f/linux
865
866 AMD SEATTLE DEVICE TREE SUPPORT
867 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
868 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
869 M:      Tom Lendacky <thomas.lendacky@amd.com>
870 S:      Supported
871 F:      arch/arm64/boot/dts/amd/
872
873 AMD XGBE DRIVER
874 M:      Tom Lendacky <thomas.lendacky@amd.com>
875 L:      netdev@vger.kernel.org
876 S:      Supported
877 F:      drivers/net/ethernet/amd/xgbe/
878 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
879
880 ANALOG DEVICES INC AD5686 DRIVER
881 M:      Stefan Popa <stefan.popa@analog.com>
882 L:      linux-pm@vger.kernel.org
883 W:      http://ez.analog.com/community/linux-device-drivers
884 S:      Supported
885 F:      drivers/iio/dac/ad5686*
886 F:      drivers/iio/dac/ad5696*
887
888 ANALOG DEVICES INC AD5758 DRIVER
889 M:      Stefan Popa <stefan.popa@analog.com>
890 L:      linux-iio@vger.kernel.org
891 W:      http://ez.analog.com/community/linux-device-drivers
892 S:      Supported
893 F:      drivers/iio/dac/ad5758.c
894 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
895
896 ANALOG DEVICES INC AD7124 DRIVER
897 M:      Stefan Popa <stefan.popa@analog.com>
898 L:      linux-iio@vger.kernel.org
899 W:      http://ez.analog.com/community/linux-device-drivers
900 S:      Supported
901 F:      drivers/iio/adc/ad7124.c
902 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7124.yaml
903
904 ANALOG DEVICES INC AD7606 DRIVER
905 M:      Stefan Popa <stefan.popa@analog.com>
906 M:      Beniamin Bia <beniamin.bia@analog.com>
907 L:      linux-iio@vger.kernel.org
908 W:      http://ez.analog.com/community/linux-device-drivers
909 S:      Supported
910 F:      drivers/iio/adc/ad7606.c
911 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
912
913 ANALOG DEVICES INC AD7768-1 DRIVER
914 M:      Stefan Popa <stefan.popa@analog.com>
915 L:      linux-iio@vger.kernel.org
916 W:      http://ez.analog.com/community/linux-device-drivers
917 S:      Supported
918 F:      drivers/iio/adc/ad7768-1.c
919 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.txt
920
921 ANALOG DEVICES INC AD7780 DRIVER
922 M:      Michael Hennerich <Michael.Hennerich@analog.com>
923 M:      Renato Lui Geh <renatogeh@gmail.com>
924 L:      linux-iio@vger.kernel.org
925 W:      http://ez.analog.com/community/linux-device-drivers
926 S:      Supported
927 F:      drivers/iio/adc/ad7780.c
928 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
929
930 ANALOG DEVICES INC AD9389B DRIVER
931 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
932 L:      linux-media@vger.kernel.org
933 S:      Maintained
934 F:      drivers/media/i2c/ad9389b*
935
936 ANALOG DEVICES INC ADGS1408 DRIVER
937 M:      Mircea Caprioru <mircea.caprioru@analog.com>
938 S:      Supported
939 F:      drivers/mux/adgs1408.c
940 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
941
942 ANALOG DEVICES INC ADIN DRIVER
943 M:      Alexandru Ardelean <alexaundru.ardelean@analog.com>
944 L:      netdev@vger.kernel.org
945 W:      http://ez.analog.com/community/linux-device-drivers
946 S:      Supported
947 F:      drivers/net/phy/adin.c
948 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
949
950 ANALOG DEVICES INC ADIS DRIVER LIBRARY
951 M:      Alexandru Ardelean <alexandru.ardelean@analog.com>
952 S:      Supported
953 L:      linux-iio@vger.kernel.org
954 F:      include/linux/iio/imu/adis.h
955 F:      drivers/iio/imu/adis.c
956
957 ANALOG DEVICES INC ADIS16460 DRIVER
958 M:      Dragos Bogdan <dragos.bogdan@analog.com>
959 S:      Supported
960 L:      linux-iio@vger.kernel.org
961 W:      http://ez.analog.com/community/linux-device-drivers
962 F:      drivers/iio/imu/adis16460.c
963 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
964
965 ANALOG DEVICES INC ADP5061 DRIVER
966 M:      Stefan Popa <stefan.popa@analog.com>
967 L:      linux-pm@vger.kernel.org
968 W:      http://ez.analog.com/community/linux-device-drivers
969 S:      Supported
970 F:      drivers/power/supply/adp5061.c
971
972 ANALOG DEVICES INC ADV7180 DRIVER
973 M:      Lars-Peter Clausen <lars@metafoo.de>
974 L:      linux-media@vger.kernel.org
975 W:      http://ez.analog.com/community/linux-device-drivers
976 S:      Supported
977 F:      drivers/media/i2c/adv7180.c
978
979 ANALOG DEVICES INC ADV748X DRIVER
980 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
981 L:      linux-media@vger.kernel.org
982 S:      Maintained
983 F:      drivers/media/i2c/adv748x/*
984
985 ANALOG DEVICES INC ADV7511 DRIVER
986 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
987 L:      linux-media@vger.kernel.org
988 S:      Maintained
989 F:      drivers/media/i2c/adv7511*
990
991 ANALOG DEVICES INC ADV7604 DRIVER
992 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
993 L:      linux-media@vger.kernel.org
994 S:      Maintained
995 F:      drivers/media/i2c/adv7604*
996
997 ANALOG DEVICES INC ADV7842 DRIVER
998 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
999 L:      linux-media@vger.kernel.org
1000 S:      Maintained
1001 F:      drivers/media/i2c/adv7842*
1002
1003 ANALOG DEVICES INC ASOC CODEC DRIVERS
1004 M:      Lars-Peter Clausen <lars@metafoo.de>
1005 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1006 W:      http://wiki.analog.com/
1007 W:      http://ez.analog.com/community/linux-device-drivers
1008 S:      Supported
1009 F:      sound/soc/codecs/adau*
1010 F:      sound/soc/codecs/adav*
1011 F:      sound/soc/codecs/ad1*
1012 F:      sound/soc/codecs/ad7*
1013 F:      sound/soc/codecs/ssm*
1014 F:      sound/soc/codecs/sigmadsp.*
1015
1016 ANALOG DEVICES INC DMA DRIVERS
1017 M:      Lars-Peter Clausen <lars@metafoo.de>
1018 W:      http://ez.analog.com/community/linux-device-drivers
1019 S:      Supported
1020 F:      drivers/dma/dma-axi-dmac.c
1021
1022 ANALOG DEVICES INC IIO DRIVERS
1023 M:      Lars-Peter Clausen <lars@metafoo.de>
1024 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1025 M:      Stefan Popa <stefan.popa@analog.com>
1026 W:      http://wiki.analog.com/
1027 W:      http://ez.analog.com/community/linux-device-drivers
1028 S:      Supported
1029 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1030 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1031 F:      drivers/iio/*/ad*
1032 F:      drivers/iio/adc/ltc2497*
1033 X:      drivers/iio/*/adjd*
1034 F:      drivers/staging/iio/*/ad*
1035
1036 ANALOGBITS PLL LIBRARIES
1037 M:      Paul Walmsley <paul.walmsley@sifive.com>
1038 S:      Supported
1039 F:      drivers/clk/analogbits/*
1040 F:      include/linux/clk/analogbits*
1041
1042 ANDES ARCHITECTURE
1043 M:      Greentime Hu <green.hu@gmail.com>
1044 M:      Vincent Chen <deanbo422@gmail.com>
1045 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1046 S:      Supported
1047 F:      arch/nds32/
1048 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1049 F:      Documentation/devicetree/bindings/nds32/
1050 K:      nds32
1051 N:      nds32
1052
1053 ANDROID CONFIG FRAGMENTS
1054 M:      Rob Herring <robh@kernel.org>
1055 S:      Supported
1056 F:      kernel/configs/android*
1057
1058 ANDROID DRIVERS
1059 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1060 M:      Arve Hjønnevåg <arve@android.com>
1061 M:      Todd Kjos <tkjos@android.com>
1062 M:      Martijn Coenen <maco@android.com>
1063 M:      Joel Fernandes <joel@joelfernandes.org>
1064 M:      Christian Brauner <christian@brauner.io>
1065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1066 L:      devel@driverdev.osuosl.org
1067 S:      Supported
1068 F:      drivers/android/
1069 F:      drivers/staging/android/
1070
1071 ANDROID GOLDFISH PIC DRIVER
1072 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1073 S:      Supported
1074 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1075 F:      drivers/irqchip/irq-goldfish-pic.c
1076
1077 ANDROID GOLDFISH RTC DRIVER
1078 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1079 S:      Supported
1080 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1081 F:      drivers/rtc/rtc-goldfish.c
1082
1083 ANDROID ION DRIVER
1084 M:      Laura Abbott <labbott@redhat.com>
1085 M:      Sumit Semwal <sumit.semwal@linaro.org>
1086 L:      devel@driverdev.osuosl.org
1087 L:      dri-devel@lists.freedesktop.org
1088 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
1089 S:      Supported
1090 F:      drivers/staging/android/ion
1091 F:      drivers/staging/android/uapi/ion.h
1092
1093 AOA (Apple Onboard Audio) ALSA DRIVER
1094 M:      Johannes Berg <johannes@sipsolutions.net>
1095 L:      linuxppc-dev@lists.ozlabs.org
1096 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1097 S:      Maintained
1098 F:      sound/aoa/
1099
1100 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1101 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1102 L:      linux-iio@vger.kernel.org
1103 S:      Maintained
1104 F:      drivers/iio/adc/stx104.c
1105
1106 APM DRIVER
1107 M:      Jiri Kosina <jikos@kernel.org>
1108 S:      Odd fixes
1109 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1110 F:      arch/x86/kernel/apm_32.c
1111 F:      include/linux/apm_bios.h
1112 F:      include/uapi/linux/apm_bios.h
1113 F:      drivers/char/apm-emulation.c
1114
1115 APPARMOR SECURITY MODULE
1116 M:      John Johansen <john.johansen@canonical.com>
1117 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1118 W:      wiki.apparmor.net
1119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1120 S:      Supported
1121 F:      security/apparmor/
1122 F:      Documentation/admin-guide/LSM/apparmor.rst
1123
1124 APPLE BCM5974 MULTITOUCH DRIVER
1125 M:      Henrik Rydberg <rydberg@bitmath.org>
1126 L:      linux-input@vger.kernel.org
1127 S:      Odd fixes
1128 F:      drivers/input/mouse/bcm5974.c
1129
1130 APPLE SMC DRIVER
1131 M:      Henrik Rydberg <rydberg@bitmath.org>
1132 L:      linux-hwmon@vger.kernel.org
1133 S:      Odd fixes
1134 F:      drivers/hwmon/applesmc.c
1135
1136 APPLETALK NETWORK LAYER
1137 L:      netdev@vger.kernel.org
1138 S:      Odd fixes
1139 F:      drivers/net/appletalk/
1140 F:      net/appletalk/
1141 F:      include/linux/atalk.h
1142 F:      include/uapi/linux/atalk.h
1143
1144 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1145 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1146 S:      Supported
1147 F:      arch/arm64/boot/dts/apm/
1148
1149 APPLIED MICRO (APM) X-GENE SOC EDAC
1150 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1151 S:      Supported
1152 F:      drivers/edac/xgene_edac.c
1153 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1154
1155 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1156 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1157 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1158 S:      Supported
1159 F:      drivers/net/ethernet/apm/xgene-v2/
1160
1161 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1162 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1163 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1164 M:      Quan Nguyen <quan@os.amperecomputing.com>
1165 S:      Supported
1166 F:      drivers/net/ethernet/apm/xgene/
1167 F:      drivers/net/phy/mdio-xgene.c
1168 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1169 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1170
1171 APPLIED MICRO (APM) X-GENE SOC PMU
1172 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1173 S:      Supported
1174 F:      drivers/perf/xgene_pmu.c
1175 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1176 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1177
1178 APTINA CAMERA SENSOR PLL
1179 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1180 L:      linux-media@vger.kernel.org
1181 S:      Maintained
1182 F:      drivers/media/i2c/aptina-pll.*
1183
1184 AQUANTIA ETHERNET DRIVER (atlantic)
1185 M:      Igor Russkikh <irusskikh@marvell.com>
1186 L:      netdev@vger.kernel.org
1187 S:      Supported
1188 W:      https://www.marvell.com/
1189 Q:      http://patchwork.ozlabs.org/project/netdev/list/
1190 F:      drivers/net/ethernet/aquantia/atlantic/
1191 F:      Documentation/networking/device_drivers/aquantia/atlantic.txt
1192
1193 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1194 M:      Egor Pomozov <epomozov@marvell.com>
1195 L:      netdev@vger.kernel.org
1196 S:      Supported
1197 W:      http://www.aquantia.com
1198 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1199
1200 ARC FRAMEBUFFER DRIVER
1201 M:      Jaya Kumar <jayalk@intworks.biz>
1202 S:      Maintained
1203 F:      drivers/video/fbdev/arcfb.c
1204 F:      drivers/video/fbdev/core/fb_defio.c
1205
1206 ARC PGU DRM DRIVER
1207 M:      Alexey Brodkin <abrodkin@synopsys.com>
1208 S:      Supported
1209 F:      drivers/gpu/drm/arc/
1210 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1211
1212 ARCNET NETWORK LAYER
1213 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1214 L:      netdev@vger.kernel.org
1215 S:      Maintained
1216 F:      drivers/net/arcnet/
1217 F:      include/uapi/linux/if_arcnet.h
1218
1219 ARM ARCHITECTED TIMER DRIVER
1220 M:      Mark Rutland <mark.rutland@arm.com>
1221 M:      Marc Zyngier <maz@kernel.org>
1222 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1223 S:      Maintained
1224 F:      arch/arm/include/asm/arch_timer.h
1225 F:      arch/arm64/include/asm/arch_timer.h
1226 F:      drivers/clocksource/arm_arch_timer.c
1227
1228 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1229 M:      Linus Walleij <linus.walleij@linaro.org>
1230 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1231 S:      Maintained
1232 F:      Documentation/devicetree/bindings/arm/arm-boards
1233 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1234 F:      Documentation/devicetree/bindings/clock/arm-integrator.txt
1235 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1236 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1237 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1238 F:      arch/arm/mach-integrator/
1239 F:      arch/arm/mach-realview/
1240 F:      arch/arm/mach-versatile/
1241 F:      arch/arm/plat-versatile/
1242 F:      arch/arm/boot/dts/arm-realview-*
1243 F:      arch/arm/boot/dts/integrator*
1244 F:      arch/arm/boot/dts/versatile*
1245 F:      drivers/clk/versatile/
1246 F:      drivers/i2c/busses/i2c-versatile.c
1247 F:      drivers/irqchip/irq-versatile-fpga.c
1248 F:      drivers/mtd/maps/physmap_of_versatile.c
1249 F:      drivers/power/reset/arm-versatile-reboot.c
1250 F:      drivers/soc/versatile/
1251
1252 ARM HDLCD DRM DRIVER
1253 M:      Liviu Dudau <liviu.dudau@arm.com>
1254 S:      Supported
1255 F:      drivers/gpu/drm/arm/hdlcd_*
1256 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1257
1258 ARM KOMEDA DRM-KMS DRIVER
1259 M:      James (Qian) Wang <james.qian.wang@arm.com>
1260 M:      Liviu Dudau <liviu.dudau@arm.com>
1261 L:      Mali DP Maintainers <malidp@foss.arm.com>
1262 S:      Supported
1263 T:      git git://anongit.freedesktop.org/drm/drm-misc
1264 F:      drivers/gpu/drm/arm/display/include/
1265 F:      drivers/gpu/drm/arm/display/komeda/
1266 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1267 F:      Documentation/gpu/komeda-kms.rst
1268
1269 ARM MALI-DP DRM DRIVER
1270 M:      Liviu Dudau <liviu.dudau@arm.com>
1271 M:      Brian Starkey <brian.starkey@arm.com>
1272 L:      Mali DP Maintainers <malidp@foss.arm.com>
1273 S:      Supported
1274 T:      git git://anongit.freedesktop.org/drm/drm-misc
1275 F:      drivers/gpu/drm/arm/
1276 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1277 F:      Documentation/gpu/afbc.rst
1278
1279 ARM MALI PANFROST DRM DRIVER
1280 M:      Rob Herring <robh@kernel.org>
1281 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1282 L:      dri-devel@lists.freedesktop.org
1283 S:      Supported
1284 T:      git git://anongit.freedesktop.org/drm/drm-misc
1285 F:      drivers/gpu/drm/panfrost/
1286 F:      include/uapi/drm/panfrost_drm.h
1287
1288 ARM MFM AND FLOPPY DRIVERS
1289 M:      Ian Molton <spyro@f2s.com>
1290 S:      Maintained
1291 F:      arch/arm/mach-rpc/floppydma.S
1292 F:      arch/arm/include/asm/floppy.h
1293
1294 ARM PMU PROFILING AND DEBUGGING
1295 M:      Will Deacon <will@kernel.org>
1296 M:      Mark Rutland <mark.rutland@arm.com>
1297 S:      Maintained
1298 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1299 F:      arch/arm*/kernel/perf_*
1300 F:      arch/arm/oprofile/common.c
1301 F:      arch/arm*/kernel/hw_breakpoint.c
1302 F:      arch/arm*/include/asm/hw_breakpoint.h
1303 F:      arch/arm*/include/asm/perf_event.h
1304 F:      drivers/perf/*
1305 F:      include/linux/perf/arm_pmu.h
1306 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1307 F:      Documentation/devicetree/bindings/perf/
1308
1309 ARM PORT
1310 M:      Russell King <linux@armlinux.org.uk>
1311 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1312 W:      http://www.armlinux.org.uk/
1313 S:      Odd Fixes
1314 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1315 F:      arch/arm/
1316 X:      arch/arm/boot/dts/
1317
1318 ARM PRIMECELL AACI PL041 DRIVER
1319 M:      Russell King <linux@armlinux.org.uk>
1320 S:      Odd Fixes
1321 F:      sound/arm/aaci.*
1322
1323 ARM PRIMECELL BUS SUPPORT
1324 M:      Russell King <linux@armlinux.org.uk>
1325 S:      Odd Fixes
1326 F:      drivers/amba/
1327 F:      include/linux/amba/bus.h
1328
1329 ARM PRIMECELL CLCD PL110 DRIVER
1330 M:      Russell King <linux@armlinux.org.uk>
1331 S:      Odd Fixes
1332 F:      drivers/video/fbdev/amba-clcd.*
1333
1334 ARM PRIMECELL KMI PL050 DRIVER
1335 M:      Russell King <linux@armlinux.org.uk>
1336 S:      Odd Fixes
1337 F:      drivers/input/serio/ambakmi.*
1338 F:      include/linux/amba/kmi.h
1339
1340 ARM PRIMECELL MMCI PL180/1 DRIVER
1341 M:      Russell King <linux@armlinux.org.uk>
1342 S:      Odd Fixes
1343 F:      drivers/mmc/host/mmci.*
1344 F:      include/linux/amba/mmci.h
1345
1346 ARM PRIMECELL SSP PL022 SPI DRIVER
1347 M:      Linus Walleij <linus.walleij@linaro.org>
1348 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1349 S:      Maintained
1350 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1351 F:      drivers/spi/spi-pl022.c
1352
1353 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1354 M:      Russell King <linux@armlinux.org.uk>
1355 S:      Odd Fixes
1356 F:      drivers/tty/serial/amba-pl01*.c
1357 F:      include/linux/amba/serial.h
1358
1359 ARM PRIMECELL VIC PL190/PL192 DRIVER
1360 M:      Linus Walleij <linus.walleij@linaro.org>
1361 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1362 S:      Maintained
1363 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1364 F:      drivers/irqchip/irq-vic.c
1365
1366 AMAZON ANNAPURNA LABS FIC DRIVER
1367 M:      Talel Shenhar <talel@amazon.com>
1368 S:      Maintained
1369 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
1370 F:      drivers/irqchip/irq-al-fic.c
1371
1372 ARM SMMU DRIVERS
1373 M:      Will Deacon <will@kernel.org>
1374 R:      Robin Murphy <robin.murphy@arm.com>
1375 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1376 S:      Maintained
1377 F:      drivers/iommu/arm-smmu*
1378 F:      drivers/iommu/io-pgtable-arm.c
1379 F:      drivers/iommu/io-pgtable-arm-v7s.c
1380
1381 ARM SUB-ARCHITECTURES
1382 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1383 S:      Maintained
1384 F:      arch/arm/mach-*/
1385 F:      arch/arm/plat-*/
1386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1387
1388 ARM/ACTIONS SEMI ARCHITECTURE
1389 M:      Andreas Färber <afaerber@suse.de>
1390 R:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1391 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1392 S:      Maintained
1393 N:      owl
1394 F:      arch/arm/mach-actions/
1395 F:      arch/arm/boot/dts/owl-*
1396 F:      arch/arm64/boot/dts/actions/
1397 F:      drivers/clk/actions/
1398 F:      drivers/clocksource/timer-owl*
1399 F:      drivers/dma/owl-dma.c
1400 F:      drivers/i2c/busses/i2c-owl.c
1401 F:      drivers/pinctrl/actions/*
1402 F:      drivers/soc/actions/
1403 F:      include/dt-bindings/power/owl-*
1404 F:      include/linux/soc/actions/
1405 F:      Documentation/devicetree/bindings/arm/actions.yaml
1406 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1407 F:      Documentation/devicetree/bindings/dma/owl-dma.txt
1408 F:      Documentation/devicetree/bindings/i2c/i2c-owl.txt
1409 F:      Documentation/devicetree/bindings/pinctrl/actions,s900-pinctrl.txt
1410 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1411 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1412
1413 ARM/ADS SPHERE MACHINE SUPPORT
1414 M:      Lennert Buytenhek <kernel@wantstofly.org>
1415 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1416 S:      Maintained
1417
1418 ARM/AFEB9260 MACHINE SUPPORT
1419 M:      Sergey Lapin <slapin@ossfans.org>
1420 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1421 S:      Maintained
1422
1423 ARM/AJECO 1ARM MACHINE SUPPORT
1424 M:      Lennert Buytenhek <kernel@wantstofly.org>
1425 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1426 S:      Maintained
1427
1428 ARM/Allwinner SoC Clock Support
1429 M:      Emilio López <emilio@elopez.com.ar>
1430 S:      Maintained
1431 F:      drivers/clk/sunxi/
1432
1433 ARM/Allwinner sunXi SoC support
1434 M:      Maxime Ripard <mripard@kernel.org>
1435 M:      Chen-Yu Tsai <wens@csie.org>
1436 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1437 S:      Maintained
1438 N:      sun[x456789]i
1439 N:      sun50i
1440 F:      arch/arm/mach-sunxi/
1441 F:      arch/arm64/boot/dts/allwinner/
1442 F:      drivers/clk/sunxi-ng/
1443 F:      drivers/pinctrl/sunxi/
1444 F:      drivers/soc/sunxi/
1445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1446
1447 Allwinner A10 CSI driver
1448 M:      Maxime Ripard <mripard@kernel.org>
1449 L:      linux-media@vger.kernel.org
1450 T:      git git://linuxtv.org/media_tree.git
1451 F:      drivers/media/platform/sunxi/sun4i-csi/
1452 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
1453 S:      Maintained
1454
1455 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1456 M:      Neil Armstrong <narmstrong@baylibre.com>
1457 M:      Jerome Brunet <jbrunet@baylibre.com>
1458 L:      linux-amlogic@lists.infradead.org
1459 S:      Maintained
1460 F:      drivers/clk/meson/
1461 F:      include/dt-bindings/clock/meson*
1462 F:      include/dt-bindings/clock/gxbb*
1463 F:      Documentation/devicetree/bindings/clock/amlogic*
1464
1465 ARM/Amlogic Meson SoC support
1466 M:      Kevin Hilman <khilman@baylibre.com>
1467 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1468 L:      linux-amlogic@lists.infradead.org
1469 W:      http://linux-meson.com/
1470 S:      Maintained
1471 F:      arch/arm/mach-meson/
1472 F:      arch/arm/boot/dts/meson*
1473 F:      arch/arm64/boot/dts/amlogic/
1474 F:      drivers/pinctrl/meson/
1475 F:      drivers/mmc/host/meson*
1476 F:      drivers/soc/amlogic/
1477 F:      drivers/rtc/rtc-meson*
1478 N:      meson
1479
1480 ARM/Amlogic Meson SoC Sound Drivers
1481 M:      Jerome Brunet <jbrunet@baylibre.com>
1482 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1483 S:      Maintained
1484 F:      sound/soc/meson/
1485 F:      Documentation/devicetree/bindings/sound/amlogic*
1486
1487 ARM/Annapurna Labs ALPINE ARCHITECTURE
1488 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1489 M:      Antoine Tenart <antoine.tenart@bootlin.com>
1490 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1491 S:      Maintained
1492 F:      arch/arm/mach-alpine/
1493 F:      arch/arm/boot/dts/alpine*
1494 F:      arch/arm64/boot/dts/al/
1495 F:      drivers/*/*alpine*
1496
1497 ARM/ARTPEC MACHINE SUPPORT
1498 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1499 M:      Lars Persson <lars.persson@axis.com>
1500 S:      Maintained
1501 L:      linux-arm-kernel@axis.com
1502 F:      arch/arm/mach-artpec
1503 F:      arch/arm/boot/dts/artpec6*
1504 F:      drivers/clk/axis
1505 F:      drivers/crypto/axis
1506 F:      drivers/mmc/host/usdhi6rol0.c
1507 F:      drivers/pinctrl/pinctrl-artpec*
1508 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1509
1510 ARM/ASPEED I2C DRIVER
1511 M:      Brendan Higgins <brendanhiggins@google.com>
1512 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1513 R:      Joel Stanley <joel@jms.id.au>
1514 L:      linux-i2c@vger.kernel.org
1515 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1516 S:      Maintained
1517 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1518 F:      drivers/i2c/busses/i2c-aspeed.c
1519 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1520 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1521
1522 ARM/ASPEED MACHINE SUPPORT
1523 M:      Joel Stanley <joel@jms.id.au>
1524 R:      Andrew Jeffery <andrew@aj.id.au>
1525 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1526 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1527 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1528 S:      Supported
1529 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1530 F:      arch/arm/mach-aspeed/
1531 F:      arch/arm/boot/dts/aspeed-*
1532 N:      aspeed
1533
1534 ARM/BITMAIN ARCHITECTURE
1535 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1536 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1537 S:      Maintained
1538 F:      arch/arm64/boot/dts/bitmain/
1539 F:      drivers/pinctrl/pinctrl-bm1880.c
1540 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1541 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1542
1543 ARM/CALXEDA HIGHBANK ARCHITECTURE
1544 M:      Rob Herring <robh@kernel.org>
1545 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1546 S:      Maintained
1547 F:      arch/arm/mach-highbank/
1548 F:      arch/arm/boot/dts/highbank.dts
1549 F:      arch/arm/boot/dts/ecx-*.dts*
1550
1551 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1552 M:      Krzysztof Halasa <khalasa@piap.pl>
1553 S:      Maintained
1554 F:      arch/arm/mach-cns3xxx/
1555
1556 ARM/CAVIUM THUNDER NETWORK DRIVER
1557 M:      Sunil Goutham <sgoutham@cavium.com>
1558 M:      Robert Richter <rric@kernel.org>
1559 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1560 S:      Supported
1561 F:      drivers/net/ethernet/cavium/thunder/
1562
1563 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1564 M:      Lukasz Majewski <lukma@denx.de>
1565 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1566 S:      Maintained
1567 F:      arch/arm/mach-ep93xx/ts72xx.c
1568
1569 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1570 M:      Alexander Shiyan <shc_work@mail.ru>
1571 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1572 S:      Odd Fixes
1573 N:      clps711x
1574
1575 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1576 M:      Lennert Buytenhek <kernel@wantstofly.org>
1577 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1578 S:      Maintained
1579
1580 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1581 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1582 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1583 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1584 S:      Maintained
1585 F:      arch/arm/mach-ep93xx/
1586 F:      arch/arm/mach-ep93xx/include/mach/
1587
1588 ARM/CLKDEV SUPPORT
1589 M:      Russell King <linux@armlinux.org.uk>
1590 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1591 S:      Maintained
1592 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1593 F:      drivers/clk/clkdev.c
1594
1595 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1596 M:      Mike Rapoport <mike@compulab.co.il>
1597 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1598 S:      Maintained
1599
1600 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1601 M:      Baruch Siach <baruch@tkos.co.il>
1602 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1603 S:      Maintained
1604 F:      arch/arm/boot/dts/cx92755*
1605 N:      digicolor
1606
1607 ARM/CONTEC MICRO9 MACHINE SUPPORT
1608 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1609 S:      Maintained
1610 F:      arch/arm/mach-ep93xx/micro9.c
1611
1612 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1613 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1614 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
1615 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1616 S:      Maintained
1617 F:      drivers/hwtracing/coresight/*
1618 F:      Documentation/trace/coresight.rst
1619 F:      Documentation/trace/coresight-cpu-debug.rst
1620 F:      Documentation/devicetree/bindings/arm/coresight.txt
1621 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1622 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1623 F:      tools/perf/arch/arm/util/pmu.c
1624 F:      tools/perf/arch/arm/util/auxtrace.c
1625 F:      tools/perf/arch/arm/util/cs-etm.c
1626 F:      tools/perf/arch/arm/util/cs-etm.h
1627 F:      tools/perf/util/cs-etm.*
1628 F:      tools/perf/util/cs-etm-decoder/*
1629
1630 ARM/CORGI MACHINE SUPPORT
1631 M:      Richard Purdie <rpurdie@rpsys.net>
1632 S:      Maintained
1633
1634 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1635 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1636 M:      Linus Walleij <linus.walleij@linaro.org>
1637 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1638 T:      git git://github.com/ulli-kroll/linux.git
1639 S:      Maintained
1640 F:      Documentation/devicetree/bindings/arm/gemini.txt
1641 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1642 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1643 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1644 F:      arch/arm/mach-gemini/
1645 F:      drivers/net/ethernet/cortina/
1646 F:      drivers/pinctrl/pinctrl-gemini.c
1647 F:      drivers/rtc/rtc-ftrtc010.c
1648
1649 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1650 M:      Barry Song <baohua@kernel.org>
1651 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1653 S:      Maintained
1654 F:      arch/arm/boot/dts/prima2*
1655 F:      arch/arm/mach-prima2/
1656 F:      drivers/clk/sirf/
1657 F:      drivers/clocksource/timer-prima2.c
1658 F:      drivers/clocksource/timer-atlas7.c
1659 N:      [^a-z]sirf
1660 X:      drivers/gnss
1661
1662 ARM/CZ.NIC TURRIS MOX SUPPORT
1663 M:      Marek Behun <marek.behun@nic.cz>
1664 W:      http://mox.turris.cz
1665 S:      Maintained
1666 F:      Documentation/ABI/testing/debugfs-moxtet
1667 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1668 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1669 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1670 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1671 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1672 F:      include/linux/moxtet.h
1673 F:      drivers/bus/moxtet.c
1674 F:      drivers/firmware/turris-mox-rwtm.c
1675 F:      drivers/gpio/gpio-moxtet.c
1676
1677 ARM/EBSA110 MACHINE SUPPORT
1678 M:      Russell King <linux@armlinux.org.uk>
1679 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1680 W:      http://www.armlinux.org.uk/
1681 S:      Maintained
1682 F:      arch/arm/mach-ebsa110/
1683 F:      drivers/net/ethernet/amd/am79c961a.*
1684
1685 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1686 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1687 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1688 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1689 S:      Maintained
1690 N:      efm32
1691
1692 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1693 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1694 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1695 S:      Maintained
1696 F:      arch/arm/mach-pxa/ezx.c
1697
1698 ARM/FARADAY FA526 PORT
1699 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1700 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1701 S:      Maintained
1702 T:      git git://git.berlios.de/gemini-board
1703 F:      arch/arm/mm/*-fa*
1704
1705 ARM/FOOTBRIDGE ARCHITECTURE
1706 M:      Russell King <linux@armlinux.org.uk>
1707 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1708 W:      http://www.armlinux.org.uk/
1709 S:      Maintained
1710 F:      arch/arm/include/asm/hardware/dec21285.h
1711 F:      arch/arm/mach-footbridge/
1712
1713 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1714 M:      Shawn Guo <shawnguo@kernel.org>
1715 M:      Sascha Hauer <s.hauer@pengutronix.de>
1716 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1717 R:      Fabio Estevam <festevam@gmail.com>
1718 R:      NXP Linux Team <linux-imx@nxp.com>
1719 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1720 S:      Maintained
1721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1722 N:      imx
1723 N:      mxs
1724 X:      drivers/media/i2c/
1725
1726 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1727 M:      Shawn Guo <shawnguo@kernel.org>
1728 M:      Sascha Hauer <s.hauer@pengutronix.de>
1729 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1730 R:      Stefan Agner <stefan@agner.ch>
1731 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1732 S:      Maintained
1733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1734 F:      arch/arm/mach-imx/*vf610*
1735 F:      arch/arm/boot/dts/vf*
1736
1737 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1738 M:      Shawn Guo <shawnguo@kernel.org>
1739 M:      Li Yang <leoyang.li@nxp.com>
1740 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1741 S:      Maintained
1742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1743 F:      arch/arm/boot/dts/ls1021a*
1744 F:      arch/arm64/boot/dts/freescale/fsl-*
1745 F:      arch/arm64/boot/dts/freescale/qoriq-*
1746
1747 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1748 M:      Lennert Buytenhek <kernel@wantstofly.org>
1749 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1750 S:      Maintained
1751
1752 ARM/GUMSTIX MACHINE SUPPORT
1753 M:      Steve Sakoman <sakoman@gmail.com>
1754 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1755 S:      Maintained
1756
1757 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1758 M:      Philipp Zabel <philipp.zabel@gmail.com>
1759 M:      Paul Parsons <lost.distance@yahoo.com>
1760 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1761 S:      Maintained
1762 F:      arch/arm/mach-pxa/hx4700.c
1763 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1764 F:      sound/soc/pxa/hx4700.c
1765
1766 ARM/HISILICON SOC SUPPORT
1767 M:      Wei Xu <xuwei5@hisilicon.com>
1768 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1769 W:      http://www.hisilicon.com
1770 S:      Supported
1771 T:      git git://github.com/hisilicon/linux-hisi.git
1772 F:      arch/arm/mach-hisi/
1773 F:      arch/arm/boot/dts/hi3*
1774 F:      arch/arm/boot/dts/hip*
1775 F:      arch/arm/boot/dts/hisi*
1776 F:      arch/arm64/boot/dts/hisilicon/
1777
1778 ARM/HP JORNADA 7XX MACHINE SUPPORT
1779 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1780 W:      www.jlime.com
1781 S:      Maintained
1782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1783 F:      arch/arm/mach-sa1100/jornada720.c
1784 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1785
1786 ARM/IGEP MACHINE SUPPORT
1787 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1788 M:      Javier Martinez Canillas <javier@dowhile0.org>
1789 L:      linux-omap@vger.kernel.org
1790 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1791 S:      Maintained
1792 F:      arch/arm/boot/dts/omap3-igep*
1793
1794 ARM/INCOME PXA270 SUPPORT
1795 M:      Marek Vasut <marek.vasut@gmail.com>
1796 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1797 S:      Maintained
1798 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1799
1800 ARM/INTEL IOP32X ARM ARCHITECTURE
1801 M:      Lennert Buytenhek <kernel@wantstofly.org>
1802 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1803 S:      Maintained
1804
1805 ARM/INTEL IQ81342EX MACHINE SUPPORT
1806 M:      Lennert Buytenhek <kernel@wantstofly.org>
1807 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1808 S:      Maintained
1809
1810 ARM/INTEL IXDP2850 MACHINE SUPPORT
1811 M:      Lennert Buytenhek <kernel@wantstofly.org>
1812 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1813 S:      Maintained
1814
1815 ARM/INTEL IXP4XX ARM ARCHITECTURE
1816 M:      Linus Walleij <linusw@kernel.org>
1817 M:      Imre Kaloz <kaloz@openwrt.org>
1818 M:      Krzysztof Halasa <khalasa@piap.pl>
1819 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1820 S:      Maintained
1821 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1822 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1823 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1824 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1825 F:      arch/arm/mach-ixp4xx/
1826 F:      drivers/clocksource/timer-ixp4xx.c
1827 F:      drivers/gpio/gpio-ixp4xx.c
1828 F:      drivers/irqchip/irq-ixp4xx.c
1829 F:      include/linux/irqchip/irq-ixp4xx.h
1830 F:      include/linux/platform_data/timer-ixp4xx.h
1831
1832 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1833 M:      Jonathan Cameron <jic23@cam.ac.uk>
1834 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1835 S:      Maintained
1836 F:      arch/arm/mach-pxa/stargate2.c
1837 F:      drivers/pcmcia/pxa2xx_stargate2.c
1838
1839 ARM/INTEL XSC3 (MANZANO) ARM CORE
1840 M:      Lennert Buytenhek <kernel@wantstofly.org>
1841 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1842 S:      Maintained
1843
1844 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1845 M:      Lennert Buytenhek <kernel@wantstofly.org>
1846 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1847 S:      Maintained
1848
1849 ARM/LG1K ARCHITECTURE
1850 M:      Chanho Min <chanho.min@lge.com>
1851 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1852 S:      Maintained
1853 F:      arch/arm64/boot/dts/lg/
1854
1855 ARM/LOGICPD PXA270 MACHINE SUPPORT
1856 M:      Lennert Buytenhek <kernel@wantstofly.org>
1857 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1858 S:      Maintained
1859
1860 ARM/LPC18XX ARCHITECTURE
1861 M:      Vladimir Zapolskiy <vz@mleia.com>
1862 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1863 S:      Maintained
1864 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1865 F:      arch/arm/boot/dts/lpc43*
1866 F:      drivers/i2c/busses/i2c-lpc2k.c
1867 F:      drivers/memory/pl172.c
1868 F:      drivers/mtd/spi-nor/nxp-spifi.c
1869 F:      drivers/rtc/rtc-lpc24xx.c
1870 N:      lpc18xx
1871
1872 ARM/LPC32XX SOC SUPPORT
1873 M:      Vladimir Zapolskiy <vz@mleia.com>
1874 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
1875 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1876 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1877 S:      Maintained
1878 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
1879 F:      arch/arm/boot/dts/lpc32*
1880 F:      arch/arm/mach-lpc32xx/
1881 F:      drivers/i2c/busses/i2c-pnx.c
1882 F:      drivers/net/ethernet/nxp/lpc_eth.c
1883 F:      drivers/usb/host/ohci-nxp.c
1884 F:      drivers/watchdog/pnx4008_wdt.c
1885 N:      lpc32xx
1886
1887 ARM/MAGICIAN MACHINE SUPPORT
1888 M:      Philipp Zabel <philipp.zabel@gmail.com>
1889 S:      Maintained
1890
1891 ARM/Marvell Dove/MV78xx0/Orion SOC support
1892 M:      Jason Cooper <jason@lakedaemon.net>
1893 M:      Andrew Lunn <andrew@lunn.ch>
1894 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1895 M:      Gregory Clement <gregory.clement@bootlin.com>
1896 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1897 S:      Maintained
1898 F:      Documentation/devicetree/bindings/soc/dove/
1899 F:      arch/arm/mach-dove/
1900 F:      arch/arm/mach-mv78xx0/
1901 F:      arch/arm/mach-orion5x/
1902 F:      arch/arm/plat-orion/
1903 F:      arch/arm/boot/dts/dove*
1904 F:      arch/arm/boot/dts/orion5x*
1905 T:      git git://git.infradead.org/linux-mvebu.git
1906
1907 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1908 M:      Jason Cooper <jason@lakedaemon.net>
1909 M:      Andrew Lunn <andrew@lunn.ch>
1910 M:      Gregory Clement <gregory.clement@bootlin.com>
1911 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1912 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1913 S:      Maintained
1914 F:      arch/arm/boot/dts/armada*
1915 F:      arch/arm/boot/dts/kirkwood*
1916 F:      arch/arm/configs/mvebu_*_defconfig
1917 F:      arch/arm/mach-mvebu/
1918 F:      arch/arm64/boot/dts/marvell/armada*
1919 F:      drivers/cpufreq/armada-37xx-cpufreq.c
1920 F:      drivers/cpufreq/armada-8k-cpufreq.c
1921 F:      drivers/cpufreq/mvebu-cpufreq.c
1922 F:      drivers/irqchip/irq-armada-370-xp.c
1923 F:      drivers/irqchip/irq-mvebu-*
1924 F:      drivers/pinctrl/mvebu/
1925 F:      drivers/rtc/rtc-armada38x.c
1926 T:      git git://git.infradead.org/linux-mvebu.git
1927
1928 ARM/Mediatek RTC DRIVER
1929 M:      Eddie Huang <eddie.huang@mediatek.com>
1930 M:      Sean Wang <sean.wang@mediatek.com>
1931 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1932 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1933 S:      Maintained
1934 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
1935 F:      drivers/rtc/rtc-mt6397.c
1936 F:      drivers/rtc/rtc-mt7622.c
1937
1938 ARM/Mediatek SoC support
1939 M:      Matthias Brugger <matthias.bgg@gmail.com>
1940 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1941 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1942 W:      https://mtk.bcnfs.org/
1943 C:      irc://chat.freenode.net/linux-mediatek
1944 S:      Maintained
1945 F:      arch/arm/boot/dts/mt6*
1946 F:      arch/arm/boot/dts/mt7*
1947 F:      arch/arm/boot/dts/mt8*
1948 F:      arch/arm/mach-mediatek/
1949 F:      arch/arm64/boot/dts/mediatek/
1950 F:      drivers/soc/mediatek/
1951 N:      mtk
1952 N:      mt[678]
1953 K:      mediatek
1954
1955 ARM/Mediatek USB3 PHY DRIVER
1956 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1957 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1958 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1959 S:      Maintained
1960 F:      drivers/phy/mediatek/
1961 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
1962
1963 ARM/Microchip (AT91) SoC support
1964 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
1965 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
1966 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
1967 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1968 W:      http://www.linux4sam.org
1969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
1970 S:      Supported
1971 N:      at91
1972 N:      atmel
1973 F:      arch/arm/mach-at91/
1974 F:      include/soc/at91/
1975 F:      arch/arm/boot/dts/at91*.dts
1976 F:      arch/arm/boot/dts/at91*.dtsi
1977 F:      arch/arm/boot/dts/sama*.dts
1978 F:      arch/arm/boot/dts/sama*.dtsi
1979 F:      arch/arm/include/debug/at91.S
1980 F:      drivers/memory/atmel*
1981 F:      drivers/watchdog/sama5d4_wdt.c
1982 X:      drivers/input/touchscreen/atmel_mxt_ts.c
1983 X:      drivers/net/wireless/atmel/
1984
1985 ARM/MIOA701 MACHINE SUPPORT
1986 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1987 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1988 F:      arch/arm/mach-pxa/mioa701.c
1989 S:      Maintained
1990
1991 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1992 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1993 S:      Maintained
1994
1995 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
1996 M:      Linus Walleij <linus.walleij@linaro.org>
1997 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1998 S:      Maintained
1999 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2000 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2001 F:      arch/arm/mach-nomadik/
2002 F:      arch/arm/mach-u300/
2003 F:      arch/arm/mach-ux500/
2004 F:      drivers/soc/ux500/
2005 F:      arch/arm/boot/dts/ste-*
2006 F:      drivers/clk/clk-nomadik.c
2007 F:      drivers/clk/clk-u300.c
2008 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2009 F:      drivers/clocksource/timer-u300.c
2010 F:      drivers/dma/coh901318*
2011 F:      drivers/dma/ste_dma40*
2012 F:      drivers/hwspinlock/u8500_hsem.c
2013 F:      drivers/i2c/busses/i2c-nomadik.c
2014 F:      drivers/i2c/busses/i2c-stu300.c
2015 F:      drivers/mfd/ab3100*
2016 F:      drivers/mfd/ab8500*
2017 F:      drivers/mfd/abx500*
2018 F:      drivers/mfd/dbx500*
2019 F:      drivers/mfd/db8500*
2020 F:      drivers/pinctrl/nomadik/
2021 F:      drivers/pinctrl/pinctrl-coh901*
2022 F:      drivers/pinctrl/pinctrl-u300.c
2023 F:      drivers/rtc/rtc-ab3100.c
2024 F:      drivers/rtc/rtc-ab8500.c
2025 F:      drivers/rtc/rtc-coh901331.c
2026 F:      drivers/rtc/rtc-pl031.c
2027 F:      drivers/watchdog/coh901327_wdt.c
2028 F:      Documentation/devicetree/bindings/arm/ste-*
2029 F:      Documentation/devicetree/bindings/arm/ux500/
2030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2031
2032 ARM/NUVOTON NPCM ARCHITECTURE
2033 M:      Avi Fishman <avifishman70@gmail.com>
2034 M:      Tomer Maimon <tmaimon77@gmail.com>
2035 M:      Tali Perry <tali.perry1@gmail.com>
2036 R:      Patrick Venture <venture@google.com>
2037 R:      Nancy Yuen <yuenn@google.com>
2038 R:      Benjamin Fair <benjaminfair@google.com>
2039 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2040 S:      Supported
2041 F:      arch/arm/mach-npcm/
2042 F:      arch/arm/boot/dts/nuvoton-npcm*
2043 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2044 F:      drivers/*/*npcm*
2045 F:      Documentation/devicetree/bindings/*/*npcm*
2046 F:      Documentation/devicetree/bindings/*/*/*npcm*
2047
2048 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2049 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2050 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2051 S:      Orphan
2052 F:      arch/arm/mach-s3c24xx/mach-gta02.c
2053 F:      arch/arm/mach-s3c24xx/gta02.h
2054
2055 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2056 M:      Alexander Clouter <alex@digriz.org.uk>
2057 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2058 W:      http://www.digriz.org.uk/ts78xx/kernel
2059 S:      Maintained
2060 F:      arch/arm/mach-orion5x/ts78xx-*
2061
2062 ARM/OXNAS platform support
2063 M:      Neil Armstrong <narmstrong@baylibre.com>
2064 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2065 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2066 S:      Maintained
2067 F:      arch/arm/mach-oxnas/
2068 F:      arch/arm/boot/dts/ox8*.dts*
2069 N:      oxnas
2070
2071 ARM/PALM TREO SUPPORT
2072 M:      Tomas Cech <sleep_walker@suse.com>
2073 L:      linux-arm-kernel@lists.infradead.org
2074 W:      http://hackndev.com
2075 S:      Maintained
2076 F:      arch/arm/mach-pxa/palmtreo.*
2077
2078 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2079 M:      Marek Vasut <marek.vasut@gmail.com>
2080 L:      linux-arm-kernel@lists.infradead.org
2081 W:      http://hackndev.com
2082 S:      Maintained
2083 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2084 F:      arch/arm/mach-pxa/palmtx.c
2085 F:      arch/arm/mach-pxa/palmt5.*
2086 F:      arch/arm/mach-pxa/include/mach/palmld.h
2087 F:      arch/arm/mach-pxa/palmld.c
2088 F:      arch/arm/mach-pxa/palmte2.*
2089 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2090 F:      arch/arm/mach-pxa/palmtc.c
2091
2092 ARM/PALMZ72 SUPPORT
2093 M:      Sergey Lapin <slapin@ossfans.org>
2094 L:      linux-arm-kernel@lists.infradead.org
2095 W:      http://hackndev.com
2096 S:      Maintained
2097 F:      arch/arm/mach-pxa/palmz72.*
2098
2099 ARM/PLEB SUPPORT
2100 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2101 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2102 S:      Maintained
2103
2104 ARM/PT DIGITAL BOARD PORT
2105 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2106 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2107 W:      http://www.armlinux.org.uk/
2108 S:      Maintained
2109
2110 ARM/QUALCOMM SUPPORT
2111 M:      Andy Gross <agross@kernel.org>
2112 L:      linux-arm-msm@vger.kernel.org
2113 S:      Maintained
2114 F:      Documentation/devicetree/bindings/soc/qcom/
2115 F:      Documentation/devicetree/bindings/*/qcom*
2116 F:      arch/arm/boot/dts/qcom-*.dts
2117 F:      arch/arm/boot/dts/qcom-*.dtsi
2118 F:      arch/arm/mach-qcom/
2119 F:      arch/arm64/boot/dts/qcom/
2120 F:      drivers/*/qcom/
2121 F:      drivers/*/qcom*
2122 F:      drivers/*/*/qcom/
2123 F:      drivers/*/*/qcom*
2124 F:      drivers/*/pm8???-*
2125 F:      drivers/bluetooth/btqcomsmd.c
2126 F:      drivers/clocksource/timer-qcom.c
2127 F:      drivers/extcon/extcon-qcom*
2128 F:      drivers/iommu/msm*
2129 F:      drivers/i2c/busses/i2c-qup.c
2130 F:      drivers/i2c/busses/i2c-qcom-geni.c
2131 F:      drivers/mfd/ssbi.c
2132 F:      drivers/mmc/host/mmci_qcom*
2133 F:      drivers/mmc/host/sdhci-msm.c
2134 F:      drivers/pci/controller/dwc/pcie-qcom.c
2135 F:      drivers/phy/qualcomm/
2136 F:      drivers/power/*/msm*
2137 F:      drivers/reset/reset-qcom-*
2138 F:      drivers/scsi/ufs/ufs-qcom.*
2139 F:      drivers/spi/spi-qup.c
2140 F:      drivers/spi/spi-geni-qcom.c
2141 F:      drivers/spi/spi-qcom-qspi.c
2142 F:      drivers/tty/serial/msm_serial.c
2143 F:      drivers/usb/dwc3/dwc3-qcom.c
2144 F:      include/dt-bindings/*/qcom*
2145 F:      include/linux/*/qcom*
2146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2147
2148 ARM/RADISYS ENP2611 MACHINE SUPPORT
2149 M:      Lennert Buytenhek <kernel@wantstofly.org>
2150 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2151 S:      Maintained
2152
2153 ARM/RDA MICRO ARCHITECTURE
2154 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2155 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2156 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2157 S:      Maintained
2158 F:      arch/arm/boot/dts/rda8810pl-*
2159 F:      drivers/clocksource/timer-rda.c
2160 F:      drivers/irqchip/irq-rda-intc.c
2161 F:      drivers/tty/serial/rda-uart.c
2162 F:      Documentation/devicetree/bindings/arm/rda.yaml
2163 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2164 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2165 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2166
2167 ARM/REALTEK ARCHITECTURE
2168 M:      Andreas Färber <afaerber@suse.de>
2169 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2170 S:      Maintained
2171 F:      arch/arm64/boot/dts/realtek/
2172 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2173
2174 ARM/RENESAS ARM64 ARCHITECTURE
2175 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2176 M:      Magnus Damm <magnus.damm@gmail.com>
2177 L:      linux-renesas-soc@vger.kernel.org
2178 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2180 S:      Supported
2181 F:      arch/arm64/boot/dts/renesas/
2182 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2183 F:      drivers/soc/renesas/
2184 F:      include/linux/soc/renesas/
2185
2186 ARM/RISCPC ARCHITECTURE
2187 M:      Russell King <linux@armlinux.org.uk>
2188 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2189 W:      http://www.armlinux.org.uk/
2190 S:      Maintained
2191 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2192 F:      arch/arm/include/asm/hardware/ioc.h
2193 F:      arch/arm/include/asm/hardware/iomd.h
2194 F:      arch/arm/include/asm/hardware/memc.h
2195 F:      arch/arm/mach-rpc/
2196 F:      drivers/net/ethernet/8390/etherh.c
2197 F:      drivers/net/ethernet/i825xx/ether1*
2198 F:      drivers/net/ethernet/seeq/ether3*
2199 F:      drivers/scsi/arm/
2200
2201 ARM/Rockchip SoC support
2202 M:      Heiko Stuebner <heiko@sntech.de>
2203 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2204 L:      linux-rockchip@lists.infradead.org
2205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2206 S:      Maintained
2207 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.txt
2208 F:      arch/arm/boot/dts/rk3*
2209 F:      arch/arm/boot/dts/rv1108*
2210 F:      arch/arm/mach-rockchip/
2211 F:      drivers/clk/rockchip/
2212 F:      drivers/i2c/busses/i2c-rk3x.c
2213 F:      drivers/*/*rockchip*
2214 F:      drivers/*/*/*rockchip*
2215 F:      sound/soc/rockchip/
2216 N:      rockchip
2217
2218 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
2219 M:      Kukjin Kim <kgene@kernel.org>
2220 M:      Krzysztof Kozlowski <krzk@kernel.org>
2221 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2222 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2223 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2224 S:      Maintained
2225 F:      arch/arm/boot/dts/s3c*
2226 F:      arch/arm/boot/dts/s5p*
2227 F:      arch/arm/boot/dts/exynos*
2228 F:      arch/arm64/boot/dts/exynos/
2229 F:      arch/arm/plat-samsung/
2230 F:      arch/arm/mach-s3c24*/
2231 F:      arch/arm/mach-s3c64xx/
2232 F:      arch/arm/mach-s5p*/
2233 F:      arch/arm/mach-exynos*/
2234 F:      drivers/*/*s3c24*
2235 F:      drivers/*/*/*s3c24*
2236 F:      drivers/*/*s3c64xx*
2237 F:      drivers/*/*s5pv210*
2238 F:      drivers/memory/samsung/
2239 F:      drivers/soc/samsung/
2240 F:      include/linux/soc/samsung/
2241 F:      Documentation/arm/samsung/
2242 F:      Documentation/devicetree/bindings/arm/samsung/
2243 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
2244 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
2245 N:      exynos
2246
2247 ARM/SAMSUNG MOBILE MACHINE SUPPORT
2248 M:      Kyungmin Park <kyungmin.park@samsung.com>
2249 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2250 S:      Maintained
2251 F:      arch/arm/mach-s5pv210/
2252
2253 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2254 M:      Kyungmin Park <kyungmin.park@samsung.com>
2255 M:      Kamil Debski <kamil@wypas.org>
2256 M:      Andrzej Hajda <a.hajda@samsung.com>
2257 L:      linux-arm-kernel@lists.infradead.org
2258 L:      linux-media@vger.kernel.org
2259 S:      Maintained
2260 F:      drivers/media/platform/s5p-g2d/
2261
2262 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2263 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2264 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2265 L:      linux-media@vger.kernel.org
2266 S:      Maintained
2267 F:      drivers/media/platform/s5p-cec/
2268 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2269
2270 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2271 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2272 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2273 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2274 L:      linux-arm-kernel@lists.infradead.org
2275 L:      linux-media@vger.kernel.org
2276 S:      Maintained
2277 F:      drivers/media/platform/s5p-jpeg/
2278
2279 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2280 M:      Kyungmin Park <kyungmin.park@samsung.com>
2281 M:      Kamil Debski <kamil@wypas.org>
2282 M:      Jeongtae Park <jtp.park@samsung.com>
2283 M:      Andrzej Hajda <a.hajda@samsung.com>
2284 L:      linux-arm-kernel@lists.infradead.org
2285 L:      linux-media@vger.kernel.org
2286 S:      Maintained
2287 F:      drivers/media/platform/s5p-mfc/
2288
2289 ARM/SHMOBILE ARM ARCHITECTURE
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/geert/renesas-devel.git next
2295 S:      Supported
2296 F:      arch/arm/boot/dts/emev2*
2297 F:      arch/arm/boot/dts/gr-peach*
2298 F:      arch/arm/boot/dts/iwg20d-q7*
2299 F:      arch/arm/boot/dts/r7s*
2300 F:      arch/arm/boot/dts/r8a*
2301 F:      arch/arm/boot/dts/r9a*
2302 F:      arch/arm/boot/dts/sh*
2303 F:      arch/arm/configs/shmobile_defconfig
2304 F:      arch/arm/include/debug/renesas-scif.S
2305 F:      arch/arm/mach-shmobile/
2306 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2307 F:      drivers/soc/renesas/
2308 F:      include/linux/soc/renesas/
2309
2310 ARM/SOCFPGA ARCHITECTURE
2311 M:      Dinh Nguyen <dinguyen@kernel.org>
2312 S:      Maintained
2313 F:      arch/arm/mach-socfpga/
2314 F:      arch/arm/boot/dts/socfpga*
2315 F:      arch/arm/configs/socfpga_defconfig
2316 F:      arch/arm64/boot/dts/altera/
2317 F:      arch/arm64/boot/dts/intel/
2318 W:      http://www.rocketboards.org
2319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2320
2321 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2322 M:      Dinh Nguyen <dinguyen@kernel.org>
2323 S:      Maintained
2324 F:      drivers/clk/socfpga/
2325
2326 ARM/SOCFPGA EDAC SUPPORT
2327 M:      Thor Thayer <thor.thayer@linux.intel.com>
2328 S:      Maintained
2329 F:      drivers/edac/altera_edac.
2330
2331 ARM/SPREADTRUM SoC SUPPORT
2332 M:      Orson Zhai <orsonzhai@gmail.com>
2333 M:      Baolin Wang <baolin.wang7@gmail.com>
2334 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2335 S:      Maintained
2336 F:      arch/arm64/boot/dts/sprd
2337 N:      sprd
2338 N:      sc27xx
2339 N:      sc2731
2340
2341 ARM/STI ARCHITECTURE
2342 M:      Patrice Chotard <patrice.chotard@st.com>
2343 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2344 W:      http://www.stlinux.com
2345 S:      Maintained
2346 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2347 F:      arch/arm/mach-sti/
2348 F:      arch/arm/boot/dts/sti*
2349 F:      drivers/char/hw_random/st-rng.c
2350 F:      drivers/clocksource/arm_global_timer.c
2351 F:      drivers/clocksource/clksrc_st_lpc.c
2352 F:      drivers/cpufreq/sti-cpufreq.c
2353 F:      drivers/dma/st_fdma*
2354 F:      drivers/i2c/busses/i2c-st.c
2355 F:      drivers/media/rc/st_rc.c
2356 F:      drivers/media/platform/sti/c8sectpfe/
2357 F:      drivers/mmc/host/sdhci-st.c
2358 F:      drivers/phy/st/phy-miphy28lp.c
2359 F:      drivers/phy/st/phy-stih407-usb.c
2360 F:      drivers/pinctrl/pinctrl-st.c
2361 F:      drivers/remoteproc/st_remoteproc.c
2362 F:      drivers/remoteproc/st_slim_rproc.c
2363 F:      drivers/reset/sti/
2364 F:      drivers/rtc/rtc-st-lpc.c
2365 F:      drivers/tty/serial/st-asc.c
2366 F:      drivers/usb/dwc3/dwc3-st.c
2367 F:      drivers/usb/host/ehci-st.c
2368 F:      drivers/usb/host/ohci-st.c
2369 F:      drivers/watchdog/st_lpc_wdt.c
2370 F:      drivers/ata/ahci_st.c
2371 F:      include/linux/remoteproc/st_slim_rproc.h
2372
2373 ARM/STM32 ARCHITECTURE
2374 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2375 M:      Alexandre Torgue <alexandre.torgue@st.com>
2376 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2377 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2378 S:      Maintained
2379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2380 N:      stm32
2381 N:      stm
2382 F:      arch/arm/boot/dts/stm32*
2383 F:      arch/arm/mach-stm32/
2384 F:      drivers/clocksource/armv7m_systick.c
2385
2386 ARM/Synaptics SoC support
2387 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2388 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2389 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2390 S:      Maintained
2391 F:      arch/arm/mach-berlin/
2392 F:      arch/arm/boot/dts/berlin*
2393 F:      arch/arm64/boot/dts/synaptics/
2394
2395 ARM/TANGO ARCHITECTURE
2396 M:      Marc Gonzalez <marc.w.gonzalez@free.fr>
2397 M:      Mans Rullgard <mans@mansr.com>
2398 L:      linux-arm-kernel@lists.infradead.org
2399 S:      Odd Fixes
2400 N:      tango
2401
2402 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2403 M:      Lennert Buytenhek <kernel@wantstofly.org>
2404 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2405 S:      Maintained
2406
2407 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2408 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2409 L:      linux-tegra@vger.kernel.org
2410 L:      linux-media@vger.kernel.org
2411 S:      Maintained
2412 F:      drivers/media/platform/tegra-cec/
2413 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2414
2415 ARM/TETON BGA MACHINE SUPPORT
2416 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2417 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2418 S:      Maintained
2419
2420 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2421 M:      Santosh Shilimkar <ssantosh@kernel.org>
2422 L:      linux-kernel@vger.kernel.org
2423 S:      Maintained
2424 F:      drivers/memory/*emif*
2425
2426 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2427 M:      Tero Kristo <t-kristo@ti.com>
2428 M:      Nishanth Menon <nm@ti.com>
2429 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2430 S:      Supported
2431 F:      Documentation/devicetree/bindings/arm/ti/k3.txt
2432 F:      arch/arm64/boot/dts/ti/Makefile
2433 F:      arch/arm64/boot/dts/ti/k3-*
2434 F:      include/dt-bindings/pinctrl/k3.h
2435
2436 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2437 M:      Santosh Shilimkar <ssantosh@kernel.org>
2438 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2439 S:      Maintained
2440 F:      arch/arm/mach-keystone/
2441 F:      arch/arm/boot/dts/keystone-*
2442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2443
2444 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2445 M:      Santosh Shilimkar <ssantosh@kernel.org>
2446 L:      linux-kernel@vger.kernel.org
2447 S:      Maintained
2448 F:      drivers/clk/keystone/
2449
2450 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2451 M:      Santosh Shilimkar <ssantosh@kernel.org>
2452 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2453 L:      linux-kernel@vger.kernel.org
2454 S:      Maintained
2455 F:      drivers/clocksource/timer-keystone.c
2456
2457 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2458 M:      Santosh Shilimkar <ssantosh@kernel.org>
2459 L:      linux-kernel@vger.kernel.org
2460 S:      Maintained
2461 F:      drivers/power/reset/keystone-reset.c
2462
2463 ARM/THECUS N2100 MACHINE SUPPORT
2464 M:      Lennert Buytenhek <kernel@wantstofly.org>
2465 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2466 S:      Maintained
2467
2468 ARM/TOSA MACHINE SUPPORT
2469 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2470 M:      Dirk Opfer <dirk@opfer-online.de>
2471 S:      Maintained
2472
2473 ARM/UNIPHIER ARCHITECTURE
2474 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
2475 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2477 S:      Maintained
2478 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.txt
2479 F:      Documentation/devicetree/bindings/gpio/gpio-uniphier.txt
2480 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.txt
2481 F:      arch/arm/boot/dts/uniphier*
2482 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2483 F:      arch/arm/mach-uniphier/
2484 F:      arch/arm/mm/cache-uniphier.c
2485 F:      arch/arm64/boot/dts/socionext/uniphier*
2486 F:      drivers/bus/uniphier-system-bus.c
2487 F:      drivers/clk/uniphier/
2488 F:      drivers/dma/uniphier-mdmac.c
2489 F:      drivers/gpio/gpio-uniphier.c
2490 F:      drivers/i2c/busses/i2c-uniphier*
2491 F:      drivers/irqchip/irq-uniphier-aidet.c
2492 F:      drivers/mmc/host/uniphier-sd.c
2493 F:      drivers/pinctrl/uniphier/
2494 F:      drivers/reset/reset-uniphier.c
2495 F:      drivers/tty/serial/8250/8250_uniphier.c
2496 N:      uniphier
2497
2498 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
2499 M:      Ulf Hansson <ulf.hansson@linaro.org>
2500 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2501 T:      git git://git.linaro.org/people/ulfh/clk.git
2502 S:      Maintained
2503 F:      drivers/clk/ux500/
2504
2505 ARM/VERSATILE EXPRESS PLATFORM
2506 M:      Liviu Dudau <liviu.dudau@arm.com>
2507 M:      Sudeep Holla <sudeep.holla@arm.com>
2508 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2509 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2510 S:      Maintained
2511 F:      arch/arm/boot/dts/vexpress*
2512 F:      arch/arm64/boot/dts/arm/
2513 F:      arch/arm/mach-vexpress/
2514 F:      */*/vexpress*
2515 F:      */*/*/vexpress*
2516 F:      drivers/clk/versatile/clk-vexpress-osc.c
2517 F:      drivers/clocksource/timer-versatile.c
2518 N:      mps2
2519
2520 ARM/VFP SUPPORT
2521 M:      Russell King <linux@armlinux.org.uk>
2522 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2523 W:      http://www.armlinux.org.uk/
2524 S:      Maintained
2525 F:      arch/arm/vfp/
2526
2527 ARM/VOIPAC PXA270 SUPPORT
2528 M:      Marek Vasut <marek.vasut@gmail.com>
2529 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2530 S:      Maintained
2531 F:      arch/arm/mach-pxa/vpac270.c
2532 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2533
2534 ARM/VT8500 ARM ARCHITECTURE
2535 M:      Tony Prisk <linux@prisktech.co.nz>
2536 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2537 S:      Maintained
2538 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2539 F:      arch/arm/mach-vt8500/
2540 F:      drivers/clocksource/timer-vt8500.c
2541 F:      drivers/i2c/busses/i2c-wmt.c
2542 F:      drivers/mmc/host/wmt-sdmmc.c
2543 F:      drivers/pwm/pwm-vt8500.c
2544 F:      drivers/rtc/rtc-vt8500.c
2545 F:      drivers/tty/serial/vt8500_serial.c
2546 F:      drivers/usb/host/ehci-platform.c
2547 F:      drivers/usb/host/uhci-platform.c
2548 F:      drivers/video/fbdev/vt8500lcdfb.*
2549 F:      drivers/video/fbdev/wm8505fb*
2550 F:      drivers/video/fbdev/wmt_ge_rops.*
2551
2552 ARM/ZIPIT Z2 SUPPORT
2553 M:      Marek Vasut <marek.vasut@gmail.com>
2554 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2555 S:      Maintained
2556 F:      arch/arm/mach-pxa/z2.c
2557 F:      arch/arm/mach-pxa/include/mach/z2.h
2558
2559 ARM/ZTE ARCHITECTURE
2560 M:      Jun Nie <jun.nie@linaro.org>
2561 M:      Shawn Guo <shawnguo@kernel.org>
2562 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2563 S:      Maintained
2564 F:      arch/arm/boot/dts/zx2967*
2565 F:      arch/arm/mach-zx/
2566 F:      arch/arm64/boot/dts/zte/
2567 F:      drivers/clk/zte/
2568 F:      drivers/dma/zx_dma.c
2569 F:      drivers/gpio/gpio-zx.c
2570 F:      drivers/i2c/busses/i2c-zx2967.c
2571 F:      drivers/mmc/host/dw_mmc-zx.*
2572 F:      drivers/pinctrl/zte/
2573 F:      drivers/soc/zte/
2574 F:      drivers/thermal/zx2967_thermal.c
2575 F:      drivers/watchdog/zx2967_wdt.c
2576 F:      Documentation/devicetree/bindings/arm/zte.yaml
2577 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2578 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2579 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2580 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2581 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2582 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2583 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2584 F:      Documentation/devicetree/bindings/soc/zte/
2585 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2586 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2587 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2588 F:      include/dt-bindings/clock/zx2967*.h
2589 F:      include/dt-bindings/soc/zte,*.h
2590 F:      sound/soc/codecs/zx_aud96p22.c
2591 F:      sound/soc/zte/
2592
2593 ARM/ZYNQ ARCHITECTURE
2594 M:      Michal Simek <michal.simek@xilinx.com>
2595 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2596 W:      http://wiki.xilinx.com
2597 T:      git https://github.com/Xilinx/linux-xlnx.git
2598 S:      Supported
2599 F:      arch/arm/mach-zynq/
2600 F:      drivers/cpuidle/cpuidle-zynq.c
2601 F:      drivers/block/xsysace.c
2602 N:      zynq
2603 N:      xilinx
2604 F:      Documentation/devicetree/bindings/i2c/i2c-cadence.txt
2605 F:      Documentation/devicetree/bindings/i2c/i2c-xiic.txt
2606 F:      drivers/clocksource/timer-cadence-ttc.c
2607 F:      drivers/i2c/busses/i2c-cadence.c
2608 F:      drivers/mmc/host/sdhci-of-arasan.c
2609 F:      drivers/edac/synopsys_edac.c
2610 F:      drivers/i2c/busses/i2c-xiic.c
2611
2612 ARM64 PORT (AARCH64 ARCHITECTURE)
2613 M:      Catalin Marinas <catalin.marinas@arm.com>
2614 M:      Will Deacon <will@kernel.org>
2615 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2617 S:      Maintained
2618 F:      arch/arm64/
2619 X:      arch/arm64/boot/dts/
2620 F:      Documentation/arm64/
2621
2622 AS3645A LED FLASH CONTROLLER DRIVER
2623 M:      Sakari Ailus <sakari.ailus@iki.fi>
2624 L:      linux-leds@vger.kernel.org
2625 S:      Maintained
2626 F:      drivers/leds/leds-as3645a.c
2627
2628 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2629 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2630 L:      linux-media@vger.kernel.org
2631 T:      git git://linuxtv.org/media_tree.git
2632 S:      Maintained
2633 F:      drivers/media/i2c/ak7375.c
2634 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2635
2636 ASAHI KASEI AK8974 DRIVER
2637 M:      Linus Walleij <linus.walleij@linaro.org>
2638 L:      linux-iio@vger.kernel.org
2639 W:      http://www.akm.com/
2640 S:      Supported
2641 F:      drivers/iio/magnetometer/ak8974.c
2642
2643 ASC7621 HARDWARE MONITOR DRIVER
2644 M:      George Joseph <george.joseph@fairview5.com>
2645 L:      linux-hwmon@vger.kernel.org
2646 S:      Maintained
2647 F:      Documentation/hwmon/asc7621.rst
2648 F:      drivers/hwmon/asc7621.c
2649
2650 ASPEED PINCTRL DRIVERS
2651 M:      Andrew Jeffery <andrew@aj.id.au>
2652 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2653 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2654 L:      linux-gpio@vger.kernel.org
2655 S:      Maintained
2656 F:      drivers/pinctrl/aspeed/
2657 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2658
2659 ASPEED VIDEO ENGINE DRIVER
2660 M:      Eddie James <eajames@linux.ibm.com>
2661 L:      linux-media@vger.kernel.org
2662 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2663 S:      Maintained
2664 F:      drivers/media/platform/aspeed-video.c
2665 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2666
2667 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2668 M:      Corentin Chary <corentin.chary@gmail.com>
2669 L:      acpi4asus-user@lists.sourceforge.net
2670 L:      platform-driver-x86@vger.kernel.org
2671 W:      http://acpi4asus.sf.net
2672 S:      Maintained
2673 F:      drivers/platform/x86/asus*.c
2674 F:      drivers/platform/x86/eeepc*.c
2675
2676 ASUS WIRELESS RADIO CONTROL DRIVER
2677 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2678 L:      platform-driver-x86@vger.kernel.org
2679 S:      Maintained
2680 F:      drivers/platform/x86/asus-wireless.c
2681
2682 ASYMMETRIC KEYS
2683 M:      David Howells <dhowells@redhat.com>
2684 L:      keyrings@vger.kernel.org
2685 S:      Maintained
2686 F:      Documentation/crypto/asymmetric-keys.txt
2687 F:      include/linux/verification.h
2688 F:      include/crypto/public_key.h
2689 F:      include/crypto/pkcs7.h
2690 F:      crypto/asymmetric_keys/
2691
2692 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2693 R:      Dan Williams <dan.j.williams@intel.com>
2694 W:      http://sourceforge.net/projects/xscaleiop
2695 S:      Odd fixes
2696 F:      Documentation/crypto/async-tx-api.txt
2697 F:      crypto/async_tx/
2698 F:      drivers/dma/
2699 F:      include/linux/dmaengine.h
2700 F:      include/linux/async_tx.h
2701
2702 AT24 EEPROM DRIVER
2703 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2704 L:      linux-i2c@vger.kernel.org
2705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2706 S:      Maintained
2707 F:      Documentation/devicetree/bindings/eeprom/at24.txt
2708 F:      drivers/misc/eeprom/at24.c
2709
2710 ATA OVER ETHERNET (AOE) DRIVER
2711 M:      "Justin Sanders" <justin@coraid.com>
2712 W:      http://www.openaoe.org/
2713 S:      Supported
2714 F:      Documentation/admin-guide/aoe/
2715 F:      drivers/block/aoe/
2716
2717 ATHEROS 71XX/9XXX GPIO DRIVER
2718 M:      Alban Bedel <albeu@free.fr>
2719 W:      https://github.com/AlbanBedel/linux
2720 T:      git git://github.com/AlbanBedel/linux
2721 S:      Maintained
2722 F:      drivers/gpio/gpio-ath79.c
2723 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2724
2725 ATHEROS 71XX/9XXX USB PHY DRIVER
2726 M:      Alban Bedel <albeu@free.fr>
2727 W:      https://github.com/AlbanBedel/linux
2728 T:      git git://github.com/AlbanBedel/linux
2729 S:      Maintained
2730 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2731 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2732
2733 ATHEROS ATH GENERIC UTILITIES
2734 M:      Kalle Valo <kvalo@codeaurora.org>
2735 L:      linux-wireless@vger.kernel.org
2736 S:      Supported
2737 F:      drivers/net/wireless/ath/*
2738
2739 ATHEROS ATH5K WIRELESS DRIVER
2740 M:      Jiri Slaby <jirislaby@gmail.com>
2741 M:      Nick Kossifidis <mickflemm@gmail.com>
2742 M:      Luis Chamberlain <mcgrof@kernel.org>
2743 L:      linux-wireless@vger.kernel.org
2744 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
2745 S:      Maintained
2746 F:      drivers/net/wireless/ath/ath5k/
2747
2748 ATHEROS ATH6KL WIRELESS DRIVER
2749 M:      Kalle Valo <kvalo@codeaurora.org>
2750 L:      linux-wireless@vger.kernel.org
2751 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
2752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2753 S:      Supported
2754 F:      drivers/net/wireless/ath/ath6kl/
2755
2756 ATI_REMOTE2 DRIVER
2757 M:      Ville Syrjala <syrjala@sci.fi>
2758 S:      Maintained
2759 F:      drivers/input/misc/ati_remote2.c
2760
2761 ATK0110 HWMON DRIVER
2762 M:      Luca Tettamanti <kronos.it@gmail.com>
2763 L:      linux-hwmon@vger.kernel.org
2764 S:      Maintained
2765 F:      drivers/hwmon/asus_atk0110.c
2766
2767 ATLX ETHERNET DRIVERS
2768 M:      Jay Cliburn <jcliburn@gmail.com>
2769 M:      Chris Snook <chris.snook@gmail.com>
2770 L:      netdev@vger.kernel.org
2771 W:      http://sourceforge.net/projects/atl1
2772 W:      http://atl1.sourceforge.net
2773 S:      Maintained
2774 F:      drivers/net/ethernet/atheros/
2775
2776 ATM
2777 M:      Chas Williams <3chas3@gmail.com>
2778 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2779 L:      netdev@vger.kernel.org
2780 W:      http://linux-atm.sourceforge.net
2781 S:      Maintained
2782 F:      drivers/atm/
2783 F:      include/linux/atm*
2784 F:      include/uapi/linux/atm*
2785
2786 ATMEL MACB ETHERNET DRIVER
2787 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2788 S:      Supported
2789 F:      drivers/net/ethernet/cadence/
2790
2791 ATMEL MAXTOUCH DRIVER
2792 M:      Nick Dyer <nick@shmanahar.org>
2793 T:      git git://github.com/ndyer/linux.git
2794 S:      Maintained
2795 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2796 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2797
2798 ATMEL WIRELESS DRIVER
2799 M:      Simon Kelley <simon@thekelleys.org.uk>
2800 L:      linux-wireless@vger.kernel.org
2801 W:      http://www.thekelleys.org.uk/atmel
2802 W:      http://atmelwlandriver.sourceforge.net/
2803 S:      Maintained
2804 F:      drivers/net/wireless/atmel/atmel*
2805
2806 ATOMIC INFRASTRUCTURE
2807 M:      Will Deacon <will@kernel.org>
2808 M:      Peter Zijlstra <peterz@infradead.org>
2809 R:      Boqun Feng <boqun.feng@gmail.com>
2810 L:      linux-kernel@vger.kernel.org
2811 S:      Maintained
2812 F:      arch/*/include/asm/atomic*.h
2813 F:      include/*/atomic*.h
2814 F:      scripts/atomic/
2815
2816 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2817 M:      Bradley Grove <linuxdrivers@attotech.com>
2818 L:      linux-scsi@vger.kernel.org
2819 W:      http://www.attotech.com
2820 S:      Supported
2821 F:      drivers/scsi/esas2r
2822
2823 ATUSB IEEE 802.15.4 RADIO DRIVER
2824 M:      Stefan Schmidt <stefan@datenfreihafen.org>
2825 L:      linux-wpan@vger.kernel.org
2826 S:      Maintained
2827 F:      drivers/net/ieee802154/atusb.c
2828 F:      drivers/net/ieee802154/atusb.h
2829 F:      drivers/net/ieee802154/at86rf230.h
2830
2831 AUDIT SUBSYSTEM
2832 M:      Paul Moore <paul@paul-moore.com>
2833 M:      Eric Paris <eparis@redhat.com>
2834 L:      linux-audit@redhat.com (moderated for non-subscribers)
2835 W:      https://github.com/linux-audit
2836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2837 S:      Supported
2838 F:      include/linux/audit.h
2839 F:      include/uapi/linux/audit.h
2840 F:      kernel/audit*
2841
2842 AUXILIARY DISPLAY DRIVERS
2843 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2844 S:      Maintained
2845 F:      drivers/auxdisplay/
2846 F:      include/linux/cfag12864b.h
2847
2848 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
2849 M:      Andreas Klinger <ak@it-klinger.de>
2850 L:      linux-iio@vger.kernel.org
2851 S:      Maintained
2852 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
2853 F:      drivers/iio/adc/hx711.c
2854
2855 AX.25 NETWORK LAYER
2856 M:      Ralf Baechle <ralf@linux-mips.org>
2857 L:      linux-hams@vger.kernel.org
2858 W:      http://www.linux-ax25.org/
2859 S:      Maintained
2860 F:      include/uapi/linux/ax25.h
2861 F:      include/net/ax25.h
2862 F:      net/ax25/
2863
2864 AXENTIA ARM DEVICES
2865 M:      Peter Rosin <peda@axentia.se>
2866 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2867 S:      Maintained
2868 F:      Documentation/devicetree/bindings/arm/axentia.txt
2869 F:      arch/arm/boot/dts/at91-linea.dtsi
2870 F:      arch/arm/boot/dts/at91-natte.dtsi
2871 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
2872 F:      arch/arm/boot/dts/at91-tse850-3.dts
2873
2874 AXENTIA ASOC DRIVERS
2875 M:      Peter Rosin <peda@axentia.se>
2876 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2877 S:      Maintained
2878 F:      Documentation/devicetree/bindings/sound/axentia,*
2879 F:      sound/soc/atmel/tse850-pcm5142.c
2880
2881 AXXIA I2C CONTROLLER
2882 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
2883 L:      linux-i2c@vger.kernel.org
2884 S:      Maintained
2885 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
2886 F:      drivers/i2c/busses/i2c-axxia.c
2887
2888 AZ6007 DVB DRIVER
2889 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
2890 L:      linux-media@vger.kernel.org
2891 W:      https://linuxtv.org
2892 T:      git git://linuxtv.org/media_tree.git
2893 S:      Maintained
2894 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2895
2896 AZTECH FM RADIO RECEIVER DRIVER
2897 M:      Hans Verkuil <hverkuil@xs4all.nl>
2898 L:      linux-media@vger.kernel.org
2899 T:      git git://linuxtv.org/media_tree.git
2900 W:      https://linuxtv.org
2901 S:      Maintained
2902 F:      drivers/media/radio/radio-aztech*
2903
2904 B43 WIRELESS DRIVER
2905 L:      linux-wireless@vger.kernel.org
2906 L:      b43-dev@lists.infradead.org
2907 W:      http://wireless.kernel.org/en/users/Drivers/b43
2908 S:      Odd Fixes
2909 F:      drivers/net/wireless/broadcom/b43/
2910
2911 B43LEGACY WIRELESS DRIVER
2912 M:      Larry Finger <Larry.Finger@lwfinger.net>
2913 L:      linux-wireless@vger.kernel.org
2914 L:      b43-dev@lists.infradead.org
2915 W:      http://wireless.kernel.org/en/users/Drivers/b43
2916 S:      Maintained
2917 F:      drivers/net/wireless/broadcom/b43legacy/
2918
2919 BACKLIGHT CLASS/SUBSYSTEM
2920 M:      Lee Jones <lee.jones@linaro.org>
2921 M:      Daniel Thompson <daniel.thompson@linaro.org>
2922 M:      Jingoo Han <jingoohan1@gmail.com>
2923 L:      dri-devel@lists.freedesktop.org
2924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2925 S:      Maintained
2926 F:      drivers/video/backlight/
2927 F:      include/linux/backlight.h
2928 F:      include/linux/pwm_backlight.h
2929 F:      Documentation/devicetree/bindings/leds/backlight
2930 F:      Documentation/ABI/stable/sysfs-class-backlight
2931 F:      Documentation/ABI/testing/sysfs-class-backlight
2932
2933 BATMAN ADVANCED
2934 M:      Marek Lindner <mareklindner@neomailbox.ch>
2935 M:      Simon Wunderlich <sw@simonwunderlich.de>
2936 M:      Antonio Quartulli <a@unstable.cc>
2937 M:      Sven Eckelmann <sven@narfation.org>
2938 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
2939 W:      https://www.open-mesh.org/
2940 B:      https://www.open-mesh.org/projects/batman-adv/issues
2941 C:      irc://chat.freenode.net/batman
2942 Q:      https://patchwork.open-mesh.org/project/batman/list/
2943 T:      git https://git.open-mesh.org/linux-merge.git
2944 S:      Maintained
2945 F:      Documentation/ABI/obsolete/sysfs-class-net-batman-adv
2946 F:      Documentation/ABI/obsolete/sysfs-class-net-mesh
2947 F:      Documentation/networking/batman-adv.rst
2948 F:      include/uapi/linux/batadv_packet.h
2949 F:      include/uapi/linux/batman_adv.h
2950 F:      net/batman-adv/
2951
2952 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2953 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2954 L:      linux-hams@vger.kernel.org
2955 W:      http://www.baycom.org/~tom/ham/ham.html
2956 S:      Maintained
2957 F:      drivers/net/hamradio/baycom*
2958
2959 BCACHE (BLOCK LAYER CACHE)
2960 M:      Coly Li <colyli@suse.de>
2961 M:      Kent Overstreet <kent.overstreet@gmail.com>
2962 L:      linux-bcache@vger.kernel.org
2963 W:      http://bcache.evilpiepirate.org
2964 C:      irc://irc.oftc.net/bcache
2965 S:      Maintained
2966 F:      drivers/md/bcache/
2967
2968 BDISP ST MEDIA DRIVER
2969 M:      Fabien Dessenne <fabien.dessenne@st.com>
2970 L:      linux-media@vger.kernel.org
2971 T:      git git://linuxtv.org/media_tree.git
2972 W:      https://linuxtv.org
2973 S:      Supported
2974 F:      drivers/media/platform/sti/bdisp
2975
2976 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2977 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2978 L:      netdev@vger.kernel.org
2979 S:      Maintained
2980 F:      drivers/net/ethernet/ec_bhf.c
2981
2982 BEFS FILE SYSTEM
2983 M:      Luis de Bethencourt <luisbg@kernel.org>
2984 M:      Salah Triki <salah.triki@gmail.com>
2985 S:      Maintained
2986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
2987 F:      Documentation/filesystems/befs.txt
2988 F:      fs/befs/
2989
2990 BFQ I/O SCHEDULER
2991 M:      Paolo Valente <paolo.valente@linaro.org>
2992 M:      Jens Axboe <axboe@kernel.dk>
2993 L:      linux-block@vger.kernel.org
2994 S:      Maintained
2995 F:      block/bfq-*
2996 F:      Documentation/block/bfq-iosched.rst
2997
2998 BFS FILE SYSTEM
2999 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3000 S:      Maintained
3001 F:      Documentation/filesystems/bfs.txt
3002 F:      fs/bfs/
3003 F:      include/uapi/linux/bfs_fs.h
3004
3005 BLINKM RGB LED DRIVER
3006 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3007 S:      Maintained
3008 F:      drivers/leds/leds-blinkm.c
3009
3010 BLOCK LAYER
3011 M:      Jens Axboe <axboe@kernel.dk>
3012 L:      linux-block@vger.kernel.org
3013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3014 S:      Maintained
3015 F:      block/
3016 F:      drivers/block/
3017 F:      kernel/trace/blktrace.c
3018 F:      lib/sbitmap.c
3019
3020 BLOCK2MTD DRIVER
3021 M:      Joern Engel <joern@lazybastard.org>
3022 L:      linux-mtd@lists.infradead.org
3023 S:      Maintained
3024 F:      drivers/mtd/devices/block2mtd.c
3025
3026 BLUETOOTH DRIVERS
3027 M:      Marcel Holtmann <marcel@holtmann.org>
3028 M:      Johan Hedberg <johan.hedberg@gmail.com>
3029 L:      linux-bluetooth@vger.kernel.org
3030 W:      http://www.bluez.org/
3031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3033 S:      Maintained
3034 F:      drivers/bluetooth/
3035
3036 BLUETOOTH SUBSYSTEM
3037 M:      Marcel Holtmann <marcel@holtmann.org>
3038 M:      Johan Hedberg <johan.hedberg@gmail.com>
3039 L:      linux-bluetooth@vger.kernel.org
3040 W:      http://www.bluez.org/
3041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3043 S:      Maintained
3044 F:      net/bluetooth/
3045 F:      include/net/bluetooth/
3046
3047 BONDING DRIVER
3048 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3049 M:      Veaceslav Falico <vfalico@gmail.com>
3050 M:      Andy Gospodarek <andy@greyhouse.net>
3051 L:      netdev@vger.kernel.org
3052 W:      http://sourceforge.net/projects/bonding/
3053 S:      Supported
3054 F:      drivers/net/bonding/
3055 F:      include/uapi/linux/if_bonding.h
3056
3057 BPF (Safe dynamic programs and tools)
3058 M:      Alexei Starovoitov <ast@kernel.org>
3059 M:      Daniel Borkmann <daniel@iogearbox.net>
3060 R:      Martin KaFai Lau <kafai@fb.com>
3061 R:      Song Liu <songliubraving@fb.com>
3062 R:      Yonghong Song <yhs@fb.com>
3063 R:      Andrii Nakryiko <andriin@fb.com>
3064 L:      netdev@vger.kernel.org
3065 L:      bpf@vger.kernel.org
3066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3068 Q:      https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
3069 S:      Supported
3070 F:      arch/*/net/*
3071 F:      Documentation/networking/filter.txt
3072 F:      Documentation/bpf/
3073 F:      include/linux/bpf*
3074 F:      include/linux/filter.h
3075 F:      include/trace/events/xdp.h
3076 F:      include/uapi/linux/bpf*
3077 F:      include/uapi/linux/filter.h
3078 F:      kernel/bpf/
3079 F:      kernel/trace/bpf_trace.c
3080 F:      lib/test_bpf.c
3081 F:      net/bpf/
3082 F:      net/core/filter.c
3083 F:      net/sched/act_bpf.c
3084 F:      net/sched/cls_bpf.c
3085 F:      samples/bpf/
3086 F:      tools/bpf/
3087 F:      tools/lib/bpf/
3088 F:      tools/testing/selftests/bpf/
3089 K:      bpf
3090 N:      bpf
3091
3092 BPF JIT for ARM
3093 M:      Shubham Bansal <illusionist.neo@gmail.com>
3094 L:      netdev@vger.kernel.org
3095 L:      bpf@vger.kernel.org
3096 S:      Maintained
3097 F:      arch/arm/net/
3098
3099 BPF JIT for ARM64
3100 M:      Daniel Borkmann <daniel@iogearbox.net>
3101 M:      Alexei Starovoitov <ast@kernel.org>
3102 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3103 L:      netdev@vger.kernel.org
3104 L:      bpf@vger.kernel.org
3105 S:      Supported
3106 F:      arch/arm64/net/
3107
3108 BPF JIT for MIPS (32-BIT AND 64-BIT)
3109 M:      Paul Burton <paulburton@kernel.org>
3110 L:      netdev@vger.kernel.org
3111 L:      bpf@vger.kernel.org
3112 S:      Maintained
3113 F:      arch/mips/net/
3114
3115 BPF JIT for NFP NICs
3116 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
3117 L:      netdev@vger.kernel.org
3118 L:      bpf@vger.kernel.org
3119 S:      Supported
3120 F:      drivers/net/ethernet/netronome/nfp/bpf/
3121
3122 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3123 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3124 M:      Sandipan Das <sandipan@linux.ibm.com>
3125 L:      netdev@vger.kernel.org
3126 L:      bpf@vger.kernel.org
3127 S:      Maintained
3128 F:      arch/powerpc/net/
3129
3130 BPF JIT for RISC-V (RV64G)
3131 M:      Björn Töpel <bjorn.topel@gmail.com>
3132 L:      netdev@vger.kernel.org
3133 S:      Maintained
3134 F:      arch/riscv/net/
3135
3136 BPF JIT for S390
3137 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3138 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
3139 M:      Vasily Gorbik <gor@linux.ibm.com>
3140 L:      netdev@vger.kernel.org
3141 L:      bpf@vger.kernel.org
3142 S:      Maintained
3143 F:      arch/s390/net/
3144 X:      arch/s390/net/pnet.c
3145
3146 BPF JIT for SPARC (32-BIT AND 64-BIT)
3147 M:      David S. Miller <davem@davemloft.net>
3148 L:      netdev@vger.kernel.org
3149 L:      bpf@vger.kernel.org
3150 S:      Maintained
3151 F:      arch/sparc/net/
3152
3153 BPF JIT for X86 32-BIT
3154 M:      Wang YanQing <udknight@gmail.com>
3155 L:      netdev@vger.kernel.org
3156 L:      bpf@vger.kernel.org
3157 S:      Maintained
3158 F:      arch/x86/net/bpf_jit_comp32.c
3159
3160 BPF JIT for X86 64-BIT
3161 M:      Alexei Starovoitov <ast@kernel.org>
3162 M:      Daniel Borkmann <daniel@iogearbox.net>
3163 L:      netdev@vger.kernel.org
3164 L:      bpf@vger.kernel.org
3165 S:      Supported
3166 F:      arch/x86/net/
3167 X:      arch/x86/net/bpf_jit_comp32.c
3168
3169 BROADCOM B44 10/100 ETHERNET DRIVER
3170 M:      Michael Chan <michael.chan@broadcom.com>
3171 L:      netdev@vger.kernel.org
3172 S:      Supported
3173 F:      drivers/net/ethernet/broadcom/b44.*
3174
3175 BROADCOM B53 ETHERNET SWITCH DRIVER
3176 M:      Florian Fainelli <f.fainelli@gmail.com>
3177 L:      netdev@vger.kernel.org
3178 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3179 S:      Supported
3180 F:      drivers/net/dsa/b53/*
3181 F:      include/linux/platform_data/b53.h
3182
3183 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3184 M:      Florian Fainelli <f.fainelli@gmail.com>
3185 M:      Ray Jui <rjui@broadcom.com>
3186 M:      Scott Branden <sbranden@broadcom.com>
3187 M:      bcm-kernel-feedback-list@broadcom.com
3188 T:      git git://github.com/broadcom/mach-bcm
3189 S:      Maintained
3190 N:      bcm281*
3191 N:      bcm113*
3192 N:      bcm216*
3193 N:      kona
3194 F:      arch/arm/mach-bcm/
3195
3196 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3197 M:      Eric Anholt <eric@anholt.net>
3198 M:      Stefan Wahren <wahrenst@gmx.net>
3199 L:      bcm-kernel-feedback-list@broadcom.com
3200 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3201 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3202 T:      git git://github.com/anholt/linux
3203 S:      Maintained
3204 N:      bcm2711
3205 N:      bcm2835
3206 F:      drivers/staging/vc04_services
3207
3208 BROADCOM BCM47XX MIPS ARCHITECTURE
3209 M:      Hauke Mehrtens <hauke@hauke-m.de>
3210 M:      Rafał Miłecki <zajec5@gmail.com>
3211 L:      linux-mips@vger.kernel.org
3212 S:      Maintained
3213 F:      Documentation/devicetree/bindings/mips/brcm/
3214 F:      arch/mips/bcm47xx/*
3215 F:      arch/mips/include/asm/mach-bcm47xx/*
3216
3217 BROADCOM BCM5301X ARM ARCHITECTURE
3218 M:      Hauke Mehrtens <hauke@hauke-m.de>
3219 M:      Rafał Miłecki <zajec5@gmail.com>
3220 M:      bcm-kernel-feedback-list@broadcom.com
3221 L:      linux-arm-kernel@lists.infradead.org
3222 S:      Maintained
3223 F:      arch/arm/mach-bcm/bcm_5301x.c
3224 F:      arch/arm/boot/dts/bcm5301x*.dtsi
3225 F:      arch/arm/boot/dts/bcm470*
3226 F:      arch/arm/boot/dts/bcm953012*
3227
3228 BROADCOM BCM53573 ARM ARCHITECTURE
3229 M:      Rafał Miłecki <rafal@milecki.pl>
3230 L:      bcm-kernel-feedback-list@broadcom.com
3231 L:      linux-arm-kernel@lists.infradead.org
3232 S:      Maintained
3233 F:      arch/arm/boot/dts/bcm53573*
3234 F:      arch/arm/boot/dts/bcm47189*
3235
3236 BROADCOM BCM63XX ARM ARCHITECTURE
3237 M:      Florian Fainelli <f.fainelli@gmail.com>
3238 M:      bcm-kernel-feedback-list@broadcom.com
3239 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3240 T:      git git://github.com/broadcom/stblinux.git
3241 S:      Maintained
3242 N:      bcm63xx
3243
3244 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3245 M:      Kevin Cernekee <cernekee@gmail.com>
3246 L:      linux-usb@vger.kernel.org
3247 S:      Maintained
3248 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3249
3250 BROADCOM BCM7XXX ARM ARCHITECTURE
3251 M:      Florian Fainelli <f.fainelli@gmail.com>
3252 M:      bcm-kernel-feedback-list@broadcom.com
3253 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3254 T:      git git://github.com/broadcom/stblinux.git
3255 S:      Maintained
3256 F:      arch/arm/mach-bcm/*brcmstb*
3257 F:      arch/arm/boot/dts/bcm7*.dts*
3258 F:      drivers/bus/brcmstb_gisb.c
3259 F:      arch/arm/mm/cache-b15-rac.c
3260 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3261 N:      brcmstb
3262
3263 BROADCOM BMIPS CPUFREQ DRIVER
3264 M:      Markus Mayer <mmayer@broadcom.com>
3265 M:      bcm-kernel-feedback-list@broadcom.com
3266 L:      linux-pm@vger.kernel.org
3267 S:      Maintained
3268 F:      drivers/cpufreq/bmips-cpufreq.c
3269
3270 BROADCOM BMIPS MIPS ARCHITECTURE
3271 M:      Florian Fainelli <f.fainelli@gmail.com>
3272 L:      bcm-kernel-feedback-list@broadcom.com
3273 L:      linux-mips@vger.kernel.org
3274 T:      git git://github.com/broadcom/stblinux.git
3275 S:      Maintained
3276 F:      arch/mips/bmips/*
3277 F:      arch/mips/include/asm/mach-bmips/*
3278 F:      arch/mips/kernel/*bmips*
3279 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3280 F:      drivers/irqchip/irq-bcm63*
3281 F:      drivers/irqchip/irq-bcm7*
3282 F:      drivers/irqchip/irq-brcmstb*
3283 F:      include/linux/bcm963xx_nvram.h
3284 F:      include/linux/bcm963xx_tag.h
3285
3286 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3287 M:      Rasesh Mody <rmody@marvell.com>
3288 M:      GR-Linux-NIC-Dev@marvell.com
3289 L:      netdev@vger.kernel.org
3290 S:      Supported
3291 F:      drivers/net/ethernet/broadcom/bnx2.*
3292 F:      drivers/net/ethernet/broadcom/bnx2_*
3293
3294 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3295 M:      QLogic-Storage-Upstream@qlogic.com
3296 L:      linux-scsi@vger.kernel.org
3297 S:      Supported
3298 F:      drivers/scsi/bnx2fc/
3299
3300 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3301 M:      QLogic-Storage-Upstream@qlogic.com
3302 L:      linux-scsi@vger.kernel.org
3303 S:      Supported
3304 F:      drivers/scsi/bnx2i/
3305
3306 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3307 M:      Ariel Elior <aelior@marvell.com>
3308 M:      Sudarsana Kalluru <skalluru@marvell.com>
3309 M:      GR-everest-linux-l2@marvell.com
3310 L:      netdev@vger.kernel.org
3311 S:      Supported
3312 F:      drivers/net/ethernet/broadcom/bnx2x/
3313
3314 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3315 M:      Michael Chan <michael.chan@broadcom.com>
3316 L:      netdev@vger.kernel.org
3317 S:      Supported
3318 F:      drivers/net/ethernet/broadcom/bnxt/
3319
3320 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3321 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
3322 M:      Franky Lin <franky.lin@broadcom.com>
3323 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3324 M:      Chi-Hsien Lin <chi-hsien.lin@cypress.com>
3325 M:      Wright Feng <wright.feng@cypress.com>
3326 L:      linux-wireless@vger.kernel.org
3327 L:      brcm80211-dev-list.pdl@broadcom.com
3328 L:      brcm80211-dev-list@cypress.com
3329 S:      Supported
3330 F:      drivers/net/wireless/broadcom/brcm80211/
3331
3332 BROADCOM BRCMSTB GPIO DRIVER
3333 M:      Gregory Fong <gregory.0xf0@gmail.com>
3334 L:      bcm-kernel-feedback-list@broadcom.com
3335 S:      Supported
3336 F:      drivers/gpio/gpio-brcmstb.c
3337 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3338
3339 BROADCOM BRCMSTB I2C DRIVER
3340 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3341 L:      linux-i2c@vger.kernel.org
3342 L:      bcm-kernel-feedback-list@broadcom.com
3343 S:      Supported
3344 F:      drivers/i2c/busses/i2c-brcmstb.c
3345 F:      Documentation/devicetree/bindings/i2c/i2c-brcmstb.txt
3346
3347 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3348 M:      Al Cooper <alcooperx@gmail.com>
3349 L:      linux-kernel@vger.kernel.org
3350 L:      bcm-kernel-feedback-list@broadcom.com
3351 S:      Maintained
3352 F:      drivers/phy/broadcom/phy-brcm-usb*
3353
3354 BROADCOM GENET ETHERNET DRIVER
3355 M:      Doug Berger <opendmb@gmail.com>
3356 M:      Florian Fainelli <f.fainelli@gmail.com>
3357 L:      bcm-kernel-feedback-list@broadcom.com
3358 L:      netdev@vger.kernel.org
3359 S:      Supported
3360 F:      drivers/net/ethernet/broadcom/genet/
3361
3362 BROADCOM IPROC ARM ARCHITECTURE
3363 M:      Ray Jui <rjui@broadcom.com>
3364 M:      Scott Branden <sbranden@broadcom.com>
3365 M:      bcm-kernel-feedback-list@broadcom.com
3366 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3367 T:      git git://github.com/broadcom/cygnus-linux.git
3368 S:      Maintained
3369 N:      iproc
3370 N:      cygnus
3371 N:      bcm[-_]nsp
3372 N:      bcm9113*
3373 N:      bcm9583*
3374 N:      bcm9585*
3375 N:      bcm9586*
3376 N:      bcm988312
3377 N:      bcm113*
3378 N:      bcm583*
3379 N:      bcm585*
3380 N:      bcm586*
3381 N:      bcm88312
3382 N:      hr2
3383 N:      stingray
3384 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3385 F:      arch/arm64/boot/dts/broadcom/stingray/*
3386 F:      drivers/clk/bcm/clk-ns*
3387 F:      drivers/clk/bcm/clk-sr*
3388 F:      drivers/pinctrl/bcm/pinctrl-ns*
3389 F:      include/dt-bindings/clock/bcm-sr*
3390
3391 BROADCOM KONA GPIO DRIVER
3392 M:      Ray Jui <rjui@broadcom.com>
3393 L:      bcm-kernel-feedback-list@broadcom.com
3394 S:      Supported
3395 F:      drivers/gpio/gpio-bcm-kona.c
3396 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3397
3398 BROADCOM NETXTREME-E ROCE DRIVER
3399 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3400 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3401 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3402 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3403 L:      linux-rdma@vger.kernel.org
3404 W:      http://www.broadcom.com
3405 S:      Supported
3406 F:      drivers/infiniband/hw/bnxt_re/
3407 F:      include/uapi/rdma/bnxt_re-abi.h
3408
3409 BROADCOM NVRAM DRIVER
3410 M:      Rafał Miłecki <zajec5@gmail.com>
3411 L:      linux-mips@vger.kernel.org
3412 S:      Maintained
3413 F:      drivers/firmware/broadcom/*
3414
3415 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3416 M:      Rafał Miłecki <zajec5@gmail.com>
3417 L:      linux-wireless@vger.kernel.org
3418 S:      Maintained
3419 F:      drivers/bcma/
3420 F:      include/linux/bcma/
3421
3422 BROADCOM STB AVS CPUFREQ DRIVER
3423 M:      Markus Mayer <mmayer@broadcom.com>
3424 M:      bcm-kernel-feedback-list@broadcom.com
3425 L:      linux-pm@vger.kernel.org
3426 S:      Maintained
3427 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3428 F:      drivers/cpufreq/brcmstb*
3429
3430 BROADCOM STB AVS TMON DRIVER
3431 M:      Markus Mayer <mmayer@broadcom.com>
3432 M:      bcm-kernel-feedback-list@broadcom.com
3433 L:      linux-pm@vger.kernel.org
3434 S:      Maintained
3435 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3436 F:      drivers/thermal/broadcom/brcmstb*
3437
3438 BROADCOM STB NAND FLASH DRIVER
3439 M:      Brian Norris <computersforpeace@gmail.com>
3440 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3441 L:      linux-mtd@lists.infradead.org
3442 L:      bcm-kernel-feedback-list@broadcom.com
3443 S:      Maintained
3444 F:      drivers/mtd/nand/raw/brcmnand/
3445
3446 BROADCOM STB DPFE DRIVER
3447 M:      Markus Mayer <mmayer@broadcom.com>
3448 M:      bcm-kernel-feedback-list@broadcom.com
3449 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3450 S:      Maintained
3451 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3452 F:      drivers/memory/brcmstb_dpfe.c
3453
3454 BROADCOM SPI DRIVER
3455 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3456 M:      bcm-kernel-feedback-list@broadcom.com
3457 S:      Maintained
3458 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3459 F:      drivers/spi/spi-bcm-qspi.*
3460 F:      drivers/spi/spi-brcmstb-qspi.c
3461 F:      drivers/spi/spi-iproc-qspi.c
3462
3463 BROADCOM SYSTEMPORT ETHERNET DRIVER
3464 M:      Florian Fainelli <f.fainelli@gmail.com>
3465 L:      bcm-kernel-feedback-list@broadcom.com
3466 L:      netdev@vger.kernel.org
3467 S:      Supported
3468 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3469
3470 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3471 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3472 M:      Prashant Sreedharan <prashant@broadcom.com>
3473 M:      Michael Chan <mchan@broadcom.com>
3474 L:      netdev@vger.kernel.org
3475 S:      Supported
3476 F:      drivers/net/ethernet/broadcom/tg3.*
3477
3478 BROCADE BFA FC SCSI DRIVER
3479 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3480 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3481 L:      linux-scsi@vger.kernel.org
3482 S:      Supported
3483 F:      drivers/scsi/bfa/
3484
3485 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3486 M:      Rasesh Mody <rmody@marvell.com>
3487 M:      Sudarsana Kalluru <skalluru@marvell.com>
3488 M:      GR-Linux-NIC-Dev@marvell.com
3489 L:      netdev@vger.kernel.org
3490 S:      Supported
3491 F:      drivers/net/ethernet/brocade/bna/
3492
3493 BSG (block layer generic sg v4 driver)
3494 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3495 L:      linux-scsi@vger.kernel.org
3496 S:      Supported
3497 F:      block/bsg.c
3498 F:      include/linux/bsg.h
3499 F:      include/uapi/linux/bsg.h
3500
3501 BT87X AUDIO DRIVER
3502 M:      Clemens Ladisch <clemens@ladisch.de>
3503 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3505 S:      Maintained
3506 F:      Documentation/sound/cards/bt87x.rst
3507 F:      sound/pci/bt87x.c
3508
3509 BT8XXGPIO DRIVER
3510 M:      Michael Buesch <m@bues.ch>
3511 W:      http://bu3sch.de/btgpio.php
3512 S:      Maintained
3513 F:      drivers/gpio/gpio-bt8xx.c
3514
3515 BTRFS FILE SYSTEM
3516 M:      Chris Mason <clm@fb.com>
3517 M:      Josef Bacik <josef@toxicpanda.com>
3518 M:      David Sterba <dsterba@suse.com>
3519 L:      linux-btrfs@vger.kernel.org
3520 W:      http://btrfs.wiki.kernel.org/
3521 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
3523 S:      Maintained
3524 F:      Documentation/filesystems/btrfs.txt
3525 F:      fs/btrfs/
3526 F:      include/linux/btrfs*
3527 F:      include/uapi/linux/btrfs*
3528
3529 BTTV VIDEO4LINUX DRIVER
3530 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3531 L:      linux-media@vger.kernel.org
3532 W:      https://linuxtv.org
3533 T:      git git://linuxtv.org/media_tree.git
3534 S:      Odd fixes
3535 F:      Documentation/media/v4l-drivers/bttv*
3536 F:      drivers/media/pci/bt8xx/bttv*
3537
3538 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3539 M:      Chanwoo Choi <cw00.choi@samsung.com>
3540 L:      linux-pm@vger.kernel.org
3541 L:      linux-samsung-soc@vger.kernel.org
3542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3543 S:      Maintained
3544 F:      drivers/devfreq/exynos-bus.c
3545 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3546
3547 BUSLOGIC SCSI DRIVER
3548 M:      Khalid Aziz <khalid@gonehiking.org>
3549 L:      linux-scsi@vger.kernel.org
3550 S:      Maintained
3551 F:      drivers/scsi/BusLogic.*
3552 F:      drivers/scsi/FlashPoint.*
3553
3554 C-MEDIA CMI8788 DRIVER
3555 M:      Clemens Ladisch <clemens@ladisch.de>
3556 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3558 S:      Maintained
3559 F:      sound/pci/oxygen/
3560
3561 C-SKY ARCHITECTURE
3562 M:      Guo Ren <guoren@kernel.org>
3563 T:      git https://github.com/c-sky/csky-linux.git
3564 S:      Supported
3565 F:      arch/csky/
3566 F:      Documentation/devicetree/bindings/csky/
3567 F:      drivers/irqchip/irq-csky-*
3568 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3569 F:      drivers/clocksource/timer-gx6605s.c
3570 F:      drivers/clocksource/timer-mp-csky.c
3571 F:      Documentation/devicetree/bindings/timer/csky,*
3572 K:      csky
3573 N:      csky
3574
3575 C6X ARCHITECTURE
3576 M:      Mark Salter <msalter@redhat.com>
3577 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3578 L:      linux-c6x-dev@linux-c6x.org
3579 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3580 S:      Maintained
3581 F:      arch/c6x/
3582
3583 CA8210 IEEE-802.15.4 RADIO DRIVER
3584 M:      Harry Morris <h.morris@cascoda.com>
3585 L:      linux-wpan@vger.kernel.org
3586 W:      https://github.com/Cascoda/ca8210-linux.git
3587 S:      Maintained
3588 F:      drivers/net/ieee802154/ca8210.c
3589 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3590
3591 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3592 M:      David Howells <dhowells@redhat.com>
3593 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3594 S:      Supported
3595 F:      Documentation/filesystems/caching/cachefiles.txt
3596 F:      fs/cachefiles/
3597
3598 CADENCE MIPI-CSI2 BRIDGES
3599 M:      Maxime Ripard <mripard@kernel.org>
3600 L:      linux-media@vger.kernel.org
3601 S:      Maintained
3602 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3603 F:      drivers/media/platform/cadence/cdns-csi2*
3604
3605 CADET FM/AM RADIO RECEIVER DRIVER
3606 M:      Hans Verkuil <hverkuil@xs4all.nl>
3607 L:      linux-media@vger.kernel.org
3608 T:      git git://linuxtv.org/media_tree.git
3609 W:      https://linuxtv.org
3610 S:      Maintained
3611 F:      drivers/media/radio/radio-cadet*
3612
3613 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3614 M:      Jonathan Corbet <corbet@lwn.net>
3615 L:      linux-media@vger.kernel.org
3616 T:      git git://linuxtv.org/media_tree.git
3617 S:      Maintained
3618 F:      Documentation/media/v4l-drivers/cafe_ccic*
3619 F:      drivers/media/platform/marvell-ccic/
3620
3621 CAIF NETWORK LAYER
3622 L:      netdev@vger.kernel.org
3623 S:      Orphan
3624 F:      Documentation/networking/caif/
3625 F:      drivers/net/caif/
3626 F:      include/uapi/linux/caif/
3627 F:      include/net/caif/
3628 F:      net/caif/
3629
3630 CAKE QDISC
3631 M:      Toke Høiland-Jørgensen <toke@toke.dk>
3632 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
3633 S:      Maintained
3634 F:      net/sched/sch_cake.c
3635
3636 CALGARY x86-64 IOMMU
3637 M:      Muli Ben-Yehuda <mulix@mulix.org>
3638 M:      Jon Mason <jdmason@kudzu.us>
3639 L:      iommu@lists.linux-foundation.org
3640 S:      Maintained
3641 F:      arch/x86/kernel/pci-calgary_64.c
3642 F:      arch/x86/kernel/tce_64.c
3643 F:      arch/x86/include/asm/calgary.h
3644 F:      arch/x86/include/asm/tce.h
3645
3646 CAN NETWORK DRIVERS
3647 M:      Wolfgang Grandegger <wg@grandegger.com>
3648 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3649 L:      linux-can@vger.kernel.org
3650 W:      https://github.com/linux-can
3651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3653 S:      Maintained
3654 F:      Documentation/devicetree/bindings/net/can/
3655 F:      drivers/net/can/
3656 F:      include/linux/can/dev.h
3657 F:      include/linux/can/led.h
3658 F:      include/linux/can/rx-offload.h
3659 F:      include/linux/can/platform/
3660 F:      include/uapi/linux/can/error.h
3661 F:      include/uapi/linux/can/netlink.h
3662 F:      include/uapi/linux/can/vxcan.h
3663
3664 CAN NETWORK LAYER
3665 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3666 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3667 L:      linux-can@vger.kernel.org
3668 W:      https://github.com/linux-can
3669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3671 S:      Maintained
3672 F:      Documentation/networking/can.rst
3673 F:      net/can/
3674 F:      include/linux/can/core.h
3675 F:      include/linux/can/skb.h
3676 F:      include/net/netns/can.h
3677 F:      include/uapi/linux/can.h
3678 F:      include/uapi/linux/can/bcm.h
3679 F:      include/uapi/linux/can/raw.h
3680 F:      include/uapi/linux/can/gw.h
3681
3682 CAN-J1939 NETWORK LAYER
3683 M:      Robin van der Gracht <robin@protonic.nl>
3684 M:      Oleksij Rempel <o.rempel@pengutronix.de>
3685 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
3686 L:      linux-can@vger.kernel.org
3687 S:      Maintained
3688 F:      Documentation/networking/j1939.txt
3689 F:      net/can/j1939/
3690 F:      include/uapi/linux/can/j1939.h
3691
3692 CAPABILITIES
3693 M:      Serge Hallyn <serge@hallyn.com>
3694 L:      linux-security-module@vger.kernel.org
3695 S:      Supported
3696 F:      include/linux/capability.h
3697 F:      include/uapi/linux/capability.h
3698 F:      security/commoncap.c
3699 F:      kernel/capability.c
3700
3701 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3702 M:      Kevin Tsai <ktsai@capellamicro.com>
3703 S:      Maintained
3704 F:      drivers/iio/light/cm*
3705
3706 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3707 M:      Christian Lamparter <chunkeey@googlemail.com>
3708 L:      linux-wireless@vger.kernel.org
3709 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
3710 S:      Maintained
3711 F:      drivers/net/wireless/ath/carl9170/
3712
3713 CAVIUM I2C DRIVER
3714 M:      Jan Glauber <jglauber@cavium.com>
3715 M:      David Daney <david.daney@cavium.com>
3716 W:      http://www.cavium.com
3717 S:      Supported
3718 F:      drivers/i2c/busses/i2c-octeon*
3719 F:      drivers/i2c/busses/i2c-thunderx*
3720
3721 CAVIUM LIQUIDIO NETWORK DRIVER
3722 M:      Derek Chickles <dchickles@marvell.com>
3723 M:      Satanand Burla <sburla@marvell.com>
3724 M:      Felix Manlunas <fmanlunas@marvell.com>
3725 L:      netdev@vger.kernel.org
3726 W:      http://www.cavium.com
3727 S:      Supported
3728 F:      drivers/net/ethernet/cavium/liquidio/
3729
3730 CAVIUM MMC DRIVER
3731 M:      Jan Glauber <jglauber@cavium.com>
3732 M:      David Daney <david.daney@cavium.com>
3733 M:      Steven J. Hill <Steven.Hill@cavium.com>
3734 W:      http://www.cavium.com
3735 S:      Supported
3736 F:      drivers/mmc/host/cavium*
3737
3738 CAVIUM OCTEON-TX CRYPTO DRIVER
3739 M:      George Cherian <george.cherian@cavium.com>
3740 L:      linux-crypto@vger.kernel.org
3741 W:      http://www.cavium.com
3742 S:      Supported
3743 F:      drivers/crypto/cavium/cpt/
3744
3745 CAVIUM THUNDERX2 ARM64 SOC
3746 M:      Robert Richter <rrichter@cavium.com>
3747 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3748 S:      Maintained
3749 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3750 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3751
3752 CC2520 IEEE-802.15.4 RADIO DRIVER
3753 M:      Varka Bhadram <varkabhadram@gmail.com>
3754 L:      linux-wpan@vger.kernel.org
3755 S:      Maintained
3756 F:      drivers/net/ieee802154/cc2520.c
3757 F:      include/linux/spi/cc2520.h
3758 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3759
3760 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3761 M:      Gilad Ben-Yossef <gilad@benyossef.com>
3762 L:      linux-crypto@vger.kernel.org
3763 S:      Supported
3764 F:      drivers/crypto/ccree/
3765 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3766
3767 CEC FRAMEWORK
3768 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3769 L:      linux-media@vger.kernel.org
3770 T:      git git://linuxtv.org/media_tree.git
3771 W:      http://linuxtv.org
3772 S:      Supported
3773 F:      Documentation/media/kapi/cec-core.rst
3774 F:      Documentation/media/uapi/cec
3775 F:      drivers/media/cec/
3776 F:      drivers/media/rc/keymaps/rc-cec.c
3777 F:      include/media/cec.h
3778 F:      include/media/cec-notifier.h
3779 F:      include/uapi/linux/cec.h
3780 F:      include/uapi/linux/cec-funcs.h
3781 F:      Documentation/devicetree/bindings/media/cec.txt
3782 F:      Documentation/ABI/testing/debugfs-cec-error-inj
3783
3784 CEC GPIO DRIVER
3785 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3786 L:      linux-media@vger.kernel.org
3787 T:      git git://linuxtv.org/media_tree.git
3788 W:      http://linuxtv.org
3789 S:      Supported
3790 F:      drivers/media/platform/cec-gpio/
3791 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
3792
3793 CELL BROADBAND ENGINE ARCHITECTURE
3794 M:      Arnd Bergmann <arnd@arndb.de>
3795 L:      linuxppc-dev@lists.ozlabs.org
3796 W:      http://www.ibm.com/developerworks/power/cell/
3797 S:      Supported
3798 F:      arch/powerpc/include/asm/cell*.h
3799 F:      arch/powerpc/include/asm/spu*.h
3800 F:      arch/powerpc/include/uapi/asm/spu*.h
3801 F:      arch/powerpc/oprofile/*cell*
3802 F:      arch/powerpc/platforms/cell/
3803
3804 CEPH COMMON CODE (LIBCEPH)
3805 M:      Ilya Dryomov <idryomov@gmail.com>
3806 M:      Jeff Layton <jlayton@kernel.org>
3807 M:      Sage Weil <sage@redhat.com>
3808 L:      ceph-devel@vger.kernel.org
3809 W:      http://ceph.com/
3810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3811 T:      git git://github.com/ceph/ceph-client.git
3812 S:      Supported
3813 F:      net/ceph/
3814 F:      include/linux/ceph/
3815 F:      include/linux/crush/
3816
3817 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3818 M:      Jeff Layton <jlayton@kernel.org>
3819 M:      Sage Weil <sage@redhat.com>
3820 M:      Ilya Dryomov <idryomov@gmail.com>
3821 L:      ceph-devel@vger.kernel.org
3822 W:      http://ceph.com/
3823 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3824 T:      git git://github.com/ceph/ceph-client.git
3825 S:      Supported
3826 F:      Documentation/filesystems/ceph.txt
3827 F:      fs/ceph/
3828
3829 CERTIFICATE HANDLING:
3830 M:      David Howells <dhowells@redhat.com>
3831 M:      David Woodhouse <dwmw2@infradead.org>
3832 L:      keyrings@vger.kernel.org
3833 S:      Maintained
3834 F:      Documentation/admin-guide/module-signing.rst
3835 F:      certs/
3836 F:      scripts/sign-file.c
3837 F:      scripts/extract-cert.c
3838
3839 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
3840 L:      devel@driverdev.osuosl.org
3841 S:      Obsolete
3842 F:      drivers/staging/wusbcore/
3843
3844 CFAG12864B LCD DRIVER
3845 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3846 S:      Maintained
3847 F:      drivers/auxdisplay/cfag12864b.c
3848 F:      include/linux/cfag12864b.h
3849
3850 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3851 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3852 S:      Maintained
3853 F:      drivers/auxdisplay/cfag12864bfb.c
3854 F:      include/linux/cfag12864b.h
3855
3856 802.11 (including CFG80211/NL80211)
3857 M:      Johannes Berg <johannes@sipsolutions.net>
3858 L:      linux-wireless@vger.kernel.org
3859 W:      http://wireless.kernel.org/
3860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3862 S:      Maintained
3863 F:      net/wireless/
3864 F:      include/uapi/linux/nl80211.h
3865 F:      include/linux/ieee80211.h
3866 F:      include/net/wext.h
3867 F:      include/net/cfg80211.h
3868 F:      include/net/iw_handler.h
3869 F:      include/net/ieee80211_radiotap.h
3870 F:      Documentation/driver-api/80211/cfg80211.rst
3871 F:      Documentation/networking/regulatory.txt
3872
3873 CHAR and MISC DRIVERS
3874 M:      Arnd Bergmann <arnd@arndb.de>
3875 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3876 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
3877 S:      Supported
3878 F:      drivers/char/
3879 F:      drivers/misc/
3880 F:      include/linux/miscdevice.h
3881
3882 CHECKPATCH
3883 M:      Andy Whitcroft <apw@canonical.com>
3884 M:      Joe Perches <joe@perches.com>
3885 S:      Maintained
3886 F:      scripts/checkpatch.pl
3887
3888 CHINESE DOCUMENTATION
3889 M:      Harry Wei <harryxiyou@gmail.com>
3890 M:      Alex Shi <alex.shi@linux.alibaba.com>
3891 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
3892 S:      Maintained
3893 F:      Documentation/translations/zh_CN/
3894
3895 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
3896 M:      Peter Chen <Peter.Chen@nxp.com>
3897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3898 L:      linux-usb@vger.kernel.org
3899 S:      Maintained
3900 F:      drivers/usb/chipidea/
3901
3902 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
3903 M:      Hans de Goede <hdegoede@redhat.com>
3904 L:      linux-input@vger.kernel.org
3905 S:      Maintained
3906 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
3907 F:      drivers/input/touchscreen/chipone_icn8318.c
3908
3909 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
3910 M:      Hans de Goede <hdegoede@redhat.com>
3911 L:      linux-input@vger.kernel.org
3912 S:      Maintained
3913 F:      drivers/input/touchscreen/chipone_icn8505.c
3914
3915 CHROME HARDWARE PLATFORM SUPPORT
3916 M:      Benson Leung <bleung@chromium.org>
3917 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
3918 S:      Maintained
3919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
3920 F:      drivers/platform/chrome/
3921
3922 CHROMEOS EC SUBDRIVERS
3923 M:      Benson Leung <bleung@chromium.org>
3924 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
3925 R:      Guenter Roeck <groeck@chromium.org>
3926 S:      Maintained
3927 N:      cros_ec
3928 N:      cros-ec
3929 F:      drivers/power/supply/cros_usbpd-charger.c
3930
3931 CHROMEOS EC CODEC DRIVER
3932 M:      Cheng-Yi Chiang <cychiang@chromium.org>
3933 S:      Maintained
3934 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
3935 R:      Guenter Roeck <groeck@chromium.org>
3936 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.txt
3937 F:      sound/soc/codecs/cros_ec_codec.*
3938
3939 CIRRUS LOGIC AUDIO CODEC DRIVERS
3940 M:      Brian Austin <brian.austin@cirrus.com>
3941 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
3942 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3943 S:      Maintained
3944 F:      sound/soc/codecs/cs*
3945
3946 CIRRUS LOGIC EP93XX ETHERNET DRIVER
3947 M:      Hartley Sweeten <hsweeten@visionengravers.com>
3948 L:      netdev@vger.kernel.org
3949 S:      Maintained
3950 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
3951
3952 CIRRUS LOGIC LOCHNAGAR DRIVER
3953 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
3954 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
3955 L:      patches@opensource.cirrus.com
3956 S:      Supported
3957 F:      drivers/clk/clk-lochnagar.c
3958 F:      drivers/hwmon/lochnagar-hwmon.c
3959 F:      drivers/mfd/lochnagar-i2c.c
3960 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
3961 F:      drivers/regulator/lochnagar-regulator.c
3962 F:      sound/soc/codecs/lochnagar-sc.c
3963 F:      include/dt-bindings/clk/lochnagar.h
3964 F:      include/dt-bindings/pinctrl/lochnagar.h
3965 F:      include/linux/mfd/lochnagar*
3966 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.txt
3967 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.txt
3968 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.txt
3969 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.txt
3970 F:      Documentation/devicetree/bindings/regulator/cirrus,lochnagar.txt
3971 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.txt
3972 F:      Documentation/hwmon/lochnagar.rst
3973
3974 CISCO FCOE HBA DRIVER
3975 M:      Satish Kharat <satishkh@cisco.com>
3976 M:      Sesidhar Baddela <sebaddel@cisco.com>
3977 M:      Karan Tilak Kumar <kartilak@cisco.com>
3978 L:      linux-scsi@vger.kernel.org
3979 S:      Supported
3980 F:      drivers/scsi/fnic/
3981
3982 CISCO SCSI HBA DRIVER
3983 M:      Karan Tilak Kumar <kartilak@cisco.com>
3984 M:      Sesidhar Baddela <sebaddel@cisco.com>
3985 L:      linux-scsi@vger.kernel.org
3986 S:      Supported
3987 F:      drivers/scsi/snic/
3988
3989 CISCO VIC ETHERNET NIC DRIVER
3990 M:      Christian Benvenuti <benve@cisco.com>
3991 M:      Govindarajulu Varadarajan <_govind@gmx.com>
3992 M:      Parvi Kaustubhi <pkaustub@cisco.com>
3993 S:      Supported
3994 F:      drivers/net/ethernet/cisco/enic/
3995
3996 CISCO VIC LOW LATENCY NIC DRIVER
3997 M:      Christian Benvenuti <benve@cisco.com>
3998 M:      Nelson Escobar <neescoba@cisco.com>
3999 M:      Parvi Kaustubhi <pkaustub@cisco.com>
4000 S:      Supported
4001 F:      drivers/infiniband/hw/usnic/
4002
4003 CIRRUS LOGIC MADERA CODEC DRIVERS
4004 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4005 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4006 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4007 L:      patches@opensource.cirrus.com
4008 T:      git https://github.com/CirrusLogic/linux-drivers.git
4009 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4010 S:      Supported
4011 F:      Documentation/devicetree/bindings/mfd/madera.txt
4012 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera-pinctrl.txt
4013 F:      Documentation/devicetree/bindings/sound/madera.txt
4014 F:      include/dt-bindings/sound/madera*
4015 F:      include/linux/irqchip/irq-madera*
4016 F:      include/linux/mfd/madera/*
4017 F:      include/sound/madera*
4018 F:      drivers/gpio/gpio-madera*
4019 F:      drivers/irqchip/irq-madera*
4020 F:      drivers/mfd/madera*
4021 F:      drivers/mfd/cs47l*
4022 F:      drivers/pinctrl/cirrus/*
4023 F:      sound/soc/codecs/cs47l*
4024 F:      sound/soc/codecs/madera*
4025
4026 CLANG-FORMAT FILE
4027 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4028 S:      Maintained
4029 F:      .clang-format
4030
4031 CLANG/LLVM BUILD SUPPORT
4032 L:      clang-built-linux@googlegroups.com
4033 W:      https://clangbuiltlinux.github.io/
4034 B:      https://github.com/ClangBuiltLinux/linux/issues
4035 C:      irc://chat.freenode.net/clangbuiltlinux
4036 S:      Supported
4037 K:      \b(?i:clang|llvm)\b
4038
4039 CLEANCACHE API
4040 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4041 L:      linux-kernel@vger.kernel.org
4042 S:      Maintained
4043 F:      mm/cleancache.c
4044 F:      include/linux/cleancache.h
4045
4046 CLK API
4047 M:      Russell King <linux@armlinux.org.uk>
4048 L:      linux-clk@vger.kernel.org
4049 S:      Maintained
4050 F:      include/linux/clk.h
4051
4052 CLOCKSOURCE, CLOCKEVENT DRIVERS
4053 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4054 M:      Thomas Gleixner <tglx@linutronix.de>
4055 L:      linux-kernel@vger.kernel.org
4056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4057 S:      Supported
4058 F:      drivers/clocksource/
4059 F:      Documentation/devicetree/bindings/timer/
4060
4061 CMPC ACPI DRIVER
4062 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4063 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4064 L:      platform-driver-x86@vger.kernel.org
4065 S:      Supported
4066 F:      drivers/platform/x86/classmate-laptop.c
4067
4068 COBALT MEDIA DRIVER
4069 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4070 L:      linux-media@vger.kernel.org
4071 T:      git git://linuxtv.org/media_tree.git
4072 W:      https://linuxtv.org
4073 S:      Supported
4074 F:      drivers/media/pci/cobalt/
4075
4076 COCCINELLE/Semantic Patches (SmPL)
4077 M:      Julia Lawall <Julia.Lawall@lip6.fr>
4078 M:      Gilles Muller <Gilles.Muller@lip6.fr>
4079 M:      Nicolas Palix <nicolas.palix@imag.fr>
4080 M:      Michal Marek <michal.lkml@markovi.net>
4081 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4083 W:      http://coccinelle.lip6.fr/
4084 S:      Supported
4085 F:      Documentation/dev-tools/coccinelle.rst
4086 F:      scripts/coccinelle/
4087 F:      scripts/coccicheck
4088
4089 CODA FILE SYSTEM
4090 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4091 M:      coda@cs.cmu.edu
4092 L:      codalist@coda.cs.cmu.edu
4093 W:      http://www.coda.cs.cmu.edu/
4094 S:      Maintained
4095 F:      Documentation/filesystems/coda.txt
4096 F:      fs/coda/
4097 F:      include/linux/coda*.h
4098 F:      include/uapi/linux/coda*.h
4099
4100 CODA V4L2 MEM2MEM DRIVER
4101 M:      Philipp Zabel <p.zabel@pengutronix.de>
4102 L:      linux-media@vger.kernel.org
4103 S:      Maintained
4104 F:      Documentation/devicetree/bindings/media/coda.txt
4105 F:      drivers/media/platform/coda/
4106
4107 CODE OF CONDUCT
4108 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4109 S:      Supported
4110 F:      Documentation/process/code-of-conduct.rst
4111 F:      Documentation/process/code-of-conduct-interpretation.rst
4112
4113 COMMON CLK FRAMEWORK
4114 M:      Michael Turquette <mturquette@baylibre.com>
4115 M:      Stephen Boyd <sboyd@kernel.org>
4116 L:      linux-clk@vger.kernel.org
4117 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4119 S:      Maintained
4120 F:      Documentation/devicetree/bindings/clock/
4121 F:      drivers/clk/
4122 X:      drivers/clk/clkdev.c
4123 F:      include/linux/clk-pr*
4124 F:      include/linux/clk/
4125 F:      include/linux/of_clk.h
4126
4127 COMMON INTERNET FILE SYSTEM (CIFS)
4128 M:      Steve French <sfrench@samba.org>
4129 L:      linux-cifs@vger.kernel.org
4130 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4131 W:      http://linux-cifs.samba.org/
4132 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4133 S:      Supported
4134 F:      Documentation/admin-guide/cifs/
4135 F:      fs/cifs/
4136
4137 COMPACTPCI HOTPLUG CORE
4138 M:      Scott Murray <scott@spiteful.org>
4139 L:      linux-pci@vger.kernel.org
4140 S:      Maintained
4141 F:      drivers/pci/hotplug/cpci_hotplug*
4142
4143 COMPACTPCI HOTPLUG GENERIC DRIVER
4144 M:      Scott Murray <scott@spiteful.org>
4145 L:      linux-pci@vger.kernel.org
4146 S:      Maintained
4147 F:      drivers/pci/hotplug/cpcihp_generic.c
4148
4149 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4150 M:      Scott Murray <scott@spiteful.org>
4151 L:      linux-pci@vger.kernel.org
4152 S:      Maintained
4153 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4154
4155 COMPAL LAPTOP SUPPORT
4156 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4157 L:      platform-driver-x86@vger.kernel.org
4158 S:      Maintained
4159 F:      drivers/platform/x86/compal-laptop.c
4160
4161 COMPILER ATTRIBUTES
4162 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4163 S:      Maintained
4164 F:      include/linux/compiler_attributes.h
4165
4166 CONEXANT ACCESSRUNNER USB DRIVER
4167 L:      accessrunner-general@lists.sourceforge.net
4168 W:      http://accessrunner.sourceforge.net/
4169 S:      Orphan
4170 F:      drivers/usb/atm/cxacru.c
4171
4172 CONFIGFS
4173 M:      Joel Becker <jlbec@evilplan.org>
4174 M:      Christoph Hellwig <hch@lst.de>
4175 T:      git git://git.infradead.org/users/hch/configfs.git
4176 S:      Supported
4177 F:      fs/configfs/
4178 F:      include/linux/configfs.h
4179
4180 CONNECTOR
4181 M:      Evgeniy Polyakov <zbr@ioremap.net>
4182 L:      netdev@vger.kernel.org
4183 S:      Maintained
4184 F:      drivers/connector/
4185
4186 CONTROL GROUP (CGROUP)
4187 M:      Tejun Heo <tj@kernel.org>
4188 M:      Li Zefan <lizefan@huawei.com>
4189 M:      Johannes Weiner <hannes@cmpxchg.org>
4190 L:      cgroups@vger.kernel.org
4191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4192 S:      Maintained
4193 F:      Documentation/admin-guide/cgroup-v2.rst
4194 F:      Documentation/admin-guide/cgroup-v1/
4195 F:      include/linux/cgroup*
4196 F:      kernel/cgroup/
4197
4198 CONTROL GROUP - CPUSET
4199 M:      Li Zefan <lizefan@huawei.com>
4200 L:      cgroups@vger.kernel.org
4201 W:      http://www.bullopensource.org/cpuset/
4202 W:      http://oss.sgi.com/projects/cpusets/
4203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4204 S:      Maintained
4205 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4206 F:      include/linux/cpuset.h
4207 F:      kernel/cgroup/cpuset.c
4208
4209 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4210 M:      Johannes Weiner <hannes@cmpxchg.org>
4211 M:      Michal Hocko <mhocko@kernel.org>
4212 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4213 L:      cgroups@vger.kernel.org
4214 L:      linux-mm@kvack.org
4215 S:      Maintained
4216 F:      mm/memcontrol.c
4217 F:      mm/swap_cgroup.c
4218
4219 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4220 M:      Tejun Heo <tj@kernel.org>
4221 M:      Jens Axboe <axboe@kernel.dk>
4222 L:      cgroups@vger.kernel.org
4223 L:      linux-block@vger.kernel.org
4224 T:      git git://git.kernel.dk/linux-block
4225 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4226 F:      block/blk-cgroup.c
4227 F:      include/linux/blk-cgroup.h
4228 F:      block/blk-throttle.c
4229 F:      block/blk-iolatency.c
4230 F:      block/bfq-cgroup.c
4231
4232 CORETEMP HARDWARE MONITORING DRIVER
4233 M:      Fenghua Yu <fenghua.yu@intel.com>
4234 L:      linux-hwmon@vger.kernel.org
4235 S:      Maintained
4236 F:      Documentation/hwmon/coretemp.rst
4237 F:      drivers/hwmon/coretemp.c
4238
4239 COSA/SRP SYNC SERIAL DRIVER
4240 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4241 W:      http://www.fi.muni.cz/~kas/cosa/
4242 S:      Maintained
4243 F:      drivers/net/wan/cosa*
4244
4245 COUNTER SUBSYSTEM
4246 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4247 L:      linux-iio@vger.kernel.org
4248 S:      Maintained
4249 F:      Documentation/ABI/testing/sysfs-bus-counter*
4250 F:      Documentation/driver-api/generic-counter.rst
4251 F:      drivers/counter/
4252 F:      include/linux/counter.h
4253 F:      include/linux/counter_enum.h
4254
4255 CPMAC ETHERNET DRIVER
4256 M:      Florian Fainelli <f.fainelli@gmail.com>
4257 L:      netdev@vger.kernel.org
4258 S:      Maintained
4259 F:      drivers/net/ethernet/ti/cpmac.c
4260
4261 CPU FREQUENCY SCALING FRAMEWORK
4262 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4263 M:      Viresh Kumar <viresh.kumar@linaro.org>
4264 L:      linux-pm@vger.kernel.org
4265 S:      Maintained
4266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4268 B:      https://bugzilla.kernel.org
4269 F:      Documentation/admin-guide/pm/cpufreq.rst
4270 F:      Documentation/admin-guide/pm/intel_pstate.rst
4271 F:      Documentation/cpu-freq/
4272 F:      Documentation/devicetree/bindings/cpufreq/
4273 F:      drivers/cpufreq/
4274 F:      kernel/sched/cpufreq*.c
4275 F:      include/linux/cpufreq.h
4276 F:      include/linux/sched/cpufreq.h
4277 F:      tools/testing/selftests/cpufreq/
4278
4279 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
4280 M:      Viresh Kumar <viresh.kumar@linaro.org>
4281 M:      Sudeep Holla <sudeep.holla@arm.com>
4282 L:      linux-pm@vger.kernel.org
4283 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4284 S:      Maintained
4285 F:      drivers/cpufreq/arm_big_little.h
4286 F:      drivers/cpufreq/arm_big_little.c
4287
4288 CPU POWER MONITORING SUBSYSTEM
4289 M:      Thomas Renninger <trenn@suse.com>
4290 M:      Shuah Khan <shuah@kernel.org>
4291 M:      Shuah Khan <skhan@linuxfoundation.org>
4292 L:      linux-pm@vger.kernel.org
4293 S:      Maintained
4294 F:      tools/power/cpupower/
4295
4296 CPUID/MSR DRIVER
4297 M:      "H. Peter Anvin" <hpa@zytor.com>
4298 S:      Maintained
4299 F:      arch/x86/kernel/cpuid.c
4300 F:      arch/x86/kernel/msr.c
4301
4302 CPUIDLE DRIVER - ARM BIG LITTLE
4303 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4304 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4305 L:      linux-pm@vger.kernel.org
4306 L:      linux-arm-kernel@lists.infradead.org
4307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4308 S:      Maintained
4309 F:      drivers/cpuidle/cpuidle-big_little.c
4310
4311 CPUIDLE DRIVER - ARM EXYNOS
4312 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4313 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4314 M:      Kukjin Kim <kgene@kernel.org>
4315 L:      linux-pm@vger.kernel.org
4316 L:      linux-samsung-soc@vger.kernel.org
4317 S:      Supported
4318 F:      drivers/cpuidle/cpuidle-exynos.c
4319 F:      arch/arm/mach-exynos/pm.c
4320
4321 CPUIDLE DRIVER - ARM PSCI
4322 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4323 M:      Sudeep Holla <sudeep.holla@arm.com>
4324 L:      linux-pm@vger.kernel.org
4325 L:      linux-arm-kernel@lists.infradead.org
4326 S:      Supported
4327 F:      drivers/cpuidle/cpuidle-psci.c
4328
4329 CPU IDLE TIME MANAGEMENT FRAMEWORK
4330 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4331 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4332 L:      linux-pm@vger.kernel.org
4333 S:      Maintained
4334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4335 B:      https://bugzilla.kernel.org
4336 F:      Documentation/admin-guide/pm/cpuidle.rst
4337 F:      Documentation/driver-api/pm/cpuidle.rst
4338 F:      drivers/cpuidle/*
4339 F:      include/linux/cpuidle.h
4340
4341 CRAMFS FILESYSTEM
4342 M:      Nicolas Pitre <nico@fluxnic.net>
4343 S:      Maintained
4344 F:      Documentation/filesystems/cramfs.txt
4345 F:      fs/cramfs/
4346
4347 CREATIVE SB0540
4348 M:      Bastien Nocera <hadess@hadess.net>
4349 L:      linux-input@vger.kernel.org
4350 S:      Maintained
4351 F:      drivers/hid/hid-creative-sb0540.c
4352
4353 CRYPTO API
4354 M:      Herbert Xu <herbert@gondor.apana.org.au>
4355 M:      "David S. Miller" <davem@davemloft.net>
4356 L:      linux-crypto@vger.kernel.org
4357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4359 S:      Maintained
4360 F:      Documentation/crypto/
4361 F:      Documentation/devicetree/bindings/crypto/
4362 F:      arch/*/crypto/
4363 F:      crypto/
4364 F:      drivers/crypto/
4365 F:      include/crypto/
4366 F:      include/linux/crypto*
4367 F:      lib/crypto/
4368
4369 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4370 M:      Neil Horman <nhorman@tuxdriver.com>
4371 L:      linux-crypto@vger.kernel.org
4372 S:      Maintained
4373 F:      crypto/ansi_cprng.c
4374 F:      crypto/rng.c
4375
4376 CS3308 MEDIA DRIVER
4377 M:      Hans Verkuil <hverkuil@xs4all.nl>
4378 L:      linux-media@vger.kernel.org
4379 T:      git git://linuxtv.org/media_tree.git
4380 W:      http://linuxtv.org
4381 S:      Odd Fixes
4382 F:      drivers/media/i2c/cs3308.c
4383
4384 CS5535 Audio ALSA driver
4385 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4386 S:      Maintained
4387 F:      sound/pci/cs5535audio/
4388
4389 CSI DRIVERS FOR ALLWINNER V3s
4390 M:      Yong Deng <yong.deng@magewell.com>
4391 L:      linux-media@vger.kernel.org
4392 T:      git git://linuxtv.org/media_tree.git
4393 S:      Maintained
4394 F:      drivers/media/platform/sunxi/sun6i-csi/
4395 F:      Documentation/devicetree/bindings/media/sun6i-csi.txt
4396
4397 CW1200 WLAN driver
4398 M:      Solomon Peachy <pizza@shaftnet.org>
4399 S:      Maintained
4400 F:      drivers/net/wireless/st/cw1200/
4401
4402 CX18 VIDEO4LINUX DRIVER
4403 M:      Andy Walls <awalls@md.metrocast.net>
4404 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
4405 L:      linux-media@vger.kernel.org
4406 T:      git git://linuxtv.org/media_tree.git
4407 W:      https://linuxtv.org
4408 W:      http://www.ivtvdriver.org/index.php/Cx18
4409 S:      Maintained
4410 F:      Documentation/media/v4l-drivers/cx18*
4411 F:      drivers/media/pci/cx18/
4412 F:      include/uapi/linux/ivtv*
4413
4414 CX2341X MPEG ENCODER HELPER MODULE
4415 M:      Hans Verkuil <hverkuil@xs4all.nl>
4416 L:      linux-media@vger.kernel.org
4417 T:      git git://linuxtv.org/media_tree.git
4418 W:      https://linuxtv.org
4419 S:      Maintained
4420 F:      drivers/media/common/cx2341x*
4421 F:      include/media/drv-intf/cx2341x.h
4422
4423 CX24120 MEDIA DRIVER
4424 M:      Jemma Denson <jdenson@gmail.com>
4425 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4426 L:      linux-media@vger.kernel.org
4427 W:      https://linuxtv.org
4428 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4429 S:      Maintained
4430 F:      drivers/media/dvb-frontends/cx24120*
4431
4432 CX88 VIDEO4LINUX DRIVER
4433 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4434 L:      linux-media@vger.kernel.org
4435 W:      https://linuxtv.org
4436 T:      git git://linuxtv.org/media_tree.git
4437 S:      Odd fixes
4438 F:      Documentation/media/v4l-drivers/cx88*
4439 F:      drivers/media/pci/cx88/
4440
4441 CXD2820R MEDIA DRIVER
4442 M:      Antti Palosaari <crope@iki.fi>
4443 L:      linux-media@vger.kernel.org
4444 W:      https://linuxtv.org
4445 W:      http://palosaari.fi/linux/
4446 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4447 T:      git git://linuxtv.org/anttip/media_tree.git
4448 S:      Maintained
4449 F:      drivers/media/dvb-frontends/cxd2820r*
4450
4451 CXGB3 ETHERNET DRIVER (CXGB3)
4452 M:      Vishal Kulkarni <vishal@chelsio.com>
4453 L:      netdev@vger.kernel.org
4454 W:      http://www.chelsio.com
4455 S:      Supported
4456 F:      drivers/net/ethernet/chelsio/cxgb3/
4457
4458 CXGB3 ISCSI DRIVER (CXGB3I)
4459 M:      Karen Xie <kxie@chelsio.com>
4460 L:      linux-scsi@vger.kernel.org
4461 W:      http://www.chelsio.com
4462 S:      Supported
4463 F:      drivers/scsi/cxgbi/cxgb3i
4464
4465 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
4466 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4467 L:      linux-rdma@vger.kernel.org
4468 W:      http://www.openfabrics.org
4469 S:      Supported
4470 F:      drivers/infiniband/hw/cxgb3/
4471 F:      include/uapi/rdma/cxgb3-abi.h
4472
4473 CXGB4 CRYPTO DRIVER (chcr)
4474 M:      Atul Gupta <atul.gupta@chelsio.com>
4475 L:      linux-crypto@vger.kernel.org
4476 W:      http://www.chelsio.com
4477 S:      Supported
4478 F:      drivers/crypto/chelsio
4479
4480 CXGB4 ETHERNET DRIVER (CXGB4)
4481 M:      Vishal Kulkarni <vishal@chelsio.com>
4482 L:      netdev@vger.kernel.org
4483 W:      http://www.chelsio.com
4484 S:      Supported
4485 F:      drivers/net/ethernet/chelsio/cxgb4/
4486
4487 CXGB4 ISCSI DRIVER (CXGB4I)
4488 M:      Karen Xie <kxie@chelsio.com>
4489 L:      linux-scsi@vger.kernel.org
4490 W:      http://www.chelsio.com
4491 S:      Supported
4492 F:      drivers/scsi/cxgbi/cxgb4i
4493
4494 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4495 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4496 L:      linux-rdma@vger.kernel.org
4497 W:      http://www.openfabrics.org
4498 S:      Supported
4499 F:      drivers/infiniband/hw/cxgb4/
4500 F:      include/uapi/rdma/cxgb4-abi.h
4501
4502 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4503 M:      Casey Leedom <leedom@chelsio.com>
4504 L:      netdev@vger.kernel.org
4505 W:      http://www.chelsio.com
4506 S:      Supported
4507 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4508
4509 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4510 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4511 M:      Andrew Donnellan <ajd@linux.ibm.com>
4512 L:      linuxppc-dev@lists.ozlabs.org
4513 S:      Supported
4514 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4515 F:      drivers/misc/cxl/
4516 F:      include/misc/cxl*
4517 F:      include/uapi/misc/cxl.h
4518 F:      Documentation/powerpc/cxl.rst
4519 F:      Documentation/ABI/testing/sysfs-class-cxl
4520
4521 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4522 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4523 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4524 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4525 L:      linux-scsi@vger.kernel.org
4526 S:      Supported
4527 F:      drivers/scsi/cxlflash/
4528 F:      include/uapi/scsi/cxlflash_ioctl.h
4529 F:      Documentation/powerpc/cxlflash.rst
4530
4531 CYBERPRO FB DRIVER
4532 M:      Russell King <linux@armlinux.org.uk>
4533 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4534 W:      http://www.armlinux.org.uk/
4535 S:      Maintained
4536 F:      drivers/video/fbdev/cyber2000fb.*
4537
4538 CYCLADES ASYNC MUX DRIVER
4539 W:      http://www.cyclades.com/
4540 S:      Orphan
4541 F:      drivers/tty/cyclades.c
4542 F:      include/linux/cyclades.h
4543 F:      include/uapi/linux/cyclades.h
4544
4545 CYCLADES PC300 DRIVER
4546 W:      http://www.cyclades.com/
4547 S:      Orphan
4548 F:      drivers/net/wan/pc300*
4549
4550 CYPRESS_FIRMWARE MEDIA DRIVER
4551 M:      Antti Palosaari <crope@iki.fi>
4552 L:      linux-media@vger.kernel.org
4553 W:      https://linuxtv.org
4554 W:      http://palosaari.fi/linux/
4555 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4556 T:      git git://linuxtv.org/anttip/media_tree.git
4557 S:      Maintained
4558 F:      drivers/media/common/cypress_firmware*
4559
4560 CYTTSP TOUCHSCREEN DRIVER
4561 M:      Ferruh Yigit <fery@cypress.com>
4562 L:      linux-input@vger.kernel.org
4563 S:      Supported
4564 F:      drivers/input/touchscreen/cyttsp*
4565 F:      include/linux/input/cyttsp.h
4566
4567 D-LINK DIR-685 TOUCHKEYS DRIVER
4568 M:      Linus Walleij <linus.walleij@linaro.org>
4569 L:      linux-input@vger.kernel.org
4570 S:      Supported
4571 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4572
4573 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4574 M:      Joshua Kinard <kumba@gentoo.org>
4575 S:      Maintained
4576 F:      drivers/rtc/rtc-ds1685.c
4577 F:      include/linux/rtc/ds1685.h
4578
4579 DAMA SLAVE for AX.25
4580 M:      Joerg Reuter <jreuter@yaina.de>
4581 W:      http://yaina.de/jreuter/
4582 W:      http://www.qsl.net/dl1bke/
4583 L:      linux-hams@vger.kernel.org
4584 S:      Maintained
4585 F:      net/ax25/af_ax25.c
4586 F:      net/ax25/ax25_dev.c
4587 F:      net/ax25/ax25_ds_*
4588 F:      net/ax25/ax25_in.c
4589 F:      net/ax25/ax25_out.c
4590 F:      net/ax25/ax25_timer.c
4591 F:      net/ax25/sysctl_net_ax25.c
4592
4593 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4594 L:      netdev@vger.kernel.org
4595 S:      Orphan
4596 F:      Documentation/networking/device_drivers/dec/dmfe.txt
4597 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4598
4599 DC390/AM53C974 SCSI driver
4600 M:      Hannes Reinecke <hare@suse.com>
4601 L:      linux-scsi@vger.kernel.org
4602 S:      Maintained
4603 F:      drivers/scsi/am53c974.c
4604
4605 DC395x SCSI driver
4606 M:      Oliver Neukum <oliver@neukum.org>
4607 M:      Ali Akcaagac <aliakc@web.de>
4608 M:      Jamie Lenehan <lenehan@twibble.org>
4609 L:      dc395x@twibble.org
4610 W:      http://twibble.org/dist/dc395x/
4611 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4612 S:      Maintained
4613 F:      Documentation/scsi/dc395x.txt
4614 F:      drivers/scsi/dc395x.*
4615
4616 DCCP PROTOCOL
4617 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
4618 L:      dccp@vger.kernel.org
4619 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4620 S:      Maintained
4621 F:      include/linux/dccp.h
4622 F:      include/uapi/linux/dccp.h
4623 F:      include/linux/tfrc.h
4624 F:      net/dccp/
4625
4626 DECnet NETWORK LAYER
4627 W:      http://linux-decnet.sourceforge.net
4628 L:      linux-decnet-user@lists.sourceforge.net
4629 S:      Orphan
4630 F:      Documentation/networking/decnet.txt
4631 F:      net/decnet/
4632
4633 DECSTATION PLATFORM SUPPORT
4634 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4635 L:      linux-mips@vger.kernel.org
4636 W:      http://www.linux-mips.org/wiki/DECstation
4637 S:      Maintained
4638 F:      arch/mips/dec/
4639 F:      arch/mips/include/asm/dec/
4640 F:      arch/mips/include/asm/mach-dec/
4641
4642 DEFXX FDDI NETWORK DRIVER
4643 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4644 S:      Maintained
4645 F:      drivers/net/fddi/defxx.*
4646
4647 DELL SMBIOS DRIVER
4648 M:      Pali Rohár <pali.rohar@gmail.com>
4649 M:      Mario Limonciello <mario.limonciello@dell.com>
4650 L:      platform-driver-x86@vger.kernel.org
4651 S:      Maintained
4652 F:      drivers/platform/x86/dell-smbios.*
4653
4654 DELL SMBIOS SMM DRIVER
4655 M:      Mario Limonciello <mario.limonciello@dell.com>
4656 L:      platform-driver-x86@vger.kernel.org
4657 S:      Maintained
4658 F:      drivers/platform/x86/dell-smbios-smm.c
4659
4660 DELL SMBIOS WMI DRIVER
4661 M:      Mario Limonciello <mario.limonciello@dell.com>
4662 L:      platform-driver-x86@vger.kernel.org
4663 S:      Maintained
4664 F:      drivers/platform/x86/dell-smbios-wmi.c
4665 F:      tools/wmi/dell-smbios-example.c
4666
4667 DEFZA FDDI NETWORK DRIVER
4668 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4669 S:      Maintained
4670 F:      drivers/net/fddi/defza.*
4671
4672 DELL LAPTOP DRIVER
4673 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4674 M:      Pali Rohár <pali.rohar@gmail.com>
4675 L:      platform-driver-x86@vger.kernel.org
4676 S:      Maintained
4677 F:      drivers/platform/x86/dell-laptop.c
4678
4679 DELL LAPTOP FREEFALL DRIVER
4680 M:      Pali Rohár <pali.rohar@gmail.com>
4681 S:      Maintained
4682 F:      drivers/platform/x86/dell-smo8800.c
4683
4684 DELL LAPTOP RBTN DRIVER
4685 M:      Pali Rohár <pali.rohar@gmail.com>
4686 S:      Maintained
4687 F:      drivers/platform/x86/dell-rbtn.*
4688
4689 DELL REMOTE BIOS UPDATE DRIVER
4690 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4691 L:      platform-driver-x86@vger.kernel.org
4692 S:      Maintained
4693 F:      drivers/platform/x86/dell_rbu.c
4694
4695 DELL LAPTOP SMM DRIVER
4696 M:      Pali Rohár <pali.rohar@gmail.com>
4697 S:      Maintained
4698 F:      drivers/hwmon/dell-smm-hwmon.c
4699 F:      include/uapi/linux/i8k.h
4700
4701 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4702 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4703 L:      platform-driver-x86@vger.kernel.org
4704 S:      Maintained
4705 F:      Documentation/driver-api/dcdbas.rst
4706 F:      drivers/platform/x86/dcdbas.*
4707
4708 DELL WMI NOTIFICATIONS DRIVER
4709 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4710 M:      Pali Rohár <pali.rohar@gmail.com>
4711 S:      Maintained
4712 F:      drivers/platform/x86/dell-wmi.c
4713
4714 DELL WMI DESCRIPTOR DRIVER
4715 M:      Mario Limonciello <mario.limonciello@dell.com>
4716 S:      Maintained
4717 F:      drivers/platform/x86/dell-wmi-descriptor.c
4718
4719 DELTA ST MEDIA DRIVER
4720 M:      Hugues Fruchet <hugues.fruchet@st.com>
4721 L:      linux-media@vger.kernel.org
4722 T:      git git://linuxtv.org/media_tree.git
4723 W:      https://linuxtv.org
4724 S:      Supported
4725 F:      drivers/media/platform/sti/delta
4726
4727 DENALI NAND DRIVER
4728 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
4729 L:      linux-mtd@lists.infradead.org
4730 S:      Supported
4731 F:      drivers/mtd/nand/raw/denali*
4732
4733 DESIGNWARE EDMA CORE IP DRIVER
4734 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
4735 L:      dmaengine@vger.kernel.org
4736 S:      Maintained
4737 F:      drivers/dma/dw-edma/
4738 F:      include/linux/dma/edma.h
4739
4740 DESIGNWARE USB2 DRD IP DRIVER
4741 M:      Minas Harutyunyan <hminas@synopsys.com>
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/dwc2/
4746
4747 DESIGNWARE USB3 DRD IP DRIVER
4748 M:      Felipe Balbi <balbi@kernel.org>
4749 L:      linux-usb@vger.kernel.org
4750 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4751 S:      Maintained
4752 F:      drivers/usb/dwc3/
4753
4754 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4755 M:      Andreas Klinger <ak@it-klinger.de>
4756 L:      linux-iio@vger.kernel.org
4757 S:      Maintained
4758 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4759 F:      drivers/iio/proximity/srf*.c
4760
4761 DEVICE COREDUMP (DEV_COREDUMP)
4762 M:      Johannes Berg <johannes@sipsolutions.net>
4763 L:      linux-kernel@vger.kernel.org
4764 S:      Maintained
4765 F:      drivers/base/devcoredump.c
4766 F:      include/linux/devcoredump.h
4767
4768 DEVICE FREQUENCY (DEVFREQ)
4769 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4770 M:      Kyungmin Park <kyungmin.park@samsung.com>
4771 R:      Chanwoo Choi <cw00.choi@samsung.com>
4772 L:      linux-pm@vger.kernel.org
4773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4774 S:      Maintained
4775 F:      drivers/devfreq/
4776 F:      include/linux/devfreq.h
4777 F:      Documentation/devicetree/bindings/devfreq/
4778 F:      include/trace/events/devfreq.h
4779
4780 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4781 M:      Chanwoo Choi <cw00.choi@samsung.com>
4782 L:      linux-pm@vger.kernel.org
4783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4784 S:      Supported
4785 F:      drivers/devfreq/event/
4786 F:      drivers/devfreq/devfreq-event.c
4787 F:      include/linux/devfreq-event.h
4788 F:      Documentation/devicetree/bindings/devfreq/event/
4789
4790 DEVICE NUMBER REGISTRY
4791 M:      Torben Mathiasen <device@lanana.org>
4792 W:      http://lanana.org/docs/device-list/index.html
4793 S:      Maintained
4794
4795 DEVICE-MAPPER  (LVM)
4796 M:      Alasdair Kergon <agk@redhat.com>
4797 M:      Mike Snitzer <snitzer@redhat.com>
4798 M:      dm-devel@redhat.com
4799 L:      dm-devel@redhat.com
4800 W:      http://sources.redhat.com/dm
4801 Q:      http://patchwork.kernel.org/project/dm-devel/list/
4802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4803 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
4804 S:      Maintained
4805 F:      Documentation/admin-guide/device-mapper/
4806 F:      drivers/md/Makefile
4807 F:      drivers/md/Kconfig
4808 F:      drivers/md/dm*
4809 F:      drivers/md/persistent-data/
4810 F:      include/linux/device-mapper.h
4811 F:      include/linux/dm-*.h
4812 F:      include/uapi/linux/dm-*.h
4813
4814 DEVLINK
4815 M:      Jiri Pirko <jiri@mellanox.com>
4816 L:      netdev@vger.kernel.org
4817 S:      Supported
4818 F:      net/core/devlink.c
4819 F:      include/net/devlink.h
4820 F:      include/uapi/linux/devlink.h
4821
4822 DIALOG SEMICONDUCTOR DRIVERS
4823 M:      Support Opensource <support.opensource@diasemi.com>
4824 W:      http://www.dialog-semiconductor.com/products
4825 S:      Supported
4826 F:      Documentation/hwmon/da90??.rst
4827 F:      Documentation/devicetree/bindings/mfd/da90*.txt
4828 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
4829 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4830 F:      Documentation/devicetree/bindings/regulator/da92*.txt
4831 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
4832 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
4833 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
4834 F:      drivers/gpio/gpio-da90??.c
4835 F:      drivers/hwmon/da90??-hwmon.c
4836 F:      drivers/iio/adc/da91??-*.c
4837 F:      drivers/input/misc/da90??_onkey.c
4838 F:      drivers/input/touchscreen/da9052_tsi.c
4839 F:      drivers/leds/leds-da90??.c
4840 F:      drivers/mfd/da903x.c
4841 F:      drivers/mfd/da90??-*.c
4842 F:      drivers/mfd/da91??-*.c
4843 F:      drivers/power/supply/da9052-battery.c
4844 F:      drivers/power/supply/da91??-*.c
4845 F:      drivers/regulator/da903x.c
4846 F:      drivers/regulator/da9???-regulator.[ch]
4847 F:      drivers/regulator/slg51000-regulator.[ch]
4848 F:      drivers/thermal/da90??-thermal.c
4849 F:      drivers/rtc/rtc-da90??.c
4850 F:      drivers/video/backlight/da90??_bl.c
4851 F:      drivers/watchdog/da90??_wdt.c
4852 F:      include/linux/mfd/da903x.h
4853 F:      include/linux/mfd/da9052/
4854 F:      include/linux/mfd/da9055/
4855 F:      include/linux/mfd/da9062/
4856 F:      include/linux/mfd/da9063/
4857 F:      include/linux/mfd/da9150/
4858 F:      include/linux/regulator/da9211.h
4859 F:      include/sound/da[79]*.h
4860 F:      sound/soc/codecs/da[79]*.[ch]
4861
4862 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
4863 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4864 L:      linux-gpio@vger.kernel.org
4865 S:      Maintained
4866 F:      drivers/gpio/gpio-gpio-mm.c
4867
4868 DIOLAN U2C-12 I2C DRIVER
4869 M:      Guenter Roeck <linux@roeck-us.net>
4870 L:      linux-i2c@vger.kernel.org
4871 S:      Maintained
4872 F:      drivers/i2c/busses/i2c-diolan-u2c.c
4873
4874 FILESYSTEM DIRECT ACCESS (DAX)
4875 M:      Dan Williams <dan.j.williams@intel.com>
4876 R:      Matthew Wilcox <willy@infradead.org>
4877 R:      Jan Kara <jack@suse.cz>
4878 L:      linux-fsdevel@vger.kernel.org
4879 L:      linux-nvdimm@lists.01.org
4880 S:      Supported
4881 F:      fs/dax.c
4882 F:      include/linux/dax.h
4883 F:      include/trace/events/fs_dax.h
4884
4885 DEVICE DIRECT ACCESS (DAX)
4886 M:      Dan Williams <dan.j.williams@intel.com>
4887 M:      Vishal Verma <vishal.l.verma@intel.com>
4888 M:      Keith Busch <keith.busch@intel.com>
4889 M:      Dave Jiang <dave.jiang@intel.com>
4890 L:      linux-nvdimm@lists.01.org
4891 S:      Supported
4892 F:      drivers/dax/
4893
4894 DIRECTORY NOTIFICATION (DNOTIFY)
4895 M:      Jan Kara <jack@suse.cz>
4896 R:      Amir Goldstein <amir73il@gmail.com>
4897 L:      linux-fsdevel@vger.kernel.org
4898 S:      Maintained
4899 F:      Documentation/filesystems/dnotify.txt
4900 F:      fs/notify/dnotify/
4901 F:      include/linux/dnotify.h
4902
4903 DISK GEOMETRY AND PARTITION HANDLING
4904 M:      Andries Brouwer <aeb@cwi.nl>
4905 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
4906 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
4907 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
4908 S:      Maintained
4909
4910 DISKQUOTA
4911 M:      Jan Kara <jack@suse.com>
4912 S:      Maintained
4913 F:      Documentation/filesystems/quota.txt
4914 F:      fs/quota/
4915 F:      include/linux/quota*.h
4916 F:      include/uapi/linux/quota*.h
4917
4918 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
4919 M:      Bernie Thompson <bernie@plugable.com>
4920 L:      linux-fbdev@vger.kernel.org
4921 S:      Maintained
4922 W:      http://plugable.com/category/projects/udlfb/
4923 F:      drivers/video/fbdev/udlfb.c
4924 F:      include/video/udlfb.h
4925 F:      Documentation/fb/udlfb.rst
4926
4927 DISTRIBUTED LOCK MANAGER (DLM)
4928 M:      Christine Caulfield <ccaulfie@redhat.com>
4929 M:      David Teigland <teigland@redhat.com>
4930 L:      cluster-devel@redhat.com
4931 W:      http://sources.redhat.com/cluster/
4932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
4933 S:      Supported
4934 F:      fs/dlm/
4935
4936 DMA BUFFER SHARING FRAMEWORK
4937 M:      Sumit Semwal <sumit.semwal@linaro.org>
4938 S:      Maintained
4939 L:      linux-media@vger.kernel.org
4940 L:      dri-devel@lists.freedesktop.org
4941 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
4942 F:      drivers/dma-buf/
4943 F:      include/linux/dma-buf*
4944 F:      include/linux/reservation.h
4945 F:      include/linux/*fence.h
4946 F:      Documentation/driver-api/dma-buf.rst
4947 T:      git git://anongit.freedesktop.org/drm/drm-misc
4948
4949 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
4950 M:      Vinod Koul <vkoul@kernel.org>
4951 L:      dmaengine@vger.kernel.org
4952 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
4953 S:      Maintained
4954 F:      drivers/dma/
4955 F:      include/linux/dmaengine.h
4956 F:      include/linux/of_dma.h
4957 F:      Documentation/devicetree/bindings/dma/
4958 F:      Documentation/driver-api/dmaengine/
4959 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
4960
4961 DMA MAPPING HELPERS
4962 M:      Christoph Hellwig <hch@lst.de>
4963 M:      Marek Szyprowski <m.szyprowski@samsung.com>
4964 R:      Robin Murphy <robin.murphy@arm.com>
4965 L:      iommu@lists.linux-foundation.org
4966 T:      git git://git.infradead.org/users/hch/dma-mapping.git
4967 W:      http://git.infradead.org/users/hch/dma-mapping.git
4968 S:      Supported
4969 F:      kernel/dma/
4970 F:      include/asm-generic/dma-mapping.h
4971 F:      include/linux/dma-direct.h
4972 F:      include/linux/dma-mapping.h
4973 F:      include/linux/dma-noncoherent.h
4974
4975 DME1737 HARDWARE MONITOR DRIVER
4976 M:      Juerg Haefliger <juergh@gmail.com>
4977 L:      linux-hwmon@vger.kernel.org
4978 S:      Maintained
4979 F:      Documentation/hwmon/dme1737.rst
4980 F:      drivers/hwmon/dme1737.c
4981
4982 DMI/SMBIOS SUPPORT
4983 M:      Jean Delvare <jdelvare@suse.com>
4984 S:      Maintained
4985 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
4986 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
4987 F:      drivers/firmware/dmi-id.c
4988 F:      drivers/firmware/dmi_scan.c
4989 F:      include/linux/dmi.h
4990
4991 DOCUMENTATION
4992 M:      Jonathan Corbet <corbet@lwn.net>
4993 L:      linux-doc@vger.kernel.org
4994 S:      Maintained
4995 F:      Documentation/
4996 F:      scripts/documentation-file-ref-check
4997 F:      scripts/kernel-doc
4998 F:      scripts/sphinx-pre-install
4999 X:      Documentation/ABI/
5000 X:      Documentation/firmware-guide/acpi/
5001 X:      Documentation/devicetree/
5002 X:      Documentation/i2c/
5003 X:      Documentation/media/
5004 X:      Documentation/power/
5005 X:      Documentation/spi/
5006 T:      git git://git.lwn.net/linux.git docs-next
5007
5008 DOCUMENTATION/ITALIAN
5009 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5010 L:      linux-doc@vger.kernel.org
5011 S:      Maintained
5012 F:      Documentation/translations/it_IT
5013
5014 DOCUMENTATION SCRIPTS
5015 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5016 L:      linux-doc@vger.kernel.org
5017 S:      Maintained
5018 F:      scripts/documentation-file-ref-check
5019 F:      scripts/sphinx-pre-install
5020 F:      Documentation/sphinx/parse-headers.pl
5021
5022 DONGWOON DW9714 LENS VOICE COIL DRIVER
5023 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5024 L:      linux-media@vger.kernel.org
5025 T:      git git://linuxtv.org/media_tree.git
5026 S:      Maintained
5027 F:      drivers/media/i2c/dw9714.c
5028 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5029
5030 DONGWOON DW9807 LENS VOICE COIL DRIVER
5031 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5032 L:      linux-media@vger.kernel.org
5033 T:      git git://linuxtv.org/media_tree.git
5034 S:      Maintained
5035 F:      drivers/media/i2c/dw9807-vcm.c
5036 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5037
5038 DOUBLETALK DRIVER
5039 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5040 L:      blinux-list@redhat.com
5041 S:      Maintained
5042 F:      drivers/char/dtlk.c
5043 F:      include/linux/dtlk.h
5044
5045 DPAA2 DATAPATH I/O (DPIO) DRIVER
5046 M:      Roy Pledge <Roy.Pledge@nxp.com>
5047 L:      linux-kernel@vger.kernel.org
5048 S:      Maintained
5049 F:      drivers/soc/fsl/dpio
5050
5051 DPAA2 ETHERNET DRIVER
5052 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5053 L:      netdev@vger.kernel.org
5054 S:      Maintained
5055 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5056 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5057 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5058 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5059 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5060 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5061 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5062 F:      Documentation/networking/device_drivers/freescale/dpaa2/ethernet-driver.rst
5063 F:      Documentation/networking/device_drivers/freescale/dpaa2/mac-phy-support.rst
5064
5065 DPAA2 ETHERNET SWITCH DRIVER
5066 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5067 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5068 L:      linux-kernel@vger.kernel.org
5069 S:      Maintained
5070 F:      drivers/staging/fsl-dpaa2/ethsw
5071
5072 DPT_I2O SCSI RAID DRIVER
5073 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5074 L:      linux-scsi@vger.kernel.org
5075 W:      http://www.adaptec.com/
5076 S:      Maintained
5077 F:      drivers/scsi/dpt*
5078 F:      drivers/scsi/dpt/
5079
5080 DRBD DRIVER
5081 M:      Philipp Reisner <philipp.reisner@linbit.com>
5082 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5083 L:      drbd-dev@lists.linbit.com
5084 W:      http://www.drbd.org
5085 T:      git git://git.linbit.com/linux-drbd.git
5086 T:      git git://git.linbit.com/drbd-8.4.git
5087 S:      Supported
5088 F:      drivers/block/drbd/
5089 F:      lib/lru_cache.c
5090 F:      Documentation/admin-guide/blockdev/
5091
5092 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5093 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5094 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5096 S:      Supported
5097 F:      Documentation/kobject.txt
5098 F:      drivers/base/
5099 F:      fs/debugfs/
5100 F:      fs/sysfs/
5101 F:      include/linux/debugfs.h
5102 F:      include/linux/kobj*
5103 F:      lib/kobj*
5104
5105 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
5106 M:      Kevin Hilman <khilman@kernel.org>
5107 M:      Nishanth Menon <nm@ti.com>
5108 S:      Maintained
5109 F:      drivers/power/avs/
5110 F:      include/linux/power/smartreflex.h
5111 L:      linux-pm@vger.kernel.org
5112
5113 DRM DRIVER FOR ARM PL111 CLCD
5114 M:      Eric Anholt <eric@anholt.net>
5115 T:      git git://anongit.freedesktop.org/drm/drm-misc
5116 S:      Supported
5117 F:      drivers/gpu/drm/pl111/
5118
5119 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5120 M:      Linus Walleij <linus.walleij@linaro.org>
5121 T:      git git://anongit.freedesktop.org/drm/drm-misc
5122 S:      Maintained
5123 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5124 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.txt
5125
5126 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5127 M:      Dave Airlie <airlied@redhat.com>
5128 S:      Odd Fixes
5129 F:      drivers/gpu/drm/ast/
5130
5131 DRM DRIVER FOR ASPEED BMC GFX
5132 M:      Joel Stanley <joel@jms.id.au>
5133 L:      linux-aspeed@lists.ozlabs.org
5134 T:      git git://anongit.freedesktop.org/drm/drm-misc
5135 S:      Supported
5136 F:      drivers/gpu/drm/aspeed/
5137 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5138
5139 DRM DRIVER FOR BOCHS VIRTUAL GPU
5140 M:      Gerd Hoffmann <kraxel@redhat.com>
5141 L:      virtualization@lists.linux-foundation.org
5142 T:      git git://anongit.freedesktop.org/drm/drm-misc
5143 S:      Maintained
5144 F:      drivers/gpu/drm/bochs/
5145
5146 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5147 M:      Linus Walleij <linus.walleij@linaro.org>
5148 T:      git git://anongit.freedesktop.org/drm/drm-misc
5149 S:      Maintained
5150 F:      drivers/gpu/drm/tve200/
5151
5152 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5153 M:      Jagan Teki <jagan@amarulasolutions.com>
5154 S:      Maintained
5155 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5156 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.txt
5157
5158 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5159 M:      Hans de Goede <hdegoede@redhat.com>
5160 T:      git git://anongit.freedesktop.org/drm/drm-misc
5161 S:      Maintained
5162 F:      drivers/gpu/drm/tiny/gm12u320.c
5163
5164 DRM DRIVER FOR ILITEK ILI9225 PANELS
5165 M:      David Lechner <david@lechnology.com>
5166 T:      git git://anongit.freedesktop.org/drm/drm-misc
5167 S:      Maintained
5168 F:      drivers/gpu/drm/tiny/ili9225.c
5169 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5170
5171 DRM DRIVER FOR HX8357D PANELS
5172 M:      Eric Anholt <eric@anholt.net>
5173 T:      git git://anongit.freedesktop.org/drm/drm-misc
5174 S:      Maintained
5175 F:      drivers/gpu/drm/tiny/hx8357d.c
5176 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5177
5178 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5179 S:      Orphan / Obsolete
5180 F:      drivers/gpu/drm/i810/
5181 F:      include/uapi/drm/i810_drm.h
5182
5183 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5184 S:      Orphan / Obsolete
5185 F:      drivers/gpu/drm/mga/
5186 F:      include/uapi/drm/mga_drm.h
5187
5188 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
5189 M:      Dave Airlie <airlied@redhat.com>
5190 S:      Odd Fixes
5191 F:      drivers/gpu/drm/mgag200/
5192
5193 DRM DRIVER FOR MI0283QT
5194 M:      Noralf Trønnes <noralf@tronnes.org>
5195 T:      git git://anongit.freedesktop.org/drm/drm-misc
5196 S:      Maintained
5197 F:      drivers/gpu/drm/tiny/mi0283qt.c
5198 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5199
5200 DRM DRIVER FOR MSM ADRENO GPU
5201 M:      Rob Clark <robdclark@gmail.com>
5202 M:      Sean Paul <sean@poorly.run>
5203 L:      linux-arm-msm@vger.kernel.org
5204 L:      dri-devel@lists.freedesktop.org
5205 L:      freedreno@lists.freedesktop.org
5206 T:      git https://gitlab.freedesktop.org/drm/msm.git
5207 S:      Maintained
5208 F:      drivers/gpu/drm/msm/
5209 F:      include/uapi/drm/msm_drm.h
5210 F:      Documentation/devicetree/bindings/display/msm/
5211
5212 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5213 M:      Ben Skeggs <bskeggs@redhat.com>
5214 L:      dri-devel@lists.freedesktop.org
5215 L:      nouveau@lists.freedesktop.org
5216 T:      git git://github.com/skeggsb/linux
5217 S:      Supported
5218 F:      drivers/gpu/drm/nouveau/
5219 F:      include/uapi/drm/nouveau_drm.h
5220
5221 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5222 M:      Stefan Mavrodiev <stefan@olimex.com>
5223 S:      Maintained
5224 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5225 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.txt
5226
5227 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5228 M:      Noralf Trønnes <noralf@tronnes.org>
5229 T:      git git://anongit.freedesktop.org/drm/drm-misc
5230 S:      Maintained
5231 F:      drivers/gpu/drm/tiny/repaper.c
5232 F:      Documentation/devicetree/bindings/display/repaper.txt
5233
5234 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5235 M:      Dave Airlie <airlied@redhat.com>
5236 M:      Gerd Hoffmann <kraxel@redhat.com>
5237 L:      virtualization@lists.linux-foundation.org
5238 T:      git git://anongit.freedesktop.org/drm/drm-misc
5239 S:      Obsolete
5240 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5241 F:      drivers/gpu/drm/cirrus/
5242
5243 DRM DRIVER FOR QXL VIRTUAL GPU
5244 M:      Dave Airlie <airlied@redhat.com>
5245 M:      Gerd Hoffmann <kraxel@redhat.com>
5246 L:      virtualization@lists.linux-foundation.org
5247 L:      spice-devel@lists.freedesktop.org
5248 T:      git git://anongit.freedesktop.org/drm/drm-misc
5249 S:      Maintained
5250 F:      drivers/gpu/drm/qxl/
5251 F:      include/uapi/drm/qxl_drm.h
5252
5253 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5254 M:      Robert Chiras <robert.chiras@nxp.com>
5255 S:      Maintained
5256 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5257 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.txt
5258
5259 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5260 S:      Orphan / Obsolete
5261 F:      drivers/gpu/drm/r128/
5262 F:      include/uapi/drm/r128_drm.h
5263
5264 DRM DRIVER FOR ROCKTECH JH057N00900 PANELS
5265 M:      Guido Günther <agx@sigxcpu.org>
5266 R:      Purism Kernel Team <kernel@puri.sm>
5267 S:      Maintained
5268 F:      drivers/gpu/drm/panel/panel-rocktech-jh057n00900.c
5269 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.txt
5270
5271 DRM DRIVER FOR SAVAGE VIDEO CARDS
5272 S:      Orphan / Obsolete
5273 F:      drivers/gpu/drm/savage/
5274 F:      include/uapi/drm/savage_drm.h
5275
5276 DRM DRIVER FOR SIS VIDEO CARDS
5277 S:      Orphan / Obsolete
5278 F:      drivers/gpu/drm/sis/
5279 F:      include/uapi/drm/sis_drm.h
5280
5281 DRM DRIVER FOR SITRONIX ST7701 PANELS
5282 M:      Jagan Teki <jagan@amarulasolutions.com>
5283 S:      Maintained
5284 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5285 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.txt
5286
5287 DRM DRIVER FOR SITRONIX ST7586 PANELS
5288 M:      David Lechner <david@lechnology.com>
5289 T:      git git://anongit.freedesktop.org/drm/drm-misc
5290 S:      Maintained
5291 F:      drivers/gpu/drm/tiny/st7586.c
5292 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5293
5294 DRM DRIVER FOR SITRONIX ST7735R PANELS
5295 M:      David Lechner <david@lechnology.com>
5296 T:      git git://anongit.freedesktop.org/drm/drm-misc
5297 S:      Maintained
5298 F:      drivers/gpu/drm/tiny/st7735r.c
5299 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.txt
5300
5301 DRM DRIVER FOR ST-ERICSSON MCDE
5302 M:      Linus Walleij <linus.walleij@linaro.org>
5303 T:      git git://anongit.freedesktop.org/drm/drm-misc
5304 S:      Maintained
5305 F:      drivers/gpu/drm/mcde/
5306 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5307
5308 DRM DRIVER FOR TDFX VIDEO CARDS
5309 S:      Orphan / Obsolete
5310 F:      drivers/gpu/drm/tdfx/
5311
5312 DRM DRIVER FOR TPO TPG110 PANELS
5313 M:      Linus Walleij <linus.walleij@linaro.org>
5314 T:      git git://anongit.freedesktop.org/drm/drm-misc
5315 S:      Maintained
5316 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5317 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5318
5319 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5320 M:      Dave Airlie <airlied@redhat.com>
5321 R:      Sean Paul <sean@poorly.run>
5322 L:      dri-devel@lists.freedesktop.org
5323 S:      Odd Fixes
5324 F:      drivers/gpu/drm/udl/
5325 T:      git git://anongit.freedesktop.org/drm/drm-misc
5326
5327 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5328 M:      Hans de Goede <hdegoede@redhat.com>
5329 L:      dri-devel@lists.freedesktop.org
5330 S:      Maintained
5331 F:      drivers/gpu/drm/vboxvideo/
5332 T:      git git://anongit.freedesktop.org/drm/drm-misc
5333
5334 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5335 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5336 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
5337 R:      Daniel Vetter <daniel@ffwll.ch>
5338 T:      git git://anongit.freedesktop.org/drm/drm-misc
5339 S:      Maintained
5340 L:      dri-devel@lists.freedesktop.org
5341 F:      drivers/gpu/drm/vkms/
5342 F:      Documentation/gpu/vkms.rst
5343
5344 DRM DRIVER FOR VMWARE VIRTUAL GPU
5345 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5346 M:      Thomas Hellstrom <thellstrom@vmware.com>
5347 L:      dri-devel@lists.freedesktop.org
5348 T:      git git://people.freedesktop.org/~thomash/linux
5349 S:      Supported
5350 F:      drivers/gpu/drm/vmwgfx/
5351 F:      include/uapi/drm/vmwgfx_drm.h
5352
5353 DRM DRIVERS
5354 M:      David Airlie <airlied@linux.ie>
5355 M:      Daniel Vetter <daniel@ffwll.ch>
5356 L:      dri-devel@lists.freedesktop.org
5357 T:      git git://anongit.freedesktop.org/drm/drm
5358 B:      https://bugs.freedesktop.org/
5359 C:      irc://chat.freenode.net/dri-devel
5360 S:      Maintained
5361 F:      drivers/gpu/drm/
5362 F:      drivers/gpu/vga/
5363 F:      Documentation/devicetree/bindings/display/
5364 F:      Documentation/devicetree/bindings/gpu/
5365 F:      Documentation/gpu/
5366 F:      include/drm/
5367 F:      include/uapi/drm/
5368 F:      include/linux/vga*
5369
5370 DRM DRIVERS AND MISC GPU PATCHES
5371 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5372 M:      Maxime Ripard <mripard@kernel.org>
5373 M:      Sean Paul <sean@poorly.run>
5374 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5375 S:      Maintained
5376 T:      git git://anongit.freedesktop.org/drm/drm-misc
5377 F:      Documentation/gpu/
5378 F:      drivers/gpu/vga/
5379 F:      drivers/gpu/drm/*
5380 F:      include/drm/drm*
5381 F:      include/uapi/drm/drm*
5382 F:      include/linux/vga*
5383
5384 DRM DRIVERS FOR ALLWINNER A10
5385 M:      Maxime Ripard <mripard@kernel.org>
5386 L:      dri-devel@lists.freedesktop.org
5387 S:      Supported
5388 F:      drivers/gpu/drm/sun4i/
5389 F:      Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
5390 T:      git git://anongit.freedesktop.org/drm/drm-misc
5391
5392 DRM DRIVERS FOR AMLOGIC SOCS
5393 M:      Neil Armstrong <narmstrong@baylibre.com>
5394 L:      dri-devel@lists.freedesktop.org
5395 L:      linux-amlogic@lists.infradead.org
5396 W:      http://linux-meson.com/
5397 S:      Supported
5398 F:      drivers/gpu/drm/meson/
5399 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5400 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5401 F:      Documentation/gpu/meson.rst
5402 T:      git git://anongit.freedesktop.org/drm/drm-misc
5403
5404 DRM DRIVERS FOR ATMEL HLCDC
5405 M:      Sam Ravnborg <sam@ravnborg.org>
5406 M:      Boris Brezillon <bbrezillon@kernel.org>
5407 L:      dri-devel@lists.freedesktop.org
5408 S:      Supported
5409 F:      drivers/gpu/drm/atmel-hlcdc/
5410 F:      Documentation/devicetree/bindings/display/atmel/
5411 T:      git git://anongit.freedesktop.org/drm/drm-misc
5412
5413 DRM DRIVERS FOR BRIDGE CHIPS
5414 M:      Andrzej Hajda <a.hajda@samsung.com>
5415 M:      Neil Armstrong <narmstrong@baylibre.com>
5416 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5417 R:      Jonas Karlman <jonas@kwiboo.se>
5418 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5419 S:      Maintained
5420 T:      git git://anongit.freedesktop.org/drm/drm-misc
5421 F:      drivers/gpu/drm/bridge/
5422
5423 DRM DRIVERS FOR EXYNOS
5424 M:      Inki Dae <inki.dae@samsung.com>
5425 M:      Joonyoung Shim <jy0922.shim@samsung.com>
5426 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
5427 M:      Kyungmin Park <kyungmin.park@samsung.com>
5428 L:      dri-devel@lists.freedesktop.org
5429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5430 S:      Supported
5431 F:      drivers/gpu/drm/exynos/
5432 F:      include/uapi/drm/exynos_drm.h
5433 F:      Documentation/devicetree/bindings/display/exynos/
5434
5435 DRM DRIVERS FOR FREESCALE DCU
5436 M:      Stefan Agner <stefan@agner.ch>
5437 M:      Alison Wang <alison.wang@nxp.com>
5438 L:      dri-devel@lists.freedesktop.org
5439 S:      Supported
5440 F:      drivers/gpu/drm/fsl-dcu/
5441 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5442 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5443 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19-05b.txt
5444 T:      git git://anongit.freedesktop.org/drm/drm-misc
5445
5446 DRM DRIVERS FOR FREESCALE IMX
5447 M:      Philipp Zabel <p.zabel@pengutronix.de>
5448 L:      dri-devel@lists.freedesktop.org
5449 S:      Maintained
5450 F:      drivers/gpu/drm/imx/
5451 F:      drivers/gpu/ipu-v3/
5452 F:      Documentation/devicetree/bindings/display/imx/
5453
5454 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5455 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5456 L:      dri-devel@lists.freedesktop.org
5457 T:      git git://github.com/patjak/drm-gma500
5458 S:      Maintained
5459 F:      drivers/gpu/drm/gma500/
5460
5461 DRM DRIVERS FOR HISILICON
5462 M:      Xinliang Liu <z.liuxinliang@hisilicon.com>
5463 M:      Rongrong Zou <zourongrong@gmail.com>
5464 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
5465 R:      Chen Feng <puck.chen@hisilicon.com>
5466 L:      dri-devel@lists.freedesktop.org
5467 T:      git git://github.com/xin3liang/linux.git
5468 S:      Maintained
5469 F:      drivers/gpu/drm/hisilicon/
5470 F:      Documentation/devicetree/bindings/display/hisilicon/
5471
5472 DRM DRIVERS FOR LIMA
5473 M:      Qiang Yu <yuq825@gmail.com>
5474 L:      dri-devel@lists.freedesktop.org
5475 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
5476 S:      Maintained
5477 F:      drivers/gpu/drm/lima/
5478 F:      include/uapi/drm/lima_drm.h
5479 T:      git git://anongit.freedesktop.org/drm/drm-misc
5480
5481 DRM DRIVERS FOR MEDIATEK
5482 M:      CK Hu <ck.hu@mediatek.com>
5483 M:      Philipp Zabel <p.zabel@pengutronix.de>
5484 L:      dri-devel@lists.freedesktop.org
5485 S:      Supported
5486 F:      drivers/gpu/drm/mediatek/
5487 F:      Documentation/devicetree/bindings/display/mediatek/
5488
5489 DRM DRIVERS FOR NVIDIA TEGRA
5490 M:      Thierry Reding <thierry.reding@gmail.com>
5491 L:      dri-devel@lists.freedesktop.org
5492 L:      linux-tegra@vger.kernel.org
5493 T:      git git://anongit.freedesktop.org/tegra/linux.git
5494 S:      Supported
5495 F:      drivers/gpu/drm/tegra/
5496 F:      drivers/gpu/host1x/
5497 F:      include/linux/host1x.h
5498 F:      include/uapi/drm/tegra_drm.h
5499 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5500
5501 DRM DRIVERS FOR RENESAS
5502 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5503 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5504 L:      dri-devel@lists.freedesktop.org
5505 L:      linux-renesas-soc@vger.kernel.org
5506 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5507 S:      Supported
5508 F:      drivers/gpu/drm/rcar-du/
5509 F:      drivers/gpu/drm/shmobile/
5510 F:      include/linux/platform_data/shmob_drm.h
5511 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5512 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
5513 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5514
5515 DRM DRIVERS FOR ROCKCHIP
5516 M:      Sandy Huang <hjc@rock-chips.com>
5517 M:      Heiko Stübner <heiko@sntech.de>
5518 L:      dri-devel@lists.freedesktop.org
5519 S:      Maintained
5520 F:      drivers/gpu/drm/rockchip/
5521 F:      Documentation/devicetree/bindings/display/rockchip/
5522 T:      git git://anongit.freedesktop.org/drm/drm-misc
5523
5524 DRM DRIVERS FOR STI
5525 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5526 M:      Vincent Abriou <vincent.abriou@st.com>
5527 L:      dri-devel@lists.freedesktop.org
5528 T:      git git://anongit.freedesktop.org/drm/drm-misc
5529 S:      Maintained
5530 F:      drivers/gpu/drm/sti
5531 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5532
5533 DRM DRIVERS FOR STM
5534 M:      Yannick Fertre <yannick.fertre@st.com>
5535 M:      Philippe Cornu <philippe.cornu@st.com>
5536 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5537 M:      Vincent Abriou <vincent.abriou@st.com>
5538 L:      dri-devel@lists.freedesktop.org
5539 T:      git git://anongit.freedesktop.org/drm/drm-misc
5540 S:      Maintained
5541 F:      drivers/gpu/drm/stm
5542 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.txt
5543
5544 DRM DRIVERS FOR TI LCDC
5545 M:      Jyri Sarha <jsarha@ti.com>
5546 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5547 L:      dri-devel@lists.freedesktop.org
5548 S:      Maintained
5549 F:      drivers/gpu/drm/tilcdc/
5550 F:      Documentation/devicetree/bindings/display/tilcdc/
5551
5552 DRM DRIVERS FOR TI OMAP
5553 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5554 L:      dri-devel@lists.freedesktop.org
5555 S:      Maintained
5556 F:      drivers/gpu/drm/omapdrm/
5557 F:      Documentation/devicetree/bindings/display/ti/
5558
5559 DRM DRIVERS FOR V3D
5560 M:      Eric Anholt <eric@anholt.net>
5561 S:      Supported
5562 F:      drivers/gpu/drm/v3d/
5563 F:      include/uapi/drm/v3d_drm.h
5564 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5565 T:      git git://anongit.freedesktop.org/drm/drm-misc
5566
5567 DRM DRIVERS FOR VC4
5568 M:      Eric Anholt <eric@anholt.net>
5569 T:      git git://github.com/anholt/linux
5570 S:      Supported
5571 F:      drivers/gpu/drm/vc4/
5572 F:      include/uapi/drm/vc4_drm.h
5573 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
5574 T:      git git://anongit.freedesktop.org/drm/drm-misc
5575
5576 DRM DRIVERS FOR VIVANTE GPU IP
5577 M:      Lucas Stach <l.stach@pengutronix.de>
5578 R:      Russell King <linux+etnaviv@armlinux.org.uk>
5579 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
5580 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
5581 L:      dri-devel@lists.freedesktop.org
5582 S:      Maintained
5583 F:      drivers/gpu/drm/etnaviv/
5584 F:      include/uapi/drm/etnaviv_drm.h
5585 F:      Documentation/devicetree/bindings/display/etnaviv/
5586
5587 DRM DRIVERS FOR ZTE ZX
5588 M:      Shawn Guo <shawnguo@kernel.org>
5589 L:      dri-devel@lists.freedesktop.org
5590 S:      Maintained
5591 F:      drivers/gpu/drm/zte/
5592 F:      Documentation/devicetree/bindings/display/zte,vou.txt
5593 T:      git git://anongit.freedesktop.org/drm/drm-misc
5594
5595 DRM PANEL DRIVERS
5596 M:      Thierry Reding <thierry.reding@gmail.com>
5597 R:      Sam Ravnborg <sam@ravnborg.org>
5598 L:      dri-devel@lists.freedesktop.org
5599 T:      git git://anongit.freedesktop.org/drm/drm-misc
5600 S:      Maintained
5601 F:      drivers/gpu/drm/drm_panel.c
5602 F:      drivers/gpu/drm/panel/
5603 F:      include/drm/drm_panel.h
5604 F:      Documentation/devicetree/bindings/display/panel/
5605
5606 DRM DRIVERS FOR XEN
5607 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
5608 T:      git git://anongit.freedesktop.org/drm/drm-misc
5609 L:      dri-devel@lists.freedesktop.org
5610 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
5611 S:      Supported
5612 F:      drivers/gpu/drm/xen/
5613 F:      Documentation/gpu/xen-front.rst
5614
5615 DRM TTM SUBSYSTEM
5616 M:      Christian Koenig <christian.koenig@amd.com>
5617 M:      Huang Rui <ray.huang@amd.com>
5618 T:      git git://people.freedesktop.org/~agd5f/linux
5619 S:      Maintained
5620 L:      dri-devel@lists.freedesktop.org
5621 F:      include/drm/ttm/
5622 F:      drivers/gpu/drm/ttm/
5623
5624 DSBR100 USB FM RADIO DRIVER
5625 M:      Alexey Klimov <klimov.linux@gmail.com>
5626 L:      linux-media@vger.kernel.org
5627 T:      git git://linuxtv.org/media_tree.git
5628 S:      Maintained
5629 F:      drivers/media/radio/dsbr100.c
5630
5631 DT3155 MEDIA DRIVER
5632 M:      Hans Verkuil <hverkuil@xs4all.nl>
5633 L:      linux-media@vger.kernel.org
5634 T:      git git://linuxtv.org/media_tree.git
5635 W:      https://linuxtv.org
5636 S:      Odd Fixes
5637 F:      drivers/media/pci/dt3155/
5638
5639 DVB_USB_AF9015 MEDIA DRIVER
5640 M:      Antti Palosaari <crope@iki.fi>
5641 L:      linux-media@vger.kernel.org
5642 W:      https://linuxtv.org
5643 W:      http://palosaari.fi/linux/
5644 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5645 T:      git git://linuxtv.org/anttip/media_tree.git
5646 S:      Maintained
5647 F:      drivers/media/usb/dvb-usb-v2/af9015*
5648
5649 DVB_USB_AF9035 MEDIA DRIVER
5650 M:      Antti Palosaari <crope@iki.fi>
5651 L:      linux-media@vger.kernel.org
5652 W:      https://linuxtv.org
5653 W:      http://palosaari.fi/linux/
5654 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5655 T:      git git://linuxtv.org/anttip/media_tree.git
5656 S:      Maintained
5657 F:      drivers/media/usb/dvb-usb-v2/af9035*
5658
5659 DVB_USB_ANYSEE MEDIA DRIVER
5660 M:      Antti Palosaari <crope@iki.fi>
5661 L:      linux-media@vger.kernel.org
5662 W:      https://linuxtv.org
5663 W:      http://palosaari.fi/linux/
5664 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5665 T:      git git://linuxtv.org/anttip/media_tree.git
5666 S:      Maintained
5667 F:      drivers/media/usb/dvb-usb-v2/anysee*
5668
5669 DVB_USB_AU6610 MEDIA DRIVER
5670 M:      Antti Palosaari <crope@iki.fi>
5671 L:      linux-media@vger.kernel.org
5672 W:      https://linuxtv.org
5673 W:      http://palosaari.fi/linux/
5674 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5675 T:      git git://linuxtv.org/anttip/media_tree.git
5676 S:      Maintained
5677 F:      drivers/media/usb/dvb-usb-v2/au6610*
5678
5679 DVB_USB_CE6230 MEDIA DRIVER
5680 M:      Antti Palosaari <crope@iki.fi>
5681 L:      linux-media@vger.kernel.org
5682 W:      https://linuxtv.org
5683 W:      http://palosaari.fi/linux/
5684 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5685 T:      git git://linuxtv.org/anttip/media_tree.git
5686 S:      Maintained
5687 F:      drivers/media/usb/dvb-usb-v2/ce6230*
5688
5689 DVB_USB_CXUSB MEDIA DRIVER
5690 M:      Michael Krufky <mkrufky@linuxtv.org>
5691 L:      linux-media@vger.kernel.org
5692 W:      https://linuxtv.org
5693 W:      http://github.com/mkrufky
5694 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5695 T:      git git://linuxtv.org/media_tree.git
5696 S:      Maintained
5697 F:      drivers/media/usb/dvb-usb/cxusb*
5698
5699 DVB_USB_EC168 MEDIA DRIVER
5700 M:      Antti Palosaari <crope@iki.fi>
5701 L:      linux-media@vger.kernel.org
5702 W:      https://linuxtv.org
5703 W:      http://palosaari.fi/linux/
5704 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5705 T:      git git://linuxtv.org/anttip/media_tree.git
5706 S:      Maintained
5707 F:      drivers/media/usb/dvb-usb-v2/ec168*
5708
5709 DVB_USB_GL861 MEDIA DRIVER
5710 M:      Antti Palosaari <crope@iki.fi>
5711 L:      linux-media@vger.kernel.org
5712 W:      https://linuxtv.org
5713 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5714 T:      git git://linuxtv.org/anttip/media_tree.git
5715 S:      Maintained
5716 F:      drivers/media/usb/dvb-usb-v2/gl861*
5717
5718 DVB_USB_MXL111SF MEDIA DRIVER
5719 M:      Michael Krufky <mkrufky@linuxtv.org>
5720 L:      linux-media@vger.kernel.org
5721 W:      https://linuxtv.org
5722 W:      http://github.com/mkrufky
5723 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5724 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
5725 S:      Maintained
5726 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
5727
5728 DVB_USB_RTL28XXU MEDIA DRIVER
5729 M:      Antti Palosaari <crope@iki.fi>
5730 L:      linux-media@vger.kernel.org
5731 W:      https://linuxtv.org
5732 W:      http://palosaari.fi/linux/
5733 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5734 T:      git git://linuxtv.org/anttip/media_tree.git
5735 S:      Maintained
5736 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
5737
5738 DVB_USB_V2 MEDIA DRIVER
5739 M:      Antti Palosaari <crope@iki.fi>
5740 L:      linux-media@vger.kernel.org
5741 W:      https://linuxtv.org
5742 W:      http://palosaari.fi/linux/
5743 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5744 T:      git git://linuxtv.org/anttip/media_tree.git
5745 S:      Maintained
5746 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
5747 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
5748
5749 DYNAMIC DEBUG
5750 M:      Jason Baron <jbaron@akamai.com>
5751 S:      Maintained
5752 F:      lib/dynamic_debug.c
5753 F:      include/linux/dynamic_debug.h
5754
5755 DYNAMIC INTERRUPT MODERATION
5756 M:      Tal Gilboa <talgi@mellanox.com>
5757 S:      Maintained
5758 F:      include/linux/dim.h
5759 F:      lib/dim/
5760
5761 DZ DECSTATION DZ11 SERIAL DRIVER
5762 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
5763 S:      Maintained
5764 F:      drivers/tty/serial/dz.*
5765
5766 E3X0 POWER BUTTON DRIVER
5767 M:      Moritz Fischer <moritz.fischer@ettus.com>
5768 L:      usrp-users@lists.ettus.com
5769 W:      http://www.ettus.com
5770 S:      Supported
5771 F:      drivers/input/misc/e3x0-button.c
5772 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
5773
5774 E4000 MEDIA DRIVER
5775 M:      Antti Palosaari <crope@iki.fi>
5776 L:      linux-media@vger.kernel.org
5777 W:      https://linuxtv.org
5778 W:      http://palosaari.fi/linux/
5779 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5780 T:      git git://linuxtv.org/anttip/media_tree.git
5781 S:      Maintained
5782 F:      drivers/media/tuners/e4000*
5783
5784 EARTH_PT1 MEDIA DRIVER
5785 M:      Akihiro Tsukada <tskd08@gmail.com>
5786 L:      linux-media@vger.kernel.org
5787 S:      Odd Fixes
5788 F:      drivers/media/pci/pt1/
5789
5790 EARTH_PT3 MEDIA DRIVER
5791 M:      Akihiro Tsukada <tskd08@gmail.com>
5792 L:      linux-media@vger.kernel.org
5793 S:      Odd Fixes
5794 F:      drivers/media/pci/pt3/
5795
5796 EC100 MEDIA DRIVER
5797 M:      Antti Palosaari <crope@iki.fi>
5798 L:      linux-media@vger.kernel.org
5799 W:      https://linuxtv.org
5800 W:      http://palosaari.fi/linux/
5801 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5802 T:      git git://linuxtv.org/anttip/media_tree.git
5803 S:      Maintained
5804 F:      drivers/media/dvb-frontends/ec100*
5805
5806 ECRYPT FILE SYSTEM
5807 M:      Tyler Hicks <tyhicks@canonical.com>
5808 L:      ecryptfs@vger.kernel.org
5809 W:      http://ecryptfs.org
5810 W:      https://launchpad.net/ecryptfs
5811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
5812 S:      Supported
5813 F:      Documentation/filesystems/ecryptfs.txt
5814 F:      fs/ecryptfs/
5815
5816 EDAC-AMD64
5817 M:      Borislav Petkov <bp@alien8.de>
5818 L:      linux-edac@vger.kernel.org
5819 S:      Maintained
5820 F:      drivers/edac/amd64_edac*
5821
5822 EDAC-ARMADA
5823 M:      Jan Luebbe <jlu@pengutronix.de>
5824 L:      linux-edac@vger.kernel.org
5825 S:      Maintained
5826 F:      drivers/edac/armada_xp_*
5827
5828 EDAC-AST2500
5829 M:      Stefan Schaeckeler <sschaeck@cisco.com>
5830 S:      Supported
5831 F:      drivers/edac/aspeed_edac.c
5832 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
5833
5834 EDAC-BLUEFIELD
5835 M:      Shravan Kumar Ramani <sramani@mellanox.com>
5836 S:      Supported
5837 F:      drivers/edac/bluefield_edac.c
5838
5839 EDAC-CALXEDA
5840 M:      Robert Richter <rric@kernel.org>
5841 L:      linux-edac@vger.kernel.org
5842 S:      Maintained
5843 F:      drivers/edac/highbank*
5844
5845 EDAC-CAVIUM OCTEON
5846 M:      Ralf Baechle <ralf@linux-mips.org>
5847 M:      David Daney <david.daney@cavium.com>
5848 L:      linux-edac@vger.kernel.org
5849 L:      linux-mips@vger.kernel.org
5850 S:      Supported
5851 F:      drivers/edac/octeon_edac*
5852
5853 EDAC-CAVIUM THUNDERX
5854 M:      David Daney <david.daney@cavium.com>
5855 M:      Jan Glauber <jglauber@cavium.com>
5856 L:      linux-edac@vger.kernel.org
5857 S:      Supported
5858 F:      drivers/edac/thunderx_edac*
5859
5860 EDAC-CORE
5861 M:      Borislav Petkov <bp@alien8.de>
5862 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5863 M:      Tony Luck <tony.luck@intel.com>
5864 R:      James Morse <james.morse@arm.com>
5865 R:      Robert Richter <rrichter@marvell.com>
5866 L:      linux-edac@vger.kernel.org
5867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
5868 S:      Supported
5869 F:      Documentation/admin-guide/ras.rst
5870 F:      Documentation/driver-api/edac.rst
5871 F:      drivers/edac/
5872 F:      include/linux/edac.h
5873
5874 EDAC-E752X
5875 M:      Mark Gross <mark.gross@intel.com>
5876 L:      linux-edac@vger.kernel.org
5877 S:      Maintained
5878 F:      drivers/edac/e752x_edac.c
5879
5880 EDAC-E7XXX
5881 L:      linux-edac@vger.kernel.org
5882 S:      Maintained
5883 F:      drivers/edac/e7xxx_edac.c
5884
5885 EDAC-FSL_DDR
5886 M:      York Sun <york.sun@nxp.com>
5887 L:      linux-edac@vger.kernel.org
5888 S:      Maintained
5889 F:      drivers/edac/fsl_ddr_edac.*
5890
5891 EDAC-GHES
5892 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5893 L:      linux-edac@vger.kernel.org
5894 S:      Maintained
5895 F:      drivers/edac/ghes_edac.c
5896
5897 EDAC-I10NM
5898 M:      Tony Luck <tony.luck@intel.com>
5899 L:      linux-edac@vger.kernel.org
5900 S:      Maintained
5901 F:      drivers/edac/i10nm_base.c
5902
5903 EDAC-I3000
5904 L:      linux-edac@vger.kernel.org
5905 S:      Orphan
5906 F:      drivers/edac/i3000_edac.c
5907
5908 EDAC-I5000
5909 L:      linux-edac@vger.kernel.org
5910 S:      Maintained
5911 F:      drivers/edac/i5000_edac.c
5912
5913 EDAC-I5400
5914 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5915 L:      linux-edac@vger.kernel.org
5916 S:      Maintained
5917 F:      drivers/edac/i5400_edac.c
5918
5919 EDAC-I7300
5920 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5921 L:      linux-edac@vger.kernel.org
5922 S:      Maintained
5923 F:      drivers/edac/i7300_edac.c
5924
5925 EDAC-I7CORE
5926 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5927 L:      linux-edac@vger.kernel.org
5928 S:      Maintained
5929 F:      drivers/edac/i7core_edac.c
5930
5931 EDAC-I82443BXGX
5932 M:      Tim Small <tim@buttersideup.com>
5933 L:      linux-edac@vger.kernel.org
5934 S:      Maintained
5935 F:      drivers/edac/i82443bxgx_edac.c
5936
5937 EDAC-I82975X
5938 M:      "Arvind R." <arvino55@gmail.com>
5939 L:      linux-edac@vger.kernel.org
5940 S:      Maintained
5941 F:      drivers/edac/i82975x_edac.c
5942
5943 EDAC-IE31200
5944 M:      Jason Baron <jbaron@akamai.com>
5945 L:      linux-edac@vger.kernel.org
5946 S:      Maintained
5947 F:      drivers/edac/ie31200_edac.c
5948
5949 EDAC-MPC85XX
5950 M:      Johannes Thumshirn <morbidrsa@gmail.com>
5951 L:      linux-edac@vger.kernel.org
5952 S:      Maintained
5953 F:      drivers/edac/mpc85xx_edac.[ch]
5954
5955 EDAC-PASEMI
5956 M:      Egor Martovetsky <egor@pasemi.com>
5957 L:      linux-edac@vger.kernel.org
5958 S:      Maintained
5959 F:      drivers/edac/pasemi_edac.c
5960
5961 EDAC-PND2
5962 M:      Tony Luck <tony.luck@intel.com>
5963 L:      linux-edac@vger.kernel.org
5964 S:      Maintained
5965 F:      drivers/edac/pnd2_edac.[ch]
5966
5967 EDAC-R82600
5968 M:      Tim Small <tim@buttersideup.com>
5969 L:      linux-edac@vger.kernel.org
5970 S:      Maintained
5971 F:      drivers/edac/r82600_edac.c
5972
5973 EDAC-SBRIDGE
5974 M:      Tony Luck <tony.luck@intel.com>
5975 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
5976 L:      linux-edac@vger.kernel.org
5977 S:      Maintained
5978 F:      drivers/edac/sb_edac.c
5979
5980 EDAC-SIFIVE
5981 M:      Yash Shah <yash.shah@sifive.com>
5982 L:      linux-edac@vger.kernel.org
5983 S:      Supported
5984 F:      drivers/edac/sifive_edac.c
5985
5986 EDAC-SKYLAKE
5987 M:      Tony Luck <tony.luck@intel.com>
5988 L:      linux-edac@vger.kernel.org
5989 S:      Maintained
5990 F:      drivers/edac/skx_*.c
5991
5992 EDAC-TI
5993 M:      Tero Kristo <t-kristo@ti.com>
5994 L:      linux-edac@vger.kernel.org
5995 S:      Maintained
5996 F:      drivers/edac/ti_edac.c
5997
5998 EDAC-QCOM
5999 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6000 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6001 L:      linux-arm-msm@vger.kernel.org
6002 L:      linux-edac@vger.kernel.org
6003 S:      Maintained
6004 F:      drivers/edac/qcom_edac.c
6005
6006 EDIROL UA-101/UA-1000 DRIVER
6007 M:      Clemens Ladisch <clemens@ladisch.de>
6008 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6009 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6010 S:      Maintained
6011 F:      sound/usb/misc/ua101.c
6012
6013 EFI TEST DRIVER
6014 L:      linux-efi@vger.kernel.org
6015 M:      Ivan Hu <ivan.hu@canonical.com>
6016 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
6017 S:      Maintained
6018 F:      drivers/firmware/efi/test/
6019
6020 EFI VARIABLE FILESYSTEM
6021 M:      Matthew Garrett <matthew.garrett@nebula.com>
6022 M:      Jeremy Kerr <jk@ozlabs.org>
6023 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
6024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6025 L:      linux-efi@vger.kernel.org
6026 S:      Maintained
6027 F:      fs/efivarfs/
6028
6029 EFIFB FRAMEBUFFER DRIVER
6030 L:      linux-fbdev@vger.kernel.org
6031 M:      Peter Jones <pjones@redhat.com>
6032 S:      Maintained
6033 F:      drivers/video/fbdev/efifb.c
6034
6035 EFS FILESYSTEM
6036 W:      http://aeschi.ch.eu.org/efs/
6037 S:      Orphan
6038 F:      fs/efs/
6039
6040 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6041 M:      Douglas Miller <dougmill@linux.ibm.com>
6042 L:      netdev@vger.kernel.org
6043 S:      Maintained
6044 F:      drivers/net/ethernet/ibm/ehea/
6045
6046 EM28XX VIDEO4LINUX DRIVER
6047 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6048 L:      linux-media@vger.kernel.org
6049 W:      https://linuxtv.org
6050 T:      git git://linuxtv.org/media_tree.git
6051 S:      Maintained
6052 F:      drivers/media/usb/em28xx/
6053 F:      Documentation/media/v4l-drivers/em28xx*
6054
6055 EMBEDDED LINUX
6056 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6057 M:      Matt Mackall <mpm@selenic.com>
6058 M:      David Woodhouse <dwmw2@infradead.org>
6059 L:      linux-embedded@vger.kernel.org
6060 S:      Maintained
6061
6062 Emulex 10Gbps iSCSI - OneConnect DRIVER
6063 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6064 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6065 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6066 L:      linux-scsi@vger.kernel.org
6067 W:      http://www.broadcom.com
6068 S:      Supported
6069 F:      drivers/scsi/be2iscsi/
6070
6071 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6072 M:      Sathya Perla <sathya.perla@broadcom.com>
6073 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6074 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6075 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6076 L:      netdev@vger.kernel.org
6077 W:      http://www.emulex.com
6078 S:      Supported
6079 F:      drivers/net/ethernet/emulex/benet/
6080
6081 EMULEX ONECONNECT ROCE DRIVER
6082 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6083 M:      Devesh Sharma <devesh.sharma@broadcom.com>
6084 L:      linux-rdma@vger.kernel.org
6085 W:      http://www.broadcom.com
6086 S:      Odd Fixes
6087 F:      drivers/infiniband/hw/ocrdma/
6088 F:      include/uapi/rdma/ocrdma-abi.h
6089
6090 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6091 M:      James Smart <james.smart@broadcom.com>
6092 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6093 L:      linux-scsi@vger.kernel.org
6094 W:      http://www.broadcom.com
6095 S:      Supported
6096 F:      drivers/scsi/lpfc/
6097
6098 ENE CB710 FLASH CARD READER DRIVER
6099 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6100 S:      Maintained
6101 F:      drivers/misc/cb710/
6102 F:      drivers/mmc/host/cb710-mmc.*
6103 F:      include/linux/cb710.h
6104
6105 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6106 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6107 S:      Maintained
6108 F:      drivers/media/rc/ene_ir.*
6109
6110 EPSON S1D13XXX FRAMEBUFFER DRIVER
6111 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6112 S:      Maintained
6113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6114 F:      drivers/video/fbdev/s1d13xxxfb.c
6115 F:      include/video/s1d13xxxfb.h
6116
6117 EROFS FILE SYSTEM
6118 M:      Gao Xiang <gaoxiang25@huawei.com>
6119 M:      Chao Yu <yuchao0@huawei.com>
6120 L:      linux-erofs@lists.ozlabs.org
6121 S:      Maintained
6122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6123 F:      Documentation/filesystems/erofs.txt
6124 F:      fs/erofs/
6125 F:      include/trace/events/erofs.h
6126
6127 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6128 M:      Jeff Layton <jlayton@kernel.org>
6129 S:      Maintained
6130 F:      lib/errseq.c
6131 F:      include/linux/errseq.h
6132
6133 ET131X NETWORK DRIVER
6134 M:      Mark Einon <mark.einon@gmail.com>
6135 S:      Odd Fixes
6136 F:      drivers/net/ethernet/agere/
6137
6138 ETHERNET BRIDGE
6139 M:      Roopa Prabhu <roopa@cumulusnetworks.com>
6140 M:      Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
6141 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6142 L:      netdev@vger.kernel.org
6143 W:      http://www.linuxfoundation.org/en/Net:Bridge
6144 S:      Maintained
6145 F:      include/linux/netfilter_bridge/
6146 F:      net/bridge/
6147
6148 ETHERNET PHY LIBRARY
6149 M:      Andrew Lunn <andrew@lunn.ch>
6150 M:      Florian Fainelli <f.fainelli@gmail.com>
6151 M:      Heiner Kallweit <hkallweit1@gmail.com>
6152 L:      netdev@vger.kernel.org
6153 S:      Maintained
6154 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6155 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6156 F:      Documentation/devicetree/bindings/net/mdio*
6157 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6158 F:      Documentation/networking/phy.rst
6159 F:      drivers/net/phy/
6160 F:      drivers/of/of_mdio.c
6161 F:      drivers/of/of_net.c
6162 F:      include/dt-bindings/net/qca-ar803x.h
6163 F:      include/linux/*mdio*.h
6164 F:      include/linux/of_net.h
6165 F:      include/linux/phy.h
6166 F:      include/linux/phy_fixed.h
6167 F:      include/linux/platform_data/mdio-bcm-unimac.h
6168 F:      include/linux/platform_data/mdio-gpio.h
6169 F:      include/trace/events/mdio.h
6170 F:      include/uapi/linux/mdio.h
6171 F:      include/uapi/linux/mii.h
6172
6173 EXFAT FILE SYSTEM
6174 M:      Valdis Kletnieks <valdis.kletnieks@vt.edu>
6175 S:      Maintained
6176 F:      drivers/staging/exfat/
6177
6178 EXT2 FILE SYSTEM
6179 M:      Jan Kara <jack@suse.com>
6180 L:      linux-ext4@vger.kernel.org
6181 S:      Maintained
6182 F:      Documentation/filesystems/ext2.txt
6183 F:      fs/ext2/
6184 F:      include/linux/ext2*
6185
6186 EXT4 FILE SYSTEM
6187 M:      "Theodore Ts'o" <tytso@mit.edu>
6188 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6189 L:      linux-ext4@vger.kernel.org
6190 W:      http://ext4.wiki.kernel.org
6191 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6193 S:      Maintained
6194 F:      Documentation/filesystems/ext4/
6195 F:      fs/ext4/
6196
6197 Extended Verification Module (EVM)
6198 M:      Mimi Zohar <zohar@linux.ibm.com>
6199 L:      linux-integrity@vger.kernel.org
6200 S:      Supported
6201 F:      security/integrity/evm/
6202
6203 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6204 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
6205 L:      linux-efi@vger.kernel.org
6206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6207 S:      Maintained
6208 F:      Documentation/admin-guide/efi-stub.rst
6209 F:      arch/*/kernel/efi.c
6210 F:      arch/x86/boot/compressed/eboot.[ch]
6211 F:      arch/*/include/asm/efi.h
6212 F:      arch/x86/platform/efi/
6213 F:      drivers/firmware/efi/
6214 F:      include/linux/efi*.h
6215 F:      arch/arm/boot/compressed/efi-header.S
6216 F:      arch/arm64/kernel/efi-entry.S
6217
6218 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6219 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6220 M:      Chanwoo Choi <cw00.choi@samsung.com>
6221 L:      linux-kernel@vger.kernel.org
6222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6223 S:      Maintained
6224 F:      drivers/extcon/
6225 F:      include/linux/extcon/
6226 F:      include/linux/extcon.h
6227 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6228 F:      Documentation/devicetree/bindings/extcon/
6229
6230 EXYNOS DP DRIVER
6231 M:      Jingoo Han <jingoohan1@gmail.com>
6232 L:      dri-devel@lists.freedesktop.org
6233 S:      Maintained
6234 F:      drivers/gpu/drm/exynos/exynos_dp*
6235
6236 EXYNOS SYSMMU (IOMMU) driver
6237 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6238 L:      iommu@lists.linux-foundation.org
6239 S:      Maintained
6240 F:      drivers/iommu/exynos-iommu.c
6241
6242 EZchip NPS platform support
6243 M:      Vineet Gupta <vgupta@synopsys.com>
6244 M:      Ofer Levi <oferle@mellanox.com>
6245 S:      Supported
6246 F:      arch/arc/plat-eznps
6247 F:      arch/arc/boot/dts/eznps.dts
6248
6249 F2FS FILE SYSTEM
6250 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6251 M:      Chao Yu <yuchao0@huawei.com>
6252 L:      linux-f2fs-devel@lists.sourceforge.net
6253 W:      https://f2fs.wiki.kernel.org/
6254 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6255 S:      Maintained
6256 F:      Documentation/filesystems/f2fs.txt
6257 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6258 F:      fs/f2fs/
6259 F:      include/linux/f2fs_fs.h
6260 F:      include/trace/events/f2fs.h
6261
6262 F71805F HARDWARE MONITORING DRIVER
6263 M:      Jean Delvare <jdelvare@suse.com>
6264 L:      linux-hwmon@vger.kernel.org
6265 S:      Maintained
6266 F:      Documentation/hwmon/f71805f.rst
6267 F:      drivers/hwmon/f71805f.c
6268
6269 FADDR2LINE
6270 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6271 S:      Maintained
6272 F:      scripts/faddr2line
6273
6274 FAILOVER MODULE
6275 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
6276 L:      netdev@vger.kernel.org
6277 S:      Supported
6278 F:      net/core/failover.c
6279 F:      include/net/failover.h
6280 F:      Documentation/networking/failover.rst
6281
6282 FANOTIFY
6283 M:      Jan Kara <jack@suse.cz>
6284 R:      Amir Goldstein <amir73il@gmail.com>
6285 L:      linux-fsdevel@vger.kernel.org
6286 S:      Maintained
6287 F:      fs/notify/fanotify/
6288 F:      include/linux/fanotify.h
6289 F:      include/uapi/linux/fanotify.h
6290
6291 FARSYNC SYNCHRONOUS DRIVER
6292 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
6293 W:      http://www.farsite.co.uk/
6294 S:      Supported
6295 F:      drivers/net/wan/farsync.*
6296
6297 FAULT INJECTION SUPPORT
6298 M:      Akinobu Mita <akinobu.mita@gmail.com>
6299 S:      Supported
6300 F:      Documentation/fault-injection/
6301 F:      lib/fault-inject.c
6302
6303 FBTFT Framebuffer drivers
6304 S:      Orphan
6305 L:      dri-devel@lists.freedesktop.org
6306 L:      linux-fbdev@vger.kernel.org
6307 F:      drivers/staging/fbtft/
6308
6309 FC0011 TUNER DRIVER
6310 M:      Michael Buesch <m@bues.ch>
6311 L:      linux-media@vger.kernel.org
6312 S:      Maintained
6313 F:      drivers/media/tuners/fc0011.h
6314 F:      drivers/media/tuners/fc0011.c
6315
6316 FC2580 MEDIA DRIVER
6317 M:      Antti Palosaari <crope@iki.fi>
6318 L:      linux-media@vger.kernel.org
6319 W:      https://linuxtv.org
6320 W:      http://palosaari.fi/linux/
6321 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6322 T:      git git://linuxtv.org/anttip/media_tree.git
6323 S:      Maintained
6324 F:      drivers/media/tuners/fc2580*
6325
6326 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6327 M:      Hannes Reinecke <hare@suse.de>
6328 L:      linux-scsi@vger.kernel.org
6329 W:      www.Open-FCoE.org
6330 S:      Supported
6331 F:      drivers/scsi/libfc/
6332 F:      drivers/scsi/fcoe/
6333 F:      include/scsi/fc/
6334 F:      include/scsi/libfc.h
6335 F:      include/scsi/libfcoe.h
6336 F:      include/uapi/scsi/fc/
6337
6338 FILE LOCKING (flock() and fcntl()/lockf())
6339 M:      Jeff Layton <jlayton@kernel.org>
6340 M:      "J. Bruce Fields" <bfields@fieldses.org>
6341 L:      linux-fsdevel@vger.kernel.org
6342 S:      Maintained
6343 F:      include/linux/fcntl.h
6344 F:      include/uapi/linux/fcntl.h
6345 F:      fs/fcntl.c
6346 F:      fs/locks.c
6347
6348 FILESYSTEMS (VFS and infrastructure)
6349 M:      Alexander Viro <viro@zeniv.linux.org.uk>
6350 L:      linux-fsdevel@vger.kernel.org
6351 S:      Maintained
6352 F:      fs/*
6353 F:      include/linux/fs.h
6354 F:      include/linux/fs_types.h
6355 F:      include/uapi/linux/fs.h
6356
6357 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6358 M:      Riku Voipio <riku.voipio@iki.fi>
6359 L:      linux-hwmon@vger.kernel.org
6360 S:      Maintained
6361 F:      drivers/hwmon/f75375s.c
6362 F:      include/linux/f75375s.h
6363
6364 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6365 M:      Clemens Ladisch <clemens@ladisch.de>
6366 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
6367 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6369 S:      Maintained
6370 F:      sound/firewire/
6371 F:      include/uapi/sound/firewire.h
6372
6373 FIREWIRE MEDIA DRIVERS (firedtv)
6374 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6375 L:      linux-media@vger.kernel.org
6376 L:      linux1394-devel@lists.sourceforge.net
6377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6378 S:      Maintained
6379 F:      drivers/media/firewire/
6380
6381 FIREWIRE SBP-2 TARGET
6382 M:      Chris Boot <bootc@bootc.net>
6383 L:      linux-scsi@vger.kernel.org
6384 L:      target-devel@vger.kernel.org
6385 L:      linux1394-devel@lists.sourceforge.net
6386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6387 S:      Maintained
6388 F:      drivers/target/sbp/
6389
6390 FIREWIRE SUBSYSTEM
6391 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6392 L:      linux1394-devel@lists.sourceforge.net
6393 W:      http://ieee1394.wiki.kernel.org/
6394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6395 S:      Maintained
6396 F:      drivers/firewire/
6397 F:      include/linux/firewire.h
6398 F:      include/uapi/linux/firewire*.h
6399 F:      tools/firewire/
6400
6401 FIRMWARE LOADER (request_firmware)
6402 M:      Luis Chamberlain <mcgrof@kernel.org>
6403 L:      linux-kernel@vger.kernel.org
6404 S:      Maintained
6405 F:      Documentation/firmware_class/
6406 F:      drivers/base/firmware_loader/
6407 F:      include/linux/firmware.h
6408
6409 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6410 M:      Joshua Morris <josh.h.morris@us.ibm.com>
6411 M:      Philip Kelleher <pjk1939@linux.ibm.com>
6412 S:      Maintained
6413 F:      drivers/block/rsxx/
6414
6415 FLEXTIMER FTM-QUADDEC DRIVER
6416 M:      Patrick Havelange <patrick.havelange@essensium.com>
6417 L:      linux-iio@vger.kernel.org
6418 S:      Maintained
6419 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6420 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6421 F:      drivers/counter/ftm-quaddec.c
6422
6423 FLOPPY DRIVER
6424 M:      Denis Efremov <efremov@linux.com>
6425 S:      Odd Fixes
6426 L:      linux-block@vger.kernel.org
6427 F:      drivers/block/floppy.c
6428
6429 FPGA MANAGER FRAMEWORK
6430 M:      Moritz Fischer <mdf@kernel.org>
6431 L:      linux-fpga@vger.kernel.org
6432 S:      Maintained
6433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6434 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6435 F:      Documentation/fpga/
6436 F:      Documentation/driver-api/fpga/
6437 F:      Documentation/devicetree/bindings/fpga/
6438 F:      drivers/fpga/
6439 F:      include/linux/fpga/
6440 W:      http://www.rocketboards.org
6441
6442 FPGA DFL DRIVERS
6443 M:      Wu Hao <hao.wu@intel.com>
6444 L:      linux-fpga@vger.kernel.org
6445 S:      Maintained
6446 F:      Documentation/fpga/dfl.rst
6447 F:      include/uapi/linux/fpga-dfl.h
6448 F:      drivers/fpga/dfl*
6449
6450 FPU EMULATOR
6451 M:      Bill Metzenthen <billm@melbpc.org.au>
6452 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6453 S:      Maintained
6454 F:      arch/x86/math-emu/
6455
6456 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
6457 L:      netdev@vger.kernel.org
6458 S:      Orphan
6459 F:      drivers/net/wan/dlci.c
6460 F:      drivers/net/wan/sdla.c
6461
6462 FRAMEBUFFER LAYER
6463 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6464 L:      dri-devel@lists.freedesktop.org
6465 L:      linux-fbdev@vger.kernel.org
6466 T:      git git://anongit.freedesktop.org/drm/drm-misc
6467 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6468 S:      Maintained
6469 F:      Documentation/fb/
6470 F:      drivers/video/
6471 F:      include/video/
6472 F:      include/linux/fb.h
6473 F:      include/uapi/video/
6474 F:      include/uapi/linux/fb.h
6475
6476 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6477 M:      Horia Geantă <horia.geanta@nxp.com>
6478 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
6479 L:      linux-crypto@vger.kernel.org
6480 S:      Maintained
6481 F:      drivers/crypto/caam/
6482 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6483
6484 FREESCALE DIU FRAMEBUFFER DRIVER
6485 M:      Timur Tabi <timur@kernel.org>
6486 L:      linux-fbdev@vger.kernel.org
6487 S:      Maintained
6488 F:      drivers/video/fbdev/fsl-diu-fb.*
6489
6490 FREESCALE DMA DRIVER
6491 M:      Li Yang <leoyang.li@nxp.com>
6492 M:      Zhang Wei <zw@zh-kernel.org>
6493 L:      linuxppc-dev@lists.ozlabs.org
6494 S:      Maintained
6495 F:      drivers/dma/fsldma.*
6496
6497 FREESCALE ENETC ETHERNET DRIVERS
6498 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6499 L:      netdev@vger.kernel.org
6500 S:      Maintained
6501 F:      drivers/net/ethernet/freescale/enetc/
6502
6503 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6504 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6505 L:      netdev@vger.kernel.org
6506 S:      Maintained
6507 F:      drivers/net/ethernet/freescale/gianfar*
6508 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6509
6510 FREESCALE GPMI NAND DRIVER
6511 M:      Han Xu <han.xu@nxp.com>
6512 L:      linux-mtd@lists.infradead.org
6513 S:      Maintained
6514 F:      drivers/mtd/nand/raw/gpmi-nand/*
6515
6516 FREESCALE I2C CPM DRIVER
6517 M:      Jochen Friedrich <jochen@scram.de>
6518 L:      linuxppc-dev@lists.ozlabs.org
6519 L:      linux-i2c@vger.kernel.org
6520 S:      Maintained
6521 F:      drivers/i2c/busses/i2c-cpm.c
6522
6523 FREESCALE IMX DDR PMU DRIVER
6524 M:      Frank Li <Frank.li@nxp.com>
6525 L:      linux-arm-kernel@lists.infradead.org
6526 S:      Maintained
6527 F:      drivers/perf/fsl_imx8_ddr_perf.c
6528 F:      Documentation/admin-guide/perf/imx-ddr.rst
6529 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.txt
6530
6531 FREESCALE IMX I2C DRIVER
6532 M:      Oleksij Rempel <o.rempel@pengutronix.de>
6533 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6534 L:      linux-i2c@vger.kernel.org
6535 S:      Maintained
6536 F:      drivers/i2c/busses/i2c-imx.c
6537 F:      Documentation/devicetree/bindings/i2c/i2c-imx.txt
6538
6539 FREESCALE IMX LPI2C DRIVER
6540 M:      Dong Aisheng <aisheng.dong@nxp.com>
6541 L:      linux-i2c@vger.kernel.org
6542 L:      linux-imx@nxp.com
6543 S:      Maintained
6544 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
6545 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.txt
6546
6547 FREESCALE IMX / MXC FEC DRIVER
6548 M:      Fugang Duan <fugang.duan@nxp.com>
6549 L:      netdev@vger.kernel.org
6550 S:      Maintained
6551 F:      drivers/net/ethernet/freescale/fec_main.c
6552 F:      drivers/net/ethernet/freescale/fec_ptp.c
6553 F:      drivers/net/ethernet/freescale/fec.h
6554 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
6555
6556 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
6557 M:      Sascha Hauer <s.hauer@pengutronix.de>
6558 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6559 L:      linux-fbdev@vger.kernel.org
6560 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6561 S:      Maintained
6562 F:      include/linux/platform_data/video-imxfb.h
6563 F:      drivers/video/fbdev/imxfb.c
6564
6565 FREESCALE QORIQ DPAA ETHERNET DRIVER
6566 M:      Madalin Bucur <madalin.bucur@nxp.com>
6567 L:      netdev@vger.kernel.org
6568 S:      Maintained
6569 F:      drivers/net/ethernet/freescale/dpaa
6570
6571 FREESCALE QORIQ DPAA FMAN DRIVER
6572 M:      Madalin Bucur <madalin.bucur@nxp.com>
6573 L:      netdev@vger.kernel.org
6574 S:      Maintained
6575 F:      drivers/net/ethernet/freescale/fman
6576 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
6577
6578 FREESCALE QORIQ PTP CLOCK DRIVER
6579 M:      Yangbo Lu <yangbo.lu@nxp.com>
6580 L:      netdev@vger.kernel.org
6581 S:      Maintained
6582 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
6583 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
6584 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
6585 F:      drivers/ptp/ptp_qoriq.c
6586 F:      drivers/ptp/ptp_qoriq_debugfs.c
6587 F:      include/linux/fsl/ptp_qoriq.h
6588 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
6589
6590 FREESCALE QUAD SPI DRIVER
6591 M:      Han Xu <han.xu@nxp.com>
6592 L:      linux-spi@vger.kernel.org
6593 S:      Maintained
6594 F:      drivers/spi/spi-fsl-qspi.c
6595
6596 FREESCALE QUICC ENGINE LIBRARY
6597 M:      Qiang Zhao <qiang.zhao@nxp.com>
6598 L:      linuxppc-dev@lists.ozlabs.org
6599 S:      Maintained
6600 F:      drivers/soc/fsl/qe/
6601 F:      include/soc/fsl/*qe*.h
6602 F:      include/soc/fsl/*ucc*.h
6603
6604 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
6605 M:      Li Yang <leoyang.li@nxp.com>
6606 L:      netdev@vger.kernel.org
6607 L:      linuxppc-dev@lists.ozlabs.org
6608 S:      Maintained
6609 F:      drivers/net/ethernet/freescale/ucc_geth*
6610
6611 FREESCALE QUICC ENGINE UCC HDLC DRIVER
6612 M:      Zhao Qiang <qiang.zhao@nxp.com>
6613 L:      netdev@vger.kernel.org
6614 L:      linuxppc-dev@lists.ozlabs.org
6615 S:      Maintained
6616 F:      drivers/net/wan/fsl_ucc_hdlc*
6617
6618 FREESCALE QUICC ENGINE UCC UART DRIVER
6619 M:      Timur Tabi <timur@kernel.org>
6620 L:      linuxppc-dev@lists.ozlabs.org
6621 S:      Maintained
6622 F:      drivers/tty/serial/ucc_uart.c
6623
6624 FREESCALE SOC DRIVERS
6625 M:      Li Yang <leoyang.li@nxp.com>
6626 L:      linuxppc-dev@lists.ozlabs.org
6627 L:      linux-arm-kernel@lists.infradead.org
6628 S:      Maintained
6629 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
6630 F:      Documentation/devicetree/bindings/soc/fsl/
6631 F:      drivers/soc/fsl/
6632 F:      include/linux/fsl/
6633
6634 FREESCALE SOC FS_ENET DRIVER
6635 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
6636 L:      linuxppc-dev@lists.ozlabs.org
6637 L:      netdev@vger.kernel.org
6638 S:      Maintained
6639 F:      drivers/net/ethernet/freescale/fs_enet/
6640 F:      include/linux/fs_enet_pd.h
6641
6642 FREESCALE SOC SOUND DRIVERS
6643 M:      Timur Tabi <timur@kernel.org>
6644 M:      Nicolin Chen <nicoleotsuka@gmail.com>
6645 M:      Xiubo Li <Xiubo.Lee@gmail.com>
6646 R:      Fabio Estevam <festevam@gmail.com>
6647 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6648 L:      linuxppc-dev@lists.ozlabs.org
6649 S:      Maintained
6650 F:      sound/soc/fsl/fsl*
6651 F:      sound/soc/fsl/imx*
6652 F:      sound/soc/fsl/mpc8610_hpcd.c
6653
6654 FREESCALE USB PERIPHERAL DRIVERS
6655 M:      Li Yang <leoyang.li@nxp.com>
6656 L:      linux-usb@vger.kernel.org
6657 L:      linuxppc-dev@lists.ozlabs.org
6658 S:      Maintained
6659 F:      drivers/usb/gadget/udc/fsl*
6660
6661 FREEVXFS FILESYSTEM
6662 M:      Christoph Hellwig <hch@infradead.org>
6663 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
6664 S:      Maintained
6665 F:      fs/freevxfs/
6666
6667 FREEZER
6668 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
6669 M:      Pavel Machek <pavel@ucw.cz>
6670 L:      linux-pm@vger.kernel.org
6671 S:      Supported
6672 F:      Documentation/power/freezing-of-tasks.rst
6673 F:      include/linux/freezer.h
6674 F:      kernel/freezer.c
6675
6676 FRONTSWAP API
6677 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
6678 L:      linux-kernel@vger.kernel.org
6679 S:      Maintained
6680 F:      mm/frontswap.c
6681 F:      include/linux/frontswap.h
6682
6683 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
6684 M:      David Howells <dhowells@redhat.com>
6685 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
6686 S:      Supported
6687 F:      Documentation/filesystems/caching/
6688 F:      fs/fscache/
6689 F:      include/linux/fscache*.h
6690
6691 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
6692 M:      Theodore Y. Ts'o <tytso@mit.edu>
6693 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6694 M:      Eric Biggers <ebiggers@kernel.org>
6695 L:      linux-fscrypt@vger.kernel.org
6696 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
6697 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
6698 S:      Supported
6699 F:      fs/crypto/
6700 F:      include/linux/fscrypt*.h
6701 F:      include/uapi/linux/fscrypt.h
6702 F:      Documentation/filesystems/fscrypt.rst
6703
6704 FSI SUBSYSTEM
6705 M:      Jeremy Kerr <jk@ozlabs.org>
6706 M:      Joel Stanley <joel@jms.id.au>
6707 R:      Alistar Popple <alistair@popple.id.au>
6708 R:      Eddie James <eajames@linux.ibm.com>
6709 L:      linux-fsi@lists.ozlabs.org
6710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
6711 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
6712 S:      Supported
6713 F:      drivers/fsi/
6714 F:      include/linux/fsi*.h
6715 F:      include/trace/events/fsi*.h
6716
6717 FSI-ATTACHED I2C DRIVER
6718 M:      Eddie James <eajames@linux.ibm.com>
6719 L:      linux-i2c@vger.kernel.org
6720 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
6721 S:      Maintained
6722 F:      drivers/i2c/busses/i2c-fsi.c
6723 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
6724
6725 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
6726 M:      Jan Kara <jack@suse.cz>
6727 R:      Amir Goldstein <amir73il@gmail.com>
6728 L:      linux-fsdevel@vger.kernel.org
6729 S:      Maintained
6730 F:      fs/notify/
6731 F:      include/linux/fsnotify*.h
6732
6733 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
6734 M:      Eric Biggers <ebiggers@kernel.org>
6735 M:      Theodore Y. Ts'o <tytso@mit.edu>
6736 L:      linux-fscrypt@vger.kernel.org
6737 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
6738 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
6739 S:      Supported
6740 F:      fs/verity/
6741 F:      include/linux/fsverity.h
6742 F:      include/uapi/linux/fsverity.h
6743 F:      Documentation/filesystems/fsverity.rst
6744
6745 FUJITSU LAPTOP EXTRAS
6746 M:      Jonathan Woithe <jwoithe@just42.net>
6747 L:      platform-driver-x86@vger.kernel.org
6748 S:      Maintained
6749 F:      drivers/platform/x86/fujitsu-laptop.c
6750
6751 FUJITSU M-5MO LS CAMERA ISP DRIVER
6752 M:      Kyungmin Park <kyungmin.park@samsung.com>
6753 M:      Heungjun Kim <riverful.kim@samsung.com>
6754 L:      linux-media@vger.kernel.org
6755 S:      Maintained
6756 F:      drivers/media/i2c/m5mols/
6757 F:      include/media/i2c/m5mols.h
6758
6759 FUJITSU TABLET EXTRAS
6760 M:      Robert Gerlach <khnz@gmx.de>
6761 L:      platform-driver-x86@vger.kernel.org
6762 S:      Maintained
6763 F:      drivers/platform/x86/fujitsu-tablet.c
6764
6765 FUSE: FILESYSTEM IN USERSPACE
6766 M:      Miklos Szeredi <miklos@szeredi.hu>
6767 L:      linux-fsdevel@vger.kernel.org
6768 W:      http://fuse.sourceforge.net/
6769 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
6770 S:      Maintained
6771 F:      fs/fuse/
6772 F:      include/uapi/linux/fuse.h
6773 F:      Documentation/filesystems/fuse.txt
6774
6775 FUTEX SUBSYSTEM
6776 M:      Thomas Gleixner <tglx@linutronix.de>
6777 M:      Ingo Molnar <mingo@redhat.com>
6778 R:      Peter Zijlstra <peterz@infradead.org>
6779 R:      Darren Hart <dvhart@infradead.org>
6780 L:      linux-kernel@vger.kernel.org
6781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
6782 S:      Maintained
6783 F:      kernel/futex.c
6784 F:      include/asm-generic/futex.h
6785 F:      include/linux/futex.h
6786 F:      include/uapi/linux/futex.h
6787 F:      tools/testing/selftests/futex/
6788 F:      tools/perf/bench/futex*
6789 F:      Documentation/*futex*
6790
6791 GCC PLUGINS
6792 M:      Kees Cook <keescook@chromium.org>
6793 R:      Emese Revfy <re.emese@gmail.com>
6794 L:      kernel-hardening@lists.openwall.com
6795 S:      Maintained
6796 F:      scripts/gcc-plugins/
6797 F:      scripts/gcc-plugin.sh
6798 F:      scripts/Makefile.gcc-plugins
6799 F:      Documentation/core-api/gcc-plugins.rst
6800
6801 GASKET DRIVER FRAMEWORK
6802 M:      Rob Springer <rspringer@google.com>
6803 M:      Todd Poynor <toddpoynor@google.com>
6804 M:      Ben Chan <benchan@chromium.org>
6805 S:      Maintained
6806 F:      drivers/staging/gasket/
6807
6808 GCOV BASED KERNEL PROFILING
6809 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
6810 S:      Maintained
6811 F:      kernel/gcov/
6812 F:      Documentation/dev-tools/gcov.rst
6813
6814 GDB KERNEL DEBUGGING HELPER SCRIPTS
6815 M:      Jan Kiszka <jan.kiszka@siemens.com>
6816 M:      Kieran Bingham <kbingham@kernel.org>
6817 S:      Supported
6818 F:      scripts/gdb/
6819
6820 GDT SCSI DISK ARRAY CONTROLLER DRIVER
6821 M:      Achim Leubner <achim_leubner@adaptec.com>
6822 L:      linux-scsi@vger.kernel.org
6823 W:      http://www.icp-vortex.com/
6824 S:      Supported
6825 F:      drivers/scsi/gdt*
6826
6827 GEMTEK FM RADIO RECEIVER DRIVER
6828 M:      Hans Verkuil <hverkuil@xs4all.nl>
6829 L:      linux-media@vger.kernel.org
6830 T:      git git://linuxtv.org/media_tree.git
6831 W:      https://linuxtv.org
6832 S:      Maintained
6833 F:      drivers/media/radio/radio-gemtek*
6834
6835 GENERIC ARCHITECTURE TOPOLOGY
6836 M:      Sudeep Holla <sudeep.holla@arm.com>
6837 L:      linux-kernel@vger.kernel.org
6838 S:      Maintained
6839 F:      drivers/base/arch_topology.c
6840 F:      include/linux/arch_topology.h
6841
6842 GENERIC GPIO I2C DRIVER
6843 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
6844 S:      Supported
6845 F:      drivers/i2c/busses/i2c-gpio.c
6846 F:      include/linux/platform_data/i2c-gpio.h
6847
6848 GENERIC GPIO I2C MULTIPLEXER DRIVER
6849 M:      Peter Korsgaard <peter.korsgaard@barco.com>
6850 L:      linux-i2c@vger.kernel.org
6851 S:      Supported
6852 F:      drivers/i2c/muxes/i2c-mux-gpio.c
6853 F:      include/linux/platform_data/i2c-mux-gpio.h
6854 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
6855
6856 GENERIC HDLC (WAN) DRIVERS
6857 M:      Krzysztof Halasa <khc@pm.waw.pl>
6858 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
6859 S:      Maintained
6860 F:      drivers/net/wan/c101.c
6861 F:      drivers/net/wan/hd6457*
6862 F:      drivers/net/wan/hdlc*
6863 F:      drivers/net/wan/n2.c
6864 F:      drivers/net/wan/pc300too.c
6865 F:      drivers/net/wan/pci200syn.c
6866 F:      drivers/net/wan/wanxl*
6867
6868 GENERIC INCLUDE/ASM HEADER FILES
6869 M:      Arnd Bergmann <arnd@arndb.de>
6870 L:      linux-arch@vger.kernel.org
6871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
6872 S:      Maintained
6873 F:      include/asm-generic/
6874 F:      include/uapi/asm-generic/
6875
6876 GENERIC PHY FRAMEWORK
6877 M:      Kishon Vijay Abraham I <kishon@ti.com>
6878 L:      linux-kernel@vger.kernel.org
6879 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
6880 S:      Supported
6881 F:      drivers/phy/
6882 F:      include/linux/phy/
6883 F:      Documentation/devicetree/bindings/phy/
6884
6885 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
6886 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
6887 S:      Supported
6888 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
6889
6890 GENERIC PM DOMAINS
6891 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
6892 M:      Kevin Hilman <khilman@kernel.org>
6893 M:      Ulf Hansson <ulf.hansson@linaro.org>
6894 L:      linux-pm@vger.kernel.org
6895 S:      Supported
6896 F:      drivers/base/power/domain*.c
6897 F:      include/linux/pm_domain.h
6898 F:      Documentation/devicetree/bindings/power/power_domain.txt
6899
6900 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
6901 M:      Eugen Hristev <eugen.hristev@microchip.com>
6902 L:      linux-input@vger.kernel.org
6903 S:      Maintained
6904 F:      drivers/input/touchscreen/resistive-adc-touch.c
6905
6906 GENERIC UIO DRIVER FOR PCI DEVICES
6907 M:      "Michael S. Tsirkin" <mst@redhat.com>
6908 L:      kvm@vger.kernel.org
6909 S:      Supported
6910 F:      drivers/uio/uio_pci_generic.c
6911
6912 GENERIC VDSO LIBRARY:
6913 M:      Andy Lutomirski <luto@kernel.org>
6914 M:      Thomas Gleixner <tglx@linutronix.de>
6915 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
6916 L:      linux-kernel@vger.kernel.org
6917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
6918 S:      Maintained
6919 F:      lib/vdso/
6920 F:      kernel/time/vsyscall.c
6921 F:      include/vdso/
6922 F:      include/asm-generic/vdso/vsyscall.h
6923
6924 GENWQE (IBM Generic Workqueue Card)
6925 M:      Frank Haverkamp <haver@linux.ibm.com>
6926 S:      Supported
6927 F:      drivers/misc/genwqe/
6928
6929 GET_MAINTAINER SCRIPT
6930 M:      Joe Perches <joe@perches.com>
6931 S:      Maintained
6932 F:      scripts/get_maintainer.pl
6933
6934 GFS2 FILE SYSTEM
6935 M:      Bob Peterson <rpeterso@redhat.com>
6936 M:      Andreas Gruenbacher <agruenba@redhat.com>
6937 L:      cluster-devel@redhat.com
6938 W:      http://sources.redhat.com/cluster/
6939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
6940 S:      Supported
6941 F:      Documentation/filesystems/gfs2*.txt
6942 F:      fs/gfs2/
6943 F:      include/uapi/linux/gfs2_ondisk.h
6944
6945 GNSS SUBSYSTEM
6946 M:      Johan Hovold <johan@kernel.org>
6947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
6948 S:      Maintained
6949 F:      Documentation/ABI/testing/sysfs-class-gnss
6950 F:      Documentation/devicetree/bindings/gnss/
6951 F:      drivers/gnss/
6952 F:      include/linux/gnss.h
6953
6954 GO7007 MPEG CODEC
6955 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
6956 L:      linux-media@vger.kernel.org
6957 S:      Maintained
6958 F:      drivers/media/usb/go7007/
6959
6960 GOODIX TOUCHSCREEN
6961 M:      Bastien Nocera <hadess@hadess.net>
6962 L:      linux-input@vger.kernel.org
6963 S:      Maintained
6964 F:      drivers/input/touchscreen/goodix.c
6965
6966 GOOGLE ETHERNET DRIVERS
6967 M:      Catherine Sullivan <csully@google.com>
6968 R:      Sagi Shahar <sagis@google.com>
6969 R:      Jon Olson <jonolson@google.com>
6970 L:      netdev@vger.kernel.org
6971 S:      Supported
6972 F:      Documentation/networking/device_drivers/google/gve.rst
6973 F:      drivers/net/ethernet/google
6974
6975 GPD POCKET FAN DRIVER
6976 M:      Hans de Goede <hdegoede@redhat.com>
6977 L:      platform-driver-x86@vger.kernel.org
6978 S:      Maintained
6979 F:      drivers/platform/x86/gpd-pocket-fan.c
6980
6981 GPIO ACPI SUPPORT
6982 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
6983 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
6984 L:      linux-gpio@vger.kernel.org
6985 L:      linux-acpi@vger.kernel.org
6986 S:      Maintained
6987 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
6988 F:      drivers/gpio/gpiolib-acpi.c
6989
6990 GPIO IR Transmitter
6991 M:      Sean Young <sean@mess.org>
6992 L:      linux-media@vger.kernel.org
6993 S:      Maintained
6994 F:      drivers/media/rc/gpio-ir-tx.c
6995
6996 GPIO MOCKUP DRIVER
6997 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
6998 L:      linux-gpio@vger.kernel.org
6999 S:      Maintained
7000 F:      drivers/gpio/gpio-mockup.c
7001 F:      tools/testing/selftests/gpio/
7002
7003 GPIO SUBSYSTEM
7004 M:      Linus Walleij <linus.walleij@linaro.org>
7005 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7006 L:      linux-gpio@vger.kernel.org
7007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7008 S:      Maintained
7009 F:      Documentation/devicetree/bindings/gpio/
7010 F:      Documentation/driver-api/gpio/
7011 F:      Documentation/admin-guide/gpio/
7012 F:      Documentation/ABI/testing/gpio-cdev
7013 F:      Documentation/ABI/obsolete/sysfs-gpio
7014 F:      drivers/gpio/
7015 F:      include/linux/gpio/
7016 F:      include/linux/gpio.h
7017 F:      include/linux/of_gpio.h
7018 F:      include/asm-generic/gpio.h
7019 F:      include/uapi/linux/gpio.h
7020 F:      tools/gpio/
7021
7022 GRE DEMULTIPLEXER DRIVER
7023 M:      Dmitry Kozlov <xeb@mail.ru>
7024 L:      netdev@vger.kernel.org
7025 S:      Maintained
7026 F:      net/ipv4/gre_demux.c
7027 F:      net/ipv4/gre_offload.c
7028 F:      include/net/gre.h
7029
7030 GRETH 10/100/1G Ethernet MAC device driver
7031 M:      Andreas Larsson <andreas@gaisler.com>
7032 L:      netdev@vger.kernel.org
7033 S:      Maintained
7034 F:      drivers/net/ethernet/aeroflex/
7035
7036 GREYBUS AUDIO PROTOCOLS DRIVERS
7037 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7038 M:      Mark Greer <mgreer@animalcreek.com>
7039 S:      Maintained
7040 F:      drivers/staging/greybus/audio_apbridgea.c
7041 F:      drivers/staging/greybus/audio_apbridgea.h
7042 F:      drivers/staging/greybus/audio_codec.c
7043 F:      drivers/staging/greybus/audio_codec.h
7044 F:      drivers/staging/greybus/audio_gb.c
7045 F:      drivers/staging/greybus/audio_manager.c
7046 F:      drivers/staging/greybus/audio_manager.h
7047 F:      drivers/staging/greybus/audio_manager_module.c
7048 F:      drivers/staging/greybus/audio_manager_private.h
7049 F:      drivers/staging/greybus/audio_manager_sysfs.c
7050 F:      drivers/staging/greybus/audio_module.c
7051 F:      drivers/staging/greybus/audio_topology.c
7052
7053 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7054 M:      Viresh Kumar <vireshk@kernel.org>
7055 S:      Maintained
7056 F:      drivers/staging/greybus/authentication.c
7057 F:      drivers/staging/greybus/bootrom.c
7058 F:      drivers/staging/greybus/firmware.h
7059 F:      drivers/staging/greybus/fw-core.c
7060 F:      drivers/staging/greybus/fw-download.c
7061 F:      drivers/staging/greybus/fw-management.c
7062 F:      drivers/staging/greybus/greybus_authentication.h
7063 F:      drivers/staging/greybus/greybus_firmware.h
7064 F:      drivers/staging/greybus/hid.c
7065 F:      drivers/staging/greybus/i2c.c
7066 F:      drivers/staging/greybus/spi.c
7067 F:      drivers/staging/greybus/spilib.c
7068 F:      drivers/staging/greybus/spilib.h
7069
7070 GREYBUS LOOPBACK DRIVER
7071 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7072 S:      Maintained
7073 F:      drivers/staging/greybus/loopback.c
7074
7075 GREYBUS PLATFORM DRIVERS
7076 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7077 S:      Maintained
7078 F:      drivers/staging/greybus/arche-platform.c
7079 F:      drivers/staging/greybus/arche-apb-ctrl.c
7080 F:      drivers/staging/greybus/arche_platform.h
7081
7082 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7083 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7084 S:      Maintained
7085 F:      drivers/staging/greybus/sdio.c
7086 F:      drivers/staging/greybus/light.c
7087 F:      drivers/staging/greybus/gpio.c
7088 F:      drivers/staging/greybus/power_supply.c
7089 F:      drivers/staging/greybus/spi.c
7090 F:      drivers/staging/greybus/spilib.c
7091
7092 GREYBUS SUBSYSTEM
7093 M:      Johan Hovold <johan@kernel.org>
7094 M:      Alex Elder <elder@kernel.org>
7095 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7096 S:      Maintained
7097 F:      drivers/staging/greybus/
7098 F:      drivers/greybus/
7099 F:      include/linux/greybus.h
7100 F:      include/linux/greybus/
7101 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7102
7103 GREYBUS UART PROTOCOLS DRIVERS
7104 M:      David Lin <dtwlin@gmail.com>
7105 S:      Maintained
7106 F:      drivers/staging/greybus/uart.c
7107 F:      drivers/staging/greybus/log.c
7108
7109 GS1662 VIDEO SERIALIZER
7110 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7111 L:      linux-media@vger.kernel.org
7112 T:      git git://linuxtv.org/media_tree.git
7113 S:      Maintained
7114 F:      drivers/media/spi/gs1662.c
7115
7116 GSPCA FINEPIX SUBDRIVER
7117 M:      Frank Zago <frank@zago.net>
7118 L:      linux-media@vger.kernel.org
7119 T:      git git://linuxtv.org/media_tree.git
7120 S:      Maintained
7121 F:      drivers/media/usb/gspca/finepix.c
7122
7123 GSPCA GL860 SUBDRIVER
7124 M:      Olivier Lorin <o.lorin@laposte.net>
7125 L:      linux-media@vger.kernel.org
7126 T:      git git://linuxtv.org/media_tree.git
7127 S:      Maintained
7128 F:      drivers/media/usb/gspca/gl860/
7129
7130 GSPCA M5602 SUBDRIVER
7131 M:      Erik Andren <erik.andren@gmail.com>
7132 L:      linux-media@vger.kernel.org
7133 T:      git git://linuxtv.org/media_tree.git
7134 S:      Maintained
7135 F:      drivers/media/usb/gspca/m5602/
7136
7137 GSPCA PAC207 SONIXB SUBDRIVER
7138 M:      Hans Verkuil <hverkuil@xs4all.nl>
7139 L:      linux-media@vger.kernel.org
7140 T:      git git://linuxtv.org/media_tree.git
7141 S:      Odd Fixes
7142 F:      drivers/media/usb/gspca/pac207.c
7143
7144 GSPCA SN9C20X SUBDRIVER
7145 M:      Brian Johnson <brijohn@gmail.com>
7146 L:      linux-media@vger.kernel.org
7147 T:      git git://linuxtv.org/media_tree.git
7148 S:      Maintained
7149 F:      drivers/media/usb/gspca/sn9c20x.c
7150
7151 GSPCA T613 SUBDRIVER
7152 M:      Leandro Costantino <lcostantino@gmail.com>
7153 L:      linux-media@vger.kernel.org
7154 T:      git git://linuxtv.org/media_tree.git
7155 S:      Maintained
7156 F:      drivers/media/usb/gspca/t613.c
7157
7158 GSPCA USB WEBCAM DRIVER
7159 M:      Hans Verkuil <hverkuil@xs4all.nl>
7160 L:      linux-media@vger.kernel.org
7161 T:      git git://linuxtv.org/media_tree.git
7162 S:      Odd Fixes
7163 F:      drivers/media/usb/gspca/
7164
7165 GTP (GPRS Tunneling Protocol)
7166 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7167 M:      Harald Welte <laforge@gnumonks.org>
7168 L:      osmocom-net-gprs@lists.osmocom.org
7169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7170 S:      Maintained
7171 F:      drivers/net/gtp.c
7172
7173 GUID PARTITION TABLE (GPT)
7174 M:      Davidlohr Bueso <dave@stgolabs.net>
7175 L:      linux-efi@vger.kernel.org
7176 S:      Maintained
7177 F:      block/partitions/efi.*
7178
7179 H8/300 ARCHITECTURE
7180 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
7181 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7182 W:      http://uclinux-h8.sourceforge.jp
7183 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7184 S:      Maintained
7185 F:      arch/h8300/
7186 F:      drivers/clocksource/h8300_*.c
7187 F:      drivers/clk/h8300/
7188 F:      drivers/irqchip/irq-renesas-h8*.c
7189
7190 HABANALABS PCI DRIVER
7191 M:      Oded Gabbay <oded.gabbay@gmail.com>
7192 T:      git https://github.com/HabanaAI/linux.git
7193 S:      Supported
7194 F:      drivers/misc/habanalabs/
7195 F:      include/uapi/misc/habanalabs.h
7196 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7197 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7198
7199 HACKRF MEDIA DRIVER
7200 M:      Antti Palosaari <crope@iki.fi>
7201 L:      linux-media@vger.kernel.org
7202 W:      https://linuxtv.org
7203 W:      http://palosaari.fi/linux/
7204 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7205 T:      git git://linuxtv.org/anttip/media_tree.git
7206 S:      Maintained
7207 F:      drivers/media/usb/hackrf/
7208
7209 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7210 M:      Frank Seidel <frank@f-seidel.de>
7211 L:      platform-driver-x86@vger.kernel.org
7212 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7213 S:      Maintained
7214 F:      drivers/platform/x86/hdaps.c
7215
7216 HARDWARE MONITORING
7217 M:      Jean Delvare <jdelvare@suse.com>
7218 M:      Guenter Roeck <linux@roeck-us.net>
7219 L:      linux-hwmon@vger.kernel.org
7220 W:      http://hwmon.wiki.kernel.org/
7221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7222 S:      Maintained
7223 F:      Documentation/devicetree/bindings/hwmon/
7224 F:      Documentation/hwmon/
7225 F:      drivers/hwmon/
7226 F:      include/linux/hwmon*.h
7227 F:      include/trace/events/hwmon*.h
7228
7229 HARDWARE RANDOM NUMBER GENERATOR CORE
7230 M:      Matt Mackall <mpm@selenic.com>
7231 M:      Herbert Xu <herbert@gondor.apana.org.au>
7232 L:      linux-crypto@vger.kernel.org
7233 S:      Odd fixes
7234 F:      Documentation/devicetree/bindings/rng/
7235 F:      Documentation/admin-guide/hw_random.rst
7236 F:      drivers/char/hw_random/
7237 F:      include/linux/hw_random.h
7238
7239 HARDWARE TRACING FACILITIES
7240 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7241 S:      Maintained
7242 F:      drivers/hwtracing/
7243
7244 HARDWARE SPINLOCK CORE
7245 M:      Ohad Ben-Cohen <ohad@wizery.com>
7246 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
7247 L:      linux-remoteproc@vger.kernel.org
7248 S:      Maintained
7249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
7250 F:      Documentation/devicetree/bindings/hwlock/
7251 F:      Documentation/hwspinlock.txt
7252 F:      drivers/hwspinlock/
7253 F:      include/linux/hwspinlock.h
7254
7255 HARMONY SOUND DRIVER
7256 L:      linux-parisc@vger.kernel.org
7257 S:      Maintained
7258 F:      sound/parisc/harmony.*
7259
7260 HDPVR USB VIDEO ENCODER DRIVER
7261 M:      Hans Verkuil <hverkuil@xs4all.nl>
7262 L:      linux-media@vger.kernel.org
7263 T:      git git://linuxtv.org/media_tree.git
7264 W:      https://linuxtv.org
7265 S:      Odd Fixes
7266 F:      drivers/media/usb/hdpvr/
7267
7268 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7269 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
7270 S:      Supported
7271 F:      Documentation/watchdog/hpwdt.rst
7272 F:      drivers/watchdog/hpwdt.c
7273
7274 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7275 M:      Don Brace <don.brace@microsemi.com>
7276 L:      esc.storagedev@microsemi.com
7277 L:      linux-scsi@vger.kernel.org
7278 S:      Supported
7279 F:      Documentation/scsi/hpsa.txt
7280 F:      drivers/scsi/hpsa*.[ch]
7281 F:      include/linux/cciss*.h
7282 F:      include/uapi/linux/cciss*.h
7283
7284 HFI1 DRIVER
7285 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
7286 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
7287 L:      linux-rdma@vger.kernel.org
7288 S:      Supported
7289 F:      drivers/infiniband/hw/hfi1
7290
7291 HFS FILESYSTEM
7292 L:      linux-fsdevel@vger.kernel.org
7293 S:      Orphan
7294 F:      Documentation/filesystems/hfs.txt
7295 F:      fs/hfs/
7296
7297 HFSPLUS FILESYSTEM
7298 L:      linux-fsdevel@vger.kernel.org
7299 S:      Orphan
7300 F:      Documentation/filesystems/hfsplus.txt
7301 F:      fs/hfsplus/
7302
7303 HGA FRAMEBUFFER DRIVER
7304 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
7305 L:      linux-nvidia@lists.surfsouth.com
7306 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7307 S:      Maintained
7308 F:      drivers/video/fbdev/hgafb.c
7309
7310 HIBERNATION (aka Software Suspend, aka swsusp)
7311 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7312 M:      Pavel Machek <pavel@ucw.cz>
7313 L:      linux-pm@vger.kernel.org
7314 B:      https://bugzilla.kernel.org
7315 S:      Supported
7316 F:      arch/x86/power/
7317 F:      drivers/base/power/
7318 F:      kernel/power/
7319 F:      include/linux/suspend.h
7320 F:      include/linux/freezer.h
7321 F:      include/linux/pm.h
7322 F:      arch/*/include/asm/suspend*.h
7323
7324 HID CORE LAYER
7325 M:      Jiri Kosina <jikos@kernel.org>
7326 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
7327 L:      linux-input@vger.kernel.org
7328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7329 S:      Maintained
7330 F:      drivers/hid/
7331 F:      include/linux/hid*
7332 F:      include/uapi/linux/hid*
7333
7334 HID SENSOR HUB DRIVERS
7335 M:      Jiri Kosina <jikos@kernel.org>
7336 M:      Jonathan Cameron <jic23@kernel.org>
7337 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7338 L:      linux-input@vger.kernel.org
7339 L:      linux-iio@vger.kernel.org
7340 S:      Maintained
7341 F:      Documentation/hid/hid-sensor*
7342 F:      drivers/hid/hid-sensor-*
7343 F:      drivers/iio/*/hid-*
7344 F:      include/linux/hid-sensor-*
7345
7346 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7347 M:      Thomas Gleixner <tglx@linutronix.de>
7348 L:      linux-kernel@vger.kernel.org
7349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7350 S:      Maintained
7351 F:      Documentation/timers/
7352 F:      kernel/time/hrtimer.c
7353 F:      kernel/time/clockevents.c
7354 F:      kernel/time/timer_*.c
7355 F:      include/linux/clockchips.h
7356 F:      include/linux/hrtimer.h
7357
7358 HIGH-SPEED SCC DRIVER FOR AX.25
7359 L:      linux-hams@vger.kernel.org
7360 S:      Orphan
7361 F:      drivers/net/hamradio/dmascc.c
7362 F:      drivers/net/hamradio/scc.c
7363
7364 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7365 M:      HighPoint Linux Team <linux@highpoint-tech.com>
7366 W:      http://www.highpoint-tech.com
7367 S:      Supported
7368 F:      Documentation/scsi/hptiop.txt
7369 F:      drivers/scsi/hptiop.c
7370
7371 HIPPI
7372 M:      Jes Sorensen <jes@trained-monkey.org>
7373 L:      linux-hippi@sunsite.dk
7374 S:      Maintained
7375 F:      include/linux/hippidevice.h
7376 F:      include/uapi/linux/if_hippi.h
7377 F:      net/802/hippi.c
7378 F:      drivers/net/hippi/
7379
7380 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7381 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7382 M:      Salil Mehta <salil.mehta@huawei.com>
7383 L:      netdev@vger.kernel.org
7384 W:      http://www.hisilicon.com
7385 S:      Maintained
7386 F:      drivers/net/ethernet/hisilicon/hns3/
7387
7388 HISILICON LPC BUS DRIVER
7389 M:      john.garry@huawei.com
7390 W:      http://www.hisilicon.com
7391 S:      Maintained
7392 F:      drivers/bus/hisi_lpc.c
7393 F:      Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
7394
7395 HISILICON NETWORK SUBSYSTEM DRIVER
7396 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7397 M:      Salil Mehta <salil.mehta@huawei.com>
7398 L:      netdev@vger.kernel.org
7399 W:      http://www.hisilicon.com
7400 S:      Maintained
7401 F:      drivers/net/ethernet/hisilicon/
7402 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
7403
7404 HISILICON PMU DRIVER
7405 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
7406 W:      http://www.hisilicon.com
7407 S:      Supported
7408 F:      drivers/perf/hisilicon
7409 F:      Documentation/admin-guide/perf/hisi-pmu.rst
7410
7411 HISILICON ROCE DRIVER
7412 M:      Lijun Ou <oulijun@huawei.com>
7413 M:      Wei Hu(Xavier) <xavier.huwei@huawei.com>
7414 L:      linux-rdma@vger.kernel.org
7415 S:      Maintained
7416 F:      drivers/infiniband/hw/hns/
7417 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
7418
7419 HISILICON SAS Controller
7420 M:      John Garry <john.garry@huawei.com>
7421 W:      http://www.hisilicon.com
7422 S:      Supported
7423 F:      drivers/scsi/hisi_sas/
7424 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
7425
7426 HISILICON QM AND ZIP Controller DRIVER
7427 M:      Zhou Wang <wangzhou1@hisilicon.com>
7428 L:      linux-crypto@vger.kernel.org
7429 S:      Maintained
7430 F:      drivers/crypto/hisilicon/qm.c
7431 F:      drivers/crypto/hisilicon/qm.h
7432 F:      drivers/crypto/hisilicon/sgl.c
7433 F:      drivers/crypto/hisilicon/sgl.h
7434 F:      drivers/crypto/hisilicon/zip/
7435 F:      Documentation/ABI/testing/debugfs-hisi-zip
7436
7437 HMM - Heterogeneous Memory Management
7438 M:      Jérôme Glisse <jglisse@redhat.com>
7439 L:      linux-mm@kvack.org
7440 S:      Maintained
7441 F:      mm/hmm*
7442 F:      include/linux/hmm*
7443 F:      Documentation/vm/hmm.rst
7444
7445 HOST AP DRIVER
7446 M:      Jouni Malinen <j@w1.fi>
7447 L:      linux-wireless@vger.kernel.org
7448 W:      http://w1.fi/hostap-driver.html
7449 S:      Obsolete
7450 F:      drivers/net/wireless/intersil/hostap/
7451
7452 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
7453 L:      platform-driver-x86@vger.kernel.org
7454 S:      Orphan
7455 F:      drivers/platform/x86/tc1100-wmi.c
7456
7457 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
7458 M:      Jaroslav Kysela <perex@perex.cz>
7459 S:      Obsolete
7460 F:      drivers/staging/hp/hp100.*
7461
7462 HPET:   High Precision Event Timers driver
7463 M:      Clemens Ladisch <clemens@ladisch.de>
7464 S:      Maintained
7465 F:      Documentation/timers/hpet.rst
7466 F:      drivers/char/hpet.c
7467 F:      include/linux/hpet.h
7468 F:      include/uapi/linux/hpet.h
7469
7470 HPET:   x86
7471 S:      Orphan
7472 F:      arch/x86/kernel/hpet.c
7473 F:      arch/x86/include/asm/hpet.h
7474
7475 HPFS FILESYSTEM
7476 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
7477 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
7478 S:      Maintained
7479 F:      fs/hpfs/
7480
7481 HSI SUBSYSTEM
7482 M:      Sebastian Reichel <sre@kernel.org>
7483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
7484 S:      Maintained
7485 F:      Documentation/ABI/testing/sysfs-bus-hsi
7486 F:      Documentation/driver-api/hsi.rst
7487 F:      drivers/hsi/
7488 F:      include/linux/hsi/
7489 F:      include/uapi/linux/hsi/
7490
7491 HSO 3G MODEM DRIVER
7492 L:      linux-usb@vger.kernel.org
7493 S:      Orphan
7494 F:      drivers/net/usb/hso.c
7495
7496 HSR NETWORK PROTOCOL
7497 M:      Arvid Brodin <arvid.brodin@alten.se>
7498 L:      netdev@vger.kernel.org
7499 S:      Maintained
7500 F:      net/hsr/
7501
7502 HT16K33 LED CONTROLLER DRIVER
7503 M:      Robin van der Gracht <robin@protonic.nl>
7504 S:      Maintained
7505 F:      drivers/auxdisplay/ht16k33.c
7506 F:      Documentation/devicetree/bindings/display/ht16k33.txt
7507
7508 HTCPEN TOUCHSCREEN DRIVER
7509 M:      Pau Oliva Fora <pof@eslack.org>
7510 L:      linux-input@vger.kernel.org
7511 S:      Maintained
7512 F:      drivers/input/touchscreen/htcpen.c
7513
7514 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
7515 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
7516 L:      linux-iio@vger.kernel.org
7517 W:      http://www.st.com/
7518 S:      Maintained
7519 F:      drivers/iio/humidity/hts221*
7520 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
7521
7522 HUAWEI ETHERNET DRIVER
7523 M:      Aviad Krawczyk <aviad.krawczyk@huawei.com>
7524 L:      netdev@vger.kernel.org
7525 S:      Supported
7526 F:      Documentation/networking/hinic.txt
7527 F:      drivers/net/ethernet/huawei/hinic/
7528
7529 HUGETLB FILESYSTEM
7530 M:      Mike Kravetz <mike.kravetz@oracle.com>
7531 L:      linux-mm@kvack.org
7532 S:      Maintained
7533 F:      fs/hugetlbfs/
7534 F:      mm/hugetlb.c
7535 F:      include/linux/hugetlb.h
7536 F:      Documentation/admin-guide/mm/hugetlbpage.rst
7537 F:      Documentation/vm/hugetlbfs_reserv.rst
7538 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
7539
7540 HVA ST MEDIA DRIVER
7541 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
7542 L:      linux-media@vger.kernel.org
7543 T:      git git://linuxtv.org/media_tree.git
7544 W:      https://linuxtv.org
7545 S:      Supported
7546 F:      drivers/media/platform/sti/hva
7547
7548 HWPOISON MEMORY FAILURE HANDLING
7549 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
7550 L:      linux-mm@kvack.org
7551 S:      Maintained
7552 F:      mm/memory-failure.c
7553 F:      mm/hwpoison-inject.c
7554
7555 HYGON PROCESSOR SUPPORT
7556 M:      Pu Wen <puwen@hygon.cn>
7557 L:      linux-kernel@vger.kernel.org
7558 S:      Maintained
7559 F:      arch/x86/kernel/cpu/hygon.c
7560
7561 Hyper-V CORE AND DRIVERS
7562 M:      "K. Y. Srinivasan" <kys@microsoft.com>
7563 M:      Haiyang Zhang <haiyangz@microsoft.com>
7564 M:      Stephen Hemminger <sthemmin@microsoft.com>
7565 M:      Sasha Levin <sashal@kernel.org>
7566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
7567 L:      linux-hyperv@vger.kernel.org
7568 S:      Supported
7569 F:      Documentation/networking/device_drivers/microsoft/netvsc.txt
7570 F:      arch/x86/include/asm/mshyperv.h
7571 F:      arch/x86/include/asm/trace/hyperv.h
7572 F:      arch/x86/include/asm/hyperv-tlfs.h
7573 F:      arch/x86/kernel/cpu/mshyperv.c
7574 F:      arch/x86/hyperv
7575 F:      drivers/clocksource/hyperv_timer.c
7576 F:      drivers/hid/hid-hyperv.c
7577 F:      drivers/hv/
7578 F:      drivers/input/serio/hyperv-keyboard.c
7579 F:      drivers/pci/controller/pci-hyperv.c
7580 F:      drivers/pci/controller/pci-hyperv-intf.c
7581 F:      drivers/net/hyperv/
7582 F:      drivers/scsi/storvsc_drv.c
7583 F:      drivers/uio/uio_hv_generic.c
7584 F:      drivers/video/fbdev/hyperv_fb.c
7585 F:      drivers/iommu/hyperv-iommu.c
7586 F:      net/vmw_vsock/hyperv_transport.c
7587 F:      include/clocksource/hyperv_timer.h
7588 F:      include/linux/hyperv.h
7589 F:      include/uapi/linux/hyperv.h
7590 F:      include/asm-generic/mshyperv.h
7591 F:      tools/hv/
7592 F:      Documentation/ABI/stable/sysfs-bus-vmbus
7593
7594 HYPERBUS SUPPORT
7595 M:      Vignesh Raghavendra <vigneshr@ti.com>
7596 S:      Supported
7597 F:      drivers/mtd/hyperbus/
7598 F:      include/linux/mtd/hyperbus.h
7599 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
7600 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
7601
7602 HYPERVISOR VIRTUAL CONSOLE DRIVER
7603 L:      linuxppc-dev@lists.ozlabs.org
7604 S:      Odd Fixes
7605 F:      drivers/tty/hvc/
7606
7607 I2C ACPI SUPPORT
7608 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7609 L:      linux-i2c@vger.kernel.org
7610 L:      linux-acpi@vger.kernel.org
7611 S:      Maintained
7612 F:      drivers/i2c/i2c-core-acpi.c
7613
7614 I2C CONTROLLER DRIVER FOR NVIDIA GPU
7615 M:      Ajay Gupta <ajayg@nvidia.com>
7616 L:      linux-i2c@vger.kernel.org
7617 S:      Maintained
7618 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
7619 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
7620
7621 I2C MUXES
7622 M:      Peter Rosin <peda@axentia.se>
7623 L:      linux-i2c@vger.kernel.org
7624 S:      Maintained
7625 F:      Documentation/i2c/i2c-topology.rst
7626 F:      Documentation/i2c/muxes/
7627 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
7628 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
7629 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
7630 F:      drivers/i2c/i2c-mux.c
7631 F:      drivers/i2c/muxes/
7632 F:      include/linux/i2c-mux.h
7633
7634 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
7635 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
7636 L:      linux-i2c@vger.kernel.org
7637 S:      Maintained
7638 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
7639 F:      drivers/i2c/busses/i2c-mv64xxx.c
7640
7641 I2C OVER PARALLEL PORT
7642 M:      Jean Delvare <jdelvare@suse.com>
7643 L:      linux-i2c@vger.kernel.org
7644 S:      Maintained
7645 F:      Documentation/i2c/busses/i2c-parport.rst
7646 F:      Documentation/i2c/busses/i2c-parport-light.rst
7647 F:      drivers/i2c/busses/i2c-parport.c
7648 F:      drivers/i2c/busses/i2c-parport-light.c
7649
7650 I2C SUBSYSTEM
7651 M:      Wolfram Sang <wsa@the-dreams.de>
7652 L:      linux-i2c@vger.kernel.org
7653 W:      https://i2c.wiki.kernel.org/
7654 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7656 S:      Maintained
7657 F:      Documentation/devicetree/bindings/i2c/i2c.txt
7658 F:      Documentation/i2c/
7659 F:      drivers/i2c/*
7660 F:      include/linux/i2c.h
7661 F:      include/linux/i2c-dev.h
7662 F:      include/linux/i2c-smbus.h
7663 F:      include/uapi/linux/i2c.h
7664 F:      include/uapi/linux/i2c-*.h
7665
7666 I2C SUBSYSTEM HOST DRIVERS
7667 L:      linux-i2c@vger.kernel.org
7668 W:      https://i2c.wiki.kernel.org/
7669 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7671 S:      Odd Fixes
7672 F:      Documentation/devicetree/bindings/i2c/
7673 F:      drivers/i2c/algos/
7674 F:      drivers/i2c/busses/
7675
7676 I2C-TAOS-EVM DRIVER
7677 M:      Jean Delvare <jdelvare@suse.com>
7678 L:      linux-i2c@vger.kernel.org
7679 S:      Maintained
7680 F:      Documentation/i2c/busses/i2c-taos-evm.rst
7681 F:      drivers/i2c/busses/i2c-taos-evm.c
7682
7683 I2C-TINY-USB DRIVER
7684 M:      Till Harbaum <till@harbaum.org>
7685 L:      linux-i2c@vger.kernel.org
7686 W:      http://www.harbaum.org/till/i2c_tiny_usb
7687 S:      Maintained
7688 F:      drivers/i2c/busses/i2c-tiny-usb.c
7689
7690 I2C/SMBUS CONTROLLER DRIVERS FOR PC
7691 M:      Jean Delvare <jdelvare@suse.com>
7692 L:      linux-i2c@vger.kernel.org
7693 S:      Maintained
7694 F:      Documentation/i2c/busses/i2c-ali1535.rst
7695 F:      Documentation/i2c/busses/i2c-ali1563.rst
7696 F:      Documentation/i2c/busses/i2c-ali15x3.rst
7697 F:      Documentation/i2c/busses/i2c-amd756.rst
7698 F:      Documentation/i2c/busses/i2c-amd8111.rst
7699 F:      Documentation/i2c/busses/i2c-i801.rst
7700 F:      Documentation/i2c/busses/i2c-nforce2.rst
7701 F:      Documentation/i2c/busses/i2c-piix4.rst
7702 F:      Documentation/i2c/busses/i2c-sis5595.rst
7703 F:      Documentation/i2c/busses/i2c-sis630.rst
7704 F:      Documentation/i2c/busses/i2c-sis96x.rst
7705 F:      Documentation/i2c/busses/i2c-via.rst
7706 F:      Documentation/i2c/busses/i2c-viapro.rst
7707 F:      drivers/i2c/busses/i2c-ali1535.c
7708 F:      drivers/i2c/busses/i2c-ali1563.c
7709 F:      drivers/i2c/busses/i2c-ali15x3.c
7710 F:      drivers/i2c/busses/i2c-amd756.c
7711 F:      drivers/i2c/busses/i2c-amd756-s4882.c
7712 F:      drivers/i2c/busses/i2c-amd8111.c
7713 F:      drivers/i2c/busses/i2c-i801.c
7714 F:      drivers/i2c/busses/i2c-isch.c
7715 F:      drivers/i2c/busses/i2c-nforce2.c
7716 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
7717 F:      drivers/i2c/busses/i2c-piix4.c
7718 F:      drivers/i2c/busses/i2c-sis5595.c
7719 F:      drivers/i2c/busses/i2c-sis630.c
7720 F:      drivers/i2c/busses/i2c-sis96x.c
7721 F:      drivers/i2c/busses/i2c-via.c
7722 F:      drivers/i2c/busses/i2c-viapro.c
7723
7724 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
7725 M:      Hans de Goede <hdegoede@redhat.com>
7726 L:      linux-i2c@vger.kernel.org
7727 S:      Maintained
7728 F:      drivers/i2c/busses/i2c-cht-wc.c
7729
7730 I2C/SMBUS ISMT DRIVER
7731 M:      Seth Heasley <seth.heasley@intel.com>
7732 M:      Neil Horman <nhorman@tuxdriver.com>
7733 L:      linux-i2c@vger.kernel.org
7734 F:      drivers/i2c/busses/i2c-ismt.c
7735 F:      Documentation/i2c/busses/i2c-ismt.rst
7736
7737 I2C/SMBUS STUB DRIVER
7738 M:      Jean Delvare <jdelvare@suse.com>
7739 L:      linux-i2c@vger.kernel.org
7740 S:      Maintained
7741 F:      drivers/i2c/i2c-stub.c
7742
7743 I3C SUBSYSTEM
7744 M:      Boris Brezillon <bbrezillon@kernel.org>
7745 L:      linux-i3c@lists.infradead.org
7746 C:      irc://chat.freenode.net/linux-i3c
7747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
7748 S:      Maintained
7749 F:      Documentation/ABI/testing/sysfs-bus-i3c
7750 F:      Documentation/devicetree/bindings/i3c/
7751 F:      Documentation/driver-api/i3c
7752 F:      drivers/i3c/
7753 F:      include/linux/i3c/
7754
7755 I3C DRIVER FOR SYNOPSYS DESIGNWARE
7756 M:      Vitor Soares <vitor.soares@synopsys.com>
7757 S:      Maintained
7758 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
7759 F:      drivers/i3c/master/dw*
7760
7761 IA64 (Itanium) PLATFORM
7762 M:      Tony Luck <tony.luck@intel.com>
7763 M:      Fenghua Yu <fenghua.yu@intel.com>
7764 L:      linux-ia64@vger.kernel.org
7765 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
7766 S:      Maintained
7767 F:      arch/ia64/
7768
7769 IBM Power 842 compression accelerator
7770 M:      Haren Myneni <haren@us.ibm.com>
7771 S:      Supported
7772 F:      drivers/crypto/nx/Makefile
7773 F:      drivers/crypto/nx/Kconfig
7774 F:      drivers/crypto/nx/nx-842*
7775 F:      include/linux/sw842.h
7776 F:      crypto/842.c
7777 F:      lib/842/
7778
7779 IBM Power in-Nest Crypto Acceleration
7780 M:      Breno Leitão <leitao@debian.org>
7781 M:      Nayna Jain <nayna@linux.ibm.com>
7782 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
7783 L:      linux-crypto@vger.kernel.org
7784 S:      Supported
7785 F:      drivers/crypto/nx/Makefile
7786 F:      drivers/crypto/nx/Kconfig
7787 F:      drivers/crypto/nx/nx-aes*
7788 F:      drivers/crypto/nx/nx-sha*
7789 F:      drivers/crypto/nx/nx.*
7790 F:      drivers/crypto/nx/nx_csbcpb.h
7791 F:      drivers/crypto/nx/nx_debugfs.c
7792
7793 IBM Power Linux RAID adapter
7794 M:      Brian King <brking@us.ibm.com>
7795 S:      Supported
7796 F:      drivers/scsi/ipr.*
7797
7798 IBM Power SRIOV Virtual NIC Device Driver
7799 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
7800 M:      John Allen <jallen@linux.ibm.com>
7801 L:      netdev@vger.kernel.org
7802 S:      Supported
7803 F:      drivers/net/ethernet/ibm/ibmvnic.*
7804
7805 IBM Power Virtual Accelerator Switchboard
7806 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
7807 L:      linuxppc-dev@lists.ozlabs.org
7808 S:      Supported
7809 F:      arch/powerpc/platforms/powernv/vas*
7810 F:      arch/powerpc/platforms/powernv/copy-paste.h
7811 F:      arch/powerpc/include/asm/vas.h
7812
7813 IBM Power Virtual Ethernet Device Driver
7814 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
7815 L:      netdev@vger.kernel.org
7816 S:      Supported
7817 F:      drivers/net/ethernet/ibm/ibmveth.*
7818
7819 IBM Power Virtual FC Device Drivers
7820 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
7821 L:      linux-scsi@vger.kernel.org
7822 S:      Supported
7823 F:      drivers/scsi/ibmvscsi/ibmvfc*
7824
7825 IBM Power Virtual Management Channel Driver
7826 M:      Steven Royer <seroyer@linux.ibm.com>
7827 S:      Supported
7828 F:      drivers/misc/ibmvmc.*
7829
7830 IBM Power Virtual SCSI Device Drivers
7831 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
7832 L:      linux-scsi@vger.kernel.org
7833 S:      Supported
7834 F:      drivers/scsi/ibmvscsi/ibmvscsi*
7835 F:      include/scsi/viosrp.h
7836
7837 IBM Power Virtual SCSI Device Target Driver
7838 M:      Michael Cyr <mikecyr@linux.ibm.com>
7839 L:      linux-scsi@vger.kernel.org
7840 L:      target-devel@vger.kernel.org
7841 S:      Supported
7842 F:      drivers/scsi/ibmvscsi_tgt/
7843
7844 IBM Power VMX Cryptographic instructions
7845 M:      Breno Leitão <leitao@debian.org>
7846 M:      Nayna Jain <nayna@linux.ibm.com>
7847 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
7848 L:      linux-crypto@vger.kernel.org
7849 S:      Supported
7850 F:      drivers/crypto/vmx/Makefile
7851 F:      drivers/crypto/vmx/Kconfig
7852 F:      drivers/crypto/vmx/vmx.c
7853 F:      drivers/crypto/vmx/aes*
7854 F:      drivers/crypto/vmx/ghash*
7855 F:      drivers/crypto/vmx/ppc-xlate.pl
7856
7857 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
7858 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
7859 L:      linux-pci@vger.kernel.org
7860 L:      linuxppc-dev@lists.ozlabs.org
7861 S:      Supported
7862 F:      drivers/pci/hotplug/rpaphp*
7863
7864 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
7865 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
7866 L:      linux-pci@vger.kernel.org
7867 L:      linuxppc-dev@lists.ozlabs.org
7868 S:      Supported
7869 F:      drivers/pci/hotplug/rpadlpar*
7870
7871 IBM ServeRAID RAID DRIVER
7872 S:      Orphan
7873 F:      drivers/scsi/ips.*
7874
7875 ICH LPC AND GPIO DRIVER
7876 M:      Peter Tyser <ptyser@xes-inc.com>
7877 S:      Maintained
7878 F:      drivers/mfd/lpc_ich.c
7879 F:      drivers/gpio/gpio-ich.c
7880
7881 ICY I2C DRIVER
7882 M:      Max Staudt <max@enpas.org>
7883 L:      linux-i2c@vger.kernel.org
7884 S:      Maintained
7885 F:      drivers/i2c/busses/i2c-icy.c
7886
7887 IDE SUBSYSTEM
7888 M:      "David S. Miller" <davem@davemloft.net>
7889 L:      linux-ide@vger.kernel.org
7890 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
7891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
7892 S:      Maintained
7893 F:      Documentation/ide/
7894 F:      drivers/ide/
7895 F:      include/linux/ide.h
7896
7897 IDE/ATAPI DRIVERS
7898 M:      Borislav Petkov <bp@alien8.de>
7899 L:      linux-ide@vger.kernel.org
7900 S:      Maintained
7901 F:      Documentation/cdrom/ide-cd.rst
7902 F:      drivers/ide/ide-cd*
7903
7904 IDEAPAD LAPTOP EXTRAS DRIVER
7905 M:      Ike Panhc <ike.pan@canonical.com>
7906 L:      platform-driver-x86@vger.kernel.org
7907 W:      http://launchpad.net/ideapad-laptop
7908 S:      Maintained
7909 F:      drivers/platform/x86/ideapad-laptop.c
7910
7911 IDEAPAD LAPTOP SLIDEBAR DRIVER
7912 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
7913 L:      linux-input@vger.kernel.org
7914 W:      https://github.com/o2genum/ideapad-slidebar
7915 S:      Maintained
7916 F:      drivers/input/misc/ideapad_slidebar.c
7917
7918 IDT VersaClock 5 CLOCK DRIVER
7919 M:      Marek Vasut <marek.vasut@gmail.com>
7920 S:      Maintained
7921 F:      drivers/clk/clk-versaclock5.c
7922
7923 IEEE 802.15.4 SUBSYSTEM
7924 M:      Alexander Aring <alex.aring@gmail.com>
7925 M:      Stefan Schmidt <stefan@datenfreihafen.org>
7926 L:      linux-wpan@vger.kernel.org
7927 W:      http://wpan.cakelab.org/
7928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
7929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
7930 S:      Maintained
7931 F:      net/ieee802154/
7932 F:      net/mac802154/
7933 F:      drivers/net/ieee802154/
7934 F:      include/linux/nl802154.h
7935 F:      include/linux/ieee802154.h
7936 F:      include/net/nl802154.h
7937 F:      include/net/mac802154.h
7938 F:      include/net/af_ieee802154.h
7939 F:      include/net/cfg802154.h
7940 F:      include/net/ieee802154_netdev.h
7941 F:      Documentation/networking/ieee802154.rst
7942
7943 IFE PROTOCOL
7944 M:      Yotam Gigi <yotam.gi@gmail.com>
7945 M:      Jamal Hadi Salim <jhs@mojatatu.com>
7946 F:      net/ife
7947 F:      include/net/ife.h
7948 F:      include/uapi/linux/ife.h
7949
7950 IGORPLUG-USB IR RECEIVER
7951 M:      Sean Young <sean@mess.org>
7952 L:      linux-media@vger.kernel.org
7953 S:      Maintained
7954 F:      drivers/media/rc/igorplugusb.c
7955
7956 IGUANAWORKS USB IR TRANSCEIVER
7957 M:      Sean Young <sean@mess.org>
7958 L:      linux-media@vger.kernel.org
7959 S:      Maintained
7960 F:      drivers/media/rc/iguanair.c
7961
7962 IIO DIGITAL POTENTIOMETER DAC
7963 M:      Peter Rosin <peda@axentia.se>
7964 L:      linux-iio@vger.kernel.org
7965 S:      Maintained
7966 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
7967 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
7968 F:      drivers/iio/dac/dpot-dac.c
7969
7970 IIO ENVELOPE DETECTOR
7971 M:      Peter Rosin <peda@axentia.se>
7972 L:      linux-iio@vger.kernel.org
7973 S:      Maintained
7974 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
7975 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
7976 F:      drivers/iio/adc/envelope-detector.c
7977
7978 IIO MULTIPLEXER
7979 M:      Peter Rosin <peda@axentia.se>
7980 L:      linux-iio@vger.kernel.org
7981 S:      Maintained
7982 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
7983 F:      drivers/iio/multiplexer/iio-mux.c
7984
7985 IIO SUBSYSTEM AND DRIVERS
7986 M:      Jonathan Cameron <jic23@kernel.org>
7987 R:      Hartmut Knaack <knaack.h@gmx.de>
7988 R:      Lars-Peter Clausen <lars@metafoo.de>
7989 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
7990 L:      linux-iio@vger.kernel.org
7991 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
7992 S:      Maintained
7993 F:      Documentation/ABI/testing/configfs-iio*
7994 F:      Documentation/ABI/testing/sysfs-bus-iio*
7995 F:      Documentation/devicetree/bindings/iio/
7996 F:      drivers/iio/
7997 F:      drivers/staging/iio/
7998 F:      include/linux/iio/
7999 F:      tools/iio/
8000
8001 IIO UNIT CONVERTER
8002 M:      Peter Rosin <peda@axentia.se>
8003 L:      linux-iio@vger.kernel.org
8004 S:      Maintained
8005 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8006 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8007 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8008 F:      drivers/iio/afe/iio-rescale.c
8009
8010 IKANOS/ADI EAGLE ADSL USB DRIVER
8011 M:      Matthieu Castet <castet.matthieu@free.fr>
8012 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8013 S:      Maintained
8014 F:      drivers/usb/atm/ueagle-atm.c
8015
8016 IMGTEC ASCII LCD DRIVER
8017 M:      Paul Burton <paulburton@kernel.org>
8018 S:      Maintained
8019 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8020 F:      drivers/auxdisplay/img-ascii-lcd.c
8021
8022 IMGTEC IR DECODER DRIVER
8023 M:      James Hogan <jhogan@kernel.org>
8024 S:      Maintained
8025 F:      drivers/media/rc/img-ir/
8026
8027 IMON SOUNDGRAPH USB IR RECEIVER
8028 M:      Sean Young <sean@mess.org>
8029 L:      linux-media@vger.kernel.org
8030 S:      Maintained
8031 F:      drivers/media/rc/imon_raw.c
8032 F:      drivers/media/rc/imon.c
8033
8034 IMS TWINTURBO FRAMEBUFFER DRIVER
8035 L:      linux-fbdev@vger.kernel.org
8036 S:      Orphan
8037 F:      drivers/video/fbdev/imsttfb.c
8038
8039 INA209 HARDWARE MONITOR DRIVER
8040 M:      Guenter Roeck <linux@roeck-us.net>
8041 L:      linux-hwmon@vger.kernel.org
8042 S:      Maintained
8043 F:      Documentation/hwmon/ina209.rst
8044 F:      Documentation/devicetree/bindings/hwmon/ina2xx.txt
8045 F:      drivers/hwmon/ina209.c
8046
8047 INA2XX HARDWARE MONITOR DRIVER
8048 M:      Guenter Roeck <linux@roeck-us.net>
8049 L:      linux-hwmon@vger.kernel.org
8050 S:      Maintained
8051 F:      Documentation/hwmon/ina2xx.rst
8052 F:      drivers/hwmon/ina2xx.c
8053 F:      include/linux/platform_data/ina2xx.h
8054
8055 INDUSTRY PACK SUBSYSTEM (IPACK)
8056 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8057 M:      Jens Taprogge <jens.taprogge@taprogge.org>
8058 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8059 L:      industrypack-devel@lists.sourceforge.net
8060 W:      http://industrypack.sourceforge.net
8061 S:      Maintained
8062 F:      drivers/ipack/
8063
8064 INFINEON DPS310 Driver
8065 M:      Eddie James <eajames@linux.ibm.com>
8066 L:      linux-iio@vger.kernel.org
8067 F:      drivers/iio/pressure/dps310.c
8068 S:      Maintained
8069
8070 INFINIBAND SUBSYSTEM
8071 M:      Doug Ledford <dledford@redhat.com>
8072 M:      Jason Gunthorpe <jgg@mellanox.com>
8073 L:      linux-rdma@vger.kernel.org
8074 W:      https://github.com/linux-rdma/rdma-core
8075 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8077 S:      Supported
8078 F:      Documentation/devicetree/bindings/infiniband/
8079 F:      Documentation/infiniband/
8080 F:      drivers/infiniband/
8081 F:      include/uapi/linux/if_infiniband.h
8082 F:      include/uapi/rdma/
8083 F:      include/rdma/
8084 F:      include/trace/events/ib_mad.h
8085 F:      include/trace/events/ib_umad.h
8086 F:      samples/bpf/ibumad_kern.c
8087 F:      samples/bpf/ibumad_user.c
8088
8089 INGENIC JZ4780 DMA Driver
8090 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
8091 S:      Maintained
8092 F:      drivers/dma/dma-jz4780.c
8093
8094 INGENIC JZ4780 NAND DRIVER
8095 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
8096 L:      linux-mtd@lists.infradead.org
8097 S:      Maintained
8098 F:      drivers/mtd/nand/raw/ingenic/
8099
8100 INGENIC JZ47xx SoCs
8101 M:      Paul Cercueil <paul@crapouillou.net>
8102 S:      Maintained
8103 F:      arch/mips/boot/dts/ingenic/
8104 F:      arch/mips/include/asm/mach-jz4740/
8105 F:      arch/mips/jz4740/
8106 F:      drivers/clk/ingenic/
8107 F:      drivers/dma/dma-jz4780.c
8108 F:      drivers/gpu/drm/ingenic/
8109 F:      drivers/i2c/busses/i2c-jz4780.c
8110 F:      drivers/iio/adc/ingenic-adc.c
8111 F:      drivers/irqchip/irq-ingenic.c
8112 F:      drivers/memory/jz4780-nemc.c
8113 F:      drivers/mmc/host/jz4740_mmc.c
8114 F:      drivers/mtd/nand/raw/ingenic/
8115 F:      drivers/pinctrl/pinctrl-ingenic.c
8116 F:      drivers/power/supply/ingenic-battery.c
8117 F:      drivers/pwm/pwm-jz4740.c
8118 F:      drivers/rtc/rtc-jz4740.c
8119 F:      drivers/tty/serial/8250/8250_ingenic.c
8120 F:      drivers/usb/musb/jz4740.c
8121 F:      drivers/watchdog/jz4740_wdt.c
8122 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8123 F:      include/linux/mfd/ingenic-tcu.h
8124 F:      sound/soc/jz4740/
8125 F:      sound/soc/codecs/jz47*
8126
8127 INOTIFY
8128 M:      Jan Kara <jack@suse.cz>
8129 R:      Amir Goldstein <amir73il@gmail.com>
8130 L:      linux-fsdevel@vger.kernel.org
8131 S:      Maintained
8132 F:      Documentation/filesystems/inotify.txt
8133 F:      fs/notify/inotify/
8134 F:      include/linux/inotify.h
8135 F:      include/uapi/linux/inotify.h
8136
8137 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8138 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
8139 L:      linux-input@vger.kernel.org
8140 Q:      http://patchwork.kernel.org/project/linux-input/list/
8141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8142 S:      Maintained
8143 F:      drivers/input/
8144 F:      include/linux/input.h
8145 F:      include/uapi/linux/input.h
8146 F:      include/uapi/linux/input-event-codes.h
8147 F:      include/linux/input/
8148 F:      Documentation/devicetree/bindings/input/
8149 F:      Documentation/devicetree/bindings/serio/
8150 F:      Documentation/input/
8151
8152 INPUT MULTITOUCH (MT) PROTOCOL
8153 M:      Henrik Rydberg <rydberg@bitmath.org>
8154 L:      linux-input@vger.kernel.org
8155 S:      Odd fixes
8156 F:      Documentation/input/multi-touch-protocol.rst
8157 F:      drivers/input/input-mt.c
8158 K:      \b(ABS|SYN)_MT_
8159
8160 INSIDE SECURE CRYPTO DRIVER
8161 M:      Antoine Tenart <antoine.tenart@bootlin.com>
8162 F:      drivers/crypto/inside-secure/
8163 S:      Maintained
8164 L:      linux-crypto@vger.kernel.org
8165
8166 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8167 M:      Mimi Zohar <zohar@linux.ibm.com>
8168 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
8169 L:      linux-integrity@vger.kernel.org
8170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8171 S:      Supported
8172 F:      security/integrity/ima/
8173
8174 INTEL 810/815 FRAMEBUFFER DRIVER
8175 M:      Antonino Daplas <adaplas@gmail.com>
8176 L:      linux-fbdev@vger.kernel.org
8177 S:      Maintained
8178 F:      drivers/video/fbdev/i810/
8179
8180 INTEL ASoC DRIVERS
8181 M:      Cezary Rojewski <cezary.rojewski@intel.com>
8182 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
8183 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
8184 M:      Jie Yang <yang.jie@linux.intel.com>
8185 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8186 S:      Supported
8187 F:      sound/soc/intel/
8188
8189 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8190 M:      Hans de Goede <hdegoede@redhat.com>
8191 L:      platform-driver-x86@vger.kernel.org
8192 S:      Maintained
8193 F:      drivers/platform/x86/intel_atomisp2_pm.c
8194
8195 INTEL C600 SERIES SAS CONTROLLER DRIVER
8196 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
8197 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
8198 L:      linux-scsi@vger.kernel.org
8199 T:      git git://git.code.sf.net/p/intel-sas/isci
8200 S:      Supported
8201 F:      drivers/scsi/isci/
8202
8203 INTEL CPU family model numbers
8204 M:      Tony Luck <tony.luck@intel.com>
8205 M:      x86@kernel.org
8206 L:      linux-kernel@vger.kernel.org
8207 S:      Supported
8208 F:      arch/x86/include/asm/intel-family.h
8209
8210 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8211 M:      Jani Nikula <jani.nikula@linux.intel.com>
8212 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
8213 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
8214 L:      intel-gfx@lists.freedesktop.org
8215 W:      https://01.org/linuxgraphics/
8216 B:      https://01.org/linuxgraphics/documentation/how-report-bugs
8217 C:      irc://chat.freenode.net/intel-gfx
8218 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8219 T:      git git://anongit.freedesktop.org/drm-intel
8220 S:      Supported
8221 F:      drivers/gpu/drm/i915/
8222 F:      include/drm/i915*
8223 F:      include/uapi/drm/i915_drm.h
8224 F:      Documentation/gpu/i915.rst
8225
8226 INTEL ETHERNET DRIVERS
8227 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
8228 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
8229 W:      http://www.intel.com/support/feedback.htm
8230 W:      http://e1000.sourceforge.net/
8231 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
8233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
8234 S:      Supported
8235 F:      Documentation/networking/device_drivers/intel/e100.rst
8236 F:      Documentation/networking/device_drivers/intel/e1000.rst
8237 F:      Documentation/networking/device_drivers/intel/e1000e.rst
8238 F:      Documentation/networking/device_drivers/intel/fm10k.rst
8239 F:      Documentation/networking/device_drivers/intel/igb.rst
8240 F:      Documentation/networking/device_drivers/intel/igbvf.rst
8241 F:      Documentation/networking/device_drivers/intel/ixgb.rst
8242 F:      Documentation/networking/device_drivers/intel/ixgbe.rst
8243 F:      Documentation/networking/device_drivers/intel/ixgbevf.rst
8244 F:      Documentation/networking/device_drivers/intel/i40e.rst
8245 F:      Documentation/networking/device_drivers/intel/iavf.rst
8246 F:      Documentation/networking/device_drivers/intel/ice.rst
8247 F:      drivers/net/ethernet/intel/
8248 F:      drivers/net/ethernet/intel/*/
8249 F:      include/linux/avf/virtchnl.h
8250
8251 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8252 M:      Maik Broemme <mbroemme@libmpq.org>
8253 L:      linux-fbdev@vger.kernel.org
8254 S:      Maintained
8255 F:      Documentation/fb/intelfb.rst
8256 F:      drivers/video/fbdev/intelfb/
8257
8258 INTEL GPIO DRIVERS
8259 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8260 L:      linux-gpio@vger.kernel.org
8261 S:      Maintained
8262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8263 F:      drivers/gpio/gpio-ich.c
8264 F:      drivers/gpio/gpio-intel-mid.c
8265 F:      drivers/gpio/gpio-lynxpoint.c
8266 F:      drivers/gpio/gpio-merrifield.c
8267 F:      drivers/gpio/gpio-ml-ioh.c
8268 F:      drivers/gpio/gpio-pch.c
8269 F:      drivers/gpio/gpio-sch.c
8270 F:      drivers/gpio/gpio-sodaville.c
8271
8272 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8273 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
8274 M:      Zhi Wang <zhi.a.wang@intel.com>
8275 L:      intel-gvt-dev@lists.freedesktop.org
8276 L:      intel-gfx@lists.freedesktop.org
8277 W:      https://01.org/igvt-g
8278 T:      git https://github.com/intel/gvt-linux.git
8279 S:      Supported
8280 F:      drivers/gpu/drm/i915/gvt/
8281
8282 INTEL HID EVENT DRIVER
8283 M:      Alex Hung <alex.hung@canonical.com>
8284 L:      platform-driver-x86@vger.kernel.org
8285 S:      Maintained
8286 F:      drivers/platform/x86/intel-hid.c
8287
8288 INTEL I/OAT DMA DRIVER
8289 M:      Dave Jiang <dave.jiang@intel.com>
8290 R:      Dan Williams <dan.j.williams@intel.com>
8291 L:      dmaengine@vger.kernel.org
8292 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8293 S:      Supported
8294 F:      drivers/dma/ioat*
8295
8296 INTEL IDLE DRIVER
8297 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
8298 M:      Len Brown <lenb@kernel.org>
8299 L:      linux-pm@vger.kernel.org
8300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8301 B:      https://bugzilla.kernel.org
8302 S:      Supported
8303 F:      drivers/idle/intel_idle.c
8304
8305 INTEL INTEGRATED SENSOR HUB DRIVER
8306 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8307 M:      Jiri Kosina <jikos@kernel.org>
8308 L:      linux-input@vger.kernel.org
8309 S:      Maintained
8310 F:      drivers/hid/intel-ish-hid/
8311
8312 INTEL IOMMU (VT-d)
8313 M:      David Woodhouse <dwmw2@infradead.org>
8314 M:      Lu Baolu <baolu.lu@linux.intel.com>
8315 L:      iommu@lists.linux-foundation.org
8316 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8317 S:      Supported
8318 F:      drivers/iommu/dmar.c
8319 F:      drivers/iommu/intel*.[ch]
8320 F:      include/linux/intel-iommu.h
8321 F:      include/linux/intel-svm.h
8322
8323 INTEL IOP-ADMA DMA DRIVER
8324 R:      Dan Williams <dan.j.williams@intel.com>
8325 S:      Odd fixes
8326 F:      drivers/dma/iop-adma.c
8327
8328 INTEL IPU3 CSI-2 CIO2 DRIVER
8329 M:      Yong Zhi <yong.zhi@intel.com>
8330 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8331 M:      Bingbu Cao <bingbu.cao@intel.com>
8332 R:      Tian Shu Qiu <tian.shu.qiu@intel.com>
8333 L:      linux-media@vger.kernel.org
8334 S:      Maintained
8335 F:      drivers/media/pci/intel/ipu3/
8336 F:      Documentation/media/uapi/v4l/pixfmt-srggb10-ipu3.rst
8337
8338 INTEL IPU3 CSI-2 IMGU DRIVER
8339 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8340 L:      linux-media@vger.kernel.org
8341 S:      Maintained
8342 F:      drivers/staging/media/ipu3/
8343 F:      Documentation/media/uapi/v4l/pixfmt-meta-intel-ipu3.rst
8344 F:      Documentation/media/v4l-drivers/ipu3.rst
8345
8346 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8347 M:      Krzysztof Halasa <khalasa@piap.pl>
8348 S:      Maintained
8349 F:      include/linux/soc/ixp4xx/qmgr.h
8350 F:      include/linux/soc/ixp4xx/npe.h
8351 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
8352 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
8353 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
8354 F:      drivers/net/wan/ixp4xx_hss.c
8355
8356 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
8357 M:      Deepak Saxena <dsaxena@plexity.net>
8358 S:      Maintained
8359 F:      drivers/char/hw_random/ixp4xx-rng.c
8360
8361 INTEL MANAGEMENT ENGINE (mei)
8362 M:      Tomas Winkler <tomas.winkler@intel.com>
8363 L:      linux-kernel@vger.kernel.org
8364 S:      Supported
8365 F:      include/uapi/linux/mei.h
8366 F:      include/linux/mei_cl_bus.h
8367 F:      drivers/misc/mei/*
8368 F:      drivers/watchdog/mei_wdt.c
8369 F:      Documentation/driver-api/mei/*
8370 F:      samples/mei/*
8371
8372 INTEL MENLOW THERMAL DRIVER
8373 M:      Sujith Thomas <sujith.thomas@intel.com>
8374 L:      platform-driver-x86@vger.kernel.org
8375 W:      https://01.org/linux-acpi
8376 S:      Supported
8377 F:      drivers/platform/x86/intel_menlow.c
8378
8379 INTEL MIC DRIVERS (mic)
8380 M:      Sudeep Dutt <sudeep.dutt@intel.com>
8381 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
8382 S:      Supported
8383 W:      https://github.com/sudeepdutt/mic
8384 W:      http://software.intel.com/en-us/mic-developer
8385 F:      include/linux/mic_bus.h
8386 F:      include/linux/scif.h
8387 F:      include/uapi/linux/mic_common.h
8388 F:      include/uapi/linux/mic_ioctl.h
8389 F:      include/uapi/linux/scif_ioctl.h
8390 F:      drivers/misc/mic/
8391 F:      drivers/dma/mic_x100_dma.c
8392 F:      drivers/dma/mic_x100_dma.h
8393 F:      Documentation/mic/
8394
8395 INTEL PMC CORE DRIVER
8396 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
8397 M:      Vishwanath Somayaji <vishwanath.somayaji@intel.com>
8398 L:      platform-driver-x86@vger.kernel.org
8399 S:      Maintained
8400 F:      drivers/platform/x86/intel_pmc_core*
8401
8402 INTEL PMC/P-Unit IPC DRIVER
8403 M:      Zha Qipeng<qipeng.zha@intel.com>
8404 L:      platform-driver-x86@vger.kernel.org
8405 S:      Maintained
8406 F:      drivers/platform/x86/intel_pmc_ipc.c
8407 F:      drivers/platform/x86/intel_punit_ipc.c
8408 F:      arch/x86/include/asm/intel_pmc_ipc.h
8409 F:      arch/x86/include/asm/intel_punit_ipc.h
8410
8411 INTEL PMIC GPIO DRIVERS
8412 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8413 S:      Maintained
8414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8415 F:      drivers/gpio/gpio-*cove.c
8416 F:      drivers/gpio/gpio-msic.c
8417
8418 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
8419 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8420 S:      Maintained
8421 F:      drivers/mfd/intel_msic.c
8422 F:      drivers/mfd/intel_soc_pmic*
8423 F:      include/linux/mfd/intel_msic.h
8424 F:      include/linux/mfd/intel_soc_pmic*
8425
8426 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
8427 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
8428 L:      linux-wireless@vger.kernel.org
8429 S:      Maintained
8430 F:      Documentation/networking/device_drivers/intel/ipw2100.txt
8431 F:      Documentation/networking/device_drivers/intel/ipw2200.txt
8432 F:      drivers/net/wireless/intel/ipw2x00/
8433
8434 INTEL PSTATE DRIVER
8435 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8436 M:      Len Brown <lenb@kernel.org>
8437 L:      linux-pm@vger.kernel.org
8438 S:      Supported
8439 F:      drivers/cpufreq/intel_pstate.c
8440
8441 INTEL RDMA RNIC DRIVER
8442 M:      Faisal Latif <faisal.latif@intel.com>
8443 M:      Shiraz Saleem <shiraz.saleem@intel.com>
8444 L:      linux-rdma@vger.kernel.org
8445 S:      Supported
8446 F:      drivers/infiniband/hw/i40iw/
8447 F:      include/uapi/rdma/i40iw-abi.h
8448
8449 INTEL SPEED SELECT TECHNOLOGY
8450 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8451 L:      platform-driver-x86@vger.kernel.org
8452 S:      Maintained
8453 F:      drivers/platform/x86/intel_speed_select_if/
8454 F:      tools/power/x86/intel-speed-select/
8455 F:      include/uapi/linux/isst_if.h
8456
8457 INTEL STRATIX10 FIRMWARE DRIVERS
8458 M:      Richard Gong <richard.gong@linux.intel.com>
8459 L:      linux-kernel@vger.kernel.org
8460 S:      Maintained
8461 F:      drivers/firmware/stratix10-rsu.c
8462 F:      drivers/firmware/stratix10-svc.c
8463 F:      include/linux/firmware/intel/stratix10-smc.h
8464 F:      include/linux/firmware/intel/stratix10-svc-client.h
8465 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
8466 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
8467
8468 INTEL TELEMETRY DRIVER
8469 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
8470 M:      "David E. Box" <david.e.box@linux.intel.com>
8471 L:      platform-driver-x86@vger.kernel.org
8472 S:      Maintained
8473 F:      arch/x86/include/asm/intel_telemetry.h
8474 F:      drivers/platform/x86/intel_telemetry*
8475
8476 INTEL VIRTUAL BUTTON DRIVER
8477 M:      AceLan Kao <acelan.kao@canonical.com>
8478 L:      platform-driver-x86@vger.kernel.org
8479 S:      Maintained
8480 F:      drivers/platform/x86/intel-vbtn.c
8481
8482 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
8483 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8484 L:      linux-wireless@vger.kernel.org
8485 S:      Supported
8486 F:      drivers/net/wireless/intel/iwlegacy/
8487
8488 INTEL WIRELESS WIFI LINK (iwlwifi)
8489 M:      Johannes Berg <johannes.berg@intel.com>
8490 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
8491 M:      Luca Coelho <luciano.coelho@intel.com>
8492 M:      Intel Linux Wireless <linuxwifi@intel.com>
8493 L:      linux-wireless@vger.kernel.org
8494 W:      http://intellinuxwireless.org
8495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
8496 S:      Supported
8497 F:      drivers/net/wireless/intel/iwlwifi/
8498
8499 INTEL WIRELESS WIMAX CONNECTION 2400
8500 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
8501 M:      linux-wimax@intel.com
8502 L:      wimax@linuxwimax.org (subscribers-only)
8503 S:      Supported
8504 W:      http://linuxwimax.org
8505 F:      Documentation/admin-guide/wimax/i2400m.rst
8506 F:      drivers/net/wimax/i2400m/
8507 F:      include/uapi/linux/wimax/i2400m.h
8508
8509 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
8510 M:      Mario Limonciello <mario.limonciello@dell.com>
8511 S:      Maintained
8512 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
8513
8514 INTEL(R) TRACE HUB
8515 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8516 S:      Supported
8517 F:      Documentation/trace/intel_th.rst
8518 F:      drivers/hwtracing/intel_th/
8519 F:      include/linux/intel_th.h
8520
8521 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
8522 M:      Ning Sun <ning.sun@intel.com>
8523 L:      tboot-devel@lists.sourceforge.net
8524 W:      http://tboot.sourceforge.net
8525 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
8526 S:      Supported
8527 F:      Documentation/x86/intel_txt.rst
8528 F:      include/linux/tboot.h
8529 F:      arch/x86/kernel/tboot.c
8530
8531 INTERCONNECT API
8532 M:      Georgi Djakov <georgi.djakov@linaro.org>
8533 L:      linux-pm@vger.kernel.org
8534 S:      Maintained
8535 F:      Documentation/driver-api/interconnect.rst
8536 F:      Documentation/devicetree/bindings/interconnect/
8537 F:      drivers/interconnect/
8538 F:      include/dt-bindings/interconnect/
8539 F:      include/linux/interconnect-provider.h
8540 F:      include/linux/interconnect.h
8541
8542 INVENSENSE MPU-3050 GYROSCOPE DRIVER
8543 M:      Linus Walleij <linus.walleij@linaro.org>
8544 L:      linux-iio@vger.kernel.org
8545 S:      Maintained
8546 F:      drivers/iio/gyro/mpu3050*
8547 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
8548
8549 IOC3 ETHERNET DRIVER
8550 M:      Ralf Baechle <ralf@linux-mips.org>
8551 L:      linux-mips@vger.kernel.org
8552 S:      Maintained
8553 F:      drivers/net/ethernet/sgi/ioc3-eth.c
8554
8555 IOMAP FILESYSTEM LIBRARY
8556 M:      Christoph Hellwig <hch@infradead.org>
8557 M:      Darrick J. Wong <darrick.wong@oracle.com>
8558 M:      linux-xfs@vger.kernel.org
8559 M:      linux-fsdevel@vger.kernel.org
8560 L:      linux-xfs@vger.kernel.org
8561 L:      linux-fsdevel@vger.kernel.org
8562 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
8563 S:      Supported
8564 F:      fs/iomap/
8565 F:      include/linux/iomap.h
8566
8567 IOMMU DRIVERS
8568 M:      Joerg Roedel <joro@8bytes.org>
8569 L:      iommu@lists.linux-foundation.org
8570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8571 S:      Maintained
8572 F:      Documentation/devicetree/bindings/iommu/
8573 F:      drivers/iommu/
8574 F:      include/linux/iommu.h
8575 F:      include/linux/of_iommu.h
8576 F:      include/linux/iova.h
8577
8578 IO_URING
8579 M:      Jens Axboe <axboe@kernel.dk>
8580 L:      linux-block@vger.kernel.org
8581 L:      linux-fsdevel@vger.kernel.org
8582 T:      git git://git.kernel.dk/linux-block
8583 T:      git git://git.kernel.dk/liburing
8584 S:      Maintained
8585 F:      fs/io_uring.c
8586 F:      include/uapi/linux/io_uring.h
8587
8588 IPMI SUBSYSTEM
8589 M:      Corey Minyard <minyard@acm.org>
8590 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
8591 W:      http://openipmi.sourceforge.net/
8592 S:      Supported
8593 F:      Documentation/devicetree/bindings/ipmi/
8594 F:      Documentation/IPMI.txt
8595 F:      drivers/char/ipmi/
8596 F:      include/linux/ipmi*
8597 F:      include/uapi/linux/ipmi*
8598
8599 IPS SCSI RAID DRIVER
8600 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
8601 L:      linux-scsi@vger.kernel.org
8602 W:      http://www.adaptec.com/
8603 S:      Maintained
8604 F:      drivers/scsi/ips*
8605
8606 IPVS
8607 M:      Wensong Zhang <wensong@linux-vs.org>
8608 M:      Simon Horman <horms@verge.net.au>
8609 M:      Julian Anastasov <ja@ssi.bg>
8610 L:      netdev@vger.kernel.org
8611 L:      lvs-devel@vger.kernel.org
8612 S:      Maintained
8613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
8614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
8615 F:      Documentation/networking/ipvs-sysctl.txt
8616 F:      include/net/ip_vs.h
8617 F:      include/uapi/linux/ip_vs.h
8618 F:      net/netfilter/ipvs/
8619
8620 IPWIRELESS DRIVER
8621 M:      Jiri Kosina <jikos@kernel.org>
8622 M:      David Sterba <dsterba@suse.com>
8623 S:      Odd Fixes
8624 F:      drivers/tty/ipwireless/
8625
8626 IPX NETWORK LAYER
8627 L:      netdev@vger.kernel.org
8628 S:      Obsolete
8629 F:      include/uapi/linux/ipx.h
8630
8631 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
8632 M:      Marc Zyngier <maz@kernel.org>
8633 S:      Maintained
8634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8635 F:      Documentation/IRQ-domain.txt
8636 F:      include/linux/irqdomain.h
8637 F:      kernel/irq/irqdomain.c
8638 F:      kernel/irq/msi.c
8639
8640 IRQ SUBSYSTEM
8641 M:      Thomas Gleixner <tglx@linutronix.de>
8642 L:      linux-kernel@vger.kernel.org
8643 S:      Maintained
8644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8645 F:      kernel/irq/
8646
8647 IRQCHIP DRIVERS
8648 M:      Thomas Gleixner <tglx@linutronix.de>
8649 M:      Jason Cooper <jason@lakedaemon.net>
8650 M:      Marc Zyngier <maz@kernel.org>
8651 L:      linux-kernel@vger.kernel.org
8652 S:      Maintained
8653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8654 F:      Documentation/devicetree/bindings/interrupt-controller/
8655 F:      drivers/irqchip/
8656
8657 ISA
8658 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
8659 S:      Maintained
8660 F:      Documentation/driver-api/isa.rst
8661 F:      drivers/base/isa.c
8662 F:      include/linux/isa.h
8663
8664 ISA RADIO MODULE
8665 M:      Hans Verkuil <hverkuil@xs4all.nl>
8666 L:      linux-media@vger.kernel.org
8667 T:      git git://linuxtv.org/media_tree.git
8668 W:      https://linuxtv.org
8669 S:      Maintained
8670 F:      drivers/media/radio/radio-isa*
8671
8672 ISAPNP
8673 M:      Jaroslav Kysela <perex@perex.cz>
8674 S:      Maintained
8675 F:      Documentation/driver-api/isapnp.rst
8676 F:      drivers/pnp/isapnp/
8677 F:      include/linux/isapnp.h
8678
8679 ISCSI
8680 M:      Lee Duncan <lduncan@suse.com>
8681 M:      Chris Leech <cleech@redhat.com>
8682 L:      open-iscsi@googlegroups.com
8683 W:      www.open-iscsi.com
8684 S:      Maintained
8685 F:      drivers/scsi/*iscsi*
8686 F:      include/scsi/*iscsi*
8687
8688 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
8689 M:      Peter Jones <pjones@redhat.com>
8690 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
8691 S:      Maintained
8692 F:      drivers/firmware/iscsi_ibft*
8693
8694 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
8695 M:      Sagi Grimberg <sagi@grimberg.me>
8696 M:      Max Gurtovoy <maxg@mellanox.com>
8697 L:      linux-rdma@vger.kernel.org
8698 S:      Supported
8699 W:      http://www.openfabrics.org
8700 W:      www.open-iscsi.org
8701 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8702 F:      drivers/infiniband/ulp/iser/
8703
8704 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
8705 M:      Sagi Grimberg <sagi@grimberg.me>
8706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
8707 L:      linux-rdma@vger.kernel.org
8708 L:      target-devel@vger.kernel.org
8709 S:      Supported
8710 W:      http://www.linux-iscsi.org
8711 F:      drivers/infiniband/ulp/isert
8712
8713 ISDN/mISDN SUBSYSTEM
8714 M:      Karsten Keil <isdn@linux-pingi.de>
8715 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
8716 L:      netdev@vger.kernel.org
8717 W:      http://www.isdn4linux.de
8718 S:      Maintained
8719 F:      drivers/isdn/mISDN
8720 F:      drivers/isdn/hardware
8721
8722 ISDN/CAPI SUBSYSTEM
8723 M:      Karsten Keil <isdn@linux-pingi.de>
8724 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
8725 L:      netdev@vger.kernel.org
8726 W:      http://www.isdn4linux.de
8727 S:      Odd Fixes
8728 F:      Documentation/isdn/
8729 F:      drivers/isdn/capi/
8730 F:      drivers/staging/isdn/
8731 F:      net/bluetooth/cmtp/
8732 F:      include/linux/isdn/
8733 F:      include/uapi/linux/isdn/
8734
8735 IT87 HARDWARE MONITORING DRIVER
8736 M:      Jean Delvare <jdelvare@suse.com>
8737 L:      linux-hwmon@vger.kernel.org
8738 S:      Maintained
8739 F:      Documentation/hwmon/it87.rst
8740 F:      drivers/hwmon/it87.c
8741
8742 IT913X MEDIA DRIVER
8743 M:      Antti Palosaari <crope@iki.fi>
8744 L:      linux-media@vger.kernel.org
8745 W:      https://linuxtv.org
8746 W:      http://palosaari.fi/linux/
8747 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8748 T:      git git://linuxtv.org/anttip/media_tree.git
8749 S:      Maintained
8750 F:      drivers/media/tuners/it913x*
8751
8752 IVTV VIDEO4LINUX DRIVER
8753 M:      Andy Walls <awalls@md.metrocast.net>
8754 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
8755 L:      linux-media@vger.kernel.org
8756 T:      git git://linuxtv.org/media_tree.git
8757 W:      http://www.ivtvdriver.org
8758 S:      Maintained
8759 F:      Documentation/media/v4l-drivers/ivtv*
8760 F:      drivers/media/pci/ivtv/
8761 F:      include/uapi/linux/ivtv*
8762
8763 IX2505V MEDIA DRIVER
8764 M:      Malcolm Priestley <tvboxspy@gmail.com>
8765 L:      linux-media@vger.kernel.org
8766 W:      https://linuxtv.org
8767 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8768 S:      Maintained
8769 F:      drivers/media/dvb-frontends/ix2505v*
8770
8771 JAILHOUSE HYPERVISOR INTERFACE
8772 M:      Jan Kiszka <jan.kiszka@siemens.com>
8773 L:      jailhouse-dev@googlegroups.com
8774 S:      Maintained
8775 F:      arch/x86/kernel/jailhouse.c
8776 F:      arch/x86/include/asm/jailhouse_para.h
8777
8778 JC42.4 TEMPERATURE SENSOR DRIVER
8779 M:      Guenter Roeck <linux@roeck-us.net>
8780 L:      linux-hwmon@vger.kernel.org
8781 S:      Maintained
8782 F:      drivers/hwmon/jc42.c
8783 F:      Documentation/hwmon/jc42.rst
8784
8785 JFS FILESYSTEM
8786 M:      Dave Kleikamp <shaggy@kernel.org>
8787 L:      jfs-discussion@lists.sourceforge.net
8788 W:      http://jfs.sourceforge.net/
8789 T:      git git://github.com/kleikamp/linux-shaggy.git
8790 S:      Maintained
8791 F:      Documentation/admin-guide/jfs.rst
8792 F:      fs/jfs/
8793
8794 JME NETWORK DRIVER
8795 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
8796 L:      netdev@vger.kernel.org
8797 S:      Maintained
8798 F:      drivers/net/ethernet/jme.*
8799
8800 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
8801 M:      David Woodhouse <dwmw2@infradead.org>
8802 M:      Richard Weinberger <richard@nod.at>
8803 L:      linux-mtd@lists.infradead.org
8804 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
8805 T:      git git://git.infradead.org/ubifs-2.6.git
8806 S:      Odd Fixes
8807 F:      fs/jffs2/
8808 F:      include/uapi/linux/jffs2.h
8809
8810 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
8811 M:      "Theodore Ts'o" <tytso@mit.edu>
8812 M:      Jan Kara <jack@suse.com>
8813 L:      linux-ext4@vger.kernel.org
8814 S:      Maintained
8815 F:      fs/jbd2/
8816 F:      include/linux/jbd2.h
8817
8818 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
8819 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
8820 L:      linux-media@vger.kernel.org
8821 S:      Maintained
8822 F:      drivers/media/platform/rcar_jpu.c
8823
8824 JSM Neo PCI based serial card
8825 L:      linux-serial@vger.kernel.org
8826 S:      Orphan
8827 F:      drivers/tty/serial/jsm/
8828
8829 K10TEMP HARDWARE MONITORING DRIVER
8830 M:      Clemens Ladisch <clemens@ladisch.de>
8831 L:      linux-hwmon@vger.kernel.org
8832 S:      Maintained
8833 F:      Documentation/hwmon/k10temp.rst
8834 F:      drivers/hwmon/k10temp.c
8835
8836 K8TEMP HARDWARE MONITORING DRIVER
8837 M:      Rudolf Marek <r.marek@assembler.cz>
8838 L:      linux-hwmon@vger.kernel.org
8839 S:      Maintained
8840 F:      Documentation/hwmon/k8temp.rst
8841 F:      drivers/hwmon/k8temp.c
8842
8843 KASAN
8844 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
8845 R:      Alexander Potapenko <glider@google.com>
8846 R:      Dmitry Vyukov <dvyukov@google.com>
8847 L:      kasan-dev@googlegroups.com
8848 S:      Maintained
8849 F:      arch/*/include/asm/kasan.h
8850 F:      arch/*/mm/kasan_init*
8851 F:      Documentation/dev-tools/kasan.rst
8852 F:      include/linux/kasan*.h
8853 F:      lib/test_kasan.c
8854 F:      mm/kasan/
8855 F:      scripts/Makefile.kasan
8856
8857 KCONFIG
8858 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
8859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
8860 L:      linux-kbuild@vger.kernel.org
8861 S:      Maintained
8862 F:      Documentation/kbuild/kconfig*
8863 F:      scripts/kconfig/
8864 F:      scripts/Kconfig.include
8865
8866 KDUMP
8867 M:      Dave Young <dyoung@redhat.com>
8868 M:      Baoquan He <bhe@redhat.com>
8869 R:      Vivek Goyal <vgoyal@redhat.com>
8870 L:      kexec@lists.infradead.org
8871 W:      http://lse.sourceforge.net/kdump/
8872 S:      Maintained
8873 F:      Documentation/admin-guide/kdump/
8874
8875 KEENE FM RADIO TRANSMITTER DRIVER
8876 M:      Hans Verkuil <hverkuil@xs4all.nl>
8877 L:      linux-media@vger.kernel.org
8878 T:      git git://linuxtv.org/media_tree.git
8879 W:      https://linuxtv.org
8880 S:      Maintained
8881 F:      drivers/media/radio/radio-keene*
8882
8883 KERNEL AUTOMOUNTER
8884 M:      Ian Kent <raven@themaw.net>
8885 L:      autofs@vger.kernel.org
8886 S:      Maintained
8887 F:      fs/autofs/
8888
8889 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
8890 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
8891 M:      Michal Marek <michal.lkml@markovi.net>
8892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
8893 L:      linux-kbuild@vger.kernel.org
8894 S:      Maintained
8895 F:      Documentation/kbuild/
8896 F:      Makefile
8897 F:      scripts/Kbuild*
8898 F:      scripts/Makefile*
8899 F:      scripts/basic/
8900 F:      scripts/mk*
8901 F:      scripts/*vmlinux*
8902 F:      scripts/mod/
8903 F:      scripts/package/
8904
8905 KERNEL JANITORS
8906 L:      kernel-janitors@vger.kernel.org
8907 W:      http://kernelnewbies.org/KernelJanitors
8908 S:      Odd Fixes
8909
8910 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
8911 M:      "J. Bruce Fields" <bfields@fieldses.org>
8912 M:      Chuck Lever <chuck.lever@oracle.com>
8913 L:      linux-nfs@vger.kernel.org
8914 W:      http://nfs.sourceforge.net/
8915 T:      git git://linux-nfs.org/~bfields/linux.git
8916 S:      Supported
8917 F:      fs/nfsd/
8918 F:      include/uapi/linux/nfsd/
8919 F:      fs/lockd/
8920 F:      fs/nfs_common/
8921 F:      net/sunrpc/
8922 F:      include/linux/lockd/
8923 F:      include/linux/sunrpc/
8924 F:      include/uapi/linux/sunrpc/
8925
8926 KERNEL SELFTEST FRAMEWORK
8927 M:      Shuah Khan <shuah@kernel.org>
8928 M:      Shuah Khan <skhan@linuxfoundation.org>
8929 L:      linux-kselftest@vger.kernel.org
8930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
8931 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
8932 S:      Maintained
8933 F:      tools/testing/selftests/
8934 F:      Documentation/dev-tools/kselftest*
8935
8936 KERNEL USERMODE HELPER
8937 M:      Luis Chamberlain <mcgrof@kernel.org>
8938 L:      linux-kernel@vger.kernel.org
8939 S:      Maintained
8940 F:      kernel/umh.c
8941 F:      include/linux/umh.h
8942
8943 KERNEL VIRTUAL MACHINE (KVM)
8944 M:      Paolo Bonzini <pbonzini@redhat.com>
8945 M:      Radim Krčmář <rkrcmar@redhat.com>
8946 L:      kvm@vger.kernel.org
8947 W:      http://www.linux-kvm.org
8948 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
8949 S:      Supported
8950 F:      Documentation/virt/kvm/
8951 F:      include/trace/events/kvm.h
8952 F:      include/uapi/asm-generic/kvm*
8953 F:      include/uapi/linux/kvm*
8954 F:      include/asm-generic/kvm*
8955 F:      include/linux/kvm*
8956 F:      include/kvm/iodev.h
8957 F:      virt/kvm/*
8958 F:      tools/kvm/
8959 F:      tools/testing/selftests/kvm/
8960
8961 KERNEL VIRTUAL MACHINE FOR ARM/ARM64 (KVM/arm, KVM/arm64)
8962 M:      Marc Zyngier <maz@kernel.org>
8963 R:      James Morse <james.morse@arm.com>
8964 R:      Julien Thierry <julien.thierry.kdev@gmail.com>
8965 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
8966 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8967 L:      kvmarm@lists.cs.columbia.edu
8968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
8969 S:      Maintained
8970 F:      arch/arm/include/uapi/asm/kvm*
8971 F:      arch/arm/include/asm/kvm*
8972 F:      arch/arm/kvm/
8973 F:      arch/arm64/include/uapi/asm/kvm*
8974 F:      arch/arm64/include/asm/kvm*
8975 F:      arch/arm64/kvm/
8976 F:      virt/kvm/arm/
8977 F:      include/kvm/arm_*
8978
8979 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
8980 M:      James Hogan <jhogan@kernel.org>
8981 L:      linux-mips@vger.kernel.org
8982 S:      Supported
8983 F:      arch/mips/include/uapi/asm/kvm*
8984 F:      arch/mips/include/asm/kvm*
8985 F:      arch/mips/kvm/
8986
8987 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
8988 M:      Paul Mackerras <paulus@ozlabs.org>
8989 L:      kvm-ppc@vger.kernel.org
8990 W:      http://www.linux-kvm.org/
8991 T:      git git://github.com/agraf/linux-2.6.git
8992 S:      Supported
8993 F:      arch/powerpc/include/uapi/asm/kvm*
8994 F:      arch/powerpc/include/asm/kvm*
8995 F:      arch/powerpc/kvm/
8996 F:      arch/powerpc/kernel/kvm*
8997
8998 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
8999 M:      Christian Borntraeger <borntraeger@de.ibm.com>
9000 M:      Janosch Frank <frankja@linux.ibm.com>
9001 R:      David Hildenbrand <david@redhat.com>
9002 R:      Cornelia Huck <cohuck@redhat.com>
9003 L:      kvm@vger.kernel.org
9004 W:      http://www.ibm.com/developerworks/linux/linux390/
9005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9006 S:      Supported
9007 F:      arch/s390/include/uapi/asm/kvm*
9008 F:      arch/s390/include/asm/gmap.h
9009 F:      arch/s390/include/asm/kvm*
9010 F:      arch/s390/kvm/
9011 F:      arch/s390/mm/gmap.c
9012 F:      tools/testing/selftests/kvm/s390x/
9013 F:      tools/testing/selftests/kvm/*/s390x/
9014
9015 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9016 M:      Paolo Bonzini <pbonzini@redhat.com>
9017 M:      Radim Krčmář <rkrcmar@redhat.com>
9018 R:      Sean Christopherson <sean.j.christopherson@intel.com>
9019 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
9020 R:      Wanpeng Li <wanpengli@tencent.com>
9021 R:      Jim Mattson <jmattson@google.com>
9022 R:      Joerg Roedel <joro@8bytes.org>
9023 L:      kvm@vger.kernel.org
9024 W:      http://www.linux-kvm.org
9025 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9026 S:      Supported
9027 F:      arch/x86/kvm/
9028 F:      arch/x86/kvm/*/
9029 F:      arch/x86/include/uapi/asm/kvm*
9030 F:      arch/x86/include/uapi/asm/vmx.h
9031 F:      arch/x86/include/uapi/asm/svm.h
9032 F:      arch/x86/include/asm/kvm*
9033 F:      arch/x86/include/asm/pvclock-abi.h
9034 F:      arch/x86/include/asm/svm.h
9035 F:      arch/x86/include/asm/vmx.h
9036 F:      arch/x86/kernel/kvm.c
9037 F:      arch/x86/kernel/kvmclock.c
9038
9039 KERNFS
9040 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9041 M:      Tejun Heo <tj@kernel.org>
9042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9043 S:      Supported
9044 F:      include/linux/kernfs.h
9045 F:      fs/kernfs/
9046
9047 KEXEC
9048 M:      Eric Biederman <ebiederm@xmission.com>
9049 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9050 L:      kexec@lists.infradead.org
9051 S:      Maintained
9052 F:      include/linux/kexec.h
9053 F:      include/uapi/linux/kexec.h
9054 F:      kernel/kexec*
9055
9056 KEYS-ENCRYPTED
9057 M:      Mimi Zohar <zohar@linux.ibm.com>
9058 L:      linux-integrity@vger.kernel.org
9059 L:      keyrings@vger.kernel.org
9060 S:      Supported
9061 F:      Documentation/security/keys/trusted-encrypted.rst
9062 F:      include/keys/encrypted-type.h
9063 F:      security/keys/encrypted-keys/
9064
9065 KEYS-TRUSTED
9066 M:      James Bottomley <jejb@linux.ibm.com>
9067 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9068 M:      Mimi Zohar <zohar@linux.ibm.com>
9069 L:      linux-integrity@vger.kernel.org
9070 L:      keyrings@vger.kernel.org
9071 S:      Supported
9072 F:      Documentation/security/keys/trusted-encrypted.rst
9073 F:      include/keys/trusted-type.h
9074 F:      security/keys/trusted.c
9075 F:      include/keys/trusted.h
9076
9077 KEYS/KEYRINGS:
9078 M:      David Howells <dhowells@redhat.com>
9079 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9080 L:      keyrings@vger.kernel.org
9081 S:      Maintained
9082 F:      Documentation/security/keys/core.rst
9083 F:      include/linux/key.h
9084 F:      include/linux/key-type.h
9085 F:      include/linux/keyctl.h
9086 F:      include/uapi/linux/keyctl.h
9087 F:      include/keys/
9088 F:      security/keys/
9089
9090 KGDB / KDB /debug_core
9091 M:      Jason Wessel <jason.wessel@windriver.com>
9092 M:      Daniel Thompson <daniel.thompson@linaro.org>
9093 R:      Douglas Anderson <dianders@chromium.org>
9094 W:      http://kgdb.wiki.kernel.org/
9095 L:      kgdb-bugreport@lists.sourceforge.net
9096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9097 S:      Maintained
9098 F:      Documentation/dev-tools/kgdb.rst
9099 F:      drivers/misc/kgdbts.c
9100 F:      drivers/tty/serial/kgdboc.c
9101 F:      include/linux/kdb.h
9102 F:      include/linux/kgdb.h
9103 F:      kernel/debug/
9104
9105 KMEMLEAK
9106 M:      Catalin Marinas <catalin.marinas@arm.com>
9107 S:      Maintained
9108 F:      Documentation/dev-tools/kmemleak.rst
9109 F:      include/linux/kmemleak.h
9110 F:      mm/kmemleak.c
9111 F:      mm/kmemleak-test.c
9112
9113 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9114 M:      Luis Chamberlain <mcgrof@kernel.org>
9115 L:      linux-kernel@vger.kernel.org
9116 S:      Maintained
9117 F:      kernel/kmod.c
9118 F:      include/linux/kmod.h
9119 F:      lib/test_kmod.c
9120 F:      tools/testing/selftests/kmod/
9121
9122 KPROBES
9123 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
9124 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9125 M:      "David S. Miller" <davem@davemloft.net>
9126 M:      Masami Hiramatsu <mhiramat@kernel.org>
9127 S:      Maintained
9128 F:      Documentation/kprobes.txt
9129 F:      include/linux/kprobes.h
9130 F:      include/asm-generic/kprobes.h
9131 F:      kernel/kprobes.c
9132
9133 KS0108 LCD CONTROLLER DRIVER
9134 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
9135 S:      Maintained
9136 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9137 F:      drivers/auxdisplay/ks0108.c
9138 F:      include/linux/ks0108.h
9139
9140 L3MDEV
9141 M:      David Ahern <dsahern@kernel.org>
9142 L:      netdev@vger.kernel.org
9143 S:      Maintained
9144 F:      net/l3mdev
9145 F:      include/net/l3mdev.h
9146
9147 L7 BPF FRAMEWORK
9148 M:      John Fastabend <john.fastabend@gmail.com>
9149 M:      Daniel Borkmann <daniel@iogearbox.net>
9150 L:      netdev@vger.kernel.org
9151 L:      bpf@vger.kernel.org
9152 S:      Maintained
9153 F:      include/linux/skmsg.h
9154 F:      net/core/skmsg.c
9155 F:      net/core/sock_map.c
9156 F:      net/ipv4/tcp_bpf.c
9157
9158 LANTIQ / INTEL Ethernet drivers
9159 M:      Hauke Mehrtens <hauke@hauke-m.de>
9160 L:      netdev@vger.kernel.org
9161 S:      Maintained
9162 F:      net/dsa/tag_gswip.c
9163 F:      drivers/net/ethernet/lantiq_xrx200.c
9164 F:      drivers/net/dsa/lantiq_pce.h
9165 F:      drivers/net/dsa/lantiq_gswip.c
9166
9167 LANTIQ MIPS ARCHITECTURE
9168 M:      John Crispin <john@phrozen.org>
9169 L:      linux-mips@vger.kernel.org
9170 S:      Maintained
9171 F:      arch/mips/lantiq
9172 F:      drivers/soc/lantiq
9173
9174 LAPB module
9175 L:      linux-x25@vger.kernel.org
9176 S:      Orphan
9177 F:      Documentation/networking/lapb-module.txt
9178 F:      include/*/lapb.h
9179 F:      net/lapb/
9180
9181 LASI 53c700 driver for PARISC
9182 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9183 L:      linux-scsi@vger.kernel.org
9184 S:      Maintained
9185 F:      Documentation/scsi/53c700.txt
9186 F:      drivers/scsi/53c700*
9187
9188 LEAKING_ADDRESSES
9189 M:      Tobin C. Harding <me@tobin.cc>
9190 M:      Tycho Andersen <tycho@tycho.ws>
9191 L:      kernel-hardening@lists.openwall.com
9192 S:      Maintained
9193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9194 F:      scripts/leaking_addresses.pl
9195
9196 LED SUBSYSTEM
9197 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
9198 M:      Pavel Machek <pavel@ucw.cz>
9199 R:      Dan Murphy <dmurphy@ti.com>
9200 L:      linux-leds@vger.kernel.org
9201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
9202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9203 S:      Maintained
9204 F:      Documentation/devicetree/bindings/leds/
9205 F:      drivers/leds/
9206 F:      include/linux/leds.h
9207
9208 LEGACY EEPROM DRIVER
9209 M:      Jean Delvare <jdelvare@suse.com>
9210 S:      Maintained
9211 F:      Documentation/misc-devices/eeprom.rst
9212 F:      drivers/misc/eeprom/eeprom.c
9213
9214 LEGO MINDSTORMS EV3
9215 R:      David Lechner <david@lechnology.com>
9216 S:      Maintained
9217 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9218 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9219 F:      drivers/power/supply/lego_ev3_battery.c
9220
9221 LEGO USB Tower driver
9222 M:      Juergen Stuber <starblue@users.sourceforge.net>
9223 L:      legousb-devel@lists.sourceforge.net
9224 W:      http://legousb.sourceforge.net/
9225 S:      Maintained
9226 F:      drivers/usb/misc/legousbtower.c
9227
9228 LG LAPTOP EXTRAS
9229 M:      Matan Ziv-Av <matan@svgalib.org>
9230 L:      platform-driver-x86@vger.kernel.org
9231 S:      Maintained
9232 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9233 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9234 F:      drivers/platform/x86/lg-laptop.c
9235
9236 LG2160 MEDIA DRIVER
9237 M:      Michael Krufky <mkrufky@linuxtv.org>
9238 L:      linux-media@vger.kernel.org
9239 W:      https://linuxtv.org
9240 W:      http://github.com/mkrufky
9241 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9242 T:      git git://linuxtv.org/mkrufky/tuners.git
9243 S:      Maintained
9244 F:      drivers/media/dvb-frontends/lg2160.*
9245
9246 LGDT3305 MEDIA DRIVER
9247 M:      Michael Krufky <mkrufky@linuxtv.org>
9248 L:      linux-media@vger.kernel.org
9249 W:      https://linuxtv.org
9250 W:      http://github.com/mkrufky
9251 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9252 T:      git git://linuxtv.org/mkrufky/tuners.git
9253 S:      Maintained
9254 F:      drivers/media/dvb-frontends/lgdt3305.*
9255
9256 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9257 M:      Viresh Kumar <vireshk@kernel.org>
9258 L:      linux-ide@vger.kernel.org
9259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9260 S:      Maintained
9261 F:      include/linux/pata_arasan_cf_data.h
9262 F:      drivers/ata/pata_arasan_cf.c
9263
9264 LIBATA PATA DRIVERS
9265 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
9266 M:      Jens Axboe <axboe@kernel.dk>
9267 L:      linux-ide@vger.kernel.org
9268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9269 S:      Maintained
9270 F:      drivers/ata/pata_*.c
9271 F:      drivers/ata/ata_generic.c
9272
9273 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9274 M:      Linus Walleij <linus.walleij@linaro.org>
9275 L:      linux-ide@vger.kernel.org
9276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9277 S:      Maintained
9278 F:      drivers/ata/pata_ftide010.c
9279 F:      drivers/ata/sata_gemini.c
9280 F:      drivers/ata/sata_gemini.h
9281
9282 LIBATA SATA AHCI PLATFORM devices support
9283 M:      Hans de Goede <hdegoede@redhat.com>
9284 M:      Jens Axboe <axboe@kernel.dk>
9285 L:      linux-ide@vger.kernel.org
9286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9287 S:      Maintained
9288 F:      drivers/ata/ahci_platform.c
9289 F:      drivers/ata/libahci_platform.c
9290 F:      include/linux/ahci_platform.h
9291
9292 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
9293 M:      Mikael Pettersson <mikpelinux@gmail.com>
9294 L:      linux-ide@vger.kernel.org
9295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9296 S:      Maintained
9297 F:      drivers/ata/sata_promise.*
9298
9299 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
9300 M:      Jens Axboe <axboe@kernel.dk>
9301 L:      linux-ide@vger.kernel.org
9302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9303 S:      Maintained
9304 F:      drivers/ata/
9305 F:      include/linux/ata.h
9306 F:      include/linux/libata.h
9307 F:      Documentation/devicetree/bindings/ata/
9308
9309 LIBLOCKDEP
9310 M:      Sasha Levin <alexander.levin@microsoft.com>
9311 S:      Maintained
9312 F:      tools/lib/lockdep/
9313
9314 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
9315 M:      Dan Williams <dan.j.williams@intel.com>
9316 M:      Vishal Verma <vishal.l.verma@intel.com>
9317 M:      Dave Jiang <dave.jiang@intel.com>
9318 L:      linux-nvdimm@lists.01.org
9319 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9320 S:      Supported
9321 F:      drivers/nvdimm/blk.c
9322 F:      drivers/nvdimm/region_devs.c
9323
9324 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
9325 M:      Vishal Verma <vishal.l.verma@intel.com>
9326 M:      Dan Williams <dan.j.williams@intel.com>
9327 M:      Dave Jiang <dave.jiang@intel.com>
9328 L:      linux-nvdimm@lists.01.org
9329 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9330 S:      Supported
9331 F:      drivers/nvdimm/btt*
9332
9333 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
9334 M:      Dan Williams <dan.j.williams@intel.com>
9335 M:      Vishal Verma <vishal.l.verma@intel.com>
9336 M:      Dave Jiang <dave.jiang@intel.com>
9337 L:      linux-nvdimm@lists.01.org
9338 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9339 S:      Supported
9340 F:      drivers/nvdimm/pmem*
9341
9342 LIBNVDIMM: DEVICETREE BINDINGS
9343 M:      Oliver O'Halloran <oohall@gmail.com>
9344 L:      linux-nvdimm@lists.01.org
9345 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9346 S:      Supported
9347 F:      drivers/nvdimm/of_pmem.c
9348 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
9349
9350 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
9351 M:      Dan Williams <dan.j.williams@intel.com>
9352 M:      Vishal Verma <vishal.l.verma@intel.com>
9353 M:      Dave Jiang <dave.jiang@intel.com>
9354 M:      Keith Busch <keith.busch@intel.com>
9355 M:      Ira Weiny <ira.weiny@intel.com>
9356 L:      linux-nvdimm@lists.01.org
9357 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
9359 S:      Supported
9360 F:      drivers/nvdimm/*
9361 F:      drivers/acpi/nfit/*
9362 F:      include/linux/nd.h
9363 F:      include/linux/libnvdimm.h
9364 F:      include/uapi/linux/ndctl.h
9365
9366 LICENSES and SPDX stuff
9367 M:      Thomas Gleixner <tglx@linutronix.de>
9368 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9369 L:      linux-spdx@vger.kernel.org
9370 S:      Maintained
9371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
9372 F:      COPYING
9373 F:      Documentation/process/license-rules.rst
9374 F:      LICENSES/
9375 F:      scripts/spdxcheck-test.sh
9376 F:      scripts/spdxcheck.py
9377
9378 LIGHTNVM PLATFORM SUPPORT
9379 M:      Matias Bjorling <mb@lightnvm.io>
9380 W:      http://github/OpenChannelSSD
9381 L:      linux-block@vger.kernel.org
9382 S:      Maintained
9383 F:      drivers/lightnvm/
9384 F:      include/linux/lightnvm.h
9385 F:      include/uapi/linux/lightnvm.h
9386
9387 LINUX FOR POWER MACINTOSH
9388 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9389 W:      http://www.penguinppc.org/
9390 L:      linuxppc-dev@lists.ozlabs.org
9391 S:      Maintained
9392 F:      arch/powerpc/platforms/powermac/
9393 F:      drivers/macintosh/
9394
9395 LINUX FOR POWERPC (32-BIT AND 64-BIT)
9396 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9397 M:      Paul Mackerras <paulus@samba.org>
9398 M:      Michael Ellerman <mpe@ellerman.id.au>
9399 W:      https://github.com/linuxppc/linux/wiki
9400 L:      linuxppc-dev@lists.ozlabs.org
9401 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
9402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
9403 S:      Supported
9404 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
9405 F:      Documentation/devicetree/bindings/powerpc/
9406 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
9407 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
9408 F:      Documentation/powerpc/
9409 F:      arch/powerpc/
9410 F:      drivers/char/tpm/tpm_ibmvtpm*
9411 F:      drivers/crypto/nx/
9412 F:      drivers/crypto/vmx/
9413 F:      drivers/i2c/busses/i2c-opal.c
9414 F:      drivers/net/ethernet/ibm/ibmveth.*
9415 F:      drivers/net/ethernet/ibm/ibmvnic.*
9416 F:      drivers/pci/hotplug/pnv_php.c
9417 F:      drivers/pci/hotplug/rpa*
9418 F:      drivers/rtc/rtc-opal.c
9419 F:      drivers/scsi/ibmvscsi/
9420 F:      drivers/tty/hvc/hvc_opal.c
9421 F:      drivers/watchdog/wdrtas.c
9422 F:      tools/testing/selftests/powerpc
9423 N:      /pmac
9424 N:      powermac
9425 N:      powernv
9426 N:      [^a-z0-9]ps3
9427 N:      pseries
9428
9429 LINUX FOR POWERPC EMBEDDED MPC5XXX
9430 M:      Anatolij Gustschin <agust@denx.de>
9431 L:      linuxppc-dev@lists.ozlabs.org
9432 T:      git git://git.denx.de/linux-denx-agust.git
9433 S:      Maintained
9434 F:      arch/powerpc/platforms/512x/
9435 F:      arch/powerpc/platforms/52xx/
9436
9437 LINUX FOR POWERPC EMBEDDED PPC4XX
9438 M:      Alistair Popple <alistair@popple.id.au>
9439 M:      Matt Porter <mporter@kernel.crashing.org>
9440 W:      http://www.penguinppc.org/
9441 L:      linuxppc-dev@lists.ozlabs.org
9442 S:      Maintained
9443 F:      arch/powerpc/platforms/40x/
9444 F:      arch/powerpc/platforms/44x/
9445
9446 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
9447 M:      Scott Wood <oss@buserror.net>
9448 M:      Kumar Gala <galak@kernel.crashing.org>
9449 W:      http://www.penguinppc.org/
9450 L:      linuxppc-dev@lists.ozlabs.org
9451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
9452 S:      Maintained
9453 F:      arch/powerpc/platforms/83xx/
9454 F:      arch/powerpc/platforms/85xx/
9455 F:      Documentation/devicetree/bindings/powerpc/fsl/
9456
9457 LINUX FOR POWERPC EMBEDDED PPC8XX
9458 M:      Vitaly Bordug <vitb@kernel.crashing.org>
9459 W:      http://www.penguinppc.org/
9460 L:      linuxppc-dev@lists.ozlabs.org
9461 S:      Maintained
9462 F:      arch/powerpc/platforms/8xx/
9463
9464 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
9465 L:      linuxppc-dev@lists.ozlabs.org
9466 S:      Orphan
9467 F:      arch/powerpc/*/*virtex*
9468 F:      arch/powerpc/*/*/*virtex*
9469
9470 LINUX FOR POWERPC PA SEMI PWRFICIENT
9471 L:      linuxppc-dev@lists.ozlabs.org
9472 S:      Orphan
9473 F:      arch/powerpc/platforms/pasemi/
9474 F:      drivers/*/*pasemi*
9475 F:      drivers/*/*/*pasemi*
9476
9477 LINUX KERNEL DUMP TEST MODULE (LKDTM)
9478 M:      Kees Cook <keescook@chromium.org>
9479 S:      Maintained
9480 F:      drivers/misc/lkdtm/*
9481
9482 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
9483 M:      Alan Stern <stern@rowland.harvard.edu>
9484 M:      Andrea Parri <parri.andrea@gmail.com>
9485 M:      Will Deacon <will@kernel.org>
9486 M:      Peter Zijlstra <peterz@infradead.org>
9487 M:      Boqun Feng <boqun.feng@gmail.com>
9488 M:      Nicholas Piggin <npiggin@gmail.com>
9489 M:      David Howells <dhowells@redhat.com>
9490 M:      Jade Alglave <j.alglave@ucl.ac.uk>
9491 M:      Luc Maranget <luc.maranget@inria.fr>
9492 M:      "Paul E. McKenney" <paulmck@kernel.org>
9493 R:      Akira Yokosawa <akiyks@gmail.com>
9494 R:      Daniel Lustig <dlustig@nvidia.com>
9495 L:      linux-kernel@vger.kernel.org
9496 L:      linux-arch@vger.kernel.org
9497 S:      Supported
9498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
9499 F:      tools/memory-model/
9500 F:      Documentation/atomic_bitops.txt
9501 F:      Documentation/atomic_t.txt
9502 F:      Documentation/core-api/atomic_ops.rst
9503 F:      Documentation/core-api/refcount-vs-atomic.rst
9504 F:      Documentation/memory-barriers.txt
9505
9506 LIS3LV02D ACCELEROMETER DRIVER
9507 M:      Eric Piel <eric.piel@tremplin-utc.net>
9508 S:      Maintained
9509 F:      Documentation/misc-devices/lis3lv02d.rst
9510 F:      drivers/misc/lis3lv02d/
9511 F:      drivers/platform/x86/hp_accel.c
9512
9513 LIVE PATCHING
9514 M:      Josh Poimboeuf <jpoimboe@redhat.com>
9515 M:      Jiri Kosina <jikos@kernel.org>
9516 M:      Miroslav Benes <mbenes@suse.cz>
9517 M:      Petr Mladek <pmladek@suse.com>
9518 R:      Joe Lawrence <joe.lawrence@redhat.com>
9519 S:      Maintained
9520 F:      kernel/livepatch/
9521 F:      include/linux/livepatch.h
9522 F:      arch/x86/include/asm/livepatch.h
9523 F:      arch/x86/kernel/livepatch.c
9524 F:      Documentation/livepatch/
9525 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
9526 F:      samples/livepatch/
9527 F:      tools/testing/selftests/livepatch/
9528 L:      live-patching@vger.kernel.org
9529 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
9530
9531 LLC (802.2)
9532 L:      netdev@vger.kernel.org
9533 S:      Odd fixes
9534 F:      include/linux/llc.h
9535 F:      include/uapi/linux/llc.h
9536 F:      include/net/llc*
9537 F:      net/llc/
9538
9539 LM73 HARDWARE MONITOR DRIVER
9540 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
9541 L:      linux-hwmon@vger.kernel.org
9542 S:      Maintained
9543 F:      drivers/hwmon/lm73.c
9544
9545 LM78 HARDWARE MONITOR DRIVER
9546 M:      Jean Delvare <jdelvare@suse.com>
9547 L:      linux-hwmon@vger.kernel.org
9548 S:      Maintained
9549 F:      Documentation/hwmon/lm78.rst
9550 F:      drivers/hwmon/lm78.c
9551
9552 LM83 HARDWARE MONITOR DRIVER
9553 M:      Jean Delvare <jdelvare@suse.com>
9554 L:      linux-hwmon@vger.kernel.org
9555 S:      Maintained
9556 F:      Documentation/hwmon/lm83.rst
9557 F:      drivers/hwmon/lm83.c
9558
9559 LM90 HARDWARE MONITOR DRIVER
9560 M:      Jean Delvare <jdelvare@suse.com>
9561 L:      linux-hwmon@vger.kernel.org
9562 S:      Maintained
9563 F:      Documentation/hwmon/lm90.rst
9564 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
9565 F:      drivers/hwmon/lm90.c
9566 F:      include/dt-bindings/thermal/lm90.h
9567
9568 LM95234 HARDWARE MONITOR DRIVER
9569 M:      Guenter Roeck <linux@roeck-us.net>
9570 L:      linux-hwmon@vger.kernel.org
9571 S:      Maintained
9572 F:      Documentation/hwmon/lm95234.rst
9573 F:      drivers/hwmon/lm95234.c
9574
9575 LME2510 MEDIA DRIVER
9576 M:      Malcolm Priestley <tvboxspy@gmail.com>
9577 L:      linux-media@vger.kernel.org
9578 W:      https://linuxtv.org
9579 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9580 S:      Maintained
9581 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
9582
9583 LOADPIN SECURITY MODULE
9584 M:      Kees Cook <keescook@chromium.org>
9585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
9586 S:      Supported
9587 F:      security/loadpin/
9588 F:      Documentation/admin-guide/LSM/LoadPin.rst
9589
9590 LOCKING PRIMITIVES
9591 M:      Peter Zijlstra <peterz@infradead.org>
9592 M:      Ingo Molnar <mingo@redhat.com>
9593 M:      Will Deacon <will@kernel.org>
9594 L:      linux-kernel@vger.kernel.org
9595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
9596 S:      Maintained
9597 F:      Documentation/locking/
9598 F:      include/linux/lockdep.h
9599 F:      include/linux/spinlock*.h
9600 F:      arch/*/include/asm/spinlock*.h
9601 F:      include/linux/rwlock*.h
9602 F:      include/linux/mutex*.h
9603 F:      include/linux/rwsem*.h
9604 F:      include/linux/seqlock.h
9605 F:      lib/locking*.[ch]
9606 F:      kernel/locking/
9607 X:      kernel/locking/locktorture.c
9608
9609 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
9610 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
9611 L:      linux-ntfs-dev@lists.sourceforge.net
9612 W:      http://www.linux-ntfs.org/content/view/19/37/
9613 S:      Maintained
9614 F:      Documentation/admin-guide/ldm.rst
9615 F:      block/partitions/ldm.*
9616
9617 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
9618 M:      Sathya Prakash <sathya.prakash@broadcom.com>
9619 M:      Chaitra P B <chaitra.basappa@broadcom.com>
9620 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
9621 L:      MPT-FusionLinux.pdl@broadcom.com
9622 L:      linux-scsi@vger.kernel.org
9623 W:      http://www.avagotech.com/support/
9624 S:      Supported
9625 F:      drivers/message/fusion/
9626 F:      drivers/scsi/mpt3sas/
9627
9628 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
9629 M:      Matthew Wilcox <willy@infradead.org>
9630 L:      linux-scsi@vger.kernel.org
9631 S:      Maintained
9632 F:      drivers/scsi/sym53c8xx_2/
9633
9634 LTC1660 DAC DRIVER
9635 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
9636 L:      linux-iio@vger.kernel.org
9637 S:      Maintained
9638 F:      Documentation/devicetree/bindings/iio/dac/ltc1660.txt
9639 F:      drivers/iio/dac/ltc1660.c
9640
9641 LTC4261 HARDWARE MONITOR DRIVER
9642 M:      Guenter Roeck <linux@roeck-us.net>
9643 L:      linux-hwmon@vger.kernel.org
9644 S:      Maintained
9645 F:      Documentation/hwmon/ltc4261.rst
9646 F:      drivers/hwmon/ltc4261.c
9647
9648 LTC4306 I2C MULTIPLEXER DRIVER
9649 M:      Michael Hennerich <michael.hennerich@analog.com>
9650 W:      http://ez.analog.com/community/linux-device-drivers
9651 L:      linux-i2c@vger.kernel.org
9652 S:      Supported
9653 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
9654 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
9655
9656 LTP (Linux Test Project)
9657 M:      Mike Frysinger <vapier@gentoo.org>
9658 M:      Cyril Hrubis <chrubis@suse.cz>
9659 M:      Wanlong Gao <wanlong.gao@gmail.com>
9660 M:      Jan Stancek <jstancek@redhat.com>
9661 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
9662 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
9663 L:      ltp@lists.linux.it (subscribers-only)
9664 W:      http://linux-test-project.github.io/
9665 T:      git git://github.com/linux-test-project/ltp.git
9666 S:      Maintained
9667
9668 M68K ARCHITECTURE
9669 M:      Geert Uytterhoeven <geert@linux-m68k.org>
9670 L:      linux-m68k@lists.linux-m68k.org
9671 W:      http://www.linux-m68k.org/
9672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
9673 S:      Maintained
9674 F:      arch/m68k/
9675 F:      drivers/zorro/
9676
9677 M68K ON APPLE MACINTOSH
9678 M:      Joshua Thompson <funaho@jurai.org>
9679 W:      http://www.mac.linux-m68k.org/
9680 L:      linux-m68k@lists.linux-m68k.org
9681 S:      Maintained
9682 F:      arch/m68k/mac/
9683
9684 M68K ON HP9000/300
9685 M:      Philip Blundell <philb@gnu.org>
9686 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
9687 S:      Maintained
9688 F:      arch/m68k/hp300/
9689
9690 M88DS3103 MEDIA DRIVER
9691 M:      Antti Palosaari <crope@iki.fi>
9692 L:      linux-media@vger.kernel.org
9693 W:      https://linuxtv.org
9694 W:      http://palosaari.fi/linux/
9695 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9696 T:      git git://linuxtv.org/anttip/media_tree.git
9697 S:      Maintained
9698 F:      drivers/media/dvb-frontends/m88ds3103*
9699
9700 M88RS2000 MEDIA DRIVER
9701 M:      Malcolm Priestley <tvboxspy@gmail.com>
9702 L:      linux-media@vger.kernel.org
9703 W:      https://linuxtv.org
9704 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9705 S:      Maintained
9706 F:      drivers/media/dvb-frontends/m88rs2000*
9707
9708 MA901 MASTERKIT USB FM RADIO DRIVER
9709 M:      Alexey Klimov <klimov.linux@gmail.com>
9710 L:      linux-media@vger.kernel.org
9711 T:      git git://linuxtv.org/media_tree.git
9712 S:      Maintained
9713 F:      drivers/media/radio/radio-ma901.c
9714
9715 MAC80211
9716 M:      Johannes Berg <johannes@sipsolutions.net>
9717 L:      linux-wireless@vger.kernel.org
9718 W:      http://wireless.kernel.org/
9719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
9721 S:      Maintained
9722 F:      Documentation/networking/mac80211-injection.txt
9723 F:      include/net/mac80211.h
9724 F:      net/mac80211/
9725 F:      drivers/net/wireless/mac80211_hwsim.[ch]
9726 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
9727
9728 MAILBOX API
9729 M:      Jassi Brar <jassisinghbrar@gmail.com>
9730 L:      linux-kernel@vger.kernel.org
9731 S:      Maintained
9732 F:      drivers/mailbox/
9733 F:      include/linux/mailbox_client.h
9734 F:      include/linux/mailbox_controller.h
9735
9736 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
9737 M:      Michael Kerrisk <mtk.manpages@gmail.com>
9738 W:      http://www.kernel.org/doc/man-pages
9739 L:      linux-man@vger.kernel.org
9740 S:      Maintained
9741
9742 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
9743 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
9744 L:      linux-mips@vger.kernel.org
9745 S:      Maintained
9746 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
9747
9748 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
9749 M:      Andrew Lunn <andrew@lunn.ch>
9750 M:      Vivien Didelot <vivien.didelot@gmail.com>
9751 L:      netdev@vger.kernel.org
9752 S:      Maintained
9753 F:      drivers/net/dsa/mv88e6xxx/
9754 F:      include/linux/platform_data/mv88e6xxx.h
9755 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
9756 F:      Documentation/networking/devlink-params-mv88e6xxx.txt
9757
9758 MARVELL ARMADA DRM SUPPORT
9759 M:      Russell King <linux@armlinux.org.uk>
9760 S:      Maintained
9761 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
9762 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
9763 F:      drivers/gpu/drm/armada/
9764 F:      include/uapi/drm/armada_drm.h
9765 F:      Documentation/devicetree/bindings/display/armada/
9766
9767 MARVELL ARMADA 3700 PHY DRIVERS
9768 M:      Miquel Raynal <miquel.raynal@bootlin.com>
9769 S:      Maintained
9770 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
9771 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
9772 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
9773 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
9774
9775 MARVELL CRYPTO DRIVER
9776 M:      Boris Brezillon <bbrezillon@kernel.org>
9777 M:      Arnaud Ebalard <arno@natisbad.org>
9778 F:      drivers/crypto/marvell/
9779 S:      Maintained
9780 L:      linux-crypto@vger.kernel.org
9781
9782 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
9783 M:      Mirko Lindner <mlindner@marvell.com>
9784 M:      Stephen Hemminger <stephen@networkplumber.org>
9785 L:      netdev@vger.kernel.org
9786 S:      Maintained
9787 F:      drivers/net/ethernet/marvell/sk*
9788
9789 MARVELL LIBERTAS WIRELESS DRIVER
9790 L:      libertas-dev@lists.infradead.org
9791 S:      Orphan
9792 F:      drivers/net/wireless/marvell/libertas/
9793
9794 MARVELL MACCHIATOBIN SUPPORT
9795 M:      Russell King <linux@armlinux.org.uk>
9796 L:      linux-arm-kernel@lists.infradead.org
9797 S:      Maintained
9798 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
9799
9800 MARVELL MV643XX ETHERNET DRIVER
9801 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
9802 L:      netdev@vger.kernel.org
9803 S:      Maintained
9804 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
9805 F:      include/linux/mv643xx.h
9806
9807 MARVELL MV88X3310 PHY DRIVER
9808 M:      Russell King <linux@armlinux.org.uk>
9809 L:      netdev@vger.kernel.org
9810 S:      Maintained
9811 F:      drivers/net/phy/marvell10g.c
9812
9813 MARVELL MVEBU THERMAL DRIVER
9814 M:      Miquel Raynal <miquel.raynal@bootlin.com>
9815 S:      Maintained
9816 F:      drivers/thermal/armada_thermal.c
9817
9818 MARVELL MVNETA ETHERNET DRIVER
9819 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
9820 L:      netdev@vger.kernel.org
9821 S:      Maintained
9822 F:      drivers/net/ethernet/marvell/mvneta.*
9823
9824 MARVELL MWIFIEX WIRELESS DRIVER
9825 M:      Amitkumar Karwar <amitkarwar@gmail.com>
9826 M:      Nishant Sarmukadam <nishants@marvell.com>
9827 M:      Ganapathi Bhat <gbhat@marvell.com>
9828 M:      Xinming Hu <huxinming820@gmail.com>
9829 L:      linux-wireless@vger.kernel.org
9830 S:      Maintained
9831 F:      drivers/net/wireless/marvell/mwifiex/
9832
9833 MARVELL MWL8K WIRELESS DRIVER
9834 M:      Lennert Buytenhek <buytenh@wantstofly.org>
9835 L:      linux-wireless@vger.kernel.org
9836 S:      Odd Fixes
9837 F:      drivers/net/wireless/marvell/mwl8k.c
9838
9839 MARVELL NAND CONTROLLER DRIVER
9840 M:      Miquel Raynal <miquel.raynal@bootlin.com>
9841 L:      linux-mtd@lists.infradead.org
9842 S:      Maintained
9843 F:      drivers/mtd/nand/raw/marvell_nand.c
9844 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
9845
9846 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
9847 M:      Nicolas Pitre <nico@fluxnic.net>
9848 S:      Odd Fixes
9849 F:      drivers/mmc/host/mvsdio.*
9850
9851 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
9852 M:      Hu Ziji <huziji@marvell.com>
9853 L:      linux-mmc@vger.kernel.org
9854 S:      Supported
9855 F:      drivers/mmc/host/sdhci-xenon*
9856 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
9857
9858 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
9859 M:      Sunil Goutham <sgoutham@marvell.com>
9860 M:      Linu Cherian <lcherian@marvell.com>
9861 M:      Geetha sowjanya <gakula@marvell.com>
9862 M:      Jerin Jacob <jerinj@marvell.com>
9863 L:      netdev@vger.kernel.org
9864 S:      Supported
9865 F:      drivers/net/ethernet/marvell/octeontx2/af/
9866
9867 MATROX FRAMEBUFFER DRIVER
9868 L:      linux-fbdev@vger.kernel.org
9869 S:      Orphan
9870 F:      drivers/video/fbdev/matrox/matroxfb_*
9871 F:      include/uapi/linux/matroxfb.h
9872
9873 MAX16065 HARDWARE MONITOR DRIVER
9874 M:      Guenter Roeck <linux@roeck-us.net>
9875 L:      linux-hwmon@vger.kernel.org
9876 S:      Maintained
9877 F:      Documentation/hwmon/max16065.rst
9878 F:      drivers/hwmon/max16065.c
9879
9880 MAX2175 SDR TUNER DRIVER
9881 M:      Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
9882 L:      linux-media@vger.kernel.org
9883 T:      git git://linuxtv.org/media_tree.git
9884 S:      Maintained
9885 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
9886 F:      Documentation/media/v4l-drivers/max2175.rst
9887 F:      drivers/media/i2c/max2175*
9888 F:      include/uapi/linux/max2175.h
9889
9890 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
9891 L:      linux-hwmon@vger.kernel.org
9892 S:      Orphan
9893 F:      Documentation/hwmon/max6650.rst
9894 F:      drivers/hwmon/max6650.c
9895
9896 MAX6697 HARDWARE MONITOR DRIVER
9897 M:      Guenter Roeck <linux@roeck-us.net>
9898 L:      linux-hwmon@vger.kernel.org
9899 S:      Maintained
9900 F:      Documentation/hwmon/max6697.rst
9901 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
9902 F:      drivers/hwmon/max6697.c
9903 F:      include/linux/platform_data/max6697.h
9904
9905 MAX9860 MONO AUDIO VOICE CODEC DRIVER
9906 M:      Peter Rosin <peda@axentia.se>
9907 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9908 S:      Maintained
9909 F:      Documentation/devicetree/bindings/sound/max9860.txt
9910 F:      sound/soc/codecs/max9860.*
9911
9912 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
9913 M:      Andreas Klinger <ak@it-klinger.de>
9914 L:      linux-iio@vger.kernel.org
9915 S:      Maintained
9916 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.txt
9917 F:      drivers/iio/proximity/mb1232.c
9918
9919 MAXIM MAX77650 PMIC MFD DRIVER
9920 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
9921 L:      linux-kernel@vger.kernel.org
9922 S:      Maintained
9923 F:      Documentation/devicetree/bindings/*/*max77650.txt
9924 F:      Documentation/devicetree/bindings/*/max77650*.txt
9925 F:      include/linux/mfd/max77650.h
9926 F:      drivers/mfd/max77650.c
9927 F:      drivers/regulator/max77650-regulator.c
9928 F:      drivers/power/supply/max77650-charger.c
9929 F:      drivers/input/misc/max77650-onkey.c
9930 F:      drivers/leds/leds-max77650.c
9931 F:      drivers/gpio/gpio-max77650.c
9932
9933 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
9934 M:      Javier Martinez Canillas <javier@dowhile0.org>
9935 L:      linux-kernel@vger.kernel.org
9936 S:      Supported
9937 F:      drivers/regulator/max77802-regulator.c
9938 F:      Documentation/devicetree/bindings/*/*max77802.txt
9939 F:      include/dt-bindings/*/*max77802.h
9940
9941 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
9942 M:      Krzysztof Kozlowski <krzk@kernel.org>
9943 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
9944 L:      linux-pm@vger.kernel.org
9945 S:      Supported
9946 F:      drivers/power/supply/max14577_charger.c
9947 F:      drivers/power/supply/max77693_charger.c
9948
9949 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
9950 M:      Chanwoo Choi <cw00.choi@samsung.com>
9951 M:      Krzysztof Kozlowski <krzk@kernel.org>
9952 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
9953 L:      linux-kernel@vger.kernel.org
9954 S:      Supported
9955 F:      drivers/*/max14577*.c
9956 F:      drivers/*/max77686*.c
9957 F:      drivers/*/max77693*.c
9958 F:      drivers/extcon/extcon-max14577.c
9959 F:      drivers/extcon/extcon-max77693.c
9960 F:      drivers/rtc/rtc-max77686.c
9961 F:      drivers/clk/clk-max77686.c
9962 F:      Documentation/devicetree/bindings/mfd/max14577.txt
9963 F:      Documentation/devicetree/bindings/*/max77686.txt
9964 F:      Documentation/devicetree/bindings/mfd/max77693.txt
9965 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
9966 F:      include/linux/mfd/max14577*.h
9967 F:      include/linux/mfd/max77686*.h
9968 F:      include/linux/mfd/max77693*.h
9969
9970 MAXIRADIO FM RADIO RECEIVER DRIVER
9971 M:      Hans Verkuil <hverkuil@xs4all.nl>
9972 L:      linux-media@vger.kernel.org
9973 T:      git git://linuxtv.org/media_tree.git
9974 W:      https://linuxtv.org
9975 S:      Maintained
9976 F:      drivers/media/radio/radio-maxiradio*
9977
9978 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
9979 M:      Peter Rosin <peda@axentia.se>
9980 L:      linux-iio@vger.kernel.org
9981 S:      Maintained
9982 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
9983 F:      drivers/iio/potentiometer/mcp4018.c
9984 F:      drivers/iio/potentiometer/mcp4531.c
9985
9986 MCR20A IEEE-802.15.4 RADIO DRIVER
9987 M:      Xue Liu <liuxuenetmail@gmail.com>
9988 L:      linux-wpan@vger.kernel.org
9989 W:      https://github.com/xueliu/mcr20a-linux
9990 S:      Maintained
9991 F:      drivers/net/ieee802154/mcr20a.c
9992 F:      drivers/net/ieee802154/mcr20a.h
9993 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
9994
9995 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
9996 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9997 L:      linux-iio@vger.kernel.org
9998 S:      Maintained
9999 F:      drivers/iio/dac/cio-dac.c
10000
10001 MEDIA CONTROLLER FRAMEWORK
10002 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10003 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10004 L:      linux-media@vger.kernel.org
10005 W:      https://www.linuxtv.org
10006 T:      git git://linuxtv.org/media_tree.git
10007 S:      Supported
10008 F:      drivers/media/mc/
10009 F:      include/media/media-*.h
10010 F:      include/uapi/linux/media.h
10011
10012 MEDIA DRIVERS FOR ASCOT2E
10013 M:      Sergey Kozlov <serjk@netup.ru>
10014 M:      Abylay Ospan <aospan@netup.ru>
10015 L:      linux-media@vger.kernel.org
10016 W:      https://linuxtv.org
10017 W:      http://netup.tv/
10018 T:      git git://linuxtv.org/media_tree.git
10019 S:      Supported
10020 F:      drivers/media/dvb-frontends/ascot2e*
10021
10022 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10023 M:      Jasmin Jessich <jasmin@anw.at>
10024 L:      linux-media@vger.kernel.org
10025 W:      https://linuxtv.org
10026 T:      git git://linuxtv.org/media_tree.git
10027 S:      Maintained
10028 F:      drivers/media/dvb-frontends/cxd2099*
10029
10030 MEDIA DRIVERS FOR CXD2841ER
10031 M:      Sergey Kozlov <serjk@netup.ru>
10032 M:      Abylay Ospan <aospan@netup.ru>
10033 L:      linux-media@vger.kernel.org
10034 W:      https://linuxtv.org
10035 W:      http://netup.tv/
10036 T:      git git://linuxtv.org/media_tree.git
10037 S:      Supported
10038 F:      drivers/media/dvb-frontends/cxd2841er*
10039
10040 MEDIA DRIVERS FOR CXD2880
10041 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
10042 L:      linux-media@vger.kernel.org
10043 W:      http://linuxtv.org/
10044 T:      git git://linuxtv.org/media_tree.git
10045 S:      Supported
10046 F:      drivers/media/dvb-frontends/cxd2880/*
10047 F:      drivers/media/spi/cxd2880*
10048
10049 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10050 L:      linux-media@vger.kernel.org
10051 W:      https://linuxtv.org
10052 T:      git git://linuxtv.org/media_tree.git
10053 S:      Orphan
10054 F:      drivers/media/pci/ddbridge/*
10055
10056 MEDIA DRIVERS FOR FREESCALE IMX
10057 M:      Steve Longerbeam <slongerbeam@gmail.com>
10058 M:      Philipp Zabel <p.zabel@pengutronix.de>
10059 L:      linux-media@vger.kernel.org
10060 T:      git git://linuxtv.org/media_tree.git
10061 S:      Maintained
10062 F:      Documentation/devicetree/bindings/media/imx.txt
10063 F:      Documentation/media/v4l-drivers/imx.rst
10064 F:      drivers/staging/media/imx/
10065 F:      include/linux/imx-media.h
10066 F:      include/media/imx.h
10067
10068 MEDIA DRIVER FOR FREESCALE IMX PXP
10069 M:      Philipp Zabel <p.zabel@pengutronix.de>
10070 L:      linux-media@vger.kernel.org
10071 T:      git git://linuxtv.org/media_tree.git
10072 S:      Maintained
10073 F:      drivers/media/platform/imx-pxp.[ch]
10074
10075 MEDIA DRIVERS FOR FREESCALE IMX7
10076 M:      Rui Miguel Silva <rmfrfs@gmail.com>
10077 L:      linux-media@vger.kernel.org
10078 T:      git git://linuxtv.org/media_tree.git
10079 S:      Maintained
10080 F:      Documentation/devicetree/bindings/media/imx7-csi.txt
10081 F:      Documentation/devicetree/bindings/media/imx7-mipi-csi2.txt
10082 F:      Documentation/media/v4l-drivers/imx7.rst
10083 F:      drivers/staging/media/imx/imx7-media-csi.c
10084 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10085
10086 MEDIA DRIVERS FOR HELENE
10087 M:      Abylay Ospan <aospan@netup.ru>
10088 L:      linux-media@vger.kernel.org
10089 W:      https://linuxtv.org
10090 W:      http://netup.tv/
10091 T:      git git://linuxtv.org/media_tree.git
10092 S:      Supported
10093 F:      drivers/media/dvb-frontends/helene*
10094
10095 MEDIA DRIVERS FOR HORUS3A
10096 M:      Sergey Kozlov <serjk@netup.ru>
10097 M:      Abylay Ospan <aospan@netup.ru>
10098 L:      linux-media@vger.kernel.org
10099 W:      https://linuxtv.org
10100 W:      http://netup.tv/
10101 T:      git git://linuxtv.org/media_tree.git
10102 S:      Supported
10103 F:      drivers/media/dvb-frontends/horus3a*
10104
10105 MEDIA DRIVERS FOR LNBH25
10106 M:      Sergey Kozlov <serjk@netup.ru>
10107 M:      Abylay Ospan <aospan@netup.ru>
10108 L:      linux-media@vger.kernel.org
10109 W:      https://linuxtv.org
10110 W:      http://netup.tv/
10111 T:      git git://linuxtv.org/media_tree.git
10112 S:      Supported
10113 F:      drivers/media/dvb-frontends/lnbh25*
10114
10115 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10116 L:      linux-media@vger.kernel.org
10117 W:      https://linuxtv.org
10118 T:      git git://linuxtv.org/media_tree.git
10119 S:      Orphan
10120 F:      drivers/media/dvb-frontends/mxl5xx*
10121
10122 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10123 M:      Sergey Kozlov <serjk@netup.ru>
10124 M:      Abylay Ospan <aospan@netup.ru>
10125 L:      linux-media@vger.kernel.org
10126 W:      https://linuxtv.org
10127 W:      http://netup.tv/
10128 T:      git git://linuxtv.org/media_tree.git
10129 S:      Supported
10130 F:      drivers/media/pci/netup_unidvb/*
10131
10132 MEDIA DRIVERS FOR RENESAS - CEU
10133 M:      Jacopo Mondi <jacopo@jmondi.org>
10134 L:      linux-media@vger.kernel.org
10135 L:      linux-renesas-soc@vger.kernel.org
10136 T:      git git://linuxtv.org/media_tree.git
10137 S:      Supported
10138 F:      Documentation/devicetree/bindings/media/renesas,ceu.txt
10139 F:      drivers/media/platform/renesas-ceu.c
10140 F:      include/media/drv-intf/renesas-ceu.h
10141
10142 MEDIA DRIVERS FOR RENESAS - DRIF
10143 M:      Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
10144 L:      linux-media@vger.kernel.org
10145 L:      linux-renesas-soc@vger.kernel.org
10146 T:      git git://linuxtv.org/media_tree.git
10147 S:      Supported
10148 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
10149 F:      drivers/media/platform/rcar_drif.c
10150
10151 MEDIA DRIVERS FOR RENESAS - FCP
10152 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10153 L:      linux-media@vger.kernel.org
10154 L:      linux-renesas-soc@vger.kernel.org
10155 T:      git git://linuxtv.org/media_tree.git
10156 S:      Supported
10157 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
10158 F:      drivers/media/platform/rcar-fcp.c
10159 F:      include/media/rcar-fcp.h
10160
10161 MEDIA DRIVERS FOR RENESAS - FDP1
10162 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10163 L:      linux-media@vger.kernel.org
10164 L:      linux-renesas-soc@vger.kernel.org
10165 T:      git git://linuxtv.org/media_tree.git
10166 S:      Supported
10167 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
10168 F:      drivers/media/platform/rcar_fdp1.c
10169
10170 MEDIA DRIVERS FOR RENESAS - VIN
10171 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
10172 L:      linux-media@vger.kernel.org
10173 L:      linux-renesas-soc@vger.kernel.org
10174 T:      git git://linuxtv.org/media_tree.git
10175 S:      Supported
10176 F:      Documentation/devicetree/bindings/media/renesas,csi2.txt
10177 F:      Documentation/devicetree/bindings/media/renesas,vin.txt
10178 F:      drivers/media/platform/rcar-vin/
10179
10180 MEDIA DRIVERS FOR RENESAS - VSP1
10181 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10182 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10183 L:      linux-media@vger.kernel.org
10184 L:      linux-renesas-soc@vger.kernel.org
10185 T:      git git://linuxtv.org/media_tree.git
10186 S:      Supported
10187 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
10188 F:      drivers/media/platform/vsp1/
10189
10190 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
10191 L:      linux-media@vger.kernel.org
10192 W:      https://linuxtv.org
10193 T:      git git://linuxtv.org/media_tree.git
10194 S:      Orphan
10195 F:      drivers/media/dvb-frontends/stv0910*
10196
10197 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
10198 L:      linux-media@vger.kernel.org
10199 W:      https://linuxtv.org
10200 T:      git git://linuxtv.org/media_tree.git
10201 S:      Orphan
10202 F:      drivers/media/dvb-frontends/stv6111*
10203
10204 MEDIA DRIVERS FOR STM32 - DCMI
10205 M:      Hugues Fruchet <hugues.fruchet@st.com>
10206 L:      linux-media@vger.kernel.org
10207 T:      git git://linuxtv.org/media_tree.git
10208 S:      Supported
10209 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.txt
10210 F:      drivers/media/platform/stm32/stm32-dcmi.c
10211
10212 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10213 M:      Dmitry Osipenko <digetx@gmail.com>
10214 L:      linux-media@vger.kernel.org
10215 L:      linux-tegra@vger.kernel.org
10216 T:      git git://linuxtv.org/media_tree.git
10217 S:      Maintained
10218 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10219 F:      drivers/staging/media/tegra-vde/
10220
10221 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
10222 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
10223 P:      LinuxTV.org Project
10224 L:      linux-media@vger.kernel.org
10225 W:      https://linuxtv.org
10226 Q:      http://patchwork.kernel.org/project/linux-media/list/
10227 T:      git git://linuxtv.org/media_tree.git
10228 S:      Maintained
10229 F:      Documentation/devicetree/bindings/media/
10230 F:      Documentation/media/
10231 F:      drivers/media/
10232 F:      drivers/staging/media/
10233 F:      include/linux/platform_data/media/
10234 F:      include/media/
10235 F:      include/uapi/linux/dvb/
10236 F:      include/uapi/linux/videodev2.h
10237 F:      include/uapi/linux/media.h
10238 F:      include/uapi/linux/v4l2-*
10239 F:      include/uapi/linux/meye.h
10240 F:      include/uapi/linux/ivtv*
10241 F:      include/uapi/linux/uvcvideo.h
10242
10243 MEDIATEK BLUETOOTH DRIVER
10244 M:      Sean Wang <sean.wang@mediatek.com>
10245 L:      linux-bluetooth@vger.kernel.org
10246 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10247 S:      Maintained
10248 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
10249 F:      drivers/bluetooth/btmtkuart.c
10250
10251 MEDIATEK CIR DRIVER
10252 M:      Sean Wang <sean.wang@mediatek.com>
10253 S:      Maintained
10254 F:      drivers/media/rc/mtk-cir.c
10255
10256 MEDIATEK DMA DRIVER
10257 M:      Sean Wang <sean.wang@mediatek.com>
10258 L:      dmaengine@vger.kernel.org
10259 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10260 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10261 S:      Maintained
10262 F:      Documentation/devicetree/bindings/dma/mtk-*
10263 F:      drivers/dma/mediatek/
10264
10265 MEDIATEK PMIC LED DRIVER
10266 M:      Sean Wang <sean.wang@mediatek.com>
10267 S:      Maintained
10268 F:      drivers/leds/leds-mt6323.c
10269 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
10270
10271 MEDIATEK ETHERNET DRIVER
10272 M:      Felix Fietkau <nbd@openwrt.org>
10273 M:      John Crispin <john@phrozen.org>
10274 M:      Sean Wang <sean.wang@mediatek.com>
10275 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
10276 L:      netdev@vger.kernel.org
10277 S:      Maintained
10278 F:      drivers/net/ethernet/mediatek/
10279
10280 MEDIATEK SWITCH DRIVER
10281 M:      Sean Wang <sean.wang@mediatek.com>
10282 L:      netdev@vger.kernel.org
10283 S:      Maintained
10284 F:      drivers/net/dsa/mt7530.*
10285 F:      net/dsa/tag_mtk.c
10286
10287 MEDIATEK JPEG DRIVER
10288 M:      Rick Chang <rick.chang@mediatek.com>
10289 M:      Bin Liu <bin.liu@mediatek.com>
10290 S:      Supported
10291 F:      drivers/media/platform/mtk-jpeg/
10292 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
10293
10294 MEDIATEK MDP DRIVER
10295 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
10296 M:      Houlong Wei <houlong.wei@mediatek.com>
10297 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10298 S:      Supported
10299 F:      drivers/media/platform/mtk-mdp/
10300 F:      drivers/media/platform/mtk-vpu/
10301 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
10302
10303 MEDIATEK MEDIA DRIVER
10304 M:      Tiffany Lin <tiffany.lin@mediatek.com>
10305 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10306 S:      Supported
10307 F:      drivers/media/platform/mtk-vcodec/
10308 F:      drivers/media/platform/mtk-vpu/
10309 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
10310 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
10311
10312 MEDIATEK MMC/SD/SDIO DRIVER
10313 M:      Chaotian Jing <chaotian.jing@mediatek.com>
10314 S:      Maintained
10315 F:      drivers/mmc/host/mtk-sd.c
10316 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
10317
10318 MEDIATEK MT76 WIRELESS LAN DRIVER
10319 M:      Felix Fietkau <nbd@nbd.name>
10320 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
10321 R:      Ryder Lee <ryder.lee@mediatek.com>
10322 R:      Roy Luo <royluo@google.com>
10323 L:      linux-wireless@vger.kernel.org
10324 S:      Maintained
10325 F:      drivers/net/wireless/mediatek/mt76/
10326
10327 MEDIATEK MT7601U WIRELESS LAN DRIVER
10328 M:      Jakub Kicinski <kubakici@wp.pl>
10329 L:      linux-wireless@vger.kernel.org
10330 S:      Maintained
10331 F:      drivers/net/wireless/mediatek/mt7601u/
10332
10333 MEDIATEK MT7621/28/88 I2C DRIVER
10334 M:      Stefan Roese <sr@denx.de>
10335 L:      linux-i2c@vger.kernel.org
10336 S:      Maintained
10337 F:      drivers/i2c/busses/i2c-mt7621.c
10338 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
10339
10340 MEDIATEK NAND CONTROLLER DRIVER
10341 M:      Xiaolei Li <xiaolei.li@mediatek.com>
10342 L:      linux-mtd@lists.infradead.org
10343 S:      Maintained
10344 F:      drivers/mtd/nand/raw/mtk_*
10345 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
10346
10347 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
10348 M:      Sean Wang <sean.wang@mediatek.com>
10349 S:      Maintained
10350 F:      drivers/char/hw_random/mtk-rng.c
10351
10352 MEDIATEK USB3 DRD IP DRIVER
10353 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
10354 L:      linux-usb@vger.kernel.org (moderated for non-subscribers)
10355 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10356 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10357 S:      Maintained
10358 F:      drivers/usb/mtu3/
10359
10360 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
10361 M:      Peter Senna Tschudin <peter.senna@gmail.com>
10362 M:      Martin Donnelly <martin.donnelly@ge.com>
10363 M:      Martyn Welch <martyn.welch@collabora.co.uk>
10364 S:      Maintained
10365 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
10366 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
10367
10368 MEGARAID SCSI/SAS DRIVERS
10369 M:      Kashyap Desai <kashyap.desai@broadcom.com>
10370 M:      Sumit Saxena <sumit.saxena@broadcom.com>
10371 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
10372 L:      megaraidlinux.pdl@broadcom.com
10373 L:      linux-scsi@vger.kernel.org
10374 W:      http://www.avagotech.com/support/
10375 S:      Maintained
10376 F:      Documentation/scsi/megaraid.txt
10377 F:      drivers/scsi/megaraid.*
10378 F:      drivers/scsi/megaraid/
10379
10380 MELEXIS MLX90614 DRIVER
10381 M:      Crt Mori <cmo@melexis.com>
10382 L:      linux-iio@vger.kernel.org
10383 W:      http://www.melexis.com
10384 S:      Supported
10385 F:      drivers/iio/temperature/mlx90614.c
10386
10387 MELEXIS MLX90632 DRIVER
10388 M:      Crt Mori <cmo@melexis.com>
10389 L:      linux-iio@vger.kernel.org
10390 W:      http://www.melexis.com
10391 S:      Supported
10392 F:      drivers/iio/temperature/mlx90632.c
10393
10394 MELFAS MIP4 TOUCHSCREEN DRIVER
10395 M:      Sangwon Jee <jeesw@melfas.com>
10396 W:      http://www.melfas.com
10397 S:      Supported
10398 F:      drivers/input/touchscreen/melfas_mip4.c
10399 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
10400
10401 MELLANOX ETHERNET DRIVER (mlx4_en)
10402 M:      Tariq Toukan <tariqt@mellanox.com>
10403 L:      netdev@vger.kernel.org
10404 S:      Supported
10405 W:      http://www.mellanox.com
10406 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10407 F:      drivers/net/ethernet/mellanox/mlx4/en_*
10408
10409 MELLANOX ETHERNET DRIVER (mlx5e)
10410 M:      Saeed Mahameed <saeedm@mellanox.com>
10411 L:      netdev@vger.kernel.org
10412 S:      Supported
10413 W:      http://www.mellanox.com
10414 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10415 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
10416
10417 MELLANOX ETHERNET INNOVA DRIVERS
10418 R:      Boris Pismenny <borisp@mellanox.com>
10419 L:      netdev@vger.kernel.org
10420 S:      Supported
10421 W:      http://www.mellanox.com
10422 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10423 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
10424 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
10425 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
10426 F:      include/linux/mlx5/mlx5_ifc_fpga.h
10427
10428 MELLANOX ETHERNET SWITCH DRIVERS
10429 M:      Jiri Pirko <jiri@mellanox.com>
10430 M:      Ido Schimmel <idosch@mellanox.com>
10431 L:      netdev@vger.kernel.org
10432 S:      Supported
10433 W:      http://www.mellanox.com
10434 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10435 F:      drivers/net/ethernet/mellanox/mlxsw/
10436 F:      tools/testing/selftests/drivers/net/mlxsw/
10437
10438 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
10439 M:      mlxsw@mellanox.com
10440 L:      netdev@vger.kernel.org
10441 S:      Supported
10442 W:      http://www.mellanox.com
10443 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10444 F:      drivers/net/ethernet/mellanox/mlxfw/
10445
10446 MELLANOX HARDWARE PLATFORM SUPPORT
10447 M:      Andy Shevchenko <andy@infradead.org>
10448 M:      Darren Hart <dvhart@infradead.org>
10449 M:      Vadim Pasternak <vadimp@mellanox.com>
10450 L:      platform-driver-x86@vger.kernel.org
10451 S:      Supported
10452 F:      drivers/platform/mellanox/
10453 F:      include/linux/platform_data/mlxreg.h
10454
10455 MELLANOX MLX4 core VPI driver
10456 M:      Tariq Toukan <tariqt@mellanox.com>
10457 L:      netdev@vger.kernel.org
10458 L:      linux-rdma@vger.kernel.org
10459 W:      http://www.mellanox.com
10460 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10461 S:      Supported
10462 F:      drivers/net/ethernet/mellanox/mlx4/
10463 F:      include/linux/mlx4/
10464
10465 MELLANOX MLX4 IB driver
10466 M:      Yishai Hadas <yishaih@mellanox.com>
10467 L:      linux-rdma@vger.kernel.org
10468 W:      http://www.mellanox.com
10469 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10470 S:      Supported
10471 F:      drivers/infiniband/hw/mlx4/
10472 F:      include/linux/mlx4/
10473 F:      include/uapi/rdma/mlx4-abi.h
10474
10475 MELLANOX MLX5 core VPI driver
10476 M:      Saeed Mahameed <saeedm@mellanox.com>
10477 M:      Leon Romanovsky <leonro@mellanox.com>
10478 L:      netdev@vger.kernel.org
10479 L:      linux-rdma@vger.kernel.org
10480 W:      http://www.mellanox.com
10481 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10482 S:      Supported
10483 F:      drivers/net/ethernet/mellanox/mlx5/core/
10484 F:      include/linux/mlx5/
10485 F:      Documentation/networking/device_drivers/mellanox/
10486
10487 MELLANOX MLX5 IB driver
10488 M:      Leon Romanovsky <leonro@mellanox.com>
10489 L:      linux-rdma@vger.kernel.org
10490 W:      http://www.mellanox.com
10491 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10492 S:      Supported
10493 F:      drivers/infiniband/hw/mlx5/
10494 F:      include/linux/mlx5/
10495 F:      include/uapi/rdma/mlx5-abi.h
10496
10497 MELLANOX MLXCPLD I2C AND MUX DRIVER
10498 M:      Vadim Pasternak <vadimp@mellanox.com>
10499 M:      Michael Shych <michaelsh@mellanox.com>
10500 L:      linux-i2c@vger.kernel.org
10501 S:      Supported
10502 F:      drivers/i2c/busses/i2c-mlxcpld.c
10503 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
10504 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
10505
10506 MELLANOX MLXCPLD LED DRIVER
10507 M:      Vadim Pasternak <vadimp@mellanox.com>
10508 L:      linux-leds@vger.kernel.org
10509 S:      Supported
10510 F:      drivers/leds/leds-mlxcpld.c
10511 F:      drivers/leds/leds-mlxreg.c
10512 F:      Documentation/leds/leds-mlxcpld.rst
10513
10514 MELLANOX PLATFORM DRIVER
10515 M:      Vadim Pasternak <vadimp@mellanox.com>
10516 L:      platform-driver-x86@vger.kernel.org
10517 S:      Supported
10518 F:      drivers/platform/x86/mlx-platform.c
10519
10520 MEMBARRIER SUPPORT
10521 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10522 M:      "Paul E. McKenney" <paulmck@kernel.org>
10523 L:      linux-kernel@vger.kernel.org
10524 S:      Supported
10525 F:      kernel/sched/membarrier.c
10526 F:      include/uapi/linux/membarrier.h
10527 F:      arch/powerpc/include/asm/membarrier.h
10528
10529 MEMBLOCK
10530 M:      Mike Rapoport <rppt@linux.ibm.com>
10531 L:      linux-mm@kvack.org
10532 S:      Maintained
10533 F:      include/linux/memblock.h
10534 F:      mm/memblock.c
10535 F:      Documentation/core-api/boot-time-mm.rst
10536
10537 MEMORY MANAGEMENT
10538 M:      Andrew Morton <akpm@linux-foundation.org>
10539 L:      linux-mm@kvack.org
10540 W:      http://www.linux-mm.org
10541 T:      quilt https://ozlabs.org/~akpm/mmotm/
10542 T:      quilt https://ozlabs.org/~akpm/mmots/
10543 T:      git git://github.com/hnaz/linux-mm.git
10544 S:      Maintained
10545 F:      include/linux/mm.h
10546 F:      include/linux/gfp.h
10547 F:      include/linux/mmzone.h
10548 F:      include/linux/memory_hotplug.h
10549 F:      include/linux/vmalloc.h
10550 F:      mm/
10551
10552 MEMORY TECHNOLOGY DEVICES (MTD)
10553 M:      David Woodhouse <dwmw2@infradead.org>
10554 M:      Brian Norris <computersforpeace@gmail.com>
10555 M:      Marek Vasut <marek.vasut@gmail.com>
10556 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10557 M:      Richard Weinberger <richard@nod.at>
10558 M:      Vignesh Raghavendra <vigneshr@ti.com>
10559 L:      linux-mtd@lists.infradead.org
10560 W:      http://www.linux-mtd.infradead.org/
10561 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
10562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
10563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
10564 S:      Maintained
10565 F:      Documentation/devicetree/bindings/mtd/
10566 F:      drivers/mtd/
10567 F:      include/linux/mtd/
10568 F:      include/uapi/mtd/
10569
10570 MEN A21 WATCHDOG DRIVER
10571 M:      Johannes Thumshirn <morbidrsa@gmail.com>
10572 L:      linux-watchdog@vger.kernel.org
10573 S:      Maintained
10574 F:      drivers/watchdog/mena21_wdt.c
10575
10576 MEN CHAMELEON BUS (mcb)
10577 M:      Johannes Thumshirn <morbidrsa@gmail.com>
10578 S:      Maintained
10579 F:      drivers/mcb/
10580 F:      include/linux/mcb.h
10581 F:      Documentation/driver-api/men-chameleon-bus.rst
10582
10583 MEN F21BMC (Board Management Controller)
10584 M:      Andreas Werner <andreas.werner@men.de>
10585 S:      Supported
10586 F:      drivers/mfd/menf21bmc.c
10587 F:      drivers/watchdog/menf21bmc_wdt.c
10588 F:      drivers/leds/leds-menf21bmc.c
10589 F:      drivers/hwmon/menf21bmc_hwmon.c
10590 F:      Documentation/hwmon/menf21bmc.rst
10591
10592 MEN Z069 WATCHDOG DRIVER
10593 M:      Johannes Thumshirn <jth@kernel.org>
10594 L:      linux-watchdog@vger.kernel.org
10595 S:      Maintained
10596 F:      drivers/watchdog/menz69_wdt.c
10597
10598 MESON AO CEC DRIVER FOR AMLOGIC SOCS
10599 M:      Neil Armstrong <narmstrong@baylibre.com>
10600 L:      linux-media@vger.kernel.org
10601 L:      linux-amlogic@lists.infradead.org
10602 W:      http://linux-meson.com/
10603 S:      Supported
10604 F:      drivers/media/platform/meson/ao-cec.c
10605 F:      drivers/media/platform/meson/ao-cec-g12a.c
10606 F:      Documentation/devicetree/bindings/media/meson-ao-cec.txt
10607 T:      git git://linuxtv.org/media_tree.git
10608
10609 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
10610 M:      Liang Yang <liang.yang@amlogic.com>
10611 L:      linux-mtd@lists.infradead.org
10612 S:      Maintained
10613 F:      drivers/mtd/nand/raw/meson_*
10614 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
10615
10616 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
10617 M:      Maxime Jourdan <mjourdan@baylibre.com>
10618 L:      linux-media@vger.kernel.org
10619 L:      linux-amlogic@lists.infradead.org
10620 S:      Supported
10621 F:      drivers/staging/media/meson/vdec/
10622 T:      git git://linuxtv.org/media_tree.git
10623
10624 METHODE UDPU SUPPORT
10625 M:      Vladimir Vid <vladimir.vid@sartura.hr>
10626 S:      Maintained
10627 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
10628
10629 MICROBLAZE ARCHITECTURE
10630 M:      Michal Simek <monstr@monstr.eu>
10631 W:      http://www.monstr.eu/fdt/
10632 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
10633 S:      Supported
10634 F:      arch/microblaze/
10635
10636 MICROCHIP AT91 SERIAL DRIVER
10637 M:      Richard Genoud <richard.genoud@gmail.com>
10638 S:      Maintained
10639 F:      drivers/tty/serial/atmel_serial.c
10640 F:      drivers/tty/serial/atmel_serial.h
10641 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
10642
10643 MICROCHIP AUDIO ASOC DRIVERS
10644 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
10645 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10646 S:      Supported
10647 F:      sound/soc/atmel
10648
10649 MICROCHIP DMA DRIVER
10650 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10651 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10652 L:      dmaengine@vger.kernel.org
10653 S:      Supported
10654 F:      drivers/dma/at_hdmac.c
10655 F:      drivers/dma/at_hdmac_regs.h
10656 F:      include/linux/platform_data/dma-atmel.h
10657 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
10658 F:      include/dt-bindings/dma/at91.h
10659
10660 MICROCHIP ECC DRIVER
10661 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
10662 L:      linux-crypto@vger.kernel.org
10663 S:      Maintained
10664 F:      drivers/crypto/atmel-ecc.*
10665
10666 MICROCHIP I2C DRIVER
10667 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10668 L:      linux-i2c@vger.kernel.org
10669 S:      Supported
10670 F:      drivers/i2c/busses/i2c-at91.h
10671 F:      drivers/i2c/busses/i2c-at91-*.c
10672
10673 MICROCHIP ISC DRIVER
10674 M:      Eugen Hristev <eugen.hristev@microchip.com>
10675 L:      linux-media@vger.kernel.org
10676 S:      Supported
10677 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
10678 F:      drivers/media/platform/atmel/atmel-isc.h
10679 F:      drivers/media/platform/atmel/atmel-isc-base.c
10680 F:      drivers/media/platform/atmel/atmel-isc-regs.h
10681 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
10682
10683 MICROCHIP ISI DRIVER
10684 M:      Eugen Hristev <eugen.hristev@microchip.com>
10685 L:      linux-media@vger.kernel.org
10686 S:      Supported
10687 F:      drivers/media/platform/atmel/atmel-isi.c
10688 F:      drivers/media/platform/atmel/atmel-isi.h
10689
10690 MICROCHIP AT91 USART MFD DRIVER
10691 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
10692 L:      linux-kernel@vger.kernel.org
10693 S:      Supported
10694 F:      drivers/mfd/at91-usart.c
10695 F:      include/dt-bindings/mfd/at91-usart.h
10696 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
10697
10698 MICROCHIP AT91 USART SPI DRIVER
10699 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
10700 L:      linux-spi@vger.kernel.org
10701 S:      Supported
10702 F:      drivers/spi/spi-at91-usart.c
10703 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
10704
10705 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
10706 M:      Woojung Huh <woojung.huh@microchip.com>
10707 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
10708 L:      netdev@vger.kernel.org
10709 S:      Maintained
10710 F:      net/dsa/tag_ksz.c
10711 F:      drivers/net/dsa/microchip/*
10712 F:      include/linux/platform_data/microchip-ksz.h
10713 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
10714
10715 MICROCHIP LAN743X ETHERNET DRIVER
10716 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
10717 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
10718 L:      netdev@vger.kernel.org
10719 S:      Maintained
10720 F:      drivers/net/ethernet/microchip/lan743x_*
10721
10722 MICROCHIP LCDFB DRIVER
10723 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
10724 L:      linux-fbdev@vger.kernel.org
10725 S:      Maintained
10726 F:      drivers/video/fbdev/atmel_lcdfb.c
10727 F:      include/video/atmel_lcdc.h
10728
10729 MICROCHIP MMC/SD/SDIO MCI DRIVER
10730 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10731 S:      Maintained
10732 F:      drivers/mmc/host/atmel-mci.c
10733
10734 MICROCHIP MCP16502 PMIC DRIVER
10735 M:      Andrei Stefanescu <andrei.stefanescu@microchip.com>
10736 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10737 S:      Maintained
10738 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
10739 F:      drivers/regulator/mcp16502.c
10740
10741 MICROCHIP MCP3911 ADC DRIVER
10742 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10743 M:      Kent Gustavsson <kent@minoris.se>
10744 L:      linux-iio@vger.kernel.org
10745 S:      Supported
10746 F:      drivers/iio/adc/mcp3911.c
10747 F:      Documentation/devicetree/bindings/iio/adc/mcp3911.txt
10748
10749 MICROCHIP NAND DRIVER
10750 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
10751 L:      linux-mtd@lists.infradead.org
10752 S:      Supported
10753 F:      drivers/mtd/nand/raw/atmel/*
10754 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
10755
10756 MICROCHIP PWM DRIVER
10757 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
10758 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10759 L:      linux-pwm@vger.kernel.org
10760 S:      Supported
10761 F:      drivers/pwm/pwm-atmel.c
10762 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
10763
10764 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
10765 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10766 M:      Eugen Hristev <eugen.hristev@microchip.com>
10767 L:      linux-iio@vger.kernel.org
10768 S:      Supported
10769 F:      drivers/iio/adc/at91-sama5d2_adc.c
10770 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
10771 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
10772
10773 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
10774 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
10775 S:      Supported
10776 F:      drivers/power/reset/at91-sama5d2_shdwc.c
10777
10778 MICROCHIP SPI DRIVER
10779 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
10780 S:      Supported
10781 F:      drivers/spi/spi-atmel.*
10782
10783 MICROCHIP SSC DRIVER
10784 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
10785 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10786 S:      Supported
10787 F:      drivers/misc/atmel-ssc.c
10788 F:      include/linux/atmel-ssc.h
10789
10790 MICROCHIP USBA UDC DRIVER
10791 M:      Cristian Birsan <cristian.birsan@microchip.com>
10792 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10793 S:      Supported
10794 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
10795
10796 MICROCHIP USB251XB DRIVER
10797 M:      Richard Leitner <richard.leitner@skidata.com>
10798 L:      linux-usb@vger.kernel.org
10799 S:      Maintained
10800 F:      drivers/usb/misc/usb251xb.c
10801 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
10802
10803 MICROCHIP XDMA DRIVER
10804 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10805 L:      linux-arm-kernel@lists.infradead.org
10806 L:      dmaengine@vger.kernel.org
10807 S:      Supported
10808 F:      drivers/dma/at_xdmac.c
10809
10810 MICROSEMI MIPS SOCS
10811 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
10812 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
10813 L:      linux-mips@vger.kernel.org
10814 S:      Supported
10815 F:      arch/mips/generic/board-ocelot.c
10816 F:      arch/mips/configs/generic/board-ocelot.config
10817 F:      arch/mips/boot/dts/mscc/
10818 F:      Documentation/devicetree/bindings/mips/mscc.txt
10819
10820 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
10821 M:      Don Brace <don.brace@microsemi.com>
10822 L:      esc.storagedev@microsemi.com
10823 L:      linux-scsi@vger.kernel.org
10824 S:      Supported
10825 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
10826 F:      drivers/scsi/smartpqi/Kconfig
10827 F:      drivers/scsi/smartpqi/Makefile
10828 F:      include/linux/cciss*.h
10829 F:      include/uapi/linux/cciss*.h
10830 F:      Documentation/scsi/smartpqi.txt
10831
10832 MICROSEMI ETHERNET SWITCH DRIVER
10833 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
10834 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
10835 L:      netdev@vger.kernel.org
10836 S:      Supported
10837 F:      drivers/net/ethernet/mscc/
10838 F:      include/soc/mscc/ocelot*
10839
10840 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
10841 M:      Chen Yu <yu.c.chen@intel.com>
10842 L:      platform-driver-x86@vger.kernel.org
10843 S:      Supported
10844 F:      drivers/platform/x86/surfacepro3_button.c
10845
10846 MICROTEK X6 SCANNER
10847 M:      Oliver Neukum <oliver@neukum.org>
10848 S:      Maintained
10849 F:      drivers/usb/image/microtek.*
10850
10851 MIPS
10852 M:      Ralf Baechle <ralf@linux-mips.org>
10853 M:      Paul Burton <paulburton@kernel.org>
10854 M:      James Hogan <jhogan@kernel.org>
10855 L:      linux-mips@vger.kernel.org
10856 W:      http://www.linux-mips.org/
10857 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
10858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
10859 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
10860 S:      Supported
10861 F:      Documentation/devicetree/bindings/mips/
10862 F:      Documentation/mips/
10863 F:      arch/mips/
10864 F:      drivers/platform/mips/
10865
10866 MIPS BOSTON DEVELOPMENT BOARD
10867 M:      Paul Burton <paulburton@kernel.org>
10868 L:      linux-mips@vger.kernel.org
10869 S:      Maintained
10870 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
10871 F:      arch/mips/boot/dts/img/boston.dts
10872 F:      arch/mips/configs/generic/board-boston.config
10873 F:      drivers/clk/imgtec/clk-boston.c
10874 F:      include/dt-bindings/clock/boston-clock.h
10875
10876 MIPS GENERIC PLATFORM
10877 M:      Paul Burton <paulburton@kernel.org>
10878 L:      linux-mips@vger.kernel.org
10879 S:      Supported
10880 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.txt
10881 F:      arch/mips/generic/
10882 F:      arch/mips/tools/generic-board-config.sh
10883
10884 MIPS/LOONGSON1 ARCHITECTURE
10885 M:      Keguang Zhang <keguang.zhang@gmail.com>
10886 L:      linux-mips@vger.kernel.org
10887 S:      Maintained
10888 F:      arch/mips/loongson32/
10889 F:      arch/mips/include/asm/mach-loongson32/
10890 F:      drivers/*/*loongson1*
10891 F:      drivers/*/*/*loongson1*
10892
10893 MIPS/LOONGSON2 ARCHITECTURE
10894 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
10895 L:      linux-mips@vger.kernel.org
10896 S:      Maintained
10897 F:      arch/mips/loongson64/fuloong-2e/
10898 F:      arch/mips/loongson64/lemote-2f/
10899 F:      arch/mips/include/asm/mach-loongson64/
10900 F:      drivers/*/*loongson2*
10901 F:      drivers/*/*/*loongson2*
10902
10903 MIPS/LOONGSON3 ARCHITECTURE
10904 M:      Huacai Chen <chenhc@lemote.com>
10905 L:      linux-mips@vger.kernel.org
10906 S:      Maintained
10907 F:      arch/mips/loongson64/
10908 F:      arch/mips/include/asm/mach-loongson64/
10909 F:      drivers/platform/mips/cpu_hwmon.c
10910 F:      drivers/*/*loongson3*
10911 F:      drivers/*/*/*loongson3*
10912
10913 MIPS RINT INSTRUCTION EMULATION
10914 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
10915 L:      linux-mips@vger.kernel.org
10916 S:      Supported
10917 F:      arch/mips/math-emu/sp_rint.c
10918 F:      arch/mips/math-emu/dp_rint.c
10919
10920 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
10921 M:      Hans Verkuil <hverkuil@xs4all.nl>
10922 L:      linux-media@vger.kernel.org
10923 T:      git git://linuxtv.org/media_tree.git
10924 W:      https://linuxtv.org
10925 S:      Odd Fixes
10926 F:      drivers/media/radio/radio-miropcm20*
10927
10928 MMP SUPPORT
10929 R:      Lubomir Rintel <lkundrak@v3.sk>
10930 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10931 S:      Odd Fixes
10932 F:      arch/arm/boot/dts/mmp*
10933 F:      arch/arm/mach-mmp/
10934
10935 MMU GATHER AND TLB INVALIDATION
10936 M:      Will Deacon <will@kernel.org>
10937 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
10938 M:      Andrew Morton <akpm@linux-foundation.org>
10939 M:      Nick Piggin <npiggin@gmail.com>
10940 M:      Peter Zijlstra <peterz@infradead.org>
10941 L:      linux-arch@vger.kernel.org
10942 L:      linux-mm@kvack.org
10943 S:      Maintained
10944 F:      arch/*/include/asm/tlb.h
10945 F:      include/asm-generic/tlb.h
10946 F:      mm/mmu_gather.c
10947
10948 MN88472 MEDIA DRIVER
10949 M:      Antti Palosaari <crope@iki.fi>
10950 L:      linux-media@vger.kernel.org
10951 W:      https://linuxtv.org
10952 W:      http://palosaari.fi/linux/
10953 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10954 S:      Maintained
10955 F:      drivers/media/dvb-frontends/mn88472*
10956
10957 MN88473 MEDIA DRIVER
10958 M:      Antti Palosaari <crope@iki.fi>
10959 L:      linux-media@vger.kernel.org
10960 W:      https://linuxtv.org
10961 W:      http://palosaari.fi/linux/
10962 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10963 S:      Maintained
10964 F:      drivers/media/dvb-frontends/mn88473*
10965
10966 MODULE SUPPORT
10967 M:      Jessica Yu <jeyu@kernel.org>
10968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
10969 S:      Maintained
10970 F:      include/linux/module.h
10971 F:      kernel/module.c
10972
10973 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
10974 W:      http://popies.net/meye/
10975 S:      Orphan
10976 F:      Documentation/media/v4l-drivers/meye*
10977 F:      drivers/media/pci/meye/
10978 F:      include/uapi/linux/meye.h
10979
10980 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
10981 M:      Jiri Slaby <jirislaby@gmail.com>
10982 S:      Maintained
10983 F:      Documentation/driver-api/serial/moxa-smartio.rst
10984 F:      drivers/tty/mxser.*
10985
10986 MR800 AVERMEDIA USB FM RADIO DRIVER
10987 M:      Alexey Klimov <klimov.linux@gmail.com>
10988 L:      linux-media@vger.kernel.org
10989 T:      git git://linuxtv.org/media_tree.git
10990 S:      Maintained
10991 F:      drivers/media/radio/radio-mr800.c
10992
10993 MRF24J40 IEEE 802.15.4 RADIO DRIVER
10994 M:      Alan Ott <alan@signal11.us>
10995 L:      linux-wpan@vger.kernel.org
10996 S:      Maintained
10997 F:      drivers/net/ieee802154/mrf24j40.c
10998 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
10999
11000 MSI LAPTOP SUPPORT
11001 M:      "Lee, Chun-Yi" <jlee@suse.com>
11002 L:      platform-driver-x86@vger.kernel.org
11003 S:      Maintained
11004 F:      drivers/platform/x86/msi-laptop.c
11005
11006 MSI WMI SUPPORT
11007 L:      platform-driver-x86@vger.kernel.org
11008 S:      Orphan
11009 F:      drivers/platform/x86/msi-wmi.c
11010
11011 MSI001 MEDIA DRIVER
11012 M:      Antti Palosaari <crope@iki.fi>
11013 L:      linux-media@vger.kernel.org
11014 W:      https://linuxtv.org
11015 W:      http://palosaari.fi/linux/
11016 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11017 T:      git git://linuxtv.org/anttip/media_tree.git
11018 S:      Maintained
11019 F:      drivers/media/tuners/msi001*
11020
11021 MSI2500 MEDIA DRIVER
11022 M:      Antti Palosaari <crope@iki.fi>
11023 L:      linux-media@vger.kernel.org
11024 W:      https://linuxtv.org
11025 W:      http://palosaari.fi/linux/
11026 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11027 T:      git git://linuxtv.org/anttip/media_tree.git
11028 S:      Maintained
11029 F:      drivers/media/usb/msi2500/
11030
11031 MSYSTEMS DISKONCHIP G3 MTD DRIVER
11032 M:      Robert Jarzmik <robert.jarzmik@free.fr>
11033 L:      linux-mtd@lists.infradead.org
11034 S:      Maintained
11035 F:      drivers/mtd/devices/docg3*
11036
11037 MT9M032 APTINA SENSOR DRIVER
11038 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11039 L:      linux-media@vger.kernel.org
11040 T:      git git://linuxtv.org/media_tree.git
11041 S:      Maintained
11042 F:      drivers/media/i2c/mt9m032.c
11043 F:      include/media/i2c/mt9m032.h
11044
11045 MT9P031 APTINA CAMERA SENSOR
11046 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11047 L:      linux-media@vger.kernel.org
11048 T:      git git://linuxtv.org/media_tree.git
11049 S:      Maintained
11050 F:      drivers/media/i2c/mt9p031.c
11051 F:      include/media/i2c/mt9p031.h
11052
11053 MT9T001 APTINA CAMERA SENSOR
11054 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11055 L:      linux-media@vger.kernel.org
11056 T:      git git://linuxtv.org/media_tree.git
11057 S:      Maintained
11058 F:      drivers/media/i2c/mt9t001.c
11059 F:      include/media/i2c/mt9t001.h
11060
11061 MT9T112 APTINA CAMERA SENSOR
11062 M:      Jacopo Mondi <jacopo@jmondi.org>
11063 L:      linux-media@vger.kernel.org
11064 T:      git git://linuxtv.org/media_tree.git
11065 S:      Odd Fixes
11066 F:      drivers/media/i2c/mt9t112.c
11067 F:      include/media/i2c/mt9t112.h
11068
11069 MT9V032 APTINA CAMERA SENSOR
11070 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11071 L:      linux-media@vger.kernel.org
11072 T:      git git://linuxtv.org/media_tree.git
11073 S:      Maintained
11074 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
11075 F:      drivers/media/i2c/mt9v032.c
11076 F:      include/media/i2c/mt9v032.h
11077
11078 MT9V111 APTINA CAMERA SENSOR
11079 M:      Jacopo Mondi <jacopo@jmondi.org>
11080 L:      linux-media@vger.kernel.org
11081 T:      git git://linuxtv.org/media_tree.git
11082 S:      Maintained
11083 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt
11084 F:      drivers/media/i2c/mt9v111.c
11085
11086 MULTIFUNCTION DEVICES (MFD)
11087 M:      Lee Jones <lee.jones@linaro.org>
11088 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11089 S:      Supported
11090 F:      Documentation/devicetree/bindings/mfd/
11091 F:      drivers/mfd/
11092 F:      include/linux/mfd/
11093 F:      include/dt-bindings/mfd/
11094
11095 MULTIMEDIA CARD (MMC) ETC. OVER SPI
11096 S:      Orphan
11097 F:      drivers/mmc/host/mmc_spi.c
11098 F:      include/linux/spi/mmc_spi.h
11099
11100 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
11101 M:      Ulf Hansson <ulf.hansson@linaro.org>
11102 L:      linux-mmc@vger.kernel.org
11103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
11104 S:      Maintained
11105 F:      Documentation/devicetree/bindings/mmc/
11106 F:      drivers/mmc/
11107 F:      include/linux/mmc/
11108 F:      include/uapi/linux/mmc/
11109
11110 MULTIPLEXER SUBSYSTEM
11111 M:      Peter Rosin <peda@axentia.se>
11112 S:      Maintained
11113 F:      Documentation/ABI/testing/sysfs-class-mux*
11114 F:      Documentation/devicetree/bindings/mux/
11115 F:      include/dt-bindings/mux/
11116 F:      include/linux/mux/
11117 F:      drivers/mux/
11118
11119 MULTITECH MULTIPORT CARD (ISICOM)
11120 S:      Orphan
11121 F:      drivers/tty/isicom.c
11122 F:      include/linux/isicom.h
11123
11124 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
11125 M:      Bin Liu <b-liu@ti.com>
11126 L:      linux-usb@vger.kernel.org
11127 S:      Maintained
11128 F:      drivers/usb/musb/
11129
11130 MXL301RF MEDIA DRIVER
11131 M:      Akihiro Tsukada <tskd08@gmail.com>
11132 L:      linux-media@vger.kernel.org
11133 S:      Odd Fixes
11134 F:      drivers/media/tuners/mxl301rf*
11135
11136 MXL5007T MEDIA DRIVER
11137 M:      Michael Krufky <mkrufky@linuxtv.org>
11138 L:      linux-media@vger.kernel.org
11139 W:      https://linuxtv.org
11140 W:      http://github.com/mkrufky
11141 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11142 T:      git git://linuxtv.org/mkrufky/tuners.git
11143 S:      Maintained
11144 F:      drivers/media/tuners/mxl5007t.*
11145
11146 MXSFB DRM DRIVER
11147 M:      Marek Vasut <marex@denx.de>
11148 M:      Stefan Agner <stefan@agner.ch>
11149 L:      dri-devel@lists.freedesktop.org
11150 S:      Supported
11151 F:      drivers/gpu/drm/mxsfb/
11152 F:      Documentation/devicetree/bindings/display/mxsfb.txt
11153 T:      git git://anongit.freedesktop.org/drm/drm-misc
11154
11155 MYLEX DAC960 PCI RAID Controller
11156 M:      Hannes Reinecke <hare@kernel.org>
11157 L:      linux-scsi@vger.kernel.org
11158 S:      Supported
11159 F:      drivers/scsi/myrb.*
11160 F:      drivers/scsi/myrs.*
11161
11162 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
11163 M:      Chris Lee <christopher.lee@cspi.com>
11164 L:      netdev@vger.kernel.org
11165 W:      https://www.cspi.com/ethernet-products/support/downloads/
11166 S:      Supported
11167 F:      drivers/net/ethernet/myricom/myri10ge/
11168
11169 NAND FLASH SUBSYSTEM
11170 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11171 R:      Richard Weinberger <richard@nod.at>
11172 L:      linux-mtd@lists.infradead.org
11173 W:      http://www.linux-mtd.infradead.org/
11174 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
11176 S:      Maintained
11177 F:      drivers/mtd/nand/
11178 F:      include/linux/mtd/*nand*.h
11179
11180 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
11181 M:      Daniel Mack <zonque@gmail.com>
11182 S:      Maintained
11183 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11184 W:      http://www.native-instruments.com
11185 F:      sound/usb/caiaq/
11186
11187 NATSEMI ETHERNET DRIVER (DP8381x)
11188 S:      Orphan
11189 F:      drivers/net/ethernet/natsemi/natsemi.c
11190
11191 NCR 5380 SCSI DRIVERS
11192 M:      Finn Thain <fthain@telegraphics.com.au>
11193 M:      Michael Schmitz <schmitzmic@gmail.com>
11194 L:      linux-scsi@vger.kernel.org
11195 S:      Maintained
11196 F:      Documentation/scsi/g_NCR5380.txt
11197 F:      drivers/scsi/NCR5380.*
11198 F:      drivers/scsi/arm/cumana_1.c
11199 F:      drivers/scsi/arm/oak.c
11200 F:      drivers/scsi/atari_scsi.*
11201 F:      drivers/scsi/dmx3191d.c
11202 F:      drivers/scsi/g_NCR5380.*
11203 F:      drivers/scsi/mac_scsi.*
11204 F:      drivers/scsi/sun3_scsi.*
11205 F:      drivers/scsi/sun3_scsi_vme.c
11206
11207 NCSI LIBRARY:
11208 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
11209 S:      Maintained
11210 F:      net/ncsi/
11211
11212 NCT6775 HARDWARE MONITOR DRIVER
11213 M:      Guenter Roeck <linux@roeck-us.net>
11214 L:      linux-hwmon@vger.kernel.org
11215 S:      Maintained
11216 F:      Documentation/hwmon/nct6775.rst
11217 F:      drivers/hwmon/nct6775.c
11218
11219 NET_FAILOVER MODULE
11220 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
11221 L:      netdev@vger.kernel.org
11222 S:      Supported
11223 F:      drivers/net/net_failover.c
11224 F:      include/net/net_failover.h
11225 F:      Documentation/networking/net_failover.rst
11226
11227 NETEM NETWORK EMULATOR
11228 M:      Stephen Hemminger <stephen@networkplumber.org>
11229 L:      netem@lists.linux-foundation.org (moderated for non-subscribers)
11230 S:      Maintained
11231 F:      net/sched/sch_netem.c
11232
11233 NETERION 10GbE DRIVERS (s2io/vxge)
11234 M:      Jon Mason <jdmason@kudzu.us>
11235 L:      netdev@vger.kernel.org
11236 S:      Supported
11237 F:      Documentation/networking/device_drivers/neterion/s2io.txt
11238 F:      Documentation/networking/device_drivers/neterion/vxge.txt
11239 F:      drivers/net/ethernet/neterion/
11240
11241 NETFILTER
11242 M:      Pablo Neira Ayuso <pablo@netfilter.org>
11243 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
11244 M:      Florian Westphal <fw@strlen.de>
11245 L:      netfilter-devel@vger.kernel.org
11246 L:      coreteam@netfilter.org
11247 W:      http://www.netfilter.org/
11248 W:      http://www.iptables.org/
11249 W:      http://www.nftables.org/
11250 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
11251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
11252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
11253 S:      Maintained
11254 F:      include/linux/netfilter*
11255 F:      include/linux/netfilter/
11256 F:      include/net/netfilter/
11257 F:      include/uapi/linux/netfilter*
11258 F:      include/uapi/linux/netfilter/
11259 F:      net/*/netfilter.c
11260 F:      net/*/netfilter/
11261 F:      net/netfilter/
11262 F:      net/bridge/br_netfilter*.c
11263
11264 NETROM NETWORK LAYER
11265 M:      Ralf Baechle <ralf@linux-mips.org>
11266 L:      linux-hams@vger.kernel.org
11267 W:      http://www.linux-ax25.org/
11268 S:      Maintained
11269 F:      include/net/netrom.h
11270 F:      include/uapi/linux/netrom.h
11271 F:      net/netrom/
11272
11273 NETRONOME ETHERNET DRIVERS
11274 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
11275 L:      oss-drivers@netronome.com
11276 S:      Maintained
11277 F:      drivers/net/ethernet/netronome/
11278
11279 NETWORK BLOCK DEVICE (NBD)
11280 M:      Josef Bacik <josef@toxicpanda.com>
11281 S:      Maintained
11282 L:      linux-block@vger.kernel.org
11283 L:      nbd@other.debian.org
11284 F:      Documentation/admin-guide/blockdev/nbd.rst
11285 F:      drivers/block/nbd.c
11286 F:      include/trace/events/nbd.h
11287 F:      include/uapi/linux/nbd.h
11288
11289 NETWORK DROP MONITOR
11290 M:      Neil Horman <nhorman@tuxdriver.com>
11291 L:      netdev@vger.kernel.org
11292 S:      Maintained
11293 W:      https://fedorahosted.org/dropwatch/
11294 F:      net/core/drop_monitor.c
11295 F:      include/uapi/linux/net_dropmon.h
11296 F:      include/net/drop_monitor.h
11297
11298 NETWORKING DRIVERS
11299 M:      "David S. Miller" <davem@davemloft.net>
11300 L:      netdev@vger.kernel.org
11301 W:      http://www.linuxfoundation.org/en/Net
11302 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
11304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
11305 S:      Odd Fixes
11306 F:      Documentation/devicetree/bindings/net/
11307 F:      drivers/net/
11308 F:      include/linux/if_*
11309 F:      include/linux/netdevice.h
11310 F:      include/linux/etherdevice.h
11311 F:      include/linux/fcdevice.h
11312 F:      include/linux/fddidevice.h
11313 F:      include/linux/hippidevice.h
11314 F:      include/linux/inetdevice.h
11315 F:      include/uapi/linux/if_*
11316 F:      include/uapi/linux/netdevice.h
11317
11318 NETWORKING DRIVERS (WIRELESS)
11319 M:      Kalle Valo <kvalo@codeaurora.org>
11320 L:      linux-wireless@vger.kernel.org
11321 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
11323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
11324 S:      Maintained
11325 F:      Documentation/devicetree/bindings/net/wireless/
11326 F:      drivers/net/wireless/
11327
11328 NETWORKING [DSA]
11329 M:      Andrew Lunn <andrew@lunn.ch>
11330 M:      Vivien Didelot <vivien.didelot@gmail.com>
11331 M:      Florian Fainelli <f.fainelli@gmail.com>
11332 S:      Maintained
11333 F:      Documentation/devicetree/bindings/net/dsa/
11334 F:      net/dsa/
11335 F:      include/net/dsa.h
11336 F:      include/linux/dsa/
11337 F:      include/linux/platform_data/dsa.h
11338 F:      drivers/net/dsa/
11339
11340 NETWORKING [GENERAL]
11341 M:      "David S. Miller" <davem@davemloft.net>
11342 L:      netdev@vger.kernel.org
11343 W:      http://www.linuxfoundation.org/en/Net
11344 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
11346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
11347 B:      mailto:netdev@vger.kernel.org
11348 S:      Maintained
11349 F:      net/
11350 F:      include/net/
11351 F:      include/linux/in.h
11352 F:      include/linux/net.h
11353 F:      include/linux/netdevice.h
11354 F:      include/uapi/linux/in.h
11355 F:      include/uapi/linux/net.h
11356 F:      include/uapi/linux/netdevice.h
11357 F:      include/uapi/linux/net_namespace.h
11358 F:      tools/testing/selftests/net/
11359 F:      lib/net_utils.c
11360 F:      lib/random32.c
11361 F:      Documentation/networking/
11362
11363 NETWORKING [IPSEC]
11364 M:      Steffen Klassert <steffen.klassert@secunet.com>
11365 M:      Herbert Xu <herbert@gondor.apana.org.au>
11366 M:      "David S. Miller" <davem@davemloft.net>
11367 L:      netdev@vger.kernel.org
11368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
11369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
11370 S:      Maintained
11371 F:      net/xfrm/
11372 F:      net/key/
11373 F:      net/ipv4/xfrm*
11374 F:      net/ipv4/esp4*
11375 F:      net/ipv4/ah4.c
11376 F:      net/ipv4/ipcomp.c
11377 F:      net/ipv4/ip_vti.c
11378 F:      net/ipv6/xfrm*
11379 F:      net/ipv6/esp6*
11380 F:      net/ipv6/ah6.c
11381 F:      net/ipv6/ipcomp6.c
11382 F:      net/ipv6/ip6_vti.c
11383 F:      include/uapi/linux/xfrm.h
11384 F:      include/net/xfrm.h
11385
11386 NETWORKING [IPv4/IPv6]
11387 M:      "David S. Miller" <davem@davemloft.net>
11388 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
11389 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
11390 L:      netdev@vger.kernel.org
11391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
11392 S:      Maintained
11393 F:      net/ipv4/
11394 F:      net/ipv6/
11395 F:      include/net/ip*
11396 F:      arch/x86/net/*
11397
11398 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
11399 M:      Paul Moore <paul@paul-moore.com>
11400 W:      https://github.com/netlabel
11401 L:      netdev@vger.kernel.org
11402 L:      linux-security-module@vger.kernel.org
11403 S:      Maintained
11404 F:      Documentation/netlabel/
11405 F:      include/net/calipso.h
11406 F:      include/net/cipso_ipv4.h
11407 F:      include/net/netlabel.h
11408 F:      include/uapi/linux/netfilter/xt_SECMARK.h
11409 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
11410 F:      net/netlabel/
11411 F:      net/ipv4/cipso_ipv4.c
11412 F:      net/ipv6/calipso.c
11413 F:      net/netfilter/xt_CONNSECMARK.c
11414 F:      net/netfilter/xt_SECMARK.c
11415
11416 NETWORKING [TCP]
11417 M:      Eric Dumazet <edumazet@google.com>
11418 L:      netdev@vger.kernel.org
11419 S:      Maintained
11420 F:      net/ipv4/tcp*.c
11421 F:      net/ipv4/syncookies.c
11422 F:      net/ipv6/tcp*.c
11423 F:      net/ipv6/syncookies.c
11424 F:      include/uapi/linux/tcp.h
11425 F:      include/net/tcp.h
11426 F:      include/linux/tcp.h
11427 F:      include/trace/events/tcp.h
11428
11429 NETWORKING [TLS]
11430 M:      Boris Pismenny <borisp@mellanox.com>
11431 M:      Aviad Yehezkel <aviadye@mellanox.com>
11432 M:      John Fastabend <john.fastabend@gmail.com>
11433 M:      Daniel Borkmann <daniel@iogearbox.net>
11434 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
11435 L:      netdev@vger.kernel.org
11436 S:      Maintained
11437 F:      net/tls/*
11438 F:      include/uapi/linux/tls.h
11439 F:      include/net/tls.h
11440
11441 NETWORKING [WIRELESS]
11442 L:      linux-wireless@vger.kernel.org
11443 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11444
11445 NETDEVSIM
11446 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
11447 S:      Maintained
11448 F:      drivers/net/netdevsim/*
11449
11450 NETXEN (1/10) GbE SUPPORT
11451 M:      Manish Chopra <manishc@marvell.com>
11452 M:      Rahul Verma <rahulv@marvell.com>
11453 M:      GR-Linux-NIC-Dev@marvell.com
11454 L:      netdev@vger.kernel.org
11455 S:      Supported
11456 F:      drivers/net/ethernet/qlogic/netxen/
11457
11458 NEXTHOP
11459 M:      David Ahern <dsahern@kernel.org>
11460 L:      netdev@vger.kernel.org
11461 S:      Maintained
11462 F:      include/net/nexthop.h
11463 F:      include/uapi/linux/nexthop.h
11464 F:      include/net/netns/nexthop.h
11465 F:      net/ipv4/nexthop.c
11466
11467 NFC SUBSYSTEM
11468 L:      netdev@vger.kernel.org
11469 S:      Orphan
11470 F:      net/nfc/
11471 F:      include/net/nfc/
11472 F:      include/uapi/linux/nfc.h
11473 F:      drivers/nfc/
11474 F:      include/linux/platform_data/nfcmrvl.h
11475 F:      Documentation/devicetree/bindings/net/nfc/
11476
11477 NFS, SUNRPC, AND LOCKD CLIENTS
11478 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
11479 M:      Anna Schumaker <anna.schumaker@netapp.com>
11480 L:      linux-nfs@vger.kernel.org
11481 W:      http://client.linux-nfs.org
11482 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
11483 S:      Maintained
11484 F:      fs/lockd/
11485 F:      fs/nfs/
11486 F:      fs/nfs_common/
11487 F:      net/sunrpc/
11488 F:      include/linux/lockd/
11489 F:      include/linux/nfs*
11490 F:      include/linux/sunrpc/
11491 F:      include/uapi/linux/nfs*
11492 F:      include/uapi/linux/sunrpc/
11493
11494 NILFS2 FILESYSTEM
11495 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
11496 L:      linux-nilfs@vger.kernel.org
11497 W:      https://nilfs.sourceforge.io/
11498 W:      https://nilfs.osdn.jp/
11499 T:      git git://github.com/konis/nilfs2.git
11500 S:      Supported
11501 F:      Documentation/filesystems/nilfs2.txt
11502 F:      fs/nilfs2/
11503 F:      include/trace/events/nilfs2.h
11504 F:      include/uapi/linux/nilfs2_api.h
11505 F:      include/uapi/linux/nilfs2_ondisk.h
11506
11507 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
11508 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
11509 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11510 S:      Maintained
11511 F:      Documentation/scsi/NinjaSCSI.txt
11512 F:      drivers/scsi/pcmcia/nsp_*
11513
11514 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
11515 M:      GOTO Masanori <gotom@debian.or.jp>
11516 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
11517 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11518 S:      Maintained
11519 F:      Documentation/scsi/NinjaSCSI.txt
11520 F:      drivers/scsi/nsp32*
11521
11522 NIOS2 ARCHITECTURE
11523 M:      Ley Foon Tan <lftan@altera.com>
11524 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
11525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
11526 S:      Maintained
11527 F:      arch/nios2/
11528
11529 NOHZ, DYNTICKS SUPPORT
11530 M:      Frederic Weisbecker <fweisbec@gmail.com>
11531 M:      Thomas Gleixner <tglx@linutronix.de>
11532 M:      Ingo Molnar <mingo@kernel.org>
11533 L:      linux-kernel@vger.kernel.org
11534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
11535 S:      Maintained
11536 F:      kernel/time/tick*.*
11537 F:      include/linux/tick.h
11538 F:      include/linux/sched/nohz.h
11539
11540 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
11541 M:      Pavel Machek <pavel@ucw.cz>
11542 M:      Sakari Ailus <sakari.ailus@iki.fi>
11543 L:      linux-media@vger.kernel.org
11544 S:      Maintained
11545 F:      drivers/media/i2c/et8ek8
11546 F:      drivers/media/i2c/ad5820.c
11547
11548 NOKIA N900 POWER SUPPLY DRIVERS
11549 R:      Pali Rohár <pali.rohar@gmail.com>
11550 F:      include/linux/power/bq2415x_charger.h
11551 F:      include/linux/power/bq27xxx_battery.h
11552 F:      drivers/power/supply/bq2415x_charger.c
11553 F:      drivers/power/supply/bq27xxx_battery.c
11554 F:      drivers/power/supply/bq27xxx_battery_i2c.c
11555 F:      drivers/power/supply/isp1704_charger.c
11556 F:      drivers/power/supply/rx51_battery.c
11557
11558 NOLIBC HEADER FILE
11559 M:      Willy Tarreau <w@1wt.eu>
11560 S:      Maintained
11561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
11562 F:      tools/include/nolibc/
11563
11564 NSDEPS
11565 M:      Matthias Maennich <maennich@google.com>
11566 S:      Maintained
11567 F:      scripts/nsdeps
11568 F:      Documentation/core-api/symbol-namespaces.rst
11569
11570 NTB AMD DRIVER
11571 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
11572 L:      linux-ntb@googlegroups.com
11573 S:      Supported
11574 F:      drivers/ntb/hw/amd/
11575
11576 NTB DRIVER CORE
11577 M:      Jon Mason <jdmason@kudzu.us>
11578 M:      Dave Jiang <dave.jiang@intel.com>
11579 M:      Allen Hubbe <allenbh@gmail.com>
11580 L:      linux-ntb@googlegroups.com
11581 S:      Supported
11582 W:      https://github.com/jonmason/ntb/wiki
11583 T:      git git://github.com/jonmason/ntb.git
11584 F:      drivers/ntb/
11585 F:      drivers/net/ntb_netdev.c
11586 F:      include/linux/ntb.h
11587 F:      include/linux/ntb_transport.h
11588 F:      tools/testing/selftests/ntb/
11589
11590 NTB IDT DRIVER
11591 M:      Serge Semin <fancer.lancer@gmail.com>
11592 L:      linux-ntb@googlegroups.com
11593 S:      Supported
11594 F:      drivers/ntb/hw/idt/
11595
11596 NTB INTEL DRIVER
11597 M:      Dave Jiang <dave.jiang@intel.com>
11598 L:      linux-ntb@googlegroups.com
11599 S:      Supported
11600 W:      https://github.com/davejiang/linux/wiki
11601 T:      git https://github.com/davejiang/linux.git
11602 F:      drivers/ntb/hw/intel/
11603
11604 NTFS FILESYSTEM
11605 M:      Anton Altaparmakov <anton@tuxera.com>
11606 L:      linux-ntfs-dev@lists.sourceforge.net
11607 W:      http://www.tuxera.com/
11608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
11609 S:      Supported
11610 F:      Documentation/filesystems/ntfs.txt
11611 F:      fs/ntfs/
11612
11613 NUBUS SUBSYSTEM
11614 M:      Finn Thain <fthain@telegraphics.com.au>
11615 L:      linux-m68k@lists.linux-m68k.org
11616 S:      Maintained
11617 F:      arch/*/include/asm/nubus.h
11618 F:      drivers/nubus/
11619 F:      include/linux/nubus.h
11620 F:      include/uapi/linux/nubus.h
11621
11622 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
11623 M:      Antonino Daplas <adaplas@gmail.com>
11624 L:      linux-fbdev@vger.kernel.org
11625 S:      Maintained
11626 F:      drivers/video/fbdev/riva/
11627 F:      drivers/video/fbdev/nvidia/
11628
11629 NVM EXPRESS DRIVER
11630 M:      Keith Busch <kbusch@kernel.org>
11631 M:      Jens Axboe <axboe@fb.com>
11632 M:      Christoph Hellwig <hch@lst.de>
11633 M:      Sagi Grimberg <sagi@grimberg.me>
11634 L:      linux-nvme@lists.infradead.org
11635 T:      git://git.infradead.org/nvme.git
11636 W:      http://git.infradead.org/nvme.git
11637 S:      Supported
11638 F:      drivers/nvme/host/
11639 F:      include/linux/nvme.h
11640 F:      include/uapi/linux/nvme_ioctl.h
11641
11642 NVM EXPRESS FC TRANSPORT DRIVERS
11643 M:      James Smart <james.smart@broadcom.com>
11644 L:      linux-nvme@lists.infradead.org
11645 S:      Supported
11646 F:      include/linux/nvme-fc.h
11647 F:      include/linux/nvme-fc-driver.h
11648 F:      drivers/nvme/host/fc.c
11649 F:      drivers/nvme/target/fc.c
11650 F:      drivers/nvme/target/fcloop.c
11651
11652 NVM EXPRESS TARGET DRIVER
11653 M:      Christoph Hellwig <hch@lst.de>
11654 M:      Sagi Grimberg <sagi@grimberg.me>
11655 L:      linux-nvme@lists.infradead.org
11656 T:      git://git.infradead.org/nvme.git
11657 W:      http://git.infradead.org/nvme.git
11658 S:      Supported
11659 F:      drivers/nvme/target/
11660
11661 NVMEM FRAMEWORK
11662 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
11663 S:      Maintained
11664 F:      drivers/nvmem/
11665 F:      Documentation/devicetree/bindings/nvmem/
11666 F:      Documentation/ABI/stable/sysfs-bus-nvmem
11667 F:      include/linux/nvmem-consumer.h
11668 F:      include/linux/nvmem-provider.h
11669
11670 NXP FXAS21002C DRIVER
11671 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11672 L:      linux-iio@vger.kernel.org
11673 S:      Maintained
11674 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
11675 F:      drivers/iio/gyro/fxas21002c_core.c
11676 F:      drivers/iio/gyro/fxas21002c.h
11677 F:      drivers/iio/gyro/fxas21002c_i2c.c
11678 F:      drivers/iio/gyro/fxas21002c_spi.c
11679
11680 NXP SGTL5000 DRIVER
11681 M:      Fabio Estevam <festevam@gmail.com>
11682 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11683 S:      Maintained
11684 F:      Documentation/devicetree/bindings/sound/sgtl5000.txt
11685 F:      sound/soc/codecs/sgtl5000*
11686
11687 NXP SJA1105 ETHERNET SWITCH DRIVER
11688 M:      Vladimir Oltean <olteanv@gmail.com>
11689 L:      linux-kernel@vger.kernel.org
11690 S:      Maintained
11691 F:      drivers/net/dsa/sja1105
11692
11693 NXP TDA998X DRM DRIVER
11694 M:      Russell King <linux@armlinux.org.uk>
11695 S:      Maintained
11696 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
11697 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
11698 F:      drivers/gpu/drm/i2c/tda998x_drv.c
11699 F:      include/drm/i2c/tda998x.h
11700 F:      include/dt-bindings/display/tda998x.h
11701 K:      "nxp,tda998x"
11702
11703 NXP TFA9879 DRIVER
11704 M:      Peter Rosin <peda@axentia.se>
11705 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11706 S:      Maintained
11707 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
11708 F:      sound/soc/codecs/tfa9879*
11709
11710 NXP-NCI NFC DRIVER
11711 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
11712 R:      Charles Gorand <charles.gorand@effinnov.com>
11713 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
11714 S:      Supported
11715 F:      drivers/nfc/nxp-nci
11716
11717 OBJAGG
11718 M:      Jiri Pirko <jiri@mellanox.com>
11719 L:      netdev@vger.kernel.org
11720 S:      Supported
11721 F:      lib/objagg.c
11722 F:      lib/test_objagg.c
11723 F:      include/linux/objagg.h
11724
11725 NXP FSPI DRIVER
11726 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
11727 M:      Ashish Kumar <ashish.kumar@nxp.com>
11728 L:      linux-spi@vger.kernel.org
11729 S:      Maintained
11730 F:      drivers/spi/spi-nxp-fspi.c
11731 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
11732
11733 OBJTOOL
11734 M:      Josh Poimboeuf <jpoimboe@redhat.com>
11735 M:      Peter Zijlstra <peterz@infradead.org>
11736 S:      Supported
11737 F:      tools/objtool/
11738
11739 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
11740 M:      Frederic Barrat <fbarrat@linux.ibm.com>
11741 M:      Andrew Donnellan <ajd@linux.ibm.com>
11742 L:      linuxppc-dev@lists.ozlabs.org
11743 S:      Supported
11744 F:      arch/powerpc/platforms/powernv/ocxl.c
11745 F:      arch/powerpc/include/asm/pnv-ocxl.h
11746 F:      drivers/misc/ocxl/
11747 F:      include/misc/ocxl*
11748 F:      include/uapi/misc/ocxl.h
11749 F:      Documentation/userspace-api/accelerators/ocxl.rst
11750
11751 OMAP AUDIO SUPPORT
11752 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
11753 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
11754 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11755 L:      linux-omap@vger.kernel.org
11756 S:      Maintained
11757 F:      sound/soc/ti/omap*
11758 F:      sound/soc/ti/rx51.c
11759 F:      sound/soc/ti/n810.c
11760 F:      sound/soc/ti/sdma-pcm.*
11761
11762 OMAP CLOCK FRAMEWORK SUPPORT
11763 M:      Paul Walmsley <paul@pwsan.com>
11764 L:      linux-omap@vger.kernel.org
11765 S:      Maintained
11766 F:      arch/arm/*omap*/*clock*
11767
11768 OMAP DEVICE TREE SUPPORT
11769 M:      Benoît Cousson <bcousson@baylibre.com>
11770 M:      Tony Lindgren <tony@atomide.com>
11771 L:      linux-omap@vger.kernel.org
11772 L:      devicetree@vger.kernel.org
11773 S:      Maintained
11774 F:      arch/arm/boot/dts/*omap*
11775 F:      arch/arm/boot/dts/*am3*
11776 F:      arch/arm/boot/dts/*am4*
11777 F:      arch/arm/boot/dts/*am5*
11778 F:      arch/arm/boot/dts/*dra7*
11779
11780 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
11781 L:      linux-omap@vger.kernel.org
11782 L:      linux-fbdev@vger.kernel.org
11783 S:      Orphan
11784 F:      drivers/video/fbdev/omap2/
11785 F:      Documentation/arm/omap/dss.rst
11786
11787 OMAP FRAMEBUFFER SUPPORT
11788 L:      linux-fbdev@vger.kernel.org
11789 L:      linux-omap@vger.kernel.org
11790 S:      Orphan
11791 F:      drivers/video/fbdev/omap/
11792
11793 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
11794 M:      Roger Quadros <rogerq@ti.com>
11795 M:      Tony Lindgren <tony@atomide.com>
11796 L:      linux-omap@vger.kernel.org
11797 S:      Maintained
11798 F:      drivers/memory/omap-gpmc.c
11799 F:      arch/arm/mach-omap2/*gpmc*
11800
11801 OMAP GPIO DRIVER
11802 M:      Grygorii Strashko <grygorii.strashko@ti.com>
11803 M:      Santosh Shilimkar <ssantosh@kernel.org>
11804 M:      Kevin Hilman <khilman@kernel.org>
11805 L:      linux-omap@vger.kernel.org
11806 S:      Maintained
11807 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
11808 F:      drivers/gpio/gpio-omap.c
11809
11810 OMAP HARDWARE SPINLOCK SUPPORT
11811 M:      Ohad Ben-Cohen <ohad@wizery.com>
11812 L:      linux-omap@vger.kernel.org
11813 S:      Maintained
11814 F:      drivers/hwspinlock/omap_hwspinlock.c
11815
11816 OMAP HS MMC SUPPORT
11817 L:      linux-mmc@vger.kernel.org
11818 L:      linux-omap@vger.kernel.org
11819 S:      Orphan
11820 F:      drivers/mmc/host/omap_hsmmc.c
11821
11822 OMAP HWMOD DATA
11823 M:      Paul Walmsley <paul@pwsan.com>
11824 L:      linux-omap@vger.kernel.org
11825 S:      Maintained
11826 F:      arch/arm/mach-omap2/omap_hwmod*data*
11827
11828 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
11829 M:      Benoît Cousson <bcousson@baylibre.com>
11830 L:      linux-omap@vger.kernel.org
11831 S:      Maintained
11832 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
11833
11834 OMAP HWMOD SUPPORT
11835 M:      Benoît Cousson <bcousson@baylibre.com>
11836 M:      Paul Walmsley <paul@pwsan.com>
11837 L:      linux-omap@vger.kernel.org
11838 S:      Maintained
11839 F:      arch/arm/mach-omap2/omap_hwmod.*
11840
11841 OMAP I2C DRIVER
11842 M:      Vignesh R <vigneshr@ti.com>
11843 L:      linux-omap@vger.kernel.org
11844 L:      linux-i2c@vger.kernel.org
11845 S:      Maintained
11846 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
11847 F:      drivers/i2c/busses/i2c-omap.c
11848
11849 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
11850 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11851 L:      linux-media@vger.kernel.org
11852 S:      Maintained
11853 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
11854 F:      drivers/media/platform/omap3isp/
11855 F:      drivers/staging/media/omap4iss/
11856
11857 OMAP MMC SUPPORT
11858 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
11859 L:      linux-omap@vger.kernel.org
11860 S:      Odd Fixes
11861 F:      drivers/mmc/host/omap.c
11862
11863 OMAP POWER MANAGEMENT SUPPORT
11864 M:      Kevin Hilman <khilman@kernel.org>
11865 L:      linux-omap@vger.kernel.org
11866 S:      Maintained
11867 F:      arch/arm/*omap*/*pm*
11868 F:      drivers/cpufreq/omap-cpufreq.c
11869
11870 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
11871 M:      Rajendra Nayak <rnayak@codeaurora.org>
11872 M:      Paul Walmsley <paul@pwsan.com>
11873 L:      linux-omap@vger.kernel.org
11874 S:      Maintained
11875 F:      arch/arm/mach-omap2/prm*
11876
11877 OMAP RANDOM NUMBER GENERATOR SUPPORT
11878 M:      Deepak Saxena <dsaxena@plexity.net>
11879 S:      Maintained
11880 F:      drivers/char/hw_random/omap-rng.c
11881
11882 OMAP USB SUPPORT
11883 L:      linux-usb@vger.kernel.org
11884 L:      linux-omap@vger.kernel.org
11885 S:      Orphan
11886 F:      drivers/usb/*/*omap*
11887 F:      arch/arm/*omap*/usb*
11888
11889 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
11890 M:      Mark Jackson <mpfj@newflow.co.uk>
11891 L:      linux-omap@vger.kernel.org
11892 S:      Maintained
11893 F:      arch/arm/boot/dts/am335x-nano.dts
11894
11895 OMAP1 SUPPORT
11896 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
11897 M:      Tony Lindgren <tony@atomide.com>
11898 L:      linux-omap@vger.kernel.org
11899 Q:      http://patchwork.kernel.org/project/linux-omap/list/
11900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
11901 S:      Maintained
11902 F:      arch/arm/mach-omap1/
11903 F:      arch/arm/plat-omap/
11904 F:      arch/arm/configs/omap1_defconfig
11905 F:      drivers/i2c/busses/i2c-omap.c
11906 F:      include/linux/platform_data/i2c-omap.h
11907 F:      include/linux/platform_data/ams-delta-fiq.h
11908
11909 OMAP2+ SUPPORT
11910 M:      Tony Lindgren <tony@atomide.com>
11911 L:      linux-omap@vger.kernel.org
11912 W:      http://www.muru.com/linux/omap/
11913 W:      http://linux.omap.com/
11914 Q:      http://patchwork.kernel.org/project/linux-omap/list/
11915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
11916 S:      Maintained
11917 F:      arch/arm/mach-omap2/
11918 F:      arch/arm/plat-omap/
11919 F:      arch/arm/configs/omap2plus_defconfig
11920 F:      drivers/bus/ti-sysc.c
11921 F:      drivers/i2c/busses/i2c-omap.c
11922 F:      drivers/irqchip/irq-omap-intc.c
11923 F:      drivers/mfd/*omap*.c
11924 F:      drivers/mfd/menelaus.c
11925 F:      drivers/mfd/palmas.c
11926 F:      drivers/mfd/tps65217.c
11927 F:      drivers/mfd/tps65218.c
11928 F:      drivers/mfd/tps65910.c
11929 F:      drivers/mfd/twl-core.[ch]
11930 F:      drivers/mfd/twl4030*.c
11931 F:      drivers/mfd/twl6030*.c
11932 F:      drivers/mfd/twl6040*.c
11933 F:      drivers/regulator/palmas-regulator*.c
11934 F:      drivers/regulator/pbias-regulator.c
11935 F:      drivers/regulator/tps65217-regulator.c
11936 F:      drivers/regulator/tps65218-regulator.c
11937 F:      drivers/regulator/tps65910-regulator.c
11938 F:      drivers/regulator/twl-regulator.c
11939 F:      drivers/regulator/twl6030-regulator.c
11940 F:      include/linux/platform_data/i2c-omap.h
11941 F:      include/linux/platform_data/ti-sysc.h
11942
11943 ONION OMEGA2+ BOARD
11944 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
11945 L:      linux-mips@vger.kernel.org
11946 S:      Maintained
11947 F:      arch/mips/boot/dts/ralink/omega2p.dts
11948
11949 OMFS FILESYSTEM
11950 M:      Bob Copeland <me@bobcopeland.com>
11951 L:      linux-karma-devel@lists.sourceforge.net
11952 S:      Maintained
11953 F:      Documentation/filesystems/omfs.txt
11954 F:      fs/omfs/
11955
11956 OMNIKEY CARDMAN 4000 DRIVER
11957 M:      Harald Welte <laforge@gnumonks.org>
11958 S:      Maintained
11959 F:      drivers/char/pcmcia/cm4000_cs.c
11960 F:      include/linux/cm4000_cs.h
11961 F:      include/uapi/linux/cm4000_cs.h
11962
11963 OMNIKEY CARDMAN 4040 DRIVER
11964 M:      Harald Welte <laforge@gnumonks.org>
11965 S:      Maintained
11966 F:      drivers/char/pcmcia/cm4040_cs.*
11967
11968 OMNIVISION OV13858 SENSOR DRIVER
11969 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11970 L:      linux-media@vger.kernel.org
11971 T:      git git://linuxtv.org/media_tree.git
11972 S:      Maintained
11973 F:      drivers/media/i2c/ov13858.c
11974
11975 OMNIVISION OV2680 SENSOR DRIVER
11976 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11977 L:      linux-media@vger.kernel.org
11978 T:      git git://linuxtv.org/media_tree.git
11979 S:      Maintained
11980 F:      drivers/media/i2c/ov2680.c
11981 F:      Documentation/devicetree/bindings/media/i2c/ov2680.txt
11982
11983 OMNIVISION OV2685 SENSOR DRIVER
11984 M:      Shunqian Zheng <zhengsq@rock-chips.com>
11985 L:      linux-media@vger.kernel.org
11986 T:      git git://linuxtv.org/media_tree.git
11987 S:      Maintained
11988 F:      drivers/media/i2c/ov2685.c
11989
11990 OMNIVISION OV5640 SENSOR DRIVER
11991 M:      Steve Longerbeam <slongerbeam@gmail.com>
11992 L:      linux-media@vger.kernel.org
11993 T:      git git://linuxtv.org/media_tree.git
11994 S:      Maintained
11995 F:      drivers/media/i2c/ov5640.c
11996
11997 OMNIVISION OV5647 SENSOR DRIVER
11998 M:      Luis Oliveira <lolivei@synopsys.com>
11999 L:      linux-media@vger.kernel.org
12000 T:      git git://linuxtv.org/media_tree.git
12001 S:      Maintained
12002 F:      drivers/media/i2c/ov5647.c
12003
12004 OMNIVISION OV5670 SENSOR DRIVER
12005 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
12006 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
12007 L:      linux-media@vger.kernel.org
12008 T:      git git://linuxtv.org/media_tree.git
12009 S:      Maintained
12010 F:      drivers/media/i2c/ov5670.c
12011
12012 OMNIVISION OV5675 SENSOR DRIVER
12013 M:      Shawn Tu <shawnx.tu@intel.com>
12014 L:      linux-media@vger.kernel.org
12015 T:      git git://linuxtv.org/media_tree.git
12016 S:      Maintained
12017 F:      drivers/media/i2c/ov5675.c
12018
12019 OMNIVISION OV5695 SENSOR DRIVER
12020 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12021 L:      linux-media@vger.kernel.org
12022 T:      git git://linuxtv.org/media_tree.git
12023 S:      Maintained
12024 F:      drivers/media/i2c/ov5695.c
12025
12026 OMNIVISION OV7670 SENSOR DRIVER
12027 M:      Jonathan Corbet <corbet@lwn.net>
12028 L:      linux-media@vger.kernel.org
12029 T:      git git://linuxtv.org/media_tree.git
12030 S:      Maintained
12031 F:      drivers/media/i2c/ov7670.c
12032 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
12033
12034 OMNIVISION OV772x SENSOR DRIVER
12035 M:      Jacopo Mondi <jacopo@jmondi.org>
12036 L:      linux-media@vger.kernel.org
12037 T:      git git://linuxtv.org/media_tree.git
12038 S:      Odd fixes
12039 F:      drivers/media/i2c/ov772x.c
12040 F:      include/media/i2c/ov772x.h
12041 F:      Documentation/devicetree/bindings/media/i2c/ov772x.txt
12042
12043 OMNIVISION OV7740 SENSOR DRIVER
12044 M:      Wenyou Yang <wenyou.yang@microchip.com>
12045 L:      linux-media@vger.kernel.org
12046 T:      git git://linuxtv.org/media_tree.git
12047 S:      Maintained
12048 F:      drivers/media/i2c/ov7740.c
12049 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
12050
12051 OMNIVISION OV9640 SENSOR DRIVER
12052 M:      Petr Cvek <petrcvekcz@gmail.com>
12053 L:      linux-media@vger.kernel.org
12054 S:      Maintained
12055 F:      drivers/media/i2c/ov9640.*
12056
12057 OMNIVISION OV8856 SENSOR DRIVER
12058 M:      Ben Kao <ben.kao@intel.com>
12059 L:      linux-media@vger.kernel.org
12060 T:      git git://linuxtv.org/media_tree.git
12061 S:      Maintained
12062 F:      drivers/media/i2c/ov8856.c
12063
12064 OMNIVISION OV9650 SENSOR DRIVER
12065 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12066 R:      Akinobu Mita <akinobu.mita@gmail.com>
12067 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12068 L:      linux-media@vger.kernel.org
12069 T:      git git://linuxtv.org/media_tree.git
12070 S:      Maintained
12071 F:      drivers/media/i2c/ov9650.c
12072 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
12073
12074 ONENAND FLASH DRIVER
12075 M:      Kyungmin Park <kyungmin.park@samsung.com>
12076 L:      linux-mtd@lists.infradead.org
12077 S:      Maintained
12078 F:      drivers/mtd/nand/onenand/
12079 F:      include/linux/mtd/onenand*.h
12080
12081 OP-TEE DRIVER
12082 M:      Jens Wiklander <jens.wiklander@linaro.org>
12083 L:      tee-dev@lists.linaro.org
12084 S:      Maintained
12085 F:      drivers/tee/optee/
12086
12087 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
12088 M:      Sumit Garg <sumit.garg@linaro.org>
12089 L:      tee-dev@lists.linaro.org
12090 S:      Maintained
12091 F:      drivers/char/hw_random/optee-rng.c
12092
12093 OPA-VNIC DRIVER
12094 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
12095 M:      Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
12096 L:      linux-rdma@vger.kernel.org
12097 S:      Supported
12098 F:      drivers/infiniband/ulp/opa_vnic
12099
12100 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
12101 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
12102 M:      Frank Rowand <frowand.list@gmail.com>
12103 L:      devicetree@vger.kernel.org
12104 S:      Maintained
12105 F:      Documentation/devicetree/dynamic-resolution-notes.txt
12106 F:      Documentation/devicetree/overlay-notes.txt
12107 F:      drivers/of/overlay.c
12108 F:      drivers/of/resolver.c
12109 K:      of_overlay_notifier_
12110
12111 OPEN FIRMWARE AND FLATTENED DEVICE TREE
12112 M:      Rob Herring <robh+dt@kernel.org>
12113 M:      Frank Rowand <frowand.list@gmail.com>
12114 L:      devicetree@vger.kernel.org
12115 W:      http://www.devicetree.org/
12116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12117 S:      Maintained
12118 F:      drivers/of/
12119 F:      include/linux/of*.h
12120 F:      scripts/dtc/
12121 F:      Documentation/ABI/testing/sysfs-firmware-ofw
12122
12123 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
12124 M:      Rob Herring <robh+dt@kernel.org>
12125 M:      Mark Rutland <mark.rutland@arm.com>
12126 L:      devicetree@vger.kernel.org
12127 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12128 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
12129 S:      Maintained
12130 F:      Documentation/devicetree/
12131 F:      arch/*/boot/dts/
12132 F:      include/dt-bindings/
12133
12134 OPENCORES I2C BUS DRIVER
12135 M:      Peter Korsgaard <peter@korsgaard.com>
12136 M:      Andrew Lunn <andrew@lunn.ch>
12137 L:      linux-i2c@vger.kernel.org
12138 S:      Maintained
12139 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
12140 F:      Documentation/i2c/busses/i2c-ocores.rst
12141 F:      drivers/i2c/busses/i2c-ocores.c
12142 F:      include/linux/platform_data/i2c-ocores.h
12143
12144 OPENRISC ARCHITECTURE
12145 M:      Jonas Bonn <jonas@southpole.se>
12146 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
12147 M:      Stafford Horne <shorne@gmail.com>
12148 T:      git git://github.com/openrisc/linux.git
12149 L:      openrisc@lists.librecores.org
12150 W:      http://openrisc.io
12151 S:      Maintained
12152 F:      Documentation/devicetree/bindings/openrisc/
12153 F:      Documentation/openrisc/
12154 F:      arch/openrisc/
12155 F:      drivers/irqchip/irq-ompic.c
12156 F:      drivers/irqchip/irq-or1k-*
12157
12158 OPENVSWITCH
12159 M:      Pravin B Shelar <pshelar@ovn.org>
12160 L:      netdev@vger.kernel.org
12161 L:      dev@openvswitch.org
12162 W:      http://openvswitch.org
12163 S:      Maintained
12164 F:      net/openvswitch/
12165 F:      include/uapi/linux/openvswitch.h
12166
12167 OPERATING PERFORMANCE POINTS (OPP)
12168 M:      Viresh Kumar <vireshk@kernel.org>
12169 M:      Nishanth Menon <nm@ti.com>
12170 M:      Stephen Boyd <sboyd@kernel.org>
12171 L:      linux-pm@vger.kernel.org
12172 S:      Maintained
12173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
12174 F:      drivers/opp/
12175 F:      include/linux/pm_opp.h
12176 F:      Documentation/power/opp.rst
12177 F:      Documentation/devicetree/bindings/opp/
12178
12179 OPL4 DRIVER
12180 M:      Clemens Ladisch <clemens@ladisch.de>
12181 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12183 S:      Maintained
12184 F:      sound/drivers/opl4/
12185
12186 OPROFILE
12187 M:      Robert Richter <rric@kernel.org>
12188 L:      oprofile-list@lists.sf.net
12189 S:      Maintained
12190 F:      arch/*/include/asm/oprofile*.h
12191 F:      arch/*/oprofile/
12192 F:      drivers/oprofile/
12193 F:      include/linux/oprofile.h
12194
12195 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
12196 M:      Mark Fasheh <mark@fasheh.com>
12197 M:      Joel Becker <jlbec@evilplan.org>
12198 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
12199 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
12200 W:      http://ocfs2.wiki.kernel.org
12201 S:      Supported
12202 F:      Documentation/filesystems/ocfs2.txt
12203 F:      Documentation/filesystems/dlmfs.txt
12204 F:      fs/ocfs2/
12205
12206 ORANGEFS FILESYSTEM
12207 M:      Mike Marshall <hubcap@omnibond.com>
12208 R:      Martin Brandenburg <martin@omnibond.com>
12209 L:      devel@lists.orangefs.org
12210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
12211 S:      Supported
12212 F:      fs/orangefs/
12213 F:      Documentation/filesystems/orangefs.txt
12214
12215 ORINOCO DRIVER
12216 L:      linux-wireless@vger.kernel.org
12217 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
12218 W:      http://www.nongnu.org/orinoco/
12219 S:      Orphan
12220 F:      drivers/net/wireless/intersil/orinoco/
12221
12222 OV2659 OMNIVISION SENSOR DRIVER
12223 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
12224 L:      linux-media@vger.kernel.org
12225 W:      https://linuxtv.org
12226 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12227 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12228 S:      Maintained
12229 F:      drivers/media/i2c/ov2659.c
12230 F:      include/media/i2c/ov2659.h
12231
12232 OVERLAY FILESYSTEM
12233 M:      Miklos Szeredi <miklos@szeredi.hu>
12234 L:      linux-unionfs@vger.kernel.org
12235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
12236 S:      Supported
12237 F:      fs/overlayfs/
12238 F:      Documentation/filesystems/overlayfs.txt
12239
12240 P54 WIRELESS DRIVER
12241 M:      Christian Lamparter <chunkeey@googlemail.com>
12242 L:      linux-wireless@vger.kernel.org
12243 W:      http://wireless.kernel.org/en/users/Drivers/p54
12244 S:      Maintained
12245 F:      drivers/net/wireless/intersil/p54/
12246
12247 PA SEMI ETHERNET DRIVER
12248 L:      netdev@vger.kernel.org
12249 S:      Orphan
12250 F:      drivers/net/ethernet/pasemi/*
12251
12252 PA SEMI SMBUS DRIVER
12253 L:      linux-i2c@vger.kernel.org
12254 S:      Orphan
12255 F:      drivers/i2c/busses/i2c-pasemi.c
12256
12257 PACKING
12258 M:      Vladimir Oltean <olteanv@gmail.com>
12259 L:      netdev@vger.kernel.org
12260 S:      Supported
12261 F:      lib/packing.c
12262 F:      include/linux/packing.h
12263 F:      Documentation/core-api/packing.rst
12264
12265 PADATA PARALLEL EXECUTION MECHANISM
12266 M:      Steffen Klassert <steffen.klassert@secunet.com>
12267 L:      linux-crypto@vger.kernel.org
12268 S:      Maintained
12269 F:      kernel/padata.c
12270 F:      include/linux/padata.h
12271 F:      Documentation/padata.txt
12272
12273 PAGE POOL
12274 M:      Jesper Dangaard Brouer <hawk@kernel.org>
12275 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
12276 L:      netdev@vger.kernel.org
12277 S:      Supported
12278 F:      net/core/page_pool.c
12279 F:      include/net/page_pool.h
12280
12281 PANASONIC LAPTOP ACPI EXTRAS DRIVER
12282 M:      Harald Welte <laforge@gnumonks.org>
12283 L:      platform-driver-x86@vger.kernel.org
12284 S:      Maintained
12285 F:      drivers/platform/x86/panasonic-laptop.c
12286
12287 PARALLEL LCD/KEYPAD PANEL DRIVER
12288 M:      Willy Tarreau <willy@haproxy.com>
12289 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
12290 S:      Odd Fixes
12291 F:      Documentation/admin-guide/lcd-panel-cgram.rst
12292 F:      drivers/auxdisplay/panel.c
12293
12294 PARALLEL PORT SUBSYSTEM
12295 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12296 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12297 L:      linux-parport@lists.infradead.org (subscribers-only)
12298 S:      Maintained
12299 F:      drivers/parport/
12300 F:      include/linux/parport*.h
12301 F:      drivers/char/ppdev.c
12302 F:      include/uapi/linux/ppdev.h
12303 F:      Documentation/driver-api/parport*.rst
12304
12305 PARAVIRT_OPS INTERFACE
12306 M:      Juergen Gross <jgross@suse.com>
12307 M:      Thomas Hellstrom <thellstrom@vmware.com>
12308 M:      "VMware, Inc." <pv-drivers@vmware.com>
12309 L:      virtualization@lists.linux-foundation.org
12310 S:      Supported
12311 F:      Documentation/virt/paravirt_ops.rst
12312 F:      arch/*/kernel/paravirt*
12313 F:      arch/*/include/asm/paravirt*.h
12314 F:      include/linux/hypervisor.h
12315
12316 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
12317 M:      Tim Waugh <tim@cyberelk.net>
12318 L:      linux-parport@lists.infradead.org (subscribers-only)
12319 S:      Maintained
12320 F:      Documentation/admin-guide/blockdev/paride.rst
12321 F:      drivers/block/paride/
12322
12323 PARISC ARCHITECTURE
12324 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
12325 M:      Helge Deller <deller@gmx.de>
12326 L:      linux-parisc@vger.kernel.org
12327 W:      http://www.parisc-linux.org/
12328 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
12329 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
12330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
12331 S:      Maintained
12332 F:      arch/parisc/
12333 F:      Documentation/parisc/
12334 F:      drivers/parisc/
12335 F:      drivers/char/agp/parisc-agp.c
12336 F:      drivers/input/misc/hp_sdc_rtc.c
12337 F:      drivers/input/serio/gscps2.c
12338 F:      drivers/input/serio/hp_sdc*
12339 F:      drivers/parport/parport_gsc.*
12340 F:      drivers/tty/serial/8250/8250_gsc.c
12341 F:      drivers/video/fbdev/sti*
12342 F:      drivers/video/console/sti*
12343 F:      drivers/video/logo/logo_parisc*
12344 F:      include/linux/hp_sdc.h
12345
12346 PARMAN
12347 M:      Jiri Pirko <jiri@mellanox.com>
12348 L:      netdev@vger.kernel.org
12349 S:      Supported
12350 F:      lib/parman.c
12351 F:      lib/test_parman.c
12352 F:      include/linux/parman.h
12353
12354 PC ENGINES APU BOARD DRIVER
12355 M:      Enrico Weigelt, metux IT consult <info@metux.net>
12356 S:      Maintained
12357 F:      drivers/platform/x86/pcengines-apuv2.c
12358
12359 PC87360 HARDWARE MONITORING DRIVER
12360 M:      Jim Cromie <jim.cromie@gmail.com>
12361 L:      linux-hwmon@vger.kernel.org
12362 S:      Maintained
12363 F:      Documentation/hwmon/pc87360.rst
12364 F:      drivers/hwmon/pc87360.c
12365
12366 PC8736x GPIO DRIVER
12367 M:      Jim Cromie <jim.cromie@gmail.com>
12368 S:      Maintained
12369 F:      drivers/char/pc8736x_gpio.c
12370
12371 PC87427 HARDWARE MONITORING DRIVER
12372 M:      Jean Delvare <jdelvare@suse.com>
12373 L:      linux-hwmon@vger.kernel.org
12374 S:      Maintained
12375 F:      Documentation/hwmon/pc87427.rst
12376 F:      drivers/hwmon/pc87427.c
12377
12378 PCA9532 LED DRIVER
12379 M:      Riku Voipio <riku.voipio@iki.fi>
12380 S:      Maintained
12381 F:      drivers/leds/leds-pca9532.c
12382 F:      include/linux/leds-pca9532.h
12383
12384 PCA9541 I2C BUS MASTER SELECTOR DRIVER
12385 M:      Guenter Roeck <linux@roeck-us.net>
12386 L:      linux-i2c@vger.kernel.org
12387 S:      Maintained
12388 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
12389
12390 PCDP - PRIMARY CONSOLE AND DEBUG PORT
12391 M:      Khalid Aziz <khalid@gonehiking.org>
12392 S:      Maintained
12393 F:      drivers/firmware/pcdp.*
12394
12395 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
12396 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12397 L:      linux-pci@vger.kernel.org
12398 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12399 S:      Maintained
12400 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
12401 F:      drivers/pci/controller/pci-aardvark.c
12402
12403 PCI DRIVER FOR ALTERA PCIE IP
12404 M:      Ley Foon Tan <lftan@altera.com>
12405 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
12406 L:      linux-pci@vger.kernel.org
12407 S:      Supported
12408 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
12409 F:      drivers/pci/controller/pcie-altera.c
12410
12411 PCI DRIVER FOR APPLIEDMICRO XGENE
12412 M:      Toan Le <toan@os.amperecomputing.com>
12413 L:      linux-pci@vger.kernel.org
12414 L:      linux-arm-kernel@lists.infradead.org
12415 S:      Maintained
12416 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
12417 F:      drivers/pci/controller/pci-xgene.c
12418
12419 PCI DRIVER FOR ARM VERSATILE PLATFORM
12420 M:      Rob Herring <robh@kernel.org>
12421 L:      linux-pci@vger.kernel.org
12422 L:      linux-arm-kernel@lists.infradead.org
12423 S:      Maintained
12424 F:      Documentation/devicetree/bindings/pci/versatile.txt
12425 F:      drivers/pci/controller/pci-versatile.c
12426
12427 PCI DRIVER FOR ARMADA 8K
12428 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12429 L:      linux-pci@vger.kernel.org
12430 L:      linux-arm-kernel@lists.infradead.org
12431 S:      Maintained
12432 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
12433 F:      drivers/pci/controller/dwc/pcie-armada8k.c
12434
12435 PCI DRIVER FOR CADENCE PCIE IP
12436 M:      Tom Joseph <tjoseph@cadence.com>
12437 L:      linux-pci@vger.kernel.org
12438 S:      Maintained
12439 F:      Documentation/devicetree/bindings/pci/cdns,*.txt
12440 F:      drivers/pci/controller/pcie-cadence*
12441
12442 PCI DRIVER FOR FREESCALE LAYERSCAPE
12443 M:      Minghuan Lian <minghuan.Lian@nxp.com>
12444 M:      Mingkai Hu <mingkai.hu@nxp.com>
12445 M:      Roy Zang <roy.zang@nxp.com>
12446 L:      linuxppc-dev@lists.ozlabs.org
12447 L:      linux-pci@vger.kernel.org
12448 L:      linux-arm-kernel@lists.infradead.org
12449 S:      Maintained
12450 F:      drivers/pci/controller/dwc/*layerscape*
12451
12452 PCI DRIVER FOR GENERIC OF HOSTS
12453 M:      Will Deacon <will@kernel.org>
12454 L:      linux-pci@vger.kernel.org
12455 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12456 S:      Maintained
12457 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
12458 F:      drivers/pci/controller/pci-host-common.c
12459 F:      drivers/pci/controller/pci-host-generic.c
12460
12461 PCI DRIVER FOR IMX6
12462 M:      Richard Zhu <hongxing.zhu@nxp.com>
12463 M:      Lucas Stach <l.stach@pengutronix.de>
12464 L:      linux-pci@vger.kernel.org
12465 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12466 S:      Maintained
12467 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
12468 F:      drivers/pci/controller/dwc/*imx6*
12469
12470 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
12471 M:      Keith Busch <keith.busch@intel.com>
12472 M:      Jonathan Derrick <jonathan.derrick@intel.com>
12473 L:      linux-pci@vger.kernel.org
12474 S:      Supported
12475 F:      drivers/pci/controller/vmd.c
12476
12477 PCI DRIVER FOR MICROSEMI SWITCHTEC
12478 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
12479 M:      Logan Gunthorpe <logang@deltatee.com>
12480 L:      linux-pci@vger.kernel.org
12481 S:      Maintained
12482 F:      Documentation/driver-api/switchtec.rst
12483 F:      Documentation/ABI/testing/sysfs-class-switchtec
12484 F:      drivers/pci/switch/switchtec*
12485 F:      include/uapi/linux/switchtec_ioctl.h
12486 F:      include/linux/switchtec.h
12487 F:      drivers/ntb/hw/mscc/
12488
12489 PCI DRIVER FOR MOBIVEIL PCIE IP
12490 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
12491 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
12492 L:      linux-pci@vger.kernel.org
12493 S:      Supported
12494 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
12495 F:      drivers/pci/controller/pcie-mobiveil.c
12496
12497 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
12498 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12499 M:      Jason Cooper <jason@lakedaemon.net>
12500 L:      linux-pci@vger.kernel.org
12501 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12502 S:      Maintained
12503 F:      drivers/pci/controller/*mvebu*
12504
12505 PCI DRIVER FOR NVIDIA TEGRA
12506 M:      Thierry Reding <thierry.reding@gmail.com>
12507 L:      linux-tegra@vger.kernel.org
12508 L:      linux-pci@vger.kernel.org
12509 S:      Supported
12510 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
12511 F:      drivers/pci/controller/pci-tegra.c
12512
12513 PCI DRIVER FOR RENESAS R-CAR
12514 M:      Simon Horman <horms@verge.net.au>
12515 L:      linux-pci@vger.kernel.org
12516 L:      linux-renesas-soc@vger.kernel.org
12517 S:      Maintained
12518 F:      drivers/pci/controller/*rcar*
12519
12520 PCI DRIVER FOR SAMSUNG EXYNOS
12521 M:      Jingoo Han <jingoohan1@gmail.com>
12522 L:      linux-pci@vger.kernel.org
12523 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12524 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12525 S:      Maintained
12526 F:      drivers/pci/controller/dwc/pci-exynos.c
12527
12528 PCI DRIVER FOR SYNOPSYS DESIGNWARE
12529 M:      Jingoo Han <jingoohan1@gmail.com>
12530 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
12531 L:      linux-pci@vger.kernel.org
12532 S:      Maintained
12533 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
12534 F:      drivers/pci/controller/dwc/*designware*
12535
12536 PCI DRIVER FOR TI DRA7XX
12537 M:      Kishon Vijay Abraham I <kishon@ti.com>
12538 L:      linux-omap@vger.kernel.org
12539 L:      linux-pci@vger.kernel.org
12540 S:      Supported
12541 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
12542 F:      drivers/pci/controller/dwc/pci-dra7xx.c
12543
12544 PCI DRIVER FOR TI KEYSTONE
12545 M:      Murali Karicheri <m-karicheri2@ti.com>
12546 L:      linux-pci@vger.kernel.org
12547 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12548 S:      Maintained
12549 F:      drivers/pci/controller/dwc/pci-keystone.c
12550
12551 PCI ENDPOINT SUBSYSTEM
12552 M:      Kishon Vijay Abraham I <kishon@ti.com>
12553 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
12554 L:      linux-pci@vger.kernel.org
12555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
12556 S:      Supported
12557 F:      drivers/pci/endpoint/
12558 F:      drivers/misc/pci_endpoint_test.c
12559 F:      tools/pci/
12560
12561 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
12562 M:      Russell Currey <ruscur@russell.cc>
12563 M:      Sam Bobroff <sbobroff@linux.ibm.com>
12564 M:      Oliver O'Halloran <oohall@gmail.com>
12565 L:      linuxppc-dev@lists.ozlabs.org
12566 S:      Supported
12567 F:      Documentation/PCI/pci-error-recovery.rst
12568 F:      drivers/pci/pcie/aer.c
12569 F:      drivers/pci/pcie/dpc.c
12570 F:      drivers/pci/pcie/err.c
12571 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
12572 F:      arch/powerpc/kernel/eeh*.c
12573 F:      arch/powerpc/platforms/*/eeh*.c
12574 F:      arch/powerpc/include/*/eeh*.h
12575
12576 PCI ERROR RECOVERY
12577 M:      Linas Vepstas <linasvepstas@gmail.com>
12578 L:      linux-pci@vger.kernel.org
12579 S:      Supported
12580 F:      Documentation/PCI/pci-error-recovery.rst
12581
12582 PCI MSI DRIVER FOR ALTERA MSI IP
12583 M:      Ley Foon Tan <lftan@altera.com>
12584 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
12585 L:      linux-pci@vger.kernel.org
12586 S:      Supported
12587 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
12588 F:      drivers/pci/controller/pcie-altera-msi.c
12589
12590 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
12591 M:      Toan Le <toan@os.amperecomputing.com>
12592 L:      linux-pci@vger.kernel.org
12593 L:      linux-arm-kernel@lists.infradead.org
12594 S:      Maintained
12595 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
12596 F:      drivers/pci/controller/pci-xgene-msi.c
12597
12598 PCI SUBSYSTEM
12599 M:      Bjorn Helgaas <bhelgaas@google.com>
12600 L:      linux-pci@vger.kernel.org
12601 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
12602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
12603 S:      Supported
12604 F:      Documentation/devicetree/bindings/pci/
12605 F:      Documentation/PCI/
12606 F:      drivers/acpi/pci*
12607 F:      drivers/pci/
12608 F:      include/asm-generic/pci*
12609 F:      include/linux/pci*
12610 F:      include/linux/of_pci.h
12611 F:      include/uapi/linux/pci*
12612 F:      lib/pci*
12613 F:      arch/x86/pci/
12614 F:      arch/x86/kernel/quirks.c
12615 F:      arch/x86/kernel/early-quirks.c
12616
12617 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
12618 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
12619 R:      Andrew Murray <andrew.murray@arm.com>
12620 L:      linux-pci@vger.kernel.org
12621 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
12622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
12623 S:      Supported
12624 F:      drivers/pci/controller/
12625
12626 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
12627 M:      Jonathan Chocron <jonnyc@amazon.com>
12628 L:      linux-pci@vger.kernel.org
12629 S:      Maintained
12630 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
12631 F:      drivers/pci/controller/dwc/pcie-al.c
12632
12633 PCIE DRIVER FOR AMLOGIC MESON
12634 M:      Yue Wang <yue.wang@Amlogic.com>
12635 L:      linux-pci@vger.kernel.org
12636 L:      linux-amlogic@lists.infradead.org
12637 S:      Maintained
12638 F:      drivers/pci/controller/dwc/pci-meson.c
12639
12640 PCIE DRIVER FOR AXIS ARTPEC
12641 M:      Jesper Nilsson <jesper.nilsson@axis.com>
12642 L:      linux-arm-kernel@axis.com
12643 L:      linux-pci@vger.kernel.org
12644 S:      Maintained
12645 F:      Documentation/devicetree/bindings/pci/axis,artpec*
12646 F:      drivers/pci/controller/dwc/*artpec*
12647
12648 PCIE DRIVER FOR CAVIUM THUNDERX
12649 M:      David Daney <david.daney@cavium.com>
12650 L:      linux-pci@vger.kernel.org
12651 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12652 S:      Supported
12653 F:      Documentation/devicetree/bindings/pci/pci-thunder-*
12654 F:      drivers/pci/controller/pci-thunder-*
12655
12656 PCIE DRIVER FOR HISILICON
12657 M:      Zhou Wang <wangzhou1@hisilicon.com>
12658 L:      linux-pci@vger.kernel.org
12659 S:      Maintained
12660 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
12661 F:      drivers/pci/controller/dwc/pcie-hisi.c
12662
12663 PCIE DRIVER FOR HISILICON KIRIN
12664 M:      Xiaowei Song <songxiaowei@hisilicon.com>
12665 M:      Binghui Wang <wangbinghui@hisilicon.com>
12666 L:      linux-pci@vger.kernel.org
12667 S:      Maintained
12668 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
12669 F:      drivers/pci/controller/dwc/pcie-kirin.c
12670
12671 PCIE DRIVER FOR HISILICON STB
12672 M:      Shawn Guo <shawn.guo@linaro.org>
12673 L:      linux-pci@vger.kernel.org
12674 S:      Maintained
12675 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
12676 F:      drivers/pci/controller/dwc/pcie-histb.c
12677
12678 PCIE DRIVER FOR MEDIATEK
12679 M:      Ryder Lee <ryder.lee@mediatek.com>
12680 L:      linux-pci@vger.kernel.org
12681 L:      linux-mediatek@lists.infradead.org
12682 S:      Supported
12683 F:      Documentation/devicetree/bindings/pci/mediatek*
12684 F:      drivers/pci/controller/*mediatek*
12685
12686 PCIE DRIVER FOR QUALCOMM MSM
12687 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
12688 L:      linux-pci@vger.kernel.org
12689 L:      linux-arm-msm@vger.kernel.org
12690 S:      Maintained
12691 F:      drivers/pci/controller/dwc/*qcom*
12692
12693 PCIE DRIVER FOR ROCKCHIP
12694 M:      Shawn Lin <shawn.lin@rock-chips.com>
12695 L:      linux-pci@vger.kernel.org
12696 L:      linux-rockchip@lists.infradead.org
12697 S:      Maintained
12698 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
12699 F:      drivers/pci/controller/pcie-rockchip*
12700
12701 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
12702 M:      Linus Walleij <linus.walleij@linaro.org>
12703 L:      linux-pci@vger.kernel.org
12704 S:      Maintained
12705 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
12706 F:      drivers/pci/controller/pci-v3-semi.c
12707
12708 PCIE DRIVER FOR SOCIONEXT UNIPHIER
12709 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
12710 L:      linux-pci@vger.kernel.org
12711 S:      Maintained
12712 F:      Documentation/devicetree/bindings/pci/uniphier-pcie.txt
12713 F:      drivers/pci/controller/dwc/pcie-uniphier.c
12714
12715 PCIE DRIVER FOR ST SPEAR13XX
12716 M:      Pratyush Anand <pratyush.anand@gmail.com>
12717 L:      linux-pci@vger.kernel.org
12718 S:      Maintained
12719 F:      drivers/pci/controller/dwc/*spear*
12720
12721 PCMCIA SUBSYSTEM
12722 M:      Dominik Brodowski <linux@dominikbrodowski.net>
12723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
12724 S:      Odd Fixes
12725 F:      Documentation/pcmcia/
12726 F:      tools/pcmcia/
12727 F:      drivers/pcmcia/
12728 F:      include/pcmcia/
12729
12730 PCNET32 NETWORK DRIVER
12731 M:      Don Fry <pcnet32@frontier.com>
12732 L:      netdev@vger.kernel.org
12733 S:      Maintained
12734 F:      drivers/net/ethernet/amd/pcnet32.c
12735
12736 PCRYPT PARALLEL CRYPTO ENGINE
12737 M:      Steffen Klassert <steffen.klassert@secunet.com>
12738 L:      linux-crypto@vger.kernel.org
12739 S:      Maintained
12740 F:      crypto/pcrypt.c
12741 F:      include/crypto/pcrypt.h
12742
12743 PEAQ WMI HOTKEYS DRIVER
12744 M:      Hans de Goede <hdegoede@redhat.com>
12745 L:      platform-driver-x86@vger.kernel.org
12746 S:      Maintained
12747 F:      drivers/platform/x86/peaq-wmi.c
12748
12749 PENSANDO ETHERNET DRIVERS
12750 M:      Shannon Nelson <snelson@pensando.io>
12751 M:      Pensando Drivers <drivers@pensando.io>
12752 L:      netdev@vger.kernel.org
12753 S:      Supported
12754 F:      Documentation/networking/device_drivers/pensando/ionic.rst
12755 F:      drivers/net/ethernet/pensando/
12756
12757 PER-CPU MEMORY ALLOCATOR
12758 M:      Dennis Zhou <dennis@kernel.org>
12759 M:      Tejun Heo <tj@kernel.org>
12760 M:      Christoph Lameter <cl@linux.com>
12761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
12762 S:      Maintained
12763 F:      include/linux/percpu*.h
12764 F:      mm/percpu*.c
12765 F:      arch/*/include/asm/percpu.h
12766
12767 PER-TASK DELAY ACCOUNTING
12768 M:      Balbir Singh <bsingharora@gmail.com>
12769 S:      Maintained
12770 F:      include/linux/delayacct.h
12771 F:      kernel/delayacct.c
12772
12773 PERFORMANCE EVENTS SUBSYSTEM
12774 M:      Peter Zijlstra <peterz@infradead.org>
12775 M:      Ingo Molnar <mingo@redhat.com>
12776 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
12777 R:      Mark Rutland <mark.rutland@arm.com>
12778 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
12779 R:      Jiri Olsa <jolsa@redhat.com>
12780 R:      Namhyung Kim <namhyung@kernel.org>
12781 L:      linux-kernel@vger.kernel.org
12782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
12783 S:      Supported
12784 F:      kernel/events/*
12785 F:      include/linux/perf_event.h
12786 F:      include/uapi/linux/perf_event.h
12787 F:      arch/*/kernel/perf_event*.c
12788 F:      arch/*/kernel/*/perf_event*.c
12789 F:      arch/*/kernel/*/*/perf_event*.c
12790 F:      arch/*/include/asm/perf_event.h
12791 F:      arch/*/kernel/perf_callchain.c
12792 F:      arch/*/events/*
12793 F:      arch/*/events/*/*
12794 F:      tools/perf/
12795
12796 PERSONALITY HANDLING
12797 M:      Christoph Hellwig <hch@infradead.org>
12798 L:      linux-abi-devel@lists.sourceforge.net
12799 S:      Maintained
12800 F:      include/linux/personality.h
12801 F:      include/uapi/linux/personality.h
12802
12803 PHOENIX RC FLIGHT CONTROLLER ADAPTER
12804 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12805 L:      linux-input@vger.kernel.org
12806 S:      Maintained
12807 F:      Documentation/input/devices/pxrc.rst
12808 F:      drivers/input/joystick/pxrc.c
12809
12810 FLYSKY FSIA6B RC RECEIVER
12811 M:      Markus Koch <markus@notsyncing.net>
12812 L:      linux-input@vger.kernel.org
12813 S:      Maintained
12814 F:      drivers/input/joystick/fsia6b.c
12815
12816 PHONET PROTOCOL
12817 M:      Remi Denis-Courmont <courmisch@gmail.com>
12818 S:      Supported
12819 F:      Documentation/networking/phonet.txt
12820 F:      include/linux/phonet.h
12821 F:      include/net/phonet/
12822 F:      include/uapi/linux/phonet.h
12823 F:      net/phonet/
12824
12825 PHRAM MTD DRIVER
12826 M:      Joern Engel <joern@lazybastard.org>
12827 L:      linux-mtd@lists.infradead.org
12828 S:      Maintained
12829 F:      drivers/mtd/devices/phram.c
12830
12831 PICOLCD HID DRIVER
12832 M:      Bruno Prémont <bonbons@linux-vserver.org>
12833 L:      linux-input@vger.kernel.org
12834 S:      Maintained
12835 F:      drivers/hid/hid-picolcd*
12836
12837 PICOXCELL SUPPORT
12838 M:      Jamie Iles <jamie@jamieiles.com>
12839 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12840 T:      git git://github.com/jamieiles/linux-2.6-ji.git
12841 S:      Supported
12842 F:      arch/arm/boot/dts/picoxcell*
12843 F:      arch/arm/mach-picoxcell/
12844 F:      drivers/crypto/picoxcell*
12845
12846 PIDFD API
12847 M:      Christian Brauner <christian@brauner.io>
12848 L:      linux-kernel@vger.kernel.org
12849 S:      Maintained
12850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
12851 F:      samples/pidfd/
12852 F:      tools/testing/selftests/pidfd/
12853 K:      (?i)pidfd
12854 K:      (?i)clone3
12855 K:      \b(clone_args|kernel_clone_args)\b
12856
12857 PIN CONTROL SUBSYSTEM
12858 M:      Linus Walleij <linus.walleij@linaro.org>
12859 L:      linux-gpio@vger.kernel.org
12860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
12861 S:      Maintained
12862 F:      Documentation/devicetree/bindings/pinctrl/
12863 F:      Documentation/driver-api/pinctl.rst
12864 F:      drivers/pinctrl/
12865 F:      include/linux/pinctrl/
12866
12867 PIN CONTROLLER - MICROCHIP AT91
12868 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12869 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12870 L:      linux-gpio@vger.kernel.org
12871 S:      Supported
12872 F:      drivers/pinctrl/pinctrl-at91*
12873 F:      drivers/gpio/gpio-sama5d2-piobu.c
12874
12875 PIN CONTROLLER - FREESCALE
12876 M:      Dong Aisheng <aisheng.dong@nxp.com>
12877 M:      Fabio Estevam <festevam@gmail.com>
12878 M:      Shawn Guo <shawnguo@kernel.org>
12879 M:      Stefan Agner <stefan@agner.ch>
12880 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
12881 L:      linux-gpio@vger.kernel.org
12882 S:      Maintained
12883 F:      drivers/pinctrl/freescale/
12884 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
12885
12886 PIN CONTROLLER - INTEL
12887 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
12888 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
12889 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
12890 S:      Maintained
12891 F:      drivers/pinctrl/intel/
12892
12893 PIN CONTROLLER - MEDIATEK
12894 M:      Sean Wang <sean.wang@kernel.org>
12895 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12896 S:      Maintained
12897 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
12898 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
12899 F:      drivers/pinctrl/mediatek/
12900
12901 PIN CONTROLLER - QUALCOMM
12902 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
12903 S:      Maintained
12904 L:      linux-arm-msm@vger.kernel.org
12905 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
12906 F:      drivers/pinctrl/qcom/
12907
12908 PIN CONTROLLER - RENESAS
12909 M:      Geert Uytterhoeven <geert+renesas@glider.be>
12910 L:      linux-renesas-soc@vger.kernel.org
12911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
12912 S:      Maintained
12913 F:      drivers/pinctrl/pinctrl-rz*
12914 F:      drivers/pinctrl/sh-pfc/
12915
12916 PIN CONTROLLER - SAMSUNG
12917 M:      Tomasz Figa <tomasz.figa@gmail.com>
12918 M:      Krzysztof Kozlowski <krzk@kernel.org>
12919 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12920 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12921 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12922 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
12923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
12924 S:      Maintained
12925 F:      drivers/pinctrl/samsung/
12926 F:      include/dt-bindings/pinctrl/samsung.h
12927 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
12928
12929 PIN CONTROLLER - SINGLE
12930 M:      Tony Lindgren <tony@atomide.com>
12931 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
12932 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12933 L:      linux-omap@vger.kernel.org
12934 S:      Maintained
12935 F:      drivers/pinctrl/pinctrl-single.c
12936
12937 PIN CONTROLLER - ST SPEAR
12938 M:      Viresh Kumar <vireshk@kernel.org>
12939 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12940 W:      http://www.st.com/spear
12941 S:      Maintained
12942 F:      drivers/pinctrl/spear/
12943
12944 PISTACHIO SOC SUPPORT
12945 M:      James Hartley <james.hartley@sondrel.com>
12946 L:      linux-mips@vger.kernel.org
12947 S:      Odd Fixes
12948 F:      arch/mips/pistachio/
12949 F:      arch/mips/include/asm/mach-pistachio/
12950 F:      arch/mips/boot/dts/img/pistachio*
12951 F:      arch/mips/configs/pistachio*_defconfig
12952
12953 PKTCDVD DRIVER
12954 S:      Orphan
12955 M:      linux-block@vger.kernel.org
12956 F:      drivers/block/pktcdvd.c
12957 F:      include/linux/pktcdvd.h
12958 F:      include/uapi/linux/pktcdvd.h
12959
12960 PKUNITY SOC DRIVERS
12961 M:      Guan Xuetao <gxt@pku.edu.cn>
12962 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
12963 S:      Maintained
12964 T:      git git://github.com/gxt/linux.git
12965 F:      drivers/input/serio/i8042-unicore32io.h
12966 F:      drivers/i2c/busses/i2c-puv3.c
12967 F:      drivers/video/fbdev/fb-puv3.c
12968 F:      drivers/rtc/rtc-puv3.c
12969
12970 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
12971 M:      Tomasz Duszynski <tduszyns@gmail.com>
12972 S:      Maintained
12973 F:      drivers/iio/chemical/pms7003.c
12974 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
12975
12976 PMBUS HARDWARE MONITORING DRIVERS
12977 M:      Guenter Roeck <linux@roeck-us.net>
12978 L:      linux-hwmon@vger.kernel.org
12979 W:      http://hwmon.wiki.kernel.org/
12980 W:      http://www.roeck-us.net/linux/drivers/
12981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
12982 S:      Maintained
12983 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
12984 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
12985 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
12986 F:      Documentation/hwmon/adm1275.rst
12987 F:      Documentation/hwmon/ibm-cffps.rst
12988 F:      Documentation/hwmon/ir35221.rst
12989 F:      Documentation/hwmon/lm25066.rst
12990 F:      Documentation/hwmon/ltc2978.rst
12991 F:      Documentation/hwmon/ltc3815.rst
12992 F:      Documentation/hwmon/max16064.rst
12993 F:      Documentation/hwmon/max20751.rst
12994 F:      Documentation/hwmon/max31785.rst
12995 F:      Documentation/hwmon/max34440.rst
12996 F:      Documentation/hwmon/max8688.rst
12997 F:      Documentation/hwmon/pmbus.rst
12998 F:      Documentation/hwmon/pmbus-core.rst
12999 F:      Documentation/hwmon/tps40422.rst
13000 F:      Documentation/hwmon/ucd9000.rst
13001 F:      Documentation/hwmon/ucd9200.rst
13002 F:      Documentation/hwmon/zl6100.rst
13003 F:      drivers/hwmon/pmbus/
13004 F:      include/linux/pmbus.h
13005
13006 PMC SIERRA MaxRAID DRIVER
13007 L:      linux-scsi@vger.kernel.org
13008 W:      http://www.pmc-sierra.com/
13009 S:      Orphan
13010 F:      drivers/scsi/pmcraid.*
13011
13012 PMC SIERRA PM8001 DRIVER
13013 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
13014 L:      linux-scsi@vger.kernel.org
13015 S:      Supported
13016 F:      drivers/scsi/pm8001/
13017
13018 PNP SUPPORT
13019 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
13020 S:      Maintained
13021 F:      drivers/pnp/
13022
13023 PNI RM3100 IIO DRIVER
13024 M:      Song Qiang <songqiang1304521@gmail.com>
13025 L:      linux-iio@vger.kernel.org
13026 S:      Maintained
13027 F:      drivers/iio/magnetometer/rm3100*
13028 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
13029
13030 POSIX CLOCKS and TIMERS
13031 M:      Thomas Gleixner <tglx@linutronix.de>
13032 L:      linux-kernel@vger.kernel.org
13033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
13034 S:      Maintained
13035 F:      fs/timerfd.c
13036 F:      include/linux/timer*
13037 F:      kernel/time/*timer*
13038
13039 POWER MANAGEMENT CORE
13040 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
13041 L:      linux-pm@vger.kernel.org
13042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
13043 B:      https://bugzilla.kernel.org
13044 S:      Supported
13045 F:      drivers/base/power/
13046 F:      include/linux/pm.h
13047 F:      include/linux/pm_*
13048 F:      include/linux/powercap.h
13049 F:      include/linux/intel_rapl.h
13050 F:      drivers/powercap/
13051 F:      kernel/configs/nopm.config
13052
13053 POWER STATE COORDINATION INTERFACE (PSCI)
13054 M:      Mark Rutland <mark.rutland@arm.com>
13055 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13056 L:      linux-arm-kernel@lists.infradead.org
13057 S:      Maintained
13058 F:      drivers/firmware/psci/
13059 F:      include/linux/psci.h
13060 F:      include/uapi/linux/psci.h
13061
13062 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
13063 M:      Sebastian Reichel <sre@kernel.org>
13064 L:      linux-pm@vger.kernel.org
13065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13066 S:      Maintained
13067 F:      Documentation/ABI/testing/sysfs-class-power
13068 F:      Documentation/devicetree/bindings/power/supply/
13069 F:      include/linux/power_supply.h
13070 F:      drivers/power/supply/
13071
13072 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
13073 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
13074 L:      linuxppc-dev@lists.ozlabs.org
13075 S:      Maintained
13076 F:      drivers/char/powernv-op-panel.c
13077
13078 PPP OVER ATM (RFC 2364)
13079 M:      Mitchell Blank Jr <mitch@sfgoth.com>
13080 S:      Maintained
13081 F:      net/atm/pppoatm.c
13082 F:      include/uapi/linux/atmppp.h
13083
13084 PPP OVER ETHERNET
13085 M:      Michal Ostrowski <mostrows@earthlink.net>
13086 S:      Maintained
13087 F:      drivers/net/ppp/pppoe.c
13088 F:      drivers/net/ppp/pppox.c
13089
13090 PPP OVER L2TP
13091 M:      James Chapman <jchapman@katalix.com>
13092 S:      Maintained
13093 F:      net/l2tp/l2tp_ppp.c
13094 F:      include/linux/if_pppol2tp.h
13095 F:      include/uapi/linux/if_pppol2tp.h
13096
13097 PPP PROTOCOL DRIVERS AND COMPRESSORS
13098 M:      Paul Mackerras <paulus@samba.org>
13099 L:      linux-ppp@vger.kernel.org
13100 S:      Maintained
13101 F:      drivers/net/ppp/ppp_*
13102
13103 PPS SUPPORT
13104 M:      Rodolfo Giometti <giometti@enneenne.com>
13105 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
13106 L:      linuxpps@ml.enneenne.com (subscribers-only)
13107 S:      Maintained
13108 F:      Documentation/driver-api/pps.rst
13109 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
13110 F:      Documentation/ABI/testing/sysfs-pps
13111 F:      drivers/pps/
13112 F:      include/linux/pps*.h
13113 F:      include/uapi/linux/pps.h
13114
13115 PPTP DRIVER
13116 M:      Dmitry Kozlov <xeb@mail.ru>
13117 L:      netdev@vger.kernel.org
13118 S:      Maintained
13119 F:      drivers/net/ppp/pptp.c
13120 W:      http://sourceforge.net/projects/accel-pptp
13121
13122 PRINTK
13123 M:      Petr Mladek <pmladek@suse.com>
13124 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
13125 R:      Steven Rostedt <rostedt@goodmis.org>
13126 S:      Maintained
13127 F:      kernel/printk/
13128 F:      include/linux/printk.h
13129
13130 PRISM54 WIRELESS DRIVER
13131 M:      Luis Chamberlain <mcgrof@kernel.org>
13132 L:      linux-wireless@vger.kernel.org
13133 W:      http://wireless.kernel.org/en/users/Drivers/p54
13134 S:      Obsolete
13135 F:      drivers/net/wireless/intersil/prism54/
13136
13137 PROC FILESYSTEM
13138 R:      Alexey Dobriyan <adobriyan@gmail.com>
13139 L:      linux-kernel@vger.kernel.org
13140 L:      linux-fsdevel@vger.kernel.org
13141 S:      Maintained
13142 F:      fs/proc/
13143 F:      include/linux/proc_fs.h
13144 F:      tools/testing/selftests/proc/
13145 F:      Documentation/filesystems/proc.txt
13146
13147 PROC SYSCTL
13148 M:      Luis Chamberlain <mcgrof@kernel.org>
13149 M:      Kees Cook <keescook@chromium.org>
13150 L:      linux-kernel@vger.kernel.org
13151 L:      linux-fsdevel@vger.kernel.org
13152 S:      Maintained
13153 F:      fs/proc/proc_sysctl.c
13154 F:      include/linux/sysctl.h
13155 F:      kernel/sysctl.c
13156 F:      tools/testing/selftests/sysctl/
13157
13158 PS3 NETWORK SUPPORT
13159 M:      Geoff Levand <geoff@infradead.org>
13160 L:      netdev@vger.kernel.org
13161 L:      linuxppc-dev@lists.ozlabs.org
13162 S:      Maintained
13163 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
13164
13165 PS3 PLATFORM SUPPORT
13166 M:      Geoff Levand <geoff@infradead.org>
13167 L:      linuxppc-dev@lists.ozlabs.org
13168 S:      Maintained
13169 F:      arch/powerpc/boot/ps3*
13170 F:      arch/powerpc/include/asm/lv1call.h
13171 F:      arch/powerpc/include/asm/ps3*.h
13172 F:      arch/powerpc/platforms/ps3/
13173 F:      drivers/*/ps3*
13174 F:      drivers/ps3/
13175 F:      drivers/rtc/rtc-ps3.c
13176 F:      drivers/usb/host/*ps3.c
13177 F:      sound/ppc/snd_ps3*
13178
13179 PS3VRAM DRIVER
13180 M:      Jim Paris <jim@jtan.com>
13181 M:      Geoff Levand <geoff@infradead.org>
13182 L:      linuxppc-dev@lists.ozlabs.org
13183 S:      Maintained
13184 F:      drivers/block/ps3vram.c
13185
13186 PSAMPLE PACKET SAMPLING SUPPORT:
13187 M:      Yotam Gigi <yotam.gi@gmail.com>
13188 S:      Maintained
13189 F:      net/psample
13190 F:      include/net/psample.h
13191 F:      include/uapi/linux/psample.h
13192
13193 PSTORE FILESYSTEM
13194 M:      Kees Cook <keescook@chromium.org>
13195 M:      Anton Vorontsov <anton@enomsg.org>
13196 M:      Colin Cross <ccross@android.com>
13197 M:      Tony Luck <tony.luck@intel.com>
13198 S:      Maintained
13199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
13200 F:      fs/pstore/
13201 F:      include/linux/pstore*
13202 F:      drivers/firmware/efi/efi-pstore.c
13203 F:      drivers/acpi/apei/erst.c
13204 F:      Documentation/admin-guide/ramoops.rst
13205 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
13206 K:      \b(pstore|ramoops)
13207
13208 PTP HARDWARE CLOCK SUPPORT
13209 M:      Richard Cochran <richardcochran@gmail.com>
13210 L:      netdev@vger.kernel.org
13211 S:      Maintained
13212 W:      http://linuxptp.sourceforge.net/
13213 F:      Documentation/ABI/testing/sysfs-ptp
13214 F:      Documentation/driver-api/ptp.rst
13215 F:      drivers/net/phy/dp83640*
13216 F:      drivers/ptp/*
13217 F:      include/linux/ptp_cl*
13218
13219 PTRACE SUPPORT
13220 M:      Oleg Nesterov <oleg@redhat.com>
13221 S:      Maintained
13222 F:      include/asm-generic/syscall.h
13223 F:      include/linux/ptrace.h
13224 F:      include/linux/regset.h
13225 F:      include/linux/tracehook.h
13226 F:      include/uapi/linux/ptrace.h
13227 F:      include/uapi/linux/ptrace.h
13228 F:      kernel/ptrace.c
13229 F:      arch/*/ptrace*.c
13230 F:      arch/*/*/ptrace*.c
13231 F:      arch/*/include/asm/ptrace*.h
13232
13233 PULSE8-CEC DRIVER
13234 M:      Hans Verkuil <hverkuil@xs4all.nl>
13235 L:      linux-media@vger.kernel.org
13236 T:      git git://linuxtv.org/media_tree.git
13237 S:      Maintained
13238 F:      drivers/media/usb/pulse8-cec/*
13239 F:      Documentation/media/cec-drivers/pulse8-cec.rst
13240
13241 PVRUSB2 VIDEO4LINUX DRIVER
13242 M:      Mike Isely <isely@pobox.com>
13243 L:      pvrusb2@isely.net       (subscribers-only)
13244 L:      linux-media@vger.kernel.org
13245 W:      http://www.isely.net/pvrusb2/
13246 T:      git git://linuxtv.org/media_tree.git
13247 S:      Maintained
13248 F:      Documentation/media/v4l-drivers/pvrusb2*
13249 F:      drivers/media/usb/pvrusb2/
13250
13251 PWC WEBCAM DRIVER
13252 M:      Hans Verkuil <hverkuil@xs4all.nl>
13253 L:      linux-media@vger.kernel.org
13254 T:      git git://linuxtv.org/media_tree.git
13255 S:      Odd Fixes
13256 F:      drivers/media/usb/pwc/*
13257 F:      include/trace/events/pwc.h
13258
13259 PWM FAN DRIVER
13260 M:      Kamil Debski <kamil@wypas.org>
13261 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
13262 L:      linux-hwmon@vger.kernel.org
13263 S:      Supported
13264 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
13265 F:      Documentation/hwmon/pwm-fan.rst
13266 F:      drivers/hwmon/pwm-fan.c
13267
13268 PWM IR Transmitter
13269 M:      Sean Young <sean@mess.org>
13270 L:      linux-media@vger.kernel.org
13271 S:      Maintained
13272 F:      drivers/media/rc/pwm-ir-tx.c
13273
13274 PWM SUBSYSTEM
13275 M:      Thierry Reding <thierry.reding@gmail.com>
13276 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
13277 L:      linux-pwm@vger.kernel.org
13278 S:      Maintained
13279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
13280 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
13281 F:      Documentation/driver-api/pwm.rst
13282 F:      Documentation/devicetree/bindings/pwm/
13283 F:      include/linux/pwm.h
13284 F:      drivers/pwm/
13285 F:      drivers/video/backlight/pwm_bl.c
13286 F:      include/linux/pwm_backlight.h
13287 F:      drivers/gpio/gpio-mvebu.c
13288 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
13289 K:      pwm_(config|apply_state|ops)
13290
13291 PXA GPIO DRIVER
13292 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13293 L:      linux-gpio@vger.kernel.org
13294 S:      Maintained
13295 F:      drivers/gpio/gpio-pxa.c
13296
13297 PXA MMCI DRIVER
13298 S:      Orphan
13299
13300 PXA RTC DRIVER
13301 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13302 L:      linux-rtc@vger.kernel.org
13303 S:      Maintained
13304
13305 PXA2xx/PXA3xx SUPPORT
13306 M:      Daniel Mack <daniel@zonque.org>
13307 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
13308 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13309 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13310 T:      git git://github.com/hzhuang1/linux.git
13311 T:      git git://github.com/rjarzmik/linux.git
13312 S:      Maintained
13313 F:      arch/arm/boot/dts/pxa*
13314 F:      arch/arm/mach-pxa/
13315 F:      drivers/dma/pxa*
13316 F:      drivers/pcmcia/pxa2xx*
13317 F:      drivers/pinctrl/pxa/
13318 F:      drivers/spi/spi-pxa2xx*
13319 F:      drivers/usb/gadget/udc/pxa2*
13320 F:      include/sound/pxa2xx-lib.h
13321 F:      sound/arm/pxa*
13322 F:      sound/soc/pxa/
13323
13324 QAT DRIVER
13325 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
13326 L:      qat-linux@intel.com
13327 S:      Supported
13328 F:      drivers/crypto/qat/
13329
13330 QCOM AUDIO (ASoC) DRIVERS
13331 M:      Patrick Lai <plai@codeaurora.org>
13332 M:      Banajit Goswami <bgoswami@codeaurora.org>
13333 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13334 S:      Supported
13335 F:      sound/soc/qcom/
13336
13337 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
13338 M:      Gabriel Somlo <somlo@cmu.edu>
13339 M:      "Michael S. Tsirkin" <mst@redhat.com>
13340 L:      qemu-devel@nongnu.org
13341 S:      Maintained
13342 F:      drivers/firmware/qemu_fw_cfg.c
13343 F:      include/uapi/linux/qemu_fw_cfg.h
13344
13345 QIB DRIVER
13346 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
13347 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
13348 L:      linux-rdma@vger.kernel.org
13349 S:      Supported
13350 F:      drivers/infiniband/hw/qib/
13351
13352 QLOGIC QL41xxx FCOE DRIVER
13353 M:      QLogic-Storage-Upstream@cavium.com
13354 L:      linux-scsi@vger.kernel.org
13355 S:      Supported
13356 F:      drivers/scsi/qedf/
13357
13358 QLOGIC QL41xxx ISCSI DRIVER
13359 M:      QLogic-Storage-Upstream@cavium.com
13360 L:      linux-scsi@vger.kernel.org
13361 S:      Supported
13362 F:      drivers/scsi/qedi/
13363
13364 QLOGIC QL4xxx ETHERNET DRIVER
13365 M:      Ariel Elior <aelior@marvell.com>
13366 M:      GR-everest-linux-l2@marvell.com
13367 L:      netdev@vger.kernel.org
13368 S:      Supported
13369 F:      drivers/net/ethernet/qlogic/qed/
13370 F:      include/linux/qed/
13371 F:      drivers/net/ethernet/qlogic/qede/
13372
13373 QLOGIC QL4xxx RDMA DRIVER
13374 M:      Michal Kalderon <mkalderon@marvell.com>
13375 M:      Ariel Elior <aelior@marvell.com>
13376 L:      linux-rdma@vger.kernel.org
13377 S:      Supported
13378 F:      drivers/infiniband/hw/qedr/
13379 F:      include/uapi/rdma/qedr-abi.h
13380
13381 QLOGIC QLA1280 SCSI DRIVER
13382 M:      Michael Reed <mdr@sgi.com>
13383 L:      linux-scsi@vger.kernel.org
13384 S:      Maintained
13385 F:      drivers/scsi/qla1280.[ch]
13386
13387 QLOGIC QLA2XXX FC-SCSI DRIVER
13388 M:      hmadhani@marvell.com
13389 L:      linux-scsi@vger.kernel.org
13390 S:      Supported
13391 F:      Documentation/scsi/LICENSE.qla2xxx
13392 F:      drivers/scsi/qla2xxx/
13393
13394 QLOGIC QLA3XXX NETWORK DRIVER
13395 M:      GR-Linux-NIC-Dev@marvell.com
13396 L:      netdev@vger.kernel.org
13397 S:      Supported
13398 F:      Documentation/networking/device_drivers/qlogic/LICENSE.qla3xxx
13399 F:      drivers/net/ethernet/qlogic/qla3xxx.*
13400
13401 QLOGIC QLA4XXX iSCSI DRIVER
13402 M:      QLogic-Storage-Upstream@qlogic.com
13403 L:      linux-scsi@vger.kernel.org
13404 S:      Supported
13405 F:      Documentation/scsi/LICENSE.qla4xxx
13406 F:      drivers/scsi/qla4xxx/
13407
13408 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
13409 M:      Shahed Shaikh <shshaikh@marvell.com>
13410 M:      Manish Chopra <manishc@marvell.com>
13411 M:      GR-Linux-NIC-Dev@marvell.com
13412 L:      netdev@vger.kernel.org
13413 S:      Supported
13414 F:      drivers/net/ethernet/qlogic/qlcnic/
13415
13416 QLOGIC QLGE 10Gb ETHERNET DRIVER
13417 M:      Manish Chopra <manishc@marvell.com>
13418 M:      GR-Linux-NIC-Dev@marvell.com
13419 L:      netdev@vger.kernel.org
13420 S:      Supported
13421 F:      drivers/staging/qlge/
13422
13423 QM1D1B0004 MEDIA DRIVER
13424 M:      Akihiro Tsukada <tskd08@gmail.com>
13425 L:      linux-media@vger.kernel.org
13426 S:      Odd Fixes
13427 F:      drivers/media/tuners/qm1d1b0004*
13428
13429 QM1D1C0042 MEDIA DRIVER
13430 M:      Akihiro Tsukada <tskd08@gmail.com>
13431 L:      linux-media@vger.kernel.org
13432 S:      Odd Fixes
13433 F:      drivers/media/tuners/qm1d1c0042*
13434
13435 QNX4 FILESYSTEM
13436 M:      Anders Larsen <al@alarsen.net>
13437 W:      http://www.alarsen.net/linux/qnx4fs/
13438 S:      Maintained
13439 F:      fs/qnx4/
13440 F:      include/uapi/linux/qnx4_fs.h
13441 F:      include/uapi/linux/qnxtypes.h
13442
13443 QORIQ DPAA2 FSL-MC BUS DRIVER
13444 M:      Stuart Yoder <stuyoder@gmail.com>
13445 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
13446 L:      linux-kernel@vger.kernel.org
13447 S:      Maintained
13448 F:      drivers/bus/fsl-mc/
13449 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
13450 F:      Documentation/networking/device_drivers/freescale/dpaa2/overview.rst
13451
13452 QT1010 MEDIA DRIVER
13453 M:      Antti Palosaari <crope@iki.fi>
13454 L:      linux-media@vger.kernel.org
13455 W:      https://linuxtv.org
13456 W:      http://palosaari.fi/linux/
13457 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13458 T:      git git://linuxtv.org/anttip/media_tree.git
13459 S:      Maintained
13460 F:      drivers/media/tuners/qt1010*
13461
13462 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
13463 M:      Kalle Valo <kvalo@codeaurora.org>
13464 L:      ath10k@lists.infradead.org
13465 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
13466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
13467 S:      Supported
13468 F:      drivers/net/wireless/ath/ath10k/
13469
13470 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
13471 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
13472 L:      linux-wireless@vger.kernel.org
13473 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
13474 S:      Supported
13475 F:      drivers/net/wireless/ath/ath9k/
13476
13477 QUALCOMM CAMERA SUBSYSTEM DRIVER
13478 M:      Todor Tomov <todor.too@gmail.com>
13479 L:      linux-media@vger.kernel.org
13480 S:      Maintained
13481 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
13482 F:      Documentation/media/v4l-drivers/qcom_camss.rst
13483 F:      drivers/media/platform/qcom/camss/
13484
13485 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
13486 M:      Ilia Lin <ilia.lin@kernel.org>
13487 L:      linux-pm@vger.kernel.org
13488 S:      Maintained
13489 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
13490 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
13491
13492 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
13493 M:      Timur Tabi <timur@kernel.org>
13494 L:      netdev@vger.kernel.org
13495 S:      Maintained
13496 F:      drivers/net/ethernet/qualcomm/emac/
13497
13498 QUALCOMM ETHQOS ETHERNET DRIVER
13499 M:      Vinod Koul <vkoul@kernel.org>
13500 M:      Niklas Cassel <niklas.cassel@linaro.org>
13501 L:      netdev@vger.kernel.org
13502 S:      Maintained
13503 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
13504 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
13505
13506 QUALCOMM GENERIC INTERFACE I2C DRIVER
13507 M:      Alok Chauhan <alokc@codeaurora.org>
13508 L:      linux-i2c@vger.kernel.org
13509 L:      linux-arm-msm@vger.kernel.org
13510 S:      Supported
13511 F:      drivers/i2c/busses/i2c-qcom-geni.c
13512
13513 QUALCOMM HEXAGON ARCHITECTURE
13514 M:      Brian Cain <bcain@codeaurora.org>
13515 L:      linux-hexagon@vger.kernel.org
13516 S:      Supported
13517 F:      arch/hexagon/
13518
13519 QUALCOMM HIDMA DRIVER
13520 M:      Sinan Kaya <okaya@kernel.org>
13521 L:      linux-arm-kernel@lists.infradead.org
13522 L:      linux-arm-msm@vger.kernel.org
13523 L:      dmaengine@vger.kernel.org
13524 S:      Supported
13525 F:      drivers/dma/qcom/hidma*
13526
13527 QUALCOMM IOMMU
13528 M:      Rob Clark <robdclark@gmail.com>
13529 L:      iommu@lists.linux-foundation.org
13530 L:      linux-arm-msm@vger.kernel.org
13531 S:      Maintained
13532 F:      drivers/iommu/qcom_iommu.c
13533
13534 QUALCOMM TSENS THERMAL DRIVER
13535 M:      Amit Kucheria <amit.kucheria@linaro.org>
13536 L:      linux-pm@vger.kernel.org
13537 L:      linux-arm-msm@vger.kernel.org
13538 S:      Maintained
13539 F:      drivers/thermal/qcom/
13540
13541 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
13542 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
13543 L:      linux-media@vger.kernel.org
13544 L:      linux-arm-msm@vger.kernel.org
13545 T:      git git://linuxtv.org/media_tree.git
13546 S:      Maintained
13547 F:      drivers/media/platform/qcom/venus/
13548
13549 QUALCOMM WCN36XX WIRELESS DRIVER
13550 M:      Kalle Valo <kvalo@codeaurora.org>
13551 L:      wcn36xx@lists.infradead.org
13552 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
13553 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
13554 S:      Supported
13555 F:      drivers/net/wireless/ath/wcn36xx/
13556
13557 QUANTENNA QTNFMAC WIRELESS DRIVER
13558 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
13559 M:      Avinash Patil <avinashp@quantenna.com>
13560 M:      Sergey Matyukevich <smatyukevich@quantenna.com>
13561 L:      linux-wireless@vger.kernel.org
13562 S:      Maintained
13563 F:      drivers/net/wireless/quantenna
13564
13565 RADEON and AMDGPU DRM DRIVERS
13566 M:      Alex Deucher <alexander.deucher@amd.com>
13567 M:      Christian König <christian.koenig@amd.com>
13568 M:      David (ChunMing) Zhou <David1.Zhou@amd.com>
13569 L:      amd-gfx@lists.freedesktop.org
13570 T:      git git://people.freedesktop.org/~agd5f/linux
13571 S:      Supported
13572 F:      drivers/gpu/drm/radeon/
13573 F:      include/uapi/drm/radeon_drm.h
13574 F:      drivers/gpu/drm/amd/
13575 F:      include/uapi/drm/amdgpu_drm.h
13576
13577 RADEON FRAMEBUFFER DISPLAY DRIVER
13578 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
13579 L:      linux-fbdev@vger.kernel.org
13580 S:      Maintained
13581 F:      drivers/video/fbdev/aty/radeon*
13582 F:      include/uapi/linux/radeonfb.h
13583
13584 RADIOSHARK RADIO DRIVER
13585 M:      Hans Verkuil <hverkuil@xs4all.nl>
13586 L:      linux-media@vger.kernel.org
13587 T:      git git://linuxtv.org/media_tree.git
13588 S:      Maintained
13589 F:      drivers/media/radio/radio-shark.c
13590
13591 RADIOSHARK2 RADIO DRIVER
13592 M:      Hans Verkuil <hverkuil@xs4all.nl>
13593 L:      linux-media@vger.kernel.org
13594 T:      git git://linuxtv.org/media_tree.git
13595 S:      Maintained
13596 F:      drivers/media/radio/radio-shark2.c
13597 F:      drivers/media/radio/radio-tea5777.c
13598
13599 RADOS BLOCK DEVICE (RBD)
13600 M:      Ilya Dryomov <idryomov@gmail.com>
13601 M:      Sage Weil <sage@redhat.com>
13602 M:      Alex Elder <elder@kernel.org>
13603 L:      ceph-devel@vger.kernel.org
13604 W:      http://ceph.com/
13605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
13606 T:      git git://github.com/ceph/ceph-client.git
13607 S:      Supported
13608 F:      Documentation/ABI/testing/sysfs-bus-rbd
13609 F:      drivers/block/rbd.c
13610 F:      drivers/block/rbd_types.h
13611
13612 RAGE128 FRAMEBUFFER DISPLAY DRIVER
13613 M:      Paul Mackerras <paulus@samba.org>
13614 L:      linux-fbdev@vger.kernel.org
13615 S:      Maintained
13616 F:      drivers/video/fbdev/aty/aty128fb.c
13617
13618 RAINSHADOW-CEC DRIVER
13619 M:      Hans Verkuil <hverkuil@xs4all.nl>
13620 L:      linux-media@vger.kernel.org
13621 T:      git git://linuxtv.org/media_tree.git
13622 S:      Maintained
13623 F:      drivers/media/usb/rainshadow-cec/*
13624
13625 RALINK MIPS ARCHITECTURE
13626 M:      John Crispin <john@phrozen.org>
13627 L:      linux-mips@vger.kernel.org
13628 S:      Maintained
13629 F:      arch/mips/ralink
13630
13631 RALINK RT2X00 WIRELESS LAN DRIVER
13632 P:      rt2x00 project
13633 M:      Stanislaw Gruszka <sgruszka@redhat.com>
13634 M:      Helmut Schaa <helmut.schaa@googlemail.com>
13635 L:      linux-wireless@vger.kernel.org
13636 S:      Maintained
13637 F:      drivers/net/wireless/ralink/rt2x00/
13638
13639 RAMDISK RAM BLOCK DEVICE DRIVER
13640 M:      Jens Axboe <axboe@kernel.dk>
13641 S:      Maintained
13642 F:      Documentation/admin-guide/blockdev/ramdisk.rst
13643 F:      drivers/block/brd.c
13644
13645 RANCHU VIRTUAL BOARD FOR MIPS
13646 M:      Miodrag Dinic <miodrag.dinic@mips.com>
13647 L:      linux-mips@vger.kernel.org
13648 S:      Supported
13649 F:      arch/mips/generic/board-ranchu.c
13650 F:      arch/mips/configs/generic/board-ranchu.config
13651
13652 RANDOM NUMBER DRIVER
13653 M:      "Theodore Ts'o" <tytso@mit.edu>
13654 S:      Maintained
13655 F:      drivers/char/random.c
13656
13657 RAPIDIO SUBSYSTEM
13658 M:      Matt Porter <mporter@kernel.crashing.org>
13659 M:      Alexandre Bounine <alex.bou9@gmail.com>
13660 S:      Maintained
13661 F:      drivers/rapidio/
13662
13663 RAS INFRASTRUCTURE
13664 M:      Tony Luck <tony.luck@intel.com>
13665 M:      Borislav Petkov <bp@alien8.de>
13666 L:      linux-edac@vger.kernel.org
13667 S:      Maintained
13668 F:      drivers/ras/
13669 F:      include/linux/ras.h
13670 F:      include/ras/ras_event.h
13671 F:      Documentation/admin-guide/ras.rst
13672
13673 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
13674 L:      linux-wireless@vger.kernel.org
13675 S:      Orphan
13676 F:      drivers/net/wireless/ray*
13677
13678 RCUTORTURE TEST FRAMEWORK
13679 M:      "Paul E. McKenney" <paulmck@kernel.org>
13680 M:      Josh Triplett <josh@joshtriplett.org>
13681 R:      Steven Rostedt <rostedt@goodmis.org>
13682 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13683 R:      Lai Jiangshan <jiangshanlai@gmail.com>
13684 L:      rcu@vger.kernel.org
13685 S:      Supported
13686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
13687 F:      tools/testing/selftests/rcutorture
13688
13689 RDC R-321X SoC
13690 M:      Florian Fainelli <florian@openwrt.org>
13691 S:      Maintained
13692
13693 RDC R6040 FAST ETHERNET DRIVER
13694 M:      Florian Fainelli <f.fainelli@gmail.com>
13695 L:      netdev@vger.kernel.org
13696 S:      Maintained
13697 F:      drivers/net/ethernet/rdc/r6040.c
13698
13699 RDMAVT - RDMA verbs software
13700 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
13701 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
13702 L:      linux-rdma@vger.kernel.org
13703 S:      Supported
13704 F:      drivers/infiniband/sw/rdmavt
13705
13706 RDS - RELIABLE DATAGRAM SOCKETS
13707 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
13708 L:      netdev@vger.kernel.org
13709 L:      linux-rdma@vger.kernel.org
13710 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
13711 W:      https://oss.oracle.com/projects/rds/
13712 S:      Supported
13713 F:      net/rds/
13714 F:      Documentation/networking/rds.txt
13715
13716 RDT - RESOURCE ALLOCATION
13717 M:      Fenghua Yu <fenghua.yu@intel.com>
13718 M:      Reinette Chatre <reinette.chatre@intel.com>
13719 L:      linux-kernel@vger.kernel.org
13720 S:      Supported
13721 F:      arch/x86/kernel/cpu/resctrl/
13722 F:      arch/x86/include/asm/resctrl_sched.h
13723 F:      Documentation/x86/resctrl*
13724
13725 READ-COPY UPDATE (RCU)
13726 M:      "Paul E. McKenney" <paulmck@kernel.org>
13727 M:      Josh Triplett <josh@joshtriplett.org>
13728 R:      Steven Rostedt <rostedt@goodmis.org>
13729 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13730 R:      Lai Jiangshan <jiangshanlai@gmail.com>
13731 R:      Joel Fernandes <joel@joelfernandes.org>
13732 L:      rcu@vger.kernel.org
13733 W:      http://www.rdrop.com/users/paulmck/RCU/
13734 S:      Supported
13735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
13736 F:      Documentation/RCU/
13737 X:      Documentation/RCU/torture.txt
13738 F:      include/linux/rcu*
13739 X:      include/linux/srcu*.h
13740 F:      kernel/rcu/
13741 X:      kernel/rcu/srcu*.c
13742
13743 REAL TIME CLOCK (RTC) SUBSYSTEM
13744 M:      Alessandro Zummo <a.zummo@towertech.it>
13745 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13746 L:      linux-rtc@vger.kernel.org
13747 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
13748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
13749 S:      Maintained
13750 F:      Documentation/devicetree/bindings/rtc/
13751 F:      Documentation/admin-guide/rtc.rst
13752 F:      drivers/rtc/
13753 F:      include/linux/rtc.h
13754 F:      include/uapi/linux/rtc.h
13755 F:      include/linux/rtc/
13756 F:      include/linux/platform_data/rtc-*
13757 F:      tools/testing/selftests/rtc/
13758
13759 REALTEK AUDIO CODECS
13760 M:      Bard Liao <bardliao@realtek.com>
13761 M:      Oder Chiou <oder_chiou@realtek.com>
13762 S:      Maintained
13763 F:      sound/soc/codecs/rt*
13764 F:      include/sound/rt*.h
13765
13766 REALTEK RTL83xx SMI DSA ROUTER CHIPS
13767 M:      Linus Walleij <linus.walleij@linaro.org>
13768 S:      Maintained
13769 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
13770 F:      drivers/net/dsa/realtek-smi*
13771 F:      drivers/net/dsa/rtl83*
13772
13773 REDPINE WIRELESS DRIVER
13774 M:      Amitkumar Karwar <amitkarwar@gmail.com>
13775 M:      Siva Rebbagondla <siva8118@gmail.com>
13776 L:      linux-wireless@vger.kernel.org
13777 S:      Maintained
13778 F:      drivers/net/wireless/rsi/
13779
13780 REGISTER MAP ABSTRACTION
13781 M:      Mark Brown <broonie@kernel.org>
13782 L:      linux-kernel@vger.kernel.org
13783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
13784 S:      Supported
13785 F:      Documentation/devicetree/bindings/regmap/
13786 F:      drivers/base/regmap/
13787 F:      include/linux/regmap.h
13788
13789 REISERFS FILE SYSTEM
13790 L:      reiserfs-devel@vger.kernel.org
13791 S:      Supported
13792 F:      fs/reiserfs/
13793
13794 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
13795 M:      Ohad Ben-Cohen <ohad@wizery.com>
13796 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13797 L:      linux-remoteproc@vger.kernel.org
13798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
13799 S:      Maintained
13800 F:      Documentation/devicetree/bindings/remoteproc/
13801 F:      Documentation/ABI/testing/sysfs-class-remoteproc
13802 F:      Documentation/remoteproc.txt
13803 F:      drivers/remoteproc/
13804 F:      include/linux/remoteproc.h
13805 F:      include/linux/remoteproc/
13806
13807 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
13808 M:      Ohad Ben-Cohen <ohad@wizery.com>
13809 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13810 L:      linux-remoteproc@vger.kernel.org
13811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
13812 S:      Maintained
13813 F:      drivers/rpmsg/
13814 F:      Documentation/rpmsg.txt
13815 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
13816 F:      include/linux/rpmsg.h
13817 F:      include/linux/rpmsg/
13818 F:      include/uapi/linux/rpmsg.h
13819 F:      samples/rpmsg/
13820
13821 RENESAS CLOCK DRIVERS
13822 M:      Geert Uytterhoeven <geert+renesas@glider.be>
13823 L:      linux-renesas-soc@vger.kernel.org
13824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
13825 S:      Supported
13826 F:      drivers/clk/renesas/
13827
13828 RENESAS EMEV2 I2C DRIVER
13829 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
13830 S:      Supported
13831 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
13832 F:      drivers/i2c/busses/i2c-emev2.c
13833
13834 RENESAS ETHERNET DRIVERS
13835 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
13836 L:      netdev@vger.kernel.org
13837 L:      linux-renesas-soc@vger.kernel.org
13838 F:      Documentation/devicetree/bindings/net/renesas,*.txt
13839 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
13840 F:      drivers/net/ethernet/renesas/
13841 F:      include/linux/sh_eth.h
13842
13843 RENESAS R-CAR GYROADC DRIVER
13844 M:      Marek Vasut <marek.vasut@gmail.com>
13845 L:      linux-iio@vger.kernel.org
13846 S:      Supported
13847 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
13848 F:      drivers/iio/adc/rcar-gyroadc.c
13849
13850 RENESAS R-CAR I2C DRIVERS
13851 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
13852 S:      Supported
13853 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
13854 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
13855 F:      drivers/i2c/busses/i2c-rcar.c
13856 F:      drivers/i2c/busses/i2c-sh_mobile.c
13857
13858 RENESAS RIIC DRIVER
13859 M:      Chris Brandt <chris.brandt@renesas.com>
13860 S:      Supported
13861 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
13862 F:      drivers/i2c/busses/i2c-riic.c
13863
13864 RENESAS USB PHY DRIVER
13865 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
13866 L:      linux-renesas-soc@vger.kernel.org
13867 S:      Maintained
13868 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
13869
13870 RESET CONTROLLER FRAMEWORK
13871 M:      Philipp Zabel <p.zabel@pengutronix.de>
13872 T:      git git://git.pengutronix.de/git/pza/linux
13873 S:      Maintained
13874 F:      drivers/reset/
13875 F:      Documentation/devicetree/bindings/reset/
13876 F:      include/dt-bindings/reset/
13877 F:      include/linux/reset.h
13878 F:      include/linux/reset/
13879 F:      include/linux/reset-controller.h
13880
13881 RESTARTABLE SEQUENCES SUPPORT
13882 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13883 M:      Peter Zijlstra <peterz@infradead.org>
13884 M:      "Paul E. McKenney" <paulmck@kernel.org>
13885 M:      Boqun Feng <boqun.feng@gmail.com>
13886 L:      linux-kernel@vger.kernel.org
13887 S:      Supported
13888 F:      kernel/rseq.c
13889 F:      include/uapi/linux/rseq.h
13890 F:      include/trace/events/rseq.h
13891 F:      tools/testing/selftests/rseq/
13892
13893 RFKILL
13894 M:      Johannes Berg <johannes@sipsolutions.net>
13895 L:      linux-wireless@vger.kernel.org
13896 W:      http://wireless.kernel.org/
13897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
13898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
13899 S:      Maintained
13900 F:      Documentation/driver-api/rfkill.rst
13901 F:      Documentation/ABI/stable/sysfs-class-rfkill
13902 F:      net/rfkill/
13903 F:      include/linux/rfkill.h
13904 F:      include/uapi/linux/rfkill.h
13905
13906 RHASHTABLE
13907 M:      Thomas Graf <tgraf@suug.ch>
13908 M:      Herbert Xu <herbert@gondor.apana.org.au>
13909 L:      netdev@vger.kernel.org
13910 S:      Maintained
13911 F:      lib/rhashtable.c
13912 F:      lib/test_rhashtable.c
13913 F:      include/linux/rhashtable.h
13914 F:      include/linux/rhashtable-types.h
13915
13916 RICOH R5C592 MEMORYSTICK DRIVER
13917 M:      Maxim Levitsky <maximlevitsky@gmail.com>
13918 S:      Maintained
13919 F:      drivers/memstick/host/r592.*
13920
13921 RICOH SMARTMEDIA/XD DRIVER
13922 M:      Maxim Levitsky <maximlevitsky@gmail.com>
13923 S:      Maintained
13924 F:      drivers/mtd/nand/raw/r852.c
13925 F:      drivers/mtd/nand/raw/r852.h
13926
13927 RISC-V ARCHITECTURE
13928 M:      Paul Walmsley <paul.walmsley@sifive.com>
13929 M:      Palmer Dabbelt <palmer@dabbelt.com>
13930 M:      Albert Ou <aou@eecs.berkeley.edu>
13931 L:      linux-riscv@lists.infradead.org
13932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
13933 S:      Supported
13934 F:      arch/riscv/
13935 K:      riscv
13936 N:      riscv
13937
13938 ROCCAT DRIVERS
13939 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
13940 W:      http://sourceforge.net/projects/roccat/
13941 S:      Maintained
13942 F:      drivers/hid/hid-roccat*
13943 F:      include/linux/hid-roccat*
13944 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
13945
13946 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
13947 M:      Jacob Chen <jacob-chen@iotwrt.com>
13948 M:      Ezequiel Garcia <ezequiel@collabora.com>
13949 L:      linux-media@vger.kernel.org
13950 S:      Maintained
13951 F:      drivers/media/platform/rockchip/rga/
13952 F:      Documentation/devicetree/bindings/media/rockchip-rga.txt
13953
13954 HANTRO VPU CODEC DRIVER
13955 M:      Ezequiel Garcia <ezequiel@collabora.com>
13956 L:      linux-media@vger.kernel.org
13957 S:      Maintained
13958 F:      drivers/staging/media/hantro/
13959 F:      Documentation/devicetree/bindings/media/rockchip-vpu.txt
13960
13961 ROCKER DRIVER
13962 M:      Jiri Pirko <jiri@resnulli.us>
13963 L:      netdev@vger.kernel.org
13964 S:      Supported
13965 F:      drivers/net/ethernet/rocker/
13966
13967 ROCKETPORT DRIVER
13968 P:      Comtrol Corp.
13969 W:      http://www.comtrol.com
13970 S:      Maintained
13971 F:      Documentation/driver-api/serial/rocket.rst
13972 F:      drivers/tty/rocket*
13973
13974 ROCKETPORT EXPRESS/INFINITY DRIVER
13975 M:      Kevin Cernekee <cernekee@gmail.com>
13976 L:      linux-serial@vger.kernel.org
13977 S:      Odd Fixes
13978 F:      drivers/tty/serial/rp2.*
13979
13980 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
13981 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
13982 L:      linux-kernel@vger.kernel.org
13983 L:      linux-renesas-soc@vger.kernel.org
13984 S:      Supported
13985 F:      drivers/mfd/bd9571mwv.c
13986 F:      drivers/regulator/bd9571mwv-regulator.c
13987 F:      drivers/gpio/gpio-bd9571mwv.c
13988 F:      include/linux/mfd/bd9571mwv.h
13989 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
13990
13991 ROSE NETWORK LAYER
13992 M:      Ralf Baechle <ralf@linux-mips.org>
13993 L:      linux-hams@vger.kernel.org
13994 W:      http://www.linux-ax25.org/
13995 S:      Maintained
13996 F:      include/net/rose.h
13997 F:      include/uapi/linux/rose.h
13998 F:      net/rose/
13999
14000 RTL2830 MEDIA DRIVER
14001 M:      Antti Palosaari <crope@iki.fi>
14002 L:      linux-media@vger.kernel.org
14003 W:      https://linuxtv.org
14004 W:      http://palosaari.fi/linux/
14005 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14006 T:      git git://linuxtv.org/anttip/media_tree.git
14007 S:      Maintained
14008 F:      drivers/media/dvb-frontends/rtl2830*
14009
14010 RTL2832 MEDIA DRIVER
14011 M:      Antti Palosaari <crope@iki.fi>
14012 L:      linux-media@vger.kernel.org
14013 W:      https://linuxtv.org
14014 W:      http://palosaari.fi/linux/
14015 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14016 T:      git git://linuxtv.org/anttip/media_tree.git
14017 S:      Maintained
14018 F:      drivers/media/dvb-frontends/rtl2832*
14019
14020 RTL2832_SDR MEDIA DRIVER
14021 M:      Antti Palosaari <crope@iki.fi>
14022 L:      linux-media@vger.kernel.org
14023 W:      https://linuxtv.org
14024 W:      http://palosaari.fi/linux/
14025 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14026 T:      git git://linuxtv.org/anttip/media_tree.git
14027 S:      Maintained
14028 F:      drivers/media/dvb-frontends/rtl2832_sdr*
14029
14030 RTL8180 WIRELESS DRIVER
14031 L:      linux-wireless@vger.kernel.org
14032 W:      http://wireless.kernel.org/
14033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14034 S:      Orphan
14035 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
14036
14037 RTL8187 WIRELESS DRIVER
14038 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
14039 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
14040 M:      Larry Finger <Larry.Finger@lwfinger.net>
14041 L:      linux-wireless@vger.kernel.org
14042 W:      http://wireless.kernel.org/
14043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14044 S:      Maintained
14045 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
14046
14047 REALTEK WIRELESS DRIVER (rtlwifi family)
14048 M:      Ping-Ke Shih <pkshih@realtek.com>
14049 L:      linux-wireless@vger.kernel.org
14050 W:      http://wireless.kernel.org/
14051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14052 S:      Maintained
14053 F:      drivers/net/wireless/realtek/rtlwifi/
14054
14055 REALTEK WIRELESS DRIVER (rtw88)
14056 M:      Yan-Hsuan Chuang <yhchuang@realtek.com>
14057 L:      linux-wireless@vger.kernel.org
14058 S:      Maintained
14059 F:      drivers/net/wireless/realtek/rtw88/
14060
14061 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
14062 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
14063 L:      linux-wireless@vger.kernel.org
14064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
14065 S:      Maintained
14066 F:      drivers/net/wireless/realtek/rtl8xxxu/
14067
14068 RXRPC SOCKETS (AF_RXRPC)
14069 M:      David Howells <dhowells@redhat.com>
14070 L:      linux-afs@lists.infradead.org
14071 S:      Supported
14072 F:      net/rxrpc/
14073 F:      include/keys/rxrpc-type.h
14074 F:      include/net/af_rxrpc.h
14075 F:      include/trace/events/rxrpc.h
14076 F:      include/uapi/linux/rxrpc.h
14077 F:      Documentation/networking/rxrpc.txt
14078 W:      https://www.infradead.org/~dhowells/kafs/
14079
14080 S3 SAVAGE FRAMEBUFFER DRIVER
14081 M:      Antonino Daplas <adaplas@gmail.com>
14082 L:      linux-fbdev@vger.kernel.org
14083 S:      Maintained
14084 F:      drivers/video/fbdev/savage/
14085
14086 S390
14087 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
14088 M:      Vasily Gorbik <gor@linux.ibm.com>
14089 M:      Christian Borntraeger <borntraeger@de.ibm.com>
14090 L:      linux-s390@vger.kernel.org
14091 W:      http://www.ibm.com/developerworks/linux/linux390/
14092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
14093 S:      Supported
14094 F:      arch/s390/
14095 F:      drivers/s390/
14096 F:      Documentation/s390/
14097 F:      Documentation/driver-api/s390-drivers.rst
14098
14099 S390 COMMON I/O LAYER
14100 M:      Sebastian Ott <sebott@linux.ibm.com>
14101 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
14102 L:      linux-s390@vger.kernel.org
14103 W:      http://www.ibm.com/developerworks/linux/linux390/
14104 S:      Supported
14105 F:      drivers/s390/cio/
14106
14107 S390 DASD DRIVER
14108 M:      Stefan Haberland <sth@linux.ibm.com>
14109 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
14110 L:      linux-s390@vger.kernel.org
14111 W:      http://www.ibm.com/developerworks/linux/linux390/
14112 S:      Supported
14113 F:      drivers/s390/block/dasd*
14114 F:      block/partitions/ibm.c
14115
14116 S390 IOMMU (PCI)
14117 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
14118 L:      linux-s390@vger.kernel.org
14119 W:      http://www.ibm.com/developerworks/linux/linux390/
14120 S:      Supported
14121 F:      drivers/iommu/s390-iommu.c
14122
14123 S390 IUCV NETWORK LAYER
14124 M:      Julian Wiedmann <jwi@linux.ibm.com>
14125 M:      Ursula Braun <ubraun@linux.ibm.com>
14126 L:      linux-s390@vger.kernel.org
14127 W:      http://www.ibm.com/developerworks/linux/linux390/
14128 S:      Supported
14129 F:      drivers/s390/net/*iucv*
14130 F:      include/net/iucv/
14131 F:      net/iucv/
14132
14133 S390 NETWORK DRIVERS
14134 M:      Julian Wiedmann <jwi@linux.ibm.com>
14135 M:      Ursula Braun <ubraun@linux.ibm.com>
14136 L:      linux-s390@vger.kernel.org
14137 W:      http://www.ibm.com/developerworks/linux/linux390/
14138 S:      Supported
14139 F:      drivers/s390/net/
14140
14141 S390 PCI SUBSYSTEM
14142 M:      Sebastian Ott <sebott@linux.ibm.com>
14143 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
14144 L:      linux-s390@vger.kernel.org
14145 W:      http://www.ibm.com/developerworks/linux/linux390/
14146 S:      Supported
14147 F:      arch/s390/pci/
14148 F:      drivers/pci/hotplug/s390_pci_hpc.c
14149
14150 S390 VFIO-CCW DRIVER
14151 M:      Cornelia Huck <cohuck@redhat.com>
14152 M:      Eric Farman <farman@linux.ibm.com>
14153 R:      Halil Pasic <pasic@linux.ibm.com>
14154 L:      linux-s390@vger.kernel.org
14155 L:      kvm@vger.kernel.org
14156 S:      Supported
14157 F:      drivers/s390/cio/vfio_ccw*
14158 F:      Documentation/s390/vfio-ccw.rst
14159 F:      include/uapi/linux/vfio_ccw.h
14160
14161 S390 ZCRYPT DRIVER
14162 M:      Harald Freudenberger <freude@linux.ibm.com>
14163 L:      linux-s390@vger.kernel.org
14164 W:      http://www.ibm.com/developerworks/linux/linux390/
14165 S:      Supported
14166 F:      drivers/s390/crypto/
14167
14168 S390 VFIO AP DRIVER
14169 M:      Tony Krowiak <akrowiak@linux.ibm.com>
14170 M:      Pierre Morel <pmorel@linux.ibm.com>
14171 M:      Halil Pasic <pasic@linux.ibm.com>
14172 L:      linux-s390@vger.kernel.org
14173 W:      http://www.ibm.com/developerworks/linux/linux390/
14174 S:      Supported
14175 F:      drivers/s390/crypto/vfio_ap_drv.c
14176 F:      drivers/s390/crypto/vfio_ap_private.h
14177 F:      drivers/s390/crypto/vfio_ap_ops.c
14178 F:      Documentation/s390/vfio-ap.rst
14179
14180 S390 ZFCP DRIVER
14181 M:      Steffen Maier <maier@linux.ibm.com>
14182 M:      Benjamin Block <bblock@linux.ibm.com>
14183 L:      linux-s390@vger.kernel.org
14184 W:      http://www.ibm.com/developerworks/linux/linux390/
14185 S:      Supported
14186 F:      drivers/s390/scsi/zfcp_*
14187
14188 S3C24XX SD/MMC Driver
14189 M:      Ben Dooks <ben-linux@fluff.org>
14190 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14191 S:      Supported
14192 F:      drivers/mmc/host/s3cmci.*
14193
14194 SAA6588 RDS RECEIVER DRIVER
14195 M:      Hans Verkuil <hverkuil@xs4all.nl>
14196 L:      linux-media@vger.kernel.org
14197 T:      git git://linuxtv.org/media_tree.git
14198 W:      https://linuxtv.org
14199 S:      Odd Fixes
14200 F:      drivers/media/i2c/saa6588*
14201
14202 SAA7134 VIDEO4LINUX DRIVER
14203 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
14204 L:      linux-media@vger.kernel.org
14205 W:      https://linuxtv.org
14206 T:      git git://linuxtv.org/media_tree.git
14207 S:      Odd fixes
14208 F:      Documentation/media/v4l-drivers/saa7134*
14209 F:      drivers/media/pci/saa7134/
14210
14211 SAA7146 VIDEO4LINUX-2 DRIVER
14212 M:      Hans Verkuil <hverkuil@xs4all.nl>
14213 L:      linux-media@vger.kernel.org
14214 T:      git git://linuxtv.org/media_tree.git
14215 S:      Maintained
14216 F:      drivers/media/common/saa7146/
14217 F:      drivers/media/pci/saa7146/
14218 F:      include/media/drv-intf/saa7146*
14219
14220 SAFESETID SECURITY MODULE
14221 M:     Micah Morton <mortonm@chromium.org>
14222 S:     Supported
14223 F:     security/safesetid/
14224 F:     Documentation/admin-guide/LSM/SafeSetID.rst
14225
14226 SAMSUNG AUDIO (ASoC) DRIVERS
14227 M:      Krzysztof Kozlowski <krzk@kernel.org>
14228 M:      Sangbeom Kim <sbkim73@samsung.com>
14229 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14230 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14231 S:      Supported
14232 F:      sound/soc/samsung/
14233 F:      Documentation/devicetree/bindings/sound/samsung*
14234
14235 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
14236 M:      Krzysztof Kozlowski <krzk@kernel.org>
14237 L:      linux-crypto@vger.kernel.org
14238 L:      linux-samsung-soc@vger.kernel.org
14239 S:      Maintained
14240 F:      drivers/crypto/exynos-rng.c
14241 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.txt
14242
14243 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
14244 M:      Łukasz Stelmach <l.stelmach@samsung.com>
14245 L:      linux-samsung-soc@vger.kernel.org
14246 S:      Maintained
14247 F:      drivers/char/hw_random/exynos-trng.c
14248 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
14249
14250 SAMSUNG FRAMEBUFFER DRIVER
14251 M:      Jingoo Han <jingoohan1@gmail.com>
14252 L:      linux-fbdev@vger.kernel.org
14253 S:      Maintained
14254 F:      drivers/video/fbdev/s3c-fb.c
14255
14256 SAMSUNG LAPTOP DRIVER
14257 M:      Corentin Chary <corentin.chary@gmail.com>
14258 L:      platform-driver-x86@vger.kernel.org
14259 S:      Maintained
14260 F:      drivers/platform/x86/samsung-laptop.c
14261
14262 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
14263 M:      Sangbeom Kim <sbkim73@samsung.com>
14264 M:      Krzysztof Kozlowski <krzk@kernel.org>
14265 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14266 L:      linux-kernel@vger.kernel.org
14267 L:      linux-samsung-soc@vger.kernel.org
14268 S:      Supported
14269 F:      drivers/mfd/sec*.c
14270 F:      drivers/regulator/s2m*.c
14271 F:      drivers/regulator/s5m*.c
14272 F:      drivers/clk/clk-s2mps11.c
14273 F:      drivers/rtc/rtc-s5m.c
14274 F:      include/linux/mfd/samsung/
14275 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
14276 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
14277 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
14278 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
14279
14280 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
14281 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
14282 L:      linux-media@vger.kernel.org
14283 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14284 S:      Maintained
14285 F:      drivers/media/platform/s3c-camif/
14286 F:      include/media/drv-intf/s3c_camif.h
14287
14288 SAMSUNG S3FWRN5 NFC DRIVER
14289 M:      Robert Baldyga <r.baldyga@samsung.com>
14290 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
14291 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
14292 S:      Supported
14293 F:      drivers/nfc/s3fwrn5
14294
14295 SAMSUNG S5C73M3 CAMERA DRIVER
14296 M:      Kyungmin Park <kyungmin.park@samsung.com>
14297 M:      Andrzej Hajda <a.hajda@samsung.com>
14298 L:      linux-media@vger.kernel.org
14299 S:      Supported
14300 F:      drivers/media/i2c/s5c73m3/*
14301
14302 SAMSUNG S5K5BAF CAMERA DRIVER
14303 M:      Kyungmin Park <kyungmin.park@samsung.com>
14304 M:      Andrzej Hajda <a.hajda@samsung.com>
14305 L:      linux-media@vger.kernel.org
14306 S:      Supported
14307 F:      drivers/media/i2c/s5k5baf.c
14308
14309 SAMSUNG S5P Security SubSystem (SSS) DRIVER
14310 M:      Krzysztof Kozlowski <krzk@kernel.org>
14311 M:      Vladimir Zapolskiy <vz@mleia.com>
14312 M:      Kamil Konieczny <k.konieczny@partner.samsung.com>
14313 L:      linux-crypto@vger.kernel.org
14314 L:      linux-samsung-soc@vger.kernel.org
14315 S:      Maintained
14316 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.txt
14317 F:      Documentation/devicetree/bindings/crypto/samsung-sss.txt
14318 F:      drivers/crypto/s5p-sss.c
14319
14320 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
14321 M:      Kyungmin Park <kyungmin.park@samsung.com>
14322 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14323 L:      linux-media@vger.kernel.org
14324 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
14325 S:      Supported
14326 F:      drivers/media/platform/exynos4-is/
14327
14328 SAMSUNG SOC CLOCK DRIVERS
14329 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14330 M:      Tomasz Figa <tomasz.figa@gmail.com>
14331 M:      Chanwoo Choi <cw00.choi@samsung.com>
14332 S:      Supported
14333 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
14335 F:      drivers/clk/samsung/
14336 F:      include/dt-bindings/clock/exynos*.h
14337 F:      Documentation/devicetree/bindings/clock/exynos*.txt
14338 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
14339 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
14340
14341 SAMSUNG SPI DRIVERS
14342 M:      Kukjin Kim <kgene@kernel.org>
14343 M:      Krzysztof Kozlowski <krzk@kernel.org>
14344 M:      Andi Shyti <andi@etezian.org>
14345 L:      linux-spi@vger.kernel.org
14346 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14347 S:      Maintained
14348 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
14349 F:      drivers/spi/spi-s3c*
14350 F:      include/linux/platform_data/spi-s3c64xx.h
14351
14352 SAMSUNG SXGBE DRIVERS
14353 M:      Byungho An <bh74.an@samsung.com>
14354 M:      Girish K S <ks.giri@samsung.com>
14355 M:      Vipul Pandya <vipul.pandya@samsung.com>
14356 S:      Supported
14357 L:      netdev@vger.kernel.org
14358 F:      drivers/net/ethernet/samsung/sxgbe/
14359
14360 SAMSUNG THERMAL DRIVER
14361 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14362 L:      linux-pm@vger.kernel.org
14363 L:      linux-samsung-soc@vger.kernel.org
14364 S:      Supported
14365 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
14366 F:      drivers/thermal/samsung/
14367
14368 SAMSUNG USB2 PHY DRIVER
14369 M:      Kamil Debski <kamil@wypas.org>
14370 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14371 L:      linux-kernel@vger.kernel.org
14372 S:      Supported
14373 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
14374 F:      Documentation/driver-api/phy/samsung-usb2.rst
14375 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
14376 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
14377 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
14378 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
14379 F:      drivers/phy/samsung/phy-samsung-usb2.c
14380 F:      drivers/phy/samsung/phy-samsung-usb2.h
14381
14382 SC1200 WDT DRIVER
14383 M:      Zwane Mwaikambo <zwanem@gmail.com>
14384 S:      Maintained
14385 F:      drivers/watchdog/sc1200wdt.c
14386
14387 SCHEDULER
14388 M:      Ingo Molnar <mingo@redhat.com>
14389 M:      Peter Zijlstra <peterz@infradead.org>
14390 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
14391 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
14392 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
14393 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
14394 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
14395 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
14396 L:      linux-kernel@vger.kernel.org
14397 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
14398 S:      Maintained
14399 F:      kernel/sched/
14400 F:      include/linux/sched.h
14401 F:      include/uapi/linux/sched.h
14402 F:      include/linux/wait.h
14403 F:      include/linux/preempt.h
14404
14405 SCR24X CHIP CARD INTERFACE DRIVER
14406 M:      Lubomir Rintel <lkundrak@v3.sk>
14407 S:      Supported
14408 F:      drivers/char/pcmcia/scr24x_cs.c
14409
14410 SCSI CDROM DRIVER
14411 M:      Jens Axboe <axboe@kernel.dk>
14412 L:      linux-scsi@vger.kernel.org
14413 W:      http://www.kernel.dk
14414 S:      Maintained
14415 F:      drivers/scsi/sr*
14416
14417 SCSI RDMA PROTOCOL (SRP) INITIATOR
14418 M:      Bart Van Assche <bvanassche@acm.org>
14419 L:      linux-rdma@vger.kernel.org
14420 S:      Supported
14421 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14422 F:      drivers/infiniband/ulp/srp/
14423 F:      include/scsi/srp.h
14424
14425 SCSI RDMA PROTOCOL (SRP) TARGET
14426 M:      Bart Van Assche <bvanassche@acm.org>
14427 L:      linux-rdma@vger.kernel.org
14428 L:      target-devel@vger.kernel.org
14429 S:      Supported
14430 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14431 F:      drivers/infiniband/ulp/srpt/
14432
14433 SCSI SG DRIVER
14434 M:      Doug Gilbert <dgilbert@interlog.com>
14435 L:      linux-scsi@vger.kernel.org
14436 W:      http://sg.danny.cz/sg
14437 S:      Maintained
14438 F:      Documentation/scsi/scsi-generic.txt
14439 F:      drivers/scsi/sg.c
14440 F:      include/scsi/sg.h
14441
14442 SCSI SUBSYSTEM
14443 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
14444 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
14445 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
14446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
14447 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
14448 L:      linux-scsi@vger.kernel.org
14449 S:      Maintained
14450 F:      Documentation/devicetree/bindings/scsi/
14451 F:      drivers/scsi/
14452 F:      include/scsi/
14453
14454 SCSI TAPE DRIVER
14455 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
14456 L:      linux-scsi@vger.kernel.org
14457 S:      Maintained
14458 F:      Documentation/scsi/st.txt
14459 F:      drivers/scsi/st.*
14460 F:      drivers/scsi/st_*.h
14461
14462 SCSI TARGET SUBSYSTEM
14463 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
14464 L:      linux-scsi@vger.kernel.org
14465 L:      target-devel@vger.kernel.org
14466 W:      http://www.linux-iscsi.org
14467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
14468 Q:      https://patchwork.kernel.org/project/target-devel/list/
14469 S:      Supported
14470 F:      drivers/target/
14471 F:      include/target/
14472 F:      Documentation/target/
14473
14474 SCTP PROTOCOL
14475 M:      Vlad Yasevich <vyasevich@gmail.com>
14476 M:      Neil Horman <nhorman@tuxdriver.com>
14477 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
14478 L:      linux-sctp@vger.kernel.org
14479 W:      http://lksctp.sourceforge.net
14480 S:      Maintained
14481 F:      Documentation/networking/sctp.txt
14482 F:      include/linux/sctp.h
14483 F:      include/uapi/linux/sctp.h
14484 F:      include/net/sctp/
14485 F:      net/sctp/
14486
14487 SCx200 CPU SUPPORT
14488 M:      Jim Cromie <jim.cromie@gmail.com>
14489 S:      Odd Fixes
14490 F:      Documentation/i2c/busses/scx200_acb.rst
14491 F:      arch/x86/platform/scx200/
14492 F:      drivers/watchdog/scx200_wdt.c
14493 F:      drivers/i2c/busses/scx200*
14494 F:      drivers/mtd/maps/scx200_docflash.c
14495 F:      include/linux/scx200.h
14496
14497 SCx200 GPIO DRIVER
14498 M:      Jim Cromie <jim.cromie@gmail.com>
14499 S:      Maintained
14500 F:      drivers/char/scx200_gpio.c
14501 F:      include/linux/scx200_gpio.h
14502
14503 SCx200 HRT CLOCKSOURCE DRIVER
14504 M:      Jim Cromie <jim.cromie@gmail.com>
14505 S:      Maintained
14506 F:      drivers/clocksource/scx200_hrt.c
14507
14508 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
14509 M:      Sascha Sommer <saschasommer@freenet.de>
14510 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
14511 S:      Maintained
14512 F:      drivers/mmc/host/sdricoh_cs.c
14513
14514 SECO BOARDS CEC DRIVER
14515 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
14516 S:      Maintained
14517 F:      drivers/media/platform/seco-cec/seco-cec.c
14518 F:      drivers/media/platform/seco-cec/seco-cec.h
14519
14520 SECURE COMPUTING
14521 M:      Kees Cook <keescook@chromium.org>
14522 R:      Andy Lutomirski <luto@amacapital.net>
14523 R:      Will Drewry <wad@chromium.org>
14524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
14525 S:      Supported
14526 F:      kernel/seccomp.c
14527 F:      include/uapi/linux/seccomp.h
14528 F:      include/linux/seccomp.h
14529 F:      tools/testing/selftests/seccomp/*
14530 F:      tools/testing/selftests/kselftest_harness.h
14531 F:      Documentation/userspace-api/seccomp_filter.rst
14532 K:      \bsecure_computing
14533 K:      \bTIF_SECCOMP\b
14534
14535 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
14536 M:      Al Cooper <alcooperx@gmail.com>
14537 L:      linux-mmc@vger.kernel.org
14538 L:      bcm-kernel-feedback-list@broadcom.com
14539 S:      Maintained
14540 F:      drivers/mmc/host/sdhci-brcmstb*
14541
14542 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
14543 M:      Adrian Hunter <adrian.hunter@intel.com>
14544 L:      linux-mmc@vger.kernel.org
14545 S:      Maintained
14546 F:      drivers/mmc/host/sdhci*
14547 F:      include/linux/mmc/sdhci*
14548
14549 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
14550 M:      Adrian Hunter <adrian.hunter@intel.com>
14551 M:      Ritesh Harjani <riteshh@codeaurora.org>
14552 M:      Asutosh Das <asutoshd@codeaurora.org>
14553 L:      linux-mmc@vger.kernel.org
14554 S:      Maintained
14555 F:      drivers/mmc/host/cqhci*
14556
14557 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
14558 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
14559 M:      Manjunath M B <manjumb@synopsys.com>
14560 L:      linux-mmc@vger.kernel.org
14561 S:      Maintained
14562 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
14563
14564 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
14565 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
14566 L:      linux-mmc@vger.kernel.org
14567 S:      Supported
14568 F:      drivers/mmc/host/sdhci-of-at91.c
14569
14570 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
14571 M:      Ben Dooks <ben-linux@fluff.org>
14572 M:      Jaehoon Chung <jh80.chung@samsung.com>
14573 L:      linux-mmc@vger.kernel.org
14574 S:      Maintained
14575 F:      drivers/mmc/host/sdhci-s3c*
14576
14577 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
14578 M:      Viresh Kumar <vireshk@kernel.org>
14579 L:      linux-mmc@vger.kernel.org
14580 S:      Maintained
14581 F:      drivers/mmc/host/sdhci-spear.c
14582
14583 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
14584 M:      Kishon Vijay Abraham I <kishon@ti.com>
14585 L:      linux-mmc@vger.kernel.org
14586 S:      Maintained
14587 F:      drivers/mmc/host/sdhci-omap.c
14588
14589 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
14590 M:      Scott Bauer <scott.bauer@intel.com>
14591 M:      Jonathan Derrick <jonathan.derrick@intel.com>
14592 L:      linux-block@vger.kernel.org
14593 S:      Supported
14594 F:      block/sed*
14595 F:      block/opal_proto.h
14596 F:      include/linux/sed*
14597 F:      include/uapi/linux/sed*
14598
14599 SECURITY CONTACT
14600 M:      Security Officers <security@kernel.org>
14601 S:      Supported
14602
14603 SECURITY SUBSYSTEM
14604 M:      James Morris <jmorris@namei.org>
14605 M:      "Serge E. Hallyn" <serge@hallyn.com>
14606 L:      linux-security-module@vger.kernel.org (suggested Cc:)
14607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
14608 W:      http://kernsec.org/
14609 S:      Supported
14610 F:      security/
14611 X:      security/selinux/
14612
14613 SELINUX SECURITY MODULE
14614 M:      Paul Moore <paul@paul-moore.com>
14615 M:      Stephen Smalley <sds@tycho.nsa.gov>
14616 M:      Eric Paris <eparis@parisplace.org>
14617 L:      selinux@vger.kernel.org
14618 W:      https://selinuxproject.org
14619 W:      https://github.com/SELinuxProject
14620 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
14621 S:      Supported
14622 F:      include/uapi/linux/selinux_netlink.h
14623 F:      security/selinux/
14624 F:      scripts/selinux/
14625 F:      Documentation/admin-guide/LSM/SELinux.rst
14626
14627 SENSABLE PHANTOM
14628 M:      Jiri Slaby <jirislaby@gmail.com>
14629 S:      Maintained
14630 F:      drivers/misc/phantom.c
14631 F:      include/uapi/linux/phantom.h
14632
14633 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
14634 M:      Tomasz Duszynski <tduszyns@gmail.com>
14635 S:      Maintained
14636 F:      drivers/iio/chemical/sps30.c
14637 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
14638
14639 SERIAL DEVICE BUS
14640 M:      Rob Herring <robh@kernel.org>
14641 L:      linux-serial@vger.kernel.org
14642 S:      Maintained
14643 F:      Documentation/devicetree/bindings/serial/slave-device.txt
14644 F:      drivers/tty/serdev/
14645 F:      include/linux/serdev.h
14646
14647 SERIAL DRIVERS
14648 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14649 L:      linux-serial@vger.kernel.org
14650 S:      Maintained
14651 F:      Documentation/devicetree/bindings/serial/
14652 F:      drivers/tty/serial/
14653
14654 SERIAL IR RECEIVER
14655 M:      Sean Young <sean@mess.org>
14656 L:      linux-media@vger.kernel.org
14657 S:      Maintained
14658 F:      drivers/media/rc/serial_ir.c
14659
14660 SFC NETWORK DRIVER
14661 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
14662 M:      Edward Cree <ecree@solarflare.com>
14663 M:      Martin Habets <mhabets@solarflare.com>
14664 L:      netdev@vger.kernel.org
14665 S:      Supported
14666 F:      drivers/net/ethernet/sfc/
14667
14668 SFF/SFP/SFP+ MODULE SUPPORT
14669 M:      Russell King <linux@armlinux.org.uk>
14670 L:      netdev@vger.kernel.org
14671 S:      Maintained
14672 F:      drivers/net/phy/phylink.c
14673 F:      drivers/net/phy/sfp*
14674 F:      include/linux/phylink.h
14675 F:      include/linux/sfp.h
14676 K:      phylink
14677
14678 SGI GRU DRIVER
14679 M:      Dimitri Sivanich <sivanich@sgi.com>
14680 S:      Maintained
14681 F:      drivers/misc/sgi-gru/
14682
14683 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
14684 M:      Pat Gefre <pfg@sgi.com>
14685 L:      linux-ia64@vger.kernel.org
14686 S:      Supported
14687 F:      Documentation/ia64/serial.rst
14688 F:      drivers/tty/serial/ioc?_serial.c
14689 F:      include/linux/ioc?.h
14690
14691 SGI XP/XPC/XPNET DRIVER
14692 M:      Cliff Whickman <cpw@sgi.com>
14693 M:      Robin Holt <robinmholt@gmail.com>
14694 S:      Maintained
14695 F:      drivers/misc/sgi-xp/
14696
14697 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
14698 M:      Ursula Braun <ubraun@linux.ibm.com>
14699 M:      Karsten Graul <kgraul@linux.ibm.com>
14700 L:      linux-s390@vger.kernel.org
14701 W:      http://www.ibm.com/developerworks/linux/linux390/
14702 S:      Supported
14703 F:      net/smc/
14704
14705 SHARP RJ54N1CB0C SENSOR DRIVER
14706 M:      Jacopo Mondi <jacopo@jmondi.org>
14707 L:      linux-media@vger.kernel.org
14708 T:      git git://linuxtv.org/media_tree.git
14709 S:      Odd fixes
14710 F:      drivers/media/i2c/rj54n1cb0c.c
14711 F:      include/media/i2c/rj54n1cb0c.h
14712
14713 SH_VEU V4L2 MEM2MEM DRIVER
14714 L:      linux-media@vger.kernel.org
14715 S:      Orphan
14716 F:      drivers/media/platform/sh_veu.c
14717
14718 SH_VOU V4L2 OUTPUT DRIVER
14719 L:      linux-media@vger.kernel.org
14720 S:      Orphan
14721 F:      drivers/media/platform/sh_vou.c
14722 F:      include/media/drv-intf/sh_vou.h
14723
14724 SI2157 MEDIA DRIVER
14725 M:      Antti Palosaari <crope@iki.fi>
14726 L:      linux-media@vger.kernel.org
14727 W:      https://linuxtv.org
14728 W:      http://palosaari.fi/linux/
14729 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14730 T:      git git://linuxtv.org/anttip/media_tree.git
14731 S:      Maintained
14732 F:      drivers/media/tuners/si2157*
14733
14734 SI2165 MEDIA DRIVER
14735 M:      Matthias Schwarzott <zzam@gentoo.org>
14736 L:      linux-media@vger.kernel.org
14737 W:      https://linuxtv.org
14738 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14739 S:      Maintained
14740 F:      drivers/media/dvb-frontends/si2165*
14741
14742 SI2168 MEDIA DRIVER
14743 M:      Antti Palosaari <crope@iki.fi>
14744 L:      linux-media@vger.kernel.org
14745 W:      https://linuxtv.org
14746 W:      http://palosaari.fi/linux/
14747 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14748 T:      git git://linuxtv.org/anttip/media_tree.git
14749 S:      Maintained
14750 F:      drivers/media/dvb-frontends/si2168*
14751
14752 SI470X FM RADIO RECEIVER I2C DRIVER
14753 M:      Hans Verkuil <hverkuil@xs4all.nl>
14754 L:      linux-media@vger.kernel.org
14755 T:      git git://linuxtv.org/media_tree.git
14756 W:      https://linuxtv.org
14757 S:      Odd Fixes
14758 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
14759
14760 SI470X FM RADIO RECEIVER USB DRIVER
14761 M:      Hans Verkuil <hverkuil@xs4all.nl>
14762 L:      linux-media@vger.kernel.org
14763 T:      git git://linuxtv.org/media_tree.git
14764 W:      https://linuxtv.org
14765 S:      Maintained
14766 F:      drivers/media/radio/si470x/radio-si470x-common.c
14767 F:      drivers/media/radio/si470x/radio-si470x.h
14768 F:      drivers/media/radio/si470x/radio-si470x-usb.c
14769
14770 SI4713 FM RADIO TRANSMITTER I2C DRIVER
14771 M:      Eduardo Valentin <edubezval@gmail.com>
14772 L:      linux-media@vger.kernel.org
14773 T:      git git://linuxtv.org/media_tree.git
14774 W:      https://linuxtv.org
14775 S:      Odd Fixes
14776 F:      drivers/media/radio/si4713/si4713.?
14777
14778 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
14779 M:      Eduardo Valentin <edubezval@gmail.com>
14780 L:      linux-media@vger.kernel.org
14781 T:      git git://linuxtv.org/media_tree.git
14782 W:      https://linuxtv.org
14783 S:      Odd Fixes
14784 F:      drivers/media/radio/si4713/radio-platform-si4713.c
14785
14786 SI4713 FM RADIO TRANSMITTER USB DRIVER
14787 M:      Hans Verkuil <hverkuil@xs4all.nl>
14788 L:      linux-media@vger.kernel.org
14789 T:      git git://linuxtv.org/media_tree.git
14790 W:      https://linuxtv.org
14791 S:      Maintained
14792 F:      drivers/media/radio/si4713/radio-usb-si4713.c
14793
14794 SIANO DVB DRIVER
14795 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
14796 L:      linux-media@vger.kernel.org
14797 W:      https://linuxtv.org
14798 T:      git git://linuxtv.org/media_tree.git
14799 S:      Odd fixes
14800 F:      drivers/media/common/siano/
14801 F:      drivers/media/usb/siano/
14802 F:      drivers/media/usb/siano/
14803 F:      drivers/media/mmc/siano/
14804
14805 SIFIVE DRIVERS
14806 M:      Palmer Dabbelt <palmer@dabbelt.com>
14807 M:      Paul Walmsley <paul.walmsley@sifive.com>
14808 L:      linux-riscv@lists.infradead.org
14809 T:      git git://github.com/sifive/riscv-linux.git
14810 S:      Supported
14811 K:      [^@]sifive
14812 N:      sifive
14813
14814 SIFIVE FU540 SYSTEM-ON-CHIP
14815 M:      Paul Walmsley <paul.walmsley@sifive.com>
14816 M:      Palmer Dabbelt <palmer@dabbelt.com>
14817 L:      linux-riscv@lists.infradead.org
14818 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
14819 S:      Supported
14820 K:      fu540
14821 N:      fu540
14822
14823 SILEAD TOUCHSCREEN DRIVER
14824 M:      Hans de Goede <hdegoede@redhat.com>
14825 L:      linux-input@vger.kernel.org
14826 L:      platform-driver-x86@vger.kernel.org
14827 S:      Maintained
14828 F:      drivers/input/touchscreen/silead.c
14829 F:      drivers/platform/x86/touchscreen_dmi.c
14830
14831 SILICON MOTION SM712 FRAME BUFFER DRIVER
14832 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14833 M:      Teddy Wang <teddy.wang@siliconmotion.com>
14834 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14835 L:      linux-fbdev@vger.kernel.org
14836 S:      Maintained
14837 F:      drivers/video/fbdev/sm712*
14838 F:      Documentation/fb/sm712fb.rst
14839
14840 SIMPLE FIRMWARE INTERFACE (SFI)
14841 M:      Len Brown <lenb@kernel.org>
14842 L:      sfi-devel@simplefirmware.org
14843 W:      http://simplefirmware.org/
14844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
14845 S:      Supported
14846 F:      arch/x86/platform/sfi/
14847 F:      drivers/sfi/
14848 F:      include/linux/sfi*.h
14849
14850 SIMPLEFB FB DRIVER
14851 M:      Hans de Goede <hdegoede@redhat.com>
14852 L:      linux-fbdev@vger.kernel.org
14853 S:      Maintained
14854 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
14855 F:      drivers/video/fbdev/simplefb.c
14856 F:      include/linux/platform_data/simplefb.h
14857
14858 SIMTEC EB110ATX (Chalice CATS)
14859 P:      Ben Dooks
14860 P:      Vincent Sanders <vince@simtec.co.uk>
14861 M:      Simtec Linux Team <linux@simtec.co.uk>
14862 W:      http://www.simtec.co.uk/products/EB110ATX/
14863 S:      Supported
14864
14865 SIMTEC EB2410ITX (BAST)
14866 P:      Ben Dooks
14867 P:      Vincent Sanders <vince@simtec.co.uk>
14868 M:      Simtec Linux Team <linux@simtec.co.uk>
14869 W:      http://www.simtec.co.uk/products/EB2410ITX/
14870 S:      Supported
14871 F:      arch/arm/mach-s3c24xx/mach-bast.c
14872 F:      arch/arm/mach-s3c24xx/bast-ide.c
14873 F:      arch/arm/mach-s3c24xx/bast-irq.c
14874
14875 SIPHASH PRF ROUTINES
14876 M:      Jason A. Donenfeld <Jason@zx2c4.com>
14877 S:      Maintained
14878 F:      lib/siphash.c
14879 F:      lib/test_siphash.c
14880 F:      include/linux/siphash.h
14881
14882 SIOX
14883 M:      Thorsten Scherer <t.scherer@eckelmann.de>
14884 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
14885 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
14886 S:      Supported
14887 F:      drivers/siox/*
14888 F:      drivers/gpio/gpio-siox.c
14889 F:      include/trace/events/siox.h
14890
14891 SIS 190 ETHERNET DRIVER
14892 M:      Francois Romieu <romieu@fr.zoreil.com>
14893 L:      netdev@vger.kernel.org
14894 S:      Maintained
14895 F:      drivers/net/ethernet/sis/sis190.c
14896
14897 SIS 900/7016 FAST ETHERNET DRIVER
14898 M:      Daniele Venzano <venza@brownhat.org>
14899 W:      http://www.brownhat.org/sis900.html
14900 L:      netdev@vger.kernel.org
14901 S:      Maintained
14902 F:      drivers/net/ethernet/sis/sis900.*
14903
14904 SIS FRAMEBUFFER DRIVER
14905 M:      Thomas Winischhofer <thomas@winischhofer.net>
14906 W:      http://www.winischhofer.net/linuxsisvga.shtml
14907 S:      Maintained
14908 F:      Documentation/fb/sisfb.rst
14909 F:      drivers/video/fbdev/sis/
14910 F:      include/video/sisfb.h
14911
14912 SIS USB2VGA DRIVER
14913 M:      Thomas Winischhofer <thomas@winischhofer.net>
14914 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
14915 S:      Maintained
14916 F:      drivers/usb/misc/sisusbvga/
14917
14918 SLAB ALLOCATOR
14919 M:      Christoph Lameter <cl@linux.com>
14920 M:      Pekka Enberg <penberg@kernel.org>
14921 M:      David Rientjes <rientjes@google.com>
14922 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
14923 M:      Andrew Morton <akpm@linux-foundation.org>
14924 L:      linux-mm@kvack.org
14925 S:      Maintained
14926 F:      include/linux/sl?b*.h
14927 F:      mm/sl?b*
14928
14929 SLEEPABLE READ-COPY UPDATE (SRCU)
14930 M:      Lai Jiangshan <jiangshanlai@gmail.com>
14931 M:      "Paul E. McKenney" <paulmck@kernel.org>
14932 M:      Josh Triplett <josh@joshtriplett.org>
14933 R:      Steven Rostedt <rostedt@goodmis.org>
14934 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14935 L:      rcu@vger.kernel.org
14936 W:      http://www.rdrop.com/users/paulmck/RCU/
14937 S:      Supported
14938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14939 F:      include/linux/srcu*.h
14940 F:      kernel/rcu/srcu*.c
14941
14942 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
14943 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14944 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14945 S:      Maintained
14946 F:      drivers/slimbus/
14947 F:      Documentation/devicetree/bindings/slimbus/
14948 F:      include/linux/slimbus.h
14949
14950 SMACK SECURITY MODULE
14951 M:      Casey Schaufler <casey@schaufler-ca.com>
14952 L:      linux-security-module@vger.kernel.org
14953 W:      http://schaufler-ca.com
14954 T:      git git://github.com/cschaufler/smack-next
14955 S:      Maintained
14956 F:      Documentation/admin-guide/LSM/Smack.rst
14957 F:      security/smack/
14958
14959 SMC91x ETHERNET DRIVER
14960 M:      Nicolas Pitre <nico@fluxnic.net>
14961 S:      Odd Fixes
14962 F:      drivers/net/ethernet/smsc/smc91x.*
14963
14964 SMIA AND SMIA++ IMAGE SENSOR DRIVER
14965 M:      Sakari Ailus <sakari.ailus@iki.fi>
14966 L:      linux-media@vger.kernel.org
14967 S:      Maintained
14968 F:      drivers/media/i2c/smiapp/
14969 F:      include/media/i2c/smiapp.h
14970 F:      drivers/media/i2c/smiapp-pll.c
14971 F:      drivers/media/i2c/smiapp-pll.h
14972 F:      include/uapi/linux/smiapp.h
14973 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
14974
14975 SMM665 HARDWARE MONITOR DRIVER
14976 M:      Guenter Roeck <linux@roeck-us.net>
14977 L:      linux-hwmon@vger.kernel.org
14978 S:      Maintained
14979 F:      Documentation/hwmon/smm665.rst
14980 F:      drivers/hwmon/smm665.c
14981
14982 SMSC EMC2103 HARDWARE MONITOR DRIVER
14983 M:      Steve Glendinning <steve.glendinning@shawell.net>
14984 L:      linux-hwmon@vger.kernel.org
14985 S:      Maintained
14986 F:      Documentation/hwmon/emc2103.rst
14987 F:      drivers/hwmon/emc2103.c
14988
14989 SMSC SCH5627 HARDWARE MONITOR DRIVER
14990 M:      Hans de Goede <hdegoede@redhat.com>
14991 L:      linux-hwmon@vger.kernel.org
14992 S:      Supported
14993 F:      Documentation/hwmon/sch5627.rst
14994 F:      drivers/hwmon/sch5627.c
14995
14996 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
14997 M:      Steve Glendinning <steve.glendinning@shawell.net>
14998 L:      linux-fbdev@vger.kernel.org
14999 S:      Maintained
15000 F:      drivers/video/fbdev/smscufx.c
15001
15002 SMSC47B397 HARDWARE MONITOR DRIVER
15003 M:      Jean Delvare <jdelvare@suse.com>
15004 L:      linux-hwmon@vger.kernel.org
15005 S:      Maintained
15006 F:      Documentation/hwmon/smsc47b397.rst
15007 F:      drivers/hwmon/smsc47b397.c
15008
15009 SMSC911x ETHERNET DRIVER
15010 M:      Steve Glendinning <steve.glendinning@shawell.net>
15011 L:      netdev@vger.kernel.org
15012 S:      Maintained
15013 F:      include/linux/smsc911x.h
15014 F:      drivers/net/ethernet/smsc/smsc911x.*
15015
15016 SMSC9420 PCI ETHERNET DRIVER
15017 M:      Steve Glendinning <steve.glendinning@shawell.net>
15018 L:      netdev@vger.kernel.org
15019 S:      Maintained
15020 F:      drivers/net/ethernet/smsc/smsc9420.*
15021
15022 SOC-CAMERA V4L2 SUBSYSTEM
15023 L:      linux-media@vger.kernel.org
15024 T:      git git://linuxtv.org/media_tree.git
15025 S:      Orphan
15026 F:      include/media/soc_camera.h
15027 F:      drivers/staging/media/soc_camera/
15028
15029 SOCIONEXT SYNQUACER I2C DRIVER
15030 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
15031 L:      linux-i2c@vger.kernel.org
15032 S:      Maintained
15033 F:      drivers/i2c/busses/i2c-synquacer.c
15034 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
15035
15036 SOCIONEXT UNIPHIER SOUND DRIVER
15037 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15038 S:      Orphan
15039 F:      sound/soc/uniphier/
15040
15041 SOEKRIS NET48XX LED SUPPORT
15042 M:      Chris Boot <bootc@bootc.net>
15043 S:      Maintained
15044 F:      drivers/leds/leds-net48xx.c
15045
15046 SOFT-IWARP DRIVER (siw)
15047 M:      Bernard Metzler <bmt@zurich.ibm.com>
15048 L:      linux-rdma@vger.kernel.org
15049 S:      Supported
15050 F:      drivers/infiniband/sw/siw/
15051 F:      include/uapi/rdma/siw-abi.h
15052
15053 SOFT-ROCE DRIVER (rxe)
15054 M:      Moni Shoua <monis@mellanox.com>
15055 L:      linux-rdma@vger.kernel.org
15056 S:      Supported
15057 W:      https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home
15058 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15059 F:      drivers/infiniband/sw/rxe/
15060 F:      include/uapi/rdma/rdma_user_rxe.h
15061
15062 SOFTLOGIC 6x10 MPEG CODEC
15063 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
15064 M:      Anton Sviridenko <anton@corp.bluecherry.net>
15065 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
15066 M:      Andrey Utkin <andrey_utkin@fastmail.com>
15067 M:      Ismael Luceno <ismael@iodev.co.uk>
15068 L:      linux-media@vger.kernel.org
15069 S:      Supported
15070 F:      drivers/media/pci/solo6x10/
15071
15072 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
15073 M:      James Morse <james.morse@arm.com>
15074 L:      linux-arm-kernel@lists.infradead.org
15075 S:      Maintained
15076 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
15077 F:      drivers/firmware/arm_sdei.c
15078 F:      include/linux/arm_sdei.h
15079 F:      include/uapi/linux/arm_sdei.h
15080
15081 SOFTWARE RAID (Multiple Disks) SUPPORT
15082 M:      Song Liu <song@kernel.org>
15083 L:      linux-raid@vger.kernel.org
15084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
15085 S:      Supported
15086 F:      drivers/md/Makefile
15087 F:      drivers/md/Kconfig
15088 F:      drivers/md/md*
15089 F:      drivers/md/raid*
15090 F:      include/linux/raid/
15091 F:      include/uapi/linux/raid/
15092
15093 SOCIONEXT (SNI) AVE NETWORK DRIVER
15094 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15095 L:      netdev@vger.kernel.org
15096 S:      Maintained
15097 F:      drivers/net/ethernet/socionext/sni_ave.c
15098 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.txt
15099
15100 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
15101 M:      Jassi Brar <jaswinder.singh@linaro.org>
15102 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15103 L:      netdev@vger.kernel.org
15104 S:      Maintained
15105 F:      drivers/net/ethernet/socionext/netsec.c
15106 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
15107
15108 SOCIONEXT (SNI) Synquacer SPI DRIVER
15109 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
15110 M:      Jassi Brar <jaswinder.singh@linaro.org>
15111 L:      linux-spi@vger.kernel.org
15112 S:      Maintained
15113 F:      drivers/spi/spi-synquacer.c
15114 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
15115
15116 SOLIDRUN CLEARFOG SUPPORT
15117 M:      Russell King <linux@armlinux.org.uk>
15118 S:      Maintained
15119 F:      arch/arm/boot/dts/armada-388-clearfog*
15120 F:      arch/arm/boot/dts/armada-38x-solidrun-*
15121
15122 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
15123 M:      Russell King <linux@armlinux.org.uk>
15124 S:      Maintained
15125 F:      arch/arm/boot/dts/imx6*-cubox-i*
15126 F:      arch/arm/boot/dts/imx6*-hummingboard*
15127 F:      arch/arm/boot/dts/imx6*-sr-*
15128
15129 SONIC NETWORK DRIVER
15130 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
15131 L:      netdev@vger.kernel.org
15132 S:      Maintained
15133 F:      drivers/net/ethernet/natsemi/sonic.*
15134
15135 SONICS SILICON BACKPLANE DRIVER (SSB)
15136 M:      Michael Buesch <m@bues.ch>
15137 L:      linux-wireless@vger.kernel.org
15138 S:      Maintained
15139 F:      drivers/ssb/
15140 F:      include/linux/ssb/
15141
15142 SONY IMX214 SENSOR DRIVER
15143 M:      Ricardo Ribalda <ricardo.ribalda@gmail.com>
15144 L:      linux-media@vger.kernel.org
15145 T:      git git://linuxtv.org/media_tree.git
15146 S:      Maintained
15147 F:      drivers/media/i2c/imx214.c
15148 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.txt
15149
15150 SONY IMX258 SENSOR DRIVER
15151 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15152 L:      linux-media@vger.kernel.org
15153 T:      git git://linuxtv.org/media_tree.git
15154 S:      Maintained
15155 F:      drivers/media/i2c/imx258.c
15156
15157 SONY IMX274 SENSOR DRIVER
15158 M:      Leon Luo <leonl@leopardimaging.com>
15159 L:      linux-media@vger.kernel.org
15160 T:      git git://linuxtv.org/media_tree.git
15161 S:      Maintained
15162 F:      drivers/media/i2c/imx274.c
15163 F:      Documentation/devicetree/bindings/media/i2c/imx274.txt
15164
15165 SONY IMX319 SENSOR DRIVER
15166 M:      Bingbu Cao <bingbu.cao@intel.com>
15167 L:      linux-media@vger.kernel.org
15168 T:      git git://linuxtv.org/media_tree.git
15169 S:      Maintained
15170 F:      drivers/media/i2c/imx319.c
15171
15172 SONY IMX355 SENSOR DRIVER
15173 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15174 L:      linux-media@vger.kernel.org
15175 T:      git git://linuxtv.org/media_tree.git
15176 S:      Maintained
15177 F:      drivers/media/i2c/imx355.c
15178
15179 SONY MEMORYSTICK SUBSYSTEM
15180 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15181 M:      Alex Dubov <oakad@yahoo.com>
15182 M:      Ulf Hansson <ulf.hansson@linaro.org>
15183 L:      linux-mmc@vger.kernel.org
15184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
15185 S:      Maintained
15186 F:      drivers/memstick/
15187 F:      include/linux/memstick.h
15188
15189 SONY VAIO CONTROL DEVICE DRIVER
15190 M:      Mattia Dongili <malattia@linux.it>
15191 L:      platform-driver-x86@vger.kernel.org
15192 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
15193 S:      Maintained
15194 F:      Documentation/admin-guide/laptops/sony-laptop.rst
15195 F:      drivers/char/sonypi.c
15196 F:      drivers/platform/x86/sony-laptop.c
15197 F:      include/linux/sony-laptop.h
15198
15199 SOUND
15200 M:      Jaroslav Kysela <perex@perex.cz>
15201 M:      Takashi Iwai <tiwai@suse.com>
15202 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15203 W:      http://www.alsa-project.org/
15204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15205 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
15206 S:      Maintained
15207 F:      Documentation/sound/
15208 F:      include/sound/
15209 F:      include/uapi/sound/
15210 F:      sound/
15211
15212 SOUND - COMPRESSED AUDIO
15213 M:      Vinod Koul <vkoul@kernel.org>
15214 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15216 S:      Supported
15217 F:      Documentation/sound/designs/compress-offload.rst
15218 F:      include/sound/compress_driver.h
15219 F:      include/uapi/sound/compress_*
15220 F:      sound/core/compress_offload.c
15221 F:      sound/soc/soc-compress.c
15222
15223 SOUND - DMAENGINE HELPERS
15224 M:      Lars-Peter Clausen <lars@metafoo.de>
15225 S:      Supported
15226 F:      include/sound/dmaengine_pcm.h
15227 F:      sound/core/pcm_dmaengine.c
15228 F:      sound/soc/soc-generic-dmaengine-pcm.c
15229
15230 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
15231 M:      Liam Girdwood <lgirdwood@gmail.com>
15232 M:      Mark Brown <broonie@kernel.org>
15233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
15234 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15235 W:      http://alsa-project.org/main/index.php/ASoC
15236 S:      Supported
15237 F:      Documentation/devicetree/bindings/sound/
15238 F:      Documentation/sound/soc/
15239 F:      sound/soc/
15240 F:      include/dt-bindings/sound/
15241 F:      include/sound/soc*
15242
15243 SOUNDWIRE SUBSYSTEM
15244 M:      Vinod Koul <vkoul@kernel.org>
15245 M:      Sanyog Kale <sanyog.r.kale@intel.com>
15246 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
15247 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15248 S:      Supported
15249 F:      Documentation/driver-api/soundwire/
15250 F:      drivers/soundwire/
15251 F:      include/linux/soundwire/
15252
15253 SP2 MEDIA DRIVER
15254 M:      Olli Salonen <olli.salonen@iki.fi>
15255 L:      linux-media@vger.kernel.org
15256 W:      https://linuxtv.org
15257 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15258 S:      Maintained
15259 F:      drivers/media/dvb-frontends/sp2*
15260
15261 SPARC + UltraSPARC (sparc/sparc64)
15262 M:      "David S. Miller" <davem@davemloft.net>
15263 L:      sparclinux@vger.kernel.org
15264 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
15265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15267 S:      Maintained
15268 F:      arch/sparc/
15269 F:      drivers/sbus/
15270
15271 SPARC SERIAL DRIVERS
15272 M:      "David S. Miller" <davem@davemloft.net>
15273 L:      sparclinux@vger.kernel.org
15274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15276 S:      Maintained
15277 F:      include/linux/sunserialcore.h
15278 F:      drivers/tty/serial/suncore.c
15279 F:      drivers/tty/serial/sunhv.c
15280 F:      drivers/tty/serial/sunsab.c
15281 F:      drivers/tty/serial/sunsab.h
15282 F:      drivers/tty/serial/sunsu.c
15283 F:      drivers/tty/serial/sunzilog.c
15284 F:      drivers/tty/serial/sunzilog.h
15285 F:      drivers/tty/vcc.c
15286
15287 SPARSE CHECKER
15288 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
15289 L:      linux-sparse@vger.kernel.org
15290 W:      https://sparse.wiki.kernel.org/
15291 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
15292 S:      Maintained
15293 F:      include/linux/compiler.h
15294
15295 SPEAR CLOCK FRAMEWORK SUPPORT
15296 M:      Viresh Kumar <vireshk@kernel.org>
15297 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15298 W:      http://www.st.com/spear
15299 S:      Maintained
15300 F:      drivers/clk/spear/
15301
15302 SPEAR PLATFORM SUPPORT
15303 M:      Viresh Kumar <vireshk@kernel.org>
15304 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
15305 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15306 W:      http://www.st.com/spear
15307 S:      Maintained
15308 F:      arch/arm/boot/dts/spear*
15309 F:      arch/arm/mach-spear/
15310
15311 SPI NOR SUBSYSTEM
15312 M:      Marek Vasut <marek.vasut@gmail.com>
15313 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
15314 L:      linux-mtd@lists.infradead.org
15315 W:      http://www.linux-mtd.infradead.org/
15316 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
15317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
15318 S:      Maintained
15319 F:      drivers/mtd/spi-nor/
15320 F:      include/linux/mtd/spi-nor.h
15321
15322 SPI SUBSYSTEM
15323 M:      Mark Brown <broonie@kernel.org>
15324 L:      linux-spi@vger.kernel.org
15325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
15326 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
15327 S:      Maintained
15328 F:      Documentation/devicetree/bindings/spi/
15329 F:      Documentation/spi/
15330 F:      drivers/spi/
15331 F:      include/linux/spi/
15332 F:      include/uapi/linux/spi/
15333 F:      tools/spi/
15334
15335 SPIDERNET NETWORK DRIVER for CELL
15336 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
15337 L:      netdev@vger.kernel.org
15338 S:      Supported
15339 F:      Documentation/networking/device_drivers/toshiba/spider_net.txt
15340 F:      drivers/net/ethernet/toshiba/spider_net*
15341
15342 SPMI SUBSYSTEM
15343 R:      Stephen Boyd <sboyd@kernel.org>
15344 L:      linux-arm-msm@vger.kernel.org
15345 F:      Documentation/devicetree/bindings/spmi/
15346 F:      drivers/spmi/
15347 F:      include/dt-bindings/spmi/spmi.h
15348 F:      include/linux/spmi.h
15349 F:      include/trace/events/spmi.h
15350
15351 SPU FILE SYSTEM
15352 M:      Jeremy Kerr <jk@ozlabs.org>
15353 L:      linuxppc-dev@lists.ozlabs.org
15354 W:      http://www.ibm.com/developerworks/power/cell/
15355 S:      Supported
15356 F:      Documentation/filesystems/spufs.txt
15357 F:      arch/powerpc/platforms/cell/spufs/
15358
15359 SQUASHFS FILE SYSTEM
15360 M:      Phillip Lougher <phillip@squashfs.org.uk>
15361 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
15362 W:      http://squashfs.org.uk
15363 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
15364 S:      Maintained
15365 F:      Documentation/filesystems/squashfs.txt
15366 F:      fs/squashfs/
15367
15368 SRM (Alpha) environment access
15369 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
15370 S:      Maintained
15371 F:      arch/alpha/kernel/srm_env.c
15372
15373 ST LSM6DSx IMU IIO DRIVER
15374 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
15375 L:      linux-iio@vger.kernel.org
15376 W:      http://www.st.com/
15377 S:      Maintained
15378 F:      drivers/iio/imu/st_lsm6dsx/
15379 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
15380
15381 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
15382 M:      Mickael Guene <mickael.guene@st.com>
15383 L:      linux-media@vger.kernel.org
15384 T:      git git://linuxtv.org/media_tree.git
15385 S:      Maintained
15386 F:      drivers/media/i2c/st-mipid02.c
15387 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
15388
15389 ST STM32 I2C/SMBUS DRIVER
15390 M:      Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
15391 L:      linux-i2c@vger.kernel.org
15392 S:      Maintained
15393 F:      drivers/i2c/busses/i2c-stm32*
15394
15395 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
15396 M:      Song Qiang <songqiang1304521@gmail.com>
15397 L:      linux-iio@vger.kernel.org
15398 S:      Maintained
15399 F:      drivers/iio/proximity/vl53l0x-i2c.c
15400 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
15401
15402 STABLE BRANCH
15403 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15404 M:      Sasha Levin <sashal@kernel.org>
15405 L:      stable@vger.kernel.org
15406 S:      Supported
15407 F:      Documentation/process/stable-kernel-rules.rst
15408
15409 STAGING - COMEDI
15410 M:      Ian Abbott <abbotti@mev.co.uk>
15411 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
15412 S:      Odd Fixes
15413 F:      drivers/staging/comedi/
15414
15415 STAGING - FIELDBUS SUBSYSTEM
15416 M:      Sven Van Asbroeck <TheSven73@gmail.com>
15417 S:      Maintained
15418 F:      drivers/staging/fieldbus/*
15419 F:      drivers/staging/fieldbus/Documentation/
15420
15421 STAGING - HMS ANYBUS-S BUS
15422 M:      Sven Van Asbroeck <TheSven73@gmail.com>
15423 S:      Maintained
15424 F:      drivers/staging/fieldbus/anybuss/
15425
15426 STAGING - INDUSTRIAL IO
15427 M:      Jonathan Cameron <jic23@kernel.org>
15428 L:      linux-iio@vger.kernel.org
15429 S:      Odd Fixes
15430 F:      Documentation/devicetree/bindings/staging/iio/
15431 F:      drivers/staging/iio/
15432
15433 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
15434 M:      Marc Dietrich <marvin24@gmx.de>
15435 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
15436 L:      linux-tegra@vger.kernel.org
15437 S:      Maintained
15438 F:      drivers/staging/nvec/
15439
15440 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
15441 M:      Jens Frederich <jfrederich@gmail.com>
15442 M:      Daniel Drake <dsd@laptop.org>
15443 M:      Jon Nettleton <jon.nettleton@gmail.com>
15444 W:      http://wiki.laptop.org/go/DCON
15445 S:      Maintained
15446 F:      drivers/staging/olpc_dcon/
15447
15448 STAGING - REALTEK RTL8712U DRIVERS
15449 M:      Larry Finger <Larry.Finger@lwfinger.net>
15450 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
15451 S:      Odd Fixes
15452 F:      drivers/staging/rtl8712/
15453
15454 STAGING - REALTEK RTL8188EU DRIVERS
15455 M:      Larry Finger <Larry.Finger@lwfinger.net>
15456 S:      Odd Fixes
15457 F:      drivers/staging/rtl8188eu/
15458
15459 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
15460 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15461 M:      Teddy Wang <teddy.wang@siliconmotion.com>
15462 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15463 L:      linux-fbdev@vger.kernel.org
15464 S:      Maintained
15465 F:      drivers/staging/sm750fb/
15466
15467 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
15468 M:      William Hubbs <w.d.hubbs@gmail.com>
15469 M:      Chris Brannon <chris@the-brannons.com>
15470 M:      Kirk Reiser <kirk@reisers.ca>
15471 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
15472 L:      speakup@linux-speakup.org
15473 W:      http://www.linux-speakup.org/
15474 S:      Odd Fixes
15475 F:      drivers/staging/speakup/
15476
15477 STAGING - VIA VT665X DRIVERS
15478 M:      Forest Bond <forest@alittletooquiet.net>
15479 S:      Odd Fixes
15480 F:      drivers/staging/vt665?/
15481
15482 STAGING - WILC1000 WIFI DRIVER
15483 M:      Adham Abozaeid <adham.abozaeid@microchip.com>
15484 M:      Ajay Singh <ajay.kathat@microchip.com>
15485 L:      linux-wireless@vger.kernel.org
15486 S:      Supported
15487 F:      drivers/staging/wilc1000/
15488
15489 STAGING SUBSYSTEM
15490 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15491 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
15492 L:      devel@driverdev.osuosl.org
15493 S:      Supported
15494 F:      drivers/staging/
15495
15496 STARFIRE/DURALAN NETWORK DRIVER
15497 M:      Ion Badulescu <ionut@badula.org>
15498 S:      Odd Fixes
15499 F:      drivers/net/ethernet/adaptec/starfire*
15500
15501 STEC S1220 SKD DRIVER
15502 M:      Damien Le Moal <Damien.LeMoal@wdc.com>
15503 L:      linux-block@vger.kernel.org
15504 S:      Maintained
15505 F:      drivers/block/skd*[ch]
15506
15507 STI AUDIO (ASoC) DRIVERS
15508 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
15509 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15510 S:      Maintained
15511 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
15512 F:      sound/soc/sti/
15513
15514 STI CEC DRIVER
15515 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
15516 S:      Maintained
15517 F:      drivers/media/platform/sti/cec/
15518 F:      Documentation/devicetree/bindings/media/stih-cec.txt
15519
15520 STK1160 USB VIDEO CAPTURE DRIVER
15521 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
15522 L:      linux-media@vger.kernel.org
15523 T:      git git://linuxtv.org/media_tree.git
15524 S:      Maintained
15525 F:      drivers/media/usb/stk1160/
15526
15527 STM32 AUDIO (ASoC) DRIVERS
15528 M:      Olivier Moysan <olivier.moysan@st.com>
15529 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
15530 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15531 S:      Maintained
15532 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
15533 F:      sound/soc/stm/
15534
15535 STM32 TIMER/LPTIMER DRIVERS
15536 M:      Fabrice Gasnier <fabrice.gasnier@st.com>
15537 S:      Maintained
15538 F:      drivers/*/stm32-*timer*
15539 F:      drivers/pwm/pwm-stm32*
15540 F:      include/linux/*/stm32-*tim*
15541 F:      Documentation/ABI/testing/*timer-stm32
15542 F:      Documentation/devicetree/bindings/*/stm32-*timer*
15543 F:      Documentation/devicetree/bindings/pwm/pwm-stm32*
15544
15545 STMMAC ETHERNET DRIVER
15546 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
15547 M:      Alexandre Torgue <alexandre.torgue@st.com>
15548 M:      Jose Abreu <joabreu@synopsys.com>
15549 L:      netdev@vger.kernel.org
15550 W:      http://www.stlinux.com
15551 S:      Supported
15552 F:      drivers/net/ethernet/stmicro/stmmac/
15553
15554 SUN3/3X
15555 M:      Sam Creasey <sammy@sammy.net>
15556 W:      http://sammy.net/sun3/
15557 S:      Maintained
15558 F:      arch/m68k/kernel/*sun3*
15559 F:      arch/m68k/sun3*/
15560 F:      arch/m68k/include/asm/sun3*
15561 F:      drivers/net/ethernet/i825xx/sun3*
15562
15563 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
15564 M:      Hans de Goede <hdegoede@redhat.com>
15565 L:      linux-input@vger.kernel.org
15566 S:      Maintained
15567 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
15568 F:      drivers/input/keyboard/sun4i-lradc-keys.c
15569
15570 SUNDANCE NETWORK DRIVER
15571 M:      Denis Kirjanov <kda@linux-powerpc.org>
15572 L:      netdev@vger.kernel.org
15573 S:      Maintained
15574 F:      drivers/net/ethernet/dlink/sundance.c
15575
15576 SUPERH
15577 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
15578 M:      Rich Felker <dalias@libc.org>
15579 L:      linux-sh@vger.kernel.org
15580 Q:      http://patchwork.kernel.org/project/linux-sh/list/
15581 S:      Maintained
15582 F:      Documentation/sh/
15583 F:      arch/sh/
15584 F:      drivers/sh/
15585
15586 SUSPEND TO RAM
15587 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
15588 M:      Len Brown <len.brown@intel.com>
15589 M:      Pavel Machek <pavel@ucw.cz>
15590 L:      linux-pm@vger.kernel.org
15591 B:      https://bugzilla.kernel.org
15592 S:      Supported
15593 F:      Documentation/power/
15594 F:      arch/x86/kernel/acpi/
15595 F:      drivers/base/power/
15596 F:      kernel/power/
15597 F:      include/linux/suspend.h
15598 F:      include/linux/freezer.h
15599 F:      include/linux/pm.h
15600
15601 SVGA HANDLING
15602 M:      Martin Mares <mj@ucw.cz>
15603 L:      linux-video@atrey.karlin.mff.cuni.cz
15604 S:      Maintained
15605 F:      Documentation/admin-guide/svga.rst
15606 F:      arch/x86/boot/video*
15607
15608 SWIOTLB SUBSYSTEM
15609 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
15610 L:      iommu@lists.linux-foundation.org
15611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
15612 S:      Supported
15613 F:      kernel/dma/swiotlb.c
15614 F:      arch/*/kernel/pci-swiotlb.c
15615 F:      include/linux/swiotlb.h
15616
15617 SWITCHDEV
15618 M:      Jiri Pirko <jiri@resnulli.us>
15619 M:      Ivan Vecera <ivecera@redhat.com>
15620 L:      netdev@vger.kernel.org
15621 S:      Supported
15622 F:      net/switchdev/
15623 F:      include/net/switchdev.h
15624
15625 SY8106A REGULATOR DRIVER
15626 M:      Icenowy Zheng <icenowy@aosc.io>
15627 S:      Maintained
15628 F:      drivers/regulator/sy8106a-regulator.c
15629 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
15630
15631 SYNC FILE FRAMEWORK
15632 M:      Sumit Semwal <sumit.semwal@linaro.org>
15633 R:      Gustavo Padovan <gustavo@padovan.org>
15634 S:      Maintained
15635 L:      linux-media@vger.kernel.org
15636 L:      dri-devel@lists.freedesktop.org
15637 F:      drivers/dma-buf/sync_*
15638 F:      drivers/dma-buf/dma-fence*
15639 F:      drivers/dma-buf/sw_sync.c
15640 F:      include/linux/sync_file.h
15641 F:      include/uapi/linux/sync_file.h
15642 F:      Documentation/driver-api/sync_file.rst
15643 T:      git git://anongit.freedesktop.org/drm/drm-misc
15644
15645 SYNOPSYS ARC ARCHITECTURE
15646 M:      Vineet Gupta <vgupta@synopsys.com>
15647 L:      linux-snps-arc@lists.infradead.org
15648 S:      Supported
15649 F:      arch/arc/
15650 F:      Documentation/devicetree/bindings/arc/*
15651 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
15652 F:      drivers/clocksource/arc_timer.c
15653 F:      drivers/tty/serial/arc_uart.c
15654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
15655
15656 SYNOPSYS ARC HSDK SDP pll clock driver
15657 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15658 S:      Supported
15659 F:      drivers/clk/clk-hsdk-pll.c
15660 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
15661
15662 SYNOPSYS ARC SDP clock driver
15663 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15664 S:      Supported
15665 F:      drivers/clk/axs10x/*
15666 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
15667
15668 SYNOPSYS ARC SDP platform support
15669 M:      Alexey Brodkin <abrodkin@synopsys.com>
15670 S:      Supported
15671 F:      arch/arc/plat-axs10x
15672 F:      arch/arc/boot/dts/ax*
15673 F:      Documentation/devicetree/bindings/arc/axs10*
15674
15675 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
15676 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15677 S:      Supported
15678 F:      drivers/reset/reset-axs10x.c
15679 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
15680
15681 SYNOPSYS CREG GPIO DRIVER
15682 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15683 S:      Maintained
15684 F:      drivers/gpio/gpio-creg-snps.c
15685 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
15686
15687 SYNOPSYS DESIGNWARE 8250 UART DRIVER
15688 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
15689 S:      Maintained
15690 F:      drivers/tty/serial/8250/8250_dw.c
15691
15692 SYNOPSYS DESIGNWARE APB GPIO DRIVER
15693 M:      Hoan Tran <hoan@os.amperecomputing.com>
15694 L:      linux-gpio@vger.kernel.org
15695 S:      Maintained
15696 F:      drivers/gpio/gpio-dwapb.c
15697 F:      Documentation/devicetree/bindings/gpio/snps-dwapb-gpio.txt
15698
15699 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
15700 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15701 S:      Maintained
15702 F:      drivers/dma/dw-axi-dmac/
15703 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
15704
15705 SYNOPSYS DESIGNWARE DMAC DRIVER
15706 M:      Viresh Kumar <vireshk@kernel.org>
15707 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
15708 S:      Maintained
15709 F:      Documentation/devicetree/bindings/dma/snps-dma.txt
15710 F:      drivers/dma/dw/
15711 F:      include/dt-bindings/dma/dw-dmac.h
15712 F:      include/linux/dma/dw.h
15713 F:      include/linux/platform_data/dma-dw.h
15714
15715 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
15716 M:      Jose Abreu <Jose.Abreu@synopsys.com>
15717 L:      netdev@vger.kernel.org
15718 S:      Supported
15719 F:      drivers/net/ethernet/synopsys/
15720
15721 SYNOPSYS DESIGNWARE I2C DRIVER
15722 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
15723 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
15724 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
15725 L:      linux-i2c@vger.kernel.org
15726 S:      Maintained
15727 F:      drivers/i2c/busses/i2c-designware-*
15728 F:      include/linux/platform_data/i2c-designware.h
15729
15730 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
15731 M:      Jaehoon Chung <jh80.chung@samsung.com>
15732 L:      linux-mmc@vger.kernel.org
15733 S:      Maintained
15734 F:      drivers/mmc/host/dw_mmc*
15735
15736 SYNOPSYS HSDK RESET CONTROLLER DRIVER
15737 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15738 S:      Supported
15739 F:      drivers/reset/reset-hsdk.c
15740 F:      include/dt-bindings/reset/snps,hsdk-reset.h
15741 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
15742
15743 SYSTEM CONFIGURATION (SYSCON)
15744 M:      Lee Jones <lee.jones@linaro.org>
15745 M:      Arnd Bergmann <arnd@arndb.de>
15746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
15747 S:      Supported
15748 F:      drivers/mfd/syscon.c
15749
15750 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
15751 M:      Sudeep Holla <sudeep.holla@arm.com>
15752 L:      linux-arm-kernel@lists.infradead.org
15753 S:      Maintained
15754 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
15755 F:      drivers/clk/clk-sc[mp]i.c
15756 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
15757 F:      drivers/firmware/arm_scpi.c
15758 F:      drivers/firmware/arm_scmi/
15759 F:      drivers/reset/reset-scmi.c
15760 F:      include/linux/sc[mp]i_protocol.h
15761
15762 SYSTEM RESET/SHUTDOWN DRIVERS
15763 M:      Sebastian Reichel <sre@kernel.org>
15764 L:      linux-pm@vger.kernel.org
15765 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15766 S:      Maintained
15767 F:      Documentation/devicetree/bindings/power/reset/
15768 F:      drivers/power/reset/
15769
15770 SYSTEM TRACE MODULE CLASS
15771 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
15772 S:      Maintained
15773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
15774 F:      Documentation/trace/stm.rst
15775 F:      drivers/hwtracing/stm/
15776 F:      include/linux/stm.h
15777 F:      include/uapi/linux/stm.h
15778
15779 SYSV FILESYSTEM
15780 M:      Christoph Hellwig <hch@infradead.org>
15781 S:      Maintained
15782 F:      Documentation/filesystems/sysv-fs.txt
15783 F:      fs/sysv/
15784 F:      include/linux/sysv_fs.h
15785
15786 TASKSTATS STATISTICS INTERFACE
15787 M:      Balbir Singh <bsingharora@gmail.com>
15788 S:      Maintained
15789 F:      Documentation/accounting/taskstats*
15790 F:      include/linux/taskstats*
15791 F:      kernel/taskstats.c
15792
15793 TC subsystem
15794 M:      Jamal Hadi Salim <jhs@mojatatu.com>
15795 M:      Cong Wang <xiyou.wangcong@gmail.com>
15796 M:      Jiri Pirko <jiri@resnulli.us>
15797 L:      netdev@vger.kernel.org
15798 S:      Maintained
15799 F:      include/net/pkt_cls.h
15800 F:      include/net/pkt_sched.h
15801 F:      include/net/tc_act/
15802 F:      include/uapi/linux/pkt_cls.h
15803 F:      include/uapi/linux/pkt_sched.h
15804 F:      include/uapi/linux/tc_act/
15805 F:      include/uapi/linux/tc_ematch/
15806 F:      net/sched/
15807
15808 TC90522 MEDIA DRIVER
15809 M:      Akihiro Tsukada <tskd08@gmail.com>
15810 L:      linux-media@vger.kernel.org
15811 S:      Odd Fixes
15812 F:      drivers/media/dvb-frontends/tc90522*
15813
15814 TCP LOW PRIORITY MODULE
15815 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
15816 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
15817 W:      http://tcp-lp-mod.sourceforge.net/
15818 S:      Maintained
15819 F:      net/ipv4/tcp_lp.c
15820
15821 TDA10071 MEDIA DRIVER
15822 M:      Antti Palosaari <crope@iki.fi>
15823 L:      linux-media@vger.kernel.org
15824 W:      https://linuxtv.org
15825 W:      http://palosaari.fi/linux/
15826 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15827 T:      git git://linuxtv.org/anttip/media_tree.git
15828 S:      Maintained
15829 F:      drivers/media/dvb-frontends/tda10071*
15830
15831 TDA18212 MEDIA DRIVER
15832 M:      Antti Palosaari <crope@iki.fi>
15833 L:      linux-media@vger.kernel.org
15834 W:      https://linuxtv.org
15835 W:      http://palosaari.fi/linux/
15836 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15837 T:      git git://linuxtv.org/anttip/media_tree.git
15838 S:      Maintained
15839 F:      drivers/media/tuners/tda18212*
15840
15841 TDA18218 MEDIA DRIVER
15842 M:      Antti Palosaari <crope@iki.fi>
15843 L:      linux-media@vger.kernel.org
15844 W:      https://linuxtv.org
15845 W:      http://palosaari.fi/linux/
15846 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15847 T:      git git://linuxtv.org/anttip/media_tree.git
15848 S:      Maintained
15849 F:      drivers/media/tuners/tda18218*
15850
15851 TDA18250 MEDIA DRIVER
15852 M:      Olli Salonen <olli.salonen@iki.fi>
15853 L:      linux-media@vger.kernel.org
15854 W:      https://linuxtv.org
15855 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15856 T:      git git://linuxtv.org/media_tree.git
15857 S:      Maintained
15858 F:      drivers/media/tuners/tda18250*
15859
15860 TDA18271 MEDIA DRIVER
15861 M:      Michael Krufky <mkrufky@linuxtv.org>
15862 L:      linux-media@vger.kernel.org
15863 W:      https://linuxtv.org
15864 W:      http://github.com/mkrufky
15865 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15866 T:      git git://linuxtv.org/mkrufky/tuners.git
15867 S:      Maintained
15868 F:      drivers/media/tuners/tda18271*
15869
15870 TDA1997x MEDIA DRIVER
15871 M:      Tim Harvey <tharvey@gateworks.com>
15872 L:      linux-media@vger.kernel.org
15873 W:      https://linuxtv.org
15874 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15875 S:      Maintained
15876 F:      drivers/media/i2c/tda1997x.*
15877
15878 TDA827x MEDIA DRIVER
15879 M:      Michael Krufky <mkrufky@linuxtv.org>
15880 L:      linux-media@vger.kernel.org
15881 W:      https://linuxtv.org
15882 W:      http://github.com/mkrufky
15883 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15884 T:      git git://linuxtv.org/mkrufky/tuners.git
15885 S:      Maintained
15886 F:      drivers/media/tuners/tda8290.*
15887
15888 TDA8290 MEDIA DRIVER
15889 M:      Michael Krufky <mkrufky@linuxtv.org>
15890 L:      linux-media@vger.kernel.org
15891 W:      https://linuxtv.org
15892 W:      http://github.com/mkrufky
15893 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15894 T:      git git://linuxtv.org/mkrufky/tuners.git
15895 S:      Maintained
15896 F:      drivers/media/tuners/tda8290.*
15897
15898 TDA9840 MEDIA DRIVER
15899 M:      Hans Verkuil <hverkuil@xs4all.nl>
15900 L:      linux-media@vger.kernel.org
15901 T:      git git://linuxtv.org/media_tree.git
15902 W:      https://linuxtv.org
15903 S:      Maintained
15904 F:      drivers/media/i2c/tda9840*
15905
15906 TEA5761 TUNER DRIVER
15907 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15908 L:      linux-media@vger.kernel.org
15909 W:      https://linuxtv.org
15910 T:      git git://linuxtv.org/media_tree.git
15911 S:      Odd fixes
15912 F:      drivers/media/tuners/tea5761.*
15913
15914 TEA5767 TUNER DRIVER
15915 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15916 L:      linux-media@vger.kernel.org
15917 W:      https://linuxtv.org
15918 T:      git git://linuxtv.org/media_tree.git
15919 S:      Maintained
15920 F:      drivers/media/tuners/tea5767.*
15921
15922 TEA6415C MEDIA DRIVER
15923 M:      Hans Verkuil <hverkuil@xs4all.nl>
15924 L:      linux-media@vger.kernel.org
15925 T:      git git://linuxtv.org/media_tree.git
15926 W:      https://linuxtv.org
15927 S:      Maintained
15928 F:      drivers/media/i2c/tea6415c*
15929
15930 TEA6420 MEDIA DRIVER
15931 M:      Hans Verkuil <hverkuil@xs4all.nl>
15932 L:      linux-media@vger.kernel.org
15933 T:      git git://linuxtv.org/media_tree.git
15934 W:      https://linuxtv.org
15935 S:      Maintained
15936 F:      drivers/media/i2c/tea6420*
15937
15938 TEAM DRIVER
15939 M:      Jiri Pirko <jiri@resnulli.us>
15940 L:      netdev@vger.kernel.org
15941 S:      Supported
15942 F:      drivers/net/team/
15943 F:      include/linux/if_team.h
15944 F:      include/uapi/linux/if_team.h
15945
15946 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
15947 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
15948 S:      Maintained
15949 F:      arch/x86/platform/ts5500/
15950
15951 TECHNOTREND USB IR RECEIVER
15952 M:      Sean Young <sean@mess.org>
15953 L:      linux-media@vger.kernel.org
15954 S:      Maintained
15955 F:      drivers/media/rc/ttusbir.c
15956
15957 TECHWELL TW9910 VIDEO DECODER
15958 L:      linux-media@vger.kernel.org
15959 S:      Orphan
15960 F:      drivers/media/i2c/tw9910.c
15961 F:      include/media/i2c/tw9910.h
15962
15963 TEE SUBSYSTEM
15964 M:      Jens Wiklander <jens.wiklander@linaro.org>
15965 L:      tee-dev@lists.linaro.org
15966 S:      Maintained
15967 F:      include/linux/tee_drv.h
15968 F:      include/uapi/linux/tee.h
15969 F:      drivers/tee/
15970 F:      Documentation/tee.txt
15971
15972 TEGRA ARCHITECTURE SUPPORT
15973 M:      Thierry Reding <thierry.reding@gmail.com>
15974 M:      Jonathan Hunter <jonathanh@nvidia.com>
15975 L:      linux-tegra@vger.kernel.org
15976 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
15977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
15978 S:      Supported
15979 N:      [^a-z]tegra
15980
15981 TEGRA CLOCK DRIVER
15982 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
15983 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
15984 S:      Supported
15985 F:      drivers/clk/tegra/
15986
15987 TEGRA DMA DRIVERS
15988 M:      Laxman Dewangan <ldewangan@nvidia.com>
15989 M:      Jon Hunter <jonathanh@nvidia.com>
15990 S:      Supported
15991 F:      drivers/dma/tegra*
15992
15993 TEGRA I2C DRIVER
15994 M:      Laxman Dewangan <ldewangan@nvidia.com>
15995 R:      Dmitry Osipenko <digetx@gmail.com>
15996 S:      Supported
15997 F:      drivers/i2c/busses/i2c-tegra.c
15998
15999 TEGRA IOMMU DRIVERS
16000 M:      Thierry Reding <thierry.reding@gmail.com>
16001 L:      linux-tegra@vger.kernel.org
16002 S:      Supported
16003 F:      drivers/iommu/tegra*
16004
16005 TEGRA KBC DRIVER
16006 M:      Laxman Dewangan <ldewangan@nvidia.com>
16007 S:      Supported
16008 F:      drivers/input/keyboard/tegra-kbc.c
16009
16010 TEGRA NAND DRIVER
16011 M:      Stefan Agner <stefan@agner.ch>
16012 M:      Lucas Stach <dev@lynxeye.de>
16013 S:      Maintained
16014 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
16015 F:      drivers/mtd/nand/raw/tegra_nand.c
16016
16017 TEGRA PWM DRIVER
16018 M:      Thierry Reding <thierry.reding@gmail.com>
16019 S:      Supported
16020 F:      drivers/pwm/pwm-tegra.c
16021
16022 TEGRA SERIAL DRIVER
16023 M:      Laxman Dewangan <ldewangan@nvidia.com>
16024 S:      Supported
16025 F:      drivers/tty/serial/serial-tegra.c
16026
16027 TEGRA SPI DRIVER
16028 M:      Laxman Dewangan <ldewangan@nvidia.com>
16029 S:      Supported
16030 F:      drivers/spi/spi-tegra*
16031
16032 TEGRA XUSB PADCTL DRIVER
16033 M:      JC Kuo <jckuo@nvidia.com>
16034 S:      Supported
16035 F:      drivers/phy/tegra/xusb*
16036
16037 TEHUTI ETHERNET DRIVER
16038 M:      Andy Gospodarek <andy@greyhouse.net>
16039 L:      netdev@vger.kernel.org
16040 S:      Supported
16041 F:      drivers/net/ethernet/tehuti/*
16042
16043 Telecom Clock Driver for MCPL0010
16044 M:      Mark Gross <mark.gross@intel.com>
16045 S:      Supported
16046 F:      drivers/char/tlclk.c
16047
16048 TENSILICA XTENSA PORT (xtensa)
16049 M:      Chris Zankel <chris@zankel.net>
16050 M:      Max Filippov <jcmvbkbc@gmail.com>
16051 L:      linux-xtensa@linux-xtensa.org
16052 T:      git git://github.com/czankel/xtensa-linux.git
16053 S:      Maintained
16054 F:      arch/xtensa/
16055 F:      drivers/irqchip/irq-xtensa-*
16056
16057 Texas Instruments' System Control Interface (TISCI) Protocol Driver
16058 M:      Nishanth Menon <nm@ti.com>
16059 M:      Tero Kristo <t-kristo@ti.com>
16060 M:      Santosh Shilimkar <ssantosh@kernel.org>
16061 L:      linux-arm-kernel@lists.infradead.org
16062 S:      Maintained
16063 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
16064 F:      drivers/firmware/ti_sci*
16065 F:      include/linux/soc/ti/ti_sci_protocol.h
16066 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
16067 F:      drivers/soc/ti/ti_sci_pm_domains.c
16068 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
16069 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
16070 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
16071 F:      drivers/clk/keystone/sci-clk.c
16072 F:      drivers/reset/reset-ti-sci.c
16073 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.txt
16074 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.txt
16075 F:      drivers/irqchip/irq-ti-sci-intr.c
16076 F:      drivers/irqchip/irq-ti-sci-inta.c
16077 F:      include/linux/soc/ti/ti_sci_inta_msi.h
16078 F:      drivers/soc/ti/ti_sci_inta_msi.c
16079
16080 Texas Instruments ASoC drivers
16081 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
16082 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16083 S:      Maintained
16084 F:      sound/soc/ti/
16085
16086 Texas Instruments' DAC7612 DAC Driver
16087 M:      Ricardo Ribalda <ricardo@ribalda.com>
16088 L:      linux-iio@vger.kernel.org
16089 S:      Supported
16090 F:      drivers/iio/dac/ti-dac7612.c
16091 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
16092
16093 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
16094 M:      Hans Verkuil <hverkuil@xs4all.nl>
16095 L:      linux-media@vger.kernel.org
16096 T:      git git://linuxtv.org/media_tree.git
16097 W:      https://linuxtv.org
16098 S:      Maintained
16099 F:      drivers/media/radio/radio-raremono.c
16100
16101 THERMAL
16102 M:      Zhang Rui <rui.zhang@intel.com>
16103 M:      Eduardo Valentin <edubezval@gmail.com>
16104 R:      Daniel Lezcano <daniel.lezcano@linaro.org>
16105 R:      Amit Kucheria <amit.kucheria@verdurent.com>
16106 L:      linux-pm@vger.kernel.org
16107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
16108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
16109 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16110 S:      Supported
16111 F:      drivers/thermal/
16112 F:      include/linux/thermal.h
16113 F:      include/uapi/linux/thermal.h
16114 F:      include/linux/cpu_cooling.h
16115 F:      Documentation/devicetree/bindings/thermal/
16116
16117 THERMAL/CPU_COOLING
16118 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
16119 M:      Viresh Kumar <viresh.kumar@linaro.org>
16120 M:      Javi Merino <javi.merino@kernel.org>
16121 L:      linux-pm@vger.kernel.org
16122 S:      Supported
16123 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
16124 F:      drivers/thermal/cpu_cooling.c
16125 F:      include/linux/cpu_cooling.h
16126
16127 THINKPAD ACPI EXTRAS DRIVER
16128 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
16129 L:      ibm-acpi-devel@lists.sourceforge.net
16130 L:      platform-driver-x86@vger.kernel.org
16131 W:      http://ibm-acpi.sourceforge.net
16132 W:      http://thinkwiki.org/wiki/Ibm-acpi
16133 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
16134 S:      Maintained
16135 F:      drivers/platform/x86/thinkpad_acpi.c
16136
16137 THUNDERBOLT DRIVER
16138 M:      Andreas Noever <andreas.noever@gmail.com>
16139 M:      Michael Jamet <michael.jamet@intel.com>
16140 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16141 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
16143 S:      Maintained
16144 F:      Documentation/admin-guide/thunderbolt.rst
16145 F:      drivers/thunderbolt/
16146 F:      include/linux/thunderbolt.h
16147
16148 THUNDERBOLT NETWORK DRIVER
16149 M:      Michael Jamet <michael.jamet@intel.com>
16150 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16151 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16152 L:      netdev@vger.kernel.org
16153 S:      Maintained
16154 F:      drivers/net/thunderbolt.c
16155
16156 THUNDERX GPIO DRIVER
16157 M:      David Daney <david.daney@cavium.com>
16158 S:      Maintained
16159 F:      drivers/gpio/gpio-thunderx.c
16160
16161 TI AM437X VPFE DRIVER
16162 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
16163 L:      linux-media@vger.kernel.org
16164 W:      https://linuxtv.org
16165 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16166 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16167 S:      Maintained
16168 F:      drivers/media/platform/am437x/
16169
16170 TI BANDGAP AND THERMAL DRIVER
16171 M:      Eduardo Valentin <edubezval@gmail.com>
16172 M:      Keerthy <j-keerthy@ti.com>
16173 L:      linux-pm@vger.kernel.org
16174 L:      linux-omap@vger.kernel.org
16175 S:      Maintained
16176 F:      drivers/thermal/ti-soc-thermal/
16177
16178 TI BQ27XXX POWER SUPPLY DRIVER
16179 R:      Andrew F. Davis <afd@ti.com>
16180 F:      include/linux/power/bq27xxx_battery.h
16181 F:      drivers/power/supply/bq27xxx_battery.c
16182 F:      drivers/power/supply/bq27xxx_battery_i2c.c
16183
16184 TI CDCE706 CLOCK DRIVER
16185 M:      Max Filippov <jcmvbkbc@gmail.com>
16186 S:      Maintained
16187 F:      drivers/clk/clk-cdce706.c
16188
16189 TI CLOCK DRIVER
16190 M:      Tero Kristo <t-kristo@ti.com>
16191 L:      linux-omap@vger.kernel.org
16192 S:      Maintained
16193 F:      drivers/clk/ti/
16194 F:      include/linux/clk/ti.h
16195
16196 TI DAVINCI MACHINE SUPPORT
16197 M:      Sekhar Nori <nsekhar@ti.com>
16198 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
16199 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
16201 S:      Supported
16202 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
16203 F:      arch/arm/mach-davinci/
16204 F:      drivers/i2c/busses/i2c-davinci.c
16205 F:      arch/arm/boot/dts/da850*
16206
16207 TI DAVINCI SERIES CLOCK DRIVER
16208 M:      David Lechner <david@lechnology.com>
16209 R:      Sekhar Nori <nsekhar@ti.com>
16210 S:      Maintained
16211 F:      Documentation/devicetree/bindings/clock/ti/davinci/
16212 F:      drivers/clk/davinci/
16213
16214 TI DAVINCI SERIES GPIO DRIVER
16215 M:      Keerthy <j-keerthy@ti.com>
16216 L:      linux-gpio@vger.kernel.org
16217 S:      Maintained
16218 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
16219 F:      drivers/gpio/gpio-davinci.c
16220
16221 TI DAVINCI SERIES MEDIA DRIVER
16222 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
16223 L:      linux-media@vger.kernel.org
16224 W:      https://linuxtv.org
16225 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16226 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16227 S:      Maintained
16228 F:      drivers/media/platform/davinci/
16229 F:      include/media/davinci/
16230
16231 TI ETHERNET SWITCH DRIVER (CPSW)
16232 R:      Grygorii Strashko <grygorii.strashko@ti.com>
16233 L:      linux-omap@vger.kernel.org
16234 L:      netdev@vger.kernel.org
16235 S:      Maintained
16236 F:      drivers/net/ethernet/ti/cpsw*
16237 F:      drivers/net/ethernet/ti/davinci*
16238
16239 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
16240 M:      Alex Dubov <oakad@yahoo.com>
16241 S:      Maintained
16242 W:      http://tifmxx.berlios.de/
16243 F:      drivers/memstick/host/tifm_ms.c
16244 F:      drivers/misc/tifm*
16245 F:      drivers/mmc/host/tifm_sd.c
16246 F:      include/linux/tifm.h
16247
16248 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
16249 M:      Santosh Shilimkar <ssantosh@kernel.org>
16250 L:      linux-kernel@vger.kernel.org
16251 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16252 S:      Maintained
16253 F:      drivers/soc/ti/*
16254 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
16255
16256 TI LM49xxx FAMILY ASoC CODEC DRIVERS
16257 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
16258 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
16259 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16260 S:      Maintained
16261 F:      sound/soc/codecs/lm49453*
16262 F:      sound/soc/codecs/isabelle*
16263
16264 TI LP855x BACKLIGHT DRIVER
16265 M:      Milo Kim <milo.kim@ti.com>
16266 S:      Maintained
16267 F:      Documentation/driver-api/backlight/lp855x-driver.rst
16268 F:      drivers/video/backlight/lp855x_bl.c
16269 F:      include/linux/platform_data/lp855x.h
16270
16271 TI LP8727 CHARGER DRIVER
16272 M:      Milo Kim <milo.kim@ti.com>
16273 S:      Maintained
16274 F:      drivers/power/supply/lp8727_charger.c
16275 F:      include/linux/platform_data/lp8727.h
16276
16277 TI LP8788 MFD DRIVER
16278 M:      Milo Kim <milo.kim@ti.com>
16279 S:      Maintained
16280 F:      drivers/iio/adc/lp8788_adc.c
16281 F:      drivers/leds/leds-lp8788.c
16282 F:      drivers/mfd/lp8788*.c
16283 F:      drivers/power/supply/lp8788-charger.c
16284 F:      drivers/regulator/lp8788-*.c
16285 F:      include/linux/mfd/lp8788*.h
16286
16287 TI NETCP ETHERNET DRIVER
16288 M:      Wingman Kwok <w-kwok2@ti.com>
16289 M:      Murali Karicheri <m-karicheri2@ti.com>
16290 L:      netdev@vger.kernel.org
16291 S:      Maintained
16292 F:      drivers/net/ethernet/ti/netcp*
16293
16294 TI PCM3060 ASoC CODEC DRIVER
16295 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
16296 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16297 S:      Maintained
16298 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
16299 F:      sound/soc/codecs/pcm3060*
16300
16301 TI TAS571X FAMILY ASoC CODEC DRIVER
16302 M:      Kevin Cernekee <cernekee@chromium.org>
16303 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16304 S:      Odd Fixes
16305 F:      sound/soc/codecs/tas571x*
16306
16307 TI TRF7970A NFC DRIVER
16308 M:      Mark Greer <mgreer@animalcreek.com>
16309 L:      linux-wireless@vger.kernel.org
16310 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
16311 S:      Supported
16312 F:      drivers/nfc/trf7970a.c
16313 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
16314
16315 TI TWL4030 SERIES SOC CODEC DRIVER
16316 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
16317 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16318 S:      Maintained
16319 F:      sound/soc/codecs/twl4030*
16320
16321 TI VPE/CAL DRIVERS
16322 M:      Benoit Parrot <bparrot@ti.com>
16323 L:      linux-media@vger.kernel.org
16324 W:      http://linuxtv.org/
16325 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16326 S:      Maintained
16327 F:      drivers/media/platform/ti-vpe/
16328
16329 TI WILINK WIRELESS DRIVERS
16330 L:      linux-wireless@vger.kernel.org
16331 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
16332 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
16333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
16334 S:      Orphan
16335 F:      drivers/net/wireless/ti/
16336 F:      include/linux/wl12xx.h
16337
16338 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
16339 M:      John Stultz <john.stultz@linaro.org>
16340 M:      Thomas Gleixner <tglx@linutronix.de>
16341 R:      Stephen Boyd <sboyd@kernel.org>
16342 L:      linux-kernel@vger.kernel.org
16343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16344 S:      Supported
16345 F:      include/linux/clocksource.h
16346 F:      include/linux/time.h
16347 F:      include/linux/timex.h
16348 F:      include/uapi/linux/time.h
16349 F:      include/uapi/linux/timex.h
16350 F:      kernel/time/clocksource.c
16351 F:      kernel/time/time*.c
16352 F:      kernel/time/alarmtimer.c
16353 F:      kernel/time/ntp.c
16354 F:      tools/testing/selftests/timers/
16355
16356 TIPC NETWORK LAYER
16357 M:      Jon Maloy <jon.maloy@ericsson.com>
16358 M:      Ying Xue <ying.xue@windriver.com>
16359 L:      netdev@vger.kernel.org (core kernel code)
16360 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
16361 W:      http://tipc.sourceforge.net/
16362 S:      Maintained
16363 F:      include/uapi/linux/tipc*.h
16364 F:      net/tipc/
16365
16366 TLAN NETWORK DRIVER
16367 M:      Samuel Chessman <chessman@tux.org>
16368 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
16369 W:      http://sourceforge.net/projects/tlan/
16370 S:      Maintained
16371 F:      Documentation/networking/device_drivers/ti/tlan.txt
16372 F:      drivers/net/ethernet/ti/tlan.*
16373
16374 TM6000 VIDEO4LINUX DRIVER
16375 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16376 L:      linux-media@vger.kernel.org
16377 W:      https://linuxtv.org
16378 T:      git git://linuxtv.org/media_tree.git
16379 S:      Odd fixes
16380 F:      drivers/media/usb/tm6000/
16381 F:      Documentation/media/v4l-drivers/tm6000*
16382
16383 TMIO/SDHI MMC DRIVER
16384 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16385 L:      linux-mmc@vger.kernel.org
16386 S:      Supported
16387 F:      drivers/mmc/host/tmio_mmc*
16388 F:      drivers/mmc/host/renesas_sdhi*
16389 F:      include/linux/mfd/tmio.h
16390
16391 TMP401 HARDWARE MONITOR DRIVER
16392 M:      Guenter Roeck <linux@roeck-us.net>
16393 L:      linux-hwmon@vger.kernel.org
16394 S:      Maintained
16395 F:      Documentation/hwmon/tmp401.rst
16396 F:      drivers/hwmon/tmp401.c
16397
16398 TMPFS (SHMEM FILESYSTEM)
16399 M:      Hugh Dickins <hughd@google.com>
16400 L:      linux-mm@kvack.org
16401 S:      Maintained
16402 F:      include/linux/shmem_fs.h
16403 F:      mm/shmem.c
16404
16405 TOMOYO SECURITY MODULE
16406 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
16407 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
16408 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
16409 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
16410 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
16411 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
16412 W:      https://tomoyo.osdn.jp/
16413 S:      Maintained
16414 F:      security/tomoyo/
16415
16416 TOPSTAR LAPTOP EXTRAS DRIVER
16417 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
16418 L:      platform-driver-x86@vger.kernel.org
16419 S:      Maintained
16420 F:      drivers/platform/x86/topstar-laptop.c
16421
16422 TORTURE-TEST MODULES
16423 M:      Davidlohr Bueso <dave@stgolabs.net>
16424 M:      "Paul E. McKenney" <paulmck@kernel.org>
16425 M:      Josh Triplett <josh@joshtriplett.org>
16426 L:      linux-kernel@vger.kernel.org
16427 S:      Supported
16428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16429 F:      Documentation/RCU/torture.txt
16430 F:      kernel/torture.c
16431 F:      kernel/rcu/rcutorture.c
16432 F:      kernel/rcu/rcuperf.c
16433 F:      kernel/locking/locktorture.c
16434
16435 TOSHIBA ACPI EXTRAS DRIVER
16436 M:      Azael Avalos <coproscefalo@gmail.com>
16437 L:      platform-driver-x86@vger.kernel.org
16438 S:      Maintained
16439 F:      drivers/platform/x86/toshiba_acpi.c
16440
16441 TOSHIBA BLUETOOTH DRIVER
16442 M:      Azael Avalos <coproscefalo@gmail.com>
16443 L:      platform-driver-x86@vger.kernel.org
16444 S:      Maintained
16445 F:      drivers/platform/x86/toshiba_bluetooth.c
16446
16447 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
16448 M:      Azael Avalos <coproscefalo@gmail.com>
16449 L:      platform-driver-x86@vger.kernel.org
16450 S:      Maintained
16451 F:      drivers/platform/x86/toshiba_haps.c
16452
16453 TOSHIBA SMM DRIVER
16454 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
16455 W:      http://www.buzzard.org.uk/toshiba/
16456 S:      Maintained
16457 F:      drivers/char/toshiba.c
16458 F:      include/linux/toshiba.h
16459 F:      include/uapi/linux/toshiba.h
16460
16461 TOSHIBA TC358743 DRIVER
16462 M:      Mats Randgaard <matrandg@cisco.com>
16463 L:      linux-media@vger.kernel.org
16464 S:      Maintained
16465 F:      drivers/media/i2c/tc358743*
16466 F:      include/media/i2c/tc358743.h
16467
16468 TOSHIBA WMI HOTKEYS DRIVER
16469 M:      Azael Avalos <coproscefalo@gmail.com>
16470 L:      platform-driver-x86@vger.kernel.org
16471 S:      Maintained
16472 F:      drivers/platform/x86/toshiba-wmi.c
16473
16474 TPM DEVICE DRIVER
16475 M:      Peter Huewe <peterhuewe@gmx.de>
16476 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
16477 R:      Jason Gunthorpe <jgg@ziepe.ca>
16478 L:      linux-integrity@vger.kernel.org
16479 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
16480 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
16481 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
16482 S:      Maintained
16483 F:      drivers/char/tpm/
16484
16485 TRACING
16486 M:      Steven Rostedt <rostedt@goodmis.org>
16487 M:      Ingo Molnar <mingo@redhat.com>
16488 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
16489 S:      Maintained
16490 F:      Documentation/trace/ftrace.rst
16491 F:      arch/*/*/*/ftrace.h
16492 F:      arch/*/kernel/ftrace.c
16493 F:      include/*/ftrace.h
16494 F:      include/linux/trace*.h
16495 F:      include/trace/
16496 F:      kernel/trace/
16497 F:      tools/testing/selftests/ftrace/
16498
16499 TRACING MMIO ACCESSES (MMIOTRACE)
16500 M:      Steven Rostedt <rostedt@goodmis.org>
16501 M:      Ingo Molnar <mingo@kernel.org>
16502 R:      Karol Herbst <karolherbst@gmail.com>
16503 R:      Pekka Paalanen <ppaalanen@gmail.com>
16504 S:      Maintained
16505 L:      linux-kernel@vger.kernel.org
16506 L:      nouveau@lists.freedesktop.org
16507 F:      kernel/trace/trace_mmiotrace.c
16508 F:      include/linux/mmiotrace.h
16509 F:      arch/x86/mm/kmmio.c
16510 F:      arch/x86/mm/mmio-mod.c
16511 F:      arch/x86/mm/testmmiotrace.c
16512
16513 TRIVIAL PATCHES
16514 M:      Jiri Kosina <trivial@kernel.org>
16515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
16516 S:      Maintained
16517 K:      ^Subject:.*(?i)trivial
16518
16519 TEMPO SEMICONDUCTOR DRIVERS
16520 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
16521 S:      Maintained
16522 F:      sound/soc/codecs/tscs*.c
16523 F:      sound/soc/codecs/tscs*.h
16524 F:      Documentation/devicetree/bindings/sound/tscs*.txt
16525
16526 TTY LAYER
16527 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16528 M:      Jiri Slaby <jslaby@suse.com>
16529 S:      Supported
16530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
16531 F:      Documentation/driver-api/serial/
16532 F:      drivers/tty/
16533 F:      drivers/tty/serial/serial_core.c
16534 F:      include/linux/serial_core.h
16535 F:      include/linux/serial.h
16536 F:      include/linux/tty.h
16537 F:      include/uapi/linux/serial_core.h
16538 F:      include/uapi/linux/serial.h
16539 F:      include/uapi/linux/tty.h
16540
16541 TUA9001 MEDIA DRIVER
16542 M:      Antti Palosaari <crope@iki.fi>
16543 L:      linux-media@vger.kernel.org
16544 W:      https://linuxtv.org
16545 W:      http://palosaari.fi/linux/
16546 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16547 T:      git git://linuxtv.org/anttip/media_tree.git
16548 S:      Maintained
16549 F:      drivers/media/tuners/tua9001*
16550
16551 TULIP NETWORK DRIVERS
16552 L:      netdev@vger.kernel.org
16553 L:      linux-parisc@vger.kernel.org
16554 S:      Orphan
16555 F:      drivers/net/ethernet/dec/tulip/
16556
16557 TUN/TAP driver
16558 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
16559 W:      http://vtun.sourceforge.net/tun
16560 S:      Maintained
16561 F:      Documentation/networking/tuntap.txt
16562 F:      arch/um/os-Linux/drivers/
16563
16564 TURBOCHANNEL SUBSYSTEM
16565 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
16566 M:      Ralf Baechle <ralf@linux-mips.org>
16567 L:      linux-mips@vger.kernel.org
16568 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
16569 S:      Maintained
16570 F:      drivers/tc/
16571 F:      include/linux/tc.h
16572
16573 TURBOSTAT UTILITY
16574 M:      "Len Brown" <lenb@kernel.org>
16575 L:      linux-pm@vger.kernel.org
16576 B:      https://bugzilla.kernel.org
16577 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16578 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
16579 S:      Supported
16580 F:      tools/power/x86/turbostat/
16581
16582 TW5864 VIDEO4LINUX DRIVER
16583 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
16584 M:      Anton Sviridenko <anton@corp.bluecherry.net>
16585 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
16586 M:      Andrey Utkin <andrey_utkin@fastmail.com>
16587 L:      linux-media@vger.kernel.org
16588 S:      Supported
16589 F:      drivers/media/pci/tw5864/
16590
16591 TW68 VIDEO4LINUX DRIVER
16592 M:      Hans Verkuil <hverkuil@xs4all.nl>
16593 L:      linux-media@vger.kernel.org
16594 T:      git git://linuxtv.org/media_tree.git
16595 W:      https://linuxtv.org
16596 S:      Odd Fixes
16597 F:      drivers/media/pci/tw68/
16598
16599 TW686X VIDEO4LINUX DRIVER
16600 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16601 L:      linux-media@vger.kernel.org
16602 T:      git git://linuxtv.org/media_tree.git
16603 W:      http://linuxtv.org
16604 S:      Maintained
16605 F:      drivers/media/pci/tw686x/
16606
16607 UBI FILE SYSTEM (UBIFS)
16608 M:      Richard Weinberger <richard@nod.at>
16609 M:      Artem Bityutskiy <dedekind1@gmail.com>
16610 M:      Adrian Hunter <adrian.hunter@intel.com>
16611 L:      linux-mtd@lists.infradead.org
16612 T:      git git://git.infradead.org/ubifs-2.6.git
16613 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
16614 S:      Supported
16615 F:      Documentation/filesystems/ubifs.txt
16616 F:      fs/ubifs/
16617
16618 UCLINUX (M68KNOMMU AND COLDFIRE)
16619 M:      Greg Ungerer <gerg@linux-m68k.org>
16620 W:      http://www.linux-m68k.org/
16621 W:      http://www.uclinux.org/
16622 L:      linux-m68k@lists.linux-m68k.org
16623 L:      uclinux-dev@uclinux.org  (subscribers-only)
16624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
16625 S:      Maintained
16626 F:      arch/m68k/coldfire/
16627 F:      arch/m68k/68*/
16628 F:      arch/m68k/*/*_no.*
16629 F:      arch/m68k/include/asm/*_no.*
16630
16631 UDF FILESYSTEM
16632 M:      Jan Kara <jack@suse.com>
16633 S:      Maintained
16634 F:      Documentation/filesystems/udf.txt
16635 F:      fs/udf/
16636
16637 UDRAW TABLET
16638 M:      Bastien Nocera <hadess@hadess.net>
16639 L:      linux-input@vger.kernel.org
16640 S:      Maintained
16641 F:      drivers/hid/hid-udraw-ps3.c
16642
16643 UFS FILESYSTEM
16644 M:      Evgeniy Dushistov <dushistov@mail.ru>
16645 S:      Maintained
16646 F:      Documentation/admin-guide/ufs.rst
16647 F:      fs/ufs/
16648
16649 UHID USERSPACE HID IO DRIVER:
16650 M:      David Herrmann <dh.herrmann@googlemail.com>
16651 L:      linux-input@vger.kernel.org
16652 S:      Maintained
16653 F:      drivers/hid/uhid.c
16654 F:      include/uapi/linux/uhid.h
16655
16656 ULPI BUS
16657 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
16658 L:      linux-usb@vger.kernel.org
16659 S:      Maintained
16660 F:      drivers/usb/common/ulpi.c
16661 F:      include/linux/ulpi/
16662
16663 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
16664 L:      devel@driverdev.osuosl.org
16665 S:      Obsolete
16666 F:      drivers/staging/uwb/
16667
16668 UNICODE SUBSYSTEM:
16669 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
16670 L:      linux-fsdevel@vger.kernel.org
16671 S:      Supported
16672 F:      fs/unicode/
16673
16674 UNICORE32 ARCHITECTURE:
16675 M:      Guan Xuetao <gxt@pku.edu.cn>
16676 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
16677 S:      Maintained
16678 T:      git git://github.com/gxt/linux.git
16679 F:      arch/unicore32/
16680
16681 UNIFDEF
16682 M:      Tony Finch <dot@dotat.at>
16683 W:      http://dotat.at/prog/unifdef
16684 S:      Maintained
16685 F:      scripts/unifdef.c
16686
16687 UNIFORM CDROM DRIVER
16688 M:      Jens Axboe <axboe@kernel.dk>
16689 W:      http://www.kernel.dk
16690 S:      Maintained
16691 F:      Documentation/cdrom/
16692 F:      drivers/cdrom/cdrom.c
16693 F:      include/linux/cdrom.h
16694 F:      include/uapi/linux/cdrom.h
16695
16696 UNISYS S-PAR DRIVERS
16697 M:      David Kershner <david.kershner@unisys.com>
16698 L:      sparmaintainer@unisys.com (Unisys internal)
16699 S:      Supported
16700 F:      include/linux/visorbus.h
16701 F:      drivers/visorbus/
16702 F:      drivers/staging/unisys/
16703
16704 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
16705 R:      Alim Akhtar <alim.akhtar@samsung.com>
16706 R:      Avri Altman <avri.altman@wdc.com>
16707 R:      Pedro Sousa <pedrom.sousa@synopsys.com>
16708 L:      linux-scsi@vger.kernel.org
16709 S:      Supported
16710 F:      Documentation/scsi/ufs.txt
16711 F:      drivers/scsi/ufs/
16712
16713 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
16714 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
16715 L:      linux-scsi@vger.kernel.org
16716 S:      Supported
16717 F:      drivers/scsi/ufs/*dwc*
16718
16719 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
16720 M:      Stanley Chu <stanley.chu@mediatek.com>
16721 L:      linux-scsi@vger.kernel.org
16722 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16723 S:      Maintained
16724 F:      drivers/scsi/ufs/ufs-mediatek*
16725
16726 UNSORTED BLOCK IMAGES (UBI)
16727 M:      Artem Bityutskiy <dedekind1@gmail.com>
16728 M:      Richard Weinberger <richard@nod.at>
16729 W:      http://www.linux-mtd.infradead.org/
16730 L:      linux-mtd@lists.infradead.org
16731 T:      git git://git.infradead.org/ubifs-2.6.git
16732 S:      Supported
16733 F:      drivers/mtd/ubi/
16734 F:      include/linux/mtd/ubi.h
16735 F:      include/uapi/mtd/ubi-user.h
16736
16737 USB "USBNET" DRIVER FRAMEWORK
16738 M:      Oliver Neukum <oneukum@suse.com>
16739 L:      netdev@vger.kernel.org
16740 W:      http://www.linux-usb.org/usbnet
16741 S:      Maintained
16742 F:      drivers/net/usb/usbnet.c
16743 F:      include/linux/usb/usbnet.h
16744
16745 USB ACM DRIVER
16746 M:      Oliver Neukum <oneukum@suse.com>
16747 L:      linux-usb@vger.kernel.org
16748 S:      Maintained
16749 F:      Documentation/usb/acm.rst
16750 F:      drivers/usb/class/cdc-acm.*
16751
16752 USB AR5523 WIRELESS DRIVER
16753 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
16754 L:      linux-wireless@vger.kernel.org
16755 S:      Maintained
16756 F:      drivers/net/wireless/ath/ar5523/
16757
16758 USB ATTACHED SCSI
16759 M:      Oliver Neukum <oneukum@suse.com>
16760 L:      linux-usb@vger.kernel.org
16761 L:      linux-scsi@vger.kernel.org
16762 S:      Maintained
16763 F:      drivers/usb/storage/uas.c
16764
16765 USB CDC ETHERNET DRIVER
16766 M:      Oliver Neukum <oliver@neukum.org>
16767 L:      linux-usb@vger.kernel.org
16768 S:      Maintained
16769 F:      drivers/net/usb/cdc_*.c
16770 F:      include/uapi/linux/usb/cdc.h
16771
16772 USB CHAOSKEY DRIVER
16773 M:      Keith Packard <keithp@keithp.com>
16774 L:      linux-usb@vger.kernel.org
16775 S:      Maintained
16776 F:      drivers/usb/misc/chaoskey.c
16777
16778 USB CYPRESS C67X00 DRIVER
16779 M:      Peter Korsgaard <jacmet@sunsite.dk>
16780 L:      linux-usb@vger.kernel.org
16781 S:      Maintained
16782 F:      drivers/usb/c67x00/
16783
16784 USB DAVICOM DM9601 DRIVER
16785 M:      Peter Korsgaard <jacmet@sunsite.dk>
16786 L:      netdev@vger.kernel.org
16787 W:      http://www.linux-usb.org/usbnet
16788 S:      Maintained
16789 F:      drivers/net/usb/dm9601.c
16790
16791 USB EHCI DRIVER
16792 M:      Alan Stern <stern@rowland.harvard.edu>
16793 L:      linux-usb@vger.kernel.org
16794 S:      Maintained
16795 F:      Documentation/usb/ehci.rst
16796 F:      drivers/usb/host/ehci*
16797
16798 USB GADGET/PERIPHERAL SUBSYSTEM
16799 M:      Felipe Balbi <balbi@kernel.org>
16800 L:      linux-usb@vger.kernel.org
16801 W:      http://www.linux-usb.org/gadget
16802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
16803 S:      Maintained
16804 F:      drivers/usb/gadget/
16805 F:      include/linux/usb/gadget*
16806
16807 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
16808 M:      Jiri Kosina <jikos@kernel.org>
16809 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
16810 L:      linux-usb@vger.kernel.org
16811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
16812 S:      Maintained
16813 F:      Documentation/hid/hiddev.rst
16814 F:      drivers/hid/usbhid/
16815
16816 USB INTEL XHCI ROLE MUX DRIVER
16817 M:      Hans de Goede <hdegoede@redhat.com>
16818 L:      linux-usb@vger.kernel.org
16819 S:      Maintained
16820 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
16821
16822 USB IP DRIVER FOR HISILICON KIRIN
16823 M:      Yu Chen <chenyu56@huawei.com>
16824 M:      Binghui Wang <wangbinghui@hisilicon.com>
16825 L:      linux-usb@vger.kernel.org
16826 S:      Maintained
16827 F:      Documentation/devicetree/bindings/phy/phy-hi3660-usb3.txt
16828 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
16829
16830 USB ISP116X DRIVER
16831 M:      Olav Kongas <ok@artecdesign.ee>
16832 L:      linux-usb@vger.kernel.org
16833 S:      Maintained
16834 F:      drivers/usb/host/isp116x*
16835 F:      include/linux/usb/isp116x.h
16836
16837 USB LAN78XX ETHERNET DRIVER
16838 M:      Woojung Huh <woojung.huh@microchip.com>
16839 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
16840 L:      netdev@vger.kernel.org
16841 S:      Maintained
16842 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
16843 F:      drivers/net/usb/lan78xx.*
16844 F:      include/dt-bindings/net/microchip-lan78xx.h
16845
16846 USB MASS STORAGE DRIVER
16847 M:      Alan Stern <stern@rowland.harvard.edu>
16848 L:      linux-usb@vger.kernel.org
16849 L:      usb-storage@lists.one-eyed-alien.net
16850 S:      Maintained
16851 F:      drivers/usb/storage/
16852
16853 USB MIDI DRIVER
16854 M:      Clemens Ladisch <clemens@ladisch.de>
16855 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16857 S:      Maintained
16858 F:      sound/usb/midi.*
16859
16860 USB NETWORKING DRIVERS
16861 L:      linux-usb@vger.kernel.org
16862 S:      Odd Fixes
16863 F:      drivers/net/usb/
16864
16865 USB OHCI DRIVER
16866 M:      Alan Stern <stern@rowland.harvard.edu>
16867 L:      linux-usb@vger.kernel.org
16868 S:      Maintained
16869 F:      Documentation/usb/ohci.rst
16870 F:      drivers/usb/host/ohci*
16871
16872 USB OTG FSM (Finite State Machine)
16873 M:      Peter Chen <Peter.Chen@nxp.com>
16874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
16875 L:      linux-usb@vger.kernel.org
16876 S:      Maintained
16877 F:      drivers/usb/common/usb-otg-fsm.c
16878
16879 USB OVER IP DRIVER
16880 M:      Valentina Manea <valentina.manea.m@gmail.com>
16881 M:      Shuah Khan <shuah@kernel.org>
16882 M:      Shuah Khan <skhan@linuxfoundation.org>
16883 L:      linux-usb@vger.kernel.org
16884 S:      Maintained
16885 F:      Documentation/usb/usbip_protocol.rst
16886 F:      drivers/usb/usbip/
16887 F:      tools/usb/usbip/
16888 F:      tools/testing/selftests/drivers/usb/usbip/
16889
16890 USB PEGASUS DRIVER
16891 M:      Petko Manolov <petkan@nucleusys.com>
16892 L:      linux-usb@vger.kernel.org
16893 L:      netdev@vger.kernel.org
16894 T:      git git://github.com/petkan/pegasus.git
16895 W:      https://github.com/petkan/pegasus
16896 S:      Maintained
16897 F:      drivers/net/usb/pegasus.*
16898
16899 USB PHY LAYER
16900 M:      Felipe Balbi <balbi@kernel.org>
16901 L:      linux-usb@vger.kernel.org
16902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
16903 S:      Maintained
16904 F:      drivers/usb/phy/
16905
16906 USB PRINTER DRIVER (usblp)
16907 M:      Pete Zaitcev <zaitcev@redhat.com>
16908 L:      linux-usb@vger.kernel.org
16909 S:      Supported
16910 F:      drivers/usb/class/usblp.c
16911
16912 USB QMI WWAN NETWORK DRIVER
16913 M:      Bjørn Mork <bjorn@mork.no>
16914 L:      netdev@vger.kernel.org
16915 S:      Maintained
16916 F:      Documentation/ABI/testing/sysfs-class-net-qmi
16917 F:      drivers/net/usb/qmi_wwan.c
16918
16919 USB RTL8150 DRIVER
16920 M:      Petko Manolov <petkan@nucleusys.com>
16921 L:      linux-usb@vger.kernel.org
16922 L:      netdev@vger.kernel.org
16923 T:      git git://github.com/petkan/rtl8150.git
16924 W:      https://github.com/petkan/rtl8150
16925 S:      Maintained
16926 F:      drivers/net/usb/rtl8150.c
16927
16928 USB SERIAL SUBSYSTEM
16929 M:      Johan Hovold <johan@kernel.org>
16930 L:      linux-usb@vger.kernel.org
16931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
16932 S:      Maintained
16933 F:      Documentation/usb/usb-serial.rst
16934 F:      drivers/usb/serial/
16935 F:      include/linux/usb/serial.h
16936
16937 USB SMSC75XX ETHERNET DRIVER
16938 M:      Steve Glendinning <steve.glendinning@shawell.net>
16939 L:      netdev@vger.kernel.org
16940 S:      Maintained
16941 F:      drivers/net/usb/smsc75xx.*
16942
16943 USB SMSC95XX ETHERNET DRIVER
16944 M:      Steve Glendinning <steve.glendinning@shawell.net>
16945 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
16946 L:      netdev@vger.kernel.org
16947 S:      Maintained
16948 F:      drivers/net/usb/smsc95xx.*
16949
16950 USB SUBSYSTEM
16951 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16952 L:      linux-usb@vger.kernel.org
16953 W:      http://www.linux-usb.org
16954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
16955 S:      Supported
16956 F:      Documentation/devicetree/bindings/usb/
16957 F:      Documentation/usb/
16958 F:      drivers/usb/
16959 F:      include/linux/usb.h
16960 F:      include/linux/usb/
16961
16962 USB TYPEC PI3USB30532 MUX DRIVER
16963 M:      Hans de Goede <hdegoede@redhat.com>
16964 L:      linux-usb@vger.kernel.org
16965 S:      Maintained
16966 F:      drivers/usb/typec/mux/pi3usb30532.c
16967
16968 USB TYPEC CLASS
16969 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
16970 L:      linux-usb@vger.kernel.org
16971 S:      Maintained
16972 F:      Documentation/ABI/testing/sysfs-class-typec
16973 F:      Documentation/driver-api/usb/typec.rst
16974 F:      drivers/usb/typec/
16975 F:      include/linux/usb/typec.h
16976
16977 USB TYPEC BUS FOR ALTERNATE MODES
16978 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
16979 L:      linux-usb@vger.kernel.org
16980 S:      Maintained
16981 F:      Documentation/ABI/testing/sysfs-bus-typec
16982 F:      Documentation/driver-api/usb/typec_bus.rst
16983 F:      drivers/usb/typec/altmodes/
16984 F:      include/linux/usb/typec_altmode.h
16985
16986 USB TYPEC PORT CONTROLLER DRIVERS
16987 M:      Guenter Roeck <linux@roeck-us.net>
16988 L:      linux-usb@vger.kernel.org
16989 S:      Maintained
16990 F:      drivers/usb/typec/tcpm/
16991
16992 USB UHCI DRIVER
16993 M:      Alan Stern <stern@rowland.harvard.edu>
16994 L:      linux-usb@vger.kernel.org
16995 S:      Maintained
16996 F:      drivers/usb/host/uhci*
16997
16998 USB VIDEO CLASS
16999 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17000 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
17001 L:      linux-media@vger.kernel.org
17002 T:      git git://linuxtv.org/media_tree.git
17003 W:      http://www.ideasonboard.org/uvc/
17004 S:      Maintained
17005 F:      drivers/media/usb/uvc/
17006 F:      include/uapi/linux/uvcvideo.h
17007
17008 USB VISION DRIVER
17009 M:      Hans Verkuil <hverkuil@xs4all.nl>
17010 L:      linux-media@vger.kernel.org
17011 T:      git git://linuxtv.org/media_tree.git
17012 W:      https://linuxtv.org
17013 S:      Odd Fixes
17014 F:      drivers/media/usb/usbvision/
17015
17016 USB WEBCAM GADGET
17017 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17018 L:      linux-usb@vger.kernel.org
17019 S:      Maintained
17020 F:      drivers/usb/gadget/function/*uvc*
17021 F:      drivers/usb/gadget/legacy/webcam.c
17022 F:      include/uapi/linux/usb/g_uvc.h
17023
17024 USB WIRELESS RNDIS DRIVER (rndis_wlan)
17025 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
17026 L:      linux-wireless@vger.kernel.org
17027 S:      Maintained
17028 F:      drivers/net/wireless/rndis_wlan.c
17029
17030 USB XHCI DRIVER
17031 M:      Mathias Nyman <mathias.nyman@intel.com>
17032 L:      linux-usb@vger.kernel.org
17033 S:      Supported
17034 F:      drivers/usb/host/xhci*
17035 F:      drivers/usb/host/pci-quirks*
17036
17037 USB ZD1201 DRIVER
17038 L:      linux-wireless@vger.kernel.org
17039 W:      http://linux-lc100020.sourceforge.net
17040 S:      Orphan
17041 F:      drivers/net/wireless/zydas/zd1201.*
17042
17043 USB ZR364XX DRIVER
17044 M:      Antoine Jacquet <royale@zerezo.com>
17045 L:      linux-usb@vger.kernel.org
17046 L:      linux-media@vger.kernel.org
17047 T:      git git://linuxtv.org/media_tree.git
17048 W:      http://royale.zerezo.com/zr364xx/
17049 S:      Maintained
17050 F:      Documentation/media/v4l-drivers/zr364xx*
17051 F:      drivers/media/usb/zr364xx/
17052
17053 USER-MODE LINUX (UML)
17054 M:      Jeff Dike <jdike@addtoit.com>
17055 M:      Richard Weinberger <richard@nod.at>
17056 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
17057 L:      linux-um@lists.infradead.org
17058 W:      http://user-mode-linux.sourceforge.net
17059 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
17060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
17061 S:      Maintained
17062 F:      Documentation/virt/uml/
17063 F:      arch/um/
17064 F:      arch/x86/um/
17065 F:      fs/hostfs/
17066
17067 USERSPACE COPYIN/COPYOUT (UIOVEC)
17068 M:      Alexander Viro <viro@zeniv.linux.org.uk>
17069 S:      Maintained
17070 F:      lib/iov_iter.c
17071 F:      include/linux/uio.h
17072
17073 USERSPACE DMA BUFFER DRIVER
17074 M:      Gerd Hoffmann <kraxel@redhat.com>
17075 S:      Maintained
17076 L:      dri-devel@lists.freedesktop.org
17077 F:      drivers/dma-buf/udmabuf.c
17078 F:      include/uapi/linux/udmabuf.h
17079 T:      git git://anongit.freedesktop.org/drm/drm-misc
17080
17081 USERSPACE I/O (UIO)
17082 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17083 S:      Maintained
17084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17085 F:      Documentation/driver-api/uio-howto.rst
17086 F:      drivers/uio/
17087 F:      include/linux/uio_driver.h
17088
17089 UTIL-LINUX PACKAGE
17090 M:      Karel Zak <kzak@redhat.com>
17091 L:      util-linux@vger.kernel.org
17092 W:      http://en.wikipedia.org/wiki/Util-linux
17093 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
17094 S:      Maintained
17095
17096 UUID HELPERS
17097 M:      Christoph Hellwig <hch@lst.de>
17098 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17099 L:      linux-kernel@vger.kernel.org
17100 T:      git git://git.infradead.org/users/hch/uuid.git
17101 F:      lib/uuid.c
17102 F:      lib/test_uuid.c
17103 F:      include/linux/uuid.h
17104 F:      include/uapi/linux/uuid.h
17105 S:      Maintained
17106
17107 UVESAFB DRIVER
17108 M:      Michal Januszewski <spock@gentoo.org>
17109 L:      linux-fbdev@vger.kernel.org
17110 W:      https://github.com/mjanusz/v86d
17111 S:      Maintained
17112 F:      Documentation/fb/uvesafb.rst
17113 F:      drivers/video/fbdev/uvesafb.*
17114
17115 VF610 NAND DRIVER
17116 M:      Stefan Agner <stefan@agner.ch>
17117 L:      linux-mtd@lists.infradead.org
17118 S:      Supported
17119 F:      drivers/mtd/nand/raw/vf610_nfc.c
17120
17121 VFAT/FAT/MSDOS FILESYSTEM
17122 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
17123 S:      Maintained
17124 F:      Documentation/filesystems/vfat.txt
17125 F:      fs/fat/
17126
17127 VFIO DRIVER
17128 M:      Alex Williamson <alex.williamson@redhat.com>
17129 R:      Cornelia Huck <cohuck@redhat.com>
17130 L:      kvm@vger.kernel.org
17131 T:      git git://github.com/awilliam/linux-vfio.git
17132 S:      Maintained
17133 F:      Documentation/driver-api/vfio.rst
17134 F:      drivers/vfio/
17135 F:      include/linux/vfio.h
17136 F:      include/uapi/linux/vfio.h
17137
17138 VFIO MEDIATED DEVICE DRIVERS
17139 M:      Kirti Wankhede <kwankhede@nvidia.com>
17140 L:      kvm@vger.kernel.org
17141 S:      Maintained
17142 F:      Documentation/driver-api/vfio-mediated-device.rst
17143 F:      drivers/vfio/mdev/
17144 F:      include/linux/mdev.h
17145 F:      samples/vfio-mdev/
17146
17147 VFIO PLATFORM DRIVER
17148 M:      Eric Auger <eric.auger@redhat.com>
17149 L:      kvm@vger.kernel.org
17150 S:      Maintained
17151 F:      drivers/vfio/platform/
17152
17153 VGA_SWITCHEROO
17154 R:      Lukas Wunner <lukas@wunner.de>
17155 S:      Maintained
17156 F:      Documentation/gpu/vga-switcheroo.rst
17157 F:      drivers/gpu/vga/vga_switcheroo.c
17158 F:      include/linux/vga_switcheroo.h
17159 T:      git git://anongit.freedesktop.org/drm/drm-misc
17160
17161 VIA RHINE NETWORK DRIVER
17162 S:      Orphan
17163 F:      drivers/net/ethernet/via/via-rhine.c
17164
17165 VIA SD/MMC CARD CONTROLLER DRIVER
17166 M:      Bruce Chang <brucechang@via.com.tw>
17167 M:      Harald Welte <HaraldWelte@viatech.com>
17168 S:      Maintained
17169 F:      drivers/mmc/host/via-sdmmc.c
17170
17171 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
17172 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
17173 L:      linux-fbdev@vger.kernel.org
17174 S:      Maintained
17175 F:      include/linux/via-core.h
17176 F:      include/linux/via-gpio.h
17177 F:      include/linux/via_i2c.h
17178 F:      drivers/video/fbdev/via/
17179
17180 VIA VELOCITY NETWORK DRIVER
17181 M:      Francois Romieu <romieu@fr.zoreil.com>
17182 L:      netdev@vger.kernel.org
17183 S:      Maintained
17184 F:      drivers/net/ethernet/via/via-velocity.*
17185
17186 VICODEC VIRTUAL CODEC DRIVER
17187 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
17188 L:      linux-media@vger.kernel.org
17189 T:      git git://linuxtv.org/media_tree.git
17190 W:      https://linuxtv.org
17191 S:      Maintained
17192 F:      drivers/media/platform/vicodec/*
17193
17194 VIDEO MULTIPLEXER DRIVER
17195 M:      Philipp Zabel <p.zabel@pengutronix.de>
17196 L:      linux-media@vger.kernel.org
17197 S:      Maintained
17198 F:      drivers/media/platform/video-mux.c
17199
17200 VIDEO I2C POLLING DRIVER
17201 M:      Matt Ranostay <matt.ranostay@konsulko.com>
17202 L:      linux-media@vger.kernel.org
17203 S:      Maintained
17204 F:      drivers/media/i2c/video-i2c.c
17205
17206 VIDEOBUF2 FRAMEWORK
17207 M:      Pawel Osciak <pawel@osciak.com>
17208 M:      Marek Szyprowski <m.szyprowski@samsung.com>
17209 M:      Kyungmin Park <kyungmin.park@samsung.com>
17210 R:      Tomasz Figa <tfiga@chromium.org>
17211 L:      linux-media@vger.kernel.org
17212 S:      Maintained
17213 F:      drivers/media/common/videobuf2/*
17214 F:      include/media/videobuf2-*
17215
17216 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
17217 M:      Helen Koike <helen.koike@collabora.com>
17218 L:      linux-media@vger.kernel.org
17219 T:      git git://linuxtv.org/media_tree.git
17220 W:      https://linuxtv.org
17221 S:      Maintained
17222 F:      drivers/media/platform/vimc/*
17223
17224 VIRT LIB
17225 M:      Alex Williamson <alex.williamson@redhat.com>
17226 M:      Paolo Bonzini <pbonzini@redhat.com>
17227 L:      kvm@vger.kernel.org
17228 S:      Supported
17229 F:      virt/lib/
17230
17231 VIRTIO AND VHOST VSOCK DRIVER
17232 M:      Stefan Hajnoczi <stefanha@redhat.com>
17233 M:      Stefano Garzarella <sgarzare@redhat.com>
17234 L:      kvm@vger.kernel.org
17235 L:      virtualization@lists.linux-foundation.org
17236 L:      netdev@vger.kernel.org
17237 S:      Maintained
17238 F:      include/linux/virtio_vsock.h
17239 F:      include/uapi/linux/virtio_vsock.h
17240 F:      include/uapi/linux/vsockmon.h
17241 F:      include/uapi/linux/vm_sockets_diag.h
17242 F:      net/vmw_vsock/diag.c
17243 F:      net/vmw_vsock/af_vsock_tap.c
17244 F:      net/vmw_vsock/virtio_transport_common.c
17245 F:      net/vmw_vsock/virtio_transport.c
17246 F:      drivers/net/vsockmon.c
17247 F:      drivers/vhost/vsock.c
17248 F:      tools/testing/vsock/
17249
17250 VIRTIO CONSOLE DRIVER
17251 M:      Amit Shah <amit@kernel.org>
17252 L:      virtualization@lists.linux-foundation.org
17253 S:      Maintained
17254 F:      drivers/char/virtio_console.c
17255 F:      include/linux/virtio_console.h
17256 F:      include/uapi/linux/virtio_console.h
17257
17258 VIRTIO CORE AND NET DRIVERS
17259 M:      "Michael S. Tsirkin" <mst@redhat.com>
17260 M:      Jason Wang <jasowang@redhat.com>
17261 L:      virtualization@lists.linux-foundation.org
17262 S:      Maintained
17263 F:      Documentation/devicetree/bindings/virtio/
17264 F:      drivers/virtio/
17265 F:      tools/virtio/
17266 F:      drivers/net/virtio_net.c
17267 F:      drivers/block/virtio_blk.c
17268 F:      include/linux/virtio*.h
17269 F:      include/uapi/linux/virtio_*.h
17270 F:      drivers/crypto/virtio/
17271 F:      mm/balloon_compaction.c
17272
17273 VIRTIO BLOCK AND SCSI DRIVERS
17274 M:      "Michael S. Tsirkin" <mst@redhat.com>
17275 M:      Jason Wang <jasowang@redhat.com>
17276 R:      Paolo Bonzini <pbonzini@redhat.com>
17277 R:      Stefan Hajnoczi <stefanha@redhat.com>
17278 L:      virtualization@lists.linux-foundation.org
17279 S:      Maintained
17280 F:      drivers/block/virtio_blk.c
17281 F:      drivers/scsi/virtio_scsi.c
17282 F:      include/uapi/linux/virtio_blk.h
17283 F:      include/uapi/linux/virtio_scsi.h
17284 F:      drivers/vhost/scsi.c
17285
17286 VIRTIO CRYPTO DRIVER
17287 M:      Gonglei <arei.gonglei@huawei.com>
17288 L:      virtualization@lists.linux-foundation.org
17289 L:      linux-crypto@vger.kernel.org
17290 S:      Maintained
17291 F:      drivers/crypto/virtio/
17292 F:      include/uapi/linux/virtio_crypto.h
17293
17294 VIRTIO DRIVERS FOR S390
17295 M:      Cornelia Huck <cohuck@redhat.com>
17296 M:      Halil Pasic <pasic@linux.ibm.com>
17297 L:      linux-s390@vger.kernel.org
17298 L:      virtualization@lists.linux-foundation.org
17299 L:      kvm@vger.kernel.org
17300 S:      Supported
17301 F:      drivers/s390/virtio/
17302 F:      arch/s390/include/uapi/asm/virtio-ccw.h
17303
17304 VIRTIO FILE SYSTEM
17305 M:      Vivek Goyal <vgoyal@redhat.com>
17306 M:      Stefan Hajnoczi <stefanha@redhat.com>
17307 M:      Miklos Szeredi <miklos@szeredi.hu>
17308 L:      virtualization@lists.linux-foundation.org
17309 L:      linux-fsdevel@vger.kernel.org
17310 W:      https://virtio-fs.gitlab.io/
17311 S:      Supported
17312 F:      fs/fuse/virtio_fs.c
17313 F:      include/uapi/linux/virtio_fs.h
17314 F:      Documentation/filesystems/virtiofs.rst
17315
17316 VIRTIO GPU DRIVER
17317 M:      David Airlie <airlied@linux.ie>
17318 M:      Gerd Hoffmann <kraxel@redhat.com>
17319 L:      dri-devel@lists.freedesktop.org
17320 L:      virtualization@lists.linux-foundation.org
17321 T:      git git://anongit.freedesktop.org/drm/drm-misc
17322 S:      Maintained
17323 F:      drivers/gpu/drm/virtio/
17324 F:      include/uapi/linux/virtio_gpu.h
17325
17326 VIRTIO HOST (VHOST)
17327 M:      "Michael S. Tsirkin" <mst@redhat.com>
17328 M:      Jason Wang <jasowang@redhat.com>
17329 L:      kvm@vger.kernel.org
17330 L:      virtualization@lists.linux-foundation.org
17331 L:      netdev@vger.kernel.org
17332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
17333 S:      Maintained
17334 F:      drivers/vhost/
17335 F:      include/uapi/linux/vhost.h
17336
17337 VIRTIO INPUT DRIVER
17338 M:      Gerd Hoffmann <kraxel@redhat.com>
17339 S:      Maintained
17340 F:      drivers/virtio/virtio_input.c
17341 F:      include/uapi/linux/virtio_input.h
17342
17343 VIRTIO IOMMU DRIVER
17344 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
17345 L:      virtualization@lists.linux-foundation.org
17346 S:      Maintained
17347 F:      drivers/iommu/virtio-iommu.c
17348 F:      include/uapi/linux/virtio_iommu.h
17349
17350 VIRTUAL BOX GUEST DEVICE DRIVER
17351 M:      Hans de Goede <hdegoede@redhat.com>
17352 M:      Arnd Bergmann <arnd@arndb.de>
17353 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17354 S:      Maintained
17355 F:      include/linux/vbox_utils.h
17356 F:      include/uapi/linux/vbox*.h
17357 F:      drivers/virt/vboxguest/
17358
17359 VIRTUAL SERIO DEVICE DRIVER
17360 M:      Stephen Chandler Paul <thatslyude@gmail.com>
17361 S:      Maintained
17362 F:      drivers/input/serio/userio.c
17363 F:      include/uapi/linux/userio.h
17364
17365 VITESSE FELIX ETHERNET SWITCH DRIVER
17366 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
17367 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
17368 L:      netdev@vger.kernel.org
17369 S:      Maintained
17370 F:      drivers/net/dsa/ocelot/*
17371 F:      net/dsa/tag_ocelot.c
17372
17373 VIVID VIRTUAL VIDEO DRIVER
17374 M:      Hans Verkuil <hverkuil@xs4all.nl>
17375 L:      linux-media@vger.kernel.org
17376 T:      git git://linuxtv.org/media_tree.git
17377 W:      https://linuxtv.org
17378 S:      Maintained
17379 F:      drivers/media/platform/vivid/*
17380
17381 VLYNQ BUS
17382 M:      Florian Fainelli <f.fainelli@gmail.com>
17383 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
17384 S:      Maintained
17385 F:      drivers/vlynq/vlynq.c
17386 F:      include/linux/vlynq.h
17387
17388 VME SUBSYSTEM
17389 M:      Martyn Welch <martyn@welchs.me.uk>
17390 M:      Manohar Vanga <manohar.vanga@gmail.com>
17391 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17392 L:      devel@driverdev.osuosl.org
17393 S:      Maintained
17394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17395 F:      Documentation/driver-api/vme.rst
17396 F:      drivers/staging/vme/
17397 F:      drivers/vme/
17398 F:      include/linux/vme*
17399
17400 VMWARE BALLOON DRIVER
17401 M:      Nadav Amit <namit@vmware.com>
17402 M:      "VMware, Inc." <pv-drivers@vmware.com>
17403 L:      linux-kernel@vger.kernel.org
17404 S:      Maintained
17405 F:      drivers/misc/vmw_balloon.c
17406
17407 VMWARE HYPERVISOR INTERFACE
17408 M:      Thomas Hellstrom <thellstrom@vmware.com>
17409 M:      "VMware, Inc." <pv-drivers@vmware.com>
17410 L:      virtualization@lists.linux-foundation.org
17411 S:      Supported
17412 F:      arch/x86/kernel/cpu/vmware.c
17413 F:      arch/x86/include/asm/vmware.h
17414
17415 VMWARE PVRDMA DRIVER
17416 M:      Adit Ranadive <aditr@vmware.com>
17417 M:      VMware PV-Drivers <pv-drivers@vmware.com>
17418 L:      linux-rdma@vger.kernel.org
17419 S:      Maintained
17420 F:      drivers/infiniband/hw/vmw_pvrdma/
17421
17422 VMware PVSCSI driver
17423 M:      Jim Gill <jgill@vmware.com>
17424 M:      VMware PV-Drivers <pv-drivers@vmware.com>
17425 L:      linux-scsi@vger.kernel.org
17426 S:      Maintained
17427 F:      drivers/scsi/vmw_pvscsi.c
17428 F:      drivers/scsi/vmw_pvscsi.h
17429
17430 VMWARE VMMOUSE SUBDRIVER
17431 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
17432 M:      "VMware, Inc." <pv-drivers@vmware.com>
17433 L:      linux-input@vger.kernel.org
17434 S:      Maintained
17435 F:      drivers/input/mouse/vmmouse.c
17436 F:      drivers/input/mouse/vmmouse.h
17437
17438 VMWARE VMXNET3 ETHERNET DRIVER
17439 M:      Ronak Doshi <doshir@vmware.com>
17440 M:      "VMware, Inc." <pv-drivers@vmware.com>
17441 L:      netdev@vger.kernel.org
17442 S:      Maintained
17443 F:      drivers/net/vmxnet3/
17444
17445 VOCORE VOCORE2 BOARD
17446 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
17447 L:      linux-mips@vger.kernel.org
17448 S:      Maintained
17449 F:      arch/mips/boot/dts/ralink/vocore2.dts
17450
17451 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
17452 M:      Liam Girdwood <lgirdwood@gmail.com>
17453 M:      Mark Brown <broonie@kernel.org>
17454 L:      linux-kernel@vger.kernel.org
17455 W:      http://www.slimlogic.co.uk/?p=48
17456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
17457 S:      Supported
17458 F:      Documentation/devicetree/bindings/regulator/
17459 F:      Documentation/power/regulator/
17460 F:      drivers/regulator/
17461 F:      include/dt-bindings/regulator/
17462 F:      include/linux/regulator/
17463 K:      regulator_get_optional
17464
17465 VRF
17466 M:      David Ahern <dsahern@kernel.org>
17467 M:      Shrijeet Mukherjee <shrijeet@gmail.com>
17468 L:      netdev@vger.kernel.org
17469 S:      Maintained
17470 F:      drivers/net/vrf.c
17471 F:      Documentation/networking/vrf.txt
17472
17473 VT1211 HARDWARE MONITOR DRIVER
17474 M:      Juerg Haefliger <juergh@gmail.com>
17475 L:      linux-hwmon@vger.kernel.org
17476 S:      Maintained
17477 F:      Documentation/hwmon/vt1211.rst
17478 F:      drivers/hwmon/vt1211.c
17479
17480 VT8231 HARDWARE MONITOR DRIVER
17481 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
17482 L:      linux-hwmon@vger.kernel.org
17483 S:      Maintained
17484 F:      drivers/hwmon/vt8231.c
17485
17486 VUB300 USB to SDIO/SD/MMC bridge chip
17487 M:      Tony Olech <tony.olech@elandigitalsystems.com>
17488 L:      linux-mmc@vger.kernel.org
17489 L:      linux-usb@vger.kernel.org
17490 S:      Supported
17491 F:      drivers/mmc/host/vub300.c
17492
17493 W1 DALLAS'S 1-WIRE BUS
17494 M:      Evgeniy Polyakov <zbr@ioremap.net>
17495 S:      Maintained
17496 F:      Documentation/devicetree/bindings/w1/
17497 F:      Documentation/w1/
17498 F:      drivers/w1/
17499 F:      include/linux/w1.h
17500
17501 W83791D HARDWARE MONITORING DRIVER
17502 M:      Marc Hulsman <m.hulsman@tudelft.nl>
17503 L:      linux-hwmon@vger.kernel.org
17504 S:      Maintained
17505 F:      Documentation/hwmon/w83791d.rst
17506 F:      drivers/hwmon/w83791d.c
17507
17508 W83793 HARDWARE MONITORING DRIVER
17509 M:      Rudolf Marek <r.marek@assembler.cz>
17510 L:      linux-hwmon@vger.kernel.org
17511 S:      Maintained
17512 F:      Documentation/hwmon/w83793.rst
17513 F:      drivers/hwmon/w83793.c
17514
17515 W83795 HARDWARE MONITORING DRIVER
17516 M:      Jean Delvare <jdelvare@suse.com>
17517 L:      linux-hwmon@vger.kernel.org
17518 S:      Maintained
17519 F:      drivers/hwmon/w83795.c
17520
17521 W83L51xD SD/MMC CARD INTERFACE DRIVER
17522 M:      Pierre Ossman <pierre@ossman.eu>
17523 S:      Maintained
17524 F:      drivers/mmc/host/wbsd.*
17525
17526 WACOM PROTOCOL 4 SERIAL TABLETS
17527 M:      Julian Squires <julian@cipht.net>
17528 M:      Hans de Goede <hdegoede@redhat.com>
17529 L:      linux-input@vger.kernel.org
17530 S:      Maintained
17531 F:      drivers/input/tablet/wacom_serial4.c
17532
17533 WATCHDOG DEVICE DRIVERS
17534 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
17535 M:      Guenter Roeck <linux@roeck-us.net>
17536 L:      linux-watchdog@vger.kernel.org
17537 W:      http://www.linux-watchdog.org/
17538 T:      git git://www.linux-watchdog.org/linux-watchdog.git
17539 S:      Maintained
17540 F:      Documentation/devicetree/bindings/watchdog/
17541 F:      Documentation/watchdog/
17542 F:      drivers/watchdog/
17543 F:      include/linux/watchdog.h
17544 F:      include/uapi/linux/watchdog.h
17545
17546 WHISKEYCOVE PMIC GPIO DRIVER
17547 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
17548 L:      linux-gpio@vger.kernel.org
17549 S:      Maintained
17550 F:      drivers/gpio/gpio-wcove.c
17551
17552 WHWAVE RTC DRIVER
17553 M:      Dianlong Li <long17.cool@163.com>
17554 L:      linux-rtc@vger.kernel.org
17555 S:      Maintained
17556 F:      drivers/rtc/rtc-sd3078.c
17557
17558 WIIMOTE HID DRIVER
17559 M:      David Herrmann <dh.herrmann@googlemail.com>
17560 L:      linux-input@vger.kernel.org
17561 S:      Maintained
17562 F:      drivers/hid/hid-wiimote*
17563
17564 WILOCITY WIL6210 WIRELESS DRIVER
17565 M:      Maya Erez <merez@codeaurora.org>
17566 L:      linux-wireless@vger.kernel.org
17567 L:      wil6210@qti.qualcomm.com
17568 S:      Supported
17569 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
17570 F:      drivers/net/wireless/ath/wil6210/
17571
17572 WIMAX STACK
17573 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
17574 M:      linux-wimax@intel.com
17575 L:      wimax@linuxwimax.org (subscribers-only)
17576 S:      Supported
17577 W:      http://linuxwimax.org
17578 F:      Documentation/admin-guide/wimax/wimax.rst
17579 F:      include/linux/wimax/debug.h
17580 F:      include/net/wimax.h
17581 F:      include/uapi/linux/wimax.h
17582 F:      net/wimax/
17583
17584 WINBOND CIR DRIVER
17585 M:      David Härdeman <david@hardeman.nu>
17586 S:      Maintained
17587 F:      drivers/media/rc/winbond-cir.c
17588
17589 RCMM REMOTE CONTROLS DECODER
17590 M:      Patrick Lerda <patrick9876@free.fr>
17591 S:      Maintained
17592 F:      drivers/media/rc/ir-rcmm-decoder.c
17593
17594 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
17595 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
17596 L:      linux-watchdog@vger.kernel.org
17597 S:      Maintained
17598 F:      drivers/watchdog/ebc-c384_wdt.c
17599
17600 WINSYSTEMS WS16C48 GPIO DRIVER
17601 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
17602 L:      linux-gpio@vger.kernel.org
17603 S:      Maintained
17604 F:      drivers/gpio/gpio-ws16c48.c
17605
17606 WISTRON LAPTOP BUTTON DRIVER
17607 M:      Miloslav Trmac <mitr@volny.cz>
17608 S:      Maintained
17609 F:      drivers/input/misc/wistron_btns.c
17610
17611 WL3501 WIRELESS PCMCIA CARD DRIVER
17612 L:      linux-wireless@vger.kernel.org
17613 S:      Odd fixes
17614 F:      drivers/net/wireless/wl3501*
17615
17616 WOLFSON MICROELECTRONICS DRIVERS
17617 L:      patches@opensource.cirrus.com
17618 T:      git https://github.com/CirrusLogic/linux-drivers.git
17619 W:      https://github.com/CirrusLogic/linux-drivers/wiki
17620 S:      Supported
17621 F:      Documentation/hwmon/wm83??.rst
17622 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
17623 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
17624 F:      Documentation/devicetree/bindings/mfd/arizona.txt
17625 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
17626 F:      Documentation/devicetree/bindings/sound/wlf,arizona.txt
17627 F:      arch/arm/mach-s3c64xx/mach-crag6410*
17628 F:      drivers/clk/clk-wm83*.c
17629 F:      drivers/extcon/extcon-arizona.c
17630 F:      drivers/leds/leds-wm83*.c
17631 F:      drivers/gpio/gpio-*wm*.c
17632 F:      drivers/gpio/gpio-arizona.c
17633 F:      drivers/hwmon/wm83??-hwmon.c
17634 F:      drivers/input/misc/wm831x-on.c
17635 F:      drivers/input/touchscreen/wm831x-ts.c
17636 F:      drivers/input/touchscreen/wm97*.c
17637 F:      drivers/mfd/arizona*
17638 F:      drivers/mfd/wm*.c
17639 F:      drivers/mfd/cs47l24*
17640 F:      drivers/power/supply/wm83*.c
17641 F:      drivers/rtc/rtc-wm83*.c
17642 F:      drivers/regulator/wm8*.c
17643 F:      drivers/regulator/arizona*
17644 F:      drivers/video/backlight/wm83*_bl.c
17645 F:      drivers/watchdog/wm83*_wdt.c
17646 F:      include/linux/mfd/arizona/
17647 F:      include/linux/mfd/wm831x/
17648 F:      include/linux/mfd/wm8350/
17649 F:      include/linux/mfd/wm8400*
17650 F:      include/linux/regulator/arizona*
17651 F:      include/linux/wm97xx.h
17652 F:      include/sound/wm????.h
17653 F:      sound/soc/codecs/arizona.?
17654 F:      sound/soc/codecs/wm*
17655 F:      sound/soc/codecs/cs47l24*
17656
17657 WORKQUEUE
17658 M:      Tejun Heo <tj@kernel.org>
17659 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
17661 S:      Maintained
17662 F:      include/linux/workqueue.h
17663 F:      kernel/workqueue.c
17664 F:      Documentation/core-api/workqueue.rst
17665
17666 X-POWERS AXP288 PMIC DRIVERS
17667 M:      Hans de Goede <hdegoede@redhat.com>
17668 S:      Maintained
17669 N:      axp288
17670 F:      drivers/acpi/pmic/intel_pmic_xpower.c
17671
17672 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
17673 M:      Chen-Yu Tsai <wens@csie.org>
17674 L:      linux-kernel@vger.kernel.org
17675 S:      Maintained
17676 N:      axp[128]
17677
17678 X.25 NETWORK LAYER
17679 M:      Andrew Hendry <andrew.hendry@gmail.com>
17680 L:      linux-x25@vger.kernel.org
17681 S:      Odd Fixes
17682 F:      Documentation/networking/x25*
17683 F:      include/net/x25*
17684 F:      net/x25/
17685
17686 X86 ARCHITECTURE (32-BIT AND 64-BIT)
17687 M:      Thomas Gleixner <tglx@linutronix.de>
17688 M:      Ingo Molnar <mingo@redhat.com>
17689 M:      Borislav Petkov <bp@alien8.de>
17690 R:      "H. Peter Anvin" <hpa@zytor.com>
17691 M:      x86@kernel.org
17692 L:      linux-kernel@vger.kernel.org
17693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
17694 S:      Maintained
17695 F:      Documentation/devicetree/bindings/x86/
17696 F:      Documentation/x86/
17697 F:      arch/x86/
17698
17699 X86 ENTRY CODE
17700 M:      Andy Lutomirski <luto@kernel.org>
17701 L:      linux-kernel@vger.kernel.org
17702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
17703 S:      Maintained
17704 F:      arch/x86/entry/
17705
17706 X86 MCE INFRASTRUCTURE
17707 M:      Tony Luck <tony.luck@intel.com>
17708 M:      Borislav Petkov <bp@alien8.de>
17709 L:      linux-edac@vger.kernel.org
17710 S:      Maintained
17711 F:      arch/x86/kernel/cpu/mce/*
17712
17713 X86 MICROCODE UPDATE SUPPORT
17714 M:      Borislav Petkov <bp@alien8.de>
17715 S:      Maintained
17716 F:      arch/x86/kernel/cpu/microcode/*
17717
17718 X86 MM
17719 M:      Dave Hansen <dave.hansen@linux.intel.com>
17720 M:      Andy Lutomirski <luto@kernel.org>
17721 M:      Peter Zijlstra <peterz@infradead.org>
17722 L:      linux-kernel@vger.kernel.org
17723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
17724 S:      Maintained
17725 F:      arch/x86/mm/
17726
17727 X86 PLATFORM DRIVERS
17728 M:      Darren Hart <dvhart@infradead.org>
17729 M:      Andy Shevchenko <andy@infradead.org>
17730 L:      platform-driver-x86@vger.kernel.org
17731 T:      git git://git.infradead.org/linux-platform-drivers-x86.git
17732 S:      Odd Fixes
17733 F:      drivers/platform/x86/
17734 F:      drivers/platform/olpc/
17735
17736 X86 PLATFORM DRIVERS - ARCH
17737 R:      Darren Hart <dvhart@infradead.org>
17738 R:      Andy Shevchenko <andy@infradead.org>
17739 L:      platform-driver-x86@vger.kernel.org
17740 L:      x86@kernel.org
17741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
17742 S:      Maintained
17743 F:      arch/x86/platform
17744
17745 X86 VDSO
17746 M:      Andy Lutomirski <luto@kernel.org>
17747 L:      linux-kernel@vger.kernel.org
17748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
17749 S:      Maintained
17750 F:      arch/x86/entry/vdso/
17751
17752 XARRAY
17753 M:      Matthew Wilcox <willy@infradead.org>
17754 L:      linux-fsdevel@vger.kernel.org
17755 S:      Supported
17756 F:      Documentation/core-api/xarray.rst
17757 F:      lib/idr.c
17758 F:      lib/xarray.c
17759 F:      include/linux/idr.h
17760 F:      include/linux/xarray.h
17761 F:      tools/testing/radix-tree
17762
17763 XBOX DVD IR REMOTE
17764 M:      Benjamin Valentin <benpicco@googlemail.com>
17765 S:      Maintained
17766 F:      drivers/media/rc/xbox_remote.c
17767 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
17768
17769 XC2028/3028 TUNER DRIVER
17770 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17771 L:      linux-media@vger.kernel.org
17772 W:      https://linuxtv.org
17773 T:      git git://linuxtv.org/media_tree.git
17774 S:      Maintained
17775 F:      drivers/media/tuners/tuner-xc2028.*
17776
17777 XDP (eXpress Data Path)
17778 M:      Alexei Starovoitov <ast@kernel.org>
17779 M:      Daniel Borkmann <daniel@iogearbox.net>
17780 M:      David S. Miller <davem@davemloft.net>
17781 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
17782 M:      Jesper Dangaard Brouer <hawk@kernel.org>
17783 M:      John Fastabend <john.fastabend@gmail.com>
17784 L:      netdev@vger.kernel.org
17785 L:      bpf@vger.kernel.org
17786 S:      Supported
17787 F:      net/core/xdp.c
17788 F:      include/net/xdp.h
17789 F:      kernel/bpf/devmap.c
17790 F:      kernel/bpf/cpumap.c
17791 F:      include/trace/events/xdp.h
17792 K:      xdp
17793 N:      xdp
17794
17795 XDP SOCKETS (AF_XDP)
17796 M:      Björn Töpel <bjorn.topel@intel.com>
17797 M:      Magnus Karlsson <magnus.karlsson@intel.com>
17798 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
17799 L:      netdev@vger.kernel.org
17800 L:      bpf@vger.kernel.org
17801 S:      Maintained
17802 F:      kernel/bpf/xskmap.c
17803 F:      net/xdp/
17804
17805 XEN BLOCK SUBSYSTEM
17806 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
17807 M:      Roger Pau Monné <roger.pau@citrix.com>
17808 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17809 S:      Supported
17810 F:      drivers/block/xen-blkback/*
17811 F:      drivers/block/xen*
17812
17813 XEN HYPERVISOR ARM
17814 M:      Stefano Stabellini <sstabellini@kernel.org>
17815 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17816 S:      Maintained
17817 F:      arch/arm/xen/
17818 F:      arch/arm/include/asm/xen/
17819
17820 XEN HYPERVISOR ARM64
17821 M:      Stefano Stabellini <sstabellini@kernel.org>
17822 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17823 S:      Maintained
17824 F:      arch/arm64/xen/
17825 F:      arch/arm64/include/asm/xen/
17826
17827 XEN HYPERVISOR INTERFACE
17828 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
17829 M:      Juergen Gross <jgross@suse.com>
17830 R:      Stefano Stabellini <sstabellini@kernel.org>
17831 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
17833 S:      Supported
17834 F:      arch/x86/xen/
17835 F:      arch/x86/platform/pvh/
17836 F:      drivers/*/xen-*front.c
17837 F:      drivers/xen/
17838 F:      arch/x86/include/asm/xen/
17839 F:      arch/x86/include/asm/pvclock-abi.h
17840 F:      include/xen/
17841 F:      include/uapi/xen/
17842 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
17843 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
17844
17845 XEN NETWORK BACKEND DRIVER
17846 M:      Wei Liu <wei.liu@kernel.org>
17847 M:      Paul Durrant <paul@xen.org>
17848 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17849 L:      netdev@vger.kernel.org
17850 S:      Supported
17851 F:      drivers/net/xen-netback/*
17852
17853 XEN PCI SUBSYSTEM
17854 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
17855 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17856 S:      Supported
17857 F:      arch/x86/pci/*xen*
17858 F:      drivers/pci/*xen*
17859
17860 XEN PVSCSI DRIVERS
17861 M:      Juergen Gross <jgross@suse.com>
17862 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17863 L:      linux-scsi@vger.kernel.org
17864 S:      Supported
17865 F:      drivers/scsi/xen-scsifront.c
17866 F:      drivers/xen/xen-scsiback.c
17867 F:      include/xen/interface/io/vscsiif.h
17868
17869 XEN SWIOTLB SUBSYSTEM
17870 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
17871 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17872 L:      iommu@lists.linux-foundation.org
17873 S:      Supported
17874 F:      arch/x86/xen/*swiotlb*
17875 F:      drivers/xen/*swiotlb*
17876
17877 XEN SOUND FRONTEND DRIVER
17878 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
17879 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17880 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17881 S:      Supported
17882 F:      sound/xen/*
17883
17884 XFS FILESYSTEM
17885 M:      Darrick J. Wong <darrick.wong@oracle.com>
17886 M:      linux-xfs@vger.kernel.org
17887 L:      linux-xfs@vger.kernel.org
17888 W:      http://xfs.org/
17889 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
17890 S:      Supported
17891 F:      Documentation/admin-guide/xfs.rst
17892 F:      Documentation/ABI/testing/sysfs-fs-xfs
17893 F:      Documentation/filesystems/xfs-delayed-logging-design.txt
17894 F:      Documentation/filesystems/xfs-self-describing-metadata.txt
17895 F:      fs/xfs/
17896 F:      include/uapi/linux/dqblk_xfs.h
17897 F:      include/uapi/linux/fsmap.h
17898
17899 XILINX AXI ETHERNET DRIVER
17900 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
17901 S:      Maintained
17902 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
17903
17904 XILINX UARTLITE SERIAL DRIVER
17905 M:      Peter Korsgaard <jacmet@sunsite.dk>
17906 L:      linux-serial@vger.kernel.org
17907 S:      Maintained
17908 F:      drivers/tty/serial/uartlite.c
17909
17910 XILINX VIDEO IP CORES
17911 M:      Hyun Kwon <hyun.kwon@xilinx.com>
17912 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17913 L:      linux-media@vger.kernel.org
17914 T:      git git://linuxtv.org/media_tree.git
17915 S:      Supported
17916 F:      Documentation/devicetree/bindings/media/xilinx/
17917 F:      drivers/media/platform/xilinx/
17918 F:      include/uapi/linux/xilinx-v4l2-controls.h
17919
17920 XILINX SD-FEC IP CORES
17921 M:      Derek Kiernan <derek.kiernan@xilinx.com>
17922 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
17923 S:      Maintained
17924 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
17925 F:      Documentation/misc-devices/xilinx_sdfec.rst
17926 F:      drivers/misc/xilinx_sdfec.c
17927 F:      drivers/misc/Kconfig
17928 F:      drivers/misc/Makefile
17929 F:      include/uapi/misc/xilinx_sdfec.h
17930
17931 XILLYBUS DRIVER
17932 M:      Eli Billauer <eli.billauer@gmail.com>
17933 L:      linux-kernel@vger.kernel.org
17934 S:      Supported
17935 F:      drivers/char/xillybus/
17936
17937 XLP9XX I2C DRIVER
17938 M:      George Cherian <george.cherian@cavium.com>
17939 M:      Jan Glauber <jglauber@cavium.com>
17940 L:      linux-i2c@vger.kernel.org
17941 W:      http://www.cavium.com
17942 S:      Supported
17943 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
17944 F:      drivers/i2c/busses/i2c-xlp9xx.c
17945
17946 XRA1403 GPIO EXPANDER
17947 M:      Nandor Han <nandor.han@ge.com>
17948 M:      Semi Malinen <semi.malinen@ge.com>
17949 L:      linux-gpio@vger.kernel.org
17950 S:      Maintained
17951 F:      drivers/gpio/gpio-xra1403.c
17952 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
17953
17954 XTENSA XTFPGA PLATFORM SUPPORT
17955 M:      Max Filippov <jcmvbkbc@gmail.com>
17956 L:      linux-xtensa@linux-xtensa.org
17957 S:      Maintained
17958 F:      drivers/spi/spi-xtensa-xtfpga.c
17959 F:      sound/soc/xtensa/xtfpga-i2s.c
17960
17961 YAM DRIVER FOR AX.25
17962 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
17963 L:      linux-hams@vger.kernel.org
17964 S:      Maintained
17965 F:      drivers/net/hamradio/yam*
17966 F:      include/linux/yam.h
17967
17968 YAMA SECURITY MODULE
17969 M:      Kees Cook <keescook@chromium.org>
17970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
17971 S:      Supported
17972 F:      security/yama/
17973 F:      Documentation/admin-guide/LSM/Yama.rst
17974
17975 YEALINK PHONE DRIVER
17976 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
17977 L:      usbb2k-api-dev@nongnu.org
17978 S:      Maintained
17979 F:      Documentation/input/devices/yealink.rst
17980 F:      drivers/input/misc/yealink.*
17981
17982 Z8530 DRIVER FOR AX.25
17983 M:      Joerg Reuter <jreuter@yaina.de>
17984 W:      http://yaina.de/jreuter/
17985 W:      http://www.qsl.net/dl1bke/
17986 L:      linux-hams@vger.kernel.org
17987 S:      Maintained
17988 F:      Documentation/networking/z8530drv.txt
17989 F:      drivers/net/hamradio/*scc.c
17990 F:      drivers/net/hamradio/z8530.h
17991
17992 ZBUD COMPRESSED PAGE ALLOCATOR
17993 M:      Seth Jennings <sjenning@redhat.com>
17994 M:      Dan Streetman <ddstreet@ieee.org>
17995 L:      linux-mm@kvack.org
17996 S:      Maintained
17997 F:      mm/zbud.c
17998 F:      include/linux/zbud.h
17999
18000 ZD1211RW WIRELESS DRIVER
18001 M:      Daniel Drake <dsd@gentoo.org>
18002 M:      Ulrich Kunitz <kune@deine-taler.de>
18003 W:      http://zd1211.ath.cx/wiki/DriverRewrite
18004 L:      linux-wireless@vger.kernel.org
18005 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
18006 S:      Maintained
18007 F:      drivers/net/wireless/zydas/zd1211rw/
18008
18009 ZD1301 MEDIA DRIVER
18010 M:      Antti Palosaari <crope@iki.fi>
18011 L:      linux-media@vger.kernel.org
18012 W:      https://linuxtv.org/
18013 W:      http://palosaari.fi/linux/
18014 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18015 S:      Maintained
18016 F:      drivers/media/usb/dvb-usb-v2/zd1301*
18017
18018 ZD1301_DEMOD MEDIA DRIVER
18019 M:      Antti Palosaari <crope@iki.fi>
18020 L:      linux-media@vger.kernel.org
18021 W:      https://linuxtv.org/
18022 W:      http://palosaari.fi/linux/
18023 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18024 S:      Maintained
18025 F:      drivers/media/dvb-frontends/zd1301_demod*
18026
18027 ZHAOXIN PROCESSOR SUPPORT
18028 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
18029 L:      linux-kernel@vger.kernel.org
18030 S:      Maintained
18031 F:      arch/x86/kernel/cpu/zhaoxin.c
18032
18033 ZPOOL COMPRESSED PAGE STORAGE API
18034 M:      Dan Streetman <ddstreet@ieee.org>
18035 L:      linux-mm@kvack.org
18036 S:      Maintained
18037 F:      mm/zpool.c
18038 F:      include/linux/zpool.h
18039
18040 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
18041 M:      Minchan Kim <minchan@kernel.org>
18042 M:      Nitin Gupta <ngupta@vflare.org>
18043 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
18044 L:      linux-kernel@vger.kernel.org
18045 S:      Maintained
18046 F:      drivers/block/zram/
18047 F:      Documentation/admin-guide/blockdev/zram.rst
18048
18049 ZS DECSTATION Z85C30 SERIAL DRIVER
18050 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
18051 S:      Maintained
18052 F:      drivers/tty/serial/zs.*
18053
18054 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
18055 M:      Minchan Kim <minchan@kernel.org>
18056 M:      Nitin Gupta <ngupta@vflare.org>
18057 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
18058 L:      linux-mm@kvack.org
18059 S:      Maintained
18060 F:      mm/zsmalloc.c
18061 F:      include/linux/zsmalloc.h
18062 F:      Documentation/vm/zsmalloc.rst
18063
18064 ZSWAP COMPRESSED SWAP CACHING
18065 M:      Seth Jennings <sjenning@redhat.com>
18066 M:      Dan Streetman <ddstreet@ieee.org>
18067 M:      Vitaly Wool <vitaly.wool@konsulko.com>
18068 L:      linux-mm@kvack.org
18069 S:      Maintained
18070 F:      mm/zswap.c
18071
18072 THE REST
18073 M:      Linus Torvalds <torvalds@linux-foundation.org>
18074 L:      linux-kernel@vger.kernel.org
18075 Q:      http://patchwork.kernel.org/project/LKML/list/
18076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
18077 S:      Buried alive in reporters
18078 F:      *
18079 F:      */