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
114ARC arch:
115  status: maintained
116  maintainers:
117    - ruuddw
118  collaborators:
119    - abrodkin
120    - evgeniy-paltsev
121    - SiyuanCheng-CN
122  files:
123    - arch/arc/
124    - include/zephyr/arch/arc/
125    - tests/arch/arc/
126    - dts/arc/synopsys/
127  labels:
128    - "area: ARC"
129
130ARM arch:
131  status: maintained
132  maintainers:
133    - microbuilder
134  collaborators:
135    - carlocaione
136    - galak
137    - MaureenHelm
138    - stephanosio
139    - bbolen
140    - povergoing
141    - ithinuel
142  files:
143    - arch/arm/
144    - arch/arm/core/offsets/
145    - include/zephyr/arch/arm/
146    - tests/arch/arm/
147    - doc/hardware/arch/arm_cortex_m.rst
148    - boards/arm/qemu_cortex_m3/
149    - boards/arm/qemu_cortex_m0/
150  labels:
151    - "area: ARM"
152
153ARM64 arch:
154  status: maintained
155  maintainers:
156    - carlocaione
157  collaborators:
158    - npitre
159    - povergoing
160    - sgrrzhf
161  files:
162    - arch/arm64/
163    - include/zephyr/arch/arm64/
164    - tests/arch/arm64/
165    - soc/arm64/
166    - boards/arm64/
167    - dts/arm64/
168  labels:
169    - "area: ARM64"
170
171MIPS arch:
172  status: odd fixes
173  files:
174    - soc/mips/
175    - arch/mips/
176    - include/zephyr/arch/mips/
177    - boards/mips/
178  labels:
179    - "area: MIPS"
180
181Ambiq Platforms:
182  status: maintained
183  maintainers:
184    - fkokosinski
185  collaborators:
186    - tgorochowik
187    - msobkowski
188  files:
189    - soc/arm/ambiq/
190    - boards/arm/apollo*/
191    - dts/arm/ambiq/
192    - dts/bindings/*/ambiq*
193    - drivers/*/*_ambiq*
194  labels:
195    - "platform: Ambiq"
196
197Binary Descriptors:
198  status: maintained
199  maintainers:
200    - yonsch
201  files:
202    - subsys/bindesc/
203    - include/zephyr/bindesc.h
204    - samples/subsys/bindesc/
205    - scripts/west_commands/bindesc.py
206  labels:
207    - "area: Binary Descriptors"
208
209Bluetooth:
210  status: maintained
211  maintainers:
212    - jhedberg
213  collaborators:
214    - hermabe
215    - Vudentz
216    - Thalley
217    - asbjornsabo
218    - sjanc
219  files:
220    - doc/connectivity/bluetooth/
221    - include/zephyr/bluetooth/
222    - include/zephyr/drivers/bluetooth/
223    - samples/bluetooth/
224    - subsys/bluetooth/
225    - subsys/bluetooth/common/
226    - tests/bluetooth/
227    - tests/bsim/bluetooth/
228  files-exclude:
229    - include/zephyr/bluetooth/mesh/
230    - subsys/bluetooth/controller/
231    - subsys/bluetooth/host/
232    - subsys/bluetooth/mesh/
233    - samples/bluetooth/mesh/
234    - subsys/bluetooth/audio/
235    - include/zephyr/bluetooth/audio/
236    - tests/bsim/bluetooth/audio/
237    - tests/bsim/bluetooth/host/
238    - tests/bsim/bluetooth/ll/
239    - tests/bluetooth/controller/
240    - tests/bluetooth/host*/
241    - tests/bluetooth/mesh_*/
242    - tests/bluetooth/mesh/
243    - tests/bluetooth/audio/
244    - tests/bsim/bluetooth/mesh/
245    - tests/bluetooth/shell/audio*
246  labels:
247    - "area: Bluetooth"
248
249Bluetooth controller:
250  status: maintained
251  maintainers:
252    - cvinayak
253  collaborators:
254    - carlescufi
255    - thoh-ot
256    - kruithofa
257    - ppryga
258    - mtpr-ot
259    - wopu-ot
260    - erbr-ot
261  files:
262    - subsys/bluetooth/controller/
263    - tests/bluetooth/controller/
264    - tests/bsim/bluetooth/ll/
265  labels:
266    - "area: Bluetooth Controller"
267    - "area: Bluetooth"
268
269Bluetooth Host:
270  status: maintained
271  maintainers:
272    - jhedberg
273  collaborators:
274    - hermabe
275    - jori-nordic
276    - alwa-nordic
277    - Vudentz
278    - Thalley
279    - asbjornsabo
280    - sjanc
281    - theob-pro
282    - kruithofa
283  files:
284    - drivers/bluetooth/
285    - subsys/bluetooth/host/
286    - subsys/bluetooth/services/
287    - subsys/bluetooth/shell/
288    - tests/bluetooth/host*/
289    - tests/bsim/bluetooth/host/
290  labels:
291    - "area: Bluetooth Host"
292    - "area: Bluetooth"
293
294Bluetooth Mesh:
295  status: maintained
296  maintainers:
297    - PavelVPV
298  collaborators:
299    - jhedberg
300    - LingaoM
301    - alxelax
302    - Andrewpini
303    - akredalen
304  files:
305    - subsys/bluetooth/mesh/
306    - include/zephyr/bluetooth/mesh/
307    - tests/bluetooth/mesh*/
308    - tests/bsim/bluetooth/mesh/
309    - samples/bluetooth/mesh/
310  labels:
311    - "area: Bluetooth Mesh"
312    - "area: Bluetooth"
313
314Bluetooth Audio:
315  status: maintained
316  maintainers:
317    - Thalley
318  collaborators:
319    - jhedberg
320    - Casper-Bonde-Bose
321    - MariuszSkamra
322    - sjanc
323    - szymon-czapracki
324    - asbjornsabo
325    - fredrikdanebjer
326    - kruithofa
327    - larsgk
328  files:
329    - subsys/bluetooth/audio/
330    - include/zephyr/bluetooth/audio/
331    - tests/bluetooth/audio/
332    - tests/bsim/bluetooth/audio/
333    - tests/bluetooth/shell/audio*
334  labels:
335    - "area: Bluetooth Audio"
336    - "area: Bluetooth"
337
338Build system:
339  status: maintained
340  maintainers:
341    - tejlmand
342  collaborators:
343    - jeremybettis
344    - nashif
345    - nordicjm
346    - "57300"
347  files:
348    - cmake/
349    - CMakeLists.txt
350    - scripts/zephyr_module.py
351    - share/
352    - doc/build/
353    - doc/develop/modules.rst
354    - scripts/build/
355    - tests/cmake/
356  labels:
357    - "area: Build System"
358
359Board/SoC configuration:
360  status: maintained
361  maintainers:
362    - tejlmand
363  collaborators:
364    - galak
365    - nashif
366    - nordicjm
367    - "57300"
368  files:
369    - soc/Kconfig
370    - boards/Kconfig
371  labels:
372    - "area: Board/SoC configuration"
373
374"C++":
375  status: maintained
376  maintainers:
377    - stephanosio
378  collaborators:
379    - alexanderwachter
380    - cfriedt
381  files:
382    - lib/cpp/
383    - tests/lib/cpp/
384    - samples/cpp/
385  labels:
386    - "area: C++"
387
388C library:
389  status: maintained
390  maintainers:
391    - stephanosio
392  collaborators:
393    - nashif
394    - keith-packard
395    - cfriedt
396  files:
397    - lib/libc/
398    - tests/lib/c_lib/
399    - tests/lib/newlib/
400  labels:
401    - "area: C Library"
402
403CMSIS API layer:
404  status: odd fixes
405  collaborators:
406    - nashif
407  files:
408    - subsys/portability/cmsis_rtos_v*/
409    - include/zephyr/portability/cmsis*
410    - samples/subsys/portability/cmsis_rtos_v*/
411    - tests/subsys/portability/cmsis_rtos_v*/
412    - doc/services/portability/
413  labels:
414    - "area: CMSIS API Layer"
415    - "area: Portability"
416
417DSP subsystem:
418  status: maintained
419  maintainers:
420    - stephanosio
421    - yperess
422  files:
423    - subsys/dsp/
424    - tests/subsys/dsp/
425    - include/zephyr/dsp/dsp.h
426    - include/zephyr/dsp/types.h
427    - include/zephyr/dsp/
428    - doc/services/dsp/
429  labels:
430    - "area: DSP"
431
432CMSIS-DSP integration:
433  status: maintained
434  maintainers:
435    - stephanosio
436  collaborators:
437    - galak
438    - XenuIsWatching
439  files:
440    - modules/cmsis-dsp/
441    - tests/benchmarks/cmsis_dsp/
442    - tests/lib/cmsis_dsp/
443  labels:
444    - "area: CMSIS-DSP"
445
446CMSIS-NN integration:
447  status: maintained
448  maintainers:
449    - JordanYates
450  collaborators:
451    - stephanosio
452    - XenuIsWatching
453  files:
454    - modules/cmsis-nn/
455    - tests/lib/cmsis_nn/
456  labels:
457    - "area: CMSIS-NN"
458
459Coding Guidelines:
460  status: maintained
461  maintainers:
462    - keith-zephyr
463  collaborators:
464    - nashif
465    - carlescufi
466    - jfischer-no
467  files:
468    - .checkpatch.conf
469    - .clang-format
470    - .editorconfig
471    - .gitlint
472    - .yamllint
473    - doc/contribute/guidelines.rst
474    - doc/contribute/coding_guidelines/
475    - scripts/checkpatch.pl
476    - scripts/checkpatch/
477    - scripts/ci/check_compliance.py
478    - scripts/ci/guideline_check.py
479    - scripts/ci/pylintrc
480    - scripts/coccicheck
481    - scripts/coccinelle/
482    - scripts/gitlint/
483    - scripts/pylint/
484    - scripts/spelling.txt
485  labels:
486    - "area: Coding Guidelines"
487
488Common Architecture Interface:
489  status: odd fixes
490  collaborators:
491    - dcpleung
492    - nashif
493  files:
494    - arch/common/
495    - include/zephyr/arch/common/
496  labels:
497    - "area: Architectures"
498
499Console:
500  status: odd fixes
501  files:
502    - include/zephyr/console/
503    - subsys/console/
504  labels:
505    - "area: Console"
506
507Debug:
508  status: maintained
509  maintainers:
510    - nashif
511  collaborators:
512    - dcpleung
513    - mrkhldn
514  files:
515    - include/zephyr/debug/
516    - subsys/debug/
517    - tests/subsys/debug/
518    - scripts/coredump/
519    - samples/subsys/debug/
520    - doc/services/debugging/
521  labels:
522    - "area: Debugging"
523
524Device Driver Model:
525  status: maintained
526  maintainers:
527    - gmarull
528  collaborators:
529    - tbursztyka
530    - dcpleung
531    - nashif
532  files:
533    - include/zephyr/device.h
534    - kernel/device.c
535    - include/zephyr/init.h
536    - tests/kernel/device/
537    - doc/kernel/drivers/
538  labels:
539    - "area: Device Model"
540
541DFU:
542  status: maintained
543  maintainers:
544    - de-nordic
545    - nordicjm
546  files:
547    - include/zephyr/dfu/
548    - subsys/dfu/
549    - tests/subsys/dfu/
550  labels:
551    - "area: DFU"
552
553Devicetree:
554  status: maintained
555  maintainers:
556    - mbolivar-ampere
557    - galak
558  files:
559    - scripts/dts/
560    - dts/common/
561    - tests/lib/devicetree/
562    - doc/build/dts/
563    - include/zephyr/devicetree/
564    - scripts/kconfig/kconfigfunctions.py
565    - include/zephyr/devicetree.h
566  labels:
567    - "area: Devicetree"
568
569Devicetree Bindings:
570  status: maintained
571  maintainers:
572    - galak
573  files:
574    - dts/bindings/
575  labels:
576    - "area: Devicetree Binding"
577
578Disk:
579  status: maintained
580  maintainers:
581    - danieldegrasse
582  collaborators:
583    - jfischer-no
584    - decsny
585  files:
586    - include/zephyr/storage/disk_access.h
587    - include/zephyr/drivers/disk.h
588    - drivers/disk/
589    - subsys/disk/
590    - subsys/sd/
591    - tests/subsys/sd/
592    - tests/drivers/disk/
593  labels:
594    - "area: Disk Access"
595
596Display drivers:
597  status: odd fixes
598  collaborators:
599    - jfischer-no
600  files:
601    - drivers/display/
602    - dts/bindings/display/
603    - include/zephyr/drivers/display.h
604    - include/zephyr/display/
605    - include/zephyr/drivers/display.h
606    - subsys/fb/
607    - samples/subsys/display/
608  labels:
609    - "area: Display"
610
611Documentation:
612  status: maintained
613  maintainers:
614    - kartben
615    - carlescufi
616  collaborators:
617    - nashif
618  files:
619    - doc/contribute/
620    - doc/develop/
621    - doc/introduction/
622    - doc/project/
623    - doc/releases/
624    - doc/security/
625    - README.rst
626    - doc/substitutions.txt
627    - doc/images/Zephyr-Kite-in-tree.png
628    - doc/index-tex.rst
629    - doc/index.rst
630    - doc/kconfig.rst
631    - doc/known-warnings.txt
632    - doc/templates/sample.tmpl
633    - doc/templates/board.tmpl
634  files-exclude:
635    - doc/releases/migration-guide-*
636    - doc/releases/release-notes-*
637  labels:
638    - "area: Documentation"
639
640Documentation Infrastructure:
641  status: maintained
642  maintainers:
643    - gmarull
644  collaborators:
645    - carlescufi
646    - nashif
647    - kartben
648  files:
649    - doc/_*/
650    - doc/CMakeLists.txt
651    - doc/conf.py
652    - doc/Makefile
653    - doc/zephyr.doxyfile.in
654  labels:
655    - "area: Documentation Infrastructure"
656
657Release Notes:
658  status: maintained
659  maintainers:
660    - jhedberg
661    - fabiobaltieri
662  files:
663    - doc/releases/migration-guide-*
664    - doc/releases/release-notes-*
665  collaborators:
666    - kartben
667  labels:
668    - "Release Notes"
669
670"Drivers: ADC":
671  status: maintained
672  maintainers:
673    - anangl
674  files:
675    - drivers/adc/
676    - include/zephyr/drivers/adc.h
677    - tests/drivers/adc/
678    - samples/drivers/adc/
679    - include/zephyr/drivers/adc/
680    - doc/hardware/peripherals/adc.rst
681    - tests/drivers/build_all/adc/
682    - include/zephyr/dt-bindings/adc/
683  labels:
684    - "area: ADC"
685
686"Drivers: Audio":
687  status: odd fixes
688  collaborators:
689    - lyakh
690    - lgirdwood
691    - marc-hb
692    - kv2019i
693  files:
694    - drivers/audio/
695    - include/zephyr/audio/
696  labels:
697    - "area: Audio"
698
699"Drivers: bbram":
700  status: maintained
701  maintainers:
702    - yperess
703  files:
704    - tests/drivers/bbram/
705    - drivers/bbram/
706    - include/zephyr/drivers/bbram.h
707  labels:
708    - "area: Battery Backed RAM (bbram)"
709
710"Drivers: Aux display":
711  status: maintained
712  maintainers:
713    - thedjnK
714  collaborators:
715    - xingrz
716  files:
717    - include/zephyr/drivers/auxdisplay.h
718    - drivers/auxdisplay/*
719    - dts/bindings/auxdisplay/*
720  labels:
721    - "area: Aux display"
722
723"Drivers: CAN":
724  status: maintained
725  maintainers:
726    - henrikbrixandersen
727  collaborators:
728    - alexanderwachter
729    - karstenkoenig
730    - martinjaeger
731    - str4t0m
732  files:
733    - boards/shields/mcp2515/
734    - boards/shields/tcan4550evm/
735    - doc/hardware/peripherals/canbus/
736    - drivers/can/
737    - drivers/net/canbus.c
738    - dts/bindings/can/
739    - dts/bindings/phy/can-transceiver*
740    - include/zephyr/canbus/
741    - include/zephyr/devicetree/can.h
742    - include/zephyr/drivers/can.h
743    - include/zephyr/drivers/can/
744    - include/zephyr/net/canbus.h
745    - include/zephyr/net/socketcan*.h
746    - samples/drivers/can/
747    - samples/modules/canopennode/
748    - samples/net/sockets/can/
749    - samples/subsys/canbus/
750    - subsys/canbus/
751    - subsys/net/l2/canbus/
752    - tests/drivers/build_all/can/
753    - tests/drivers/can/
754    - tests/net/socket/can/
755    - tests/subsys/canbus/
756  labels:
757    - "area: CAN"
758
759"Drivers: Clock control":
760  status: maintained
761  maintainers:
762    - nordic-krch
763  files:
764    - drivers/clock_control/
765    - dts/bindings/clock/
766    - include/zephyr/drivers/clock_control.h
767    - include/zephyr/dt-bindings/clock/
768    - tests/drivers/clock_control/
769    - include/zephyr/drivers/clock_control/
770    - doc/hardware/peripherals/clock_control.rst
771  labels:
772    - "area: Clock control"
773
774"Drivers: Console":
775  status: odd fixes
776  files:
777    - drivers/console/
778    - include/zephyr/drivers/console/
779    - tests/drivers/console/
780    - samples/subsys/console/
781  labels:
782    - "area: Console"
783
784"Drivers: Coredump":
785  status: maintained
786  maintainers:
787    - mrkhldn
788  files:
789    - drivers/coredump/
790    - dts/bindings/coredump/
791    - include/zephyr/drivers/coredump.h
792    - tests/drivers/coredump/
793    - doc/hardware/peripherals/coredump.rst
794  labels:
795    - "area: Coredump"
796
797"Drivers: Counter":
798  status: maintained
799  maintainers:
800    - nordic-krch
801  files:
802    - drivers/counter/
803    - include/zephyr/drivers/counter.h
804    - tests/drivers/counter/
805    - doc/hardware/peripherals/counter.rst
806    - samples/drivers/counter/
807    - tests/drivers/build_all/counter/
808  labels:
809    - "area: Counter"
810
811"Drivers: Crypto":
812  status: maintained
813  maintainers:
814    - ceolin
815  files:
816    - drivers/crypto/
817    - dts/bindings/crypto/
818    - include/zephyr/crypto/
819    - samples/drivers/crypto/
820    - tests/crypto/
821  labels:
822    - "area: Crypto / RNG"
823
824"Drivers: DAC":
825  status: maintained
826  maintainers:
827    - martinjaeger
828  files:
829    - drivers/dac/
830    - include/zephyr/drivers/dac.h
831    - tests/drivers/dac/
832    - samples/drivers/dac/
833    - doc/hardware/peripherals/dac.rst
834    - tests/drivers/build_all/dac/
835  labels:
836    - "area: DAC"
837
838"Drivers: DAI":
839  status: maintained
840  maintainers:
841    - kv2019i
842  collaborators:
843    - lgirdwood
844    - juimonen
845  files:
846    - drivers/dai/
847    - doc/hardware/peripherals/audio/dai.rst
848    - include/zephyr/drivers/dai.h
849  labels:
850    - "area: DAI"
851
852"Drivers: DMA":
853  status: maintained
854  maintainers:
855    - teburd
856  files:
857    - drivers/dma/
858    - tests/drivers/dma/
859    - include/zephyr/drivers/dma/
860    - doc/hardware/peripherals/dma.rst
861    - include/zephyr/drivers/dma.h
862    - include/zephyr/dt-bindings/dma/
863  labels:
864    - "area: DMA"
865
866"Drivers: EDAC":
867  status: maintained
868  maintainers:
869    - finikorg
870  files:
871    - drivers/edac/
872    - dts/bindings/edac/
873    - include/zephyr/drivers/edac.h
874    - samples/subsys/edac/
875    - tests/subsys/edac/
876    - doc/hardware/peripherals/edac/
877  labels:
878    - "area: EDAC"
879
880"Drivers: EEPROM":
881  status: maintained
882  maintainers:
883    - henrikbrixandersen
884  files:
885    - drivers/eeprom/
886    - dts/bindings/mtd/*eeprom*
887    - include/zephyr/drivers/eeprom.h
888    - samples/drivers/eeprom/
889    - tests/drivers/eeprom/
890  labels:
891    - "area: EEPROM"
892
893"Drivers: Entropy":
894  status: maintained
895  maintainers:
896    - ceolin
897  files:
898    - drivers/entropy/
899    - include/zephyr/drivers/entropy.h
900    - tests/drivers/entropy/
901  labels:
902    - "area: Crypto / RNG"
903
904"Drivers: ESPI":
905  status: maintained
906  maintainers:
907    - albertofloyd
908  collaborators:
909    - VenkatKotakonda
910    - jvasanth1
911  files:
912    - drivers/espi/
913    - include/zephyr/drivers/espi.h
914    - include/zephyr/dt-bindings/espi/
915    - samples/drivers/espi/
916    - dts/bindings/espi/
917    - doc/hardware/peripherals/espi.rst
918    - include/zephyr/drivers/espi_saf.h
919  labels:
920    - "area: eSPI"
921
922"Drivers: Ethernet":
923  status: odd fixes
924  files:
925    - drivers/ethernet/
926    - include/zephyr/dt-bindings/ethernet/
927    - tests/drivers/build_all/ethernet/
928    - dts/bindings/ethernet/
929  labels:
930    - "area: Ethernet"
931
932"Drivers: Flash":
933  status: maintained
934  maintainers:
935    - de-nordic
936  files:
937    - drivers/flash/
938    - dts/bindings/flash_controller/
939    - include/zephyr/drivers/flash.h
940    - samples/drivers/flash_shell/
941    - samples/drivers/soc_flash_nrf/
942    - tests/drivers/flash/
943    - doc/hardware/peripherals/flash.rst
944  labels:
945    - "area: Flash"
946
947"Drivers: FPGA":
948  status: maintained
949  maintainers:
950    - cfriedt
951  collaborators:
952    - tgorochowik
953    - fkokosinski
954    - msierszulski
955  files:
956    - drivers/fpga/
957    - dts/bindings/fpga/
958    - include/zephyr/drivers/fpga.h
959    - samples/drivers/fpga/
960    - tests/drivers/build_all/fpga/
961  labels:
962    - "area: FPGA"
963
964"Drivers: Fuel Gauge":
965  status: maintained
966  maintainers:
967    - aaronemassey
968    - teburd
969  files:
970    - drivers/fuel_gauge/
971    - dts/bindings/fuel-gauge/
972    - include/zephyr/drivers/fuel_gauge.h
973    - tests/drivers/fuel_gauge/
974    - doc/hardware/peripherals/fuel_gauge.rst
975  labels:
976    - "area: Fuel Gauge"
977
978"Drivers: GPIO":
979  status: odd fixes
980  collaborators:
981    - henrikbrixandersen
982    - mnkp
983  files:
984    - doc/hardware/peripherals/gpio.rst
985    - drivers/gpio/
986    - include/zephyr/drivers/gpio/
987    - include/zephyr/drivers/gpio.h
988    - include/zephyr/dt-bindings/gpio/
989    - tests/drivers/gpio/
990    - tests/drivers/build_all/gpio/
991  labels:
992    - "area: GPIO"
993
994"Drivers: HW Info":
995  status: maintained
996  maintainers:
997    - alexanderwachter
998  files:
999    - drivers/hwinfo/
1000    - dts/bindings/hwinfo/
1001    - include/zephyr/drivers/hwinfo.h
1002    - tests/drivers/hwinfo/
1003    - doc/hardware/peripherals/hwinfo.rst
1004  labels:
1005    - "area: HWINFO"
1006
1007"Drivers: I2C":
1008  status: maintained
1009  maintainers:
1010    - teburd
1011  files:
1012    - drivers/i2c/
1013    - include/zephyr/drivers/i2c/
1014    - dts/bindings/i2c/
1015    - include/zephyr/drivers/i2c.h
1016    - tests/drivers/i2c/
1017    - doc/hardware/peripherals/i2c.rst
1018    - include/zephyr/dt-bindings/i2c/
1019    - tests/boards/frdm_k64f/i2c/
1020  labels:
1021    - "area: I2C"
1022
1023"Drivers: I2S":
1024  status: maintained
1025  maintainers:
1026    - anangl
1027  files:
1028    - doc/hardware/peripherals/audio/i2s.rst
1029    - drivers/i2s/
1030    - dts/bindings/i2s/
1031    - include/zephyr/drivers/i2s.h
1032    - tests/drivers/i2s/
1033    - samples/drivers/i2s/
1034  labels:
1035    - "area: I2S"
1036
1037"Drivers: I3C":
1038  status: maintained
1039  maintainers:
1040    - dcpleung
1041  collaborators:
1042    - XenuIsWatching
1043  files:
1044    - drivers/i3c/
1045    - dts/bindings/i3c/
1046    - include/zephyr/drivers/i3c.h
1047    - include/zephyr/drivers/i3c/
1048    - doc/hardware/peripherals/i3c.rst
1049    - tests/drivers/build_all/i3c/
1050  labels:
1051    - "area: I3C"
1052
1053"Drivers: IEEE 802.15.4":
1054  status: maintained
1055  maintainers:
1056    - fgrandel
1057  collaborators:
1058    - rlubos
1059    - jciupis
1060    - cfriedt
1061    - jukkar
1062  files:
1063    - drivers/ieee802154/
1064    - include/zephyr/net/ieee802154_radio.h
1065  labels:
1066    - "area: IEEE 802.15.4"
1067
1068"Drivers: Interrupt controllers":
1069  status: odd fixes
1070  files:
1071    - drivers/interrupt_controller/
1072    - dts/bindings/interrupt-controller/
1073    - include/zephyr/drivers/interrupt_controller/
1074    - include/zephyr/dt-bindings/interrupt-controller/
1075  labels:
1076    - "area: Interrupt Controller"
1077
1078"Drivers: IPM":
1079  status: odd fixes
1080  collaborators:
1081    - dcpleung
1082  files:
1083    - drivers/ipm/
1084    - samples/drivers/ipm/
1085    - dts/bindings/ipm/
1086    - tests/drivers/ipm/
1087    - doc/hardware/peripherals/ipm.rst
1088  description: >-
1089    Inter-processor mailboxes
1090  labels:
1091    - "area: IPM"
1092
1093"Drivers: kscan":
1094  status: maintained
1095  maintainers:
1096    - albertofloyd
1097  collaborators:
1098    - VenkatKotakonda
1099  files:
1100    - drivers/kscan/
1101    - include/zephyr/drivers/kscan.h
1102    - samples/drivers/espi/
1103    - samples/drivers/kscan/
1104    - samples/drivers/kscan_touch/
1105    - tests/drivers/kscan/
1106    - tests/drivers/espi/
1107    - dts/bindings/kscan/
1108    - doc/hardware/peripherals/kscan.rst
1109  labels:
1110    - "area: Kscan"
1111
1112"Drivers: LED":
1113  status: maintained
1114  maintainers:
1115    - Mani-Sadhasivam
1116    - simonguinot
1117  collaborators:
1118    - bbilas
1119  files:
1120    - drivers/led/
1121    - include/zephyr/drivers/led/
1122    - include/zephyr/drivers/led.h
1123    - samples/drivers/led_*/
1124    - tests/drivers/led/
1125    - doc/hardware/peripherals/led.rst
1126  labels:
1127    - "area: LED"
1128
1129"Drivers: LED Strip":
1130  status: maintained
1131  maintainers:
1132    - mbolivar-ampere
1133    - simonguinot
1134  files:
1135    - drivers/led_strip/
1136    - dts/bindings/led_strip/
1137    - include/zephyr/drivers/led_strip.h
1138    - tests/drivers/build_all/led_strip/
1139  labels:
1140    - "area: LED"
1141
1142"Drivers: Modem":
1143  status: maintained
1144  maintainers:
1145    - rerickson1
1146  files:
1147    - drivers/modem/
1148    - tests/drivers/build_all/modem/
1149    - dts/bindings/modem/
1150    - include/zephyr/drivers/modem/
1151  labels:
1152    - "area: Modem"
1153
1154"Drivers: Regulators":
1155  status: maintained
1156  maintainers:
1157    - aasinclair
1158  collaborators:
1159    - danieldegrasse
1160    - gmarull
1161  files:
1162    - drivers/regulator/
1163    - include/zephyr/drivers/regulator/
1164    - include/zephyr/drivers/regulator.h
1165    - include/zephyr/dt-bindings/regulator/
1166    - tests/drivers/regulator/
1167    - tests/drivers/build_all/regulator/
1168    - doc/hardware/peripherals/regulators.rst
1169  labels:
1170    - "area: Regulators"
1171
1172"Drivers: Retained Memory":
1173  status: maintained
1174  maintainers:
1175    - nordicjm
1176  files:
1177    - drivers/retained_mem/
1178    - dts/bindings/retained_mem/
1179    - include/zephyr/drivers/retained_mem.h
1180    - tests/drivers/retained_mem/
1181  labels:
1182    - "area: Retained Memory"
1183
1184"Drivers: RTC":
1185  status: maintained
1186  maintainers:
1187    - bjarki-trackunit
1188  files:
1189    - drivers/rtc/
1190    - tests/drivers/rtc/
1191    - doc/hardware/peripherals/rtc.rst
1192    - include/zephyr/drivers/rtc.h
1193  labels:
1194    - "area: RTC"
1195
1196"Drivers: PCI":
1197  status: maintained
1198  maintainers:
1199    - dcpleung
1200  collaborators:
1201    - jhedberg
1202    - finikorg
1203    - tbursztyka
1204  files:
1205    - drivers/pcie/
1206    - include/zephyr/drivers/pcie/
1207  labels:
1208    - "area: PCI"
1209
1210"Drivers: PECI":
1211  status: maintained
1212  maintainers:
1213    - albertofloyd
1214  collaborators:
1215    - VenkatKotakonda
1216  files:
1217    - drivers/peci/
1218    - include/zephyr/drivers/peci.h
1219    - samples/drivers/peci/
1220    - doc/hardware/peripherals/peci.rst
1221  labels:
1222    - "area: PECI"
1223
1224"Drivers: Pin Control":
1225  status: maintained
1226  maintainers:
1227    - gmarull
1228  files:
1229    - doc/hardware/pinctrl/
1230    - include/zephyr/drivers/pinctrl/
1231    - include/zephyr/drivers/pinctrl.h
1232    - drivers/pinctrl/
1233    - tests/drivers/pinctrl/
1234    - dts/bindings/pinctrl/
1235    - include/zephyr/dt-bindings/pinctrl/
1236  labels:
1237    - "area: Pinctrl"
1238
1239"Drivers: PTP Clock":
1240  status: maintained
1241  maintainers:
1242    - tbursztyka
1243  files:
1244    - drivers/ptp_clock/
1245    - include/zephyr/drivers/ptp_clock.h
1246  labels:
1247    - "area: Clocks"
1248
1249"Drivers: PM CPU ops":
1250  status: maintained
1251  maintainers:
1252    - carlocaione
1253  collaborators:
1254    - gdengi
1255    - nbalabak
1256  files:
1257    - drivers/pm_cpu_ops/
1258    - include/zephyr/drivers/pm_cpu_ops/
1259    - include/zephyr/drivers/pm_cpu_ops.h
1260    - include/zephyr/arch/arm64/arm-smccc.h
1261  labels:
1262    - "area: PM CPU ops"
1263
1264"Drivers: PWM":
1265  status: maintained
1266  maintainers:
1267    - anangl
1268  collaborators:
1269    - henrikbrixandersen
1270  files:
1271    - drivers/pwm/
1272    - dts/bindings/pwm/
1273    - tests/drivers/pwm/
1274    - include/zephyr/*/pwms.h
1275    - doc/hardware/peripherals/pwm.rst
1276    - tests/drivers/build_all/pwm/
1277    - include/zephyr/drivers/pwm.h
1278  labels:
1279    - "area: PWM"
1280
1281"Drivers: SDHC":
1282  status: maintained
1283  maintainers:
1284    - danieldegrasse
1285  files:
1286    - drivers/sdhc/
1287    - tests/drivers/sdhc/
1288    - include/zephyr/drivers/sdhc.h
1289    - dts/bindings/sdhc/
1290    - doc/hardware/peripherals/sdhc.rst
1291  labels:
1292    - "area: Disk Access"
1293
1294"Drivers: Serial/UART":
1295  status: maintained
1296  maintainers:
1297    - dcpleung
1298  files:
1299    - drivers/serial/
1300    - include/zephyr/drivers/uart.h
1301    - include/zephyr/drivers/uart/
1302    - dts/bindings/serial/
1303    - samples/drivers/uart/
1304    - tests/drivers/uart/
1305    - tests/drivers/build_all/uart/
1306    - doc/hardware/peripherals/uart.rst
1307  labels:
1308    - "area: UART"
1309
1310"Drivers: Sensors":
1311  status: maintained
1312  maintainers:
1313    - MaureenHelm
1314  collaborators:
1315    - avisconti
1316    - teburd
1317    - yperess
1318    - tristan-google
1319  files:
1320    - drivers/sensor/
1321    - include/zephyr/drivers/sensor.h
1322    - samples/sensor/
1323    - tests/drivers/sensor/
1324    - dts/bindings/sensor/
1325    - include/zephyr/drivers/sensor/
1326    - include/zephyr/dt-bindings/sensor/
1327    - doc/hardware/peripherals/sensor.rst
1328    - tests/drivers/build_all/sensor/
1329  labels:
1330    - "area: Sensors"
1331
1332"Drivers: SMBus":
1333  status: maintained
1334  maintainers:
1335    - finikorg
1336  files:
1337    - drivers/smbus/
1338    - dts/bindings/smbus/
1339    - include/zephyr/drivers/smbus.h
1340    - samples/drivers/smbus/
1341    - tests/drivers/smbus/
1342    - doc/hardware/peripherals/smbus.rst
1343  labels:
1344    - "area: SMBus"
1345
1346"Drivers: SPI":
1347  status: maintained
1348  maintainers:
1349    - tbursztyka
1350  collaborators:
1351    - teburd
1352  files:
1353    - drivers/spi/
1354    - include/zephyr/drivers/spi.h
1355    - tests/drivers/spi/
1356    - doc/hardware/peripherals/spi.rst
1357  labels:
1358    - "area: SPI"
1359
1360"Drivers: System timer":
1361  status: maintained
1362  maintainers:
1363    - andyross
1364  collaborators:
1365    - teburd
1366  files:
1367    - drivers/timer/
1368    - include/zephyr/drivers/timer/
1369  labels:
1370    - "area: Timer"
1371
1372"Drivers: Video":
1373  status: odd fixes
1374  collaborators:
1375    - loicpoulain
1376  files:
1377    - drivers/video/
1378    - include/zephyr/drivers/video.h
1379    - include/zephyr/drivers/video-controls.h
1380  labels:
1381    - "area: Video"
1382
1383"Drivers: W1":
1384  status: maintained
1385  maintainers:
1386    - str4t0m
1387  collaborators:
1388    - casparfriedrich
1389  files:
1390    - doc/hardware/peripherals/w1.rst
1391    - drivers/w1/
1392    - dts/bindings/w1/
1393    - include/zephyr/drivers/w1.h
1394    - include/zephyr/drivers/sensor/w1_sensor.h
1395    - tests/drivers/w1/
1396    - samples/drivers/w1/
1397  labels:
1398    - "area: W1"
1399
1400"Drivers: Watchdog":
1401  status: odd fixes
1402  collaborators:
1403    - katsuster
1404    - martinjaeger
1405  files:
1406    - doc/hardware/peripherals/watchdog.rst
1407    - drivers/watchdog/
1408    - dts/bindings/watchdog/
1409    - include/zephyr/drivers/watchdog.h
1410    - samples/drivers/watchdog/
1411    - tests/drivers/watchdog/
1412  labels:
1413    - "area: Watchdog"
1414
1415"Drivers: Wi-Fi":
1416  status: maintained
1417  maintainers:
1418    - jukkar
1419  collaborators:
1420    - rlubos
1421    - kludentwo
1422    - krish2718
1423  files:
1424    - drivers/wifi/
1425  labels:
1426    - "area: Wi-Fi"
1427
1428"Drivers: Wi-Fi es-WiFi":
1429  status: odd fixes
1430  collaborators:
1431    - loicpoulain
1432  files:
1433    - drivers/wifi/eswifi/
1434  description: >-
1435    Inventek es-WiFi
1436
1437  labels:
1438    - "area: Wi-Fi"
1439
1440"Drivers: Memory Management":
1441  status: maintained
1442  maintainers:
1443    - dcpleung
1444  collaborators:
1445    - ceolin
1446    - edersondisouza
1447    - jxstelter
1448  files:
1449    - include/zephyr/drivers/mm/
1450    - drivers/mm/
1451    - tests/boards/intel_adsp/mm/
1452    - dts/bindings/mm/
1453  labels:
1454    - "area: Memory Management"
1455
1456"Drivers: Virtualization":
1457  status: maintained
1458  maintainers:
1459    - tbursztyka
1460  files:
1461    - drivers/virtualization/
1462    - tests/drivers/virtualization/
1463    - dts/bindings/virtualization/
1464    - include/zephyr/drivers/virtualization/
1465    - doc/services/virtualization/
1466    - include/zephyr/drivers/virtualization/ivshmem.h
1467  labels:
1468    - "area: Virtualization"
1469
1470EC Host Commands:
1471  status: maintained
1472  maintainers:
1473    - semihalf-niedzwiecki-dawid
1474  files:
1475    - subsys/mgmt/ec_host_cmd/
1476    - include/zephyr/mgmt/ec_host_cmd/
1477    - tests/subsys/mgmt/ec_host_cmd/
1478  labels:
1479    - "area: ec_host_cmd"
1480
1481Xen Platform:
1482  status: maintained
1483  maintainers:
1484    - povergoing
1485  collaborators:
1486    - SgrrZhf
1487    - lorc
1488    - firscity
1489    - luca-fancellu
1490  files:
1491    - include/zephyr/xen/
1492    - drivers/xen/
1493    - arch/arm64/core/xen/
1494    - soc/arm64/xenvm/
1495    - boards/arm64/xenvm/
1496  labels:
1497    - "area: Xen Platform"
1498
1499Filesystems:
1500  status: maintained
1501  maintainers:
1502    - de-nordic
1503  collaborators:
1504    - Laczen
1505    - nashif
1506  files:
1507    - include/zephyr/fs/
1508    - samples/subsys/fs/
1509    - subsys/fs/
1510    - tests/subsys/fs/
1511  labels:
1512    - "area: File System"
1513
1514"Filesystems: FatFs reentrant support":
1515  status: maintained
1516  maintainers:
1517    - ox11
1518  files:
1519    - modules/fatfs/zfs_ffsystem.c
1520    - tests/subsys/fs/fat_fs_api/src/test_fat_file_reentrant.c
1521  labels:
1522    - "area: File System"
1523
1524Formatted Output:
1525  status: maintained
1526  maintainers:
1527    - nordic-krch
1528  collaborators:
1529    - dcpleung
1530  files:
1531    - include/zephyr/sys/cbprintf*
1532    - tests/unit/cbprintf/
1533    - tests/lib/cbprintf_*/
1534    - lib/os/cbprintf*
1535    - lib/os/Kconfig.cbprintf
1536    - doc/services/formatted_output.rst
1537  labels:
1538    - "area: Formatting Output"
1539
1540Google Platforms:
1541  status: maintained
1542  maintainers:
1543    - fabiobaltieri
1544    - keith-zephyr
1545  files:
1546    - boards/*/google_*/
1547    - samples/boards/google_*/
1548
1549Hash Utilities:
1550  status: maintained
1551  maintainers:
1552    - cfriedt
1553  files:
1554    - include/zephyr/sys/hash_*
1555    - lib/hash/
1556    - samples/basic/hash_map/
1557    - tests/lib/hash_*/
1558  description: >-
1559    Hash Functions and Hash Maps (Hash Tables)
1560  labels:
1561    - "area: hash utils"
1562
1563Input:
1564  status: maintained
1565  maintainers:
1566    - fabiobaltieri
1567  collaborators:
1568    - gmarull
1569  files:
1570    - doc/services/input/
1571    - drivers/input/
1572    - dts/bindings/input/
1573    - include/zephyr/dt-bindings/input/
1574    - include/zephyr/input/
1575    - samples/subsys/input/
1576    - subsys/input/
1577    - tests/drivers/build_all/input/
1578    - tests/subsys/input/
1579  description: >-
1580    Input subsystem and drivers
1581  labels:
1582    - "area: Input"
1583
1584IPC:
1585  status: maintained
1586  maintainers:
1587    - carlocaione
1588    - arnopo
1589  files:
1590    - include/zephyr/ipc/
1591    - samples/subsys/ipc/
1592    - subsys/ipc/
1593    - tests/subsys/ipc/
1594  description: >-
1595    Inter-Processor Communication
1596  labels:
1597    - "area: IPC"
1598
1599JSON Web Token:
1600  status: maintained
1601  maintainers:
1602    - d3zd3z
1603  collaborators:
1604    - mrfuchs
1605    - sir-branch
1606  files:
1607    - subsys/jwt/
1608    - include/zephyr/data/
1609    - lib/os/json.c
1610    - tests/subsys/jwt/
1611  labels:
1612    - "area: JSON"
1613
1614Kconfig:
1615  status: odd fixes
1616  collaborators:
1617    - tejlmand
1618    - nashif
1619  files:
1620    - scripts/kconfig/
1621    - doc/build/kconfig/
1622    - Kconfig.zephyr
1623  labels:
1624    - "area: Kconfig"
1625  description: >-
1626    See https://docs.zephyrproject.org/latest/build/kconfig/index.html and
1627    https://docs.zephyrproject.org/latest/hardware/porting/board_porting.html#default-board-configuration
1628
1629Kernel:
1630  status: maintained
1631  maintainers:
1632    - andyross
1633  collaborators:
1634    - nashif
1635    - ceolin
1636    - dcpleung
1637    - peter-mitsis
1638    - cfriedt
1639  files:
1640    - doc/kernel/
1641    - include/zephyr/kernel*.h
1642    - kernel/
1643    - tests/kernel/
1644    - include/zephyr/sys_clock.h
1645    - samples/kernel/
1646    - include/zephyr/kernel/
1647    - tests/lib/p4workq/
1648  files-exclude:
1649    - tests/kernel/mem_protect/
1650  labels:
1651    - "area: Kernel"
1652
1653Base OS:
1654  status: maintained
1655  maintainers:
1656    - andyross
1657  collaborators:
1658    - dcpleung
1659    - nashif
1660  files:
1661    - include/zephyr/sys/
1662    - lib/os/
1663  files-exclude:
1664    - include/zephyr/sys/cbprintf*
1665    - tests/unit/cbprintf/
1666    - tests/lib/cbprintf_*/
1667    - lib/os/cbprintf*
1668    - lib/os/Kconfig.cbprintf
1669  labels:
1670    - "area: Base OS"
1671
1672Laird Connectivity platforms:
1673  status: maintained
1674  maintainers:
1675    - rerickson1
1676  collaborators:
1677    - greg-leach
1678  files:
1679    - boards/arm/bl5340_dvk/
1680    - boards/arm/bl65*/
1681    - boards/arm/bt510/
1682    - boards/arm/bt610/
1683    - boards/arm/pinnacle_100_dvk/
1684    - boards/arm/mg100/
1685  labels:
1686    - "platform: Laird Connectivity"
1687
1688Little FS:
1689  status: odd fixes
1690  files:
1691    - subsys/fs/Kconfig.littlefs
1692    - subsys/fs/littlefs_fs.c
1693    - tests/subsys/fs/littlefs/
1694  description: >-
1695    Little FS
1696  labels:
1697    - "area: File System"
1698
1699Logging:
1700  status: maintained
1701  maintainers:
1702    - nordic-krch
1703  collaborators:
1704    - dcpleung
1705  files:
1706    - include/zephyr/logging/
1707    - samples/subsys/logging/
1708    - subsys/logging/
1709    - tests/subsys/logging/
1710    - scripts/logging/
1711    - doc/services/logging/
1712  labels:
1713    - "area: Logging"
1714
1715LoRa and LoRaWAN:
1716  status: maintained
1717  maintainers:
1718    - JordanYates
1719  collaborators:
1720    - Mani-Sadhasivam
1721    - martinjaeger
1722    - mniestroj
1723  files:
1724    - drivers/lora/
1725    - include/zephyr/drivers/lora.h
1726    - samples/drivers/lora/
1727    - include/zephyr/lorawan/
1728    - subsys/lorawan/
1729    - samples/subsys/lorawan/
1730    - doc/connectivity/lora_lorawan/index.rst
1731  labels:
1732    - "area: LoRa"
1733
1734MAINTAINERS file:
1735  status: maintained
1736  maintainers:
1737    - MaureenHelm
1738  collaborators:
1739    - nashif
1740    - stephanosio
1741  files:
1742    - MAINTAINERS.yml
1743  labels:
1744    - "area: Process"
1745  description: >-
1746    Zephyr Maintainers File
1747
1748Mbed TLS:
1749  status: maintained
1750  maintainers:
1751    - d3zd3z
1752    - ceolin
1753  files:
1754    - tests/crypto/mbedtls/
1755    - doc/services/crypto/
1756    - tests/benchmarks/mbedtls/
1757  labels:
1758    - "area: Crypto / RNG"
1759  description: >-
1760    Mbed TLS module implementing the PSA Crypto API and TLS.
1761
1762MCU Manager:
1763  status: maintained
1764  maintainers:
1765    - nordicjm
1766  collaborators:
1767    - de-nordic
1768  files:
1769    - subsys/mgmt/mcumgr/
1770    - include/zephyr/mgmt/mcumgr/
1771    - samples/subsys/mgmt/mcumgr/
1772    - tests/subsys/mgmt/mcumgr/
1773    - doc/services/device_mgmt/
1774  labels:
1775    - "area: mcumgr"
1776
1777Modbus:
1778  status: maintained
1779  maintainers:
1780    - jfischer-no
1781  files:
1782    - samples/subsys/modbus/
1783    - include/zephyr/modbus/
1784    - tests/subsys/modbus/
1785    - subsys/modbus/
1786    - doc/services/modbus/
1787  labels:
1788    - "area: modbus"
1789
1790Modem Modules:
1791  status: maintained
1792  maintainers:
1793    - bjarki-trackunit
1794  files:
1795    - subsys/modem/
1796    - include/zephyr/modem/
1797    - tests/subsys/modem/
1798
1799OSDP:
1800  status: maintained
1801  maintainers:
1802    - sidcha
1803  collaborators:
1804    - adakus
1805    - r2r0
1806  files:
1807    - subsys/mgmt/osdp/
1808    - include/zephyr/mgmt/osdp.h
1809    - samples/subsys/mgmt/osdp/
1810  labels:
1811    - "area: OSDP"
1812
1813hawkBit:
1814  status: odd fixes
1815  collaborators:
1816    - ycsin
1817  files:
1818    - subsys/mgmt/hawkbit/
1819    - include/zephyr/mgmt/hawkbit.h
1820    - samples/subsys/mgmt/hawkbit/
1821  labels:
1822    - "area: hawkBit"
1823
1824"mgmt: updatehub":
1825  status: maintained
1826  maintainers:
1827    - nandojve
1828  files:
1829    - subsys/mgmt/updatehub/
1830    - samples/subsys/mgmt/updatehub/
1831  labels:
1832    - "area: updatehub"
1833  description: >-
1834    UpdateHub embedded Firmware Over-The-Air (FOTA) upgrade agent
1835
1836Native POSIX/Sim and POSIX arch:
1837  status: maintained
1838  maintainers:
1839    - aescolar
1840  files:
1841    - arch/posix/
1842    - boards/posix/native_*/
1843    - boards/posix/doc/
1844    - boards/posix/*.rst
1845    - drivers/*/*posix*
1846    - drivers/*/*native*
1847    - drivers/*/*/*posix*
1848    - drivers/*/*/*native*
1849    - dts/posix/
1850    - include/zephyr/arch/posix/
1851    - scripts/native_simulator/
1852    - scripts/valgrind.supp
1853    - soc/posix/
1854    - tests/boards/native_posix/
1855  labels:
1856    - "area: native port"
1857  description: >-
1858    POSIX architecture and SOC, native_posix & native_sim boards, and related drivers
1859
1860Networking:
1861  status: maintained
1862  maintainers:
1863    - rlubos
1864    - jukkar
1865  collaborators:
1866    - tbursztyka
1867    - ssharks
1868  files:
1869    - drivers/net/
1870    - include/zephyr/net/
1871    - samples/net/
1872    - subsys/net/
1873    - doc/connectivity/networking/
1874    - tests/net/
1875  files-exclude:
1876    - doc/connectivity/networking/api/gptp.rst
1877    - doc/connectivity/networking/api/ieee802154.rst
1878    - doc/connectivity/networking/api/wifi.rst
1879    - include/zephyr/net/gptp.h
1880    - include/zephyr/net/ieee802154*.h
1881    - include/zephyr/net/wifi*.h
1882    - samples/net/gptp/
1883    - samples/net/sockets/coap_*/
1884    - samples/net/lwm2m_client/
1885    - samples/net/wifi/
1886    - subsys/net/l2/ethernet/gptp/
1887    - subsys/net/l2/ieee802154/
1888    - subsys/net/l2/wifi/
1889    - subsys/net/lib/coap/
1890    - subsys/net/lib/config/ieee802154*
1891    - subsys/net/lib/lwm2m/
1892    - subsys/net/lib/tls_credentials/
1893    - tests/net/ieee802154/
1894    - tests/net/wifi/
1895  labels:
1896    - "area: Networking"
1897
1898"Networking: BSD sockets":
1899  status: odd fixes
1900  collaborators:
1901    - rlubos
1902    - jukkar
1903  files:
1904    - samples/net/sockets/
1905    - subsys/net/lib/sockets/
1906    - tests/net/socket/
1907  labels:
1908    - "area: Sockets"
1909
1910"Networking: Buffers":
1911  status: maintained
1912  maintainers:
1913    - jhedberg
1914  collaborators:
1915    - rlubos
1916    - tbursztyka
1917    - jukkar
1918  files:
1919    - include/zephyr/net/buf.h
1920    - subsys/net/buf.c
1921    - tests/net/buf/
1922  labels:
1923    - "area: Networking"
1924
1925"Networking: Connection Manager":
1926  status: maintained
1927  maintainers:
1928    - rlubos
1929  collaborators:
1930    - glarsennordic
1931    - jukkar
1932  files:
1933    - include/zephyr/net/conn_mgr*.h
1934    - subsys/net/conn_mgr/
1935    - tests/net/conn_mgr_monitor/
1936    - tests/net/conn_mgr_conn/
1937    - doc/connectivity/networking/conn_mgr/
1938  labels:
1939    - "area: Networking"
1940
1941"Networking: CoAP":
1942  status: maintained
1943  maintainers:
1944    - rlubos
1945  collaborators:
1946    - pdgendt
1947  files:
1948    - subsys/net/lib/coap/
1949    - samples/net/sockets/coap_*/
1950    - tests/net/lib/coap/
1951  labels:
1952    - "area: Networking"
1953
1954"Networking: gPTP":
1955  status: maintained
1956  maintainers:
1957    - jukkar
1958  collaborators:
1959    - fgrandel
1960  files:
1961    - doc/connectivity/networking/api/gptp.rst
1962    - include/zephyr/net/gptp.h
1963    - samples/net/gptp/
1964    - subsys/net/l2/ethernet/gptp/
1965  labels:
1966    - "area: Networking"
1967
1968"Networking: LWM2M":
1969  status: maintained
1970  maintainers:
1971    - rlubos
1972  collaborators:
1973    - SeppoTakalo
1974  files:
1975    - samples/net/lwm2m_client/
1976    - tests/net/lib/lwm2m/
1977    - subsys/net/lib/lwm2m/
1978  labels:
1979    - "area: LWM2M"
1980
1981"Networking: MQTT":
1982  status: maintained
1983  maintainers:
1984    - rlubos
1985  files:
1986    - subsys/net/lib/mqtt/
1987    - tests/net/lib/mqtt_*/
1988    - samples/net/cloud/mqtt_azure/
1989    - samples/net/mqtt_publisher/
1990  files-exclude:
1991    - tests/net/lib/mqtt_sn*/
1992  labels:
1993    - "area: Networking"
1994
1995"Networking: MQTT-SN":
1996  status: maintained
1997  maintainers:
1998    - rlubos
1999  collaborators:
2000    - BeckmaR
2001  files:
2002    - subsys/net/lib/mqtt_sn/
2003    - tests/net/lib/mqtt_sn*/
2004    - samples/net/mqtt_sn_publisher/
2005  labels:
2006    - "area: Networking"
2007
2008"Networking: Native IEEE 802.15.4":
2009  status: maintained
2010  maintainers:
2011    - fgrandel
2012  collaborators:
2013    - rlubos
2014    - jukkar
2015  files:
2016    - doc/connectivity/networking/api/ieee802154.rst
2017    - include/zephyr/net/ieee802154*.h
2018    - subsys/net/l2/ieee802154/
2019    - subsys/net/lib/config/ieee802154*
2020    - tests/net/ieee802154/
2021  labels:
2022    - "area: IEEE 802.15.4"
2023
2024"Networking: OpenThread":
2025  status: maintained
2026  maintainers:
2027    - rlubos
2028  collaborators:
2029    - pdgendt
2030    - canisLupus1313
2031    - mariuszpos
2032  files:
2033    - subsys/net/l2/openthread/
2034    - samples/net/openthread/
2035    - tests/subsys/openthread/
2036  labels:
2037    - "area: Networking"
2038    - "area: OpenThread"
2039
2040"Networking: Wi-Fi":
2041  status: maintained
2042  maintainers:
2043    - jukkar
2044  collaborators:
2045    - rlubos
2046    - krish2718
2047  files:
2048    - doc/connectivity/networking/api/wifi.rst
2049    - include/zephyr/net/wifi*.h
2050    - subsys/net/l2/wifi/
2051    - samples/net/wifi/
2052    - tests/net/wifi/
2053  labels:
2054    - "area: Networking"
2055    - "area: Wi-Fi"
2056
2057NIOS-2 arch:
2058  status: maintained
2059  maintainers:
2060    - nashif
2061  files:
2062    - arch/nios2/
2063    - soc/nios2/
2064    - include/zephyr/arch/nios2/
2065    - tests/boards/altera_max10/
2066    - boards/nios2/qemu_nios2/
2067  labels:
2068    - "area: NIOS2"
2069
2070nRF BSIM:
2071  status: maintained
2072  maintainers:
2073    - aescolar
2074  files:
2075    - boards/posix/nrf_bsim/
2076    - tests/boards/nrf52_bsim/
2077    - tests/bsim/
2078  files-exclude:
2079    - tests/bsim/*/
2080  labels:
2081    - "platform: nRF BSIM"
2082
2083POSIX API layer:
2084  status: maintained
2085  maintainers:
2086    - cfriedt
2087  files:
2088    - include/zephyr/posix/
2089    - lib/posix/
2090    - tests/posix/
2091    - samples/posix/
2092    - tests/lib/fdtable/
2093  labels:
2094    - "area: POSIX"
2095
2096Power management:
2097  status: maintained
2098  maintainers:
2099    - ceolin
2100  collaborators:
2101    - nashif
2102    - teburd
2103    - tmleman
2104    - JordanYates
2105  files:
2106    - include/zephyr/pm/
2107    - samples/subsys/pm/
2108    - subsys/pm/
2109    - tests/subsys/pm/
2110    - doc/services/pm/
2111    - drivers/power_domain/
2112  labels:
2113    - "area: Power Management"
2114
2115RISCV arch:
2116  status: maintained
2117  maintainers:
2118    - fkokosinski
2119    - kgugala
2120    - tgorochowik
2121  collaborators:
2122    - mgielda
2123    - katsuster
2124    - edersondisouza
2125    - carlocaione
2126  files:
2127    - arch/riscv/
2128    - boards/riscv/
2129    - dts/bindings/riscv/
2130    - include/zephyr/arch/riscv/
2131    - soc/riscv/
2132    - tests/arch/riscv/
2133    - doc/hardware/arch/risc-v.rst
2134  labels:
2135    - "area: RISCV"
2136
2137Retention:
2138  status: maintained
2139  maintainers:
2140    - nordicjm
2141  files:
2142    - dts/bindings/retention/
2143    - include/zephyr/retention/
2144    - subsys/retention/
2145  labels:
2146    - "area: Retention"
2147
2148Sensor Subsystem:
2149  status: maintained
2150  maintainers:
2151    - lixuzha
2152    - ghu0510
2153    - yperess
2154  collaborators:
2155    - qianruh
2156  files:
2157    - dts/bindings/sensor/zephyr,sensing.yaml
2158    - dts/bindings/sensor/zephyr,sensing*.yaml
2159    - include/zephyr/sensing/
2160    - doc/services/sensing/
2161    - subsys/sensing/
2162    - samples/subsys/sensing/
2163  labels:
2164    - "area: Sensor Subsystem"
2165
2166Twister:
2167  status: maintained
2168  maintainers:
2169    - nashif
2170  collaborators:
2171    - galak
2172    - PerMac
2173    - hakehuang
2174    - gopiotr
2175    - golowanow
2176    - gchwier
2177  files:
2178    - scripts/twister
2179    - scripts/pylib/twister/
2180    - scripts/tests/twister/
2181    - scripts/tests/twister_blackbox/
2182    - doc/develop/test/twister.rst
2183    - scripts/pylib/pytest-twister-harness/
2184    - doc/develop/test/pytest.rst
2185  labels:
2186    - "area: Twister"
2187
2188Settings:
2189  status: odd fixes
2190  files:
2191    - include/zephyr/settings/
2192    - subsys/settings/
2193    - tests/subsys/settings/
2194    - samples/subsys/settings/
2195    - doc/services/settings/
2196  labels:
2197    - "area: Settings"
2198
2199Shell:
2200  status: maintained
2201  maintainers:
2202    - jakub-uC
2203  collaborators:
2204    - carlescufi
2205  files:
2206    - include/zephyr/shell/
2207    - samples/subsys/shell/
2208    - subsys/shell/
2209    - tests/subsys/shell/
2210    - doc/services/shell/
2211  labels:
2212    - "area: Shell"
2213
2214Shields:
2215  status: maintained
2216  maintainers:
2217    - erwango
2218  collaborators:
2219    - avisconti
2220    - jfischer-no
2221    - kartben
2222  files:
2223    - boards/shields/
2224    - doc/hardware/porting/shields.rst
2225    - samples/shields/
2226  labels:
2227    - "area: Shields"
2228
2229SPARC arch:
2230  status: odd fixes
2231  collaborators:
2232    - julius-barendt
2233  files:
2234    - arch/sparc/
2235    - include/zephyr/arch/sparc/
2236    - soc/sparc/
2237    - boards/sparc/
2238    - dts/sparc/
2239  labels:
2240    - "area: SPARC"
2241
2242State machine framework:
2243  status: maintained
2244  maintainers:
2245    - sambhurst
2246  collaborators:
2247    - keith-zephyr
2248  files:
2249    - doc/services/smf/
2250    - include/zephyr/smf.h
2251    - lib/smf/
2252    - tests/lib/smf/
2253  labels:
2254    - "area: State Machine Framework"
2255
2256ADI Platforms:
2257  status: maintained
2258  maintainers:
2259    - MaureenHelm
2260  collaborators:
2261    - galak
2262    - microbuilder
2263  files:
2264    - drivers/*/max*
2265    - drivers/*/*max*/
2266    - drivers/dac/dac_ltc*
2267    - drivers/ethernet/eth_adin*
2268    - drivers/mdio/mdio_adin*
2269    - drivers/regulator/regulator_adp5360*
2270    - drivers/sensor/adt*/
2271    - drivers/sensor/adxl*/
2272    - dts/bindings/*/adi,*
2273    - dts/bindings/*/lltc,*
2274    - dts/bindings/*/maxim,*
2275  labels:
2276    - "platform: ADI"
2277
2278GD32 Platforms:
2279  status: maintained
2280  maintainers:
2281    - cameled
2282    - nandojve
2283  collaborators:
2284    - gmarull
2285    - soburi
2286  files:
2287    - boards/arm/gd32*/
2288    - boards/riscv/gd32*/
2289    - boards/riscv/longan_nano/
2290    - drivers/*/*gd32*
2291    - dts/*/gigadevice/
2292    - dts/bindings/*/*gd32*
2293    - soc/arm/gigadevice/
2294    - soc/riscv/riscv-privileged/gd32vf103/
2295    - scripts/west_commands/*/*gd32*
2296  labels:
2297    - "platform: GD32"
2298  description: >-
2299    GigaDevice GD32 SOCs, dts files and related drivers. Starter and eval
2300    boards.
2301
2302Synopsys Platforms:
2303  status: maintained
2304  maintainers:
2305    - ruuddw
2306  collaborators:
2307    - abrodkin
2308    - evgeniy-paltsev
2309    - IRISZZW
2310  files:
2311    - soc/arc/
2312    - boards/arc/
2313    - samples/boards/arc_secure_services/
2314  labels:
2315    - "platform: Synopsys"
2316
2317Nuvoton NPCX Platforms:
2318  status: maintained
2319  maintainers:
2320    - MulinChao
2321    - ChiHuaL
2322  collaborators:
2323    - MulinChao
2324    - ChiHuaL
2325    - sjg20
2326    - keith-zephyr
2327    - jackrosenthal
2328    - fabiobaltieri
2329  files:
2330    - soc/arm/nuvoton_npcx/
2331    - boards/arm/npcx*/
2332    - dts/arm/nuvoton/
2333    - dts/bindings/*/*npcx*
2334    - drivers/*/*_npcx*.c
2335  labels:
2336    - "platform: Nuvoton NPCX"
2337
2338Nuvoton Numicro Platforms:
2339  status: odd fixes
2340  collaborators:
2341    - ssekar15
2342  files:
2343    - soc/arm/nuvoton_numicro/
2344    - boards/arm/nuvoton_pfm*/
2345    - dts/arm/nuvoton/
2346    - dts/bindings/*/*numicro*
2347    - drivers/*/*_numicro*
2348  labels:
2349    - "platform: Nuvoton Numicro"
2350
2351Raspberry Pi Pico Platforms:
2352  status: maintained
2353  maintainers:
2354    - yonsch
2355  collaborators:
2356    - soburi
2357  files:
2358    - boards/arm/rpi_pico/
2359    - boards/arm/adafruit_kb2040/
2360    - boards/arm/sparkfun_pro_micro_rp2040/
2361    - dts/arm/rpi_pico/
2362    - dts/bindings/*/raspberrypi,pico*
2363    - drivers/*/*rpi_pico
2364    - drivers/*/*rpi_pico*/
2365    - drivers/*/*rpi_pico*.c
2366    - soc/arm/rpi_pico/
2367  labels:
2368    - "platform: Raspberry Pi Pico"
2369
2370SiLabs Platforms:
2371  status: maintained
2372  maintainers:
2373    - fkokosinski
2374  collaborators:
2375    - tgorochowik
2376  files:
2377    - soc/arm/silabs_*/
2378    - boards/arm/ef*/
2379    - dts/arm/silabs/
2380    - dts/bindings/*/silabs*
2381    - drivers/*/*_gecko*
2382  labels:
2383    - "platform: SiLabs"
2384
2385Intel Platforms (X86):
2386  status: maintained
2387  maintainers:
2388    - jhedberg
2389  collaborators:
2390    - tbursztyka
2391    - laurenmurphyx64
2392  files:
2393    - boards/x86/
2394    - dts/x86/intel/
2395    - soc/x86/
2396    - samples/boards/up_squared/
2397  labels:
2398    - "platform: X86"
2399
2400Intel Platforms (Xtensa):
2401  status: maintained
2402  maintainers:
2403    - nashif
2404  collaborators:
2405    - andyross
2406    - dcpleung
2407    - lyakh
2408    - lgirdwood
2409    - marc-hb
2410    - kv2019i
2411    - ceolin
2412    - aborisovich
2413    - tmleman
2414    - softwarecki
2415    - jxstelter
2416    - marcinszkudlinski
2417  files:
2418    - boards/xtensa/intel_*/
2419    - soc/xtensa/intel_*/
2420    - dts/xtensa/intel/
2421    - tests/boards/intel_adsp/
2422    - samples/boards/intel_adsp/
2423    - dts/bindings/*/intel,adsp*
2424  labels:
2425    - "platform: Intel ADSP"
2426
2427Intel Platforms (ISH):
2428  status: maintained
2429  maintainers:
2430    - kwd-doodling
2431  collaborators:
2432    - teburd
2433    - likongintel
2434  files:
2435    - boards/x86/intel_ish/
2436    - soc/x86/intel_ish/
2437    - dts/x86/intel/intel_ish*
2438    - dts/bindings/*/intel,sedi*
2439    - drivers/*/*sedi*
2440  labels:
2441    - "platform: Intel ISH"
2442
2443Intel Platforms (Agilex):
2444  status: maintained
2445  maintainers:
2446    - gdengi
2447  collaborators:
2448    - nbalabak
2449    - chongteikheng
2450  files:
2451    - boards/arm64/intel_*/
2452    - soc/arm64/intel_*/
2453    - dts/arm64/intel/
2454    - samples/boards/intel_adsp/
2455    - dts/bindings/*/intel,agilex*
2456  labels:
2457    - "platform: Intel SoC FPGA Agilex"
2458
2459NXP Platforms:
2460  status: maintained
2461  maintainers:
2462    - dleach02
2463  collaborators:
2464    - mmahadevan108
2465    - danieldegrasse
2466    - DerekSnell
2467    - yvanderv
2468    - EmilioCBen
2469    - decsny
2470    - manuargue
2471    - PetervdPerk-NXP
2472    - bperseghetti
2473    - dbaluta
2474    - iuliana-prodan
2475    - Dat-NguyenDuy
2476  files:
2477    - boards/arm/mimx*/
2478    - boards/arm/frdm_k*/
2479    - boards/arm/lpcxpress*/
2480    - boards/arm/twr_*/
2481    - boards/arm/s32*/
2482    - boards/arm/mr_canhubk3/
2483    - boards/arm/vmu_rt*/
2484    - soc/arm/nxp_*/
2485    - drivers/*/*imx*
2486    - drivers/*/*lpc*.c
2487    - drivers/*/*mcux*.c
2488    - drivers/*/*nxp*
2489    - dts/arm/nxp/
2490    - dts/bindings/*/nxp*
2491    - soc/xtensa/nxp_adsp/
2492    - samples/boards/nxp*/
2493    - include/zephyr/dt-bindings/*/nxp*
2494    - include/zephyr/drivers/*/*nxp*
2495  labels:
2496    - "platform: NXP"
2497
2498Microchip MEC Platforms:
2499  status: maintained
2500  maintainers:
2501    - jvasanth1
2502  collaborators:
2503    - VenkatKotakonda
2504    - albertofloyd
2505  files:
2506    - boards/arm/mec*/
2507    - dts/arm/microchip/
2508    - soc/arm/microchip_mec/
2509    - drivers/*/*mchp*.c
2510    - tests/boards/mec15xxevb_assy6853/
2511    - tests/boards/mec172xevb_assy6906/
2512    - dts/bindings/*/microchip,*
2513  labels:
2514    - "platform: Microchip MEC"
2515
2516Microchip SAM Platforms:
2517  status: maintained
2518  maintainers:
2519    - nandojve
2520  collaborators:
2521    - attie-argentum
2522    - pdgendt
2523    - mnkp
2524    - stephanosio
2525  files:
2526    - boards/arm/atsam*/
2527    - boards/arm/sam*/
2528    - dts/arm/atmel/
2529    - soc/arm/atmel_sam*/
2530    - drivers/*/*sam*.c
2531    - dts/bindings/*/atmel,*
2532  labels:
2533    - "platform: Microchip SAM"
2534
2535nRF Platforms:
2536  status: maintained
2537  maintainers:
2538    - anangl
2539  files:
2540    - boards/arm/*nrf*/
2541    - drivers/*/*nrfx*.c
2542    - soc/arm/nordic_nrf/
2543    - samples/boards/nrf/
2544    - dts/arm/nordic/
2545    - dts/bindings/*/nordic,*
2546    - tests/drivers/timer/nrf_rtc_timer/
2547  labels:
2548    - "platform: nRF"
2549
2550Renesas SmartBond Platforms:
2551  status: maintained
2552  maintainers:
2553    - andrzej-kaczmarek
2554    - blauret
2555  files:
2556    - boards/arm/da14*/
2557    - drivers/*/*smartbond*
2558    - dts/arm/renesas/smartbond/
2559    - dts/bindings/*/renesas,smartbond*
2560    - soc/arm/renesas_smartbond/
2561  labels:
2562    - "platform: Renesas SmartBond"
2563  description: >-
2564    Renesas SmartBond SOCs, dts files, and related drivers. Renesas boards based
2565    on SmartBond SoCs.
2566
2567Renesas R-Car Platforms:
2568  status: maintained
2569  maintainers:
2570    - aaillet
2571    - lorc
2572  collaborators:
2573    - xakep-amatop
2574  files:
2575    - boards/arm/rcar_*/
2576    - boards/arm64/rcar_*/
2577    - drivers/*/*rcar*
2578    - drivers/clock_control/*cpg_mssr*
2579    - dts/arm/renesas/rcar/
2580    - dts/arm64/renesas/
2581    - dts/bindings/*/*rcar*
2582    - soc/arm/renesas_rcar/
2583    - soc/arm64/renesas_rcar/
2584  labels:
2585    - "platform: Renesas R-Car"
2586  description: >-
2587    Renesas R-Car SOCs, dts files (Cortex-R and Cortex-A sides).
2588    Renesas boards based on R-Car SOCs (Cortex-R and Cortex-A sides).
2589    Renesas R-Car related drivers.
2590
2591STM32 Platforms:
2592  status: maintained
2593  maintainers:
2594    - erwango
2595  collaborators:
2596    - ABOSTM
2597    - FRASTM
2598    - gautierg-st
2599    - Desvauxm-st
2600    - GeorgeCGV
2601  files:
2602    - boards/arm/nucleo_*/
2603    - boards/arm/stm32*_disco/
2604    - boards/arm/stm32*_dk*/
2605    - boards/arm/stm32*_eval/
2606    - drivers/*/*stm32*/
2607    - drivers/*/*stm32*.c
2608    - drivers/*/*stm32*.h
2609    - drivers/*/*/*stm32*
2610    - dts/arm/st/
2611    - dts/bindings/*/*stm32*
2612    - soc/arm/st_stm32/
2613    - samples/boards/stm32/
2614  labels:
2615    - "platform: STM32"
2616  description: >-
2617    STM32 SOCs, dts files and related drivers. ST nucleo, disco and eval
2618    boards.
2619
2620Espressif Platforms:
2621  status: maintained
2622  maintainers:
2623    - sylvioalves
2624  collaborators:
2625    - LucasTambor
2626    - marekmatej
2627    - uLipe
2628  files:
2629    - drivers/*/*esp32*.c
2630    - boards/xtensa/esp32*/
2631    - soc/xtensa/espressif_esp32*/
2632    - boards/riscv/esp32*/
2633    - soc/riscv/espressif_esp32*/
2634    - dts/xtensa/espressif/
2635    - dts/riscv/espressif/
2636    - dts/bindings/*/*esp32*
2637    - samples/boards/esp32*/
2638    - tests/boards/espressif_esp32/
2639    - drivers/wifi/esp32/
2640  labels:
2641    - "platform: ESP32"
2642
2643ITE Platforms:
2644  status: maintained
2645  maintainers:
2646    - Dino-Li
2647    - GTLin08
2648    - RuibinChang
2649  collaborators:
2650    - jackrosenthal
2651    - keith-zephyr
2652    - brockus-zephyr
2653    - sjg20
2654  files:
2655    - boards/riscv/it8*_evb/
2656    - drivers/*/*/*it8xxx2*.c
2657    - drivers/*/*it8xxx2*.c
2658    - dts/bindings/*/*ite*
2659    - dts/riscv/ite/
2660    - soc/riscv/riscv-ite/
2661  labels:
2662    - "platform: ITE"
2663
2664TI SimpleLink Platforms:
2665  status: maintained
2666  maintainers:
2667    - vaishnavachath
2668  collaborators:
2669    - vanti
2670    - cfriedt
2671  files:
2672    - boards/arm/cc13*/
2673    - boards/arm/cc26*/
2674    - boards/arm/cc32*/
2675    - boards/*/msp*/
2676    - drivers/*/*cc13*
2677    - drivers/*/*cc25*
2678    - drivers/*/*cc26*
2679    - drivers/*/*cc32*
2680    - dts/arm/ti/
2681    - dts/bindings/*/ti,*
2682    - soc/arm/ti_simplelink/
2683    - dts/bindings/*/ti,*
2684  labels:
2685    - "platform: TI SimpleLink"
2686
2687TI K3 Platforms:
2688  status: maintained
2689  maintainers:
2690    - vaishnavachath
2691  collaborators:
2692    - gramsay0
2693  files:
2694    - boards/*/*phycore_am6*/
2695    - boards/*/am6*/
2696    - drivers/*/*ti_k3*
2697    - dts/bindings/*/ti,k3*
2698    - soc/*/ti_k3/
2699  labels:
2700    - "platform: TI K3"
2701
2702Xilinx Platforms:
2703  status: odd fixes
2704  collaborators:
2705    - henrikbrixandersen
2706    - ibirnbaum
2707  files:
2708    - drivers/*/*xlnx*
2709    - dts/*/xilinx/
2710    - dts/bindings/*/*xlnx*
2711    - include/zephyr/*/*/*xlnx*
2712    - soc/arm/xilinx*/
2713  labels:
2714    - "platform: Xilinx"
2715
2716Infineon Platforms:
2717  status: maintained
2718  maintainers:
2719    - ifyall
2720  collaborators:
2721    - npal-cy
2722    - talih0
2723  files:
2724    - boards/arm/cy8ckit_*/
2725    - boards/arm/cy8cproto_*/
2726    - boards/arm/xmc*_relax*/
2727    - drivers/*/*ifx_cat1*
2728    - drivers/*/*xmc*/
2729    - drivers/*/*xmc*.c
2730    - drivers/*/*/*xmc*
2731    - dts/arm/infineon/
2732    - dts/bindings/*/*infineon*
2733    - soc/arm/infineon_*/
2734  labels:
2735    - "platform: Infineon"
2736  description: >-
2737    Infineon SOCs, dts files and related drivers. Infineon Proto, Pioneer, Eval and Relax
2738    boards.
2739
2740RTIO:
2741  status: maintained
2742  maintainers:
2743    - teburd
2744  collaborators:
2745    - yperess
2746  files:
2747    - samples/subsys/rtio/
2748    - include/zephyr/rtio/
2749    - tests/subsys/rtio/
2750    - subsys/rtio/
2751    - doc/services/rtio/
2752  labels:
2753    - "area: RTIO"
2754
2755Storage:
2756  status: odd fixes
2757  files:
2758    - subsys/storage/
2759    - include/zephyr/storage/
2760    - tests/subsys/storage/
2761    - doc/services/storage/
2762  labels:
2763    - "area: Storage"
2764
2765Sysbuild:
2766  status: maintained
2767  maintainers:
2768    - tejlmand
2769  collaborators:
2770    - nordicjm
2771    - "57300"
2772  files:
2773    - share/sysbuild/
2774    - samples/application_development/sysbuild/
2775    - doc/build/sysbuild/
2776  labels:
2777    - "area: Sysbuild"
2778
2779Task Watchdog:
2780  status: maintained
2781  maintainers:
2782    - martinjaeger
2783  files:
2784    - include/zephyr/task_wdt/
2785    - samples/subsys/task_wdt/
2786    - subsys/task_wdt/
2787    - doc/services/task_wdt/index.rst
2788  labels:
2789    - "area: Task Watchdog"
2790
2791TF-M Integration:
2792  status: maintained
2793  maintainers:
2794    - d3zd3z
2795  collaborators:
2796    - joerchan
2797  files:
2798    - samples/tfm_integration/
2799    - modules/trusted-firmware-m/
2800    - doc/services/tfm/
2801  labels:
2802    - "area: TF-M"
2803
2804"Toolchain Integration":
2805  status: maintained
2806  maintainers:
2807    - tejlmand
2808  collaborators:
2809    - stephanosio
2810  files:
2811    - cmake/bintools/
2812    - cmake/compiler/
2813    - cmake/linker/
2814    - cmake/toolchain/
2815  labels:
2816    - "area: Toolchains"
2817
2818"Toolchain ARC MWDT":
2819  status: maintained
2820  maintainers:
2821    - evgeniy-paltsev
2822    - abrodkin
2823  files:
2824    - cmake/*/arcmwdt/
2825    - include/zephyr/toolchain/mwdt.h
2826    - lib/libc/arcmwdt/*
2827  labels:
2828    - "area: Toolchains"
2829
2830"Toolchain arm compiler 6":
2831  status: maintained
2832  maintainers:
2833    - tejlmand
2834  files:
2835    - cmake/*/armclang/
2836    - cmake/linker/armlink/
2837    - include/zephyr/toolchain/armclang.h
2838    - lib/libc/armstdc/*
2839  labels:
2840    - "area: Toolchains"
2841
2842"Toolchain oneApi":
2843  status: maintained
2844  maintainers:
2845    - nashif
2846  files:
2847    - cmake/*/oneApi/
2848    - cmake/compiler/icx/
2849  labels:
2850    - "area: Toolchains"
2851
2852Tracing:
2853  status: maintained
2854  maintainers:
2855    - nashif
2856  collaborators:
2857    - teburd
2858  files:
2859    - subsys/tracing/
2860    - include/zephyr/tracing/
2861    - subsys/timing/
2862    - samples/subsys/tracing/
2863    - doc/services/tracing/
2864    - tests/subsys/tracing/
2865  labels:
2866    - "area: tracing"
2867
2868USB:
2869  status: maintained
2870  maintainers:
2871    - jfischer-no
2872  collaborators:
2873    - tmon-nordic
2874  files:
2875    - drivers/usb/
2876    - dts/bindings/usb/
2877    - include/zephyr/*/usb/
2878    - include/zephyr/usb/
2879    - samples/subsys/usb/
2880    - subsys/usb/
2881    - tests/subsys/usb/
2882    - tests/drivers/udc/
2883    - doc/connectivity/usb/
2884  labels:
2885    - "area: USB"
2886
2887USB-C:
2888  status: maintained
2889  maintainers:
2890    - sambhurst
2891  collaborators:
2892    - keith-zephyr
2893  files:
2894    - drivers/usb_c/
2895    - dts/bindings/usb-c/
2896    - include/zephyr/*/usb_c/
2897    - include/zephyr/usb_c/
2898    - samples/subsys/usb_c/
2899    - subsys/usb/usb_c/
2900    - doc/connectivity/usb/pd/
2901  labels:
2902    - "area: USB-C"
2903
2904Userspace:
2905  status: maintained
2906  maintainers:
2907    - dcpleung
2908  collaborators:
2909    - ceolin
2910  files:
2911    - doc/kernel/usermode/kernelobjects.rst
2912    - include/zephyr/app_memory/
2913    - include/zephyr/linker/app_smem*.ld
2914    - tests/kernel/mem_protect/
2915    - samples/userspace/
2916    - include/zephyr/syscall.h
2917    - kernel/userspace*
2918    - scripts/build/gen_app_partitions.py
2919    - scripts/build/gen_kobject_list.py
2920    - scripts/build/gen_syscalls.py
2921    - scripts/build/process_gperf.py
2922    - scripts/build/gen_relocate_app.py
2923    - include/zephyr/sys/kobject.h
2924  labels:
2925    - "area: Userspace"
2926
2927VFS:
2928  status: maintained
2929  maintainers:
2930    - de-nordic
2931  files:
2932    - subsys/fs/fat_fs.c
2933    - tests/subsys/fs/fat_fs_api/
2934  description: >-
2935    VFS implementation
2936
2937  labels:
2938    - "area: File System"
2939
2940West:
2941  status: maintained
2942  maintainers:
2943    - mbolivar-ampere
2944  collaborators:
2945    - carlescufi
2946    - swinslow
2947  files:
2948    - scripts/west-commands.yml
2949    - scripts/west_commands/
2950    - doc/develop/west/
2951    - scripts/pylib/build_helpers/domains.py
2952  labels:
2953    - "area: West"
2954
2955"West project: acpica":
2956  status: maintained
2957  maintainers:
2958    - najumon1980
2959  files:
2960    - modules/acpica/
2961  labels:
2962    - manifest-acpica
2963
2964"West project: canopennode":
2965  status: maintained
2966  maintainers:
2967    - henrikbrixandersen
2968  files:
2969    - modules/canopennode/
2970  labels:
2971    - "area: CAN"
2972
2973"West project: chre":
2974  status: maintained
2975  maintainers:
2976    - yperess
2977  files:
2978    - samples/modules/chre/
2979  labels:
2980    - "area: CHRE"
2981
2982"West project: cmsis":
2983  status: maintained
2984  maintainers:
2985    - stephanosio
2986  collaborators:
2987    - microbuilder
2988    - povergoing
2989  files:
2990    - modules/cmsis/Kconfig
2991  labels:
2992    - "area: ARM"
2993
2994"West project: cmsis-dsp":
2995  status: maintained
2996  maintainers:
2997    - XenuIsWatching
2998  collaborators:
2999    - stephanosio
3000  files:
3001    - modules/cmsis-dsp/
3002  labels:
3003    - "area: ARM"
3004
3005"West project: cmsis-nn":
3006  status: maintained
3007  maintainers:
3008    - XenuIsWatching
3009  collaborators:
3010    - stephanosio
3011  files:
3012    - modules/cmsis-nn/
3013  labels:
3014    - "area: ARM"
3015
3016"West project: edtt":
3017  status: maintained
3018  maintainers:
3019    - aescolar
3020  collaborators:
3021    - wopu-ot
3022    - thoh-ot
3023  files: []
3024  labels:
3025    - "area: Tests"
3026
3027"West project: fatfs":
3028  status: maintained
3029  maintainers:
3030    - de-nordic
3031  files:
3032    - modules/fatfs/
3033  labels:
3034    - "area: Storage"
3035
3036"West project: hal_altera":
3037  status: odd fixes
3038  collaborators:
3039    - nashif
3040  files:
3041    - modules/Kconfig.altera
3042  labels:
3043    - "platform: Altera"
3044
3045"West project: hal_ambiq":
3046  status: maintained
3047  maintainers:
3048    - fkokosinski
3049  collaborators:
3050    - tgorochowik
3051    - msobkowski
3052  files: []
3053  labels:
3054    - "platform: Ambiq"
3055
3056"West project: hal_atmel":
3057  status: maintained
3058  maintainers:
3059    - nandojve
3060  collaborators:
3061    - pdgendt
3062  files:
3063    - modules/Kconfig.atmel
3064  labels:
3065    - "platform: Microchip SAM"
3066
3067"West project: hal_cypress":
3068  status: maintained
3069  maintainers:
3070    - ifyall
3071  collaborators:
3072    - nashif
3073    - npal-cy
3074  files:
3075    - modules/Kconfig.cypress
3076  labels:
3077    - "platform: Infineon"
3078
3079"West project: hal_espressif":
3080  status: maintained
3081  maintainers:
3082    - sylvioalves
3083  collaborators:
3084    - LucasTambor
3085    - marekmatej
3086  files: []
3087  labels:
3088    - "platform: ESP32"
3089
3090"West project: hal_ethos_u":
3091  status: maintained
3092  maintainers:
3093    - kristofer-jonsson-arm
3094  files:
3095    - drivers/misc/ethos_u/
3096    - modules/hal_ethos_u/
3097  labels:
3098    - manifest-hal_ethos_u
3099
3100"West project: hal_gigadevice":
3101  status: maintained
3102  maintainers:
3103    - nandojve
3104  collaborators:
3105    - gmarull
3106    - soburi
3107  files:
3108    - modules/hal_gigadevice/
3109  labels:
3110    - "platform: GD32"
3111
3112"West project: hal_infineon":
3113  status: maintained
3114  maintainers:
3115    - ifyall
3116  collaborators:
3117    - parthitce
3118    - talih0
3119    - npal-cy
3120  files:
3121    - modules/Kconfig.infineon
3122    - modules/hal_infineon/
3123  labels:
3124    - "platform: Infineon"
3125
3126"West project: hal_microchip":
3127  status: maintained
3128  maintainers:
3129    - jvasanth1
3130  collaborators:
3131    - VenkatKotakonda
3132    - albertofloyd
3133  files:
3134    - modules/Kconfig.microchip
3135  labels:
3136    - "platform: Microchip SAM"
3137    - "platform: Microchip MEC"
3138
3139"West project: hal_nordic":
3140  status: maintained
3141  maintainers:
3142    - anangl
3143  collaborators:
3144    - hubertmis
3145    - nordic-krch
3146  files:
3147    - modules/hal_nordic/
3148  labels:
3149    - "platform: nRF"
3150
3151"West project: hal_nuvoton":
3152  status: maintained
3153  maintainers:
3154    - ssekar15
3155  files:
3156    - modules/Kconfig.nuvoton
3157  labels:
3158    - "platform: Nuvoton"
3159
3160"West project: hal_nxp":
3161  status: maintained
3162  maintainers:
3163    - dleach02
3164  collaborators:
3165    - mmahadevan108
3166    - danieldegrasse
3167    - manuargue
3168    - PetervdPerk-NXP
3169    - bperseghetti
3170  files:
3171    - modules/hal_nxp/
3172    - modules/Kconfig.imx
3173    - modules/Kconfig.mcux
3174    - modules/Kconfig.nxp_s32
3175  labels:
3176    - "platform: NXP"
3177
3178"West project: hal_openisa":
3179  status: odd fixes
3180  collaborators:
3181    - dleach02
3182  files:
3183    - modules/Kconfig.vega
3184  labels:
3185    - "platform: openisa/RV32M1"
3186
3187"West project: hal_quicklogic":
3188  status: odd fixes
3189  collaborators:
3190    - fkokosinski
3191  files: []
3192  labels:
3193    - "platform: Quicklogic"
3194
3195"West project: hal_renesas":
3196  status: maintained
3197  maintainers:
3198    - andrzej-kaczmarek
3199  files: []
3200  labels:
3201    - "platform: Renesas"
3202
3203"West project: hal_rpi_pico":
3204  status: maintained
3205  maintainers:
3206    - yonsch
3207  files:
3208    - modules/hal_rpi_pico/
3209  labels:
3210    - "platform: Raspberry Pi Pico"
3211
3212"West project: hal_silabs":
3213  status: maintained
3214  maintainers:
3215    - fkokosinski
3216  collaborators:
3217    - sateeshkotapati
3218    - yonsch
3219    - mnkp
3220  files:
3221    - modules/Kconfig.silabs
3222  labels:
3223    - "platform: SiLabs"
3224
3225"West project: hal_st":
3226  status: maintained
3227  maintainers:
3228    - avisconti
3229  collaborators:
3230    - erwango
3231  files:
3232    - modules/Kconfig.st
3233  labels:
3234    - "area: Sensors"
3235
3236"West project: hal_stm32":
3237  status: maintained
3238  maintainers:
3239    - erwango
3240  collaborators:
3241    - FRASTM
3242    - ABOSTM
3243    - gautierg-st
3244    - Desvauxm-st
3245  files:
3246    - modules/Kconfig.stm32
3247  labels:
3248    - "platform: STM32"
3249
3250"West project: hal_telink":
3251  status: maintained
3252  maintainers:
3253    - andy-liu-telink
3254  files:
3255    - modules/Kconfig.telink
3256  labels:
3257    - "platform: Telink"
3258
3259"West project: hal_ti":
3260  status: maintained
3261  maintainers:
3262    - vaishnavachath
3263  collaborators:
3264    - cfriedt
3265  files: []
3266  labels:
3267    - "platform: TI"
3268
3269"West project: hal_wurthelektronik":
3270  status: maintained
3271  maintainers:
3272    - mah-eiSmart
3273  files:
3274    - modules/Kconfig.wurthelektronik
3275  labels:
3276    - "area: Sensors"
3277
3278"West project: hal_xtensa":
3279  status: maintained
3280  maintainers:
3281    - dcpleung
3282  collaborators:
3283    - andyross
3284    - nashif
3285  files:
3286    - modules/Kconfig.xtensa
3287  labels:
3288    - "area: Xtensa"
3289
3290"West project: hal_intel":
3291  status: maintained
3292  maintainers:
3293    - kwd-doodling
3294  collaborators:
3295    - teburd
3296    - likongintel
3297  files:
3298    - modules/Kconfig.intel
3299  labels:
3300    - "platform: Intel"
3301
3302"West project: libmetal":
3303  status: odd fixes
3304  collaborators:
3305    - carlocaione
3306    - arnopo
3307  files:
3308    - modules/Kconfig.libmetal
3309  labels:
3310    - "area: AMP"
3311
3312"West project: liblc3":
3313  status: maintained
3314  maintainers:
3315    - Casper-Bonde-Bose
3316    - MariuszSkamra
3317  collaborators:
3318    - thalley
3319    - asbjornsabo
3320  files:
3321    - modules/liblc3/
3322  labels:
3323    - "area: Audio"
3324
3325"West project: littlefs":
3326  status: odd fixes
3327  files:
3328    - modules/littlefs/
3329  labels:
3330    - "area: Storage"
3331
3332"West project: loramac-node":
3333  status: maintained
3334  maintainers:
3335    - Mani-Sadhasivam
3336  files:
3337    - modules/loramac-node/
3338  labels:
3339    - "area: LoRa"
3340
3341"West project: lvgl":
3342  status: maintained
3343  maintainers:
3344    - faxe1008
3345  collaborators:
3346    - brgl
3347    - pdgendt
3348  files:
3349    - modules/lvgl/
3350    - tests/lib/gui/lvgl/
3351  labels:
3352    - "area: LVGL"
3353
3354"West project: lz4":
3355  status: odd fixes
3356  collaborators:
3357    - Navin-Sankar
3358  files:
3359    - modules/lz4/
3360  labels:
3361    - "area: Compression"
3362
3363"West project: mbedtls":
3364  status: maintained
3365  maintainers:
3366    - d3zd3z
3367    - ceolin
3368  files:
3369    - modules/mbedtls/
3370  labels:
3371    - "area: Crypto / RNG"
3372
3373"West project: mcuboot":
3374  status: maintained
3375  maintainers:
3376    - d3zd3z
3377  collaborators:
3378    - de-nordic
3379    - nordicjm
3380  files:
3381    - modules/Kconfig.mcuboot
3382    - tests/boot/test_mcuboot/
3383  labels:
3384    - "area: MCUBoot"
3385
3386"West project: mipi-sys-t":
3387  status: odd fixes
3388  collaborators:
3389    - dcpleung
3390  files:
3391    - modules/Kconfig.syst
3392  labels:
3393    - "area: Tracing"
3394
3395"West project: nanopb":
3396  status: maintained
3397  maintainers:
3398    - pdgendt
3399  files:
3400    - modules/nanopb/
3401    - samples/modules/nanopb/
3402    - tests/modules/nanopb/
3403  labels:
3404    - "area: Serialization"
3405
3406"West project: net-tools":
3407  status: odd fixes
3408  maintainers:
3409    - jukkar
3410  collaborators:
3411    - rlubos
3412  files: []
3413  labels:
3414    - "area: Networking"
3415
3416"West project: nrf_hw_models":
3417  status: maintained
3418  maintainers:
3419    - aescolar
3420  collaborators:
3421    - wopu-ot
3422    - thoh-ot
3423  files: []
3424  labels:
3425    - "area: native port"
3426
3427"West project: open-amp":
3428  status: odd fixes
3429  collaborators:
3430    - carlocaione
3431  files:
3432    - modules/Kconfig.open-amp
3433  labels:
3434    - "area: AMP"
3435
3436"West project: openthread":
3437  status: maintained
3438  maintainers:
3439    - rlubos
3440  collaborators:
3441    - pdgendt
3442    - canisLupus1313
3443    - mariuszpos
3444  files:
3445    - modules/openthread/
3446  labels:
3447    - "area: OpenThread"
3448
3449"West project: percepio":
3450  status: maintained
3451  maintainers:
3452    - eriktamlin
3453    - aronlander-pe
3454  files:
3455    - modules/percepio/
3456  labels:
3457    - "area: Tracing"
3458
3459"West project: picolibc":
3460  status: maintained
3461  maintainers:
3462    - keith-packard
3463  collaborators:
3464    - stephanosio
3465  files: []
3466  labels:
3467    - "area: C Library"
3468    - "area: picolibc"
3469
3470"West project: segger":
3471  status: odd fixes
3472  collaborators:
3473    - nordic-krch
3474  files:
3475    - modules/segger/
3476  labels:
3477    - "area: Debugging"
3478
3479"West project: sof":
3480  status: maintained
3481  maintainers:
3482    - kv2019i
3483  collaborators:
3484    - andyross
3485    - nashif
3486    - lyakh
3487    - lgirdwood
3488    - marc-hb
3489  files:
3490    - modules/Kconfig.sof
3491  labels:
3492    - "area: Audio"
3493
3494"West project: tflite-micro":
3495  status: odd fixes
3496  collaborators:
3497    - laurenmurphyx64
3498  files:
3499    - modules/tflite-micro/
3500    - samples/modules/tflite-micro/
3501  labels:
3502    - "area: Neural Networks"
3503
3504"West project: thrift":
3505  status: maintained
3506  maintainers:
3507    - cfriedt
3508  files:
3509    - modules/thrift/
3510    - samples/modules/thrift/
3511    - tests/lib/thrift/
3512  labels:
3513    - "area: Thrift"
3514    - "area: Serialization"
3515
3516"West project: tinycrypt":
3517  status: odd fixes
3518  files:
3519    - modules/Kconfig.tinycrypt
3520  labels:
3521    - "area: Crypto / RNG"
3522
3523"West project: trusted-firmware-m":
3524  status: maintained
3525  maintainers:
3526    - d3zd3z
3527  collaborators:
3528    - joerchan
3529    - SebastianBoe
3530  files:
3531    - modules/trusted-firmware-m/
3532  labels:
3533    - "area: TF-M"
3534
3535"West project: tf-m-tests":
3536  status: maintained
3537  maintainers:
3538    - d3zd3z
3539  collaborators:
3540    - joerchan
3541    - SebastianBoe
3542  files: []
3543  labels:
3544    - "area: TF-M"
3545
3546"West project: trusted-firmware-a":
3547  status: maintained
3548  maintainers:
3549    - povergoing
3550    - sgrrzhf
3551  collaborators:
3552    - carlocaione
3553  files:
3554    - modules/trusted-firmware-a/
3555  labels:
3556    - "area: TF-A"
3557
3558"West project: psa-arch-tests":
3559  status: maintained
3560  maintainers:
3561    - d3zd3z
3562  collaborators:
3563    - joerchan
3564    - SebastianBoe
3565  files: []
3566  labels:
3567    - "area: TF-M"
3568
3569"West project: uoscore-uedhoc":
3570  status: maintained
3571  maintainers:
3572    - rlubos
3573    - StefanHri
3574  files:
3575    - modules/uoscore-uedhoc/
3576  labels:
3577    - "area: Networking"
3578    - "area: Crypto / RNG"
3579
3580"West project: zcbor":
3581  status: maintained
3582  maintainers:
3583    - de-nordic
3584  files:
3585    - modules/zcbor/
3586  labels:
3587    - "area: CBOR"
3588
3589"West project: zscilib":
3590  status: maintained
3591  maintainers:
3592    - microbuilder
3593  files: []
3594  labels:
3595    - "area: Sensors"
3596
3597Xtensa arch:
3598  status: maintained
3599  maintainers:
3600    - dcpleung
3601  collaborators:
3602    - andyross
3603    - nashif
3604    - ceolin
3605  files:
3606    - arch/xtensa/
3607    - include/zephyr/arch/xtensa/
3608    - dts/xtensa/
3609    - boards/xtensa/qemu_xtensa/
3610    - boards/xtensa/xt-sim/
3611  labels:
3612    - "area: Xtensa"
3613
3614x86 arch:
3615  status: maintained
3616  maintainers:
3617    - jhedberg
3618  collaborators:
3619    - tbursztyka
3620    - andyross
3621    - nashif
3622    - dcpleung
3623    - ceolin
3624    - laurenmurphyx64
3625  files:
3626    - arch/x86/
3627    - include/zephyr/arch/x86/
3628    - tests/arch/x86/
3629    - drivers/interrupt_controller/*intel*
3630    - drivers/interrupt_controller/*ioapic*
3631    - drivers/interrupt_controller/*loapic*
3632    - doc/hardware/arch/x86.rst
3633  labels:
3634    - "area: X86"
3635
3636Continuous Integration:
3637  status: maintained
3638  maintainers:
3639    - stephanosio
3640    - nashif
3641    - galak
3642  files:
3643    - .github/
3644    - scripts/ci/
3645    - .checkpatch.conf
3646    - scripts/gitlint/
3647  labels:
3648    - "area: Continuous Integration"
3649
3650ZTest:
3651  status: maintained
3652  maintainers:
3653    - nashif
3654  collaborators:
3655    - aaronemassey
3656    - jeremybettis
3657    - yperess
3658    - asemjonovs
3659  files:
3660    - subsys/testsuite/
3661    - tests/ztest/
3662    - tests/unit/util/
3663    - samples/subsys/testsuite/
3664    - doc/develop/test/ztest.rst
3665  labels:
3666    - "area: Testsuite"
3667
3668Emulation:
3669  status: maintained
3670  maintainers:
3671    - yperess
3672  collaborators:
3673    - aaronemassey
3674    - jeremybettis
3675    - alevkoy
3676    - asemjonovs
3677    - tristan-google
3678  files:
3679    - subsys/emul/
3680    - include/zephyr/drivers/emul.h
3681    - include/zephyr/drivers/espi_emul.h
3682    - include/zephyr/drivers/i2c_emul.h
3683    - include/zephyr/drivers/spi_emul.h
3684    - tests/subsys/emul/
3685    - doc/hardware/emulator/
3686  labels:
3687    - "area: HW Emulation"
3688
3689Random:
3690  status: maintained
3691  maintainers:
3692    - ceolin
3693  files:
3694    - subsys/random/
3695    - include/zephyr/random/
3696  labels:
3697    - "area: Random"
3698
3699# This area is to be converted to a subarea
3700Testing with Renode:
3701  status: maintained
3702  collaborators:
3703    - mateusz-holenko
3704    - fkokosinski
3705  files:
3706    - cmake/emu/renode.cmake
3707    - boards/*/*/support/*.repl
3708    - boards/*/*/support/*.resc
3709  labels:
3710    - "area: Renode"
3711
3712zbus:
3713  status: maintained
3714  maintainers:
3715    - rodrigopex
3716  files:
3717    - samples/subsys/zbus/
3718    - include/zephyr/zbus/
3719    - tests/subsys/zbus/
3720    - subsys/zbus/
3721    - doc/services/zbus/
3722  labels:
3723    - "area: zbus"
3724
3725"Linkable Loadable Extensions":
3726  status: maintained
3727  maintainers:
3728    - teburd
3729  collaborators:
3730    - lyakh
3731  files:
3732    - samples/subsys/llext/
3733    - include/zephyr/llext/
3734    - tests/subsys/llext/
3735    - subsys/llext/
3736    - doc/services/llext/
3737  labels:
3738    - "area: Linkable Loadable Extensions"
3739