blob: 3469cc516756fae4937398407adbe1252faa919b [file] [log] [blame]
Chris Kay82117d72021-12-01 16:34:55 +00001#
Chris Kayc66b9f32024-01-15 18:45:07 +00002# Copyright (c) 2021-2024, 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:
89 - title: Activity Monitors Extension (FEAT_AMU)
90 scope: amu
91
laurenw-arm7c66fca2022-11-01 14:45:33 -050092 - title: Branch Record Buffer Extension (FEAT_BRBE)
93 scope: brbe
94
95 - title: Branch Target Identification Extension
96 scope: bti
97
laurenw-arme541eac2022-06-01 13:45:39 -050098 - title: Confidential Compute Architecture (CCA)
99 scope: cca
100
laurenw-arm7c66fca2022-11-01 14:45:33 -0500101 - title: Extended Cache Index (FEAT_CCIDX)
102 scope: ccidx
103
Mark Brown6e9e4a42023-04-17 17:51:30 +0100104 - title: Extended Translation Control Register (FEAT_TCR2).
105 scope: tcr2
106
Andre Przywara5b005112022-11-14 15:38:58 +0000107 - title: CPU feature / ID register handling in general
108 scope: cpufeat
109
Mark Brown326f2952023-03-14 21:33:04 +0000110 - title: Guarded Control Stack (FEAT_GCS)
111 scope: gcs
112
Chris Kay82117d72021-12-01 16:34:55 +0000113 - title: Support for the `HCRX_EL2` register (FEAT_HCX)
114 scope: hcx
115
116 - title: Memory Partitioning and Monitoring (MPAM) Extension (FEAT_MPAM)
117 scope: mpam
118
Govindraj Raja5bd4bd82024-03-19 14:32:20 -0500119 - title: Memory Tagging Extension2
120 scope: mte2
121
122 deprecated:
123 - mte
laurenw-arm7c66fca2022-11-01 14:45:33 -0500124
125 - title: Pointer Authentication Extension
126 scope: pauth
127
128 - title: Performance Monitors Extension (FEAT_PMUv3)
129 scope: pmu
130
131 - title: Trapping support for RNDR/RNDRRS (FEAT_RNG_TRAP)
132 scope: rng-trap
133
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000134 - title: Scalable Matrix Extension (FEAT_SME, FEAT_SME2)
Chris Kay82117d72021-12-01 16:34:55 +0000135 scope: sme
136
laurenw-arm7c66fca2022-11-01 14:45:33 -0500137 - title: Statistical profiling Extension (FEAT_SPE)
138 scope: spe
139
Chris Kay82117d72021-12-01 16:34:55 +0000140 - title: Scalable Vector Extension (FEAT_SVE)
141 scope: sve
142
143 - title: System Register Trace Extensions (FEAT_ETMv4, FEAT_ETE and FEAT_ETEv1.1)
144 scope: sys-reg-trace
145
146 deprecated:
147 - sys_reg_trace
148
149 - title: Trace Buffer Extension (FEAT_TRBE)
150 scope: trbe
151
152 - title: Self-hosted Trace Extensions (FEAT_TRF)
153 scope: trf
154
155 - title: Platforms
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000156 scope: platforms
157
158 deprecated:
159 - plat/common
Chris Kay82117d72021-12-01 16:34:55 +0000160
161 subsections:
162 - title: Allwinner
163 scope: allwinner
164
165 deprecated:
166 - plat/allwinner
167
168 - title: Arm
169 scope: arm
170
171 deprecated:
172 - plat/arm
173
174 subsections:
Juan Pablo Conde52487492023-05-15 22:17:17 -0500175 - title: A5DS
176 scope: a5ds
177
laurenw-arm7c66fca2022-11-01 14:45:33 -0500178 - title: CSS
179 scope: css
180
181 deprecated:
182 - plat/arm/css
Juan Pablo Conde52487492023-05-15 22:17:17 -0500183 - plat/css
laurenw-arm7c66fca2022-11-01 14:45:33 -0500184
Chris Kay82117d72021-12-01 16:34:55 +0000185 - title: FPGA
186 scope: fpga
187
188 deprecated:
189 - arm_fgpa
Chris Kay82117d72021-12-01 16:34:55 +0000190 - plat/arm_fpga
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000191 - arm/fpga
Chris Kay82117d72021-12-01 16:34:55 +0000192
193 - title: FVP
194 scope: fvp
195
196 deprecated:
197 - plat/fvp
laurenw-arm7c66fca2022-11-01 14:45:33 -0500198 - fvp/tsp_manifest
Chris Kay82117d72021-12-01 16:34:55 +0000199
200 - title: FVP-R
201 scope: fvp-r
202
203 deprecated:
204 - fvp_r
205
laurenw-arm7c66fca2022-11-01 14:45:33 -0500206 - title: FVP Versatile Express
207 scope: fvp_ve
208
Chris Kay82117d72021-12-01 16:34:55 +0000209 - title: Juno
210 scope: juno
211
212 - title: Morello
213 scope: morello
214
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100215 - title: N1SDP
216 scope: n1sdp
217
Rohit Mathewe191b382024-04-15 17:31:04 +0100218 - title: Neoverse-RD
219 scope: neoverse-rd
Chris Kay82117d72021-12-01 16:34:55 +0000220
221 subsections:
Rohit Mathewf5f44032024-04-16 17:31:54 +0100222 - title: SGI-575
223 scope: sgi575
224
Juan Pablo Conde52487492023-05-15 22:17:17 -0500225 - title: RD-N1 Edge
226 scope: rdn1edge
227
Chris Kay82117d72021-12-01 16:34:55 +0000228 - title: RD-N2
229 scope: rdn2
230
231 deprecated:
232 - board/rdn2
233
Chris Kay82117d72021-12-01 16:34:55 +0000234 - title: TC
235 scope: tc
236
Juan Pablo Conde52487492023-05-15 22:17:17 -0500237 deprecated:
238 - plat/tc
239
Chris Kay82117d72021-12-01 16:34:55 +0000240 subsections:
241 - title: TC0
242 scope: tc0
243
244 deprecated:
245 - plat/tc0
246
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100247 - title: Corstone-1000
248 scope: corstone-1000
249
Chia-Wei Wanga7556d82022-11-02 17:50:21 +0800250 - title: Aspeed
251 scope: aspeed
252
253 subsections:
254 - title: AST2700
255 scope: ast2700
256
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100257 - title: Broadcom
258 scope: brcm
259
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000260 - title: Cadence
261 scope: cadence
262
laurenw-arm7c66fca2022-11-01 14:45:33 -0500263 - title: HiSilicon
264 scope: hisilicon
265
266 subsections:
267 - title: HiKey
268 scope: hikey
269
270 - title: HiKey960
271 scope: hikey960
272
Sieu Mun Tang9f3a13c2022-02-22 14:14:26 +0800273 - title: Intel
274 scope: intel
275
276 subsections:
277 - title: SoC
278 scope: soc
279
Chris Kay82117d72021-12-01 16:34:55 +0000280 - title: Marvell
281 scope: marvell
282
283 deprecated:
284 - plat/marvell
285
286 subsections:
287 - title: Armada
288 scope: armada
289
290 deprecated:
291 - plat/marvell/armada
292
293 subsections:
294 - title: A3K
295 scope: a3k
296
297 deprecated:
298 - plat/marvell/a3k
299
300 - title: A8K
301 scope: a8k
302
303 deprecated:
304 - plat/marvell/a8k
305
306 - title: MediaTek
307 scope: mediatek
308
309 deprecated:
310 - plat/mediatek/common
311 - plat/mediatek
312
313 subsections:
314 - title: MT8183
315 scope: mt8183
316
317 deprecated:
318 - plat/mediatek/mt8183
319
laurenw-arm7c66fca2022-11-01 14:45:33 -0500320 - title: MT8186
321 scope: mt8186
322
323 deprecated:
324 - plat/mediatek/mt8186
325 - mt8186-emi-mpu
326
327 - title: MT8188
328 scope: mt8188
329
Chris Kay82117d72021-12-01 16:34:55 +0000330 - title: MT8192
331 scope: mt8192
332
333 deprecated:
334 - plat/mdeiatek/mt8192
335
336 - title: MT8195
337 scope: mt8195
338
339 deprecated:
340 - plat/mediatek/me8195
341 - plat/mediatek/mt8195
342 - plat/mdeiatek/mt8195
343
344 - title: NVIDIA
345 scope: nvidia
346
347 subsections:
348 - title: Tegra
349 scope: tegra
350
351 deprecated:
352 - plat/tegra
353
354 subsections:
355 - title: Tegra 132
356 scope: tegra132
357
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100358 - title: Tegra 194
359 scope: tegra194
360
Juan Pablo Conde52487492023-05-15 22:17:17 -0500361 - title: Tegra 210
362 scope: tegra210
363
Chris Kay82117d72021-12-01 16:34:55 +0000364 - title: NXP
365 scope: nxp
366
367 deprecated:
368 - plat/nxp
369 - plat/nxp/common
370
371 subsections:
372 - title: i.MX
373 scope: imx
374
375 deprecated:
376 - plat/imx
377 - plat/imx/imx
378
379 subsections:
380 - title: i.MX 8M
381 scope: imx8m
382
383 deprecated:
384 - plat/imx8m
385 - plat/imx/imx8m
386
387 subsections:
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100388 - title: i.MX 8M Nano
389 scope: imx8mn
390
391 deprecated:
392 - plat/imx/imx8m/imx8mn
393
Chris Kay82117d72021-12-01 16:34:55 +0000394 - title: i.MX 8M Mini
395 scope: imx8mm
396
397 deprecated:
398 - plat/imx/imx8m/imx8mm
399
400 - title: i.MX 8M Plus
401 scope: imx8mp
402
403 deprecated:
404 - plat/imx/imx8m/imx8mp
405
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100406 - title: i.MX 8Q
407 scope: imx8mq
408
409 deprecated:
410 - plat/imx/imx8m/imx8mq
411
Juan Pablo Conde52487492023-05-15 22:17:17 -0500412 - title: i.MX 8
413 scope: imx8
414
Jacky Bai4e214e42023-10-08 17:52:24 +0800415 - title: i.MX 8ULP
416 scope: imx8ulp
417
Jacky Bai9dc47d52023-06-14 15:24:00 +0800418 - title: i.MX 9
419 scope: imx9
420
421 subsections:
422 - title: i.MX93
423 scope: imx93
424
Chris Kay82117d72021-12-01 16:34:55 +0000425 - title: Layerscape
426 scope: layerscape
427
428 deprecated:
429 - docs/nxp/layerscape
430
431 subsections:
432 - title: LS1028A
433 scope: ls1028a
434
435 deprecated:
436 - plat/nxp/ls1028a
437
438 subsections:
439 - title: LS1028ARDB
440 scope: ls1028ardb
441
442 deprecated:
443 - plat/nxp/ls1028ardb
444
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100445 - title: LS1043A
446 scope: ls1043a
447
448 deprecated:
449 - plat/nxp/ls1043a
450
451 subsections:
452 - title: LS1043ARDB
453 scope: ls1043ardb
454
455 deprecated:
456 - plat/nxp/ls1043ardb
457
Chris Kay82117d72021-12-01 16:34:55 +0000458 - title: LX2
459 scope: lx2
460
461 deprecated:
462 - plat/nxp/lx2
463
464 subsections:
465 - title: LX216
466 scope: lx216
467
468 deprecated:
469 - plat/nxp/lx216x
470
471 subsections:
472 - title: LX2160
473 scope: lx2160
474
475 deprecated:
476 - plat/soc-lx2160
477
Jiafei Pan18ba9e42022-02-10 10:39:56 +0800478 - title: LS1046A
479 scope: ls1046a
480
481 subsections:
482 - title: LS1046ARDB
483 scope: ls1046ardb
484
485 - title: LS1046AFRWY
486 scope: ls1046afrwy
487
488 - title: LS1046AQDS
489 scope: ls1046aqds
490
Jiafei Pan290bf6f2022-02-24 16:00:35 +0800491 - title: LS1088A
492 scope: ls1088a
493
494 subsections:
495 - title: LS1088ARDB
496 scope: ls1088ardb
497
498 - title: LS1088AQDS
499 scope: ls1088aqds
500
Chris Kay82117d72021-12-01 16:34:55 +0000501 - title: QEMU
502 scope: qemu
503
504 deprecated:
505 - plat/qemu
506
Juan Pablo Conde52487492023-05-15 22:17:17 -0500507 subsections:
508 - title: SBSA
509 scope: qemu-sbsa
510
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000511 deprecated:
512 - qemu_sbsa
513
Chris Kay82117d72021-12-01 16:34:55 +0000514 - title: QTI
515 scope: qti
516
laurenw-arm7c66fca2022-11-01 14:45:33 -0500517 deprecated:
518 - plat/qti
519
Chris Kay82117d72021-12-01 16:34:55 +0000520 subsections:
521 - title: SC1780
522 scope: sc7180
523
524 deprecated:
525 - plat/qti/sc7180
526
527 - title: SC7280
528 scope: sc7280
529
530 deprecated:
531 - plat/qti/sc7280
532
Stephan Gerholdd0d0bf42021-12-01 20:00:00 +0100533 - title: MSM8916
534 scope: msm8916
535
Chris Kay82117d72021-12-01 16:34:55 +0000536 - title: Raspberry Pi
537 scope: rpi
538
539 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500540 - title: Raspberry Pi 3
541 scope: rpi3
542
Chris Kay82117d72021-12-01 16:34:55 +0000543 - title: Raspberry Pi 4
544 scope: rpi4
545
Mario Bălănicăc883ce02023-12-02 03:08:02 +0200546 - title: Raspberry Pi 5
547 scope: rpi5
548
Chris Kay82117d72021-12-01 16:34:55 +0000549 - title: Renesas
550 scope: renesas
551
552 subsections:
553 - title: R-Car
554 scope: rcar
555
556 deprecated:
557 - plat/rcar
558
559 subsections:
560 - title: R-Car 3
561 scope: rcar3
562
563 deprecated:
564 - plat/rcar3
565
566 - title: Rockchip
567 scope: rockchip
568
569 subsections:
570 - title: RK3399
571 scope: rk3399
572
573 deprecated:
574 - rockchip/rk3399
575 - rk3399/suspend
576
Diederik de Haas6a9c7312023-11-27 10:21:37 +0100577 - title: RK3328
578 scope: rk3328
579
Chris Kay82117d72021-12-01 16:34:55 +0000580 - title: Socionext
581 scope: socionext
582
583 subsections:
584 - title: Synquacer
585 scope: synquacer
586
587 deprecated:
588 - plat/synquacer
589
590 - title: ST
591 scope: st
592
593 deprecated:
594 - plat/st
595
596 subsections:
Yann Gautier14b32e82022-06-01 18:17:43 +0200597 - title: STM32MP1
Chris Kay82117d72021-12-01 16:34:55 +0000598 scope: stm32mp1
599
600 deprecated:
601 - plat/st/stm32mp1
602
Yann Gautier14b32e82022-06-01 18:17:43 +0200603 subsections:
604 - title: STM32MP13
605 scope: stm32mp13
606
607 - title: STM32MP15
608 scope: stm32mp15
609
Yann Gautier1123f662022-12-16 15:32:25 +0100610 - title: STM32MP2
611 scope: stm32mp2
612
Dave Gerlach74c19f92022-03-22 11:02:52 -0500613 - title: Texas Instruments
614 scope: ti
615
616 subsections:
617 - title: K3
618 scope: k3
619
laurenw-arm7c66fca2022-11-01 14:45:33 -0500620 deprecated:
621 - ti-k3
622
Chris Kay82117d72021-12-01 16:34:55 +0000623 - title: Xilinx
624 scope: xilinx
625
626 deprecated:
627 - plat/xilinx
628
629 subsections:
Michal Simek38d5d4d2023-09-18 10:22:48 +0200630 - title: DCC (Debug Communication Channel)
631 scope: dcc
632
Chris Kay82117d72021-12-01 16:34:55 +0000633 - title: Versal
634 scope: versal
635
636 deprecated:
637 - plat/xilinx/versal/include
638 - plat/xilinx/versal
639 - plat/versal
640
laurenw-arm7c66fca2022-11-01 14:45:33 -0500641 subsections:
642 - title: Versal NET
643 scope: versal-net
644
645 deprecated:
646 - versal_net
647
Chris Kay82117d72021-12-01 16:34:55 +0000648 - title: ZynqMP
649 scope: zynqmp
650
651 deprecated:
652 - plat/zynqmp
653 - plat/xilinx/zynqmp
654
rutigl@gmail.comdefbeed2023-03-19 09:19:05 +0200655 - title: Nuvoton
656 scope: nuvoton
657
658 subsections:
659 - title: npcm845x
660 scope: npcm845x
661
Chris Kay82117d72021-12-01 16:34:55 +0000662 - title: Bootloader Images
663 scope: bl
664
665 deprecated:
666 - bl_common
667
668 subsections:
669 - title: BL1
670 scope: bl1
671
672 - title: BL2
673 scope: bl2
674
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100675 - title: BL31
676 scope: bl31
677
Shruti Guptac31beb62022-08-09 10:46:07 +0100678 - title: BL32
679 scope: bl32
680
681 subsections:
682 - title: TSP
683 scope: tsp
684
Chris Kay82117d72021-12-01 16:34:55 +0000685 - title: Services
686 scope: services
687
688 subsections:
689 - title: FF-A
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000690 scope: ff-a
Chris Kay82117d72021-12-01 16:34:55 +0000691
692 deprecated:
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000693 - ffa
Chris Kay82117d72021-12-01 16:34:55 +0000694
695 - title: RME
696 scope: rme
697
laurenw-arm7c66fca2022-11-01 14:45:33 -0500698 deprecated:
699 - rme/fid
700
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100701 subsections:
702 - title: TRP
703 scope: trp
704
Javier Almansa Sobrino7176a772021-11-24 18:37:37 +0000705 - title: RMMD
706 scope: rmmd
707
Juan Pablo Conde52487492023-05-15 22:17:17 -0500708 - title: RMM
709 scope: rmm
710
Chris Kay82117d72021-12-01 16:34:55 +0000711 - title: SPM
712 scope: spm
713
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100714 subsections:
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000715 - title: EL3 SPM
716 scope: el3-spm
717
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100718 - title: EL3 SPMC
719 scope: el3-spmc
720
laurenw-arm7c66fca2022-11-01 14:45:33 -0500721 deprecated:
722 - spmc
723
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100724 - title: SPMD
725 scope: spmd
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000726
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100727 - title: SPM MM
728 scope: spm-mm
Chris Kay82117d72021-12-01 16:34:55 +0000729
Manish V Badarkhe478d3ee2022-06-27 09:21:14 +0100730 - title: DRTM
731 scope: drtm
732
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +0100733 - title: TRNG
734 scope: trng
735
Sona Mathew5100bec2023-09-20 12:55:32 -0500736 - title: ERRATA ABI
737 scope: errata-abi
738
739 deprecated:
740 - errata_abi
Sona Mathew7fe03522022-11-18 18:05:38 -0600741
Chris Kay82117d72021-12-01 16:34:55 +0000742 - title: Libraries
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000743 scope: lib
Chris Kay82117d72021-12-01 16:34:55 +0000744
745 subsections:
746 - title: CPU Support
747 scope: cpus
748
749 deprecated:
750 - cpu
751 - errata
752 - errata_report
753
754 - title: EL3 Runtime
755 scope: el3-runtime
756
757 deprecated:
758 - el3_runtime
759
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100760 subsections:
761 - title: Context Management
762 scope: cm
763
laurenw-arm7c66fca2022-11-01 14:45:33 -0500764 - title: RAS
765 scope: ras
766
Chris Kay82117d72021-12-01 16:34:55 +0000767 - title: FCONF
768 scope: fconf
769
770 - title: MPMM
771 scope: mpmm
772
773 - title: OP-TEE
774 scope: optee
775
776 deprecated:
777 - lib/optee
778
779 - title: PSCI
780 scope: psci
781
Chris Kayc66b9f32024-01-15 18:45:07 +0000782 - title: ROMlib
783 scope: romlib
784
Chris Kay82117d72021-12-01 16:34:55 +0000785 - title: GPT
786 scope: gpt
787
788 deprecated:
789 - gpt_rme
790
791 - title: SMCCC
792 scope: smccc
793
794 - title: Translation Tables
795 scope: xlat
796
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100797 - title: C Standard Library
798 scope: libc
799
800 - title: Locks
801 scope: locks
802
803 - title: PSA
804 scope: psa
805
laurenw-arm7c66fca2022-11-01 14:45:33 -0500806 deprecated:
807 - lib/psa
808
Tamas Ban109a4802024-02-06 11:24:51 +0100809 - title: DICE Protection Environment
810 scope: dice
811
Zelalem Aweke5362beb2022-04-04 17:42:48 -0500812 - title: Context Management
Chris Kaye76be0a2022-10-10 16:57:45 +0100813 scope: context-mgmt
814
815 deprecated:
816 - context mgmt
Zelalem Aweke5362beb2022-04-04 17:42:48 -0500817
Manish V Badarkhede920262022-09-26 15:06:56 +0100818 - title: Semihosting
819 scope: semihosting
820
Raymond Mao98983392023-07-25 07:53:35 -0700821 - title: Firmware Handoff
822 scope: handoff
823
Chris Kay82117d72021-12-01 16:34:55 +0000824 - title: Drivers
825
826 subsections:
827 - title: Authentication
828 scope: auth
829
830 deprecated:
831 - driver/auth
832
833 subsections:
834 - title: CryptoCell-713
835 scope: cc-713
836
Manish V Badarkhe8d91e982022-09-22 21:41:55 +0100837 - title: Crypto
838 scope: crypto
839
840 - title: mbedTLS
841 scope: mbedtls
842
Manish V Badarkhe538d5922023-09-22 17:54:59 +0100843 - title: mbedTLS-PSA
844 scope: mbedtls-psa
845
Yann Gautier1832d662023-01-06 17:05:48 +0100846 - title: Console
847 scope: console
848
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100849 - title: Generic Clock
850 scope: clk
851
Chris Kay82117d72021-12-01 16:34:55 +0000852 - title: FWU
853 scope: fwu
854
855 deprecated:
856 - fwu_metadata
857
858 - title: I/O
859 scope: io
860
861 subsections:
862 - title: MTD
863 scope: mtd
864
865 deprecated:
866 - io_mtd
867
868 - title: Measured Boot
869 scope: measured-boot
870
871 deprecated:
872 - measured boot
873 - measured_boot
874
875 - title: MMC
876 scope: mmc
877
878 deprecated:
879 - drivers/mmc
880
881 - title: MTD
882 scope: mtd
883
884 deprecated:
885 - drivers/mtd
886
887 subsections:
888 - title: NAND
889 scope: nand
890
891 subsections:
892 - title: SPI NAND
893 scope: spi-nand
894
895 deprecated:
896 - spi_nand
897
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100898 - title: GUID Partition Tables Support
899 scope: guid-partition
Sughosh Ganu540e0322022-01-19 11:31:20 +0530900
Juan Pablo Conde52487492023-05-15 22:17:17 -0500901 deprecated:
902 - partition
903
Chris Kay82117d72021-12-01 16:34:55 +0000904 - title: SCMI
905 scope: scmi
906
907 deprecated:
908 - scmi_common
909 - drivers/scmi-msg
laurenw-arm7c66fca2022-11-01 14:45:33 -0500910 - scmi-msg
Chris Kay82117d72021-12-01 16:34:55 +0000911
912 - title: UFS
913 scope: ufs
914
915 - title: Arm
916 scope: arm-drivers
917
918 subsections:
919 - title: Ethos-N
920 scope: ethos-n
921
922 deprecated:
923 - drivers/arm/ethosn
924
925 - title: GIC
926 scope: gic
927
928 subsections:
929 - title: GICv3
930 scope: gicv3
931
laurenw-arm7c66fca2022-11-01 14:45:33 -0500932 deprecated:
933 - gicv3/multichip
934
Chris Kay82117d72021-12-01 16:34:55 +0000935 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500936 - title: GIC-600
937 scope: gic600
938
Chris Kay82117d72021-12-01 16:34:55 +0000939 - title: GIC-600AE
940 scope: gic600ae
941
Madhukar Pappireddydc4b8c62023-08-03 12:13:27 -0500942 - title: GICv2
943 scope: gicv2
944
Manish V Badarkhebcaeb672022-03-24 18:23:37 +0000945 - title: SMMU
946 scope: smmu
947
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100948 - title: MHU
949 scope: mhu
950
951 deprecated:
952 - drivers/arm/mhu
953
954 - title: RSS
955 scope: rss
956
957 deprecated:
958 - drivers/arm/rss
959
Chris Kay82117d72021-12-01 16:34:55 +0000960 - title: TZC
961 scope: tzc
962
963 subsections:
964 - title: TZC-400
965 scope: tzc400
966
967 deprecated:
968 - drivers/tzc400
969
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100970 - title: TZC-380
971 scope: tzc380
972
973 deprecated:
974 - drivers/tzc380
975
Madhukar Pappireddy4c3de562023-03-22 15:27:22 -0500976 - title: SBSA
977 scope: sbsa
978
Chris Kay82117d72021-12-01 16:34:55 +0000979 - title: Marvell
980 scope: marvell-drivers
981
982 subsections:
983 - title: COMPHY
984 scope: marvell-comphy
985
986 deprecated:
987 - drivers/marvell/comphy
988
989 subsections:
990 - title: Armada 3700
991 scope: marvell-comphy-3700
992
993 deprecated:
994 - drivers/marvell/comphy-3700
995
996 - title: CP110
997 scope: marvell-comphy-cp110
998
999 deprecated:
1000 - drivers/marvell/comphy-cp110
1001
1002 - title: UART
1003 scope: marvell-uart
1004
1005 deprecated:
1006 - plat/marvell/uart
1007
1008 - title: Armada
1009 scope: armada-drivers
1010
1011 subsections:
1012 - title: A3K
1013 scope: a3k-drivers
1014
1015 subsections:
1016 - title: A3720
1017 scope: a3720-uart
1018
1019 deprecated:
1020 - plat/marvell/a3720/uart
1021
1022 - title: MediaTek
1023 scope: mediatek-drivers
1024
1025 subsections:
1026 - title: APU
1027 scope: mediatek-apu
1028
1029 deprecated:
1030 - plat/mediatek/apu
1031
1032 - title: EMI MPU
1033 scope: mediatek-emi-mpu
1034
1035 deprecated:
1036 - plat/mediatek/mpu
1037
1038 - title: PMIC Wrapper
1039 scope: mediatek-pmic-wrapper
1040
1041 deprecated:
1042 - plat/mediatek/pmic_wrap
1043
1044 - title: MT8192
1045 scope: mt8192-drivers
1046
1047 subsections:
1048 - title: SPM
1049 scope: mt8192-spm
1050
1051 deprecated:
1052 - mediatek/mt8192/spm
1053
1054 - title: NXP
1055 scope: nxp-drivers
1056
1057 subsections:
1058 - title: DCFG
1059 scope: nxp-dcfg
1060
1061 deprecated:
1062 - driver/nxp/dcfg
1063
1064 - title: FLEXSPI
1065 scope: flexspi
1066
1067 deprecated:
1068 - include/drivers/flexspi
1069 - driver/nxp/xspi
1070
1071 - title: SCFG
1072 scope: nxp-scfg
1073
1074 deprecated:
1075 - nxp/scfg
1076
1077 - title: SFP
1078 scope: nxp-sfp
1079
1080 deprecated:
1081 - drivers/nxp/sfp
1082
Jiafei Pan18ba9e42022-02-10 10:39:56 +08001083 - title: QSPI
1084 scope: nxp-qspi
1085
Jiafei Pan94450412022-02-18 12:02:04 +08001086 - title: NXP Crypto
1087 scope: nxp-crypto
1088
Jiafei Panfa3f7612022-02-22 11:05:00 +08001089 - title: DDR
1090 scope: nxp-ddr
1091
1092 - title: GIC
1093 scope: nxp-gic
1094
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001095 - title: CSU
1096 scope: nxp-csu
1097
1098 - title: IFC NAND
1099 scope: nxp-ifc-nand
1100
1101 - title: IFC NOR
1102 scope: nxp-ifc-nor
1103
1104 - title: TZC-380
1105 scope: nxp-tzc380
1106
Jacky Bai9dc47d52023-06-14 15:24:00 +08001107 - title: TRDC
1108 scope: imx-trdc
1109
Chris Kay82117d72021-12-01 16:34:55 +00001110 - title: Renesas
1111 scope: renesas-drivers
1112
1113 subsections:
1114 - title: R-Car3
1115 scope: rcar3-drivers
1116
1117 deprecated:
1118 - drivers/rcar3
1119
1120 - title: ST
1121 scope: st-drivers
1122
1123 deprecated:
1124 - drivers/st
1125
1126 subsections:
Yann Gautier9f359fd2022-01-27 09:25:47 +01001127 - title: BSEC
1128 scope: st-bsec
1129
Chris Kay82117d72021-12-01 16:34:55 +00001130 - title: Clock
1131 scope: st-clock
1132
1133 deprecated:
1134 - stm32mp_clk
1135 - drivers/st/clk
1136 - stm32mp1_clk
1137
Yann Gautier9f359fd2022-01-27 09:25:47 +01001138 - title: Crypto
1139 scope: st-crypto
1140
1141 - title: DDR
1142 scope: st-ddr
1143
Chris Kay82117d72021-12-01 16:34:55 +00001144 - title: I/O
1145 scope: st-io-drivers
1146
1147 subsections:
1148 - title: STM32 Image
1149 scope: st-io-stm32image
1150
1151 deprecated:
1152 - io-stm32image
1153 - io_stm32image
1154
Yann Gautier9f359fd2022-01-27 09:25:47 +01001155 - title: I2C
1156 scope: st-i2c
1157
1158 - title: FMC
1159 scope: st-fmc
1160
1161 - title: GPIO
1162 scope: st-gpio
1163
Chris Kay82117d72021-12-01 16:34:55 +00001164 - title: SDMMC2
1165 scope: st-sdmmc2
1166
1167 deprecated:
1168 - stm32_sdmmc2
1169
1170 - title: ST PMIC
1171 scope: st-pmic
1172
1173 deprecated:
1174 - drivers/st/pmic
1175
1176 - title: STPMIC1
1177 scope: stpmic1
1178
Yann Gautier9f359fd2022-01-27 09:25:47 +01001179 - title: Regulator
1180 scope: st-regulator
1181
1182 - title: Reset
1183 scope: st-reset
1184
1185 - title: SPI
1186 scope: st-spi
1187
Chris Kay82117d72021-12-01 16:34:55 +00001188 - title: UART
1189 scope: st-uart
1190
1191 subsections:
1192 - title: STM32 Console
1193 scope: stm32-console
1194
1195 deprecated:
1196 - stm32_console
1197
1198 - title: USB
1199 scope: st-usb
1200
1201 deprecated:
1202 - drivers/st/usb
1203
Yann Gautier9f359fd2022-01-27 09:25:47 +01001204 - title: Watchdog
1205 scope: st-iwdg
1206
Chris Kay82117d72021-12-01 16:34:55 +00001207 - title: USB
1208 scope: usb
1209
1210 deprecated:
1211 - drivers/usb
1212
1213 - title: Miscellaneous
1214
1215 subsections:
1216 - title: AArch64
1217 scope: aarch64
1218
1219 - title: Debug
1220 scope: debug
1221
1222 deprecated:
1223 - common/debug
1224
1225 - title: CRC32
1226 scope: crc32
1227
1228 subsections:
1229 - title: Hardware CRC32
1230 scope: hw-crc32
1231
1232 deprecated:
1233 - hw_crc
1234 - hw_crc32
1235
1236 - title: Software CRC32
1237 scope: sw-crc32
1238
1239 deprecated:
1240 - sw_crc32
1241
1242 - title: DT Bindings
1243 scope: dt-bindings
1244
1245 - title: FDT Wrappers
1246 scope: fdt-wrappers
1247
1248 - title: FDTs
1249 scope: fdts
1250
1251 deprecated:
1252 - fdt
1253
1254 subsections:
1255 - title: Morello
1256 scope: morello-fdts
1257
1258 deprecated:
1259 - fdts/morello
1260
1261 - title: STM32MP1
1262 scope: stm32mp1-fdts
1263
1264 deprecated:
1265 - fdts stm32mp1
1266
Yann Gautier2c962252022-07-08 15:55:14 +02001267 subsections:
1268 - title: STM32MP13
1269 scope: stm32mp13-fdts
1270
1271 - title: STM32MP15
1272 scope: stm32mp15-fdts
1273
Yann Gautier1123f662022-12-16 15:32:25 +01001274 - title: STM32MP2
1275 scope: stm32mp2-fdts
1276
Chris Kay82117d72021-12-01 16:34:55 +00001277 - title: PIE
1278 scope: pie
1279
Juan Pablo Conde52487492023-05-15 22:17:17 -05001280 - title: PIE/POR
1281 scope: pie/por
1282
Chris Kay82117d72021-12-01 16:34:55 +00001283 - title: Security
1284 scope: security
1285
1286 - title: SDEI
1287 scope: sdei
1288
1289 - title: TBBR
1290 scope: tbbr
1291
1292 - title: NXP
1293
1294 subsections:
1295 - title: OCRAM
1296 scope: nxp-ocram
1297
1298 deprecated:
1299 - nxp/common/ocram
1300
1301 - title: PSCI
1302 scope: nxp-psci
1303
1304 deprecated:
1305 - plat/nxp/common/psci
1306
Chris Kayd04a4762023-04-13 17:24:20 +01001307 - title: UUID
1308 scope: uuid
1309
Chris Kay82117d72021-12-01 16:34:55 +00001310 - title: Documentation
1311 scope: docs
1312
1313 deprecated:
1314 - doc
1315
1316 subsections:
1317 - title: Changelog
1318 scope: changelog
1319
1320 - title: Commit Style
1321 scope: commit-style
1322
1323 - title: Contribution Guidelines
1324 scope: contributing
1325
1326 deprecated:
1327 - contribution-guidelines
1328 - docs-contributing.rst
1329
1330 - title: Maintainers
1331 scope: maintainers
1332
1333 - title: Prerequisites
1334 scope: prerequisites
1335
Sandrine Bailleux3c8fdf72022-05-10 14:53:44 +02001336 - title: Threat Model
1337 scope: threat-model
1338
Sandrine Bailleuxe67bb122023-02-08 13:58:25 +01001339 - title: Porting Guide
1340 scope: porting
1341
Chris Kay82117d72021-12-01 16:34:55 +00001342 - title: Build System
1343 scope: build
1344
1345 deprecated:
1346 - makefile
1347 - Makefile
1348
1349 subsections:
1350 - title: Git Hooks
1351 scope: hooks
1352
Juan Pablo Conde52487492023-05-15 22:17:17 -05001353 deprecated:
1354 - git-hooks
1355
Chris Kay82117d72021-12-01 16:34:55 +00001356 - title: Tools
1357
1358 subsections:
1359 - title: STM32 Image
1360 scope: stm32image
1361
1362 deprecated:
1363 - tools/stm32image
1364
Jiafei Pan18ba9e42022-02-10 10:39:56 +08001365 - title: NXP Tools
1366 scope: nxp-tools
1367
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001368 - title: Firmware Image Package Tool
1369 scope: fiptool
1370
1371 - title: Secure Partition Tool
1372 scope: sptool
1373
1374 - title: Certificate Creation Tool
1375 scope: cert-create
1376
Harrison Mutai372b8802023-02-23 11:30:17 +00001377 - title: Memory Mapping Tool
1378 scope: memmap
1379
laurenw-arm7c66fca2022-11-01 14:45:33 -05001380 deprecated:
1381 - cert_create
1382
Henrik Nordstromd95745b2023-12-04 10:31:07 +01001383 - title: Marvell Tools
1384 scope: marvell-tools
1385
Chris Kay82117d72021-12-01 16:34:55 +00001386 - title: Dependencies
1387 scope: deps
1388
1389 subsections:
1390 - title: checkpatch
1391 scope: checkpatch
1392
1393 - title: commitlint
1394 scope: commitlint
1395
Daniel Boulbyc550e702022-10-05 11:03:44 +01001396 - title: Compiler runtime libraries
1397 scope: compiler-rt
1398
Chris Kay82117d72021-12-01 16:34:55 +00001399 - title: libfdt
1400 scope: libfdt
1401
1402 - title: Node Package Manager (NPM)
1403 scope: npm
Daniel Boulbyc550e702022-10-05 11:03:44 +01001404
dependabot[bot]dba1b532023-09-06 09:55:17 +00001405 - title: Poetry
1406 scope: poetry
1407
Daniel Boulbyc550e702022-10-05 11:03:44 +01001408 - title: zlib
1409 scope: zlib