blob: 5a8ca1eb4795c9a8d96427e67042b92f66fc59b2 [file] [log] [blame]
Chris Kayf64c5582021-12-01 16:34:55 +00001#
Chris Kaye7be9242025-02-03 11:25:43 +00002# Copyright (c) 2021-2025, Arm Limited. All rights reserved.
Chris Kayf64c5582021-12-01 16:34:55 +00003#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
7#
8# The following block describes the top-level sections of the changelog. Commits are categorized
9# into these top-level sections based on the commit message "type":
10#
11# feat(xyz): add the xyz feature
12# ^^^^
13#
14
15sections:
16 - title: New Features
17 description: A new feature
18 type: feat
19
20 - title: Resolved Issues
21 description: A bug fix
22 type: fix
23
24 - title: Build System
25 description: Changes that affect the build system or external dependencies
26 type: build
27 hidden: true
28
29 - title: Continuous Integration
30 description: Changes to our CI configuration files and scripts
31 type: ci
32 hidden: true
33
Chris Kay833b4ff2022-09-29 16:42:23 +010034 - title: Documentation
Chris Kayf64c5582021-12-01 16:34:55 +000035 description: Documentation-only changes
36 type: docs
37 hidden: true
38
39 - title: Performance Improvements
40 description: A code change that improves performance
41 type: perf
42 hidden: true
43
44 - title: Code Refactoring
45 description: A code change that neither fixes a bug nor adds a feature
46 type: refactor
47 hidden: true
48
49 - title: Reverted Changes
50 description: Changes that revert a previous change
51 type: revert
52 hidden: true
53
54 - title: Style
55 description: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc.)
56 type: style
57 hidden: true
58
59 - title: Tests
60 description: Adding missing tests or correcting existing tests
61 type: test
62 hidden: true
63
64 - title: Miscellaneous
65 description: Any other change
66 type: chore
67 hidden: true
68
69#
70# The following block describes the sub-sections of the changelog. These sub-sections may appear in
71# any of the top-level sections, and describe the individual components that a change may relate to.
72#
73# Sub-sections have an optional associated commit message "scope":
74#
75# feat(xyz): add the xyz feature
76# ^^^
77#
78# This file also describes deprecated scopes, which are scopes that were used before we introduced
79# scope enforcement. These will not pass CI checks when used, but they will be used to generate the
80# changelog.
81#
82# Please note that new scopes should be kebab-case: https://en.wiktionary.org/wiki/kebab_case
83#
84
85subsections:
86 - title: Architecture
87
88 subsections:
Govindraj Raja9b494c22025-01-28 17:38:14 -060089 - title: CPU feature like FEAT_XXXX / ID register handling in general
Andre Przywara69c17f52022-11-14 15:38:58 +000090 scope: cpufeat
91
Govindraj Raja1e02ce62024-03-19 14:32:20 -050092 deprecated:
Govindraj Raja9b494c22025-01-28 17:38:14 -060093 - amu
94 - brbe
95 - bti
96 - cca
97 - ccidx
98 - d128
99 - debugv8p9
100 - fgt2
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500101 - fpmr
Govindraj Raja9b494c22025-01-28 17:38:14 -0600102 - gcs
103 - hcx
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500104 - mops
Govindraj Raja9b494c22025-01-28 17:38:14 -0600105 - mpam
Govindraj Raja1e02ce62024-03-19 14:32:20 -0500106 - mte
Govindraj Raja9b494c22025-01-28 17:38:14 -0600107 - mte2
108 - pauth
109 - pmu
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500110 - pmuv3
Govindraj Raja9b494c22025-01-28 17:38:14 -0600111 - rng-trap
112 - sctlr2
113 - feat_sctlr2
114 - sme
115 - spe
116 - sve
117 - sys-reg-trace
Chris Kayf64c5582021-12-01 16:34:55 +0000118 - sys_reg_trace
Govindraj Raja9b494c22025-01-28 17:38:14 -0600119 - tcr2
120 - trbe
121 - trf
122 - the
Chris Kayf64c5582021-12-01 16:34:55 +0000123
Manish V Badarkhe669e2b12024-05-17 11:09:28 +0100124 - title: DynamIQ Shared Unit (DSU)
125 scope: dsu
126
Chris Kayf64c5582021-12-01 16:34:55 +0000127 - title: Platforms
Manish V Badarkhe98735802023-11-21 14:35:13 +0000128 scope: platforms
129
130 deprecated:
131 - plat/common
Manish V Badarkhe669e2b12024-05-17 11:09:28 +0100132 - plat
Chris Kayf64c5582021-12-01 16:34:55 +0000133
134 subsections:
135 - title: Allwinner
136 scope: allwinner
137
138 deprecated:
139 - plat/allwinner
140
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500141 - title: AMLogic
142 scope: amlogic
143
144 subsections:
145 - title: GXL
146 scope: gxl
147
Chris Kayf64c5582021-12-01 16:34:55 +0000148 - title: Arm
149 scope: arm
150
151 deprecated:
152 - plat/arm
153
154 subsections:
Govindraj Rajae614ba32024-11-19 10:19:37 -0600155 - title: Common
156 scope: common
157
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500158 - title: A5DS
159 scope: a5ds
160
laurenw-arm21cd0662022-11-01 14:45:33 -0500161 - title: CSS
162 scope: css
163
164 deprecated:
165 - plat/arm/css
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500166 - plat/css
laurenw-arm21cd0662022-11-01 14:45:33 -0500167
Chris Kayf64c5582021-12-01 16:34:55 +0000168 - title: FPGA
169 scope: fpga
170
171 deprecated:
172 - arm_fgpa
Chris Kayf64c5582021-12-01 16:34:55 +0000173 - plat/arm_fpga
Manish V Badarkhe98735802023-11-21 14:35:13 +0000174 - arm/fpga
Chris Kayf64c5582021-12-01 16:34:55 +0000175
176 - title: FVP
177 scope: fvp
178
179 deprecated:
180 - plat/fvp
laurenw-arm21cd0662022-11-01 14:45:33 -0500181 - fvp/tsp_manifest
Chris Kayf64c5582021-12-01 16:34:55 +0000182
laurenw-arm21cd0662022-11-01 14:45:33 -0500183 - title: FVP Versatile Express
184 scope: fvp_ve
185
Chris Kayf64c5582021-12-01 16:34:55 +0000186 - title: Juno
187 scope: juno
188
189 - title: Morello
190 scope: morello
191
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100192 - title: N1SDP
193 scope: n1sdp
194
Rohit Mathew682da932024-04-15 17:31:04 +0100195 - title: Neoverse-RD
196 scope: neoverse-rd
Chris Kayf64c5582021-12-01 16:34:55 +0000197
198 subsections:
199 - title: RD-N2
200 scope: rdn2
201
Jerry Wang137ab5c2024-07-08 15:17:42 +0100202 - title: RD-V3
203 scope: rdv3
Rohit Mathew84973bb2024-04-15 17:54:16 +0100204
Chris Kayf64c5582021-12-01 16:34:55 +0000205 deprecated:
206 - board/rdn2
Yann Gautier48a59eb2024-11-13 11:29:50 +0100207 - rdfremont
Chris Kayf64c5582021-12-01 16:34:55 +0000208
Manish V Badarkhe669e2b12024-05-17 11:09:28 +0100209 deprecated:
210 - neoverse
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500211 - neoverse_rd
Manish V Badarkhe669e2b12024-05-17 11:09:28 +0100212
Chris Kayf64c5582021-12-01 16:34:55 +0000213 - title: TC
214 scope: tc
215
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500216 deprecated:
217 - plat/tc
218
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100219 - title: Corstone-1000
220 scope: corstone-1000
221
Yann Gautier48a59eb2024-11-13 11:29:50 +0100222 deprecated:
223 - corstone1000
224
Peter Hoyesf661c742023-02-20 12:08:43 +0000225 - title: Automotive RD
226 scope: automotive_rd
227
228 subsections:
229 - title: RD-1 AE
230 scope: rd1ae
231
Chia-Wei Wang85f199b2022-11-02 17:50:21 +0800232 - title: Aspeed
233 scope: aspeed
234
235 subsections:
236 - title: AST2700
237 scope: ast2700
238
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100239 - title: Broadcom
240 scope: brcm
241
Manish V Badarkhe98735802023-11-21 14:35:13 +0000242 - title: Cadence
243 scope: cadence
244
laurenw-arm21cd0662022-11-01 14:45:33 -0500245 - title: HiSilicon
246 scope: hisilicon
247
248 subsections:
249 - title: HiKey
250 scope: hikey
251
252 - title: HiKey960
253 scope: hikey960
254
Yann Gautier48a59eb2024-11-13 11:29:50 +0100255 - title: Poplar
256 scope: poplar
257
Sieu Mun Tange5641372022-02-22 14:14:26 +0800258 - title: Intel
259 scope: intel
260
261 subsections:
262 - title: SoC
263 scope: soc
264
Chris Kayf64c5582021-12-01 16:34:55 +0000265 - title: Marvell
266 scope: marvell
267
268 deprecated:
269 - plat/marvell
270
271 subsections:
272 - title: Armada
273 scope: armada
274
275 deprecated:
276 - plat/marvell/armada
277
278 subsections:
279 - title: A3K
280 scope: a3k
281
282 deprecated:
283 - plat/marvell/a3k
284
285 - title: A8K
286 scope: a8k
287
288 deprecated:
289 - plat/marvell/a8k
290
291 - title: MediaTek
292 scope: mediatek
293
294 deprecated:
295 - plat/mediatek/common
296 - plat/mediatek
297
298 subsections:
299 - title: MT8183
300 scope: mt8183
301
302 deprecated:
303 - plat/mediatek/mt8183
304
laurenw-arm21cd0662022-11-01 14:45:33 -0500305 - title: MT8186
306 scope: mt8186
307
308 deprecated:
309 - plat/mediatek/mt8186
310 - mt8186-emi-mpu
311
312 - title: MT8188
313 scope: mt8188
314
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500315 - title: MT8189
316 scope: mt8189
317
Chris Kayf64c5582021-12-01 16:34:55 +0000318 - title: MT8192
319 scope: mt8192
320
321 deprecated:
322 - plat/mdeiatek/mt8192
323
324 - title: MT8195
325 scope: mt8195
326
327 deprecated:
328 - plat/mediatek/me8195
329 - plat/mediatek/mt8195
330 - plat/mdeiatek/mt8195
331
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500332 - title: MT8196
333 scope: mt8196
334
Chris Kayf64c5582021-12-01 16:34:55 +0000335 - title: NVIDIA
336 scope: nvidia
337
338 subsections:
339 - title: Tegra
340 scope: tegra
341
342 deprecated:
343 - plat/tegra
344
345 subsections:
346 - title: Tegra 132
347 scope: tegra132
348
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100349 - title: Tegra 194
350 scope: tegra194
351
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500352 - title: Tegra 210
353 scope: tegra210
354
Chris Kayf64c5582021-12-01 16:34:55 +0000355 - title: NXP
356 scope: nxp
357
358 deprecated:
359 - plat/nxp
360 - plat/nxp/common
361
362 subsections:
363 - title: i.MX
364 scope: imx
365
366 deprecated:
367 - plat/imx
368 - plat/imx/imx
369
370 subsections:
371 - title: i.MX 8M
372 scope: imx8m
373
374 deprecated:
375 - plat/imx8m
376 - plat/imx/imx8m
377
378 subsections:
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100379 - title: i.MX 8M Nano
380 scope: imx8mn
381
382 deprecated:
383 - plat/imx/imx8m/imx8mn
384
Chris Kayf64c5582021-12-01 16:34:55 +0000385 - title: i.MX 8M Mini
386 scope: imx8mm
387
388 deprecated:
389 - plat/imx/imx8m/imx8mm
390
391 - title: i.MX 8M Plus
392 scope: imx8mp
393
394 deprecated:
395 - plat/imx/imx8m/imx8mp
396
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100397 - title: i.MX 8Q
398 scope: imx8mq
399
400 deprecated:
401 - plat/imx/imx8m/imx8mq
402
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500403 - title: i.MX 8
404 scope: imx8
405
Jacky Bai0d6b4cd2023-10-08 17:52:24 +0800406 - title: i.MX 8ULP
407 scope: imx8ulp
408
Jacky Bai9f38eb82023-06-14 15:24:00 +0800409 - title: i.MX 9
410 scope: imx9
411
412 subsections:
413 - title: i.MX93
414 scope: imx93
415
Chris Kayf64c5582021-12-01 16:34:55 +0000416 - title: Layerscape
417 scope: layerscape
418
419 deprecated:
420 - docs/nxp/layerscape
421
422 subsections:
423 - title: LS1028A
424 scope: ls1028a
425
426 deprecated:
427 - plat/nxp/ls1028a
428
429 subsections:
430 - title: LS1028ARDB
431 scope: ls1028ardb
432
433 deprecated:
434 - plat/nxp/ls1028ardb
435
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100436 - title: LS1043A
437 scope: ls1043a
438
439 deprecated:
440 - plat/nxp/ls1043a
441
442 subsections:
443 - title: LS1043ARDB
444 scope: ls1043ardb
445
446 deprecated:
447 - plat/nxp/ls1043ardb
448
Chris Kayf64c5582021-12-01 16:34:55 +0000449 - title: LX2
450 scope: lx2
451
452 deprecated:
453 - plat/nxp/lx2
454
455 subsections:
456 - title: LX216
457 scope: lx216
458
459 deprecated:
460 - plat/nxp/lx216x
461
462 subsections:
463 - title: LX2160
464 scope: lx2160
465
466 deprecated:
467 - plat/soc-lx2160
468
Jiafei Pan1acfb982022-02-10 10:39:56 +0800469 - title: LS1046A
470 scope: ls1046a
471
472 subsections:
473 - title: LS1046ARDB
474 scope: ls1046ardb
475
476 - title: LS1046AFRWY
477 scope: ls1046afrwy
478
479 - title: LS1046AQDS
480 scope: ls1046aqds
481
Jiafei Panccb71e32022-02-24 16:00:35 +0800482 - title: LS1088A
483 scope: ls1088a
484
485 subsections:
486 - title: LS1088ARDB
487 scope: ls1088ardb
488
489 - title: LS1088AQDS
490 scope: ls1088aqds
491
Ghennadi Procopciuc8b81a392024-01-30 16:19:47 +0200492 - title: S32G274A
493 scope: s32g274a
494
495 subsections:
496 - title: S32G274ARDB
497 scope: s32g274ardb
498
Chris Kayf64c5582021-12-01 16:34:55 +0000499 - title: QEMU
500 scope: qemu
501
502 deprecated:
503 - plat/qemu
504
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500505 subsections:
506 - title: SBSA
507 scope: qemu-sbsa
508
Manish V Badarkhe98735802023-11-21 14:35:13 +0000509 deprecated:
510 - qemu_sbsa
511
Chris Kayf64c5582021-12-01 16:34:55 +0000512 - title: QTI
513 scope: qti
514
laurenw-arm21cd0662022-11-01 14:45:33 -0500515 deprecated:
516 - plat/qti
517
Chris Kayf64c5582021-12-01 16:34:55 +0000518 subsections:
519 - title: SC1780
520 scope: sc7180
521
522 deprecated:
523 - plat/qti/sc7180
524
525 - title: SC7280
526 scope: sc7280
527
528 deprecated:
529 - plat/qti/sc7280
530
Stephan Gerholdfa145392021-12-01 20:00:00 +0100531 - title: MSM8916
532 scope: msm8916
533
Chris Kayf64c5582021-12-01 16:34:55 +0000534 - title: Raspberry Pi
535 scope: rpi
536
537 subsections:
laurenw-arm21cd0662022-11-01 14:45:33 -0500538 - title: Raspberry Pi 3
539 scope: rpi3
540
Chris Kayf64c5582021-12-01 16:34:55 +0000541 - title: Raspberry Pi 4
542 scope: rpi4
543
Mario Bălănicăf834b642023-12-02 03:08:02 +0200544 - title: Raspberry Pi 5
545 scope: rpi5
546
Chris Kayf64c5582021-12-01 16:34:55 +0000547 - title: Renesas
548 scope: renesas
549
550 subsections:
551 - title: R-Car
552 scope: rcar
553
554 deprecated:
555 - plat/rcar
556
557 subsections:
558 - title: R-Car 3
559 scope: rcar3
560
561 deprecated:
562 - plat/rcar3
563
564 - title: Rockchip
565 scope: rockchip
566
567 subsections:
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500568 - title: PX30
569 scope: px30
570
571 - title: RK3288
572 scope: rk3288
573
Chris Kayf64c5582021-12-01 16:34:55 +0000574 - title: RK3399
575 scope: rk3399
576
577 deprecated:
578 - rockchip/rk3399
579 - rk3399/suspend
580
Diederik de Haasdd2c8882023-11-27 10:21:37 +0100581 - title: RK3328
582 scope: rk3328
583
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500584 - title: RK3576
585 scope: rk3576
586
Yann Gautier48a59eb2024-11-13 11:29:50 +0100587 - title: RK3588
588 scope: rk3588
589
Chris Kayf64c5582021-12-01 16:34:55 +0000590 - title: Socionext
591 scope: socionext
592
593 subsections:
594 - title: Synquacer
595 scope: synquacer
596
597 deprecated:
598 - plat/synquacer
599
600 - title: ST
601 scope: st
602
603 deprecated:
604 - plat/st
605
606 subsections:
Yann Gautier96f58612022-06-01 18:17:43 +0200607 - title: STM32MP1
Chris Kayf64c5582021-12-01 16:34:55 +0000608 scope: stm32mp1
609
610 deprecated:
611 - plat/st/stm32mp1
612
Yann Gautier96f58612022-06-01 18:17:43 +0200613 subsections:
614 - title: STM32MP13
615 scope: stm32mp13
616
617 - title: STM32MP15
618 scope: stm32mp15
619
Yann Gautier3f6c16f2022-12-16 15:32:25 +0100620 - title: STM32MP2
621 scope: stm32mp2
622
Yann Gautier10f60d32023-11-23 19:37:21 +0100623 subsections:
Yann Gautierf83afc92023-11-23 19:37:21 +0100624 - title: STM32MP21
625 scope: stm32mp21
626
627 - title: STM32MP23
628 scope: stm32mp23
629
Yann Gautier10f60d32023-11-23 19:37:21 +0100630 - title: STM32MP25
631 scope: stm32mp25
632
Dave Gerlach8ba55ec2022-03-22 11:02:52 -0500633 - title: Texas Instruments
634 scope: ti
635
636 subsections:
637 - title: K3
638 scope: k3
639
laurenw-arm21cd0662022-11-01 14:45:33 -0500640 deprecated:
641 - ti-k3
642
Chris Kayf64c5582021-12-01 16:34:55 +0000643 - title: Xilinx
644 scope: xilinx
645
646 deprecated:
647 - plat/xilinx
648
649 subsections:
Michal Simeke311b9b2023-09-18 10:22:48 +0200650 - title: DCC (Debug Communication Channel)
651 scope: dcc
652
Chris Kayf64c5582021-12-01 16:34:55 +0000653 - title: Versal
654 scope: versal
655
656 deprecated:
657 - plat/xilinx/versal/include
658 - plat/xilinx/versal
659 - plat/versal
660
Manish V Badarkhe669e2b12024-05-17 11:09:28 +0100661 - title: Versal NET
662 scope: versal-net
laurenw-arm21cd0662022-11-01 14:45:33 -0500663
Manish V Badarkhe669e2b12024-05-17 11:09:28 +0100664 deprecated:
665 - versal_net
laurenw-arm21cd0662022-11-01 14:45:33 -0500666
Chris Kayf64c5582021-12-01 16:34:55 +0000667 - title: ZynqMP
668 scope: zynqmp
669
670 deprecated:
671 - plat/zynqmp
672 - plat/xilinx/zynqmp
673
Amit Nagalc97857d2024-06-05 12:32:38 +0530674 - title: AMD
675 scope: amd
676
677 subsections:
678 - title: Versal Gen 2
679 scope: versal2
680
rutigl@gmail.comedcece12023-03-19 09:19:05 +0200681 - title: Nuvoton
682 scope: nuvoton
683
684 subsections:
685 - title: npcm845x
686 scope: npcm845x
687
Chris Kayf64c5582021-12-01 16:34:55 +0000688 - title: Bootloader Images
689 scope: bl
690
691 deprecated:
692 - bl_common
693
694 subsections:
695 - title: BL1
696 scope: bl1
697
698 - title: BL2
699 scope: bl2
700
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100701 - title: BL31
702 scope: bl31
703
Shruti Gupta5b7bd2a2022-08-09 10:46:07 +0100704 - title: BL32
705 scope: bl32
706
707 subsections:
708 - title: TSP
709 scope: tsp
710
Chris Kayf64c5582021-12-01 16:34:55 +0000711 - title: Services
712 scope: services
713
Yann Gautier48a59eb2024-11-13 11:29:50 +0100714 deprecated:
715 - std_svc
716
Chris Kayf64c5582021-12-01 16:34:55 +0000717 subsections:
718 - title: FF-A
Daniel Boulby93a8ce02021-12-06 14:44:35 +0000719 scope: ff-a
Chris Kayf64c5582021-12-01 16:34:55 +0000720
721 deprecated:
Daniel Boulby93a8ce02021-12-06 14:44:35 +0000722 - ffa
Chris Kayf64c5582021-12-01 16:34:55 +0000723
724 - title: RME
725 scope: rme
726
laurenw-arm21cd0662022-11-01 14:45:33 -0500727 deprecated:
728 - rme/fid
729
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100730 subsections:
731 - title: TRP
732 scope: trp
733
Javier Almansa Sobrino8c980a42021-11-24 18:37:37 +0000734 - title: RMMD
735 scope: rmmd
736
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500737 - title: RMM
738 scope: rmm
739
Chris Kayf64c5582021-12-01 16:34:55 +0000740 - title: SPM
741 scope: spm
742
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100743 subsections:
Manish V Badarkhe98735802023-11-21 14:35:13 +0000744 - title: EL3 SPM
745 scope: el3-spm
746
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100747 - title: EL3 SPMC
748 scope: el3-spmc
Daniel Boulby93a8ce02021-12-06 14:44:35 +0000749
laurenw-arm21cd0662022-11-01 14:45:33 -0500750 deprecated:
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500751 - el3_spmc
laurenw-arm21cd0662022-11-01 14:45:33 -0500752 - spmc
753
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100754 - title: SPMD
755 scope: spmd
756
757 - title: SPM MM
758 scope: spm-mm
Chris Kayf64c5582021-12-01 16:34:55 +0000759
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500760 deprecated:
761 - spm_mm
762
Manish V Badarkhe7b224f12022-06-27 09:21:14 +0100763 - title: DRTM
764 scope: drtm
765
Jayanth Dodderi Chidanand0b22e592022-10-11 17:16:07 +0100766 - title: TRNG
767 scope: trng
768
Sona Mathew5c8fcc02023-09-20 12:55:32 -0500769 - title: ERRATA ABI
770 scope: errata-abi
771
772 deprecated:
773 - errata_abi
Sona Mathewffea3842022-11-18 18:05:38 -0600774
Manish V Badarkhe669e2b12024-05-17 11:09:28 +0100775 - title: ChromeOS
776 scope: cros
777
Yann Gautier02c580c2024-11-13 13:46:15 +0100778 - title: Secure Payload Dispatcher
779 scope: spd
780
781 subsections:
782 - title: OP-TEE
783 scope: optee
784
785 deprecated:
786 - lib/optee
787
788 - title: ProvenCore
789 scope: pncd
790
791 - title: Trusted Little Kernel
792 scope: tlkd
793
794 - title: Trusty
795 scope: trusty
796
797 - title: TSP
798 scope: tspd
799
Chris Kayf64c5582021-12-01 16:34:55 +0000800 - title: Libraries
Manish V Badarkhe98735802023-11-21 14:35:13 +0000801 scope: lib
Chris Kayf64c5582021-12-01 16:34:55 +0000802
803 subsections:
804 - title: CPU Support
805 scope: cpus
806
807 deprecated:
808 - cpu
809 - errata
810 - errata_report
811
812 - title: EL3 Runtime
813 scope: el3-runtime
814
815 deprecated:
816 - el3_runtime
817
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100818 subsections:
819 - title: Context Management
820 scope: cm
821
laurenw-arm21cd0662022-11-01 14:45:33 -0500822 - title: RAS
823 scope: ras
824
Madhukar Pappireddy841533d2024-06-17 15:12:26 -0500825 - title: SIMD
826 scope: simd
827
Chris Kayf64c5582021-12-01 16:34:55 +0000828 - title: FCONF
829 scope: fconf
830
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500831 - title: HOB
832 scope: hob
833
Chris Kayf64c5582021-12-01 16:34:55 +0000834 - title: MPMM
835 scope: mpmm
836
Chris Kayf64c5582021-12-01 16:34:55 +0000837 - title: PSCI
838 scope: psci
839
Chris Kay7fc4d772024-01-15 18:45:07 +0000840 - title: ROMlib
841 scope: romlib
842
Yann Gautier5ea70892025-04-11 16:48:14 +0200843 - title: Granule Protection Tables
Chris Kayf64c5582021-12-01 16:34:55 +0000844 scope: gpt
845
846 deprecated:
847 - gpt_rme
848
849 - title: SMCCC
850 scope: smccc
851
852 - title: Translation Tables
853 scope: xlat
854
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500855 deprecated:
856 - xlat_tables_v2
857
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100858 - title: C Standard Library
859 scope: libc
860
861 - title: Locks
862 scope: locks
863
864 - title: PSA
865 scope: psa
866
laurenw-arm21cd0662022-11-01 14:45:33 -0500867 deprecated:
868 - lib/psa
869
Tamas Bancb249052024-02-06 11:24:51 +0100870 - title: DICE Protection Environment
871 scope: dice
872
Zelalem Aweked20052f2022-04-04 17:42:48 -0500873 - title: Context Management
Chris Kay24687b72022-10-10 16:57:45 +0100874 scope: context-mgmt
875
876 deprecated:
877 - context mgmt
Zelalem Aweked20052f2022-04-04 17:42:48 -0500878
Manish V Badarkhe7c494382022-09-26 15:06:56 +0100879 - title: Semihosting
880 scope: semihosting
881
Raymond Mao3ba2c152023-07-25 07:53:35 -0700882 - title: Firmware Handoff
883 scope: handoff
884
Manish V Badarkhe669e2b12024-05-17 11:09:28 +0100885 - title: Exception Handling Framework (EHF)
886 scope: ehf
887
Chris Kayf64c5582021-12-01 16:34:55 +0000888 - title: Drivers
889
890 subsections:
891 - title: Authentication
892 scope: auth
893
894 deprecated:
895 - driver/auth
896
897 subsections:
898 - title: CryptoCell-713
899 scope: cc-713
900
Manish V Badarkhe9e0d2ba2022-09-22 21:41:55 +0100901 - title: Crypto
902 scope: crypto
903
904 - title: mbedTLS
905 scope: mbedtls
906
Manish V Badarkhe902e94c2023-09-22 17:54:59 +0100907 - title: mbedTLS-PSA
908 scope: mbedtls-psa
909
Yann Gautier3c788292023-01-06 17:05:48 +0100910 - title: Console
911 scope: console
912
Abhi.Singha6485b22024-08-21 12:55:38 -0500913 - title: Delay Timer
914 scope: delay-timer
915
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100916 - title: Generic Clock
917 scope: clk
918
Chris Kayf64c5582021-12-01 16:34:55 +0000919 - title: FWU
920 scope: fwu
921
922 deprecated:
923 - fwu_metadata
924
925 - title: I/O
926 scope: io
927
928 subsections:
929 - title: MTD
930 scope: mtd
931
932 deprecated:
933 - io_mtd
934
935 - title: Measured Boot
936 scope: measured-boot
937
938 deprecated:
939 - measured boot
940 - measured_boot
941
942 - title: MMC
943 scope: mmc
944
945 deprecated:
946 - drivers/mmc
947
948 - title: MTD
949 scope: mtd
950
951 deprecated:
952 - drivers/mtd
953
954 subsections:
955 - title: NAND
956 scope: nand
957
958 subsections:
959 - title: SPI NAND
960 scope: spi-nand
961
962 deprecated:
963 - spi_nand
964
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100965 - title: GUID Partition Tables Support
966 scope: guid-partition
Sughosh Ganue1157ec2022-01-19 11:31:20 +0530967
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500968 deprecated:
969 - partition
970
Chris Kayf64c5582021-12-01 16:34:55 +0000971 - title: SCMI
972 scope: scmi
973
974 deprecated:
975 - scmi_common
976 - drivers/scmi-msg
laurenw-arm21cd0662022-11-01 14:45:33 -0500977 - scmi-msg
Chris Kayf64c5582021-12-01 16:34:55 +0000978
Abhi.Singh36e3d872024-08-28 14:17:52 -0500979 - title: TPM
980 scope: tpm
981
Chris Kayf64c5582021-12-01 16:34:55 +0000982 - title: UFS
983 scope: ufs
984
985 - title: Arm
986 scope: arm-drivers
987
988 subsections:
989 - title: Ethos-N
990 scope: ethos-n
991
992 deprecated:
993 - drivers/arm/ethosn
994
995 - title: GIC
996 scope: gic
997
998 subsections:
Boyan Karatotev8cef63d2025-01-07 11:26:56 +0000999 - title: GICv5
1000 scope: gicv5
1001
Chris Kayf64c5582021-12-01 16:34:55 +00001002 - title: GICv3
1003 scope: gicv3
1004
laurenw-arm21cd0662022-11-01 14:45:33 -05001005 deprecated:
1006 - gicv3/multichip
1007
Chris Kayf64c5582021-12-01 16:34:55 +00001008 subsections:
laurenw-arm21cd0662022-11-01 14:45:33 -05001009 - title: GIC-600
1010 scope: gic600
1011
Chris Kayf64c5582021-12-01 16:34:55 +00001012 - title: GIC-600AE
1013 scope: gic600ae
1014
Madhukar Pappireddyab80cf32023-08-03 12:13:27 -05001015 - title: GICv2
1016 scope: gicv2
1017
Manish V Badarkhe0de3eda2022-03-24 18:23:37 +00001018 - title: SMMU
1019 scope: smmu
1020
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001021 - title: MHU
1022 scope: mhu
1023
1024 deprecated:
1025 - drivers/arm/mhu
1026
Tamas Banccc71732024-04-22 15:41:45 +02001027 - title: RSE
1028 scope: rse
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001029
1030 deprecated:
1031 - drivers/arm/rss
Tamas Banccc71732024-04-22 15:41:45 +02001032 - rss
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001033
Chris Kayf64c5582021-12-01 16:34:55 +00001034 - title: TZC
1035 scope: tzc
1036
1037 subsections:
1038 - title: TZC-400
1039 scope: tzc400
1040
1041 deprecated:
1042 - drivers/tzc400
1043
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001044 - title: TZC-380
1045 scope: tzc380
1046
1047 deprecated:
1048 - drivers/tzc380
1049
Madhukar Pappireddye8166d32023-03-22 15:27:22 -05001050 - title: SBSA
1051 scope: sbsa
1052
Chris Kayf64c5582021-12-01 16:34:55 +00001053 - title: Marvell
1054 scope: marvell-drivers
1055
1056 subsections:
1057 - title: COMPHY
1058 scope: marvell-comphy
1059
1060 deprecated:
1061 - drivers/marvell/comphy
1062
1063 subsections:
1064 - title: Armada 3700
1065 scope: marvell-comphy-3700
1066
1067 deprecated:
1068 - drivers/marvell/comphy-3700
1069
1070 - title: CP110
1071 scope: marvell-comphy-cp110
1072
1073 deprecated:
1074 - drivers/marvell/comphy-cp110
1075
1076 - title: UART
1077 scope: marvell-uart
1078
1079 deprecated:
1080 - plat/marvell/uart
1081
1082 - title: Armada
1083 scope: armada-drivers
1084
1085 subsections:
1086 - title: A3K
1087 scope: a3k-drivers
1088
1089 subsections:
1090 - title: A3720
1091 scope: a3720-uart
1092
1093 deprecated:
1094 - plat/marvell/a3720/uart
1095
1096 - title: MediaTek
1097 scope: mediatek-drivers
1098
1099 subsections:
1100 - title: APU
1101 scope: mediatek-apu
1102
1103 deprecated:
1104 - plat/mediatek/apu
1105
1106 - title: EMI MPU
1107 scope: mediatek-emi-mpu
1108
1109 deprecated:
1110 - plat/mediatek/mpu
1111
1112 - title: PMIC Wrapper
1113 scope: mediatek-pmic-wrapper
1114
1115 deprecated:
1116 - plat/mediatek/pmic_wrap
1117
1118 - title: MT8192
1119 scope: mt8192-drivers
1120
1121 subsections:
1122 - title: SPM
1123 scope: mt8192-spm
1124
1125 deprecated:
1126 - mediatek/mt8192/spm
1127
1128 - title: NXP
1129 scope: nxp-drivers
1130
1131 subsections:
1132 - title: DCFG
1133 scope: nxp-dcfg
1134
1135 deprecated:
1136 - driver/nxp/dcfg
1137
1138 - title: FLEXSPI
1139 scope: flexspi
1140
1141 deprecated:
1142 - include/drivers/flexspi
1143 - driver/nxp/xspi
1144
1145 - title: SCFG
1146 scope: nxp-scfg
1147
1148 deprecated:
1149 - nxp/scfg
1150
1151 - title: SFP
1152 scope: nxp-sfp
1153
1154 deprecated:
1155 - drivers/nxp/sfp
1156
Jiafei Pan1acfb982022-02-10 10:39:56 +08001157 - title: QSPI
1158 scope: nxp-qspi
1159
Jiafei Pan9dcbeb92022-02-18 12:02:04 +08001160 - title: NXP Crypto
1161 scope: nxp-crypto
1162
Jiafei Pan5ba30c62022-02-22 11:05:00 +08001163 - title: DDR
1164 scope: nxp-ddr
1165
1166 - title: GIC
1167 scope: nxp-gic
1168
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001169 - title: CSU
1170 scope: nxp-csu
1171
1172 - title: IFC NAND
1173 scope: nxp-ifc-nand
1174
1175 - title: IFC NOR
1176 scope: nxp-ifc-nor
1177
1178 - title: TZC-380
1179 scope: nxp-tzc380
1180
Jacky Bai9f38eb82023-06-14 15:24:00 +08001181 - title: TRDC
1182 scope: imx-trdc
1183
Ghennadi Procopciuc3a580e92024-06-11 18:39:58 +03001184 - title: Clock
1185 scope: nxp-clk
1186
Ghennadi Procopciucf228be82025-03-26 10:34:39 +02001187 - title: uSDHC
1188 scope: nxp-mmc
1189
Chris Kayf64c5582021-12-01 16:34:55 +00001190 - title: Renesas
1191 scope: renesas-drivers
1192
1193 subsections:
1194 - title: R-Car3
1195 scope: rcar3-drivers
1196
1197 deprecated:
1198 - drivers/rcar3
1199
1200 - title: ST
1201 scope: st-drivers
1202
1203 deprecated:
1204 - drivers/st
1205
1206 subsections:
Yann Gautier27254d92022-01-27 09:25:47 +01001207 - title: BSEC
1208 scope: st-bsec
1209
Chris Kayf64c5582021-12-01 16:34:55 +00001210 - title: Clock
1211 scope: st-clock
1212
1213 deprecated:
1214 - stm32mp_clk
1215 - drivers/st/clk
1216 - stm32mp1_clk
1217
Yann Gautier27254d92022-01-27 09:25:47 +01001218 - title: Crypto
1219 scope: st-crypto
1220
1221 - title: DDR
1222 scope: st-ddr
1223
Chris Kayf64c5582021-12-01 16:34:55 +00001224 - title: I/O
1225 scope: st-io-drivers
1226
1227 subsections:
1228 - title: STM32 Image
1229 scope: st-io-stm32image
1230
1231 deprecated:
1232 - io-stm32image
1233 - io_stm32image
1234
Yann Gautier27254d92022-01-27 09:25:47 +01001235 - title: I2C
1236 scope: st-i2c
1237
1238 - title: FMC
1239 scope: st-fmc
1240
1241 - title: GPIO
1242 scope: st-gpio
1243
Chris Kayf64c5582021-12-01 16:34:55 +00001244 - title: SDMMC2
1245 scope: st-sdmmc2
1246
1247 deprecated:
1248 - stm32_sdmmc2
1249
1250 - title: ST PMIC
1251 scope: st-pmic
1252
1253 deprecated:
1254 - drivers/st/pmic
1255
1256 - title: STPMIC1
1257 scope: stpmic1
1258
Yann Gautier27254d92022-01-27 09:25:47 +01001259 - title: Regulator
1260 scope: st-regulator
1261
1262 - title: Reset
1263 scope: st-reset
1264
1265 - title: SPI
1266 scope: st-spi
1267
Chris Kayf64c5582021-12-01 16:34:55 +00001268 - title: UART
1269 scope: st-uart
1270
1271 subsections:
1272 - title: STM32 Console
1273 scope: stm32-console
1274
1275 deprecated:
1276 - stm32_console
1277
1278 - title: USB
1279 scope: st-usb
1280
1281 deprecated:
1282 - drivers/st/usb
1283
Yann Gautier27254d92022-01-27 09:25:47 +01001284 - title: Watchdog
1285 scope: st-iwdg
1286
Chris Kayf64c5582021-12-01 16:34:55 +00001287 - title: USB
1288 scope: usb
1289
1290 deprecated:
1291 - drivers/usb
1292
1293 - title: Miscellaneous
1294
1295 subsections:
1296 - title: AArch64
1297 scope: aarch64
1298
Harrison Mutaiaf61b502024-12-12 18:33:54 +00001299 - title: AArch32
1300 scope: aarch32
1301
Chris Kayf64c5582021-12-01 16:34:55 +00001302 - title: Debug
1303 scope: debug
1304
1305 deprecated:
1306 - common/debug
1307
1308 - title: CRC32
1309 scope: crc32
1310
1311 subsections:
1312 - title: Hardware CRC32
1313 scope: hw-crc32
1314
1315 deprecated:
1316 - hw_crc
1317 - hw_crc32
1318
1319 - title: Software CRC32
1320 scope: sw-crc32
1321
1322 deprecated:
1323 - sw_crc32
1324
1325 - title: DT Bindings
1326 scope: dt-bindings
1327
1328 - title: FDT Wrappers
1329 scope: fdt-wrappers
1330
1331 - title: FDTs
1332 scope: fdts
1333
1334 deprecated:
1335 - fdt
1336
1337 subsections:
Yann Gautier9e14bd32025-05-13 09:38:36 +02001338 - title: Arm
Chris Kayf64c5582021-12-01 16:34:55 +00001339
Yann Gautier3e35da92022-07-08 15:55:14 +02001340 subsections:
Yann Gautier9e14bd32025-05-13 09:38:36 +02001341 - title: Morello
1342 scope: morello-fdts
Yann Gautier3e35da92022-07-08 15:55:14 +02001343
Yann Gautier9e14bd32025-05-13 09:38:36 +02001344 deprecated:
1345 - fdts/morello
Yann Gautier3e35da92022-07-08 15:55:14 +02001346
Yann Gautier9e14bd32025-05-13 09:38:36 +02001347 - title: ST
Yann Gautier3f6c16f2022-12-16 15:32:25 +01001348
Yann Gautier10f60d32023-11-23 19:37:21 +01001349 subsections:
Yann Gautier9e14bd32025-05-13 09:38:36 +02001350 - title: STM32MP1
1351 scope: stm32mp1-fdts
1352
1353 deprecated:
1354 - fdts stm32mp1
1355
1356 subsections:
1357 - title: STM32MP13
1358 scope: stm32mp13-fdts
1359
1360 - title: STM32MP15
1361 scope: stm32mp15-fdts
1362
1363 - title: STM32MP2
1364 scope: stm32mp2-fdts
1365
1366 subsections:
Yann Gautierf83afc92023-11-23 19:37:21 +01001367 - title: STM32MP21
1368 scope: stm32mp21-fdts
1369
1370 - title: STM32MP23
1371 scope: stm32mp23-fdts
1372
Yann Gautier9e14bd32025-05-13 09:38:36 +02001373 - title: STM32MP25
1374 scope: stm32mp25-fdts
Yann Gautier10f60d32023-11-23 19:37:21 +01001375
Chris Kayf64c5582021-12-01 16:34:55 +00001376 - title: PIE
1377 scope: pie
1378
Juan Pablo Condeb78ad002023-05-15 22:17:17 -05001379 - title: PIE/POR
1380 scope: pie/por
1381
Chris Kayf64c5582021-12-01 16:34:55 +00001382 - title: Security
1383 scope: security
1384
1385 - title: SDEI
1386 scope: sdei
1387
1388 - title: TBBR
1389 scope: tbbr
1390
1391 - title: NXP
1392
1393 subsections:
1394 - title: OCRAM
1395 scope: nxp-ocram
1396
1397 deprecated:
1398 - nxp/common/ocram
1399
1400 - title: PSCI
1401 scope: nxp-psci
1402
1403 deprecated:
1404 - plat/nxp/common/psci
1405
Chris Kay12562af2023-04-13 17:24:20 +01001406 - title: UUID
1407 scope: uuid
1408
Chris Kayf64c5582021-12-01 16:34:55 +00001409 - title: Documentation
1410 scope: docs
1411
1412 deprecated:
1413 - doc
1414
1415 subsections:
1416 - title: Changelog
1417 scope: changelog
1418
1419 - title: Commit Style
1420 scope: commit-style
1421
1422 - title: Contribution Guidelines
1423 scope: contributing
1424
1425 deprecated:
1426 - contribution-guidelines
1427 - docs-contributing.rst
1428
1429 - title: Maintainers
1430 scope: maintainers
1431
1432 - title: Prerequisites
1433 scope: prerequisites
1434
Sandrine Bailleux50075fd2022-05-10 14:53:44 +02001435 - title: Threat Model
1436 scope: threat-model
1437
Sandrine Bailleuxd3171612023-02-08 13:58:25 +01001438 - title: Porting Guide
1439 scope: porting
1440
Chris Kayf64c5582021-12-01 16:34:55 +00001441 - title: Build System
1442 scope: build
1443
1444 deprecated:
1445 - makefile
1446 - Makefile
1447
1448 subsections:
1449 - title: Git Hooks
1450 scope: hooks
1451
Juan Pablo Condeb78ad002023-05-15 22:17:17 -05001452 deprecated:
1453 - git-hooks
1454
Chris Kayf64c5582021-12-01 16:34:55 +00001455 - title: Tools
Manish V Badarkheccbfd012024-07-19 08:31:51 +01001456 scope: tools
Chris Kayf64c5582021-12-01 16:34:55 +00001457
1458 subsections:
Chris Kay654c2ce2023-03-08 17:48:09 +00001459 - title: Clang-Format
1460 scope: clang-format
1461
Chris Kaye7be9242025-02-03 11:25:43 +00001462 - title: Dependabot
1463 scope: dependabot
1464
Chris Kayf64c5582021-12-01 16:34:55 +00001465 - title: STM32 Image
1466 scope: stm32image
1467
1468 deprecated:
1469 - tools/stm32image
1470
Jiafei Pan1acfb982022-02-10 10:39:56 +08001471 - title: NXP Tools
1472 scope: nxp-tools
1473
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001474 - title: Firmware Image Package Tool
1475 scope: fiptool
1476
1477 - title: Secure Partition Tool
1478 scope: sptool
1479
1480 - title: Certificate Creation Tool
1481 scope: cert-create
1482
Chris Kay415049a2024-06-14 11:31:03 +00001483 - title: Firmware Encryption Tool
1484 scope: encrypt-fw
1485
Harrison Mutaid9d5eb12023-02-23 11:30:17 +00001486 - title: Memory Mapping Tool
1487 scope: memmap
1488
laurenw-arm21cd0662022-11-01 14:45:33 -05001489 deprecated:
1490 - cert_create
1491
Henrik Nordstrom8eb4efe2023-12-04 10:31:07 +01001492 - title: Marvell Tools
1493 scope: marvell-tools
1494
Chris Kayea2c6522024-06-04 11:31:06 +00001495 - title: Renesas Tools
1496 scope: renesas-tools
1497
1498 subsections:
1499 - title: R-Car Layout Tool
1500 scope: rcar-layout
Chris Kay3ed72442024-06-04 11:31:06 +00001501
1502 - title: R/ZG Layout Tool
1503 scope: rzg-layout
1504
Harrison Mutai6ac31f32024-05-10 16:54:29 +00001505 - title: Transfer List Compiler
1506 scope: tlc
1507
Manish V Badarkhee19977d2024-08-27 10:48:38 +01001508 - title: Chain of Trust device tree to C source file
1509 scope: cot-dt2c
1510
Chris Kayf64c5582021-12-01 16:34:55 +00001511 - title: Dependencies
1512 scope: deps
1513
1514 subsections:
1515 - title: checkpatch
1516 scope: checkpatch
1517
1518 - title: commitlint
1519 scope: commitlint
1520
Daniel Boulby98a43d92022-10-05 11:03:44 +01001521 - title: Compiler runtime libraries
1522 scope: compiler-rt
1523
Chris Kaye7be9242025-02-03 11:25:43 +00001524 - title: Development dependencies
1525 scope: dev-deps
1526
Chris Kayf64c5582021-12-01 16:34:55 +00001527 - title: libfdt
1528 scope: libfdt
1529
1530 - title: Node Package Manager (NPM)
1531 scope: npm
Daniel Boulby98a43d92022-10-05 11:03:44 +01001532
dependabot[bot]075a9612023-09-06 09:55:17 +00001533 - title: Poetry
1534 scope: poetry
1535
Daniel Boulby98a43d92022-10-05 11:03:44 +01001536 - title: zlib
1537 scope: zlib