blob: 1467ab4cafd8ea1f60c2546802922f962d172415 [file] [log] [blame]
Chris Kay82117d72021-12-01 16:34:55 +00001#
Yann Gautier1832d662023-01-06 17:05:48 +01002# Copyright (c) 2021-2023, 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
laurenw-arm7c66fca2022-11-01 14:45:33 -0500119 - title: Memory Tagging Extension
120 scope: mte
121
122 - title: Pointer Authentication Extension
123 scope: pauth
124
125 - title: Performance Monitors Extension (FEAT_PMUv3)
126 scope: pmu
127
128 - title: Trapping support for RNDR/RNDRRS (FEAT_RNG_TRAP)
129 scope: rng-trap
130
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000131 - title: Scalable Matrix Extension (FEAT_SME, FEAT_SME2)
Chris Kay82117d72021-12-01 16:34:55 +0000132 scope: sme
133
laurenw-arm7c66fca2022-11-01 14:45:33 -0500134 - title: Statistical profiling Extension (FEAT_SPE)
135 scope: spe
136
Chris Kay82117d72021-12-01 16:34:55 +0000137 - title: Scalable Vector Extension (FEAT_SVE)
138 scope: sve
139
140 - title: System Register Trace Extensions (FEAT_ETMv4, FEAT_ETE and FEAT_ETEv1.1)
141 scope: sys-reg-trace
142
143 deprecated:
144 - sys_reg_trace
145
146 - title: Trace Buffer Extension (FEAT_TRBE)
147 scope: trbe
148
149 - title: Self-hosted Trace Extensions (FEAT_TRF)
150 scope: trf
151
152 - title: Platforms
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000153 scope: platforms
154
155 deprecated:
156 - plat/common
Chris Kay82117d72021-12-01 16:34:55 +0000157
158 subsections:
159 - title: Allwinner
160 scope: allwinner
161
162 deprecated:
163 - plat/allwinner
164
165 - title: Arm
166 scope: arm
167
168 deprecated:
169 - plat/arm
170
171 subsections:
Juan Pablo Conde52487492023-05-15 22:17:17 -0500172 - title: A5DS
173 scope: a5ds
174
laurenw-arm7c66fca2022-11-01 14:45:33 -0500175 - title: CSS
176 scope: css
177
178 deprecated:
179 - plat/arm/css
Juan Pablo Conde52487492023-05-15 22:17:17 -0500180 - plat/css
laurenw-arm7c66fca2022-11-01 14:45:33 -0500181
Chris Kay82117d72021-12-01 16:34:55 +0000182 - title: FPGA
183 scope: fpga
184
185 deprecated:
186 - arm_fgpa
Chris Kay82117d72021-12-01 16:34:55 +0000187 - plat/arm_fpga
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000188 - arm/fpga
Chris Kay82117d72021-12-01 16:34:55 +0000189
190 - title: FVP
191 scope: fvp
192
193 deprecated:
194 - plat/fvp
laurenw-arm7c66fca2022-11-01 14:45:33 -0500195 - fvp/tsp_manifest
Chris Kay82117d72021-12-01 16:34:55 +0000196
197 - title: FVP-R
198 scope: fvp-r
199
200 deprecated:
201 - fvp_r
202
laurenw-arm7c66fca2022-11-01 14:45:33 -0500203 - title: FVP Versatile Express
204 scope: fvp_ve
205
Chris Kay82117d72021-12-01 16:34:55 +0000206 - title: Juno
207 scope: juno
208
209 - title: Morello
210 scope: morello
211
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100212 - title: N1SDP
213 scope: n1sdp
214
Chris Kay82117d72021-12-01 16:34:55 +0000215 - title: RD
216 scope: rd
217
218 subsections:
Juan Pablo Conde52487492023-05-15 22:17:17 -0500219 - title: RD-N1 Edge
220 scope: rdn1edge
221
Chris Kay82117d72021-12-01 16:34:55 +0000222 - title: RD-N2
223 scope: rdn2
224
225 deprecated:
226 - board/rdn2
227
228 - title: SGI
229 scope: sgi
230
231 deprecated:
232 - plat/sgi
233 - plat/arm/sgi
234
235 - title: TC
236 scope: tc
237
Juan Pablo Conde52487492023-05-15 22:17:17 -0500238 deprecated:
239 - plat/tc
240
Chris Kay82117d72021-12-01 16:34:55 +0000241 subsections:
242 - title: TC0
243 scope: tc0
244
245 deprecated:
246 - plat/tc0
247
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100248 - title: Corstone-1000
249 scope: corstone-1000
250
Chia-Wei Wanga7556d82022-11-02 17:50:21 +0800251 - title: Aspeed
252 scope: aspeed
253
254 subsections:
255 - title: AST2700
256 scope: ast2700
257
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100258 - title: Broadcom
259 scope: brcm
260
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000261 - title: Cadence
262 scope: cadence
263
laurenw-arm7c66fca2022-11-01 14:45:33 -0500264 - title: HiSilicon
265 scope: hisilicon
266
267 subsections:
268 - title: HiKey
269 scope: hikey
270
271 - title: HiKey960
272 scope: hikey960
273
Sieu Mun Tang9f3a13c2022-02-22 14:14:26 +0800274 - title: Intel
275 scope: intel
276
277 subsections:
278 - title: SoC
279 scope: soc
280
Chris Kay82117d72021-12-01 16:34:55 +0000281 - title: Marvell
282 scope: marvell
283
284 deprecated:
285 - plat/marvell
286
287 subsections:
288 - title: Armada
289 scope: armada
290
291 deprecated:
292 - plat/marvell/armada
293
294 subsections:
295 - title: A3K
296 scope: a3k
297
298 deprecated:
299 - plat/marvell/a3k
300
301 - title: A8K
302 scope: a8k
303
304 deprecated:
305 - plat/marvell/a8k
306
307 - title: MediaTek
308 scope: mediatek
309
310 deprecated:
311 - plat/mediatek/common
312 - plat/mediatek
313
314 subsections:
315 - title: MT8183
316 scope: mt8183
317
318 deprecated:
319 - plat/mediatek/mt8183
320
laurenw-arm7c66fca2022-11-01 14:45:33 -0500321 - title: MT8186
322 scope: mt8186
323
324 deprecated:
325 - plat/mediatek/mt8186
326 - mt8186-emi-mpu
327
328 - title: MT8188
329 scope: mt8188
330
Chris Kay82117d72021-12-01 16:34:55 +0000331 - title: MT8192
332 scope: mt8192
333
334 deprecated:
335 - plat/mdeiatek/mt8192
336
337 - title: MT8195
338 scope: mt8195
339
340 deprecated:
341 - plat/mediatek/me8195
342 - plat/mediatek/mt8195
343 - plat/mdeiatek/mt8195
344
345 - title: NVIDIA
346 scope: nvidia
347
348 subsections:
349 - title: Tegra
350 scope: tegra
351
352 deprecated:
353 - plat/tegra
354
355 subsections:
356 - title: Tegra 132
357 scope: tegra132
358
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100359 - title: Tegra 194
360 scope: tegra194
361
Juan Pablo Conde52487492023-05-15 22:17:17 -0500362 - title: Tegra 210
363 scope: tegra210
364
Chris Kay82117d72021-12-01 16:34:55 +0000365 - title: NXP
366 scope: nxp
367
368 deprecated:
369 - plat/nxp
370 - plat/nxp/common
371
372 subsections:
373 - title: i.MX
374 scope: imx
375
376 deprecated:
377 - plat/imx
378 - plat/imx/imx
379
380 subsections:
381 - title: i.MX 8M
382 scope: imx8m
383
384 deprecated:
385 - plat/imx8m
386 - plat/imx/imx8m
387
388 subsections:
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100389 - title: i.MX 8M Nano
390 scope: imx8mn
391
392 deprecated:
393 - plat/imx/imx8m/imx8mn
394
Chris Kay82117d72021-12-01 16:34:55 +0000395 - title: i.MX 8M Mini
396 scope: imx8mm
397
398 deprecated:
399 - plat/imx/imx8m/imx8mm
400
401 - title: i.MX 8M Plus
402 scope: imx8mp
403
404 deprecated:
405 - plat/imx/imx8m/imx8mp
406
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100407 - title: i.MX 8Q
408 scope: imx8mq
409
410 deprecated:
411 - plat/imx/imx8m/imx8mq
412
Juan Pablo Conde52487492023-05-15 22:17:17 -0500413 - title: i.MX 8
414 scope: imx8
415
Jacky Bai9dc47d52023-06-14 15:24:00 +0800416 - title: i.MX 9
417 scope: imx9
418
419 subsections:
420 - title: i.MX93
421 scope: imx93
422
Chris Kay82117d72021-12-01 16:34:55 +0000423 - title: Layerscape
424 scope: layerscape
425
426 deprecated:
427 - docs/nxp/layerscape
428
429 subsections:
430 - title: LS1028A
431 scope: ls1028a
432
433 deprecated:
434 - plat/nxp/ls1028a
435
436 subsections:
437 - title: LS1028ARDB
438 scope: ls1028ardb
439
440 deprecated:
441 - plat/nxp/ls1028ardb
442
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100443 - title: LS1043A
444 scope: ls1043a
445
446 deprecated:
447 - plat/nxp/ls1043a
448
449 subsections:
450 - title: LS1043ARDB
451 scope: ls1043ardb
452
453 deprecated:
454 - plat/nxp/ls1043ardb
455
Chris Kay82117d72021-12-01 16:34:55 +0000456 - title: LX2
457 scope: lx2
458
459 deprecated:
460 - plat/nxp/lx2
461
462 subsections:
463 - title: LX216
464 scope: lx216
465
466 deprecated:
467 - plat/nxp/lx216x
468
469 subsections:
470 - title: LX2160
471 scope: lx2160
472
473 deprecated:
474 - plat/soc-lx2160
475
Jiafei Pan18ba9e42022-02-10 10:39:56 +0800476 - title: LS1046A
477 scope: ls1046a
478
479 subsections:
480 - title: LS1046ARDB
481 scope: ls1046ardb
482
483 - title: LS1046AFRWY
484 scope: ls1046afrwy
485
486 - title: LS1046AQDS
487 scope: ls1046aqds
488
Jiafei Pan290bf6f2022-02-24 16:00:35 +0800489 - title: LS1088A
490 scope: ls1088a
491
492 subsections:
493 - title: LS1088ARDB
494 scope: ls1088ardb
495
496 - title: LS1088AQDS
497 scope: ls1088aqds
498
Chris Kay82117d72021-12-01 16:34:55 +0000499 - title: QEMU
500 scope: qemu
501
502 deprecated:
503 - plat/qemu
504
Juan Pablo Conde52487492023-05-15 22:17:17 -0500505 subsections:
506 - title: SBSA
507 scope: qemu-sbsa
508
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000509 deprecated:
510 - qemu_sbsa
511
Chris Kay82117d72021-12-01 16:34:55 +0000512 - title: QTI
513 scope: qti
514
laurenw-arm7c66fca2022-11-01 14:45:33 -0500515 deprecated:
516 - plat/qti
517
Chris Kay82117d72021-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 Gerholdd0d0bf42021-12-01 20:00:00 +0100531 - title: MSM8916
532 scope: msm8916
533
Chris Kay82117d72021-12-01 16:34:55 +0000534 - title: Raspberry Pi
535 scope: rpi
536
537 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500538 - title: Raspberry Pi 3
539 scope: rpi3
540
Chris Kay82117d72021-12-01 16:34:55 +0000541 - title: Raspberry Pi 4
542 scope: rpi4
543
544 - title: Renesas
545 scope: renesas
546
547 subsections:
548 - title: R-Car
549 scope: rcar
550
551 deprecated:
552 - plat/rcar
553
554 subsections:
555 - title: R-Car 3
556 scope: rcar3
557
558 deprecated:
559 - plat/rcar3
560
561 - title: Rockchip
562 scope: rockchip
563
564 subsections:
565 - title: RK3399
566 scope: rk3399
567
568 deprecated:
569 - rockchip/rk3399
570 - rk3399/suspend
571
572 - title: Socionext
573 scope: socionext
574
575 subsections:
576 - title: Synquacer
577 scope: synquacer
578
579 deprecated:
580 - plat/synquacer
581
582 - title: ST
583 scope: st
584
585 deprecated:
586 - plat/st
587
588 subsections:
Yann Gautier14b32e82022-06-01 18:17:43 +0200589 - title: STM32MP1
Chris Kay82117d72021-12-01 16:34:55 +0000590 scope: stm32mp1
591
592 deprecated:
593 - plat/st/stm32mp1
594
Yann Gautier14b32e82022-06-01 18:17:43 +0200595 subsections:
596 - title: STM32MP13
597 scope: stm32mp13
598
599 - title: STM32MP15
600 scope: stm32mp15
601
Yann Gautier1123f662022-12-16 15:32:25 +0100602 - title: STM32MP2
603 scope: stm32mp2
604
Dave Gerlach74c19f92022-03-22 11:02:52 -0500605 - title: Texas Instruments
606 scope: ti
607
608 subsections:
609 - title: K3
610 scope: k3
611
laurenw-arm7c66fca2022-11-01 14:45:33 -0500612 deprecated:
613 - ti-k3
614
Chris Kay82117d72021-12-01 16:34:55 +0000615 - title: Xilinx
616 scope: xilinx
617
618 deprecated:
619 - plat/xilinx
620
621 subsections:
Michal Simek38d5d4d2023-09-18 10:22:48 +0200622 - title: DCC (Debug Communication Channel)
623 scope: dcc
624
Chris Kay82117d72021-12-01 16:34:55 +0000625 - title: Versal
626 scope: versal
627
628 deprecated:
629 - plat/xilinx/versal/include
630 - plat/xilinx/versal
631 - plat/versal
632
laurenw-arm7c66fca2022-11-01 14:45:33 -0500633 subsections:
634 - title: Versal NET
635 scope: versal-net
636
637 deprecated:
638 - versal_net
639
Chris Kay82117d72021-12-01 16:34:55 +0000640 - title: ZynqMP
641 scope: zynqmp
642
643 deprecated:
644 - plat/zynqmp
645 - plat/xilinx/zynqmp
646
rutigl@gmail.comdefbeed2023-03-19 09:19:05 +0200647 - title: Nuvoton
648 scope: nuvoton
649
650 subsections:
651 - title: npcm845x
652 scope: npcm845x
653
Chris Kay82117d72021-12-01 16:34:55 +0000654 - title: Bootloader Images
655 scope: bl
656
657 deprecated:
658 - bl_common
659
660 subsections:
661 - title: BL1
662 scope: bl1
663
664 - title: BL2
665 scope: bl2
666
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100667 - title: BL31
668 scope: bl31
669
Shruti Guptac31beb62022-08-09 10:46:07 +0100670 - title: BL32
671 scope: bl32
672
673 subsections:
674 - title: TSP
675 scope: tsp
676
Chris Kay82117d72021-12-01 16:34:55 +0000677 - title: Services
678 scope: services
679
680 subsections:
681 - title: FF-A
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000682 scope: ff-a
Chris Kay82117d72021-12-01 16:34:55 +0000683
684 deprecated:
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000685 - ffa
Chris Kay82117d72021-12-01 16:34:55 +0000686
687 - title: RME
688 scope: rme
689
laurenw-arm7c66fca2022-11-01 14:45:33 -0500690 deprecated:
691 - rme/fid
692
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100693 subsections:
694 - title: TRP
695 scope: trp
696
Javier Almansa Sobrino7176a772021-11-24 18:37:37 +0000697 - title: RMMD
698 scope: rmmd
699
Juan Pablo Conde52487492023-05-15 22:17:17 -0500700 - title: RMM
701 scope: rmm
702
Chris Kay82117d72021-12-01 16:34:55 +0000703 - title: SPM
704 scope: spm
705
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100706 subsections:
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000707 - title: EL3 SPM
708 scope: el3-spm
709
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100710 - title: EL3 SPMC
711 scope: el3-spmc
712
laurenw-arm7c66fca2022-11-01 14:45:33 -0500713 deprecated:
714 - spmc
715
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100716 - title: SPMD
717 scope: spmd
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000718
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100719 - title: SPM MM
720 scope: spm-mm
Chris Kay82117d72021-12-01 16:34:55 +0000721
Manish V Badarkhe478d3ee2022-06-27 09:21:14 +0100722 - title: DRTM
723 scope: drtm
724
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +0100725 - title: TRNG
726 scope: trng
727
Sona Mathew5100bec2023-09-20 12:55:32 -0500728 - title: ERRATA ABI
729 scope: errata-abi
730
731 deprecated:
732 - errata_abi
Sona Mathew7fe03522022-11-18 18:05:38 -0600733
Chris Kay82117d72021-12-01 16:34:55 +0000734 - title: Libraries
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +0000735 scope: lib
Chris Kay82117d72021-12-01 16:34:55 +0000736
737 subsections:
738 - title: CPU Support
739 scope: cpus
740
741 deprecated:
742 - cpu
743 - errata
744 - errata_report
745
746 - title: EL3 Runtime
747 scope: el3-runtime
748
749 deprecated:
750 - el3_runtime
751
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100752 subsections:
753 - title: Context Management
754 scope: cm
755
laurenw-arm7c66fca2022-11-01 14:45:33 -0500756 - title: RAS
757 scope: ras
758
Chris Kay82117d72021-12-01 16:34:55 +0000759 - title: FCONF
760 scope: fconf
761
762 - title: MPMM
763 scope: mpmm
764
765 - title: OP-TEE
766 scope: optee
767
768 deprecated:
769 - lib/optee
770
771 - title: PSCI
772 scope: psci
773
774 - title: GPT
775 scope: gpt
776
777 deprecated:
778 - gpt_rme
779
780 - title: SMCCC
781 scope: smccc
782
783 - title: Translation Tables
784 scope: xlat
785
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100786 - title: C Standard Library
787 scope: libc
788
789 - title: Locks
790 scope: locks
791
792 - title: PSA
793 scope: psa
794
laurenw-arm7c66fca2022-11-01 14:45:33 -0500795 deprecated:
796 - lib/psa
797
Zelalem Aweke5362beb2022-04-04 17:42:48 -0500798 - title: Context Management
Chris Kaye76be0a2022-10-10 16:57:45 +0100799 scope: context-mgmt
800
801 deprecated:
802 - context mgmt
Zelalem Aweke5362beb2022-04-04 17:42:48 -0500803
Manish V Badarkhede920262022-09-26 15:06:56 +0100804 - title: Semihosting
805 scope: semihosting
806
Raymond Mao98983392023-07-25 07:53:35 -0700807 - title: Firmware Handoff
808 scope: handoff
809
Chris Kay82117d72021-12-01 16:34:55 +0000810 - title: Drivers
811
812 subsections:
813 - title: Authentication
814 scope: auth
815
816 deprecated:
817 - driver/auth
818
819 subsections:
820 - title: CryptoCell-713
821 scope: cc-713
822
Manish V Badarkhe8d91e982022-09-22 21:41:55 +0100823 - title: Crypto
824 scope: crypto
825
826 - title: mbedTLS
827 scope: mbedtls
828
Manish V Badarkhe538d5922023-09-22 17:54:59 +0100829 - title: mbedTLS-PSA
830 scope: mbedtls-psa
831
Yann Gautier1832d662023-01-06 17:05:48 +0100832 - title: Console
833 scope: console
834
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100835 - title: Generic Clock
836 scope: clk
837
Chris Kay82117d72021-12-01 16:34:55 +0000838 - title: FWU
839 scope: fwu
840
841 deprecated:
842 - fwu_metadata
843
844 - title: I/O
845 scope: io
846
847 subsections:
848 - title: MTD
849 scope: mtd
850
851 deprecated:
852 - io_mtd
853
854 - title: Measured Boot
855 scope: measured-boot
856
857 deprecated:
858 - measured boot
859 - measured_boot
860
861 - title: MMC
862 scope: mmc
863
864 deprecated:
865 - drivers/mmc
866
867 - title: MTD
868 scope: mtd
869
870 deprecated:
871 - drivers/mtd
872
873 subsections:
874 - title: NAND
875 scope: nand
876
877 subsections:
878 - title: SPI NAND
879 scope: spi-nand
880
881 deprecated:
882 - spi_nand
883
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100884 - title: GUID Partition Tables Support
885 scope: guid-partition
Sughosh Ganu540e0322022-01-19 11:31:20 +0530886
Juan Pablo Conde52487492023-05-15 22:17:17 -0500887 deprecated:
888 - partition
889
Chris Kay82117d72021-12-01 16:34:55 +0000890 - title: SCMI
891 scope: scmi
892
893 deprecated:
894 - scmi_common
895 - drivers/scmi-msg
laurenw-arm7c66fca2022-11-01 14:45:33 -0500896 - scmi-msg
Chris Kay82117d72021-12-01 16:34:55 +0000897
898 - title: UFS
899 scope: ufs
900
901 - title: Arm
902 scope: arm-drivers
903
904 subsections:
905 - title: Ethos-N
906 scope: ethos-n
907
908 deprecated:
909 - drivers/arm/ethosn
910
911 - title: GIC
912 scope: gic
913
914 subsections:
915 - title: GICv3
916 scope: gicv3
917
laurenw-arm7c66fca2022-11-01 14:45:33 -0500918 deprecated:
919 - gicv3/multichip
920
Chris Kay82117d72021-12-01 16:34:55 +0000921 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500922 - title: GIC-600
923 scope: gic600
924
Chris Kay82117d72021-12-01 16:34:55 +0000925 - title: GIC-600AE
926 scope: gic600ae
927
Madhukar Pappireddydc4b8c62023-08-03 12:13:27 -0500928 - title: GICv2
929 scope: gicv2
930
Manish V Badarkhebcaeb672022-03-24 18:23:37 +0000931 - title: SMMU
932 scope: smmu
933
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100934 - title: MHU
935 scope: mhu
936
937 deprecated:
938 - drivers/arm/mhu
939
940 - title: RSS
941 scope: rss
942
943 deprecated:
944 - drivers/arm/rss
945
Chris Kay82117d72021-12-01 16:34:55 +0000946 - title: TZC
947 scope: tzc
948
949 subsections:
950 - title: TZC-400
951 scope: tzc400
952
953 deprecated:
954 - drivers/tzc400
955
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100956 - title: TZC-380
957 scope: tzc380
958
959 deprecated:
960 - drivers/tzc380
961
Madhukar Pappireddy4c3de562023-03-22 15:27:22 -0500962 - title: SBSA
963 scope: sbsa
964
Chris Kay82117d72021-12-01 16:34:55 +0000965 - title: Marvell
966 scope: marvell-drivers
967
968 subsections:
969 - title: COMPHY
970 scope: marvell-comphy
971
972 deprecated:
973 - drivers/marvell/comphy
974
975 subsections:
976 - title: Armada 3700
977 scope: marvell-comphy-3700
978
979 deprecated:
980 - drivers/marvell/comphy-3700
981
982 - title: CP110
983 scope: marvell-comphy-cp110
984
985 deprecated:
986 - drivers/marvell/comphy-cp110
987
988 - title: UART
989 scope: marvell-uart
990
991 deprecated:
992 - plat/marvell/uart
993
994 - title: Armada
995 scope: armada-drivers
996
997 subsections:
998 - title: A3K
999 scope: a3k-drivers
1000
1001 subsections:
1002 - title: A3720
1003 scope: a3720-uart
1004
1005 deprecated:
1006 - plat/marvell/a3720/uart
1007
1008 - title: MediaTek
1009 scope: mediatek-drivers
1010
1011 subsections:
1012 - title: APU
1013 scope: mediatek-apu
1014
1015 deprecated:
1016 - plat/mediatek/apu
1017
1018 - title: EMI MPU
1019 scope: mediatek-emi-mpu
1020
1021 deprecated:
1022 - plat/mediatek/mpu
1023
1024 - title: PMIC Wrapper
1025 scope: mediatek-pmic-wrapper
1026
1027 deprecated:
1028 - plat/mediatek/pmic_wrap
1029
1030 - title: MT8192
1031 scope: mt8192-drivers
1032
1033 subsections:
1034 - title: SPM
1035 scope: mt8192-spm
1036
1037 deprecated:
1038 - mediatek/mt8192/spm
1039
1040 - title: NXP
1041 scope: nxp-drivers
1042
1043 subsections:
1044 - title: DCFG
1045 scope: nxp-dcfg
1046
1047 deprecated:
1048 - driver/nxp/dcfg
1049
1050 - title: FLEXSPI
1051 scope: flexspi
1052
1053 deprecated:
1054 - include/drivers/flexspi
1055 - driver/nxp/xspi
1056
1057 - title: SCFG
1058 scope: nxp-scfg
1059
1060 deprecated:
1061 - nxp/scfg
1062
1063 - title: SFP
1064 scope: nxp-sfp
1065
1066 deprecated:
1067 - drivers/nxp/sfp
1068
Jiafei Pan18ba9e42022-02-10 10:39:56 +08001069 - title: QSPI
1070 scope: nxp-qspi
1071
Jiafei Pan94450412022-02-18 12:02:04 +08001072 - title: NXP Crypto
1073 scope: nxp-crypto
1074
Jiafei Panfa3f7612022-02-22 11:05:00 +08001075 - title: DDR
1076 scope: nxp-ddr
1077
1078 - title: GIC
1079 scope: nxp-gic
1080
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001081 - title: CSU
1082 scope: nxp-csu
1083
1084 - title: IFC NAND
1085 scope: nxp-ifc-nand
1086
1087 - title: IFC NOR
1088 scope: nxp-ifc-nor
1089
1090 - title: TZC-380
1091 scope: nxp-tzc380
1092
Jacky Bai9dc47d52023-06-14 15:24:00 +08001093 - title: TRDC
1094 scope: imx-trdc
1095
Chris Kay82117d72021-12-01 16:34:55 +00001096 - title: Renesas
1097 scope: renesas-drivers
1098
1099 subsections:
1100 - title: R-Car3
1101 scope: rcar3-drivers
1102
1103 deprecated:
1104 - drivers/rcar3
1105
1106 - title: ST
1107 scope: st-drivers
1108
1109 deprecated:
1110 - drivers/st
1111
1112 subsections:
Yann Gautier9f359fd2022-01-27 09:25:47 +01001113 - title: BSEC
1114 scope: st-bsec
1115
Chris Kay82117d72021-12-01 16:34:55 +00001116 - title: Clock
1117 scope: st-clock
1118
1119 deprecated:
1120 - stm32mp_clk
1121 - drivers/st/clk
1122 - stm32mp1_clk
1123
Yann Gautier9f359fd2022-01-27 09:25:47 +01001124 - title: Crypto
1125 scope: st-crypto
1126
1127 - title: DDR
1128 scope: st-ddr
1129
Chris Kay82117d72021-12-01 16:34:55 +00001130 - title: I/O
1131 scope: st-io-drivers
1132
1133 subsections:
1134 - title: STM32 Image
1135 scope: st-io-stm32image
1136
1137 deprecated:
1138 - io-stm32image
1139 - io_stm32image
1140
Yann Gautier9f359fd2022-01-27 09:25:47 +01001141 - title: I2C
1142 scope: st-i2c
1143
1144 - title: FMC
1145 scope: st-fmc
1146
1147 - title: GPIO
1148 scope: st-gpio
1149
Chris Kay82117d72021-12-01 16:34:55 +00001150 - title: SDMMC2
1151 scope: st-sdmmc2
1152
1153 deprecated:
1154 - stm32_sdmmc2
1155
1156 - title: ST PMIC
1157 scope: st-pmic
1158
1159 deprecated:
1160 - drivers/st/pmic
1161
1162 - title: STPMIC1
1163 scope: stpmic1
1164
Yann Gautier9f359fd2022-01-27 09:25:47 +01001165 - title: Regulator
1166 scope: st-regulator
1167
1168 - title: Reset
1169 scope: st-reset
1170
1171 - title: SPI
1172 scope: st-spi
1173
Chris Kay82117d72021-12-01 16:34:55 +00001174 - title: UART
1175 scope: st-uart
1176
1177 subsections:
1178 - title: STM32 Console
1179 scope: stm32-console
1180
1181 deprecated:
1182 - stm32_console
1183
1184 - title: USB
1185 scope: st-usb
1186
1187 deprecated:
1188 - drivers/st/usb
1189
Yann Gautier9f359fd2022-01-27 09:25:47 +01001190 - title: Watchdog
1191 scope: st-iwdg
1192
Chris Kay82117d72021-12-01 16:34:55 +00001193 - title: USB
1194 scope: usb
1195
1196 deprecated:
1197 - drivers/usb
1198
1199 - title: Miscellaneous
1200
1201 subsections:
1202 - title: AArch64
1203 scope: aarch64
1204
1205 - title: Debug
1206 scope: debug
1207
1208 deprecated:
1209 - common/debug
1210
1211 - title: CRC32
1212 scope: crc32
1213
1214 subsections:
1215 - title: Hardware CRC32
1216 scope: hw-crc32
1217
1218 deprecated:
1219 - hw_crc
1220 - hw_crc32
1221
1222 - title: Software CRC32
1223 scope: sw-crc32
1224
1225 deprecated:
1226 - sw_crc32
1227
1228 - title: DT Bindings
1229 scope: dt-bindings
1230
1231 - title: FDT Wrappers
1232 scope: fdt-wrappers
1233
1234 - title: FDTs
1235 scope: fdts
1236
1237 deprecated:
1238 - fdt
1239
1240 subsections:
1241 - title: Morello
1242 scope: morello-fdts
1243
1244 deprecated:
1245 - fdts/morello
1246
1247 - title: STM32MP1
1248 scope: stm32mp1-fdts
1249
1250 deprecated:
1251 - fdts stm32mp1
1252
Yann Gautier2c962252022-07-08 15:55:14 +02001253 subsections:
1254 - title: STM32MP13
1255 scope: stm32mp13-fdts
1256
1257 - title: STM32MP15
1258 scope: stm32mp15-fdts
1259
Yann Gautier1123f662022-12-16 15:32:25 +01001260 - title: STM32MP2
1261 scope: stm32mp2-fdts
1262
Chris Kay82117d72021-12-01 16:34:55 +00001263 - title: PIE
1264 scope: pie
1265
Juan Pablo Conde52487492023-05-15 22:17:17 -05001266 - title: PIE/POR
1267 scope: pie/por
1268
Chris Kay82117d72021-12-01 16:34:55 +00001269 - title: Security
1270 scope: security
1271
1272 - title: SDEI
1273 scope: sdei
1274
1275 - title: TBBR
1276 scope: tbbr
1277
1278 - title: NXP
1279
1280 subsections:
1281 - title: OCRAM
1282 scope: nxp-ocram
1283
1284 deprecated:
1285 - nxp/common/ocram
1286
1287 - title: PSCI
1288 scope: nxp-psci
1289
1290 deprecated:
1291 - plat/nxp/common/psci
1292
Chris Kayd04a4762023-04-13 17:24:20 +01001293 - title: UUID
1294 scope: uuid
1295
Chris Kay82117d72021-12-01 16:34:55 +00001296 - title: Documentation
1297 scope: docs
1298
1299 deprecated:
1300 - doc
1301
1302 subsections:
1303 - title: Changelog
1304 scope: changelog
1305
1306 - title: Commit Style
1307 scope: commit-style
1308
1309 - title: Contribution Guidelines
1310 scope: contributing
1311
1312 deprecated:
1313 - contribution-guidelines
1314 - docs-contributing.rst
1315
1316 - title: Maintainers
1317 scope: maintainers
1318
1319 - title: Prerequisites
1320 scope: prerequisites
1321
Sandrine Bailleux3c8fdf72022-05-10 14:53:44 +02001322 - title: Threat Model
1323 scope: threat-model
1324
Sandrine Bailleuxe67bb122023-02-08 13:58:25 +01001325 - title: Porting Guide
1326 scope: porting
1327
Chris Kay82117d72021-12-01 16:34:55 +00001328 - title: Build System
1329 scope: build
1330
1331 deprecated:
1332 - makefile
1333 - Makefile
1334
1335 subsections:
1336 - title: Git Hooks
1337 scope: hooks
1338
Juan Pablo Conde52487492023-05-15 22:17:17 -05001339 deprecated:
1340 - git-hooks
1341
Chris Kay82117d72021-12-01 16:34:55 +00001342 - title: Tools
1343
1344 subsections:
1345 - title: STM32 Image
1346 scope: stm32image
1347
1348 deprecated:
1349 - tools/stm32image
1350
Jiafei Pan18ba9e42022-02-10 10:39:56 +08001351 - title: NXP Tools
1352 scope: nxp-tools
1353
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001354 - title: Firmware Image Package Tool
1355 scope: fiptool
1356
1357 - title: Secure Partition Tool
1358 scope: sptool
1359
1360 - title: Certificate Creation Tool
1361 scope: cert-create
1362
Harrison Mutai372b8802023-02-23 11:30:17 +00001363 - title: Memory Mapping Tool
1364 scope: memmap
1365
laurenw-arm7c66fca2022-11-01 14:45:33 -05001366 deprecated:
1367 - cert_create
1368
Chris Kay82117d72021-12-01 16:34:55 +00001369 - title: Dependencies
1370 scope: deps
1371
1372 subsections:
1373 - title: checkpatch
1374 scope: checkpatch
1375
1376 - title: commitlint
1377 scope: commitlint
1378
Daniel Boulbyc550e702022-10-05 11:03:44 +01001379 - title: Compiler runtime libraries
1380 scope: compiler-rt
1381
Chris Kay82117d72021-12-01 16:34:55 +00001382 - title: libfdt
1383 scope: libfdt
1384
1385 - title: Node Package Manager (NPM)
1386 scope: npm
Daniel Boulbyc550e702022-10-05 11:03:44 +01001387
dependabot[bot]dba1b532023-09-06 09:55:17 +00001388 - title: Poetry
1389 scope: poetry
1390
Daniel Boulbyc550e702022-10-05 11:03:44 +01001391 - title: zlib
1392 scope: zlib