blob: 422b9dafe9e8807003b2d4b40f1f048e9371c042 [file] [log] [blame]
Chris Kay82117d72021-12-01 16:34:55 +00001#
Chris Kay8c60d522025-02-03 11:25:43 +00002# Copyright (c) 2021-2025, Arm Limited. All rights reserved.
Chris Kay82117d72021-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 Kayc938da72022-09-29 16:42:23 +010034 - title: Documentation
Chris Kay82117d72021-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 Rajaccfc3172025-01-28 17:38:14 -060089 - title: CPU feature like FEAT_XXXX / ID register handling in general
Andre Przywara5b005112022-11-14 15:38:58 +000090 scope: cpufeat
91
Govindraj Raja5bd4bd82024-03-19 14:32:20 -050092 deprecated:
Govindraj Rajaccfc3172025-01-28 17:38:14 -060093 - amu
94 - brbe
95 - bti
96 - cca
97 - ccidx
98 - d128
99 - debugv8p9
100 - fgt2
101 - gcs
102 - hcx
103 - mpam
Govindraj Raja5bd4bd82024-03-19 14:32:20 -0500104 - mte
Govindraj Rajaccfc3172025-01-28 17:38:14 -0600105 - mte2
106 - pauth
107 - pmu
108 - rng-trap
109 - sctlr2
110 - feat_sctlr2
111 - sme
112 - spe
113 - sve
114 - sys-reg-trace
Chris Kay82117d72021-12-01 16:34:55 +0000115 - sys_reg_trace
Govindraj Rajaccfc3172025-01-28 17:38:14 -0600116 - tcr2
117 - trbe
118 - trf
119 - the
Chris Kay82117d72021-12-01 16:34:55 +0000120
Manish V Badarkhe8a7af842024-05-17 11:09:28 +0100121 - title: DynamIQ Shared Unit (DSU)
122 scope: dsu
123
Chris Kay82117d72021-12-01 16:34:55 +0000124 - title: Platforms
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000125 scope: platforms
126
127 deprecated:
128 - plat/common
Manish V Badarkhe8a7af842024-05-17 11:09:28 +0100129 - plat
Chris Kay82117d72021-12-01 16:34:55 +0000130
131 subsections:
132 - title: Allwinner
133 scope: allwinner
134
135 deprecated:
136 - plat/allwinner
137
138 - title: Arm
139 scope: arm
140
141 deprecated:
142 - plat/arm
143
144 subsections:
Govindraj Rajaf496d892024-11-19 10:19:37 -0600145 - title: Common
146 scope: common
147
Juan Pablo Conde52487492023-05-15 22:17:17 -0500148 - title: A5DS
149 scope: a5ds
150
laurenw-arm7c66fca2022-11-01 14:45:33 -0500151 - title: CSS
152 scope: css
153
154 deprecated:
155 - plat/arm/css
Juan Pablo Conde52487492023-05-15 22:17:17 -0500156 - plat/css
laurenw-arm7c66fca2022-11-01 14:45:33 -0500157
Chris Kay82117d72021-12-01 16:34:55 +0000158 - title: FPGA
159 scope: fpga
160
161 deprecated:
162 - arm_fgpa
Chris Kay82117d72021-12-01 16:34:55 +0000163 - plat/arm_fpga
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000164 - arm/fpga
Chris Kay82117d72021-12-01 16:34:55 +0000165
166 - title: FVP
167 scope: fvp
168
169 deprecated:
170 - plat/fvp
laurenw-arm7c66fca2022-11-01 14:45:33 -0500171 - fvp/tsp_manifest
Chris Kay82117d72021-12-01 16:34:55 +0000172
173 - title: FVP-R
174 scope: fvp-r
175
176 deprecated:
177 - fvp_r
178
laurenw-arm7c66fca2022-11-01 14:45:33 -0500179 - title: FVP Versatile Express
180 scope: fvp_ve
181
Chris Kay82117d72021-12-01 16:34:55 +0000182 - title: Juno
183 scope: juno
184
185 - title: Morello
186 scope: morello
187
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100188 - title: N1SDP
189 scope: n1sdp
190
Rohit Mathewe191b382024-04-15 17:31:04 +0100191 - title: Neoverse-RD
192 scope: neoverse-rd
Chris Kay82117d72021-12-01 16:34:55 +0000193
194 subsections:
Rohit Mathewf5f44032024-04-16 17:31:54 +0100195 - title: SGI-575
196 scope: sgi575
197
Manish V Badarkhe8a7af842024-05-17 11:09:28 +0100198 - title: RD-E1-Edge
199 scope: rde1edge
200
Rohit Mathew56d91972024-04-22 14:23:59 +0100201 - title: RD-N1-Edge
Juan Pablo Conde52487492023-05-15 22:17:17 -0500202 scope: rdn1edge
203
Rohit Mathewe94dd972024-04-16 17:35:05 +0100204 - title: RD-V1
205 scope: rdv1
206
Rohit Mathew6edab642024-04-16 17:36:19 +0100207 - title: RD-V1-MC
208 scope: rdv1mc
209
Chris Kay82117d72021-12-01 16:34:55 +0000210 - title: RD-N2
211 scope: rdn2
212
Jerry Wangffe4ad22024-07-08 15:17:42 +0100213 - title: RD-V3
214 scope: rdv3
Rohit Mathew7f863092024-04-15 17:54:16 +0100215
Chris Kay82117d72021-12-01 16:34:55 +0000216 deprecated:
217 - board/rdn2
Yann Gautier2cc37812024-11-13 11:29:50 +0100218 - rdfremont
Chris Kay82117d72021-12-01 16:34:55 +0000219
Manish V Badarkhe8a7af842024-05-17 11:09:28 +0100220 deprecated:
221 - neoverse
222
Chris Kay82117d72021-12-01 16:34:55 +0000223 - title: TC
224 scope: tc
225
Juan Pablo Conde52487492023-05-15 22:17:17 -0500226 deprecated:
227 - plat/tc
228
Chris Kay82117d72021-12-01 16:34:55 +0000229 subsections:
230 - title: TC0
231 scope: tc0
232
233 deprecated:
234 - plat/tc0
235
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100236 - title: Corstone-1000
237 scope: corstone-1000
238
Yann Gautier2cc37812024-11-13 11:29:50 +0100239 deprecated:
240 - corstone1000
241
Peter Hoyes1459d622023-02-20 12:08:43 +0000242 - title: Automotive RD
243 scope: automotive_rd
244
245 subsections:
246 - title: RD-1 AE
247 scope: rd1ae
248
Chia-Wei Wanga7556d82022-11-02 17:50:21 +0800249 - title: Aspeed
250 scope: aspeed
251
252 subsections:
253 - title: AST2700
254 scope: ast2700
255
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100256 - title: Broadcom
257 scope: brcm
258
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000259 - title: Cadence
260 scope: cadence
261
laurenw-arm7c66fca2022-11-01 14:45:33 -0500262 - title: HiSilicon
263 scope: hisilicon
264
265 subsections:
266 - title: HiKey
267 scope: hikey
268
269 - title: HiKey960
270 scope: hikey960
271
Yann Gautier2cc37812024-11-13 11:29:50 +0100272 - title: Poplar
273 scope: poplar
274
Sieu Mun Tang9f3a13c2022-02-22 14:14:26 +0800275 - title: Intel
276 scope: intel
277
278 subsections:
279 - title: SoC
280 scope: soc
281
Chris Kay82117d72021-12-01 16:34:55 +0000282 - title: Marvell
283 scope: marvell
284
285 deprecated:
286 - plat/marvell
287
288 subsections:
289 - title: Armada
290 scope: armada
291
292 deprecated:
293 - plat/marvell/armada
294
295 subsections:
296 - title: A3K
297 scope: a3k
298
299 deprecated:
300 - plat/marvell/a3k
301
302 - title: A8K
303 scope: a8k
304
305 deprecated:
306 - plat/marvell/a8k
307
308 - title: MediaTek
309 scope: mediatek
310
311 deprecated:
312 - plat/mediatek/common
313 - plat/mediatek
314
315 subsections:
316 - title: MT8183
317 scope: mt8183
318
319 deprecated:
320 - plat/mediatek/mt8183
321
laurenw-arm7c66fca2022-11-01 14:45:33 -0500322 - title: MT8186
323 scope: mt8186
324
325 deprecated:
326 - plat/mediatek/mt8186
327 - mt8186-emi-mpu
328
329 - title: MT8188
330 scope: mt8188
331
Chris Kay82117d72021-12-01 16:34:55 +0000332 - title: MT8192
333 scope: mt8192
334
335 deprecated:
336 - plat/mdeiatek/mt8192
337
338 - title: MT8195
339 scope: mt8195
340
341 deprecated:
342 - plat/mediatek/me8195
343 - plat/mediatek/mt8195
344 - plat/mdeiatek/mt8195
345
346 - title: NVIDIA
347 scope: nvidia
348
349 subsections:
350 - title: Tegra
351 scope: tegra
352
353 deprecated:
354 - plat/tegra
355
356 subsections:
357 - title: Tegra 132
358 scope: tegra132
359
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100360 - title: Tegra 194
361 scope: tegra194
362
Juan Pablo Conde52487492023-05-15 22:17:17 -0500363 - title: Tegra 210
364 scope: tegra210
365
Chris Kay82117d72021-12-01 16:34:55 +0000366 - title: NXP
367 scope: nxp
368
369 deprecated:
370 - plat/nxp
371 - plat/nxp/common
372
373 subsections:
374 - title: i.MX
375 scope: imx
376
377 deprecated:
378 - plat/imx
379 - plat/imx/imx
380
381 subsections:
382 - title: i.MX 8M
383 scope: imx8m
384
385 deprecated:
386 - plat/imx8m
387 - plat/imx/imx8m
388
389 subsections:
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100390 - title: i.MX 8M Nano
391 scope: imx8mn
392
393 deprecated:
394 - plat/imx/imx8m/imx8mn
395
Chris Kay82117d72021-12-01 16:34:55 +0000396 - title: i.MX 8M Mini
397 scope: imx8mm
398
399 deprecated:
400 - plat/imx/imx8m/imx8mm
401
402 - title: i.MX 8M Plus
403 scope: imx8mp
404
405 deprecated:
406 - plat/imx/imx8m/imx8mp
407
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100408 - title: i.MX 8Q
409 scope: imx8mq
410
411 deprecated:
412 - plat/imx/imx8m/imx8mq
413
Juan Pablo Conde52487492023-05-15 22:17:17 -0500414 - title: i.MX 8
415 scope: imx8
416
Jacky Bai4e214e42023-10-08 17:52:24 +0800417 - title: i.MX 8ULP
418 scope: imx8ulp
419
Jacky Bai9dc47d52023-06-14 15:24:00 +0800420 - title: i.MX 9
421 scope: imx9
422
423 subsections:
424 - title: i.MX93
425 scope: imx93
426
Chris Kay82117d72021-12-01 16:34:55 +0000427 - title: Layerscape
428 scope: layerscape
429
430 deprecated:
431 - docs/nxp/layerscape
432
433 subsections:
434 - title: LS1028A
435 scope: ls1028a
436
437 deprecated:
438 - plat/nxp/ls1028a
439
440 subsections:
441 - title: LS1028ARDB
442 scope: ls1028ardb
443
444 deprecated:
445 - plat/nxp/ls1028ardb
446
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100447 - title: LS1043A
448 scope: ls1043a
449
450 deprecated:
451 - plat/nxp/ls1043a
452
453 subsections:
454 - title: LS1043ARDB
455 scope: ls1043ardb
456
457 deprecated:
458 - plat/nxp/ls1043ardb
459
Chris Kay82117d72021-12-01 16:34:55 +0000460 - title: LX2
461 scope: lx2
462
463 deprecated:
464 - plat/nxp/lx2
465
466 subsections:
467 - title: LX216
468 scope: lx216
469
470 deprecated:
471 - plat/nxp/lx216x
472
473 subsections:
474 - title: LX2160
475 scope: lx2160
476
477 deprecated:
478 - plat/soc-lx2160
479
Jiafei Pan18ba9e42022-02-10 10:39:56 +0800480 - title: LS1046A
481 scope: ls1046a
482
483 subsections:
484 - title: LS1046ARDB
485 scope: ls1046ardb
486
487 - title: LS1046AFRWY
488 scope: ls1046afrwy
489
490 - title: LS1046AQDS
491 scope: ls1046aqds
492
Jiafei Pan290bf6f2022-02-24 16:00:35 +0800493 - title: LS1088A
494 scope: ls1088a
495
496 subsections:
497 - title: LS1088ARDB
498 scope: ls1088ardb
499
500 - title: LS1088AQDS
501 scope: ls1088aqds
502
Ghennadi Procopciuca9fee052024-01-30 16:19:47 +0200503 - title: S32G274A
504 scope: s32g274a
505
506 subsections:
507 - title: S32G274ARDB
508 scope: s32g274ardb
509
Chris Kay82117d72021-12-01 16:34:55 +0000510 - title: QEMU
511 scope: qemu
512
513 deprecated:
514 - plat/qemu
515
Juan Pablo Conde52487492023-05-15 22:17:17 -0500516 subsections:
517 - title: SBSA
518 scope: qemu-sbsa
519
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000520 deprecated:
521 - qemu_sbsa
522
Chris Kay82117d72021-12-01 16:34:55 +0000523 - title: QTI
524 scope: qti
525
laurenw-arm7c66fca2022-11-01 14:45:33 -0500526 deprecated:
527 - plat/qti
528
Chris Kay82117d72021-12-01 16:34:55 +0000529 subsections:
530 - title: SC1780
531 scope: sc7180
532
533 deprecated:
534 - plat/qti/sc7180
535
536 - title: SC7280
537 scope: sc7280
538
539 deprecated:
540 - plat/qti/sc7280
541
Stephan Gerholdd0d0bf42021-12-01 20:00:00 +0100542 - title: MSM8916
543 scope: msm8916
544
Chris Kay82117d72021-12-01 16:34:55 +0000545 - title: Raspberry Pi
546 scope: rpi
547
548 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500549 - title: Raspberry Pi 3
550 scope: rpi3
551
Chris Kay82117d72021-12-01 16:34:55 +0000552 - title: Raspberry Pi 4
553 scope: rpi4
554
Mario Bălănicăc883ce02023-12-02 03:08:02 +0200555 - title: Raspberry Pi 5
556 scope: rpi5
557
Chris Kay82117d72021-12-01 16:34:55 +0000558 - title: Renesas
559 scope: renesas
560
561 subsections:
562 - title: R-Car
563 scope: rcar
564
565 deprecated:
566 - plat/rcar
567
568 subsections:
569 - title: R-Car 3
570 scope: rcar3
571
572 deprecated:
573 - plat/rcar3
574
575 - title: Rockchip
576 scope: rockchip
577
578 subsections:
579 - title: RK3399
580 scope: rk3399
581
582 deprecated:
583 - rockchip/rk3399
584 - rk3399/suspend
585
Diederik de Haas6a9c7312023-11-27 10:21:37 +0100586 - title: RK3328
587 scope: rk3328
588
Yann Gautier2cc37812024-11-13 11:29:50 +0100589 - title: RK3588
590 scope: rk3588
591
Chris Kay82117d72021-12-01 16:34:55 +0000592 - title: Socionext
593 scope: socionext
594
595 subsections:
596 - title: Synquacer
597 scope: synquacer
598
599 deprecated:
600 - plat/synquacer
601
602 - title: ST
603 scope: st
604
605 deprecated:
606 - plat/st
607
608 subsections:
Yann Gautier14b32e82022-06-01 18:17:43 +0200609 - title: STM32MP1
Chris Kay82117d72021-12-01 16:34:55 +0000610 scope: stm32mp1
611
612 deprecated:
613 - plat/st/stm32mp1
614
Yann Gautier14b32e82022-06-01 18:17:43 +0200615 subsections:
616 - title: STM32MP13
617 scope: stm32mp13
618
619 - title: STM32MP15
620 scope: stm32mp15
621
Yann Gautier1123f662022-12-16 15:32:25 +0100622 - title: STM32MP2
623 scope: stm32mp2
624
Yann Gautier22985972023-11-23 19:37:21 +0100625 subsections:
626 - title: STM32MP25
627 scope: stm32mp25
628
Dave Gerlach74c19f92022-03-22 11:02:52 -0500629 - title: Texas Instruments
630 scope: ti
631
632 subsections:
633 - title: K3
634 scope: k3
635
laurenw-arm7c66fca2022-11-01 14:45:33 -0500636 deprecated:
637 - ti-k3
638
Chris Kay82117d72021-12-01 16:34:55 +0000639 - title: Xilinx
640 scope: xilinx
641
642 deprecated:
643 - plat/xilinx
644
645 subsections:
Michal Simek38d5d4d2023-09-18 10:22:48 +0200646 - title: DCC (Debug Communication Channel)
647 scope: dcc
648
Chris Kay82117d72021-12-01 16:34:55 +0000649 - title: Versal
650 scope: versal
651
652 deprecated:
653 - plat/xilinx/versal/include
654 - plat/xilinx/versal
655 - plat/versal
656
Manish V Badarkhe8a7af842024-05-17 11:09:28 +0100657 - title: Versal NET
658 scope: versal-net
laurenw-arm7c66fca2022-11-01 14:45:33 -0500659
Manish V Badarkhe8a7af842024-05-17 11:09:28 +0100660 deprecated:
661 - versal_net
laurenw-arm7c66fca2022-11-01 14:45:33 -0500662
Chris Kay82117d72021-12-01 16:34:55 +0000663 - title: ZynqMP
664 scope: zynqmp
665
666 deprecated:
667 - plat/zynqmp
668 - plat/xilinx/zynqmp
669
Amit Nagal055796f2024-06-05 12:32:38 +0530670 - title: AMD
671 scope: amd
672
673 subsections:
674 - title: Versal Gen 2
675 scope: versal2
676
rutigl@gmail.comdefbeed2023-03-19 09:19:05 +0200677 - title: Nuvoton
678 scope: nuvoton
679
680 subsections:
681 - title: npcm845x
682 scope: npcm845x
683
Chris Kay82117d72021-12-01 16:34:55 +0000684 - title: Bootloader Images
685 scope: bl
686
687 deprecated:
688 - bl_common
689
690 subsections:
691 - title: BL1
692 scope: bl1
693
694 - title: BL2
695 scope: bl2
696
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100697 - title: BL31
698 scope: bl31
699
Shruti Guptac31beb62022-08-09 10:46:07 +0100700 - title: BL32
701 scope: bl32
702
703 subsections:
704 - title: TSP
705 scope: tsp
706
Chris Kay82117d72021-12-01 16:34:55 +0000707 - title: Services
708 scope: services
709
Yann Gautier2cc37812024-11-13 11:29:50 +0100710 deprecated:
711 - std_svc
712
Chris Kay82117d72021-12-01 16:34:55 +0000713 subsections:
714 - title: FF-A
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000715 scope: ff-a
Chris Kay82117d72021-12-01 16:34:55 +0000716
717 deprecated:
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000718 - ffa
Chris Kay82117d72021-12-01 16:34:55 +0000719
720 - title: RME
721 scope: rme
722
laurenw-arm7c66fca2022-11-01 14:45:33 -0500723 deprecated:
724 - rme/fid
725
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100726 subsections:
727 - title: TRP
728 scope: trp
729
Javier Almansa Sobrino7176a772021-11-24 18:37:37 +0000730 - title: RMMD
731 scope: rmmd
732
Juan Pablo Conde52487492023-05-15 22:17:17 -0500733 - title: RMM
734 scope: rmm
735
Chris Kay82117d72021-12-01 16:34:55 +0000736 - title: SPM
737 scope: spm
738
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100739 subsections:
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000740 - title: EL3 SPM
741 scope: el3-spm
742
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100743 - title: EL3 SPMC
744 scope: el3-spmc
745
laurenw-arm7c66fca2022-11-01 14:45:33 -0500746 deprecated:
747 - spmc
748
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100749 - title: SPMD
750 scope: spmd
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000751
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100752 - title: SPM MM
753 scope: spm-mm
Chris Kay82117d72021-12-01 16:34:55 +0000754
Manish V Badarkhe478d3ee2022-06-27 09:21:14 +0100755 - title: DRTM
756 scope: drtm
757
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +0100758 - title: TRNG
759 scope: trng
760
Sona Mathew5100bec2023-09-20 12:55:32 -0500761 - title: ERRATA ABI
762 scope: errata-abi
763
764 deprecated:
765 - errata_abi
Sona Mathew7fe03522022-11-18 18:05:38 -0600766
Manish V Badarkhe8a7af842024-05-17 11:09:28 +0100767 - title: ChromeOS
768 scope: cros
769
Yann Gautierfefba0d2024-11-13 13:46:15 +0100770 - title: Secure Payload Dispatcher
771 scope: spd
772
773 subsections:
774 - title: OP-TEE
775 scope: optee
776
777 deprecated:
778 - lib/optee
779
780 - title: ProvenCore
781 scope: pncd
782
783 - title: Trusted Little Kernel
784 scope: tlkd
785
786 - title: Trusty
787 scope: trusty
788
789 - title: TSP
790 scope: tspd
791
Chris Kay82117d72021-12-01 16:34:55 +0000792 - title: Libraries
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000793 scope: lib
Chris Kay82117d72021-12-01 16:34:55 +0000794
795 subsections:
796 - title: CPU Support
797 scope: cpus
798
799 deprecated:
800 - cpu
801 - errata
802 - errata_report
803
804 - title: EL3 Runtime
805 scope: el3-runtime
806
807 deprecated:
808 - el3_runtime
809
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100810 subsections:
811 - title: Context Management
812 scope: cm
813
laurenw-arm7c66fca2022-11-01 14:45:33 -0500814 - title: RAS
815 scope: ras
816
Madhukar Pappireddy0cb58bc2024-06-17 15:12:26 -0500817 - title: SIMD
818 scope: simd
819
Chris Kay82117d72021-12-01 16:34:55 +0000820 - title: FCONF
821 scope: fconf
822
823 - title: MPMM
824 scope: mpmm
825
Chris Kay82117d72021-12-01 16:34:55 +0000826 - title: PSCI
827 scope: psci
828
Chris Kayc66b9f32024-01-15 18:45:07 +0000829 - title: ROMlib
830 scope: romlib
831
Chris Kay82117d72021-12-01 16:34:55 +0000832 - title: GPT
833 scope: gpt
834
835 deprecated:
836 - gpt_rme
837
838 - title: SMCCC
839 scope: smccc
840
841 - title: Translation Tables
842 scope: xlat
843
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100844 - title: C Standard Library
845 scope: libc
846
847 - title: Locks
848 scope: locks
849
850 - title: PSA
851 scope: psa
852
laurenw-arm7c66fca2022-11-01 14:45:33 -0500853 deprecated:
854 - lib/psa
855
Tamas Ban109a4802024-02-06 11:24:51 +0100856 - title: DICE Protection Environment
857 scope: dice
858
Zelalem Aweke5362beb2022-04-04 17:42:48 -0500859 - title: Context Management
Chris Kaye76be0a2022-10-10 16:57:45 +0100860 scope: context-mgmt
861
862 deprecated:
863 - context mgmt
Zelalem Aweke5362beb2022-04-04 17:42:48 -0500864
Manish V Badarkhede920262022-09-26 15:06:56 +0100865 - title: Semihosting
866 scope: semihosting
867
Raymond Mao98983392023-07-25 07:53:35 -0700868 - title: Firmware Handoff
869 scope: handoff
870
Manish V Badarkhe8a7af842024-05-17 11:09:28 +0100871 - title: Exception Handling Framework (EHF)
872 scope: ehf
873
Chris Kay82117d72021-12-01 16:34:55 +0000874 - title: Drivers
875
876 subsections:
877 - title: Authentication
878 scope: auth
879
880 deprecated:
881 - driver/auth
882
883 subsections:
884 - title: CryptoCell-713
885 scope: cc-713
886
Manish V Badarkhe8d91e982022-09-22 21:41:55 +0100887 - title: Crypto
888 scope: crypto
889
890 - title: mbedTLS
891 scope: mbedtls
892
Manish V Badarkhe538d5922023-09-22 17:54:59 +0100893 - title: mbedTLS-PSA
894 scope: mbedtls-psa
895
Yann Gautier1832d662023-01-06 17:05:48 +0100896 - title: Console
897 scope: console
898
Abhi.Singhce668112024-08-21 12:55:38 -0500899 - title: Delay Timer
900 scope: delay-timer
901
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100902 - title: Generic Clock
903 scope: clk
904
Chris Kay82117d72021-12-01 16:34:55 +0000905 - title: FWU
906 scope: fwu
907
908 deprecated:
909 - fwu_metadata
910
911 - title: I/O
912 scope: io
913
914 subsections:
915 - title: MTD
916 scope: mtd
917
918 deprecated:
919 - io_mtd
920
921 - title: Measured Boot
922 scope: measured-boot
923
924 deprecated:
925 - measured boot
926 - measured_boot
927
928 - title: MMC
929 scope: mmc
930
931 deprecated:
932 - drivers/mmc
933
934 - title: MTD
935 scope: mtd
936
937 deprecated:
938 - drivers/mtd
939
940 subsections:
941 - title: NAND
942 scope: nand
943
944 subsections:
945 - title: SPI NAND
946 scope: spi-nand
947
948 deprecated:
949 - spi_nand
950
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100951 - title: GUID Partition Tables Support
952 scope: guid-partition
Sughosh Ganu540e0322022-01-19 11:31:20 +0530953
Juan Pablo Conde52487492023-05-15 22:17:17 -0500954 deprecated:
955 - partition
956
Chris Kay82117d72021-12-01 16:34:55 +0000957 - title: SCMI
958 scope: scmi
959
960 deprecated:
961 - scmi_common
962 - drivers/scmi-msg
laurenw-arm7c66fca2022-11-01 14:45:33 -0500963 - scmi-msg
Chris Kay82117d72021-12-01 16:34:55 +0000964
965 - title: UFS
966 scope: ufs
967
968 - title: Arm
969 scope: arm-drivers
970
971 subsections:
972 - title: Ethos-N
973 scope: ethos-n
974
975 deprecated:
976 - drivers/arm/ethosn
977
978 - title: GIC
979 scope: gic
980
981 subsections:
982 - title: GICv3
983 scope: gicv3
984
laurenw-arm7c66fca2022-11-01 14:45:33 -0500985 deprecated:
986 - gicv3/multichip
987
Chris Kay82117d72021-12-01 16:34:55 +0000988 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500989 - title: GIC-600
990 scope: gic600
991
Chris Kay82117d72021-12-01 16:34:55 +0000992 - title: GIC-600AE
993 scope: gic600ae
994
Madhukar Pappireddydc4b8c62023-08-03 12:13:27 -0500995 - title: GICv2
996 scope: gicv2
997
Manish V Badarkhebcaeb672022-03-24 18:23:37 +0000998 - title: SMMU
999 scope: smmu
1000
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001001 - title: MHU
1002 scope: mhu
1003
1004 deprecated:
1005 - drivers/arm/mhu
1006
Tamas Bana70e31d2024-04-22 15:41:45 +02001007 - title: RSE
1008 scope: rse
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001009
1010 deprecated:
1011 - drivers/arm/rss
Tamas Bana70e31d2024-04-22 15:41:45 +02001012 - rss
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001013
Chris Kay82117d72021-12-01 16:34:55 +00001014 - title: TZC
1015 scope: tzc
1016
1017 subsections:
1018 - title: TZC-400
1019 scope: tzc400
1020
1021 deprecated:
1022 - drivers/tzc400
1023
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001024 - title: TZC-380
1025 scope: tzc380
1026
1027 deprecated:
1028 - drivers/tzc380
1029
Madhukar Pappireddy4c3de562023-03-22 15:27:22 -05001030 - title: SBSA
1031 scope: sbsa
1032
Chris Kay82117d72021-12-01 16:34:55 +00001033 - title: Marvell
1034 scope: marvell-drivers
1035
1036 subsections:
1037 - title: COMPHY
1038 scope: marvell-comphy
1039
1040 deprecated:
1041 - drivers/marvell/comphy
1042
1043 subsections:
1044 - title: Armada 3700
1045 scope: marvell-comphy-3700
1046
1047 deprecated:
1048 - drivers/marvell/comphy-3700
1049
1050 - title: CP110
1051 scope: marvell-comphy-cp110
1052
1053 deprecated:
1054 - drivers/marvell/comphy-cp110
1055
1056 - title: UART
1057 scope: marvell-uart
1058
1059 deprecated:
1060 - plat/marvell/uart
1061
1062 - title: Armada
1063 scope: armada-drivers
1064
1065 subsections:
1066 - title: A3K
1067 scope: a3k-drivers
1068
1069 subsections:
1070 - title: A3720
1071 scope: a3720-uart
1072
1073 deprecated:
1074 - plat/marvell/a3720/uart
1075
1076 - title: MediaTek
1077 scope: mediatek-drivers
1078
1079 subsections:
1080 - title: APU
1081 scope: mediatek-apu
1082
1083 deprecated:
1084 - plat/mediatek/apu
1085
1086 - title: EMI MPU
1087 scope: mediatek-emi-mpu
1088
1089 deprecated:
1090 - plat/mediatek/mpu
1091
1092 - title: PMIC Wrapper
1093 scope: mediatek-pmic-wrapper
1094
1095 deprecated:
1096 - plat/mediatek/pmic_wrap
1097
1098 - title: MT8192
1099 scope: mt8192-drivers
1100
1101 subsections:
1102 - title: SPM
1103 scope: mt8192-spm
1104
1105 deprecated:
1106 - mediatek/mt8192/spm
1107
1108 - title: NXP
1109 scope: nxp-drivers
1110
1111 subsections:
1112 - title: DCFG
1113 scope: nxp-dcfg
1114
1115 deprecated:
1116 - driver/nxp/dcfg
1117
1118 - title: FLEXSPI
1119 scope: flexspi
1120
1121 deprecated:
1122 - include/drivers/flexspi
1123 - driver/nxp/xspi
1124
1125 - title: SCFG
1126 scope: nxp-scfg
1127
1128 deprecated:
1129 - nxp/scfg
1130
1131 - title: SFP
1132 scope: nxp-sfp
1133
1134 deprecated:
1135 - drivers/nxp/sfp
1136
Jiafei Pan18ba9e42022-02-10 10:39:56 +08001137 - title: QSPI
1138 scope: nxp-qspi
1139
Jiafei Pan94450412022-02-18 12:02:04 +08001140 - title: NXP Crypto
1141 scope: nxp-crypto
1142
Jiafei Panfa3f7612022-02-22 11:05:00 +08001143 - title: DDR
1144 scope: nxp-ddr
1145
1146 - title: GIC
1147 scope: nxp-gic
1148
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001149 - title: CSU
1150 scope: nxp-csu
1151
1152 - title: IFC NAND
1153 scope: nxp-ifc-nand
1154
1155 - title: IFC NOR
1156 scope: nxp-ifc-nor
1157
1158 - title: TZC-380
1159 scope: nxp-tzc380
1160
Jacky Bai9dc47d52023-06-14 15:24:00 +08001161 - title: TRDC
1162 scope: imx-trdc
1163
Ghennadi Procopciucfc26eb02024-06-11 18:39:58 +03001164 - title: Clock
1165 scope: nxp-clk
1166
Chris Kay82117d72021-12-01 16:34:55 +00001167 - title: Renesas
1168 scope: renesas-drivers
1169
1170 subsections:
1171 - title: R-Car3
1172 scope: rcar3-drivers
1173
1174 deprecated:
1175 - drivers/rcar3
1176
1177 - title: ST
1178 scope: st-drivers
1179
1180 deprecated:
1181 - drivers/st
1182
1183 subsections:
Yann Gautier9f359fd2022-01-27 09:25:47 +01001184 - title: BSEC
1185 scope: st-bsec
1186
Chris Kay82117d72021-12-01 16:34:55 +00001187 - title: Clock
1188 scope: st-clock
1189
1190 deprecated:
1191 - stm32mp_clk
1192 - drivers/st/clk
1193 - stm32mp1_clk
1194
Yann Gautier9f359fd2022-01-27 09:25:47 +01001195 - title: Crypto
1196 scope: st-crypto
1197
1198 - title: DDR
1199 scope: st-ddr
1200
Chris Kay82117d72021-12-01 16:34:55 +00001201 - title: I/O
1202 scope: st-io-drivers
1203
1204 subsections:
1205 - title: STM32 Image
1206 scope: st-io-stm32image
1207
1208 deprecated:
1209 - io-stm32image
1210 - io_stm32image
1211
Yann Gautier9f359fd2022-01-27 09:25:47 +01001212 - title: I2C
1213 scope: st-i2c
1214
1215 - title: FMC
1216 scope: st-fmc
1217
1218 - title: GPIO
1219 scope: st-gpio
1220
Chris Kay82117d72021-12-01 16:34:55 +00001221 - title: SDMMC2
1222 scope: st-sdmmc2
1223
1224 deprecated:
1225 - stm32_sdmmc2
1226
1227 - title: ST PMIC
1228 scope: st-pmic
1229
1230 deprecated:
1231 - drivers/st/pmic
1232
1233 - title: STPMIC1
1234 scope: stpmic1
1235
Yann Gautier9f359fd2022-01-27 09:25:47 +01001236 - title: Regulator
1237 scope: st-regulator
1238
1239 - title: Reset
1240 scope: st-reset
1241
1242 - title: SPI
1243 scope: st-spi
1244
Chris Kay82117d72021-12-01 16:34:55 +00001245 - title: UART
1246 scope: st-uart
1247
1248 subsections:
1249 - title: STM32 Console
1250 scope: stm32-console
1251
1252 deprecated:
1253 - stm32_console
1254
1255 - title: USB
1256 scope: st-usb
1257
1258 deprecated:
1259 - drivers/st/usb
1260
Yann Gautier9f359fd2022-01-27 09:25:47 +01001261 - title: Watchdog
1262 scope: st-iwdg
1263
Chris Kay82117d72021-12-01 16:34:55 +00001264 - title: USB
1265 scope: usb
1266
1267 deprecated:
1268 - drivers/usb
1269
1270 - title: Miscellaneous
1271
1272 subsections:
1273 - title: AArch64
1274 scope: aarch64
1275
1276 - title: Debug
1277 scope: debug
1278
1279 deprecated:
1280 - common/debug
1281
1282 - title: CRC32
1283 scope: crc32
1284
1285 subsections:
1286 - title: Hardware CRC32
1287 scope: hw-crc32
1288
1289 deprecated:
1290 - hw_crc
1291 - hw_crc32
1292
1293 - title: Software CRC32
1294 scope: sw-crc32
1295
1296 deprecated:
1297 - sw_crc32
1298
1299 - title: DT Bindings
1300 scope: dt-bindings
1301
1302 - title: FDT Wrappers
1303 scope: fdt-wrappers
1304
1305 - title: FDTs
1306 scope: fdts
1307
1308 deprecated:
1309 - fdt
1310
1311 subsections:
1312 - title: Morello
1313 scope: morello-fdts
1314
1315 deprecated:
1316 - fdts/morello
1317
1318 - title: STM32MP1
1319 scope: stm32mp1-fdts
1320
1321 deprecated:
1322 - fdts stm32mp1
1323
Yann Gautier2c962252022-07-08 15:55:14 +02001324 subsections:
1325 - title: STM32MP13
1326 scope: stm32mp13-fdts
1327
1328 - title: STM32MP15
1329 scope: stm32mp15-fdts
1330
Yann Gautier1123f662022-12-16 15:32:25 +01001331 - title: STM32MP2
1332 scope: stm32mp2-fdts
1333
Yann Gautier22985972023-11-23 19:37:21 +01001334 subsections:
1335 - title: STM32MP25
1336 scope: stm32mp25-fdts
1337
Chris Kay82117d72021-12-01 16:34:55 +00001338 - title: PIE
1339 scope: pie
1340
Juan Pablo Conde52487492023-05-15 22:17:17 -05001341 - title: PIE/POR
1342 scope: pie/por
1343
Chris Kay82117d72021-12-01 16:34:55 +00001344 - title: Security
1345 scope: security
1346
1347 - title: SDEI
1348 scope: sdei
1349
1350 - title: TBBR
1351 scope: tbbr
1352
1353 - title: NXP
1354
1355 subsections:
1356 - title: OCRAM
1357 scope: nxp-ocram
1358
1359 deprecated:
1360 - nxp/common/ocram
1361
1362 - title: PSCI
1363 scope: nxp-psci
1364
1365 deprecated:
1366 - plat/nxp/common/psci
1367
Chris Kayd04a4762023-04-13 17:24:20 +01001368 - title: UUID
1369 scope: uuid
1370
Chris Kay82117d72021-12-01 16:34:55 +00001371 - title: Documentation
1372 scope: docs
1373
1374 deprecated:
1375 - doc
1376
1377 subsections:
1378 - title: Changelog
1379 scope: changelog
1380
1381 - title: Commit Style
1382 scope: commit-style
1383
1384 - title: Contribution Guidelines
1385 scope: contributing
1386
1387 deprecated:
1388 - contribution-guidelines
1389 - docs-contributing.rst
1390
1391 - title: Maintainers
1392 scope: maintainers
1393
1394 - title: Prerequisites
1395 scope: prerequisites
1396
Sandrine Bailleux3c8fdf72022-05-10 14:53:44 +02001397 - title: Threat Model
1398 scope: threat-model
1399
Sandrine Bailleuxe67bb122023-02-08 13:58:25 +01001400 - title: Porting Guide
1401 scope: porting
1402
Chris Kay82117d72021-12-01 16:34:55 +00001403 - title: Build System
1404 scope: build
1405
1406 deprecated:
1407 - makefile
1408 - Makefile
1409
1410 subsections:
1411 - title: Git Hooks
1412 scope: hooks
1413
Juan Pablo Conde52487492023-05-15 22:17:17 -05001414 deprecated:
1415 - git-hooks
1416
Chris Kay82117d72021-12-01 16:34:55 +00001417 - title: Tools
Manish V Badarkhe7b425de2024-07-19 08:31:51 +01001418 scope: tools
Chris Kay82117d72021-12-01 16:34:55 +00001419
1420 subsections:
Chris Kay8c60d522025-02-03 11:25:43 +00001421 - title: Dependabot
1422 scope: dependabot
1423
Chris Kay82117d72021-12-01 16:34:55 +00001424 - title: STM32 Image
1425 scope: stm32image
1426
1427 deprecated:
1428 - tools/stm32image
1429
Jiafei Pan18ba9e42022-02-10 10:39:56 +08001430 - title: NXP Tools
1431 scope: nxp-tools
1432
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001433 - title: Firmware Image Package Tool
1434 scope: fiptool
1435
1436 - title: Secure Partition Tool
1437 scope: sptool
1438
1439 - title: Certificate Creation Tool
1440 scope: cert-create
1441
Chris Kay01995442024-06-14 11:31:03 +00001442 - title: Firmware Encryption Tool
1443 scope: encrypt-fw
1444
Harrison Mutai372b8802023-02-23 11:30:17 +00001445 - title: Memory Mapping Tool
1446 scope: memmap
1447
laurenw-arm7c66fca2022-11-01 14:45:33 -05001448 deprecated:
1449 - cert_create
1450
Henrik Nordstromd95745b2023-12-04 10:31:07 +01001451 - title: Marvell Tools
1452 scope: marvell-tools
1453
Chris Kayb278eb72024-06-04 11:31:06 +00001454 - title: Renesas Tools
1455 scope: renesas-tools
1456
1457 subsections:
1458 - title: R-Car Layout Tool
1459 scope: rcar-layout
Chris Kay51a20b72024-06-04 11:31:06 +00001460
1461 - title: R/ZG Layout Tool
1462 scope: rzg-layout
1463
Harrison Mutai19dc4f92024-05-10 16:54:29 +00001464 - title: Transfer List Compiler
1465 scope: tlc
1466
Manish V Badarkhed544f052024-08-27 10:48:38 +01001467 - title: Chain of Trust device tree to C source file
1468 scope: cot-dt2c
1469
Chris Kay82117d72021-12-01 16:34:55 +00001470 - title: Dependencies
1471 scope: deps
1472
1473 subsections:
1474 - title: checkpatch
1475 scope: checkpatch
1476
1477 - title: commitlint
1478 scope: commitlint
1479
Daniel Boulbyc550e702022-10-05 11:03:44 +01001480 - title: Compiler runtime libraries
1481 scope: compiler-rt
1482
Chris Kay8c60d522025-02-03 11:25:43 +00001483 - title: Development dependencies
1484 scope: dev-deps
1485
Chris Kay82117d72021-12-01 16:34:55 +00001486 - title: libfdt
1487 scope: libfdt
1488
1489 - title: Node Package Manager (NPM)
1490 scope: npm
Daniel Boulbyc550e702022-10-05 11:03:44 +01001491
dependabot[bot]dba1b532023-09-06 09:55:17 +00001492 - title: Poetry
1493 scope: poetry
1494
Daniel Boulbyc550e702022-10-05 11:03:44 +01001495 - title: zlib
1496 scope: zlib