blob: e5d43d95e3c04095e965eef72a971794dc1a504a [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:
624 - title: STM32MP25
625 scope: stm32mp25
626
Dave Gerlach8ba55ec2022-03-22 11:02:52 -0500627 - title: Texas Instruments
628 scope: ti
629
630 subsections:
631 - title: K3
632 scope: k3
633
laurenw-arm21cd0662022-11-01 14:45:33 -0500634 deprecated:
635 - ti-k3
636
Chris Kayf64c5582021-12-01 16:34:55 +0000637 - title: Xilinx
638 scope: xilinx
639
640 deprecated:
641 - plat/xilinx
642
643 subsections:
Michal Simeke311b9b2023-09-18 10:22:48 +0200644 - title: DCC (Debug Communication Channel)
645 scope: dcc
646
Chris Kayf64c5582021-12-01 16:34:55 +0000647 - title: Versal
648 scope: versal
649
650 deprecated:
651 - plat/xilinx/versal/include
652 - plat/xilinx/versal
653 - plat/versal
654
Manish V Badarkhe669e2b12024-05-17 11:09:28 +0100655 - title: Versal NET
656 scope: versal-net
laurenw-arm21cd0662022-11-01 14:45:33 -0500657
Manish V Badarkhe669e2b12024-05-17 11:09:28 +0100658 deprecated:
659 - versal_net
laurenw-arm21cd0662022-11-01 14:45:33 -0500660
Chris Kayf64c5582021-12-01 16:34:55 +0000661 - title: ZynqMP
662 scope: zynqmp
663
664 deprecated:
665 - plat/zynqmp
666 - plat/xilinx/zynqmp
667
Amit Nagalc97857d2024-06-05 12:32:38 +0530668 - title: AMD
669 scope: amd
670
671 subsections:
672 - title: Versal Gen 2
673 scope: versal2
674
rutigl@gmail.comedcece12023-03-19 09:19:05 +0200675 - title: Nuvoton
676 scope: nuvoton
677
678 subsections:
679 - title: npcm845x
680 scope: npcm845x
681
Chris Kayf64c5582021-12-01 16:34:55 +0000682 - title: Bootloader Images
683 scope: bl
684
685 deprecated:
686 - bl_common
687
688 subsections:
689 - title: BL1
690 scope: bl1
691
692 - title: BL2
693 scope: bl2
694
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100695 - title: BL31
696 scope: bl31
697
Shruti Gupta5b7bd2a2022-08-09 10:46:07 +0100698 - title: BL32
699 scope: bl32
700
701 subsections:
702 - title: TSP
703 scope: tsp
704
Chris Kayf64c5582021-12-01 16:34:55 +0000705 - title: Services
706 scope: services
707
Yann Gautier48a59eb2024-11-13 11:29:50 +0100708 deprecated:
709 - std_svc
710
Chris Kayf64c5582021-12-01 16:34:55 +0000711 subsections:
712 - title: FF-A
Daniel Boulby93a8ce02021-12-06 14:44:35 +0000713 scope: ff-a
Chris Kayf64c5582021-12-01 16:34:55 +0000714
715 deprecated:
Daniel Boulby93a8ce02021-12-06 14:44:35 +0000716 - ffa
Chris Kayf64c5582021-12-01 16:34:55 +0000717
718 - title: RME
719 scope: rme
720
laurenw-arm21cd0662022-11-01 14:45:33 -0500721 deprecated:
722 - rme/fid
723
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100724 subsections:
725 - title: TRP
726 scope: trp
727
Javier Almansa Sobrino8c980a42021-11-24 18:37:37 +0000728 - title: RMMD
729 scope: rmmd
730
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500731 - title: RMM
732 scope: rmm
733
Chris Kayf64c5582021-12-01 16:34:55 +0000734 - title: SPM
735 scope: spm
736
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100737 subsections:
Manish V Badarkhe98735802023-11-21 14:35:13 +0000738 - title: EL3 SPM
739 scope: el3-spm
740
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100741 - title: EL3 SPMC
742 scope: el3-spmc
Daniel Boulby93a8ce02021-12-06 14:44:35 +0000743
laurenw-arm21cd0662022-11-01 14:45:33 -0500744 deprecated:
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500745 - el3_spmc
laurenw-arm21cd0662022-11-01 14:45:33 -0500746 - spmc
747
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100748 - title: SPMD
749 scope: spmd
750
751 - title: SPM MM
752 scope: spm-mm
Chris Kayf64c5582021-12-01 16:34:55 +0000753
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500754 deprecated:
755 - spm_mm
756
Manish V Badarkhe7b224f12022-06-27 09:21:14 +0100757 - title: DRTM
758 scope: drtm
759
Jayanth Dodderi Chidanand0b22e592022-10-11 17:16:07 +0100760 - title: TRNG
761 scope: trng
762
Sona Mathew5c8fcc02023-09-20 12:55:32 -0500763 - title: ERRATA ABI
764 scope: errata-abi
765
766 deprecated:
767 - errata_abi
Sona Mathewffea3842022-11-18 18:05:38 -0600768
Manish V Badarkhe669e2b12024-05-17 11:09:28 +0100769 - title: ChromeOS
770 scope: cros
771
Yann Gautier02c580c2024-11-13 13:46:15 +0100772 - title: Secure Payload Dispatcher
773 scope: spd
774
775 subsections:
776 - title: OP-TEE
777 scope: optee
778
779 deprecated:
780 - lib/optee
781
782 - title: ProvenCore
783 scope: pncd
784
785 - title: Trusted Little Kernel
786 scope: tlkd
787
788 - title: Trusty
789 scope: trusty
790
791 - title: TSP
792 scope: tspd
793
Chris Kayf64c5582021-12-01 16:34:55 +0000794 - title: Libraries
Manish V Badarkhe98735802023-11-21 14:35:13 +0000795 scope: lib
Chris Kayf64c5582021-12-01 16:34:55 +0000796
797 subsections:
798 - title: CPU Support
799 scope: cpus
800
801 deprecated:
802 - cpu
803 - errata
804 - errata_report
805
806 - title: EL3 Runtime
807 scope: el3-runtime
808
809 deprecated:
810 - el3_runtime
811
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100812 subsections:
813 - title: Context Management
814 scope: cm
815
laurenw-arm21cd0662022-11-01 14:45:33 -0500816 - title: RAS
817 scope: ras
818
Madhukar Pappireddy841533d2024-06-17 15:12:26 -0500819 - title: SIMD
820 scope: simd
821
Chris Kayf64c5582021-12-01 16:34:55 +0000822 - title: FCONF
823 scope: fconf
824
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500825 - title: HOB
826 scope: hob
827
Chris Kayf64c5582021-12-01 16:34:55 +0000828 - title: MPMM
829 scope: mpmm
830
Chris Kayf64c5582021-12-01 16:34:55 +0000831 - title: PSCI
832 scope: psci
833
Chris Kay7fc4d772024-01-15 18:45:07 +0000834 - title: ROMlib
835 scope: romlib
836
Chris Kayf64c5582021-12-01 16:34:55 +0000837 - title: GPT
838 scope: gpt
839
840 deprecated:
841 - gpt_rme
842
843 - title: SMCCC
844 scope: smccc
845
846 - title: Translation Tables
847 scope: xlat
848
Govindraj Raja8df9dee2025-05-08 15:24:33 -0500849 deprecated:
850 - xlat_tables_v2
851
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100852 - title: C Standard Library
853 scope: libc
854
855 - title: Locks
856 scope: locks
857
858 - title: PSA
859 scope: psa
860
laurenw-arm21cd0662022-11-01 14:45:33 -0500861 deprecated:
862 - lib/psa
863
Tamas Bancb249052024-02-06 11:24:51 +0100864 - title: DICE Protection Environment
865 scope: dice
866
Zelalem Aweked20052f2022-04-04 17:42:48 -0500867 - title: Context Management
Chris Kay24687b72022-10-10 16:57:45 +0100868 scope: context-mgmt
869
870 deprecated:
871 - context mgmt
Zelalem Aweked20052f2022-04-04 17:42:48 -0500872
Manish V Badarkhe7c494382022-09-26 15:06:56 +0100873 - title: Semihosting
874 scope: semihosting
875
Raymond Mao3ba2c152023-07-25 07:53:35 -0700876 - title: Firmware Handoff
877 scope: handoff
878
Manish V Badarkhe669e2b12024-05-17 11:09:28 +0100879 - title: Exception Handling Framework (EHF)
880 scope: ehf
881
Chris Kayf64c5582021-12-01 16:34:55 +0000882 - title: Drivers
883
884 subsections:
885 - title: Authentication
886 scope: auth
887
888 deprecated:
889 - driver/auth
890
891 subsections:
892 - title: CryptoCell-713
893 scope: cc-713
894
Manish V Badarkhe9e0d2ba2022-09-22 21:41:55 +0100895 - title: Crypto
896 scope: crypto
897
898 - title: mbedTLS
899 scope: mbedtls
900
Manish V Badarkhe902e94c2023-09-22 17:54:59 +0100901 - title: mbedTLS-PSA
902 scope: mbedtls-psa
903
Yann Gautier3c788292023-01-06 17:05:48 +0100904 - title: Console
905 scope: console
906
Abhi.Singha6485b22024-08-21 12:55:38 -0500907 - title: Delay Timer
908 scope: delay-timer
909
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100910 - title: Generic Clock
911 scope: clk
912
Chris Kayf64c5582021-12-01 16:34:55 +0000913 - title: FWU
914 scope: fwu
915
916 deprecated:
917 - fwu_metadata
918
919 - title: I/O
920 scope: io
921
922 subsections:
923 - title: MTD
924 scope: mtd
925
926 deprecated:
927 - io_mtd
928
929 - title: Measured Boot
930 scope: measured-boot
931
932 deprecated:
933 - measured boot
934 - measured_boot
935
936 - title: MMC
937 scope: mmc
938
939 deprecated:
940 - drivers/mmc
941
942 - title: MTD
943 scope: mtd
944
945 deprecated:
946 - drivers/mtd
947
948 subsections:
949 - title: NAND
950 scope: nand
951
952 subsections:
953 - title: SPI NAND
954 scope: spi-nand
955
956 deprecated:
957 - spi_nand
958
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100959 - title: GUID Partition Tables Support
960 scope: guid-partition
Sughosh Ganue1157ec2022-01-19 11:31:20 +0530961
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500962 deprecated:
963 - partition
964
Chris Kayf64c5582021-12-01 16:34:55 +0000965 - title: SCMI
966 scope: scmi
967
968 deprecated:
969 - scmi_common
970 - drivers/scmi-msg
laurenw-arm21cd0662022-11-01 14:45:33 -0500971 - scmi-msg
Chris Kayf64c5582021-12-01 16:34:55 +0000972
Abhi.Singh36e3d872024-08-28 14:17:52 -0500973 - title: TPM
974 scope: tpm
975
Chris Kayf64c5582021-12-01 16:34:55 +0000976 - title: UFS
977 scope: ufs
978
979 - title: Arm
980 scope: arm-drivers
981
982 subsections:
983 - title: Ethos-N
984 scope: ethos-n
985
986 deprecated:
987 - drivers/arm/ethosn
988
989 - title: GIC
990 scope: gic
991
992 subsections:
993 - title: GICv3
994 scope: gicv3
995
laurenw-arm21cd0662022-11-01 14:45:33 -0500996 deprecated:
997 - gicv3/multichip
998
Chris Kayf64c5582021-12-01 16:34:55 +0000999 subsections:
laurenw-arm21cd0662022-11-01 14:45:33 -05001000 - title: GIC-600
1001 scope: gic600
1002
Chris Kayf64c5582021-12-01 16:34:55 +00001003 - title: GIC-600AE
1004 scope: gic600ae
1005
Madhukar Pappireddyab80cf32023-08-03 12:13:27 -05001006 - title: GICv2
1007 scope: gicv2
1008
Manish V Badarkhe0de3eda2022-03-24 18:23:37 +00001009 - title: SMMU
1010 scope: smmu
1011
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001012 - title: MHU
1013 scope: mhu
1014
1015 deprecated:
1016 - drivers/arm/mhu
1017
Tamas Banccc71732024-04-22 15:41:45 +02001018 - title: RSE
1019 scope: rse
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001020
1021 deprecated:
1022 - drivers/arm/rss
Tamas Banccc71732024-04-22 15:41:45 +02001023 - rss
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001024
Chris Kayf64c5582021-12-01 16:34:55 +00001025 - title: TZC
1026 scope: tzc
1027
1028 subsections:
1029 - title: TZC-400
1030 scope: tzc400
1031
1032 deprecated:
1033 - drivers/tzc400
1034
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001035 - title: TZC-380
1036 scope: tzc380
1037
1038 deprecated:
1039 - drivers/tzc380
1040
Madhukar Pappireddye8166d32023-03-22 15:27:22 -05001041 - title: SBSA
1042 scope: sbsa
1043
Chris Kayf64c5582021-12-01 16:34:55 +00001044 - title: Marvell
1045 scope: marvell-drivers
1046
1047 subsections:
1048 - title: COMPHY
1049 scope: marvell-comphy
1050
1051 deprecated:
1052 - drivers/marvell/comphy
1053
1054 subsections:
1055 - title: Armada 3700
1056 scope: marvell-comphy-3700
1057
1058 deprecated:
1059 - drivers/marvell/comphy-3700
1060
1061 - title: CP110
1062 scope: marvell-comphy-cp110
1063
1064 deprecated:
1065 - drivers/marvell/comphy-cp110
1066
1067 - title: UART
1068 scope: marvell-uart
1069
1070 deprecated:
1071 - plat/marvell/uart
1072
1073 - title: Armada
1074 scope: armada-drivers
1075
1076 subsections:
1077 - title: A3K
1078 scope: a3k-drivers
1079
1080 subsections:
1081 - title: A3720
1082 scope: a3720-uart
1083
1084 deprecated:
1085 - plat/marvell/a3720/uart
1086
1087 - title: MediaTek
1088 scope: mediatek-drivers
1089
1090 subsections:
1091 - title: APU
1092 scope: mediatek-apu
1093
1094 deprecated:
1095 - plat/mediatek/apu
1096
1097 - title: EMI MPU
1098 scope: mediatek-emi-mpu
1099
1100 deprecated:
1101 - plat/mediatek/mpu
1102
1103 - title: PMIC Wrapper
1104 scope: mediatek-pmic-wrapper
1105
1106 deprecated:
1107 - plat/mediatek/pmic_wrap
1108
1109 - title: MT8192
1110 scope: mt8192-drivers
1111
1112 subsections:
1113 - title: SPM
1114 scope: mt8192-spm
1115
1116 deprecated:
1117 - mediatek/mt8192/spm
1118
1119 - title: NXP
1120 scope: nxp-drivers
1121
1122 subsections:
1123 - title: DCFG
1124 scope: nxp-dcfg
1125
1126 deprecated:
1127 - driver/nxp/dcfg
1128
1129 - title: FLEXSPI
1130 scope: flexspi
1131
1132 deprecated:
1133 - include/drivers/flexspi
1134 - driver/nxp/xspi
1135
1136 - title: SCFG
1137 scope: nxp-scfg
1138
1139 deprecated:
1140 - nxp/scfg
1141
1142 - title: SFP
1143 scope: nxp-sfp
1144
1145 deprecated:
1146 - drivers/nxp/sfp
1147
Jiafei Pan1acfb982022-02-10 10:39:56 +08001148 - title: QSPI
1149 scope: nxp-qspi
1150
Jiafei Pan9dcbeb92022-02-18 12:02:04 +08001151 - title: NXP Crypto
1152 scope: nxp-crypto
1153
Jiafei Pan5ba30c62022-02-22 11:05:00 +08001154 - title: DDR
1155 scope: nxp-ddr
1156
1157 - title: GIC
1158 scope: nxp-gic
1159
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001160 - title: CSU
1161 scope: nxp-csu
1162
1163 - title: IFC NAND
1164 scope: nxp-ifc-nand
1165
1166 - title: IFC NOR
1167 scope: nxp-ifc-nor
1168
1169 - title: TZC-380
1170 scope: nxp-tzc380
1171
Jacky Bai9f38eb82023-06-14 15:24:00 +08001172 - title: TRDC
1173 scope: imx-trdc
1174
Ghennadi Procopciuc3a580e92024-06-11 18:39:58 +03001175 - title: Clock
1176 scope: nxp-clk
1177
Chris Kayf64c5582021-12-01 16:34:55 +00001178 - title: Renesas
1179 scope: renesas-drivers
1180
1181 subsections:
1182 - title: R-Car3
1183 scope: rcar3-drivers
1184
1185 deprecated:
1186 - drivers/rcar3
1187
1188 - title: ST
1189 scope: st-drivers
1190
1191 deprecated:
1192 - drivers/st
1193
1194 subsections:
Yann Gautier27254d92022-01-27 09:25:47 +01001195 - title: BSEC
1196 scope: st-bsec
1197
Chris Kayf64c5582021-12-01 16:34:55 +00001198 - title: Clock
1199 scope: st-clock
1200
1201 deprecated:
1202 - stm32mp_clk
1203 - drivers/st/clk
1204 - stm32mp1_clk
1205
Yann Gautier27254d92022-01-27 09:25:47 +01001206 - title: Crypto
1207 scope: st-crypto
1208
1209 - title: DDR
1210 scope: st-ddr
1211
Chris Kayf64c5582021-12-01 16:34:55 +00001212 - title: I/O
1213 scope: st-io-drivers
1214
1215 subsections:
1216 - title: STM32 Image
1217 scope: st-io-stm32image
1218
1219 deprecated:
1220 - io-stm32image
1221 - io_stm32image
1222
Yann Gautier27254d92022-01-27 09:25:47 +01001223 - title: I2C
1224 scope: st-i2c
1225
1226 - title: FMC
1227 scope: st-fmc
1228
1229 - title: GPIO
1230 scope: st-gpio
1231
Chris Kayf64c5582021-12-01 16:34:55 +00001232 - title: SDMMC2
1233 scope: st-sdmmc2
1234
1235 deprecated:
1236 - stm32_sdmmc2
1237
1238 - title: ST PMIC
1239 scope: st-pmic
1240
1241 deprecated:
1242 - drivers/st/pmic
1243
1244 - title: STPMIC1
1245 scope: stpmic1
1246
Yann Gautier27254d92022-01-27 09:25:47 +01001247 - title: Regulator
1248 scope: st-regulator
1249
1250 - title: Reset
1251 scope: st-reset
1252
1253 - title: SPI
1254 scope: st-spi
1255
Chris Kayf64c5582021-12-01 16:34:55 +00001256 - title: UART
1257 scope: st-uart
1258
1259 subsections:
1260 - title: STM32 Console
1261 scope: stm32-console
1262
1263 deprecated:
1264 - stm32_console
1265
1266 - title: USB
1267 scope: st-usb
1268
1269 deprecated:
1270 - drivers/st/usb
1271
Yann Gautier27254d92022-01-27 09:25:47 +01001272 - title: Watchdog
1273 scope: st-iwdg
1274
Chris Kayf64c5582021-12-01 16:34:55 +00001275 - title: USB
1276 scope: usb
1277
1278 deprecated:
1279 - drivers/usb
1280
1281 - title: Miscellaneous
1282
1283 subsections:
1284 - title: AArch64
1285 scope: aarch64
1286
Harrison Mutaiaf61b502024-12-12 18:33:54 +00001287 - title: AArch32
1288 scope: aarch32
1289
Chris Kayf64c5582021-12-01 16:34:55 +00001290 - title: Debug
1291 scope: debug
1292
1293 deprecated:
1294 - common/debug
1295
1296 - title: CRC32
1297 scope: crc32
1298
1299 subsections:
1300 - title: Hardware CRC32
1301 scope: hw-crc32
1302
1303 deprecated:
1304 - hw_crc
1305 - hw_crc32
1306
1307 - title: Software CRC32
1308 scope: sw-crc32
1309
1310 deprecated:
1311 - sw_crc32
1312
1313 - title: DT Bindings
1314 scope: dt-bindings
1315
1316 - title: FDT Wrappers
1317 scope: fdt-wrappers
1318
1319 - title: FDTs
1320 scope: fdts
1321
1322 deprecated:
1323 - fdt
1324
1325 subsections:
Yann Gautier9e14bd32025-05-13 09:38:36 +02001326 - title: Arm
Chris Kayf64c5582021-12-01 16:34:55 +00001327
Yann Gautier3e35da92022-07-08 15:55:14 +02001328 subsections:
Yann Gautier9e14bd32025-05-13 09:38:36 +02001329 - title: Morello
1330 scope: morello-fdts
Yann Gautier3e35da92022-07-08 15:55:14 +02001331
Yann Gautier9e14bd32025-05-13 09:38:36 +02001332 deprecated:
1333 - fdts/morello
Yann Gautier3e35da92022-07-08 15:55:14 +02001334
Yann Gautier9e14bd32025-05-13 09:38:36 +02001335 - title: ST
Yann Gautier3f6c16f2022-12-16 15:32:25 +01001336
Yann Gautier10f60d32023-11-23 19:37:21 +01001337 subsections:
Yann Gautier9e14bd32025-05-13 09:38:36 +02001338 - title: STM32MP1
1339 scope: stm32mp1-fdts
1340
1341 deprecated:
1342 - fdts stm32mp1
1343
1344 subsections:
1345 - title: STM32MP13
1346 scope: stm32mp13-fdts
1347
1348 - title: STM32MP15
1349 scope: stm32mp15-fdts
1350
1351 - title: STM32MP2
1352 scope: stm32mp2-fdts
1353
1354 subsections:
1355 - title: STM32MP25
1356 scope: stm32mp25-fdts
Yann Gautier10f60d32023-11-23 19:37:21 +01001357
Chris Kayf64c5582021-12-01 16:34:55 +00001358 - title: PIE
1359 scope: pie
1360
Juan Pablo Condeb78ad002023-05-15 22:17:17 -05001361 - title: PIE/POR
1362 scope: pie/por
1363
Chris Kayf64c5582021-12-01 16:34:55 +00001364 - title: Security
1365 scope: security
1366
1367 - title: SDEI
1368 scope: sdei
1369
1370 - title: TBBR
1371 scope: tbbr
1372
1373 - title: NXP
1374
1375 subsections:
1376 - title: OCRAM
1377 scope: nxp-ocram
1378
1379 deprecated:
1380 - nxp/common/ocram
1381
1382 - title: PSCI
1383 scope: nxp-psci
1384
1385 deprecated:
1386 - plat/nxp/common/psci
1387
Chris Kay12562af2023-04-13 17:24:20 +01001388 - title: UUID
1389 scope: uuid
1390
Chris Kayf64c5582021-12-01 16:34:55 +00001391 - title: Documentation
1392 scope: docs
1393
1394 deprecated:
1395 - doc
1396
1397 subsections:
1398 - title: Changelog
1399 scope: changelog
1400
1401 - title: Commit Style
1402 scope: commit-style
1403
1404 - title: Contribution Guidelines
1405 scope: contributing
1406
1407 deprecated:
1408 - contribution-guidelines
1409 - docs-contributing.rst
1410
1411 - title: Maintainers
1412 scope: maintainers
1413
1414 - title: Prerequisites
1415 scope: prerequisites
1416
Sandrine Bailleux50075fd2022-05-10 14:53:44 +02001417 - title: Threat Model
1418 scope: threat-model
1419
Sandrine Bailleuxd3171612023-02-08 13:58:25 +01001420 - title: Porting Guide
1421 scope: porting
1422
Chris Kayf64c5582021-12-01 16:34:55 +00001423 - title: Build System
1424 scope: build
1425
1426 deprecated:
1427 - makefile
1428 - Makefile
1429
1430 subsections:
1431 - title: Git Hooks
1432 scope: hooks
1433
Juan Pablo Condeb78ad002023-05-15 22:17:17 -05001434 deprecated:
1435 - git-hooks
1436
Chris Kayf64c5582021-12-01 16:34:55 +00001437 - title: Tools
Manish V Badarkheccbfd012024-07-19 08:31:51 +01001438 scope: tools
Chris Kayf64c5582021-12-01 16:34:55 +00001439
1440 subsections:
Chris Kay654c2ce2023-03-08 17:48:09 +00001441 - title: Clang-Format
1442 scope: clang-format
1443
Chris Kaye7be9242025-02-03 11:25:43 +00001444 - title: Dependabot
1445 scope: dependabot
1446
Chris Kayf64c5582021-12-01 16:34:55 +00001447 - title: STM32 Image
1448 scope: stm32image
1449
1450 deprecated:
1451 - tools/stm32image
1452
Jiafei Pan1acfb982022-02-10 10:39:56 +08001453 - title: NXP Tools
1454 scope: nxp-tools
1455
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001456 - title: Firmware Image Package Tool
1457 scope: fiptool
1458
1459 - title: Secure Partition Tool
1460 scope: sptool
1461
1462 - title: Certificate Creation Tool
1463 scope: cert-create
1464
Chris Kay415049a2024-06-14 11:31:03 +00001465 - title: Firmware Encryption Tool
1466 scope: encrypt-fw
1467
Harrison Mutaid9d5eb12023-02-23 11:30:17 +00001468 - title: Memory Mapping Tool
1469 scope: memmap
1470
laurenw-arm21cd0662022-11-01 14:45:33 -05001471 deprecated:
1472 - cert_create
1473
Henrik Nordstrom8eb4efe2023-12-04 10:31:07 +01001474 - title: Marvell Tools
1475 scope: marvell-tools
1476
Chris Kayea2c6522024-06-04 11:31:06 +00001477 - title: Renesas Tools
1478 scope: renesas-tools
1479
1480 subsections:
1481 - title: R-Car Layout Tool
1482 scope: rcar-layout
Chris Kay3ed72442024-06-04 11:31:06 +00001483
1484 - title: R/ZG Layout Tool
1485 scope: rzg-layout
1486
Harrison Mutai6ac31f32024-05-10 16:54:29 +00001487 - title: Transfer List Compiler
1488 scope: tlc
1489
Manish V Badarkhee19977d2024-08-27 10:48:38 +01001490 - title: Chain of Trust device tree to C source file
1491 scope: cot-dt2c
1492
Chris Kayf64c5582021-12-01 16:34:55 +00001493 - title: Dependencies
1494 scope: deps
1495
1496 subsections:
1497 - title: checkpatch
1498 scope: checkpatch
1499
1500 - title: commitlint
1501 scope: commitlint
1502
Daniel Boulby98a43d92022-10-05 11:03:44 +01001503 - title: Compiler runtime libraries
1504 scope: compiler-rt
1505
Chris Kaye7be9242025-02-03 11:25:43 +00001506 - title: Development dependencies
1507 scope: dev-deps
1508
Chris Kayf64c5582021-12-01 16:34:55 +00001509 - title: libfdt
1510 scope: libfdt
1511
1512 - title: Node Package Manager (NPM)
1513 scope: npm
Daniel Boulby98a43d92022-10-05 11:03:44 +01001514
dependabot[bot]075a9612023-09-06 09:55:17 +00001515 - title: Poetry
1516 scope: poetry
1517
Daniel Boulby98a43d92022-10-05 11:03:44 +01001518 - title: zlib
1519 scope: zlib