1# This file contains information on who maintains what. It is parsed by
2# get_maintainer.py.
3#
4# File format
5# ###########
6#
7# "Area title" (the quotes are only needed for titles with special characters,
8#  like colons):
9#     status:
10#         One of the following:
11#
12#         * maintained:
13#             The area has a Maintainer (approved by the TSC) who
14#             looks after the area.
15#
16#         * odd fixes:
17#            The area gets odd fixes and may have collaborators.
18#
19#         * obsolete:
20#             Old code. Something being marked obsolete generally means it has
21#             been replaced by something better that you should be using
22#             instead.
23#
24#     maintainers:
25#         List of GitHub handles for the people who maintain the area. Usually,
26#         there's only one maintainer.
27#
28#     collaborators (not to be confused with the GitHub collaborator role):
29#         Very involved contributors, who know the area well and contribute
30#         significantly to it.
31#
32#     labels:
33#         List of GitHub labels to add to pull requests that modify the area.
34#
35#     files:
36#         List of paths and/or glob patterns giving the files in the area,
37#         relative to the root directory.
38#
39#         If a path or glob pattern ends in a '/', it matches all files within
40#         the given directory or directories. Otherwise, an exact match is
41#         required.
42#
43#         Paths to directories should always have a trailing '/'.
44#
45#     files-regex:
46#         List of regular expressions applied to paths to determine if they
47#         belong to the area. The regular expression may match anywhere within
48#         the path, but can be anchored with ^ and $ as usual.
49#
50#         Can be combined with a 'files' key.
51#
52#         Note: Prefer plain 'files' patterns where possible. get_maintainer.py
53#         will check that they match some file, but won't check regexes
54#         (because it might be slow).
55#
56#     files-exclude:
57#         Like 'files', but any matching files will be excluded from the area.
58#
59#     files-regex-exclude:
60#         Like 'files-regex', but any matching files will be excluded from the
61#         area.
62#
63#     description: >-
64#         Plain-English description. Describe what the system is about, from an
65#         outsider's perspective.
66#
67#
68# All areas must have a 'files' and/or 'files-regex' key. The other keys are
69# optional.
70#
71# It is very advisable to have a `status` key in all entries. Exceptions to
72# this would be sub-areas which add extra fields (for ex. more `collaborators`
73# who work only in that sub-area) to other areas.
74#
75#
76# Workflow
77# ########
78#
79# Ideally, any file in the tree will be covered by some area.
80#
81# When a GitHub pull request is sent, this happens:
82#
83#     * A user mentioned in 'maintainers' is added as Assignee to
84#       the pull request
85#
86#     * Users mentioned in 'maintainers' and 'collaborators' are added as
87#       reviewers to the pull request
88#
89#     * The labels listed in 'labels' are automatically added to the pull
90#       request
91#
92#     * The bot posts this comment:
93#
94#         This PR affects the following areas:
95#         <area name>:
96#           Status: ...
97#           Maintainers: <list of maintainers>
98#           Collaborators: <list of sub-maintainers>
99#
100#         <area name>:
101#           ...
102#
103#
104# Changes to MAINTAINERS.yml need to be approved as follows:
105#
106#     * Changing the 'maintainers' for an area needs approval from the
107#       Technical Steering Committee
108#
109#     * Changing the 'collaborators' lines requires the maintainer and
110#       collaborators of that area to agree (or vote on it)
111
112# Areas are sorted by name
113
114ACPI:
115  status: maintained
116  maintainers:
117    - najumon1980
118  files:
119    - lib/acpi/
120    - include/zephyr/acpi/
121    - tests/lib/acpi/
122    - dts/bindings/acpi/
123  labels:
124    - "area: ACPI"
125  tests:
126    - acpi
127
128ARC arch:
129  status: maintained
130  maintainers:
131    - ruuddw
132  collaborators:
133    - abrodkin
134    - evgeniy-paltsev
135  files:
136    - arch/arc/
137    - include/zephyr/arch/arc/
138    - tests/arch/arc/
139    - dts/arc/synopsys/
140    - dts/bindings/arc/
141    - doc/hardware/arch/arc-support-status.rst
142  labels:
143    - "area: ARC"
144  tests:
145    - arch.arc
146
147ARM arch:
148  status: maintained
149  maintainers:
150    - ithinuel
151  collaborators:
152    - microbuilder
153    - carlocaione
154    - galak
155    - MaureenHelm
156    - stephanosio
157    - bbolen
158  files:
159    - arch/arm/
160    - arch/arm/core/offsets/
161    - include/zephyr/arch/arm/
162    - tests/arch/arm/
163    - doc/hardware/arch/arm_cortex_m.rst
164    - boards/qemu/cortex_m0/
165  labels:
166    - "area: ARM"
167  tests:
168    - arch.arm
169
170ARM64 arch:
171  status: maintained
172  maintainers:
173    - carlocaione
174  collaborators:
175    - npitre
176    - povergoing
177    - sgrrzhf
178  files:
179    - arch/arm64/
180    - include/zephyr/arch/arm64/
181    - tests/arch/arm64/
182    - dts/arm64/
183    - boards/qemu/kvm_arm64/
184    - boards/qemu/cortex_a53/
185  labels:
186    - "area: ARM64"
187  tests:
188    - arch.arm64
189
190ARM Platforms:
191  status: maintained
192  maintainers:
193    - ithinuel
194  files:
195    - boards/arm/mps*/
196    - boards/arm/v2m_*/
197    - boards/arm/fvp_base*/
198    - soc/arm/mps*/
199    - soc/arm/musca/
200    - soc/arm/beetle/
201    - soc/arm/designstart/
202    - soc/arm/fvp_aemv8*/
203    - dts/arm/armv*.dtsi
204    - dts/bindings/arm/arm*.yaml
205  labels:
206    - "platform: ARM"
207
208ASPEED Platforms:
209  status: odd fixes
210  files:
211    - soc/aspeed/
212    - dts/arm/aspeed/
213    - drivers/*/*_ast10x0.c
214    - drivers/*/Kconfig.aspeed
215  labels:
216    - "platform: ASPEED"
217
218ARM SiP SVC:
219  status: odd fixes
220  files:
221    - subsys/sip_svc/
222    - tests/subsys/sip_svc/
223    - include/zephyr/sip_svc/
224    - include/zephyr/drivers/sip_svc/
225    - drivers/sip_svc/
226  labels:
227    - "area: ARM SiP SVC"
228  tests:
229    - sip_svc
230
231MIPS arch:
232  status: odd fixes
233  files:
234    - arch/mips/
235    - include/zephyr/arch/mips/
236    - boards/qemu/malta/
237  labels:
238    - "area: MIPS"
239  tests:
240    - arch.mips
241
242Ambiq Platforms:
243  status: maintained
244  maintainers:
245    - AlessandroLuo
246  collaborators:
247    - aaronyegx
248    - RichardSWheatley
249  files:
250    - soc/ambiq/
251    - boards/ambiq/apollo*/
252    - dts/arm/ambiq/
253    - dts/bindings/*/ambiq,*
254    - drivers/*/*ambiq*
255    - drivers/*/*/*ambiq*
256    - drivers/*/*/*apollo*
257  labels:
258    - "platform: Ambiq"
259
260BeagleBoard Platforms:
261  status: maintained
262  maintainers:
263    - jadonk
264  collaborators:
265    - ayush1325
266    - con-pax
267    - vaishnavachath
268  files:
269    - boards/beagle/
270  labels:
271    - "platform: BeagleBoard"
272
273Benchmarks:
274  status: maintained
275  maintainers:
276    - peter-mitsis
277  collaborators:
278    - nashif
279    - dcpleung
280  files:
281    - tests/benchmarks/
282  labels:
283    - "area: Benchmarks"
284
285Binary Descriptors:
286  status: maintained
287  maintainers:
288    - yonsch
289  files:
290    - subsys/bindesc/
291    - include/zephyr/bindesc.h
292    - samples/subsys/bindesc/
293    - scripts/west_commands/bindesc.py
294    - tests/subsys/bindesc/
295  labels:
296    - "area: Binary Descriptors"
297  tests:
298    - bindesc
299
300Bluetooth:
301  status: maintained
302  maintainers:
303    - jhedberg
304  collaborators:
305    - hermabe
306    - Vudentz
307    - asbjornsabo
308    - sjanc
309  files:
310    - doc/connectivity/bluetooth/
311    - include/zephyr/bluetooth/
312    - samples/bluetooth/
313    - subsys/bluetooth/
314    - subsys/bluetooth/common/
315    - tests/bluetooth/
316    - tests/bsim/bluetooth/
317  files-exclude:
318    - include/zephyr/bluetooth/mesh/
319    - subsys/bluetooth/controller/
320    - subsys/bluetooth/host/
321    - subsys/bluetooth/mesh/
322    - samples/bluetooth/mesh/
323    - subsys/bluetooth/audio/
324    - include/zephyr/bluetooth/audio/
325    - tests/bsim/bluetooth/audio/
326    - tests/bsim/bluetooth/host/
327    - tests/bsim/bluetooth/ll/
328    - tests/bluetooth/controller/
329    - tests/bluetooth/host*/
330    - tests/bluetooth/mesh_*/
331    - tests/bluetooth/mesh/
332    - tests/bluetooth/audio/
333    - tests/bsim/bluetooth/mesh/
334    - tests/bluetooth/shell/audio*
335  labels:
336    - "area: Bluetooth"
337  tests:
338    - bluetooth
339
340Bluetooth HCI:
341  status: maintained
342  maintainers:
343    - jhedberg
344    - jori-nordic
345  collaborators:
346    - hermabe
347    - alwa-nordic
348    - Thalley
349    - sjanc
350    - theob-pro
351    - HoZHel
352  files:
353    - include/zephyr/drivers/bluetooth/
354    - drivers/bluetooth/
355    - samples/bluetooth/hci_*/
356  labels:
357    - "area: Bluetooth Host"
358    - "area: Bluetooth"
359  tests:
360    - bluetooth
361
362Bluetooth controller:
363  status: maintained
364  maintainers:
365    - cvinayak
366  collaborators:
367    - carlescufi
368    - thoh-ot
369    - kruithofa
370    - ppryga
371    - mtpr-ot
372    - wopu-ot
373    - erbr-ot
374  files:
375    - subsys/bluetooth/controller/
376    - tests/bluetooth/controller/
377    - tests/bsim/bluetooth/ll/
378  labels:
379    - "area: Bluetooth Controller"
380    - "area: Bluetooth"
381  tests:
382    - bluetooth.controller
383
384Bluetooth Host:
385  status: maintained
386  maintainers:
387    - jori-nordic
388    - jhedberg
389  collaborators:
390    - hermabe
391    - alwa-nordic
392    - Thalley
393    - sjanc
394    - theob-pro
395  files:
396    - subsys/bluetooth/host/
397    - subsys/bluetooth/services/
398    - subsys/bluetooth/shell/
399    - tests/bluetooth/host*/
400    - tests/bsim/bluetooth/host/
401  files-exclude:
402    - subsys/bluetooth/host/classic/
403    - include/zephyr/bluetooth/classic/
404  labels:
405    - "area: Bluetooth Host"
406    - "area: Bluetooth"
407
408Bluetooth Mesh:
409  status: maintained
410  maintainers:
411    - PavelVPV
412  collaborators:
413    - jhedberg
414    - LingaoM
415    - alxelax
416    - Andrewpini
417    - akredalen
418    - HaavardRei
419    - omkar3141
420  files:
421    - subsys/bluetooth/mesh/
422    - include/zephyr/bluetooth/mesh/
423    - tests/bluetooth/mesh*/
424    - tests/bsim/bluetooth/mesh/
425    - samples/bluetooth/mesh/
426  labels:
427    - "area: Bluetooth Mesh"
428    - "area: Bluetooth"
429  tests:
430    - bluetooth.mesh
431
432Bluetooth Audio:
433  status: maintained
434  maintainers:
435    - Thalley
436  collaborators:
437    - jhedberg
438    - Casper-Bonde-Bose
439    - MariuszSkamra
440    - sjanc
441    - asbjornsabo
442    - fredrikdanebjer
443    - kruithofa
444    - larsgk
445    - pin-zephyr
446    - niym-ot
447    - jthm-ot
448  files:
449    - subsys/bluetooth/audio/
450    - include/zephyr/bluetooth/audio/
451    - tests/bluetooth/audio/
452    - tests/bsim/bluetooth/audio/
453    - tests/bsim/bluetooth/audio_samples/
454    - tests/bluetooth/shell/audio.conf
455    - tests/bluetooth/tester/overlay-le-audio.conf
456    - tests/bluetooth/tester/src/audio/
457    - doc/connectivity/bluetooth/api/audio/
458    - samples/bluetooth/bap*/
459    - samples/bluetooth/cap*/
460    - samples/bluetooth/hap*/
461    - samples/bluetooth/pbp*/
462    - samples/bluetooth/tmap*/
463  labels:
464    - "area: Bluetooth Audio"
465    - "area: Bluetooth"
466  tests:
467    - bluetooth.audio
468
469Bluetooth Classic:
470  status: maintained
471  maintainers:
472    - lylezhu2012
473  collaborators:
474    - jhedberg
475    - sjanc
476  files:
477    - subsys/bluetooth/host/classic/
478    - include/zephyr/bluetooth/classic/
479  labels:
480    - "area: Bluetooth Classic"
481    - "area: Bluetooth"
482  tests:
483    - bluetooth
484
485Bootloaders:
486  status: odd fixes
487  files:
488    - tests/boot/
489  labels:
490    - "area: Bootloader"
491  tests:
492    - bootloader
493
494Build system:
495  status: maintained
496  maintainers:
497    - tejlmand
498  collaborators:
499    - jeremybettis
500    - nashif
501    - nordicjm
502    - "57300"
503  files:
504    - cmake/
505    - CMakeLists.txt
506    - scripts/zephyr_module.py
507    - share/
508    - doc/build/
509    - doc/develop/modules.rst
510    - scripts/build/
511    - tests/cmake/
512    - misc/empty_file.c
513    - misc/generated/
514    - snippets/
515    - modules/Kconfig.sysbuild
516  labels:
517    - "area: Build System"
518  tests:
519    - buildsystem
520
521Board/SoC configuration:
522  status: maintained
523  maintainers:
524    - tejlmand
525  collaborators:
526    - galak
527    - nashif
528    - nordicjm
529    - "57300"
530  files:
531    - soc/Kconfig*
532    - boards/Kconfig*
533  labels:
534    - "area: Board/SoC configuration"
535
536"C++":
537  status: maintained
538  maintainers:
539    - stephanosio
540  collaborators:
541    - alexanderwachter
542    - cfriedt
543  files:
544    - lib/cpp/
545    - tests/lib/cpp/
546    - samples/cpp/
547  labels:
548    - "area: C++"
549  tests:
550    - cpp
551
552Cache:
553  status: maintained
554  maintainers:
555    - carlocaione
556  collaborators:
557    - nashif
558  files:
559    - include/zephyr/drivers/cache.h
560    - include/zephyr/cache.h
561    - doc/hardware/cache/index.rst
562    - drivers/cache/
563    - tests/kernel/cache/
564  labels:
565    - "area: Cache"
566  tests:
567    - kernel.cache
568
569C library:
570  status: maintained
571  maintainers:
572    - stephanosio
573  collaborators:
574    - aescolar
575    - nashif
576    - keith-packard
577    - cfriedt
578  files:
579    - lib/libc/
580    - tests/lib/c_lib/
581    - tests/lib/newlib/
582  labels:
583    - "area: C Library"
584  tests:
585    - libraries.libc
586
587CMSIS API layer:
588  status: odd fixes
589  collaborators:
590    - nashif
591  files:
592    - subsys/portability/
593    - include/zephyr/portability/cmsis*
594    - samples/subsys/portability/cmsis_rtos_v*/
595    - tests/subsys/portability/cmsis_rtos_v*/
596    - doc/services/portability/cmsis*
597  labels:
598    - "area: CMSIS API Layer"
599    - "area: Portability"
600  tests:
601    - portability.cmsis_rtos_v1
602    - portability.cmsis_rtos_v2
603
604DAP:
605  status: maintained
606  maintainers:
607    - jfischer-no
608  collaborators:
609    - maxd-nordic
610  files:
611    - include/zephyr/drivers/swdp.h
612    - drivers/dp/
613    - subsys/dap/
614    - samples/subsys/dap/
615  description: >-
616    Debug Access Port controller
617  labels:
618    - "area: dap"
619
620DSP subsystem:
621  status: maintained
622  maintainers:
623    - stephanosio
624    - yperess
625  files:
626    - subsys/dsp/
627    - tests/subsys/dsp/
628    - include/zephyr/dsp/dsp.h
629    - include/zephyr/dsp/types.h
630    - include/zephyr/dsp/
631    - doc/services/dsp/
632  labels:
633    - "area: DSP"
634  tests:
635    - zdsp
636
637CMSIS-DSP integration:
638  status: maintained
639  maintainers:
640    - stephanosio
641  collaborators:
642    - galak
643    - XenuIsWatching
644  files:
645    - modules/cmsis-dsp/
646    - tests/benchmarks/cmsis_dsp/
647    - tests/lib/cmsis_dsp/
648  labels:
649    - "area: CMSIS-DSP"
650  tests:
651    - libraries.cmsis_dsp
652
653CMSIS-NN integration:
654  status: maintained
655  maintainers:
656    - JordanYates
657  collaborators:
658    - stephanosio
659    - XenuIsWatching
660  files:
661    - modules/cmsis-nn/
662    - tests/lib/cmsis_nn/
663  labels:
664    - "area: CMSIS-NN"
665  tests:
666    - libraries.cmsis_nn
667
668Coding Guidelines:
669  status: maintained
670  maintainers:
671    - keith-zephyr
672  collaborators:
673    - nashif
674    - carlescufi
675    - jfischer-no
676    - simhein
677  files:
678    - .checkpatch.conf
679    - .clang-format
680    - .editorconfig
681    - .gitlint
682    - .yamllint
683    - doc/contribute/guidelines.rst
684    - doc/contribute/coding_guidelines/
685    - scripts/checkpatch.pl
686    - scripts/checkpatch/
687    - scripts/ci/check_compliance.py
688    - scripts/ci/guideline_check.py
689    - scripts/ci/pylintrc
690    - scripts/coccicheck
691    - scripts/coccinelle/
692    - scripts/gitlint/
693    - scripts/pylint/
694    - scripts/spelling.txt
695  labels:
696    - "area: Coding Guidelines"
697
698Common Architecture Interface:
699  status: odd fixes
700  collaborators:
701    - dcpleung
702    - nashif
703  files:
704    - arch/Kconfig
705    - include/zephyr/arch/
706    - arch/common/
707    - include/zephyr/arch/common/
708    - tests/arch/common/
709    - doc/hardware/porting/arch.rst
710  labels:
711    - "area: Architectures"
712  tests:
713    - arch
714
715Console:
716  status: odd fixes
717  files:
718    - include/zephyr/console/
719    - subsys/console/
720  labels:
721    - "area: Console"
722  tests:
723    - sample.console
724
725Debug:
726  status: maintained
727  maintainers:
728    - nashif
729  collaborators:
730    - dcpleung
731    - mrkhldn
732  files:
733    - include/zephyr/debug/
734    - subsys/debug/
735    - tests/subsys/debug/
736    - scripts/coredump/
737    - samples/subsys/debug/
738    - doc/services/debugging/
739  labels:
740    - "area: Debugging"
741  tests:
742    - debug
743
744"Debug: Symtab":
745  status: maintained
746  maintainers:
747    - ycsin
748  files:
749    - include/zephyr/debug/symtab.h
750    - subsys/debug/symtab/
751    - tests/subsys/debug/symtab/
752    - scripts/build/gen_symtab.py
753  labels:
754    - "area: Symtab"
755  tests:
756    - debug.symtab
757
758Demand Paging:
759  status: maintained
760  maintainers:
761    - dcpleung
762  collaborators:
763    - ceolin
764    - peter-mitsis
765    - nashif
766  files:
767    - subsys/demand_paging/
768    - tests/kernel/mem_protect/demand_paging/
769  tests:
770    - kernel.demand_paging
771
772Device Driver Model:
773  status: maintained
774  maintainers:
775    - gmarull
776    - tbursztyka
777  collaborators:
778    - dcpleung
779    - nashif
780  files:
781    - include/zephyr/device.h
782    - kernel/device.c
783    - include/zephyr/init.h
784    - tests/kernel/device/
785    - doc/kernel/drivers/
786    - tests/misc/check_init_priorities/
787  labels:
788    - "area: Device Model"
789  tests:
790    - kernel.device
791    - init
792
793DFU:
794  status: maintained
795  maintainers:
796    - de-nordic
797    - nordicjm
798  files:
799    - include/zephyr/dfu/
800    - subsys/dfu/
801    - tests/subsys/dfu/
802  labels:
803    - "area: DFU"
804  tests:
805    - dfu
806
807Devicetree:
808  status: odd fixes
809  collaborators:
810    - decsny
811    - galak
812  files:
813    - scripts/dts/
814    - dts/common/
815    - tests/lib/devicetree/
816    - doc/build/dts/
817    - include/zephyr/devicetree/
818    - scripts/kconfig/kconfigfunctions.py
819    - doc/build/kconfig/preprocessor-functions.rst
820    - include/zephyr/devicetree.h
821  files-exclude:
822    - dts/common/nordic/
823  labels:
824    - "area: Devicetree"
825  tests:
826    - libraries.devicetree
827
828Devicetree Bindings:
829  status: odd fixes
830  collaborators:
831    - decsny
832    - galak
833  files:
834    - include/zephyr/dt-bindings/
835    - dts/binding-template.yaml
836  labels:
837    - "area: Devicetree Binding"
838
839Disk:
840  status: maintained
841  maintainers:
842    - danieldegrasse
843  collaborators:
844    - jfischer-no
845    - decsny
846  files:
847    - include/zephyr/storage/disk_access.h
848    - include/zephyr/drivers/disk.h
849    - drivers/disk/
850    - subsys/disk/
851    - subsys/sd/
852    - tests/subsys/sd/
853    - tests/drivers/disk/
854    - include/zephyr/sd/
855  labels:
856    - "area: Disk Access"
857  tests:
858    - drivers.disk
859
860Display drivers:
861  status: odd fixes
862  collaborators:
863    - jfischer-no
864    - danieldegrasse
865  files:
866    - drivers/display/
867    - dts/bindings/display/
868    - include/zephyr/drivers/display.h
869    - include/zephyr/display/
870    - include/zephyr/drivers/display.h
871    - subsys/fb/
872    - samples/subsys/display/
873    - tests/subsys/display/
874    - doc/hardware/peripherals/display/
875    - tests/drivers/*/display/
876  labels:
877    - "area: Display"
878  tests:
879    - display.cfb
880    - drivers.display
881
882Documentation:
883  status: maintained
884  maintainers:
885    - kartben
886    - carlescufi
887  collaborators:
888    - nashif
889  files:
890    - CODE_OF_CONDUCT.md
891    - CONTRIBUTING.rst
892    - doc/glossary.rst
893    - doc/contribute/
894    - doc/develop/
895    - doc/introduction/
896    - doc/project/
897    - doc/releases/
898    - doc/security/
899    - doc/safety/
900    - README.rst
901    - doc/substitutions.txt
902    - doc/images/Zephyr-Kite-in-tree.png
903    - doc/index-tex.rst
904    - doc/index.rst
905    - doc/kconfig.rst
906    - doc/known-warnings.txt
907    - doc/templates/sample.tmpl
908    - doc/templates/board.tmpl
909    - boards/index.rst
910  files-exclude:
911    - doc/releases/migration-guide-*
912    - doc/releases/release-notes-*
913    - doc/develop/test/
914  labels:
915    - "area: Documentation"
916
917Documentation Infrastructure:
918  status: maintained
919  maintainers:
920    - gmarull
921  collaborators:
922    - carlescufi
923    - nashif
924    - kartben
925  files:
926    - doc/_*/
927    - doc/CMakeLists.txt
928    - doc/conf.py
929    - doc/Makefile
930    - doc/zephyr.doxyfile.in
931  labels:
932    - "area: Documentation Infrastructure"
933
934Release Notes:
935  status: maintained
936  maintainers:
937    - nashif
938    - aescolar
939  collaborators:
940    - kartben
941  files:
942    - doc/releases/migration-guide-*
943    - doc/releases/release-notes-*
944  labels:
945    - "Release Notes"
946
947"Drivers: ADC":
948  status: maintained
949  maintainers:
950    - anangl
951  collaborators:
952    - decsny
953  files:
954    - drivers/adc/
955    - include/zephyr/drivers/adc.h
956    - tests/drivers/adc/
957    - samples/drivers/adc/
958    - include/zephyr/drivers/adc/
959    - doc/hardware/peripherals/adc.rst
960    - tests/drivers/build_all/adc/
961    - include/zephyr/dt-bindings/adc/
962    - dts/bindings/adc/
963  labels:
964    - "area: ADC"
965  tests:
966    - drivers.adc
967
968"Drivers: Audio":
969  status: odd fixes
970  collaborators:
971    - lyakh
972    - lgirdwood
973    - marc-hb
974    - kv2019i
975  files:
976    - drivers/audio/
977    - include/zephyr/audio/
978    - doc/hardware/peripherals/audio/
979  labels:
980    - "area: Audio"
981
982"Drivers: bbram":
983  status: maintained
984  maintainers:
985    - yperess
986  files:
987    - tests/drivers/bbram/
988    - drivers/bbram/
989    - include/zephyr/drivers/bbram.h
990    - doc/hardware/peripherals/bbram.rst
991  labels:
992    - "area: Battery Backed RAM (bbram)"
993  tests:
994    - drivers.bbram
995
996"Drivers: Aux display":
997  status: maintained
998  maintainers:
999    - thedjnK
1000  collaborators:
1001    - xingrz
1002  files:
1003    - include/zephyr/drivers/auxdisplay.h
1004    - drivers/auxdisplay/*
1005    - dts/bindings/auxdisplay/*
1006    - doc/hardware/peripherals/auxdisplay.rst
1007  labels:
1008    - "area: Aux display"
1009  tests:
1010    - sample.drivers.auxdisplay
1011
1012"Drivers: CAN":
1013  status: maintained
1014  maintainers:
1015    - henrikbrixandersen
1016  collaborators:
1017    - alexanderwachter
1018    - martinjaeger
1019    - str4t0m
1020  files:
1021    - boards/shields/mcp2515/
1022    - boards/shields/tcan4550evm/
1023    - doc/connectivity/canbus/
1024    - doc/hardware/peripherals/can/
1025    - drivers/can/
1026    - drivers/net/canbus.c
1027    - dts/bindings/can/
1028    - dts/bindings/phy/can-transceiver*
1029    - include/zephyr/canbus/
1030    - include/zephyr/devicetree/can.h
1031    - include/zephyr/drivers/can.h
1032    - include/zephyr/drivers/can/
1033    - include/zephyr/net/canbus.h
1034    - include/zephyr/net/socketcan*.h
1035    - samples/drivers/can/
1036    - samples/modules/canopennode/
1037    - samples/net/sockets/can/
1038    - samples/subsys/canbus/
1039    - scripts/west_commands/runners/canopen_program.py
1040    - subsys/canbus/
1041    - subsys/net/l2/canbus/
1042    - tests/drivers/build_all/can/
1043    - tests/drivers/can/
1044    - tests/net/socket/can/
1045    - tests/subsys/canbus/
1046  labels:
1047    - "area: CAN"
1048  tests:
1049    - drivers.can
1050    - canbus
1051
1052"Drivers: Charger":
1053  status: maintained
1054  maintainers:
1055    - rriveramcrus
1056  collaborators:
1057    - RobertZ2011
1058  files:
1059    - drivers/charger/
1060    - dts/bindings/charger/
1061    - include/zephyr/drivers/charger.h
1062    - tests/drivers/charger/
1063    - doc/hardware/peripherals/charger.rst
1064    - tests/drivers/build_all/charger/
1065    - samples/drivers/charger/
1066  labels:
1067    - "area: Charger"
1068  tests:
1069    - drivers.charger
1070
1071"Drivers: Clock control":
1072  status: maintained
1073  maintainers:
1074    - nordic-krch
1075  files:
1076    - drivers/clock_control/
1077    - dts/bindings/clock/
1078    - include/zephyr/drivers/clock_control.h
1079    - include/zephyr/dt-bindings/clock/
1080    - tests/drivers/clock_control/
1081    - include/zephyr/drivers/clock_control/
1082    - doc/hardware/peripherals/clock_control.rst
1083  labels:
1084    - "area: Clock control"
1085  tests:
1086    - drivers.clock
1087
1088"Drivers: Console":
1089  status: odd fixes
1090  files:
1091    - drivers/console/
1092    - include/zephyr/drivers/console/
1093    - tests/drivers/console/
1094    - samples/subsys/console/
1095  labels:
1096    - "area: Console"
1097  tests:
1098    - drivers.console
1099
1100"Drivers: Coredump":
1101  status: maintained
1102  maintainers:
1103    - mrkhldn
1104  files:
1105    - drivers/coredump/
1106    - dts/bindings/coredump/
1107    - include/zephyr/drivers/coredump.h
1108    - tests/drivers/coredump/
1109    - doc/hardware/peripherals/coredump.rst
1110  labels:
1111    - "area: Coredump"
1112  tests:
1113    - debug.codedump
1114
1115"Drivers: Counter":
1116  status: maintained
1117  maintainers:
1118    - nordic-krch
1119  files:
1120    - drivers/counter/
1121    - include/zephyr/drivers/counter.h
1122    - tests/drivers/counter/
1123    - doc/hardware/peripherals/counter.rst
1124    - samples/drivers/counter/
1125    - tests/drivers/build_all/counter/
1126  labels:
1127    - "area: Counter"
1128  tests:
1129    - drivers.counter
1130
1131"Drivers: Crypto":
1132  status: maintained
1133  maintainers:
1134    - ceolin
1135  files:
1136    - drivers/crypto/
1137    - dts/bindings/crypto/
1138    - include/zephyr/crypto/
1139    - samples/drivers/crypto/
1140    - tests/crypto/
1141    - doc/services/crypto/
1142  labels:
1143    - "area: Crypto / RNG"
1144  tests:
1145    - crypto
1146
1147"Drivers: DAC":
1148  status: maintained
1149  maintainers:
1150    - martinjaeger
1151  files:
1152    - drivers/dac/
1153    - include/zephyr/drivers/dac.h
1154    - tests/drivers/dac/
1155    - samples/drivers/dac/
1156    - doc/hardware/peripherals/dac.rst
1157    - tests/drivers/build_all/dac/
1158  labels:
1159    - "area: DAC"
1160  tests:
1161    - drivers.dac
1162
1163"Drivers: DAI":
1164  status: maintained
1165  maintainers:
1166    - kv2019i
1167    - LaurentiuM1234
1168  collaborators:
1169    - lgirdwood
1170    - juimonen
1171    - iuliana-prodan
1172    - dbaluta
1173  files:
1174    - drivers/dai/
1175    - doc/hardware/peripherals/audio/dai.rst
1176    - include/zephyr/drivers/dai.h
1177  labels:
1178    - "area: DAI"
1179
1180"Drivers: Devmux":
1181  status: maintained
1182  maintainers:
1183    - cfriedt
1184  files:
1185    - drivers/misc/devmux/
1186    - include/zephyr/drivers/misc/devmux/
1187    - tests/drivers/console_switching/
1188  labels:
1189    - "area: Devmux"
1190  tests:
1191    - drivers.devmux
1192
1193"Drivers: DMA":
1194  status: maintained
1195  maintainers:
1196    - teburd
1197  files:
1198    - drivers/dma/
1199    - tests/drivers/dma/
1200    - include/zephyr/drivers/dma/
1201    - doc/hardware/peripherals/dma.rst
1202    - include/zephyr/drivers/dma.h
1203    - include/zephyr/dt-bindings/dma/
1204  labels:
1205    - "area: DMA"
1206  tests:
1207    - drivers.dma
1208
1209"Drivers: EDAC":
1210  status: maintained
1211  maintainers:
1212    - finikorg
1213  files:
1214    - drivers/edac/
1215    - dts/bindings/edac/
1216    - include/zephyr/drivers/edac.h
1217    - samples/subsys/edac/
1218    - tests/subsys/edac/
1219    - doc/hardware/peripherals/edac/
1220  labels:
1221    - "area: EDAC"
1222  tests:
1223    - edac
1224
1225"Drivers: EEPROM":
1226  status: maintained
1227  maintainers:
1228    - henrikbrixandersen
1229  files:
1230    - drivers/eeprom/
1231    - include/zephyr/drivers/eeprom/eeprom_fake.h
1232    - dts/bindings/mtd/*eeprom*
1233    - include/zephyr/drivers/eeprom.h
1234    - samples/drivers/eeprom/
1235    - tests/drivers/eeprom/
1236    - tests/drivers/*/eeprom/
1237    - doc/hardware/peripherals/eeprom/
1238  labels:
1239    - "area: EEPROM"
1240  tests:
1241    - drivers.eeprom
1242
1243"Drivers: Entropy":
1244  status: maintained
1245  maintainers:
1246    - ceolin
1247  files:
1248    - drivers/entropy/
1249    - include/zephyr/drivers/entropy.h
1250    - tests/drivers/entropy/
1251    - doc/hardware/peripherals/entropy.rst
1252  labels:
1253    - "area: Crypto / RNG"
1254  tests:
1255    - drivers.entropy
1256
1257"Drivers: ESPI":
1258  status: maintained
1259  maintainers:
1260    - albertofloyd
1261  collaborators:
1262    - VenkatKotakonda
1263    - jvasanth1
1264  files:
1265    - drivers/espi/
1266    - include/zephyr/drivers/espi.h
1267    - include/zephyr/dt-bindings/espi/
1268    - samples/drivers/espi/
1269    - dts/bindings/espi/
1270    - doc/hardware/peripherals/espi.rst
1271    - include/zephyr/drivers/espi_saf.h
1272    - tests/drivers/espi/
1273  labels:
1274    - "area: eSPI"
1275  tests:
1276    - sample.drivers.espi
1277    - drivers.espi
1278
1279"Drivers: Ethernet":
1280  status: odd fixes
1281  collaborators:
1282    - decsny
1283    - lmajewski
1284    - pdgendt
1285  files:
1286    - drivers/ethernet/
1287    - include/zephyr/dt-bindings/ethernet/
1288    - tests/drivers/build_all/ethernet/
1289    - dts/bindings/ethernet/
1290    - tests/drivers/ethernet/
1291    - include/zephyr/drivers/ethernet/
1292  labels:
1293    - "area: Ethernet"
1294  tests:
1295    - net.ethernet
1296
1297"Drivers: Flash":
1298  status: maintained
1299  maintainers:
1300    - de-nordic
1301  files:
1302    - drivers/flash/
1303    - dts/bindings/flash_controller/
1304    - include/zephyr/drivers/flash.h
1305    - samples/drivers/flash_shell/
1306    - samples/drivers/soc_flash_nrf/
1307    - tests/drivers/flash/
1308    - doc/hardware/peripherals/flash.rst
1309    - include/zephyr/drivers/flash/
1310    - tests/drivers/flash_simulator/
1311  labels:
1312    - "area: Flash"
1313  tests:
1314    - drivers.flash
1315
1316"Drivers: FPGA":
1317  status: maintained
1318  maintainers:
1319    - cfriedt
1320  collaborators:
1321    - tgorochowik
1322    - fkokosinski
1323    - msierszulski
1324  files:
1325    - drivers/fpga/
1326    - dts/bindings/fpga/
1327    - include/zephyr/drivers/fpga.h
1328    - samples/drivers/fpga/
1329    - tests/drivers/build_all/fpga/
1330  labels:
1331    - "area: FPGA"
1332  tests:
1333    - drivers.fpga
1334
1335"Drivers: Fuel Gauge":
1336  status: maintained
1337  maintainers:
1338    - aaronemassey
1339    - teburd
1340  files:
1341    - drivers/fuel_gauge/
1342    - dts/bindings/fuel-gauge/
1343    - include/zephyr/drivers/fuel_gauge.h
1344    - tests/drivers/fuel_gauge/
1345    - doc/hardware/peripherals/fuel_gauge.rst
1346  labels:
1347    - "area: Fuel Gauge"
1348  tests:
1349    - drivers.fuel_gauge
1350
1351"Drivers: GPIO":
1352  status: odd fixes
1353  collaborators:
1354    - henrikbrixandersen
1355    - mnkp
1356  files:
1357    - doc/hardware/peripherals/gpio.rst
1358    - drivers/gpio/
1359    - include/zephyr/drivers/gpio/
1360    - include/zephyr/drivers/gpio.h
1361    - include/zephyr/dt-bindings/gpio/
1362    - tests/drivers/gpio/
1363    - tests/drivers/build_all/gpio/
1364  labels:
1365    - "area: GPIO"
1366  tests:
1367    - drivers.gpio
1368
1369"Drivers: GNSS":
1370  status: maintained
1371  maintainers:
1372    - bjarki-andreasen
1373  collaborators:
1374    - tomi-font
1375    - fabiobaltieri
1376  files:
1377    - doc/hardware/peripherals/gnss.rst
1378    - drivers/gnss/
1379    - include/zephyr/drivers/gnss.h
1380    - include/zephyr/drivers/gnss/
1381    - tests/drivers/build_all/gnss/
1382    - tests/drivers/gnss/
1383  labels:
1384    - "area: GNSS"
1385  tests:
1386    - drivers.gnss
1387
1388"Drivers: HW Info":
1389  status: maintained
1390  maintainers:
1391    - alexanderwachter
1392  files:
1393    - drivers/hwinfo/
1394    - dts/bindings/hwinfo/
1395    - include/zephyr/drivers/hwinfo.h
1396    - tests/drivers/hwinfo/
1397    - doc/hardware/peripherals/hwinfo.rst
1398  labels:
1399    - "area: HWINFO"
1400  tests:
1401    - drivers.hwinfo
1402
1403"Drivers: Hardware Spinlock":
1404  status: odd fixes
1405  files:
1406    - drivers/hwspinlock/
1407    - dts/bindings/hwspinlock/
1408    - include/zephyr/drivers/hwspinlock.h
1409  labels:
1410    - "area: Hardware Spinlock"
1411
1412"Drivers: I2C":
1413  status: maintained
1414  maintainers:
1415    - teburd
1416  files:
1417    - drivers/i2c/
1418    - include/zephyr/drivers/i2c/
1419    - dts/bindings/i2c/
1420    - include/zephyr/drivers/i2c.h
1421    - tests/drivers/i2c/
1422    - doc/hardware/peripherals/i2c.rst
1423    - include/zephyr/dt-bindings/i2c/
1424    - tests/boards/*/i2c/
1425    - tests/drivers/*/i2c/
1426    - samples/drivers/i2c/
1427  labels:
1428    - "area: I2C"
1429  tests:
1430    - drivers.i2c
1431
1432"Drivers: I2S":
1433  status: maintained
1434  maintainers:
1435    - anangl
1436  files:
1437    - doc/hardware/peripherals/audio/i2s.rst
1438    - drivers/i2s/
1439    - dts/bindings/i2s/
1440    - include/zephyr/drivers/i2s.h
1441    - tests/drivers/i2s/
1442    - samples/drivers/i2s/
1443  labels:
1444    - "area: I2S"
1445  tests:
1446    - drivers.i2s
1447
1448"Drivers: I3C":
1449  status: maintained
1450  maintainers:
1451    - dcpleung
1452  collaborators:
1453    - XenuIsWatching
1454  files:
1455    - drivers/i3c/
1456    - dts/bindings/i3c/
1457    - include/zephyr/drivers/i3c.h
1458    - include/zephyr/drivers/i3c/
1459    - doc/hardware/peripherals/i3c.rst
1460    - tests/drivers/build_all/i3c/
1461  labels:
1462    - "area: I3C"
1463  tests:
1464    - drivers.i3c
1465
1466"Drivers: IEEE 802.15.4":
1467  status: maintained
1468  maintainers:
1469    - fgrandel
1470  collaborators:
1471    - rlubos
1472    - ankuns
1473    - cfriedt
1474    - jukkar
1475  files:
1476    - drivers/ieee802154/
1477    - include/zephyr/drivers/ieee802154/
1478    - include/zephyr/net/ieee802154_radio.h
1479    - tests/drivers/build_all/ieee802154/
1480  labels:
1481    - "area: IEEE 802.15.4"
1482  tests:
1483    - drivers.ieee802154
1484
1485"Drivers: Mbox":
1486  status: maintained
1487  maintainers:
1488    - carlocaione
1489  files:
1490    - include/zephyr/drivers/mbox.h
1491    - drivers/mbox/
1492    - samples/drivers/mbox/
1493    - dts/bindings/mbox/
1494    - doc/hardware/peripherals/mbox.rst
1495  labels:
1496    - "area: mbox"
1497  tests:
1498    - sample.drivers.mbox
1499
1500"Drivers: MEMC":
1501  status: odd fixes
1502  files:
1503    - drivers/memc/
1504    - samples/drivers/memc/
1505    - tests/drivers/memc/
1506  labels:
1507    - "area: MEMC"
1508  tests:
1509    - samples.drivers.memc
1510    - drivers.memc
1511
1512"Drivers: MDIO":
1513  status: odd fixes
1514  collaborators:
1515    - decsny
1516  files:
1517    - doc/hardware/peripherals/mdio.rst
1518    - drivers/mdio/
1519    - include/zephyr/drivers/mdio.h
1520    - tests/drivers/build_all/mdio/
1521    - dts/bindings/mdio/
1522  labels:
1523    - "area: MDIO"
1524  tests:
1525    - drivers.mdio
1526
1527"Drivers: MIPI-DSI":
1528  status: odd fixes
1529  files:
1530    - drivers/mipi_dsi/
1531    - doc/hardware/peripherals/mipi_dsi.rst
1532    - include/zephyr/drivers/mipi_dsi.h
1533    - include/zephyr/drivers/mipi_dsi/
1534    - tests/drivers/mipi_dsi/
1535    - include/zephyr/dt-bindings/mipi_dsi/
1536    - dts/bindings/mipi-dsi/
1537  labels:
1538    - "area: MIPI-DSI"
1539  tests:
1540    - drivers.mipi_dsi
1541
1542"Drivers: MSPI":
1543  status: maintained
1544  maintainers:
1545    - swift-tk
1546  files:
1547    - drivers/mspi/
1548    - drivers/memc/*mspi*
1549    - drivers/flash/*mspi*
1550    - include/zephyr/drivers/mspi.h
1551    - include/zephyr/drivers/mspi/
1552    - samples/drivers/mspi/
1553    - tests/drivers/mspi/
1554    - doc/hardware/peripherals/mspi.rst
1555    - dts/bindings/mspi/
1556    - dts/bindings/mtd/mspi*
1557  labels:
1558    - "area: MSPI"
1559  tests:
1560    - drivers.mspi
1561
1562"Drivers: Reset":
1563  status: odd fixes
1564  collaborators:
1565    - decsny
1566  files:
1567    - drivers/reset/
1568    - include/zephyr/drivers/reset.h
1569    - dts/bindings/reset/
1570
1571"Interrupt Handling":
1572  status: odd fixes
1573  files:
1574    - drivers/interrupt_controller/
1575    - dts/bindings/interrupt-controller/
1576    - include/zephyr/drivers/interrupt_controller/
1577    - include/zephyr/dt-bindings/interrupt-controller/
1578    - include/zephyr/irq*
1579    - include/zephyr/sw_isr_table.h
1580    - include/zephyr/shared_irq.h
1581    - tests/drivers/interrupt_controller/
1582    - tests/drivers/build_all/interrupt_controller/
1583  labels:
1584    - "area: Interrupt Controller"
1585  tests:
1586    - drivers.interrupt_controller
1587
1588"Drivers: IPM":
1589  status: odd fixes
1590  collaborators:
1591    - dcpleung
1592  files:
1593    - drivers/ipm/
1594    - samples/drivers/ipm/
1595    - dts/bindings/ipm/
1596    - tests/drivers/ipm/
1597    - doc/hardware/peripherals/ipm.rst
1598    - include/zephyr/drivers/ipm.h
1599  description: >-
1600    Inter-processor mailboxes
1601  labels:
1602    - "area: IPM"
1603  tests:
1604    - drivers.ipm
1605
1606"Drivers: kscan":
1607  status: maintained
1608  maintainers:
1609    - albertofloyd
1610  collaborators:
1611    - VenkatKotakonda
1612  files:
1613    - drivers/kscan/
1614    - include/zephyr/drivers/kscan.h
1615    - samples/drivers/kscan/
1616    - tests/drivers/kscan/
1617    - dts/bindings/kscan/
1618    - doc/hardware/peripherals/kscan.rst
1619  labels:
1620    - "area: Kscan"
1621  tests:
1622    - drivers.kscan
1623
1624"Drivers: LED":
1625  status: maintained
1626  maintainers:
1627    - Mani-Sadhasivam
1628    - simonguinot
1629  collaborators:
1630    - bbilas
1631  files:
1632    - drivers/led/
1633    - include/zephyr/drivers/led/
1634    - include/zephyr/drivers/led.h
1635    - samples/drivers/led_*/
1636    - tests/drivers/led/
1637    - doc/hardware/peripherals/led.rst
1638    - tests/drivers/build_all/led/
1639    - dts/bindings/led/
1640  labels:
1641    - "area: LED"
1642  tests:
1643    - drivers.led
1644
1645"Drivers: LED Strip":
1646  status: maintained
1647  maintainers:
1648    - simonguinot
1649  collaborators:
1650    - mbolivar-ampere
1651    - soburi
1652    - thedjnK
1653  files:
1654    - drivers/led_strip/
1655    - dts/bindings/led_strip/
1656    - include/zephyr/drivers/led_strip.h
1657    - tests/drivers/build_all/led_strip/
1658    - include/zephyr/drivers/led_strip/
1659  labels:
1660    - "area: LED"
1661  tests:
1662    - drivers.led_strip
1663
1664"Drivers: MFD":
1665  status: odd fixes
1666  collaborators:
1667    - gmarull
1668    - aasinclair
1669  files:
1670    - drivers/mfd/
1671    - include/zephyr/drivers/mfd/
1672    - dts/bindings/mfd/
1673    - tests/drivers/build_all/mfd/
1674  labels:
1675    - "area: MFD"
1676  tests:
1677    - drivers.mfd
1678
1679"Drivers: Modem":
1680  status: maintained
1681  maintainers:
1682    - rerickson1
1683  files:
1684    - drivers/modem/
1685    - tests/drivers/build_all/modem/
1686    - dts/bindings/modem/
1687    - include/zephyr/drivers/modem/
1688  labels:
1689    - "area: Modem Drivers"
1690  tests:
1691    - drivers.modem
1692
1693"Drivers: Regulators":
1694  status: maintained
1695  maintainers:
1696    - aasinclair
1697  collaborators:
1698    - danieldegrasse
1699    - gmarull
1700  files:
1701    - drivers/regulator/
1702    - include/zephyr/drivers/regulator/
1703    - include/zephyr/drivers/regulator.h
1704    - include/zephyr/dt-bindings/regulator/
1705    - tests/drivers/regulator/
1706    - tests/drivers/build_all/regulator/
1707    - doc/hardware/peripherals/regulators.rst
1708    - dts/bindings/regulator/
1709  labels:
1710    - "area: Regulators"
1711  tests:
1712    - drivers.regulator
1713
1714"Drivers: Retained Memory":
1715  status: maintained
1716  maintainers:
1717    - nordicjm
1718  files:
1719    - drivers/retained_mem/
1720    - dts/bindings/retained_mem/
1721    - include/zephyr/drivers/retained_mem.h
1722    - tests/drivers/retained_mem/
1723    - doc/hardware/peripherals/retained_mem.rst
1724    - dts/bindings/retained_mem/
1725  labels:
1726    - "area: Retained Memory"
1727  tests:
1728    - drivers.retained_mem
1729
1730"Drivers: RTC":
1731  status: maintained
1732  maintainers:
1733    - bjarki-andreasen
1734  files:
1735    - drivers/rtc/
1736    - include/zephyr/drivers/rtc/
1737    - tests/drivers/rtc/
1738    - doc/hardware/peripherals/rtc.rst
1739    - include/zephyr/drivers/rtc.h
1740    - tests/drivers/build_all/rtc/
1741    - dts/bindings/rtc/
1742  labels:
1743    - "area: RTC"
1744  tests:
1745    - drivers.rtc
1746
1747"Drivers: PCI":
1748  status: maintained
1749  maintainers:
1750    - dcpleung
1751  files:
1752    - drivers/pcie/
1753    - include/zephyr/drivers/pcie/
1754    - doc/hardware/peripherals/pcie.rst
1755    - dts/bindings/pcie/
1756  labels:
1757    - "area: PCI"
1758
1759"Drivers: PECI":
1760  status: maintained
1761  maintainers:
1762    - albertofloyd
1763  collaborators:
1764    - VenkatKotakonda
1765  files:
1766    - drivers/peci/
1767    - include/zephyr/drivers/peci.h
1768    - samples/drivers/peci/
1769    - doc/hardware/peripherals/peci.rst
1770    - dts/bindings/peci/
1771  labels:
1772    - "area: PECI"
1773  tests:
1774    - samples.drivers.peci
1775
1776"Drivers: Pin Control":
1777  status: maintained
1778  maintainers:
1779    - gmarull
1780  files:
1781    - doc/hardware/pinctrl/
1782    - include/zephyr/drivers/pinctrl/
1783    - include/zephyr/drivers/pinctrl.h
1784    - drivers/pinctrl/
1785    - tests/drivers/pinctrl/
1786    - dts/bindings/pinctrl/
1787    - include/zephyr/dt-bindings/pinctrl/
1788  labels:
1789    - "area: Pinctrl"
1790  tests:
1791    - drivers.pinctrl
1792
1793"Drivers: PS2":
1794  status: odd fixes
1795  files:
1796    - drivers/ps2/
1797    - doc/hardware/peripherals/ps2.rst
1798    - include/zephyr/drivers/ps2.h
1799    - samples/drivers/ps2/
1800    - dts/bindings/ps2/
1801  labels:
1802    - "area: PS2"
1803  tests:
1804    - sample.drivers.espi.ps2
1805
1806"Drivers: PTP Clock":
1807  status: maintained
1808  maintainers:
1809    - tbursztyka
1810  files:
1811    - drivers/ptp_clock/
1812    - include/zephyr/drivers/ptp_clock.h
1813  labels:
1814    - "area: Clocks"
1815
1816"Drivers: PM CPU ops":
1817  status: maintained
1818  maintainers:
1819    - carlocaione
1820  collaborators:
1821    - gdengi
1822    - nbalabak
1823  files:
1824    - drivers/pm_cpu_ops/
1825    - include/zephyr/drivers/pm_cpu_ops/
1826    - include/zephyr/drivers/pm_cpu_ops.h
1827    - include/zephyr/arch/arm64/arm-smccc.h
1828    - dts/bindings/pm_cpu_ops/
1829  labels:
1830    - "area: PM CPU ops"
1831
1832"Drivers: PWM":
1833  status: maintained
1834  maintainers:
1835    - anangl
1836  collaborators:
1837    - henrikbrixandersen
1838  files:
1839    - drivers/pwm/
1840    - dts/bindings/pwm/
1841    - tests/drivers/pwm/
1842    - include/zephyr/*/pwms.h
1843    - doc/hardware/peripherals/pwm.rst
1844    - tests/drivers/build_all/pwm/
1845    - include/zephyr/drivers/pwm.h
1846    - include/zephyr/drivers/pwm/
1847  labels:
1848    - "area: PWM"
1849  tests:
1850    - drivers.pwm
1851
1852"Drivers: SDHC":
1853  status: maintained
1854  maintainers:
1855    - danieldegrasse
1856  files:
1857    - drivers/sdhc/
1858    - tests/drivers/sdhc/
1859    - include/zephyr/drivers/sdhc.h
1860    - dts/bindings/sdhc/
1861    - doc/hardware/peripherals/sdhc.rst
1862  labels:
1863    - "area: Disk Access"
1864  tests:
1865    - drivers.sdhc
1866
1867"Drivers: Serial/UART":
1868  status: maintained
1869  maintainers:
1870    - dcpleung
1871  files:
1872    - drivers/serial/
1873    - include/zephyr/drivers/uart.h
1874    - include/zephyr/drivers/uart/
1875    - dts/bindings/serial/
1876    - samples/drivers/uart/
1877    - tests/drivers/uart/
1878    - tests/drivers/build_all/uart/
1879    - doc/hardware/peripherals/uart.rst
1880    - include/zephyr/drivers/serial/
1881    - include/zephyr/drivers/uart_pipe.h
1882  labels:
1883    - "area: UART"
1884  tests:
1885    - drivers.uart
1886
1887"Drivers: Sensors":
1888  status: maintained
1889  maintainers:
1890    - MaureenHelm
1891  collaborators:
1892    - avisconti
1893    - teburd
1894    - yperess
1895    - tristan-google
1896    - ubieda
1897    - jeppenodgaard
1898  files:
1899    - drivers/sensor/
1900    - include/zephyr/drivers/sensor.h
1901    - include/zephyr/drivers/sensor_data_types.h
1902    - samples/sensor/
1903    - tests/drivers/sensor/
1904    - dts/bindings/sensor/
1905    - include/zephyr/drivers/sensor/
1906    - include/zephyr/dt-bindings/sensor/
1907    - doc/hardware/peripherals/sensor/
1908    - tests/drivers/build_all/sensor/
1909  labels:
1910    - "area: Sensors"
1911  tests:
1912    - drivers.sensors
1913
1914"Drivers: SMBus":
1915  status: maintained
1916  maintainers:
1917    - finikorg
1918  files:
1919    - drivers/smbus/
1920    - dts/bindings/smbus/
1921    - include/zephyr/drivers/smbus.h
1922    - samples/drivers/smbus/
1923    - tests/drivers/smbus/
1924    - doc/hardware/peripherals/smbus.rst
1925  labels:
1926    - "area: SMBus"
1927  tests:
1928    - drivers.smbus
1929
1930"Drivers: SPI":
1931  status: maintained
1932  maintainers:
1933    - tbursztyka
1934  collaborators:
1935    - teburd
1936  files:
1937    - drivers/spi/
1938    - include/zephyr/drivers/spi.h
1939    - tests/drivers/spi/
1940    - dts/bindings/spi/
1941    - doc/hardware/peripherals/spi.rst
1942  labels:
1943    - "area: SPI"
1944  tests:
1945    - drivers.spi
1946
1947"Drivers: System timer":
1948  status: maintained
1949  maintainers:
1950    - andyross
1951  collaborators:
1952    - teburd
1953  files:
1954    - drivers/timer/
1955    - include/zephyr/drivers/timer/
1956    - dts/bindings/timer/
1957  labels:
1958    - "area: Timer"
1959
1960"Drivers: Video":
1961  status: odd fixes
1962  collaborators:
1963    - loicpoulain
1964  files:
1965    - drivers/video/
1966    - include/zephyr/drivers/video.h
1967    - include/zephyr/drivers/video-controls.h
1968    - doc/hardware/peripherals/video.rst
1969    - tests/drivers/*/video/
1970    - dts/bindings/video/
1971  labels:
1972    - "area: Video"
1973  tests:
1974    - drivers.video
1975
1976"Drivers: W1":
1977  status: maintained
1978  maintainers:
1979    - str4t0m
1980  collaborators:
1981    - casparfriedrich
1982  files:
1983    - doc/hardware/peripherals/w1.rst
1984    - drivers/w1/
1985    - dts/bindings/w1/
1986    - include/zephyr/drivers/w1.h
1987    - include/zephyr/drivers/sensor/w1_sensor.h
1988    - tests/drivers/w1/
1989    - samples/drivers/w1/
1990  labels:
1991    - "area: W1"
1992  tests:
1993    - drivers.w1
1994
1995"Drivers: Watchdog":
1996  status: odd fixes
1997  collaborators:
1998    - katsuster
1999    - martinjaeger
2000  files:
2001    - doc/hardware/peripherals/watchdog.rst
2002    - drivers/watchdog/
2003    - dts/bindings/watchdog/
2004    - include/zephyr/drivers/watchdog.h
2005    - samples/drivers/watchdog/
2006    - tests/drivers/watchdog/
2007    - tests/drivers/build_all/watchdog/
2008  labels:
2009    - "area: Watchdog"
2010  tests:
2011    - drivers.watchdog
2012
2013"Drivers: Wi-Fi":
2014  status: maintained
2015  maintainers:
2016    - jukkar
2017  collaborators:
2018    - rlubos
2019    - kludentwo
2020    - krish2718
2021  files:
2022    - drivers/wifi/
2023    - dts/bindings/wifi/
2024  labels:
2025    - "area: Wi-Fi"
2026
2027"Drivers: Wi-Fi es-WiFi":
2028  status: odd fixes
2029  collaborators:
2030    - loicpoulain
2031  files:
2032    - drivers/wifi/eswifi/
2033  description: >-
2034    Inventek es-WiFi
2035
2036  labels:
2037    - "area: Wi-Fi"
2038
2039"Drivers: Memory Management":
2040  status: maintained
2041  maintainers:
2042    - dcpleung
2043  collaborators:
2044    - ceolin
2045    - edersondisouza
2046    - jxstelter
2047  files:
2048    - include/zephyr/drivers/mm/
2049    - drivers/mm/
2050    - tests/boards/intel_adsp/mm/
2051    - dts/bindings/mm/
2052  labels:
2053    - "area: Memory Management"
2054
2055"Drivers: MIPI DBI":
2056  status: maintained
2057  maintainers:
2058    - danieldegrasse
2059  files:
2060    - drivers/mipi_dbi/
2061    - dts/bindings/mipi-dbi/
2062  labels:
2063    - "area: Display Controller"
2064
2065"Drivers: Virtualization":
2066  status: maintained
2067  maintainers:
2068    - tbursztyka
2069  files:
2070    - drivers/virtualization/
2071    - tests/drivers/virtualization/
2072    - dts/bindings/virtualization/
2073    - include/zephyr/drivers/virtualization/
2074    - doc/services/virtualization/
2075    - include/zephyr/drivers/virtualization/ivshmem.h
2076  labels:
2077    - "area: Virtualization"
2078  tests:
2079    - drivers.virtualization
2080
2081EC Host Commands:
2082  status: maintained
2083  maintainers:
2084    - niedzwiecki-dawid
2085  files:
2086    - subsys/mgmt/ec_host_cmd/
2087    - include/zephyr/mgmt/ec_host_cmd/
2088    - tests/subsys/mgmt/ec_host_cmd/
2089  labels:
2090    - "area: ec_host_cmd"
2091  tests:
2092    - mgmt.ec_host_cmd
2093
2094Xen Platform:
2095  status: maintained
2096  maintainers:
2097    - povergoing
2098  collaborators:
2099    - SgrrZhf
2100    - lorc
2101    - firscity
2102    - luca-fancellu
2103  files:
2104    - include/zephyr/xen/
2105    - drivers/xen/
2106    - arch/arm64/core/xen/
2107    - soc/xen/
2108    - boards/xen/
2109    - dts/bindings/xen/
2110  labels:
2111    - "area: Xen Platform"
2112
2113Filesystems:
2114  status: maintained
2115  maintainers:
2116    - de-nordic
2117  collaborators:
2118    - Laczen
2119    - nashif
2120  files:
2121    - include/zephyr/fs/
2122    - samples/subsys/fs/
2123    - subsys/fs/
2124    - tests/subsys/fs/
2125    - dts/bindings/fs/
2126  labels:
2127    - "area: File System"
2128  tests:
2129    - filesystem
2130
2131"Filesystems: FatFs reentrant support":
2132  status: maintained
2133  maintainers:
2134    - ox11
2135  files:
2136    - modules/fatfs/zfs_ffsystem.c
2137    - tests/subsys/fs/fat_fs_api/src/test_fat_file_reentrant.c
2138  labels:
2139    - "area: File System"
2140  tests:
2141    - filesystem.fat
2142
2143Formatted Output:
2144  status: maintained
2145  maintainers:
2146    - nordic-krch
2147  collaborators:
2148    - dcpleung
2149  files:
2150    - include/zephyr/sys/cbprintf*
2151    - tests/unit/cbprintf/
2152    - tests/lib/cbprintf_*/
2153    - lib/os/cbprintf*
2154    - lib/os/Kconfig.cbprintf
2155    - doc/services/formatted_output.rst
2156  labels:
2157    - "area: Formatting Output"
2158  tests:
2159    - utilities.prf
2160    - libraries.cbprintf
2161
2162Google Platforms:
2163  status: maintained
2164  maintainers:
2165    - fabiobaltieri
2166    - keith-zephyr
2167  files:
2168    - boards/google/
2169    - samples/boards/google_*/
2170
2171Hash Utilities:
2172  status: maintained
2173  maintainers:
2174    - cfriedt
2175  files:
2176    - include/zephyr/sys/hash_*
2177    - lib/hash/
2178    - samples/basic/hash_map/
2179    - tests/lib/hash_*/
2180  description: >-
2181    Hash Functions and Hash Maps (Hash Tables)
2182  labels:
2183    - "area: hash utils"
2184  tests:
2185    - libraries.hash_function
2186    - libraries.hash_map
2187
2188Input:
2189  status: maintained
2190  maintainers:
2191    - fabiobaltieri
2192  collaborators:
2193    - gmarull
2194  files:
2195    - doc/services/input/
2196    - drivers/input/
2197    - dts/bindings/input/
2198    - include/zephyr/dt-bindings/input/
2199    - include/zephyr/input/
2200    - samples/subsys/input/
2201    - subsys/input/
2202    - tests/drivers/build_all/input/
2203    - tests/subsys/input/
2204    - tests/drivers/input/
2205  description: >-
2206    Input subsystem and drivers
2207  labels:
2208    - "area: Input"
2209  tests:
2210    - drivers.input
2211    - input
2212
2213IPC:
2214  status: maintained
2215  maintainers:
2216    - carlocaione
2217    - arnopo
2218  files:
2219    - include/zephyr/ipc/
2220    - samples/subsys/ipc/
2221    - subsys/ipc/
2222    - tests/subsys/ipc/
2223    - doc/services/ipc/
2224    - dts/bindings/ipc/
2225  description: >-
2226    Inter-Processor Communication
2227  labels:
2228    - "area: IPC"
2229  tests:
2230    - ipc
2231
2232JSON Web Token:
2233  status: maintained
2234  maintainers:
2235    - d3zd3z
2236  collaborators:
2237    - mrfuchs
2238    - sir-branch
2239  files:
2240    - subsys/jwt/
2241    - include/zephyr/data/
2242    - lib/utils/json.c
2243    - tests/subsys/jwt/
2244    - tests/lib/json/
2245  labels:
2246    - "area: JSON"
2247  tests:
2248    - libraries.encoding.json
2249    - libraries.encoding.jwt
2250
2251Kconfig:
2252  status: odd fixes
2253  collaborators:
2254    - tejlmand
2255    - nashif
2256  files:
2257    - scripts/kconfig/
2258    - doc/build/kconfig/
2259    - Kconfig.zephyr
2260    - tests/kconfig/configdefault/
2261    - tests/misc/kconfigoptions/
2262  labels:
2263    - "area: Kconfig"
2264  description: >-
2265    See https://docs.zephyrproject.org/latest/build/kconfig/index.html and
2266    https://docs.zephyrproject.org/latest/hardware/porting/board_porting.html#default-board-configuration
2267  tests:
2268    - kconfig
2269
2270Kernel:
2271  status: maintained
2272  maintainers:
2273    - andyross
2274    - peter-mitsis
2275  collaborators:
2276    - nashif
2277    - ceolin
2278    - dcpleung
2279    - cfriedt
2280    - npitre
2281    - TaiJuWu
2282  files:
2283    - doc/kernel/
2284    - include/zephyr/kernel*.h
2285    - include/zephyr/spinlock.h
2286    - include/zephyr/fatal.h
2287    - kernel/
2288    - tests/kernel/
2289    - include/zephyr/sys_clock.h
2290    - samples/kernel/
2291    - include/zephyr/kernel/
2292    - tests/lib/p4workq/
2293  files-exclude:
2294    - tests/kernel/mem_protect/
2295  labels:
2296    - "area: Kernel"
2297  tests:
2298    - kernel
2299
2300Utilities:
2301  status: maintained
2302  maintainers:
2303    - andyross
2304    - nashif
2305  collaborators:
2306    - dcpleung
2307    - peter-mitsis
2308  files:
2309    - lib/crc/
2310    - lib/utils/
2311    - tests/unit/timeutil/
2312    - tests/unit/time_units/
2313    - tests/unit/rbtree/
2314    - tests/unit/math_extras/
2315    - tests/unit/crc/
2316    - tests/unit/base64/
2317    - tests/unit/math_extras/
2318    - tests/unit/list/
2319    - tests/unit/intmath/
2320    - tests/unit/pot/
2321    - tests/lib/time/
2322    - tests/lib/onoff/
2323    - tests/lib/sys_util/
2324    - tests/lib/sprintf/
2325    - tests/lib/ringbuffer/
2326    - tests/lib/notify/
2327    - tests/lib/linear_range/
2328  labels:
2329    - "area: Utilities"
2330  tests:
2331    - utilities
2332    - libraries.ring_buffer
2333    - libraries.linear_range
2334
2335Base OS:
2336  status: maintained
2337  maintainers:
2338    - andyross
2339    - nashif
2340  collaborators:
2341    - dcpleung
2342    - peter-mitsis
2343  files:
2344    - include/zephyr/sys/
2345    - lib/os/
2346    - tests/misc/print_format/
2347    - tests/lib/p4workq/
2348    - tests/lib/fdtable/
2349  files-exclude:
2350    - include/zephyr/sys/cbprintf*
2351    - tests/unit/cbprintf/
2352    - tests/lib/cbprintf_*/
2353    - lib/os/cbprintf*
2354    - lib/os/Kconfig.cbprintf
2355    - include/zephyr/sys/mem_manage.h
2356    - include/zephyr/sys/mpsc_pbuf.h
2357    - include/zephyr/sys/mpsc_packet.h
2358    - lib/os/mpsc_pbuf.c
2359  labels:
2360    - "area: Base OS"
2361  tests:
2362    - printk
2363
2364Heap Management:
2365  status: maintained
2366  maintainers:
2367    - npitre
2368    - andyross
2369  files:
2370    - tests/lib/shared_multi_heap/
2371    - lib/heap/
2372    - tests/lib/heap/
2373    - tests/lib/heap_align/
2374    - tests/lib/multi_heap/
2375    - include/zephyr/multi_heap/
2376
2377Memory Management:
2378  status: maintained
2379  maintainers:
2380    - carlocaione
2381    - dcpleung
2382  files:
2383    - subsys/mem_mgmt/
2384    - lib/mem_blocks/
2385    - tests/subsys/mem_mgmt/
2386    - include/zephyr/mem_mgmt/mem_attr_heap.h
2387    - tests/lib/mem_alloc/
2388    - tests/lib/mem_blocks/
2389    - doc/services/mem_mgmt/
2390    - include/zephyr/mem_mgmt/mem_attr.h
2391    - tests/lib/mem_blocks_stats/
2392    - tests/drivers/mm/
2393  tests:
2394    - mem_mgmt
2395
2396Ezurio platforms:
2397  status: maintained
2398  maintainers:
2399    - rerickson1
2400  collaborators:
2401    - greg-leach
2402  files:
2403    - boards/ezurio/
2404  labels:
2405    - "platform: Ezurio"
2406
2407Linker Scripts:
2408  status: maintained
2409  maintainers:
2410    - nashif
2411  files:
2412    - include/zephyr/linker/
2413    - tests/misc/iterable_sections/
2414    - tests/application_development/code_relocation/
2415  labels:
2416    - "area: Linker Scripts"
2417  tests:
2418    - linker
2419
2420Little FS:
2421  status: odd fixes
2422  files:
2423    - subsys/fs/Kconfig.littlefs
2424    - subsys/fs/littlefs_fs.c
2425    - tests/subsys/fs/littlefs/
2426  description: >-
2427    Little FS
2428  labels:
2429    - "area: File System"
2430  tests:
2431    - filesystem.littlefs
2432
2433Logging:
2434  status: maintained
2435  maintainers:
2436    - nordic-krch
2437  collaborators:
2438    - dcpleung
2439  files:
2440    - include/zephyr/logging/
2441    - include/zephyr/sys/mpsc_pbuf.h
2442    - include/zephyr/sys/mpsc_packet.h
2443    - lib/os/mpsc_pbuf.c
2444    - doc/kernel/data_structures/mpsc_pbuf.rst
2445    - tests/lib/mpsc_pbuf/
2446    - samples/subsys/logging/
2447    - subsys/logging/
2448    - tests/subsys/logging/
2449    - scripts/logging/
2450    - doc/services/logging/
2451    - tests/lib/spsc_pbuf/
2452  labels:
2453    - "area: Logging"
2454  tests:
2455    - logging
2456
2457LoRa and LoRaWAN:
2458  status: maintained
2459  maintainers:
2460    - JordanYates
2461  collaborators:
2462    - Mani-Sadhasivam
2463    - martinjaeger
2464    - mniestroj
2465  files:
2466    - drivers/lora/
2467    - include/zephyr/drivers/lora.h
2468    - samples/drivers/lora/
2469    - include/zephyr/lorawan/
2470    - subsys/lorawan/
2471    - samples/subsys/lorawan/
2472    - doc/connectivity/lora_lorawan/index.rst
2473  labels:
2474    - "area: LoRa"
2475  tests:
2476    - sample.driver.lora
2477    - lorawan
2478
2479MAINTAINERS file:
2480  status: maintained
2481  maintainers:
2482    - MaureenHelm
2483  collaborators:
2484    - nashif
2485    - stephanosio
2486  files:
2487    - MAINTAINERS.yml
2488  labels:
2489    - "area: Process"
2490  description: >-
2491    Zephyr Maintainers File
2492
2493Mbed TLS:
2494  status: maintained
2495  maintainers:
2496    - d3zd3z
2497    - ceolin
2498  collaborators:
2499    - ithinuel
2500    - valeriosetti
2501  files:
2502    - tests/crypto/mbedtls/
2503    - tests/benchmarks/mbedtls/
2504  labels:
2505    - "area: Crypto / RNG"
2506  description: >-
2507    Mbed TLS module implementing the PSA Crypto API and TLS.
2508  tests:
2509    - benchmark.crypto.mbedtls
2510    - crypto.mbedtls
2511
2512MCU Manager:
2513  status: maintained
2514  maintainers:
2515    - nordicjm
2516  collaborators:
2517    - de-nordic
2518  files:
2519    - subsys/mgmt/mcumgr/
2520    - include/zephyr/mgmt/mcumgr/
2521    - samples/subsys/mgmt/mcumgr/
2522    - tests/subsys/mgmt/mcumgr/
2523    - doc/services/device_mgmt/
2524    - scripts/utils/migrate_mcumgr_kconfigs.py
2525  labels:
2526    - "area: mcumgr"
2527  tests:
2528    - mgmt.mcumgr
2529
2530Modbus:
2531  status: maintained
2532  maintainers:
2533    - jfischer-no
2534  files:
2535    - samples/subsys/modbus/
2536    - include/zephyr/modbus/
2537    - tests/subsys/modbus/
2538    - subsys/modbus/
2539    - doc/services/modbus/
2540  labels:
2541    - "area: modbus"
2542  tests:
2543    - modbus
2544
2545Modem:
2546  status: maintained
2547  maintainers:
2548    - bjarki-andreasen
2549  collaborators:
2550    - tomi-font
2551  files:
2552    - subsys/modem/
2553    - include/zephyr/modem/
2554    - tests/subsys/modem/
2555    - doc/services/modem/
2556    - samples/net/cellular_modem/
2557    - include/zephyr/drivers/cellular.h
2558  labels:
2559    - "area: Modem"
2560  tests:
2561    - modem
2562
2563OSDP:
2564  status: maintained
2565  maintainers:
2566    - sidcha
2567  collaborators:
2568    - adakus
2569    - r2r0
2570  files:
2571    - subsys/mgmt/osdp/
2572    - include/zephyr/mgmt/osdp.h
2573    - samples/subsys/mgmt/osdp/
2574  labels:
2575    - "area: OSDP"
2576  tests:
2577    - sample.mgmt.osdp
2578
2579hawkBit:
2580  status: maintained
2581  maintainers:
2582    - maass-hamburg
2583  collaborators:
2584    - ycsin
2585  files:
2586    - subsys/mgmt/hawkbit/
2587    - include/zephyr/mgmt/hawkbit.h
2588    - samples/subsys/mgmt/hawkbit/
2589  labels:
2590    - "area: hawkBit"
2591  tests:
2592    - sample.net.hawkbit
2593
2594"mgmt: updatehub":
2595  status: maintained
2596  maintainers:
2597    - nandojve
2598  files:
2599    - subsys/mgmt/updatehub/
2600    - include/zephyr/mgmt/updatehub.h
2601    - samples/subsys/mgmt/updatehub/
2602  labels:
2603    - "area: updatehub"
2604  description: >-
2605    UpdateHub embedded Firmware Over-The-Air (FOTA) upgrade agent
2606  tests:
2607    - sample.net.updatehub
2608
2609Native POSIX/Sim and POSIX arch:
2610  status: maintained
2611  maintainers:
2612    - aescolar
2613  files:
2614    - arch/posix/
2615    - boards/native/common/
2616    - boards/native/native_*/
2617    - boards/native/doc/
2618    - boards/native/*.rst
2619    - drivers/*/*posix*
2620    - drivers/*/*native*
2621    - drivers/*/*/*posix*
2622    - drivers/*/*/*native*
2623    - dts/posix/
2624    - include/zephyr/arch/posix/
2625    - scripts/native_simulator/
2626    - scripts/valgrind.supp
2627    - soc/native/
2628    - tests/boards/native_sim/
2629  labels:
2630    - "area: native port"
2631  description: >-
2632    POSIX architecture and SOC, native_posix & native_sim boards, and related drivers
2633  tests:
2634    - boards.native_sim
2635
2636Networking:
2637  status: maintained
2638  maintainers:
2639    - rlubos
2640    - jukkar
2641  collaborators:
2642    - pdgendt
2643    - tbursztyka
2644    - ssharks
2645  files:
2646    - scripts/net/
2647    - drivers/net/
2648    - include/zephyr/net/
2649    - samples/net/
2650    - subsys/net/
2651    - doc/connectivity/networking/
2652    - tests/net/
2653    - tests/unit/net_timeout/
2654  files-exclude:
2655    - doc/connectivity/networking/api/gptp.rst
2656    - doc/connectivity/networking/api/ieee802154.rst
2657    - doc/connectivity/networking/api/ptp.rst
2658    - doc/connectivity/networking/api/wifi.rst
2659    - include/zephyr/net/gptp.h
2660    - include/zephyr/net/ieee802154*.h
2661    - include/zephyr/net/ptp.h
2662    - include/zephyr/net/wifi*.h
2663    - include/zephyr/net/buf.h
2664    - include/zephyr/net/dhcpv4*.h
2665    - samples/net/gptp/
2666    - samples/net/sockets/coap_*/
2667    - samples/net/lwm2m_client/
2668    - samples/net/wifi/
2669    - samples/net/dhcpv4_client/
2670    - subsys/net/buf*.c
2671    - subsys/net/l2/ethernet/gptp/
2672    - subsys/net/l2/ieee802154/
2673    - subsys/net/l2/wifi/
2674    - subsys/net/lib/coap/
2675    - subsys/net/lib/config/ieee802154*
2676    - subsys/net/lib/lwm2m/
2677    - subsys/net/lib/ptp/
2678    - subsys/net/lib/tls_credentials/
2679    - subsys/net/lib/dhcpv4/
2680    - tests/net/dhcpv4/
2681    - tests/net/ieee802154/
2682    - tests/net/wifi/
2683  labels:
2684    - "area: Networking"
2685  tests:
2686    - net
2687
2688"Networking: BSD sockets":
2689  status: maintained
2690  maintainers:
2691    - rlubos
2692    - jukkar
2693  files:
2694    - samples/net/sockets/
2695    - subsys/net/lib/sockets/
2696    - tests/net/socket/
2697  labels:
2698    - "area: Networking"
2699    - "area: Sockets"
2700  tests:
2701    - net.socket
2702
2703"Networking: Buffers":
2704  status: maintained
2705  maintainers:
2706    - jhedberg
2707  collaborators:
2708    - rlubos
2709    - tbursztyka
2710    - jukkar
2711  files:
2712    - include/zephyr/net/buf.h
2713    - subsys/net/buf*.c
2714    - tests/net/buf/
2715  labels:
2716    - "area: Networking Buffers"
2717  tests:
2718    - net.buf
2719
2720"Networking: Connection Manager":
2721  status: maintained
2722  maintainers:
2723    - rlubos
2724  collaborators:
2725    - glarsennordic
2726    - jukkar
2727  files:
2728    - include/zephyr/net/conn_mgr*.h
2729    - subsys/net/conn_mgr/
2730    - tests/net/conn_mgr_monitor/
2731    - tests/net/conn_mgr_conn/
2732    - doc/connectivity/networking/conn_mgr/
2733  labels:
2734    - "area: Networking"
2735  tests:
2736    - net.conn_mgr
2737
2738"Networking: CoAP":
2739  status: maintained
2740  maintainers:
2741    - rlubos
2742  collaborators:
2743    - pdgendt
2744  files:
2745    - subsys/net/lib/coap/
2746    - samples/net/sockets/coap_*/
2747    - tests/net/lib/coap/
2748  labels:
2749    - "area: Networking"
2750  tests:
2751    - net.coap
2752
2753"Networking: DHCPv4":
2754  status: maintained
2755  maintainers:
2756    - rlubos
2757    - jukkar
2758  collaborators:
2759    - maass-hamburg
2760  files:
2761    - subsys/net/lib/dhcpv4/
2762    - samples/net/dhcpv4_client/
2763    - tests/net/dhcpv4/
2764    - include/zephyr/net/dhcpv4*.h
2765  labels:
2766    - "area: Networking"
2767  tests:
2768    - net.dhcpv4_client
2769    - net.dhcpv4_server
2770
2771"Networking: gPTP":
2772  status: maintained
2773  maintainers:
2774    - jukkar
2775  collaborators:
2776    - fgrandel
2777  files:
2778    - doc/connectivity/networking/api/gptp.rst
2779    - include/zephyr/net/gptp.h
2780    - samples/net/gptp/
2781    - subsys/net/l2/ethernet/gptp/
2782  labels:
2783    - "area: Networking"
2784  tests:
2785    - sample.net.gptp
2786
2787"Networking: LWM2M":
2788  status: maintained
2789  maintainers:
2790    - rlubos
2791  collaborators:
2792    - SeppoTakalo
2793  files:
2794    - samples/net/lwm2m_client/
2795    - tests/net/lib/lwm2m/
2796    - subsys/net/lib/lwm2m/
2797  labels:
2798    - "area: LWM2M"
2799  tests:
2800    - net.lwm2m
2801
2802"Networking: MQTT":
2803  status: maintained
2804  maintainers:
2805    - rlubos
2806  files:
2807    - subsys/net/lib/mqtt/
2808    - tests/net/lib/mqtt_*/
2809    - samples/net/cloud/mqtt_azure/
2810    - samples/net/mqtt_publisher/
2811  files-exclude:
2812    - tests/net/lib/mqtt_sn*/
2813  labels:
2814    - "area: Networking"
2815  tests:
2816    - net.mqtt
2817
2818"Networking: MQTT-SN":
2819  status: maintained
2820  maintainers:
2821    - rlubos
2822  collaborators:
2823    - BeckmaR
2824  files:
2825    - subsys/net/lib/mqtt_sn/
2826    - tests/net/lib/mqtt_sn*/
2827    - samples/net/mqtt_sn_publisher/
2828  labels:
2829    - "area: Networking"
2830  tests:
2831    - net.mqtt_sn
2832
2833"Networking: PTP":
2834  status: maintained
2835  maintainers:
2836    - awojasinski
2837  files:
2838    - doc/connectivity/networking/api/ptp.rst
2839    - include/zephyr/net/ptp.h
2840    - subsys/net/lib/ptp/
2841    - samples/net/ptp/
2842  labels:
2843    - "area: Networking"
2844  tests:
2845    - sample.net.ptp
2846
2847"Networking: Native IEEE 802.15.4":
2848  status: maintained
2849  maintainers:
2850    - fgrandel
2851  collaborators:
2852    - rlubos
2853    - jukkar
2854  files:
2855    - doc/connectivity/networking/api/ieee802154.rst
2856    - include/zephyr/net/ieee802154*.h
2857    - subsys/net/l2/ieee802154/
2858    - subsys/net/lib/config/ieee802154*
2859    - tests/net/ieee802154/
2860  labels:
2861    - "area: IEEE 802.15.4"
2862  tests:
2863    - net.ieee802154
2864
2865"Networking: OpenThread":
2866  status: maintained
2867  maintainers:
2868    - rlubos
2869  collaborators:
2870    - pdgendt
2871    - canisLupus1313
2872    - mariuszpos
2873    - edmont
2874    - maciejbaczmanski
2875  files:
2876    - subsys/net/l2/openthread/
2877    - samples/net/openthread/
2878    - tests/subsys/openthread/
2879  labels:
2880    - "area: Networking"
2881    - "area: OpenThread"
2882  tests:
2883    - openthread
2884
2885"Networking: Wi-Fi":
2886  status: maintained
2887  maintainers:
2888    - jukkar
2889  collaborators:
2890    - rlubos
2891    - krish2718
2892  files:
2893    - doc/connectivity/networking/api/wifi.rst
2894    - include/zephyr/net/wifi*.h
2895    - subsys/net/l2/wifi/
2896    - samples/net/wifi/
2897    - tests/net/wifi/
2898  labels:
2899    - "area: Networking"
2900    - "area: Wi-Fi"
2901  tests:
2902    - net.wifi
2903
2904NIOS-2 arch:
2905  status: maintained
2906  maintainers:
2907    - nashif
2908  files:
2909    - arch/nios2/
2910    - dts/nios2/intel/
2911    - boards/common/nios2.board.cmake
2912    - soc/altr/*nios2*/
2913    - include/zephyr/arch/nios2/
2914    - tests/boards/altera_max10/
2915    - boards/qemu/nios2/
2916    - boards/altr/max10/
2917    - scripts/support/quartus-flash.py
2918  labels:
2919    - "area: NIOS2"
2920  tests:
2921    - boards.altera_max10
2922
2923nRF BSIM:
2924  status: maintained
2925  maintainers:
2926    - aescolar
2927  files:
2928    - boards/native/nrf_bsim/
2929    - tests/boards/nrf52_bsim/
2930    - tests/bsim/
2931    - doc/develop/test/bsim.rst
2932    - .github/workflows/bsim-tests*
2933  files-regex-exclude:
2934    - tests\/bsim\/.*\/.*\.([ch]|conf)
2935    - tests\/bsim\/.*\/(CMakeLists|Kconfig).*
2936  labels:
2937    - "platform: nRF BSIM"
2938  tests:
2939    - boards.nrf52_bsim
2940
2941Open AMP:
2942  status: maintained
2943  maintainers:
2944    - carlocaione
2945  files:
2946    - lib/open-amp/
2947    - samples/subsys/ipc/openamp/
2948    - samples/subsys/ipc/openamp_rsc_table/
2949    - samples/subsys/ipc/rpmsg_service/
2950  labels:
2951    - "area: Open AMP"
2952  tests:
2953    - sample.ipc.openamp
2954
2955POSIX API layer:
2956  status: maintained
2957  maintainers:
2958    - cfriedt
2959  collaborators:
2960    - ycsin
2961  files:
2962    - include/zephyr/posix/
2963    - lib/posix/
2964    - tests/posix/
2965    - samples/posix/
2966    - tests/lib/fdtable/
2967    - doc/services/portability/posix/
2968  labels:
2969    - "area: POSIX"
2970  tests:
2971    - libraries.fdtable
2972    - portability.posix
2973
2974Power management:
2975  status: maintained
2976  maintainers:
2977    - ceolin
2978  collaborators:
2979    - nashif
2980    - teburd
2981    - tmleman
2982    - JordanYates
2983  files:
2984    - include/zephyr/pm/
2985    - samples/subsys/pm/
2986    - subsys/pm/
2987    - tests/subsys/pm/
2988    - doc/services/pm/
2989    - drivers/power_domain/
2990  labels:
2991    - "area: Power Management"
2992  tests:
2993    - pm
2994
2995"Quicklogic Platform":
2996  status: odd fixes
2997  files:
2998    - soc/quicklogic/
2999    - dts/arm/quicklogic/
3000  labels:
3001    - "platform: Quicklogic"
3002
3003RISCV arch:
3004  status: maintained
3005  maintainers:
3006    - fkokosinski
3007    - kgugala
3008    - tgorochowik
3009  collaborators:
3010    - mgielda
3011    - katsuster
3012    - edersondisouza
3013    - carlocaione
3014    - npitre
3015    - ycsin
3016  files:
3017    - arch/riscv/
3018    - boards/enjoydigital/litex_vexriscv/
3019    - boards/lowrisc/opentitan_earlgrey/
3020    - boards/qemu/riscv*/
3021    - boards/sifive/
3022    - boards/sparkfun/red_v_things_plus/
3023    - boards/starfive/
3024    - dts/bindings/riscv/
3025    - dts/riscv/
3026    - include/zephyr/arch/riscv/
3027    - soc/common/riscv-privileged/
3028    - soc/sifive/
3029    - soc/starfive/
3030    - soc/qemu/virt_riscv/
3031    - tests/arch/riscv/
3032    - doc/hardware/arch/risc-v.rst
3033    - drivers/interrupt_controller/intc_plic.c
3034  labels:
3035    - "area: RISCV"
3036  tests:
3037    - arch.riscv
3038
3039Retention:
3040  status: maintained
3041  maintainers:
3042    - nordicjm
3043  files:
3044    - dts/bindings/retention/
3045    - include/zephyr/retention/
3046    - subsys/retention/
3047    - doc/services/retention/
3048  labels:
3049    - "area: Retention"
3050
3051Samples:
3052  status: maintained
3053  maintainers:
3054    - kartben
3055  collaborators:
3056    - nashif
3057  files:
3058    - samples/
3059  labels:
3060    - "area: Samples"
3061
3062Sensor Subsystem:
3063  status: maintained
3064  maintainers:
3065    - lixuzha
3066    - ghu0510
3067    - yperess
3068  collaborators:
3069    - qianruh
3070  files:
3071    - dts/bindings/sensor/zephyr,sensing.yaml
3072    - dts/bindings/sensor/zephyr,sensing*.yaml
3073    - include/zephyr/sensing/
3074    - doc/services/sensing/
3075    - subsys/sensing/
3076    - samples/subsys/sensing/
3077    - tests/subsys/sensing/
3078  labels:
3079    - "area: Sensor Subsystem"
3080  tests:
3081    - sample.sensing
3082    - sensing.api
3083
3084Stats:
3085  status: odd fixes
3086  files:
3087    - subsys/stats/
3088    - include/zephyr/stats/stats.h
3089  labels:
3090    - "area: Stats"
3091
3092Twister:
3093  status: maintained
3094  maintainers:
3095    - nashif
3096  collaborators:
3097    - PerMac
3098    - hakehuang
3099    - golowanow
3100    - gchwier
3101    - LukaszMrugala
3102    - KamilxPaszkiet
3103  files:
3104    - scripts/twister
3105    - scripts/schemas/twister/
3106    - scripts/pylib/twister/
3107    - scripts/tests/twister/
3108    - scripts/tests/twister_blackbox/
3109    - doc/develop/test/twister.rst
3110    - scripts/pylib/pytest-twister-harness/
3111    - doc/develop/test/pytest.rst
3112    - tests/test_config.yaml
3113    - scripts/utils/twister_to_list.py
3114    - tests/robot/common.robot
3115  labels:
3116    - "area: Twister"
3117
3118Settings:
3119  status: odd fixes
3120  files:
3121    - include/zephyr/settings/
3122    - subsys/settings/
3123    - tests/subsys/settings/
3124    - samples/subsys/settings/
3125    - doc/services/settings/
3126  labels:
3127    - "area: Settings"
3128  tests:
3129    - settings
3130
3131Shell:
3132  status: maintained
3133  maintainers:
3134    - jakub-uC
3135  collaborators:
3136    - carlescufi
3137  files:
3138    - include/zephyr/shell/
3139    - samples/subsys/shell/
3140    - subsys/shell/
3141    - tests/subsys/shell/
3142    - doc/services/shell/
3143  labels:
3144    - "area: Shell"
3145  tests:
3146    - shell
3147
3148Shields:
3149  status: maintained
3150  maintainers:
3151    - kartben
3152  collaborators:
3153    - avisconti
3154    - jfischer-no
3155    - erwango
3156  files:
3157    - boards/shields/
3158    - doc/hardware/porting/shields.rst
3159    - samples/shields/
3160  labels:
3161    - "area: Shields"
3162  tests:
3163    - sample.shields
3164
3165SPARC arch:
3166  status: odd fixes
3167  collaborators:
3168    - julius-barendt
3169  files:
3170    - arch/sparc/
3171    - include/zephyr/arch/sparc/
3172    - dts/sparc/
3173    - boards/qemu/leon3/
3174  labels:
3175    - "area: SPARC"
3176
3177Gaisler Platforms:
3178  status: odd fixes
3179  collaborators:
3180    - julius-barendt
3181  files:
3182    - dts/sparc/gaisler/
3183    - soc/gaisler/
3184    - boards/gaisler/
3185  labels:
3186    - "area: SPARC"
3187
3188State machine framework:
3189  status: maintained
3190  maintainers:
3191    - sambhurst
3192  collaborators:
3193    - keith-zephyr
3194    - glenn-andrews
3195  files:
3196    - doc/services/smf/
3197    - include/zephyr/smf.h
3198    - lib/smf/
3199    - tests/lib/smf/
3200    - samples/subsys/smf/
3201  labels:
3202    - "area: State Machine Framework"
3203  tests:
3204    - libraries.smf
3205
3206ADI Platforms:
3207  status: maintained
3208  maintainers:
3209    - MaureenHelm
3210  collaborators:
3211    - ozersa
3212    - ttmut
3213    - galak
3214    - microbuilder
3215  files:
3216    - boards/adi/
3217    - drivers/*/*max*
3218    - drivers/*/*max*/
3219    - drivers/dac/dac_ltc*
3220    - drivers/ethernet/eth_adin*
3221    - drivers/mdio/mdio_adin*
3222    - drivers/regulator/regulator_adp5360*
3223    - drivers/sensor/adi/
3224    - dts/arm/adi/
3225    - dts/bindings/*/adi,*
3226    - dts/bindings/*/lltc,*
3227    - dts/bindings/*/maxim,*
3228    - soc/adi/
3229  labels:
3230    - "platform: ADI"
3231
3232Broadcom Platforms:
3233  status: odd fixes
3234  files:
3235    - dts/arm/broadcom/
3236    - soc/brcm/
3237    - boards/brcm/
3238
3239GD32 Platforms:
3240  status: maintained
3241  maintainers:
3242    - cameled
3243    - nandojve
3244  collaborators:
3245    - gmarull
3246    - soburi
3247  files:
3248    - boards/gd/
3249    - drivers/*/*gd32*
3250    - dts/*/gd/
3251    - dts/bindings/*/*gd32*
3252    - scripts/west_commands/*/*gd32*
3253    - soc/gd/gd32/
3254  labels:
3255    - "platform: GD32"
3256  description: >-
3257    GigaDevice GD32 SOCs, dts files and related drivers. Starter and eval
3258    boards.
3259
3260Synopsys Platforms:
3261  status: maintained
3262  maintainers:
3263    - ruuddw
3264  collaborators:
3265    - abrodkin
3266    - evgeniy-paltsev
3267  files:
3268    - soc/snps/
3269    - boards/snps/
3270    - boards/qemu/arc/
3271    - samples/boards/arc_secure_services/
3272    - scripts/west_commands/runners/mdb.py
3273    - scripts/west_commands/tests/test_mdb.py
3274    - scripts/west_commands/runners/nsim.py
3275    - cmake/emu/nsim.cmake
3276    - drivers/serial/uart_hostlink.c
3277    - drivers/serial/Kconfig.hostlink
3278  labels:
3279    - "platform: Synopsys"
3280
3281Nuvoton NPCX Platforms:
3282  status: maintained
3283  maintainers:
3284    - MulinChao
3285    - ChiHuaL
3286  collaborators:
3287    - TomChang19
3288    - alvsun
3289    - sjg20
3290    - keith-zephyr
3291    - jackrosenthal
3292    - fabiobaltieri
3293  files:
3294    - soc/nuvoton/npcx/
3295    - boards/nuvoton/npcx*/
3296    - dts/arm/nuvoton/
3297    - dts/bindings/*/*npcx*
3298    - drivers/*/*_npcx*.c
3299  labels:
3300    - "platform: Nuvoton NPCX"
3301
3302Nuvoton Numicro Numaker Platforms:
3303  status: maintained
3304  maintainers:
3305    - cyliangtw
3306  collaborators:
3307    - ssekar15
3308  files:
3309    - soc/nuvoton/numaker/
3310    - soc/nuvoton/numicro/
3311    - boards/nuvoton/numaker*/
3312    - dts/arm/nuvoton/
3313    - dts/bindings/*/*numicro*
3314    - dts/bindings/*/*numaker*
3315    - drivers/*/*_numicro*
3316    - drivers/*/*_numaker*
3317  labels:
3318    - "platform: Nuvoton Numicro Numaker"
3319
3320Raspberry Pi Pico Platforms:
3321  status: maintained
3322  maintainers:
3323    - yonsch
3324  collaborators:
3325    - soburi
3326  files:
3327    - boards/raspberrypi/
3328    - boards/adafruit/kb2040/
3329    - boards/sparkfun/pro_micro_rp2040/
3330    - dts/arm/rpi_pico/
3331    - dts/bindings/*/raspberrypi,pico*
3332    - drivers/*/*rpi_pico
3333    - drivers/*/*rpi_pico*/
3334    - drivers/*/*rpi_pico*.c
3335    - soc/raspberrypi/
3336  labels:
3337    - "platform: Raspberry Pi Pico"
3338
3339Silabs Platforms:
3340  status: maintained
3341  maintainers:
3342    - jhedberg
3343  collaborators:
3344    - jerome-pouiller
3345    - asmellby
3346  files:
3347    - soc/silabs/
3348    - boards/silabs/
3349    - dts/arm/silabs/
3350    - dts/bindings/*/silabs*
3351    - drivers/*/*_gecko*
3352  labels:
3353    - "platform: Silabs"
3354
3355Intel Platforms (X86):
3356  status: maintained
3357  maintainers:
3358    - edersondisouza
3359  collaborators:
3360    - najumon1980
3361    - teburd
3362    - dcpleung
3363    - ceolin
3364  files:
3365    - boards/intel/adl/
3366    - boards/intel/ehl/
3367    - boards/intel/rpl/
3368    - dts/x86/intel/
3369    - soc/intel/atom/
3370    - soc/intel/lakemont/
3371    - soc/intel/*_lake/
3372    - drivers/timer/Kconfig.x86
3373    - drivers/timer/hpet.c
3374    - drivers/timer/apic*
3375  labels:
3376    - "platform: X86"
3377
3378Intel Platforms (Xtensa):
3379  status: maintained
3380  maintainers:
3381    - dcpleung
3382  collaborators:
3383    - andyross
3384    - lyakh
3385    - lgirdwood
3386    - marc-hb
3387    - kv2019i
3388    - ceolin
3389    - tmleman
3390    - softwarecki
3391    - jxstelter
3392    - marcinszkudlinski
3393    - nashif
3394  files:
3395    - boards/intel/adsp/
3396    - soc/intel/intel_adsp/
3397    - dts/xtensa/intel/
3398    - tests/boards/intel_adsp/
3399    - samples/boards/intel_adsp/
3400    - dts/bindings/*/intel,adsp*
3401    - scripts/west_commands/runners/intel_adsp.py
3402  labels:
3403    - "platform: Intel ADSP"
3404
3405Intel Platforms (ISH):
3406  status: maintained
3407  maintainers:
3408    - kwd-doodling
3409  collaborators:
3410    - teburd
3411    - likongintel
3412    - nashif
3413  files:
3414    - boards/intel/ish/
3415    - soc/intel/intel_ish/
3416    - dts/x86/intel/intel_ish*
3417    - dts/bindings/*/intel,sedi*
3418    - drivers/*/*sedi*
3419  labels:
3420    - "platform: Intel ISH"
3421
3422Intel Platforms (Agilex):
3423  status: maintained
3424  maintainers:
3425    - gdengi
3426  collaborators:
3427    - nbalabak
3428    - teikheng
3429  files:
3430    - boards/intel/socfpga/
3431    - soc/intel/intel_socfpga/
3432    - dts/arm64/intel/
3433    - dts/bindings/*/intel,agilex*
3434    - dts/arm/intel_socfpga_std/
3435  labels:
3436    - "platform: Intel SoC FPGA Agilex"
3437
3438NXP Drivers:
3439  status: maintained
3440  maintainers:
3441    - dleach02
3442  collaborators:
3443    - mmahadevan108
3444    - danieldegrasse
3445    - decsny
3446    - manuargue
3447    - dbaluta
3448    - MarkWangChinese
3449  files-regex:
3450    - ^drivers/.*nxp.*
3451    - ^drivers/.*mcux.*
3452  files:
3453    - drivers/*/*imx*
3454    - drivers/*/*lpc*.c
3455    - drivers/*/*mcux*.c
3456    - drivers/*/*.mcux
3457    - drivers/*/*.nxp
3458    - drivers/*/*nxp*
3459    - drivers/*/*kinetis*
3460    - drivers/misc/*/nxp*
3461    - include/zephyr/dt-bindings/*/*nxp*
3462    - include/zephyr/dt-bindings/*/*mcux*
3463    - include/zephyr/drivers/*/*nxp*
3464    - include/zephyr/drivers/*/*mcux*
3465    - arch/arm/core/mpu/nxp_mpu.c
3466    - dts/bindings/*/nxp*
3467  files-regex-exclude:
3468    - .*s32.*
3469  labels:
3470    - "platform: NXP Drivers"
3471  description: NXP Drivers
3472
3473NXP Platforms (MCU):
3474  status: maintained
3475  maintainers:
3476    - dleach02
3477  collaborators:
3478    - mmahadevan108
3479    - danieldegrasse
3480    - DerekSnell
3481    - yvanderv
3482    - EmilioCBen
3483    - decsny
3484    - butok
3485  files:
3486    - boards/nxp/mimxrt*/
3487    - boards/nxp/frdm*/
3488    - boards/nxp/lpcxpress*/
3489    - boards/nxp/twr_*/
3490    - boards/nxp/vmu*/
3491    - boards/nxp/*rw*/
3492    - soc/nxp/imxrt/
3493    - soc/nxp/kinetis/
3494    - soc/nxp/lpc/
3495    - soc/nxp/rw/
3496    - soc/nxp/mcx/
3497    - dts/arm/nxp/
3498    - samples/boards/nxp*/
3499  files-regex-exclude:
3500    - .*s32.*
3501  labels:
3502    - "platform: NXP"
3503  description: NXP MCU Platforms supported by MCUXpresso suite
3504
3505NXP Platforms (S32):
3506  status: maintained
3507  maintainers:
3508    - manuargue
3509  collaborators:
3510    - PetervdPerk-NXP
3511    - bperseghetti
3512    - Dat-NguyenDuy
3513  files:
3514    - boards/nxp/s32*/
3515    - boards/nxp/mr_canhubk3/
3516    - boards/nxp/ucans32k1sic/
3517    - boards/common/*nxp_s32*
3518    - soc/nxp/s32/
3519    - drivers/*/*nxp_s32*
3520    - drivers/misc/*nxp_s32*/
3521    - dts/bindings/*/nxp,s32*
3522    - dts/arm/nxp/*s32*
3523    - samples/boards/nxp_s32/
3524    - include/zephyr/dt-bindings/*/nxp-s32*
3525    - include/zephyr/dt-bindings/*/nxp_s32*
3526    - include/zephyr/drivers/*/*nxp_s32*
3527  labels:
3528    - "platform: NXP S32"
3529  description: NXP S32 platforms and S32-specific drivers
3530
3531NXP Platforms (MPU):
3532  status: maintained
3533  maintainers:
3534    - JiafeiPan
3535  collaborators:
3536    - dleach02
3537    - dbaluta
3538    - iuliana-prodan
3539    - danieldegrasse
3540    - decsny
3541    - yvanderv
3542  files:
3543    - dts/arm64/nxp/
3544    - soc/nxp/imx/
3545    - soc/nxp/layerscape/
3546  files-regex:
3547    - boards/nxp/m?imx[^(rt)].*/
3548  labels:
3549    - "platform: NXP MPU"
3550  description: NXP MPU platforms
3551
3552NXP Platforms (Xtensa):
3553  status: maintained
3554  maintainers:
3555    - dbaluta
3556  collaborators:
3557    - iuliana-prodan
3558  files:
3559    - soc/nxp/imx/*/adsp/
3560    - soc/nxp/imxrt/imxrt5xx/f1/
3561  labels:
3562    - "platform: NXP Xtensa"
3563  description: NXP Xtensa platforms
3564
3565Microchip MEC Platforms:
3566  status: maintained
3567  maintainers:
3568    - jvasanth1
3569  collaborators:
3570    - VenkatKotakonda
3571    - albertofloyd
3572  files:
3573    - boards/microchip/mec*/
3574    - dts/arm/microchip/
3575    - soc/microchip/mec/
3576    - drivers/*/*mchp*.c
3577    - tests/boards/mec15xxevb_assy6853/
3578    - tests/boards/mec172xevb_assy6906/
3579    - dts/bindings/*/microchip,*
3580  labels:
3581    - "platform: Microchip MEC"
3582
3583Microchip RISC-V Platforms:
3584  status: maintained
3585  maintainers:
3586    - fkokosinski
3587    - kgugala
3588    - tgorochowik
3589  files:
3590    - boards/microchip/m2gl025_miv/
3591    - boards/microchip/mpfs_icicle/
3592    - dts/riscv/microchip/
3593    - soc/microchip/miv/
3594  labels:
3595    - "platform: Microchip RISC-V"
3596
3597Microchip SAM Platforms:
3598  status: maintained
3599  maintainers:
3600    - nandojve
3601  collaborators:
3602    - attie-argentum
3603    - pdgendt
3604    - mnkp
3605    - stephanosio
3606  files:
3607    - boards/atmel/
3608    - dts/arm/atmel/
3609    - soc/atmel/
3610    - drivers/*/*sam*.c
3611    - dts/bindings/*/atmel,*
3612  labels:
3613    - "platform: Microchip SAM"
3614
3615nRF Platforms:
3616  status: maintained
3617  maintainers:
3618    - anangl
3619    - masz-nordic
3620  collaborators:
3621    - jaz1-nordic
3622    - kl-cruz
3623    - magp-nordic
3624    - nika-nordic
3625  files:
3626    - boards/nordic/
3627    - drivers/*/*nrf*.c
3628    - drivers/*/*nordic*/
3629    - soc/nordic/
3630    - samples/boards/nrf/
3631    - dts/*/nordic/
3632    - dts/bindings/*/nordic,*
3633    - tests/drivers/*/*nrf*/
3634    - snippets/nordic*/
3635  labels:
3636    - "platform: nRF"
3637
3638OpenTitan Platforms:
3639  status: maintained
3640  maintainers:
3641    - snematbakhsh
3642  files:
3643    - boards/lowrisc/opentitan_earlgrey/
3644    - drivers/*/*opentitan*
3645    - dts/bindings/*/*opentitan*
3646    - dts/riscv/lowrisc/*opentitan*
3647    - soc/lowrisc/opentitan/
3648  labels:
3649    - "platform: OpenTitan"
3650  description: >-
3651    OpenTitan boards, SOCs, dts files and related drivers.
3652
3653Renesas SmartBond Platforms:
3654  status: maintained
3655  maintainers:
3656    - ioannis-karachalios
3657    - andrzej-kaczmarek
3658    - blauret
3659  collaborators:
3660    - ydamigos
3661  files:
3662    - boards/renesas/da14*/
3663    - drivers/*/*smartbond*
3664    - drivers/pinctrl/renesas/smartbond/
3665    - dts/arm/renesas/smartbond/
3666    - dts/bindings/*/renesas,smartbond*
3667    - soc/renesas/smartbond/
3668  labels:
3669    - "platform: Renesas SmartBond"
3670  description: >-
3671    Renesas SmartBond SOCs, dts files, and related drivers. Renesas boards based
3672    on SmartBond SoCs.
3673
3674Renesas RA Platforms:
3675  status: maintained
3676  maintainers:
3677    - soburi
3678    - KhiemNguyenT
3679  collaborators:
3680    - duynguyenxa
3681    - thaoluonguw
3682  files:
3683    - boards/arduino/uno_r4/
3684    - boards/renesas/*ra8*/
3685    - drivers/*/*renesas_ra*
3686    - drivers/pinctrl/renesas/ra/
3687    - dts/arm/renesas/ra/
3688    - dts/bindings/*/*renesas,ra*
3689    - soc/renesas/ra/
3690  labels:
3691    - "platform: Renesas RA"
3692  description: >-
3693    Renesas RA SOCs, dts files, and related drivers. Boards based
3694    on Renesas RA SoCs.
3695
3696Renesas RZ Platforms:
3697  status: maintained
3698  maintainers:
3699    - tgorochowik
3700  files:
3701    - boards/renesas/rzt2m_*/
3702    - drivers/*/*rzt2m*
3703    - drivers/pinctrl/renesas/rz/
3704    - dts/arm/renesas/rz/
3705    - dts/bindings/*/*rzt2m*
3706    - soc/renesas/rzt2m/
3707  labels:
3708    - "platforms: Renesas RZ"
3709  description: >-
3710    Renesas RZ SOCs, dts files, and related drivers. Renesas boards based
3711    on RZ SoCs.
3712
3713Renesas R-Car Platforms:
3714  status: maintained
3715  maintainers:
3716    - aaillet
3717    - lorc
3718  collaborators:
3719    - xakep-amatop
3720  files:
3721    - boards/renesas/rcar_*/
3722    - drivers/*/*rcar*
3723    - drivers/clock_control/*cpg_mssr*
3724    - drivers/pinctrl/renesas/rcar/
3725    - dts/arm/renesas/rcar/
3726    - dts/arm64/renesas/
3727    - dts/bindings/*/*rcar*
3728    - soc/renesas/rcar/
3729  labels:
3730    - "platform: Renesas R-Car"
3731  description: >-
3732    Renesas R-Car SOCs, dts files (Cortex-R and Cortex-A sides).
3733    Renesas boards based on R-Car SOCs (Cortex-R and Cortex-A sides).
3734    Renesas R-Car related drivers.
3735
3736STM32 Platforms:
3737  status: maintained
3738  maintainers:
3739    - erwango
3740  collaborators:
3741    - FRASTM
3742    - gautierg-st
3743    - GeorgeCGV
3744    - marwaiehm-st
3745  files:
3746    - boards/st/
3747    - drivers/*/*stm32*.c
3748    - drivers/*/*stm32*.h
3749    - drivers/*/*/*stm32*
3750    - drivers/*/*stm32*
3751    - dts/arm/st/
3752    - dts/bindings/*/*stm32*
3753    - soc/st/stm32/
3754    - samples/boards/stm32/
3755  labels:
3756    - "platform: STM32"
3757  description: >-
3758    STM32 SOCs, dts files and related drivers. ST nucleo, disco and eval
3759    boards.
3760
3761Espressif Platforms:
3762  status: maintained
3763  maintainers:
3764    - sylvioalves
3765  collaborators:
3766    - LucasTambor
3767    - marekmatej
3768    - uLipe
3769  files:
3770    - drivers/*/*esp32*.c
3771    - boards/espressif/
3772    - soc/espressif/
3773    - dts/xtensa/espressif/
3774    - dts/riscv/espressif/
3775    - dts/bindings/*/*esp32*
3776    - samples/boards/esp32*/
3777    - tests/boards/espressif_esp32/
3778    - drivers/*/*esp32*/
3779  labels:
3780    - "platform: ESP32"
3781
3782ITE Platforms:
3783  status: maintained
3784  maintainers:
3785    - Dino-Li
3786    - GTLin08
3787    - RuibinChang
3788  collaborators:
3789    - jackrosenthal
3790    - keith-zephyr
3791    - brockus-zephyr
3792    - sjg20
3793  files:
3794    - boards/ite/
3795    - drivers/sensor/ite/
3796    - drivers/*/*it8xxx2*.c
3797    - drivers/*/*_ite_*
3798    - dts/bindings/*/ite*
3799    - dts/riscv/ite/
3800    - soc/ite/
3801  labels:
3802    - "platform: ITE"
3803
3804TI SimpleLink Platforms:
3805  status: maintained
3806  maintainers:
3807    - vaishnavachath
3808  collaborators:
3809    - vanti
3810  files:
3811    - boards/ti/cc*/
3812    - boards/ti/msp*/
3813    - drivers/*/*cc13*
3814    - drivers/*/*cc25*
3815    - drivers/*/*cc26*
3816    - drivers/*/*cc32*
3817    - dts/arm/ti/
3818    - dts/bindings/*/ti,*
3819    - soc/ti/simplelink/
3820    - dts/bindings/*/ti,*
3821    - modules/Kconfig.simplelink
3822  labels:
3823    - "platform: TI SimpleLink"
3824
3825TI K3 Platforms:
3826  status: maintained
3827  maintainers:
3828    - vaishnavachath
3829  collaborators:
3830    - gramsay0
3831    - dnltz
3832  files:
3833    - boards/phytec/phyboard_lyra/
3834    - boards/phytec/phyboard_electra/
3835    - boards/ti/*am62*/
3836    - drivers/*/*ti_k3*
3837    - dts/bindings/*/ti,k3*
3838    - soc/ti/k3/
3839  labels:
3840    - "platform: TI K3"
3841
3842TI Platforms:
3843  status: odd fixes
3844  files:
3845    - soc/ti/lm3s6965/
3846    - dts/arm/ti/lm3s6965.dtsi
3847  labels:
3848    - "platform: TI"
3849
3850Xilinx Platforms:
3851  status: odd fixes
3852  collaborators:
3853    - henrikbrixandersen
3854    - ibirnbaum
3855  files:
3856    - drivers/*/*xlnx*
3857    - dts/*/xilinx/
3858    - dts/bindings/*/*xlnx*
3859    - include/zephyr/*/*/*xlnx*
3860    - soc/xlnx/
3861  labels:
3862    - "platform: Xilinx"
3863
3864Infineon Platforms:
3865  status: maintained
3866  maintainers:
3867    - ifyall
3868  collaborators:
3869    - npal-cy
3870    - talih0
3871  files:
3872    - boards/cypress/
3873    - boards/infineon/
3874    - drivers/*/*ifx_cat1*
3875    - drivers/*/*xmc*
3876    - drivers/sensor/infineon/
3877    - dts/arm/infineon/
3878    - dts/bindings/*/*infineon*
3879    - soc/infineon/
3880  labels:
3881    - "platform: Infineon"
3882  description: >-
3883    Infineon SOCs, dts files and related drivers. Infineon Proto, Pioneer, Eval and Relax
3884    boards.
3885
3886LiteX Platforms:
3887  status: maintained
3888  maintainers:
3889    - tgorochowik
3890    - kgugala
3891    - fkokosinski
3892  collaborators:
3893    - mateusz-holenko
3894    - maass-hamburg
3895  files:
3896    - boards/enjoydigital/litex_vexriscv/
3897    - drivers/*/*litex*
3898    - drivers/*/Kconfig.litex
3899    - dts/bindings/*/litex*
3900    - dts/riscv/riscv32-litex-vexriscv.dtsi
3901    - include/zephyr/drivers/*/*litex*
3902    - samples/boards/litex/
3903    - samples/drivers/*litex/
3904    - soc/litex/
3905  labels:
3906    - "platform: LiteX"
3907
3908Panasonic Platforms:
3909  status: maintained
3910  maintainers:
3911    - pideu-sj
3912  files:
3913    - boards/panasonic/
3914  labels:
3915    - "platform: Panasonic"
3916
3917RTIO:
3918  status: maintained
3919  maintainers:
3920    - teburd
3921  collaborators:
3922    - yperess
3923    - ubieda
3924  files:
3925    - samples/subsys/rtio/
3926    - include/zephyr/rtio/
3927    - tests/subsys/rtio/
3928    - subsys/rtio/
3929    - doc/services/rtio/
3930  labels:
3931    - "area: RTIO"
3932  tests:
3933    - rtio
3934
3935Storage:
3936  status: odd fixes
3937  files:
3938    - subsys/storage/
3939    - include/zephyr/storage/
3940    - tests/subsys/storage/
3941    - doc/services/storage/
3942  labels:
3943    - "area: Storage"
3944  tests:
3945    - storage
3946
3947Sysbuild:
3948  status: maintained
3949  maintainers:
3950    - tejlmand
3951  collaborators:
3952    - nordicjm
3953    - "57300"
3954  files:
3955    - share/sysbuild/
3956    - samples/sysbuild/
3957    - doc/build/sysbuild/
3958  labels:
3959    - "area: Sysbuild"
3960  tests:
3961    - sample.sysbuild
3962
3963Task Watchdog:
3964  status: maintained
3965  maintainers:
3966    - martinjaeger
3967  files:
3968    - include/zephyr/task_wdt/
3969    - samples/subsys/task_wdt/
3970    - subsys/task_wdt/
3971    - doc/services/task_wdt/index.rst
3972  labels:
3973    - "area: Task Watchdog"
3974  tests:
3975    - sample.task_wdt
3976
3977"Drivers: Syscon":
3978  status: maintained
3979  maintainers:
3980    - carlocaione
3981  files:
3982    - include/zephyr/drivers/syscon.h
3983    - drivers/syscon/
3984    - tests/drivers/syscon/
3985  tests:
3986    - drivers.syscon
3987
3988TDK Sensors:
3989  status: maintained
3990  maintainers:
3991    - teburd
3992    - MaureenHelm
3993  files:
3994    - drivers/sensor/tdk/
3995  labels:
3996    - "area: Sensors"
3997  tests:
3998    - drivers.sensors
3999
4000"Drivers: Time Aware GPIO":
4001  status: maintained
4002  maintainers:
4003    - akanisetti
4004  files:
4005    - doc/hardware/peripherals/tgpio.rst
4006    - drivers/misc/timeaware_gpio/
4007    - include/zephyr/drivers/misc/timeaware_gpio/
4008    - samples/drivers/misc/timeaware_gpio/
4009  labels:
4010    - "area: Time Aware GPIO"
4011  tests:
4012    - sample.drivers.misc.timeaware_gpio
4013
4014TF-M Integration:
4015  status: maintained
4016  maintainers:
4017    - d3zd3z
4018  collaborators:
4019    - Vge0rge
4020    - ithinuel
4021    - valeriosetti
4022  files:
4023    - samples/tfm_integration/
4024    - modules/trusted-firmware-m/
4025    - doc/services/tfm/
4026  labels:
4027    - "area: TF-M"
4028  tests:
4029    - trusted-firmware-m
4030
4031
4032"Toolchain Integration":
4033  status: maintained
4034  maintainers:
4035    - tejlmand
4036  collaborators:
4037    - stephanosio
4038  files:
4039    - cmake/bintools/
4040    - cmake/compiler/
4041    - cmake/linker/
4042    - cmake/toolchain/
4043    - include/zephyr/toolchain/
4044    - include/zephyr/toolchain.h
4045  labels:
4046    - "area: Toolchains"
4047
4048"Toolchain ARC MWDT":
4049  status: maintained
4050  maintainers:
4051    - evgeniy-paltsev
4052    - abrodkin
4053  files:
4054    - cmake/*/arcmwdt/
4055    - include/zephyr/toolchain/mwdt.h
4056    - include/zephyr/linker/linker-tool-mwdt.h
4057    - lib/libc/arcmwdt/*
4058  labels:
4059    - "area: Toolchains"
4060
4061"Toolchain arm compiler 6":
4062  status: maintained
4063  maintainers:
4064    - tejlmand
4065  files:
4066    - cmake/*/armclang/
4067    - cmake/linker/armlink/
4068    - include/zephyr/toolchain/armclang.h
4069    - lib/libc/armstdc/*
4070  labels:
4071    - "area: Toolchains"
4072
4073"Toolchain oneApi":
4074  status: maintained
4075  maintainers:
4076    - nashif
4077  files:
4078    - cmake/*/oneApi/
4079    - cmake/compiler/icx/
4080  labels:
4081    - "area: Toolchains"
4082
4083Tracing:
4084  status: maintained
4085  maintainers:
4086    - nashif
4087  collaborators:
4088    - teburd
4089  files:
4090    - subsys/tracing/
4091    - scripts/tracing/
4092    - include/zephyr/tracing/
4093    - subsys/timing/
4094    - samples/subsys/tracing/
4095    - doc/services/tracing/
4096    - tests/subsys/tracing/
4097  labels:
4098    - "area: tracing"
4099  tests:
4100    - tracing
4101
4102USB:
4103  status: maintained
4104  maintainers:
4105    - jfischer-no
4106  collaborators:
4107    - tmon-nordic
4108  files:
4109    - drivers/usb/
4110    - dts/bindings/usb/
4111    - include/zephyr/*/usb/
4112    - include/zephyr/usb/
4113    - samples/subsys/usb/
4114    - subsys/usb/
4115    - tests/subsys/usb/
4116    - tests/drivers/usb/
4117    - tests/drivers/udc/
4118    - doc/connectivity/usb/
4119  labels:
4120    - "area: USB"
4121  tests:
4122    - usb
4123    - drivers.usb
4124
4125USB-C:
4126  status: maintained
4127  maintainers:
4128    - sambhurst
4129  collaborators:
4130    - keith-zephyr
4131  files:
4132    - drivers/usb_c/
4133    - dts/bindings/usb-c/
4134    - include/zephyr/*/usb_c/
4135    - include/zephyr/usb_c/
4136    - samples/subsys/usb_c/
4137    - subsys/usb/usb_c/
4138    - doc/connectivity/usb/pd/
4139    - doc/hardware/peripherals/usbc_vbus.rst
4140    - scripts/generate_usb_vif/
4141  labels:
4142    - "area: USB-C"
4143  tests:
4144    - sample.usbc
4145
4146Userspace:
4147  status: maintained
4148  maintainers:
4149    - dcpleung
4150  collaborators:
4151    - ceolin
4152  files:
4153    - include/zephyr/internal/syscall_handler.h
4154    - doc/kernel/usermode/kernelobjects.rst
4155    - include/zephyr/app_memory/
4156    - include/zephyr/linker/app_smem*.ld
4157    - tests/kernel/mem_protect/
4158    - samples/userspace/
4159    - include/zephyr/syscall.h
4160    - kernel/userspace*
4161    - scripts/build/gen_app_partitions.py
4162    - scripts/build/gen_kobject_list.py
4163    - scripts/build/gen_syscalls.py
4164    - scripts/build/process_gperf.py
4165    - scripts/build/gen_relocate_app.py
4166    - include/zephyr/sys/kobject.h
4167    - include/zephyr/sys/mem_manage.h
4168    - include/zephyr/kernel/mm.h
4169    - include/zephyr/kernel/internal/mm.h
4170    - include/zephyr/kernel/mm/demand_paging.h
4171  labels:
4172    - "area: Userspace"
4173  tests:
4174    - kernel.memory_protection
4175
4176VFS:
4177  status: maintained
4178  maintainers:
4179    - de-nordic
4180  files:
4181    - subsys/fs/fat_fs.c
4182    - tests/subsys/fs/fat_fs_api/
4183  description: >-
4184    VFS implementation
4185
4186  labels:
4187    - "area: File System"
4188  tests:
4189    - filesystem
4190
4191West:
4192  status: odd fixes
4193  collaborators:
4194    - mbolivar-ampere
4195    - carlescufi
4196    - swinslow
4197  files:
4198    - scripts/west-commands.yml
4199    - scripts/west_commands/
4200    - doc/develop/west/
4201    - scripts/pylib/build_helpers/domains.py
4202  labels:
4203    - "area: West"
4204
4205"West project: acpica":
4206  status: maintained
4207  maintainers:
4208    - najumon1980
4209  files:
4210    - modules/acpica/
4211  labels:
4212    - "area: ACPI"
4213
4214"West project: bsim":
4215  status: maintained
4216  maintainers:
4217    - aescolar
4218  files: []
4219  labels:
4220    - "platform: nRF BSIM"
4221
4222"West project: babblesim_base":
4223  status: maintained
4224  maintainers:
4225    - aescolar
4226  files: []
4227  labels:
4228    - "platform: nRF BSIM"
4229
4230"West project: babblesim_ext_2G4_libPhyComv1":
4231  status: maintained
4232  maintainers:
4233    - aescolar
4234  files: []
4235  labels:
4236    - "platform: nRF BSIM"
4237
4238"West project: babblesim_ext_2G4_phy_v1":
4239  status: maintained
4240  maintainers:
4241    - aescolar
4242  files: []
4243  labels:
4244    - "platform: nRF BSIM"
4245
4246"West project: babblesim_ext_2G4_channel_NtNcable":
4247  status: maintained
4248  maintainers:
4249    - aescolar
4250  files: []
4251  labels:
4252    - "platform: nRF BSIM"
4253
4254"West project: babblesim_ext_2G4_channel_multiatt":
4255  status: maintained
4256  maintainers:
4257    - aescolar
4258  files: []
4259  labels:
4260    - "platform: nRF BSIM"
4261
4262"West project: babblesim_ext_2G4_modem_magic":
4263  status: maintained
4264  maintainers:
4265    - aescolar
4266  files: []
4267  labels:
4268    - "platform: nRF BSIM"
4269
4270"West project: babblesim_ext_2G4_modem_BLE_simple":
4271  status: maintained
4272  maintainers:
4273    - aescolar
4274  files: []
4275  labels:
4276    - "platform: nRF BSIM"
4277
4278"West project: babblesim_ext_2G4_device_burst_interferer":
4279  status: maintained
4280  maintainers:
4281    - aescolar
4282  files: []
4283  labels:
4284    - "platform: nRF BSIM"
4285
4286"West project: babblesim_ext_2G4_device_WLAN_actmod":
4287  status: maintained
4288  maintainers:
4289    - aescolar
4290  files: []
4291  labels:
4292    - "platform: nRF BSIM"
4293
4294"West project: babblesim_ext_2G4_device_playback":
4295  status: maintained
4296  maintainers:
4297    - aescolar
4298  files: []
4299  labels:
4300    - "platform: nRF BSIM"
4301
4302"West project: babblesim_ext_libCryptov1":
4303  status: maintained
4304  maintainers:
4305    - aescolar
4306  files: []
4307  labels:
4308    - "platform: nRF BSIM"
4309
4310"West project: canopennode":
4311  status: maintained
4312  maintainers:
4313    - henrikbrixandersen
4314  files:
4315    - modules/canopennode/
4316  labels:
4317    - "area: CAN"
4318
4319"West project: chre":
4320  status: maintained
4321  maintainers:
4322    - yperess
4323  files:
4324    - samples/modules/chre/
4325    - modules/Kconfig.chre
4326  labels:
4327    - "area: CHRE"
4328
4329"West project: cmsis":
4330  status: maintained
4331  maintainers:
4332    - stephanosio
4333  collaborators:
4334    - microbuilder
4335    - povergoing
4336  files:
4337    - modules/cmsis/
4338  labels:
4339    - "area: CMSIS-Core"
4340
4341"West project: cmsis-dsp":
4342  status: maintained
4343  maintainers:
4344    - XenuIsWatching
4345  collaborators:
4346    - stephanosio
4347  files:
4348    - modules/cmsis-dsp/
4349  labels:
4350    - "area: CMSIS-DSP"
4351
4352"West project: cmsis-nn":
4353  status: maintained
4354  maintainers:
4355    - XenuIsWatching
4356  collaborators:
4357    - stephanosio
4358  files:
4359    - modules/cmsis-nn/
4360  labels:
4361    - "area: CMSIS-NN"
4362
4363"West project: edtt":
4364  status: maintained
4365  maintainers:
4366    - aescolar
4367  collaborators:
4368    - wopu-ot
4369    - thoh-ot
4370  files: []
4371  labels:
4372    - "area: Tests"
4373
4374"West project: fatfs":
4375  status: maintained
4376  maintainers:
4377    - de-nordic
4378  files:
4379    - modules/fatfs/
4380  labels:
4381    - "area: Storage"
4382
4383"West project: hal_adi":
4384  status: maintained
4385  maintainers:
4386    - MaureenHelm
4387  collaborators:
4388    - ozersa
4389    - ttmut
4390  files: []
4391  labels:
4392    - "platform: ADI"
4393
4394"West project: hal_altera":
4395  status: odd fixes
4396  collaborators:
4397    - nashif
4398  files:
4399    - modules/Kconfig.altera
4400  labels:
4401    - "platform: Altera"
4402
4403"West project: hal_ambiq":
4404  status: odd fixes
4405  collaborators:
4406    - aaronyegx
4407    - AlessandroLuo
4408    - RichardSWheatley
4409  files:
4410    - modules/hal_ambiq/
4411  labels:
4412    - "platform: Ambiq"
4413
4414"West project: hal_atmel":
4415  status: maintained
4416  maintainers:
4417    - nandojve
4418  collaborators:
4419    - pdgendt
4420  files:
4421    - modules/Kconfig.atmel
4422  labels:
4423    - "platform: Microchip SAM"
4424
4425"West project: hal_cypress":
4426  status: maintained
4427  maintainers:
4428    - ifyall
4429  collaborators:
4430    - nashif
4431    - npal-cy
4432  files:
4433    - modules/Kconfig.cypress
4434  labels:
4435    - "platform: Infineon"
4436
4437"West project: hal_espressif":
4438  status: maintained
4439  maintainers:
4440    - sylvioalves
4441  collaborators:
4442    - LucasTambor
4443    - marekmatej
4444  files:
4445    - modules/Kconfig.esp32
4446  labels:
4447    - "platform: ESP32"
4448
4449"West project: hal_ethos_u":
4450  status: maintained
4451  maintainers:
4452    - kristofer-jonsson-arm
4453  files:
4454    - drivers/misc/ethos_u/
4455    - modules/hal_ethos_u/
4456  labels:
4457    - "platform: ARM"
4458
4459"West project: hal_gigadevice":
4460  status: maintained
4461  maintainers:
4462    - nandojve
4463  collaborators:
4464    - gmarull
4465    - soburi
4466  files:
4467    - modules/hal_gigadevice/
4468  labels:
4469    - "platform: GD32"
4470
4471"West project: hal_infineon":
4472  status: maintained
4473  maintainers:
4474    - ifyall
4475  collaborators:
4476    - parthitce
4477    - talih0
4478    - npal-cy
4479  files:
4480    - modules/Kconfig.infineon
4481    - modules/hal_infineon/
4482  labels:
4483    - "platform: Infineon"
4484
4485"West project: hal_microchip":
4486  status: maintained
4487  maintainers:
4488    - jvasanth1
4489  collaborators:
4490    - VenkatKotakonda
4491    - albertofloyd
4492  files:
4493    - modules/Kconfig.microchip
4494  labels:
4495    - "platform: Microchip SAM"
4496    - "platform: Microchip MEC"
4497
4498"West project: hal_nordic":
4499  status: maintained
4500  maintainers:
4501    - anangl
4502  collaborators:
4503    - hubertmis
4504    - nordic-krch
4505  files:
4506    - modules/hal_nordic/
4507  labels:
4508    - "platform: nRF"
4509
4510"West project: hal_nuvoton":
4511  status: maintained
4512  maintainers:
4513    - ssekar15
4514  files:
4515    - modules/Kconfig.nuvoton
4516  labels:
4517    - "platform: Nuvoton"
4518
4519"West project: hal_nxp":
4520  status: maintained
4521  maintainers:
4522    - dleach02
4523  collaborators:
4524    - mmahadevan108
4525    - danieldegrasse
4526    - manuargue
4527    - PetervdPerk-NXP
4528    - bperseghetti
4529  files:
4530    - modules/hal_nxp/
4531    - modules/Kconfig.imx
4532    - modules/Kconfig.mcux
4533    - modules/Kconfig.nxp_s32
4534  labels:
4535    - "platform: NXP"
4536
4537"West project: hal_openisa":
4538  status: odd fixes
4539  collaborators:
4540    - dleach02
4541  files:
4542    - modules/Kconfig.vega
4543  labels:
4544    - "platform: openisa/RV32M1"
4545
4546"West project: hal_quicklogic":
4547  status: odd fixes
4548  collaborators:
4549    - fkokosinski
4550  files: []
4551  labels:
4552    - "platform: Quicklogic"
4553
4554"West project: hal_renesas":
4555  status: maintained
4556  maintainers:
4557    - KhiemNguyenT
4558    - ioannis-karachalios
4559  collaborators:
4560    - blauret
4561    - andrzej-kaczmarek
4562    - ydamigos
4563    - soburi
4564    - duynguyenxa
4565    - thaoluonguw
4566  files: []
4567  labels:
4568    - "platform: Renesas"
4569
4570"West project: hal_rpi_pico":
4571  status: maintained
4572  maintainers:
4573    - yonsch
4574  files:
4575    - modules/hal_rpi_pico/
4576  labels:
4577    - "platform: Raspberry Pi Pico"
4578
4579"West project: hal_silabs":
4580  status: maintained
4581  maintainers:
4582    - jhedberg
4583  collaborators:
4584    - jerome-pouiller
4585    - asmellby
4586    - sateeshkotapati
4587    - yonsch
4588    - mnkp
4589  files:
4590    - modules/Kconfig.silabs
4591  labels:
4592    - "platform: Silabs"
4593
4594"West project: hal_st":
4595  status: maintained
4596  maintainers:
4597    - avisconti
4598  collaborators:
4599    - erwango
4600  files:
4601    - modules/hal_st/Kconfig
4602
4603"West project: hal_stm32":
4604  status: maintained
4605  maintainers:
4606    - erwango
4607  collaborators:
4608    - FRASTM
4609    - gautierg-st
4610    - marwaiehm-st
4611  files:
4612    - modules/Kconfig.stm32
4613  labels:
4614    - "platform: STM32"
4615
4616"West project: hal_telink":
4617  status: maintained
4618  maintainers:
4619    - andy-liu-telink
4620  files:
4621    - modules/Kconfig.telink
4622  labels:
4623    - "platform: Telink"
4624
4625"West project: hal_ti":
4626  status: maintained
4627  maintainers:
4628    - vaishnavachath
4629  files: []
4630  labels:
4631    - "platform: TI"
4632
4633"West project: hal_wurthelektronik":
4634  status: maintained
4635  maintainers:
4636    - mah-eiSmart
4637  files:
4638    - modules/Kconfig.wurthelektronik
4639
4640"West project: hal_xtensa":
4641  status: maintained
4642  maintainers:
4643    - dcpleung
4644  collaborators:
4645    - andyross
4646    - nashif
4647  files:
4648    - modules/Kconfig.xtensa
4649  labels:
4650    - "area: Xtensa"
4651
4652"West project: hal_intel":
4653  status: maintained
4654  maintainers:
4655    - kwd-doodling
4656  collaborators:
4657    - teburd
4658    - likongintel
4659  files:
4660    - modules/Kconfig.intel
4661  labels:
4662    - "platform: Intel"
4663
4664"West project: libmetal":
4665  status: odd fixes
4666  collaborators:
4667    - carlocaione
4668    - arnopo
4669  files:
4670    - modules/Kconfig.libmetal
4671  labels:
4672    - "area: AMP"
4673
4674"West project: liblc3":
4675  status: maintained
4676  maintainers:
4677    - Casper-Bonde-Bose
4678    - MariuszSkamra
4679  collaborators:
4680    - thalley
4681    - asbjornsabo
4682  files:
4683    - modules/liblc3/
4684  labels:
4685    - "area: Audio"
4686
4687"West project: littlefs":
4688  status: odd fixes
4689  files:
4690    - modules/littlefs/
4691  labels:
4692    - "area: Storage"
4693
4694"West project: loramac-node":
4695  status: maintained
4696  maintainers:
4697    - Mani-Sadhasivam
4698  files:
4699    - modules/loramac-node/
4700  labels:
4701    - "area: LoRa"
4702
4703"West project: lvgl":
4704  status: maintained
4705  maintainers:
4706    - faxe1008
4707  collaborators:
4708    - brgl
4709    - pdgendt
4710  files:
4711    - modules/lvgl/
4712    - tests/lib/gui/lvgl/
4713  labels:
4714    - "area: LVGL"
4715
4716"West project: lz4":
4717  status: odd fixes
4718  collaborators:
4719    - Navin-Sankar
4720  files:
4721    - modules/lz4/
4722  labels:
4723    - "area: Compression"
4724
4725"West project: mbedtls":
4726  status: maintained
4727  maintainers:
4728    - d3zd3z
4729    - ceolin
4730  collaborators:
4731    - ithinuel
4732    - valeriosetti
4733  files:
4734    - modules/mbedtls/
4735  labels:
4736    - "area: Crypto / RNG"
4737
4738"West project: mcuboot":
4739  status: maintained
4740  maintainers:
4741    - d3zd3z
4742  collaborators:
4743    - de-nordic
4744    - nordicjm
4745  files:
4746    - modules/Kconfig.mcuboot
4747    - tests/boot/
4748  labels:
4749    - "area: MCUBoot"
4750
4751"West project: mipi-sys-t":
4752  status: odd fixes
4753  collaborators:
4754    - dcpleung
4755  files:
4756    - modules/Kconfig.syst
4757  labels:
4758    - "area: Tracing"
4759
4760"West project: nanopb":
4761  status: maintained
4762  maintainers:
4763    - pdgendt
4764  files:
4765    - modules/nanopb/
4766    - samples/modules/nanopb/
4767    - tests/modules/nanopb/
4768  labels:
4769    - "area: Serialization"
4770
4771"West project: net-tools":
4772  status: odd fixes
4773  maintainers:
4774    - jukkar
4775  collaborators:
4776    - rlubos
4777  files: []
4778  labels:
4779    - "area: Networking"
4780
4781"West project: nrf_hw_models":
4782  status: maintained
4783  maintainers:
4784    - aescolar
4785  collaborators:
4786    - wopu-ot
4787    - thoh-ot
4788  files: []
4789  labels:
4790    - "area: native port"
4791
4792"West project: open-amp":
4793  status: odd fixes
4794  collaborators:
4795    - carlocaione
4796  files:
4797    - modules/Kconfig.open-amp
4798  labels:
4799    - "area: AMP"
4800
4801"West project: openthread":
4802  status: maintained
4803  maintainers:
4804    - rlubos
4805  collaborators:
4806    - pdgendt
4807    - canisLupus1313
4808    - mariuszpos
4809    - edmont
4810    - maciejbaczmanski
4811  files:
4812    - modules/openthread/
4813  labels:
4814    - "area: OpenThread"
4815
4816"West project: percepio":
4817  status: maintained
4818  maintainers:
4819    - eriktamlin
4820    - aronlander-pe
4821  files:
4822    - modules/percepio/
4823  labels:
4824    - "area: Tracing"
4825
4826"West project: picolibc":
4827  status: maintained
4828  maintainers:
4829    - keith-packard
4830  collaborators:
4831    - stephanosio
4832  files:
4833    - modules/Kconfig.picolibc
4834  labels:
4835    - "area: C Library"
4836    - "area: picolibc"
4837
4838"West project: segger":
4839  status: odd fixes
4840  collaborators:
4841    - nordic-krch
4842  files:
4843    - modules/segger/
4844  labels:
4845    - "area: Debugging"
4846
4847"West project: sof":
4848  status: maintained
4849  maintainers:
4850    - kv2019i
4851  collaborators:
4852    - andyross
4853    - nashif
4854    - lyakh
4855    - lgirdwood
4856    - marc-hb
4857  files:
4858    - modules/Kconfig.sof
4859  labels:
4860    - "area: Audio"
4861
4862"West project: tflite-micro":
4863  status: odd fixes
4864  collaborators:
4865    - laurenmurphyx64
4866  files:
4867    - modules/tflite-micro/
4868    - samples/modules/tflite-micro/
4869  labels:
4870    - "area: Neural Networks"
4871
4872"West project: thrift":
4873  status: maintained
4874  maintainers:
4875    - cfriedt
4876  files:
4877    - modules/thrift/
4878    - samples/modules/thrift/
4879    - tests/modules/thrift/
4880  labels:
4881    - "area: Thrift"
4882    - "area: Serialization"
4883  tests:
4884    - thrift
4885
4886"West project: tinycrypt":
4887  status: odd fixes
4888  files:
4889    - modules/Kconfig.tinycrypt
4890  labels:
4891    - "area: Crypto / RNG"
4892
4893"West project: trusted-firmware-m":
4894  status: maintained
4895  maintainers:
4896    - d3zd3z
4897  collaborators:
4898    - Vge0rge
4899    - ithinuel
4900  files:
4901    - modules/trusted-firmware-m/
4902  labels:
4903    - "area: TF-M"
4904
4905"West project: tf-m-tests":
4906  status: maintained
4907  maintainers:
4908    - d3zd3z
4909  collaborators:
4910    - Vge0rge
4911    - ithinuel
4912  files: []
4913  labels:
4914    - "area: TF-M"
4915
4916"West project: trusted-firmware-a":
4917  status: maintained
4918  maintainers:
4919    - povergoing
4920    - sgrrzhf
4921  collaborators:
4922    - carlocaione
4923    - ithinuel
4924  files:
4925    - modules/trusted-firmware-a/
4926  labels:
4927    - "area: TF-A"
4928
4929"West project: psa-arch-tests":
4930  status: maintained
4931  maintainers:
4932    - d3zd3z
4933  collaborators:
4934    - Vge0rge
4935    - ithinuel
4936  files: []
4937  labels:
4938    - "area: TF-M"
4939
4940"West project: uoscore-uedhoc":
4941  status: maintained
4942  maintainers:
4943    - rlubos
4944    - StefanHri
4945  files:
4946    - modules/uoscore-uedhoc/
4947    - tests/modules/uoscore/
4948  labels:
4949    - "area: Networking"
4950    - "area: Crypto / RNG"
4951
4952"West project: zcbor":
4953  status: maintained
4954  maintainers:
4955    - de-nordic
4956  files:
4957    - modules/zcbor/
4958  labels:
4959    - "area: CBOR"
4960
4961"West project: zscilib":
4962  status: maintained
4963  maintainers:
4964    - microbuilder
4965  files: []
4966
4967"West project: hostap":
4968  status: maintained
4969  maintainers:
4970    - krish2718
4971    - jukkar
4972  files:
4973    - modules/hostap/
4974  labels:
4975    - "area: Wi-Fi"
4976
4977Xtensa arch:
4978  status: maintained
4979  maintainers:
4980    - dcpleung
4981  collaborators:
4982    - andyross
4983    - nashif
4984    - ceolin
4985  files:
4986    - arch/xtensa/
4987    - include/zephyr/arch/xtensa/
4988    - dts/xtensa/
4989    - boards/qemu/xtensa/
4990    - boards/cdns/xt-sim/
4991    - soc/cdns/dc233c/
4992    - soc/cdns/dc233c/
4993    - soc/cdns/xtensa_sample_controller/
4994    - tests/arch/xtensa/
4995  labels:
4996    - "area: Xtensa"
4997
4998x86 arch:
4999  status: maintained
5000  maintainers:
5001    - edersondisouza
5002  collaborators:
5003    - andyross
5004    - dcpleung
5005    - ceolin
5006    - laurenmurphyx64
5007    - najumon1980
5008    - nashif
5009  files:
5010    - arch/x86/
5011    - include/zephyr/arch/x86/
5012    - tests/arch/x86/
5013    - drivers/interrupt_controller/*intel*
5014    - drivers/interrupt_controller/*ioapic*
5015    - drivers/interrupt_controller/*loapic*
5016    - doc/hardware/arch/x86.rst
5017  labels:
5018    - "area: X86"
5019
5020Continuous Integration:
5021  status: maintained
5022  maintainers:
5023    - stephanosio
5024    - nashif
5025  collaborators:
5026    - fabiobaltieri
5027    - kartben
5028  files:
5029    - .github/
5030    - scripts/ci/
5031    - scripts/make_bugs_pickle.py
5032    - .checkpatch.conf
5033    - scripts/gitlint/
5034    - scripts/set_assignees.py
5035  labels:
5036    - "area: Continuous Integration"
5037
5038Test Framework (Ztest):
5039  status: maintained
5040  maintainers:
5041    - nashif
5042  collaborators:
5043    - aaronemassey
5044    - jeremybettis
5045    - yperess
5046    - asemjonovs
5047  files:
5048    - subsys/testsuite/
5049    - tests/ztest/
5050    - tests/unit/util/
5051    - tests/subsys/testsuite/
5052    - samples/subsys/testsuite/
5053    - doc/develop/test/
5054  labels:
5055    - "area: Testsuite"
5056  tests:
5057    - testing
5058
5059Emulation:
5060  status: maintained
5061  maintainers:
5062    - yperess
5063  collaborators:
5064    - aaronemassey
5065    - jeremybettis
5066    - alevkoy
5067    - asemjonovs
5068    - tristan-google
5069  files:
5070    - subsys/emul/
5071    - include/zephyr/drivers/emul_*
5072    - include/zephyr/drivers/emul.h
5073    - include/zephyr/drivers/espi_emul.h
5074    - include/zephyr/drivers/i2c_emul.h
5075    - include/zephyr/drivers/spi_emul.h
5076    - tests/subsys/emul/
5077    - doc/hardware/emulator/
5078  labels:
5079    - "area: HW Emulation"
5080  tests:
5081    - emul
5082
5083Random:
5084  status: maintained
5085  maintainers:
5086    - ceolin
5087  files:
5088    - subsys/random/
5089    - include/zephyr/random/
5090  labels:
5091    - "area: Random"
5092
5093# This area is to be converted to a subarea
5094Testing with Renode:
5095  status: odd fixes
5096  collaborators:
5097    - mateusz-holenko
5098    - fkokosinski
5099  files:
5100    - cmake/emu/renode.cmake
5101    - boards/**/*/support/*.repl
5102    - boards/**/*/support/*.resc
5103  labels:
5104    - "area: Renode"
5105
5106zbus:
5107  status: maintained
5108  maintainers:
5109    - rodrigopex
5110  files:
5111    - samples/subsys/zbus/
5112    - include/zephyr/zbus/
5113    - tests/subsys/zbus/
5114    - subsys/zbus/
5115    - doc/services/zbus/
5116  labels:
5117    - "area: zbus"
5118  tests:
5119    - message_bus.zbus
5120
5121"Linkable Loadable Extensions":
5122  status: maintained
5123  maintainers:
5124    - teburd
5125  collaborators:
5126    - lyakh
5127    - pillo79
5128  files:
5129    - samples/subsys/llext/
5130    - include/zephyr/llext/
5131    - tests/subsys/llext/
5132    - subsys/llext/
5133    - doc/services/llext/
5134  labels:
5135    - "area: llext"
5136  tests:
5137    - llext
5138