blob: e0a4f42ab6ce32f35ae1b49e794f5a34d6589e7b [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
Manish V Badarkhecf48f492025-04-15 20:16:32 +0100778 - title: Live Firmware Activation
779 scope: lfa
780
Yann Gautier02c580c2024-11-13 13:46:15 +0100781 - title: Secure Payload Dispatcher
782 scope: spd
783
784 subsections:
785 - title: OP-TEE
786 scope: optee
787
788 deprecated:
789 - lib/optee
790
791 - title: ProvenCore
792 scope: pncd
793
794 - title: Trusted Little Kernel
795 scope: tlkd
796
797 - title: Trusty
798 scope: trusty
799
800 - title: TSP
801 scope: tspd
802
Chris Kayf64c5582021-12-01 16:34:55 +0000803 - title: Libraries
Manish V Badarkhe98735802023-11-21 14:35:13 +0000804 scope: lib
Chris Kayf64c5582021-12-01 16:34:55 +0000805
806 subsections:
807 - title: CPU Support
808 scope: cpus
809
810 deprecated:
811 - cpu
812 - errata
813 - errata_report
814
815 - title: EL3 Runtime
816 scope: el3-runtime
817
818 deprecated:
819 - el3_runtime
820
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100821 subsections:
822 - title: Context Management
823 scope: cm
824
laurenw-arm21cd0662022-11-01 14:45:33 -0500825 - title: RAS
826 scope: ras
827
Madhukar Pappireddy841533d2024-06-17 15:12:26 -0500828 - title: SIMD
829 scope: simd
830
Chris Kayf64c5582021-12-01 16:34:55 +0000831 - title: FCONF
832 scope: fconf
833
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500834 - title: HOB
835 scope: hob
836
Chris Kayf64c5582021-12-01 16:34:55 +0000837 - title: MPMM
838 scope: mpmm
839
Chris Kayf64c5582021-12-01 16:34:55 +0000840 - title: PSCI
841 scope: psci
842
Chris Kay7fc4d772024-01-15 18:45:07 +0000843 - title: ROMlib
844 scope: romlib
845
Yann Gautier5ea70892025-04-11 16:48:14 +0200846 - title: Granule Protection Tables
Chris Kayf64c5582021-12-01 16:34:55 +0000847 scope: gpt
848
849 deprecated:
850 - gpt_rme
851
852 - title: SMCCC
853 scope: smccc
854
855 - title: Translation Tables
856 scope: xlat
857
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500858 deprecated:
859 - xlat_tables_v2
860
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100861 - title: C Standard Library
862 scope: libc
863
864 - title: Locks
865 scope: locks
866
867 - title: PSA
868 scope: psa
869
laurenw-arm21cd0662022-11-01 14:45:33 -0500870 deprecated:
871 - lib/psa
872
Tamas Bancb249052024-02-06 11:24:51 +0100873 - title: DICE Protection Environment
874 scope: dice
875
Zelalem Aweked20052f2022-04-04 17:42:48 -0500876 - title: Context Management
Chris Kay24687b72022-10-10 16:57:45 +0100877 scope: context-mgmt
878
879 deprecated:
880 - context mgmt
Zelalem Aweked20052f2022-04-04 17:42:48 -0500881
Manish V Badarkhe7c494382022-09-26 15:06:56 +0100882 - title: Semihosting
883 scope: semihosting
884
Raymond Mao3ba2c152023-07-25 07:53:35 -0700885 - title: Firmware Handoff
886 scope: handoff
887
Manish V Badarkhe669e2b12024-05-17 11:09:28 +0100888 - title: Exception Handling Framework (EHF)
889 scope: ehf
890
Chris Kayf64c5582021-12-01 16:34:55 +0000891 - title: Drivers
892
893 subsections:
894 - title: Authentication
895 scope: auth
896
897 deprecated:
898 - driver/auth
899
900 subsections:
901 - title: CryptoCell-713
902 scope: cc-713
903
Manish V Badarkhe9e0d2ba2022-09-22 21:41:55 +0100904 - title: Crypto
905 scope: crypto
906
907 - title: mbedTLS
908 scope: mbedtls
909
Manish V Badarkhe902e94c2023-09-22 17:54:59 +0100910 - title: mbedTLS-PSA
911 scope: mbedtls-psa
912
Yann Gautier3c788292023-01-06 17:05:48 +0100913 - title: Console
914 scope: console
915
Abhi.Singha6485b22024-08-21 12:55:38 -0500916 - title: Delay Timer
917 scope: delay-timer
918
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100919 - title: Generic Clock
920 scope: clk
921
Chris Kayf64c5582021-12-01 16:34:55 +0000922 - title: FWU
923 scope: fwu
924
925 deprecated:
926 - fwu_metadata
927
928 - title: I/O
929 scope: io
930
931 subsections:
932 - title: MTD
933 scope: mtd
934
935 deprecated:
936 - io_mtd
937
938 - title: Measured Boot
939 scope: measured-boot
940
941 deprecated:
942 - measured boot
943 - measured_boot
944
945 - title: MMC
946 scope: mmc
947
948 deprecated:
949 - drivers/mmc
950
951 - title: MTD
952 scope: mtd
953
954 deprecated:
955 - drivers/mtd
956
957 subsections:
958 - title: NAND
959 scope: nand
960
961 subsections:
962 - title: SPI NAND
963 scope: spi-nand
964
965 deprecated:
966 - spi_nand
967
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100968 - title: GUID Partition Tables Support
969 scope: guid-partition
Sughosh Ganue1157ec2022-01-19 11:31:20 +0530970
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500971 deprecated:
972 - partition
973
Chris Kayf64c5582021-12-01 16:34:55 +0000974 - title: SCMI
975 scope: scmi
976
977 deprecated:
978 - scmi_common
979 - drivers/scmi-msg
laurenw-arm21cd0662022-11-01 14:45:33 -0500980 - scmi-msg
Chris Kayf64c5582021-12-01 16:34:55 +0000981
Abhi.Singh36e3d872024-08-28 14:17:52 -0500982 - title: TPM
983 scope: tpm
984
Chris Kayf64c5582021-12-01 16:34:55 +0000985 - title: UFS
986 scope: ufs
987
988 - title: Arm
989 scope: arm-drivers
990
991 subsections:
992 - title: Ethos-N
993 scope: ethos-n
994
995 deprecated:
996 - drivers/arm/ethosn
997
998 - title: GIC
999 scope: gic
1000
1001 subsections:
Boyan Karatotev8cef63d2025-01-07 11:26:56 +00001002 - title: GICv5
1003 scope: gicv5
1004
Chris Kayf64c5582021-12-01 16:34:55 +00001005 - title: GICv3
1006 scope: gicv3
1007
laurenw-arm21cd0662022-11-01 14:45:33 -05001008 deprecated:
1009 - gicv3/multichip
1010
Chris Kayf64c5582021-12-01 16:34:55 +00001011 subsections:
laurenw-arm21cd0662022-11-01 14:45:33 -05001012 - title: GIC-600
1013 scope: gic600
1014
Chris Kayf64c5582021-12-01 16:34:55 +00001015 - title: GIC-600AE
1016 scope: gic600ae
1017
Madhukar Pappireddyab80cf32023-08-03 12:13:27 -05001018 - title: GICv2
1019 scope: gicv2
1020
Manish V Badarkhe0de3eda2022-03-24 18:23:37 +00001021 - title: SMMU
1022 scope: smmu
1023
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001024 - title: MHU
1025 scope: mhu
1026
1027 deprecated:
1028 - drivers/arm/mhu
1029
Tamas Banccc71732024-04-22 15:41:45 +02001030 - title: RSE
1031 scope: rse
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001032
1033 deprecated:
1034 - drivers/arm/rss
Tamas Banccc71732024-04-22 15:41:45 +02001035 - rss
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001036
Chris Kayf64c5582021-12-01 16:34:55 +00001037 - title: TZC
1038 scope: tzc
1039
1040 subsections:
1041 - title: TZC-400
1042 scope: tzc400
1043
1044 deprecated:
1045 - drivers/tzc400
1046
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001047 - title: TZC-380
1048 scope: tzc380
1049
1050 deprecated:
1051 - drivers/tzc380
1052
Madhukar Pappireddye8166d32023-03-22 15:27:22 -05001053 - title: SBSA
1054 scope: sbsa
1055
Chris Kayf64c5582021-12-01 16:34:55 +00001056 - title: Marvell
1057 scope: marvell-drivers
1058
1059 subsections:
1060 - title: COMPHY
1061 scope: marvell-comphy
1062
1063 deprecated:
1064 - drivers/marvell/comphy
1065
1066 subsections:
1067 - title: Armada 3700
1068 scope: marvell-comphy-3700
1069
1070 deprecated:
1071 - drivers/marvell/comphy-3700
1072
1073 - title: CP110
1074 scope: marvell-comphy-cp110
1075
1076 deprecated:
1077 - drivers/marvell/comphy-cp110
1078
1079 - title: UART
1080 scope: marvell-uart
1081
1082 deprecated:
1083 - plat/marvell/uart
1084
1085 - title: Armada
1086 scope: armada-drivers
1087
1088 subsections:
1089 - title: A3K
1090 scope: a3k-drivers
1091
1092 subsections:
1093 - title: A3720
1094 scope: a3720-uart
1095
1096 deprecated:
1097 - plat/marvell/a3720/uart
1098
1099 - title: MediaTek
1100 scope: mediatek-drivers
1101
1102 subsections:
1103 - title: APU
1104 scope: mediatek-apu
1105
1106 deprecated:
1107 - plat/mediatek/apu
1108
1109 - title: EMI MPU
1110 scope: mediatek-emi-mpu
1111
1112 deprecated:
1113 - plat/mediatek/mpu
1114
1115 - title: PMIC Wrapper
1116 scope: mediatek-pmic-wrapper
1117
1118 deprecated:
1119 - plat/mediatek/pmic_wrap
1120
1121 - title: MT8192
1122 scope: mt8192-drivers
1123
1124 subsections:
1125 - title: SPM
1126 scope: mt8192-spm
1127
1128 deprecated:
1129 - mediatek/mt8192/spm
1130
1131 - title: NXP
1132 scope: nxp-drivers
1133
1134 subsections:
1135 - title: DCFG
1136 scope: nxp-dcfg
1137
1138 deprecated:
1139 - driver/nxp/dcfg
1140
1141 - title: FLEXSPI
1142 scope: flexspi
1143
1144 deprecated:
1145 - include/drivers/flexspi
1146 - driver/nxp/xspi
1147
1148 - title: SCFG
1149 scope: nxp-scfg
1150
1151 deprecated:
1152 - nxp/scfg
1153
1154 - title: SFP
1155 scope: nxp-sfp
1156
1157 deprecated:
1158 - drivers/nxp/sfp
1159
Jiafei Pan1acfb982022-02-10 10:39:56 +08001160 - title: QSPI
1161 scope: nxp-qspi
1162
Jiafei Pan9dcbeb92022-02-18 12:02:04 +08001163 - title: NXP Crypto
1164 scope: nxp-crypto
1165
Jiafei Pan5ba30c62022-02-22 11:05:00 +08001166 - title: DDR
1167 scope: nxp-ddr
1168
1169 - title: GIC
1170 scope: nxp-gic
1171
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001172 - title: CSU
1173 scope: nxp-csu
1174
1175 - title: IFC NAND
1176 scope: nxp-ifc-nand
1177
1178 - title: IFC NOR
1179 scope: nxp-ifc-nor
1180
1181 - title: TZC-380
1182 scope: nxp-tzc380
1183
Jacky Bai9f38eb82023-06-14 15:24:00 +08001184 - title: TRDC
1185 scope: imx-trdc
1186
Ghennadi Procopciuc3a580e92024-06-11 18:39:58 +03001187 - title: Clock
1188 scope: nxp-clk
1189
Ghennadi Procopciucf228be82025-03-26 10:34:39 +02001190 - title: uSDHC
1191 scope: nxp-mmc
1192
Chris Kayf64c5582021-12-01 16:34:55 +00001193 - title: Renesas
1194 scope: renesas-drivers
1195
1196 subsections:
1197 - title: R-Car3
1198 scope: rcar3-drivers
1199
1200 deprecated:
1201 - drivers/rcar3
1202
1203 - title: ST
1204 scope: st-drivers
1205
1206 deprecated:
1207 - drivers/st
1208
1209 subsections:
Yann Gautier27254d92022-01-27 09:25:47 +01001210 - title: BSEC
1211 scope: st-bsec
1212
Chris Kayf64c5582021-12-01 16:34:55 +00001213 - title: Clock
1214 scope: st-clock
1215
1216 deprecated:
1217 - stm32mp_clk
1218 - drivers/st/clk
1219 - stm32mp1_clk
1220
Yann Gautier27254d92022-01-27 09:25:47 +01001221 - title: Crypto
1222 scope: st-crypto
1223
1224 - title: DDR
1225 scope: st-ddr
1226
Chris Kayf64c5582021-12-01 16:34:55 +00001227 - title: I/O
1228 scope: st-io-drivers
1229
1230 subsections:
1231 - title: STM32 Image
1232 scope: st-io-stm32image
1233
1234 deprecated:
1235 - io-stm32image
1236 - io_stm32image
1237
Yann Gautier27254d92022-01-27 09:25:47 +01001238 - title: I2C
1239 scope: st-i2c
1240
1241 - title: FMC
1242 scope: st-fmc
1243
1244 - title: GPIO
1245 scope: st-gpio
1246
Chris Kayf64c5582021-12-01 16:34:55 +00001247 - title: SDMMC2
1248 scope: st-sdmmc2
1249
1250 deprecated:
1251 - stm32_sdmmc2
1252
1253 - title: ST PMIC
1254 scope: st-pmic
1255
1256 deprecated:
1257 - drivers/st/pmic
1258
1259 - title: STPMIC1
1260 scope: stpmic1
1261
Yann Gautier27254d92022-01-27 09:25:47 +01001262 - title: Regulator
1263 scope: st-regulator
1264
1265 - title: Reset
1266 scope: st-reset
1267
1268 - title: SPI
1269 scope: st-spi
1270
Chris Kayf64c5582021-12-01 16:34:55 +00001271 - title: UART
1272 scope: st-uart
1273
1274 subsections:
1275 - title: STM32 Console
1276 scope: stm32-console
1277
1278 deprecated:
1279 - stm32_console
1280
1281 - title: USB
1282 scope: st-usb
1283
1284 deprecated:
1285 - drivers/st/usb
1286
Yann Gautier27254d92022-01-27 09:25:47 +01001287 - title: Watchdog
1288 scope: st-iwdg
1289
Chris Kayf64c5582021-12-01 16:34:55 +00001290 - title: USB
1291 scope: usb
1292
1293 deprecated:
1294 - drivers/usb
1295
1296 - title: Miscellaneous
1297
1298 subsections:
1299 - title: AArch64
1300 scope: aarch64
1301
Harrison Mutaiaf61b502024-12-12 18:33:54 +00001302 - title: AArch32
1303 scope: aarch32
1304
Chris Kayf64c5582021-12-01 16:34:55 +00001305 - title: Debug
1306 scope: debug
1307
1308 deprecated:
1309 - common/debug
1310
1311 - title: CRC32
1312 scope: crc32
1313
1314 subsections:
1315 - title: Hardware CRC32
1316 scope: hw-crc32
1317
1318 deprecated:
1319 - hw_crc
1320 - hw_crc32
1321
1322 - title: Software CRC32
1323 scope: sw-crc32
1324
1325 deprecated:
1326 - sw_crc32
1327
1328 - title: DT Bindings
1329 scope: dt-bindings
1330
1331 - title: FDT Wrappers
1332 scope: fdt-wrappers
1333
1334 - title: FDTs
1335 scope: fdts
1336
1337 deprecated:
1338 - fdt
1339
1340 subsections:
Yann Gautier9e14bd32025-05-13 09:38:36 +02001341 - title: Arm
Chris Kayf64c5582021-12-01 16:34:55 +00001342
Yann Gautier3e35da92022-07-08 15:55:14 +02001343 subsections:
Yann Gautier9e14bd32025-05-13 09:38:36 +02001344 - title: Morello
1345 scope: morello-fdts
Yann Gautier3e35da92022-07-08 15:55:14 +02001346
Yann Gautier9e14bd32025-05-13 09:38:36 +02001347 deprecated:
1348 - fdts/morello
Yann Gautier3e35da92022-07-08 15:55:14 +02001349
Yann Gautier9e14bd32025-05-13 09:38:36 +02001350 - title: ST
Yann Gautier3f6c16f2022-12-16 15:32:25 +01001351
Yann Gautier10f60d32023-11-23 19:37:21 +01001352 subsections:
Yann Gautier9e14bd32025-05-13 09:38:36 +02001353 - title: STM32MP1
1354 scope: stm32mp1-fdts
1355
1356 deprecated:
1357 - fdts stm32mp1
1358
1359 subsections:
1360 - title: STM32MP13
1361 scope: stm32mp13-fdts
1362
1363 - title: STM32MP15
1364 scope: stm32mp15-fdts
1365
1366 - title: STM32MP2
1367 scope: stm32mp2-fdts
1368
1369 subsections:
Yann Gautierf83afc92023-11-23 19:37:21 +01001370 - title: STM32MP21
1371 scope: stm32mp21-fdts
1372
1373 - title: STM32MP23
1374 scope: stm32mp23-fdts
1375
Yann Gautier9e14bd32025-05-13 09:38:36 +02001376 - title: STM32MP25
1377 scope: stm32mp25-fdts
Yann Gautier10f60d32023-11-23 19:37:21 +01001378
Chris Kayf64c5582021-12-01 16:34:55 +00001379 - title: PIE
1380 scope: pie
1381
Juan Pablo Condeb78ad002023-05-15 22:17:17 -05001382 - title: PIE/POR
1383 scope: pie/por
1384
Chris Kayf64c5582021-12-01 16:34:55 +00001385 - title: Security
1386 scope: security
1387
1388 - title: SDEI
1389 scope: sdei
1390
1391 - title: TBBR
1392 scope: tbbr
1393
1394 - title: NXP
1395
1396 subsections:
1397 - title: OCRAM
1398 scope: nxp-ocram
1399
1400 deprecated:
1401 - nxp/common/ocram
1402
1403 - title: PSCI
1404 scope: nxp-psci
1405
1406 deprecated:
1407 - plat/nxp/common/psci
1408
Chris Kay12562af2023-04-13 17:24:20 +01001409 - title: UUID
1410 scope: uuid
1411
Chris Kayf64c5582021-12-01 16:34:55 +00001412 - title: Documentation
1413 scope: docs
1414
1415 deprecated:
1416 - doc
1417
1418 subsections:
1419 - title: Changelog
1420 scope: changelog
1421
1422 - title: Commit Style
1423 scope: commit-style
1424
1425 - title: Contribution Guidelines
1426 scope: contributing
1427
1428 deprecated:
1429 - contribution-guidelines
1430 - docs-contributing.rst
1431
1432 - title: Maintainers
1433 scope: maintainers
1434
1435 - title: Prerequisites
1436 scope: prerequisites
1437
Sandrine Bailleux50075fd2022-05-10 14:53:44 +02001438 - title: Threat Model
1439 scope: threat-model
1440
Sandrine Bailleuxd3171612023-02-08 13:58:25 +01001441 - title: Porting Guide
1442 scope: porting
1443
Chris Kayf64c5582021-12-01 16:34:55 +00001444 - title: Build System
1445 scope: build
1446
1447 deprecated:
1448 - makefile
1449 - Makefile
1450
1451 subsections:
1452 - title: Git Hooks
1453 scope: hooks
1454
Juan Pablo Condeb78ad002023-05-15 22:17:17 -05001455 deprecated:
1456 - git-hooks
1457
Chris Kayf64c5582021-12-01 16:34:55 +00001458 - title: Tools
Manish V Badarkheccbfd012024-07-19 08:31:51 +01001459 scope: tools
Chris Kayf64c5582021-12-01 16:34:55 +00001460
1461 subsections:
Chris Kay654c2ce2023-03-08 17:48:09 +00001462 - title: Clang-Format
1463 scope: clang-format
1464
Chris Kaye7be9242025-02-03 11:25:43 +00001465 - title: Dependabot
1466 scope: dependabot
1467
Chris Kayf64c5582021-12-01 16:34:55 +00001468 - title: STM32 Image
1469 scope: stm32image
1470
1471 deprecated:
1472 - tools/stm32image
1473
Jiafei Pan1acfb982022-02-10 10:39:56 +08001474 - title: NXP Tools
1475 scope: nxp-tools
1476
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001477 - title: Firmware Image Package Tool
1478 scope: fiptool
1479
1480 - title: Secure Partition Tool
1481 scope: sptool
1482
1483 - title: Certificate Creation Tool
1484 scope: cert-create
1485
Chris Kay415049a2024-06-14 11:31:03 +00001486 - title: Firmware Encryption Tool
1487 scope: encrypt-fw
1488
Harrison Mutaid9d5eb12023-02-23 11:30:17 +00001489 - title: Memory Mapping Tool
1490 scope: memmap
1491
laurenw-arm21cd0662022-11-01 14:45:33 -05001492 deprecated:
1493 - cert_create
1494
Henrik Nordstrom8eb4efe2023-12-04 10:31:07 +01001495 - title: Marvell Tools
1496 scope: marvell-tools
1497
Chris Kayea2c6522024-06-04 11:31:06 +00001498 - title: Renesas Tools
1499 scope: renesas-tools
1500
1501 subsections:
1502 - title: R-Car Layout Tool
1503 scope: rcar-layout
Chris Kay3ed72442024-06-04 11:31:06 +00001504
1505 - title: R/ZG Layout Tool
1506 scope: rzg-layout
1507
Harrison Mutai6ac31f32024-05-10 16:54:29 +00001508 - title: Transfer List Compiler
1509 scope: tlc
1510
Manish V Badarkhee19977d2024-08-27 10:48:38 +01001511 - title: Chain of Trust device tree to C source file
1512 scope: cot-dt2c
1513
Chris Kayf64c5582021-12-01 16:34:55 +00001514 - title: Dependencies
1515 scope: deps
1516
1517 subsections:
1518 - title: checkpatch
1519 scope: checkpatch
1520
1521 - title: commitlint
1522 scope: commitlint
1523
Daniel Boulby98a43d92022-10-05 11:03:44 +01001524 - title: Compiler runtime libraries
1525 scope: compiler-rt
1526
Chris Kaye7be9242025-02-03 11:25:43 +00001527 - title: Development dependencies
1528 scope: dev-deps
1529
Chris Kayf64c5582021-12-01 16:34:55 +00001530 - title: libfdt
1531 scope: libfdt
1532
1533 - title: Node Package Manager (NPM)
1534 scope: npm
Daniel Boulby98a43d92022-10-05 11:03:44 +01001535
dependabot[bot]075a9612023-09-06 09:55:17 +00001536 - title: Poetry
1537 scope: poetry
1538
Daniel Boulby98a43d92022-10-05 11:03:44 +01001539 - title: zlib
1540 scope: zlib