blob: 20417b15a8c7c512362a478b0e7bb9964f772038 [file] [log] [blame]
Chris Kayf64c5582021-12-01 16:34:55 +00001#
Yann Gautier3c788292023-01-06 17:05:48 +01002# Copyright (c) 2021-2023, 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
Chris Kayf64c5582021-12-01 16:34:55 +000027
28 - title: Continuous Integration
29 description: Changes to our CI configuration files and scripts
30 type: ci
Chris Kayf64c5582021-12-01 16:34:55 +000031
Chris Kay833b4ff2022-09-29 16:42:23 +010032 - title: Documentation
Chris Kayf64c5582021-12-01 16:34:55 +000033 description: Documentation-only changes
34 type: docs
Chris Kayf64c5582021-12-01 16:34:55 +000035
36 - title: Performance Improvements
37 description: A code change that improves performance
38 type: perf
Chris Kayf64c5582021-12-01 16:34:55 +000039
40 - title: Code Refactoring
41 description: A code change that neither fixes a bug nor adds a feature
42 type: refactor
Chris Kayf64c5582021-12-01 16:34:55 +000043
44 - title: Reverted Changes
45 description: Changes that revert a previous change
46 type: revert
Chris Kayf64c5582021-12-01 16:34:55 +000047
48 - title: Style
49 description: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc.)
50 type: style
Chris Kayf64c5582021-12-01 16:34:55 +000051
52 - title: Tests
53 description: Adding missing tests or correcting existing tests
54 type: test
Chris Kayf64c5582021-12-01 16:34:55 +000055
56 - title: Miscellaneous
57 description: Any other change
58 type: chore
Chris Kayf64c5582021-12-01 16:34:55 +000059
60#
61# The following block describes the sub-sections of the changelog. These sub-sections may appear in
62# any of the top-level sections, and describe the individual components that a change may relate to.
63#
64# Sub-sections have an optional associated commit message "scope":
65#
66# feat(xyz): add the xyz feature
67# ^^^
68#
69# This file also describes deprecated scopes, which are scopes that were used before we introduced
70# scope enforcement. These will not pass CI checks when used, but they will be used to generate the
71# changelog.
72#
73# Please note that new scopes should be kebab-case: https://en.wiktionary.org/wiki/kebab_case
74#
75
76subsections:
77 - title: Architecture
78
79 subsections:
80 - title: Activity Monitors Extension (FEAT_AMU)
81 scope: amu
82
laurenw-arm21cd0662022-11-01 14:45:33 -050083 - title: Branch Record Buffer Extension (FEAT_BRBE)
84 scope: brbe
85
86 - title: Branch Target Identification Extension
87 scope: bti
88
laurenw-arm55ae7712022-06-01 13:45:39 -050089 - title: Confidential Compute Architecture (CCA)
90 scope: cca
91
laurenw-arm21cd0662022-11-01 14:45:33 -050092 - title: Extended Cache Index (FEAT_CCIDX)
93 scope: ccidx
94
Mark Browna3666402023-04-17 17:51:30 +010095 - title: Extended Translation Control Register (FEAT_TCR2).
96 scope: tcr2
97
Andre Przywara69c17f52022-11-14 15:38:58 +000098 - title: CPU feature / ID register handling in general
99 scope: cpufeat
100
Mark Brown688ab572023-03-14 21:33:04 +0000101 - title: Guarded Control Stack (FEAT_GCS)
102 scope: gcs
103
Chris Kayf64c5582021-12-01 16:34:55 +0000104 - title: Support for the `HCRX_EL2` register (FEAT_HCX)
105 scope: hcx
106
107 - title: Memory Partitioning and Monitoring (MPAM) Extension (FEAT_MPAM)
108 scope: mpam
109
laurenw-arm21cd0662022-11-01 14:45:33 -0500110 - title: Memory Tagging Extension
111 scope: mte
112
113 - title: Pointer Authentication Extension
114 scope: pauth
115
116 - title: Performance Monitors Extension (FEAT_PMUv3)
117 scope: pmu
118
119 - title: Trapping support for RNDR/RNDRRS (FEAT_RNG_TRAP)
120 scope: rng-trap
121
Jayanth Dodderi Chidanand03d3c0d2022-11-08 10:31:07 +0000122 - title: Scalable Matrix Extension (FEAT_SME, FEAT_SME2)
Chris Kayf64c5582021-12-01 16:34:55 +0000123 scope: sme
124
laurenw-arm21cd0662022-11-01 14:45:33 -0500125 - title: Statistical profiling Extension (FEAT_SPE)
126 scope: spe
127
Chris Kayf64c5582021-12-01 16:34:55 +0000128 - title: Scalable Vector Extension (FEAT_SVE)
129 scope: sve
130
131 - title: System Register Trace Extensions (FEAT_ETMv4, FEAT_ETE and FEAT_ETEv1.1)
132 scope: sys-reg-trace
133
134 deprecated:
135 - sys_reg_trace
136
137 - title: Trace Buffer Extension (FEAT_TRBE)
138 scope: trbe
139
140 - title: Self-hosted Trace Extensions (FEAT_TRF)
141 scope: trf
142
143 - title: Platforms
Manish V Badarkhe98735802023-11-21 14:35:13 +0000144 scope: platforms
145
146 deprecated:
147 - plat/common
Chris Kayf64c5582021-12-01 16:34:55 +0000148
149 subsections:
150 - title: Allwinner
151 scope: allwinner
152
153 deprecated:
154 - plat/allwinner
155
156 - title: Arm
157 scope: arm
158
159 deprecated:
160 - plat/arm
161
162 subsections:
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500163 - title: A5DS
164 scope: a5ds
165
laurenw-arm21cd0662022-11-01 14:45:33 -0500166 - title: CSS
167 scope: css
168
169 deprecated:
170 - plat/arm/css
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500171 - plat/css
laurenw-arm21cd0662022-11-01 14:45:33 -0500172
Chris Kayf64c5582021-12-01 16:34:55 +0000173 - title: FPGA
174 scope: fpga
175
176 deprecated:
177 - arm_fgpa
Chris Kayf64c5582021-12-01 16:34:55 +0000178 - plat/arm_fpga
Manish V Badarkhe98735802023-11-21 14:35:13 +0000179 - arm/fpga
Chris Kayf64c5582021-12-01 16:34:55 +0000180
181 - title: FVP
182 scope: fvp
183
184 deprecated:
185 - plat/fvp
laurenw-arm21cd0662022-11-01 14:45:33 -0500186 - fvp/tsp_manifest
Chris Kayf64c5582021-12-01 16:34:55 +0000187
188 - title: FVP-R
189 scope: fvp-r
190
191 deprecated:
192 - fvp_r
193
laurenw-arm21cd0662022-11-01 14:45:33 -0500194 - title: FVP Versatile Express
195 scope: fvp_ve
196
Chris Kayf64c5582021-12-01 16:34:55 +0000197 - title: Juno
198 scope: juno
199
200 - title: Morello
201 scope: morello
202
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100203 - title: N1SDP
204 scope: n1sdp
205
Chris Kayf64c5582021-12-01 16:34:55 +0000206 - title: RD
207 scope: rd
208
209 subsections:
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500210 - title: RD-N1 Edge
211 scope: rdn1edge
212
Chris Kayf64c5582021-12-01 16:34:55 +0000213 - title: RD-N2
214 scope: rdn2
215
216 deprecated:
217 - board/rdn2
218
219 - title: SGI
220 scope: sgi
221
222 deprecated:
223 - plat/sgi
224 - plat/arm/sgi
225
226 - title: TC
227 scope: tc
228
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500229 deprecated:
230 - plat/tc
231
Chris Kayf64c5582021-12-01 16:34:55 +0000232 subsections:
233 - title: TC0
234 scope: tc0
235
236 deprecated:
237 - plat/tc0
238
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100239 - title: Corstone-1000
240 scope: corstone-1000
241
Chia-Wei Wang85f199b2022-11-02 17:50:21 +0800242 - title: Aspeed
243 scope: aspeed
244
245 subsections:
246 - title: AST2700
247 scope: ast2700
248
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100249 - title: Broadcom
250 scope: brcm
251
Manish V Badarkhe98735802023-11-21 14:35:13 +0000252 - title: Cadence
253 scope: cadence
254
laurenw-arm21cd0662022-11-01 14:45:33 -0500255 - title: HiSilicon
256 scope: hisilicon
257
258 subsections:
259 - title: HiKey
260 scope: hikey
261
262 - title: HiKey960
263 scope: hikey960
264
Sieu Mun Tange5641372022-02-22 14:14:26 +0800265 - title: Intel
266 scope: intel
267
268 subsections:
269 - title: SoC
270 scope: soc
271
Chris Kayf64c5582021-12-01 16:34:55 +0000272 - title: Marvell
273 scope: marvell
274
275 deprecated:
276 - plat/marvell
277
278 subsections:
279 - title: Armada
280 scope: armada
281
282 deprecated:
283 - plat/marvell/armada
284
285 subsections:
286 - title: A3K
287 scope: a3k
288
289 deprecated:
290 - plat/marvell/a3k
291
292 - title: A8K
293 scope: a8k
294
295 deprecated:
296 - plat/marvell/a8k
297
298 - title: MediaTek
299 scope: mediatek
300
301 deprecated:
302 - plat/mediatek/common
303 - plat/mediatek
304
305 subsections:
306 - title: MT8183
307 scope: mt8183
308
309 deprecated:
310 - plat/mediatek/mt8183
311
laurenw-arm21cd0662022-11-01 14:45:33 -0500312 - title: MT8186
313 scope: mt8186
314
315 deprecated:
316 - plat/mediatek/mt8186
317 - mt8186-emi-mpu
318
319 - title: MT8188
320 scope: mt8188
321
Chris Kayf64c5582021-12-01 16:34:55 +0000322 - title: MT8192
323 scope: mt8192
324
325 deprecated:
326 - plat/mdeiatek/mt8192
327
328 - title: MT8195
329 scope: mt8195
330
331 deprecated:
332 - plat/mediatek/me8195
333 - plat/mediatek/mt8195
334 - plat/mdeiatek/mt8195
335
336 - title: NVIDIA
337 scope: nvidia
338
339 subsections:
340 - title: Tegra
341 scope: tegra
342
343 deprecated:
344 - plat/tegra
345
346 subsections:
347 - title: Tegra 132
348 scope: tegra132
349
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100350 - title: Tegra 194
351 scope: tegra194
352
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500353 - title: Tegra 210
354 scope: tegra210
355
Chris Kayf64c5582021-12-01 16:34:55 +0000356 - title: NXP
357 scope: nxp
358
359 deprecated:
360 - plat/nxp
361 - plat/nxp/common
362
363 subsections:
364 - title: i.MX
365 scope: imx
366
367 deprecated:
368 - plat/imx
369 - plat/imx/imx
370
371 subsections:
372 - title: i.MX 8M
373 scope: imx8m
374
375 deprecated:
376 - plat/imx8m
377 - plat/imx/imx8m
378
379 subsections:
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100380 - title: i.MX 8M Nano
381 scope: imx8mn
382
383 deprecated:
384 - plat/imx/imx8m/imx8mn
385
Chris Kayf64c5582021-12-01 16:34:55 +0000386 - title: i.MX 8M Mini
387 scope: imx8mm
388
389 deprecated:
390 - plat/imx/imx8m/imx8mm
391
392 - title: i.MX 8M Plus
393 scope: imx8mp
394
395 deprecated:
396 - plat/imx/imx8m/imx8mp
397
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100398 - title: i.MX 8Q
399 scope: imx8mq
400
401 deprecated:
402 - plat/imx/imx8m/imx8mq
403
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500404 - title: i.MX 8
405 scope: imx8
406
Jacky Bai9f38eb82023-06-14 15:24:00 +0800407 - title: i.MX 9
408 scope: imx9
409
410 subsections:
411 - title: i.MX93
412 scope: imx93
413
Chris Kayf64c5582021-12-01 16:34:55 +0000414 - title: Layerscape
415 scope: layerscape
416
417 deprecated:
418 - docs/nxp/layerscape
419
420 subsections:
421 - title: LS1028A
422 scope: ls1028a
423
424 deprecated:
425 - plat/nxp/ls1028a
426
427 subsections:
428 - title: LS1028ARDB
429 scope: ls1028ardb
430
431 deprecated:
432 - plat/nxp/ls1028ardb
433
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100434 - title: LS1043A
435 scope: ls1043a
436
437 deprecated:
438 - plat/nxp/ls1043a
439
440 subsections:
441 - title: LS1043ARDB
442 scope: ls1043ardb
443
444 deprecated:
445 - plat/nxp/ls1043ardb
446
Chris Kayf64c5582021-12-01 16:34:55 +0000447 - title: LX2
448 scope: lx2
449
450 deprecated:
451 - plat/nxp/lx2
452
453 subsections:
454 - title: LX216
455 scope: lx216
456
457 deprecated:
458 - plat/nxp/lx216x
459
460 subsections:
461 - title: LX2160
462 scope: lx2160
463
464 deprecated:
465 - plat/soc-lx2160
466
Jiafei Pan1acfb982022-02-10 10:39:56 +0800467 - title: LS1046A
468 scope: ls1046a
469
470 subsections:
471 - title: LS1046ARDB
472 scope: ls1046ardb
473
474 - title: LS1046AFRWY
475 scope: ls1046afrwy
476
477 - title: LS1046AQDS
478 scope: ls1046aqds
479
Jiafei Panccb71e32022-02-24 16:00:35 +0800480 - title: LS1088A
481 scope: ls1088a
482
483 subsections:
484 - title: LS1088ARDB
485 scope: ls1088ardb
486
487 - title: LS1088AQDS
488 scope: ls1088aqds
489
Chris Kayf64c5582021-12-01 16:34:55 +0000490 - title: QEMU
491 scope: qemu
492
493 deprecated:
494 - plat/qemu
495
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500496 subsections:
497 - title: SBSA
498 scope: qemu-sbsa
499
Manish V Badarkhe98735802023-11-21 14:35:13 +0000500 deprecated:
501 - qemu_sbsa
502
Chris Kayf64c5582021-12-01 16:34:55 +0000503 - title: QTI
504 scope: qti
505
laurenw-arm21cd0662022-11-01 14:45:33 -0500506 deprecated:
507 - plat/qti
508
Chris Kayf64c5582021-12-01 16:34:55 +0000509 subsections:
510 - title: SC1780
511 scope: sc7180
512
513 deprecated:
514 - plat/qti/sc7180
515
516 - title: SC7280
517 scope: sc7280
518
519 deprecated:
520 - plat/qti/sc7280
521
Stephan Gerholdfa145392021-12-01 20:00:00 +0100522 - title: MSM8916
523 scope: msm8916
524
Chris Kayf64c5582021-12-01 16:34:55 +0000525 - title: Raspberry Pi
526 scope: rpi
527
528 subsections:
laurenw-arm21cd0662022-11-01 14:45:33 -0500529 - title: Raspberry Pi 3
530 scope: rpi3
531
Chris Kayf64c5582021-12-01 16:34:55 +0000532 - title: Raspberry Pi 4
533 scope: rpi4
534
535 - title: Renesas
536 scope: renesas
537
538 subsections:
539 - title: R-Car
540 scope: rcar
541
542 deprecated:
543 - plat/rcar
544
545 subsections:
546 - title: R-Car 3
547 scope: rcar3
548
549 deprecated:
550 - plat/rcar3
551
552 - title: Rockchip
553 scope: rockchip
554
555 subsections:
556 - title: RK3399
557 scope: rk3399
558
559 deprecated:
560 - rockchip/rk3399
561 - rk3399/suspend
562
Diederik de Haasb7591e12023-11-27 10:21:37 +0100563 - title: RK3328
564 scope: rk3328
565
Chris Kayf64c5582021-12-01 16:34:55 +0000566 - title: Socionext
567 scope: socionext
568
569 subsections:
570 - title: Synquacer
571 scope: synquacer
572
573 deprecated:
574 - plat/synquacer
575
576 - title: ST
577 scope: st
578
579 deprecated:
580 - plat/st
581
582 subsections:
Yann Gautier96f58612022-06-01 18:17:43 +0200583 - title: STM32MP1
Chris Kayf64c5582021-12-01 16:34:55 +0000584 scope: stm32mp1
585
586 deprecated:
587 - plat/st/stm32mp1
588
Yann Gautier96f58612022-06-01 18:17:43 +0200589 subsections:
590 - title: STM32MP13
591 scope: stm32mp13
592
593 - title: STM32MP15
594 scope: stm32mp15
595
Yann Gautier3f6c16f2022-12-16 15:32:25 +0100596 - title: STM32MP2
597 scope: stm32mp2
598
Dave Gerlach8ba55ec2022-03-22 11:02:52 -0500599 - title: Texas Instruments
600 scope: ti
601
602 subsections:
603 - title: K3
604 scope: k3
605
laurenw-arm21cd0662022-11-01 14:45:33 -0500606 deprecated:
607 - ti-k3
608
Chris Kayf64c5582021-12-01 16:34:55 +0000609 - title: Xilinx
610 scope: xilinx
611
612 deprecated:
613 - plat/xilinx
614
615 subsections:
Michal Simeke311b9b2023-09-18 10:22:48 +0200616 - title: DCC (Debug Communication Channel)
617 scope: dcc
618
Chris Kayf64c5582021-12-01 16:34:55 +0000619 - title: Versal
620 scope: versal
621
622 deprecated:
623 - plat/xilinx/versal/include
624 - plat/xilinx/versal
625 - plat/versal
626
laurenw-arm21cd0662022-11-01 14:45:33 -0500627 subsections:
628 - title: Versal NET
629 scope: versal-net
630
631 deprecated:
632 - versal_net
633
Chris Kayf64c5582021-12-01 16:34:55 +0000634 - title: ZynqMP
635 scope: zynqmp
636
637 deprecated:
638 - plat/zynqmp
639 - plat/xilinx/zynqmp
640
rutigl@gmail.comedcece12023-03-19 09:19:05 +0200641 - title: Nuvoton
642 scope: nuvoton
643
644 subsections:
645 - title: npcm845x
646 scope: npcm845x
647
Chris Kayf64c5582021-12-01 16:34:55 +0000648 - title: Bootloader Images
649 scope: bl
650
651 deprecated:
652 - bl_common
653
654 subsections:
655 - title: BL1
656 scope: bl1
657
658 - title: BL2
659 scope: bl2
660
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100661 - title: BL31
662 scope: bl31
663
Shruti Gupta5b7bd2a2022-08-09 10:46:07 +0100664 - title: BL32
665 scope: bl32
666
667 subsections:
668 - title: TSP
669 scope: tsp
670
Chris Kayf64c5582021-12-01 16:34:55 +0000671 - title: Services
672 scope: services
673
674 subsections:
675 - title: FF-A
Daniel Boulby93a8ce02021-12-06 14:44:35 +0000676 scope: ff-a
Chris Kayf64c5582021-12-01 16:34:55 +0000677
678 deprecated:
Daniel Boulby93a8ce02021-12-06 14:44:35 +0000679 - ffa
Chris Kayf64c5582021-12-01 16:34:55 +0000680
681 - title: RME
682 scope: rme
683
laurenw-arm21cd0662022-11-01 14:45:33 -0500684 deprecated:
685 - rme/fid
686
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100687 subsections:
688 - title: TRP
689 scope: trp
690
Javier Almansa Sobrino8c980a42021-11-24 18:37:37 +0000691 - title: RMMD
692 scope: rmmd
693
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500694 - title: RMM
695 scope: rmm
696
Chris Kayf64c5582021-12-01 16:34:55 +0000697 - title: SPM
698 scope: spm
699
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100700 subsections:
Manish V Badarkhe98735802023-11-21 14:35:13 +0000701 - title: EL3 SPM
702 scope: el3-spm
703
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100704 - title: EL3 SPMC
705 scope: el3-spmc
Daniel Boulby93a8ce02021-12-06 14:44:35 +0000706
laurenw-arm21cd0662022-11-01 14:45:33 -0500707 deprecated:
708 - spmc
709
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100710 - title: SPMD
711 scope: spmd
712
713 - title: SPM MM
714 scope: spm-mm
Chris Kayf64c5582021-12-01 16:34:55 +0000715
Manish V Badarkhe7b224f12022-06-27 09:21:14 +0100716 - title: DRTM
717 scope: drtm
718
Jayanth Dodderi Chidanand0b22e592022-10-11 17:16:07 +0100719 - title: TRNG
720 scope: trng
721
Sona Mathew5c8fcc02023-09-20 12:55:32 -0500722 - title: ERRATA ABI
723 scope: errata-abi
724
725 deprecated:
726 - errata_abi
Sona Mathewffea3842022-11-18 18:05:38 -0600727
Chris Kayf64c5582021-12-01 16:34:55 +0000728 - title: Libraries
Manish V Badarkhe98735802023-11-21 14:35:13 +0000729 scope: lib
Chris Kayf64c5582021-12-01 16:34:55 +0000730
731 subsections:
732 - title: CPU Support
733 scope: cpus
734
735 deprecated:
736 - cpu
737 - errata
738 - errata_report
739
740 - title: EL3 Runtime
741 scope: el3-runtime
742
743 deprecated:
744 - el3_runtime
745
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100746 subsections:
747 - title: Context Management
748 scope: cm
749
laurenw-arm21cd0662022-11-01 14:45:33 -0500750 - title: RAS
751 scope: ras
752
Chris Kayf64c5582021-12-01 16:34:55 +0000753 - title: FCONF
754 scope: fconf
755
756 - title: MPMM
757 scope: mpmm
758
759 - title: OP-TEE
760 scope: optee
761
762 deprecated:
763 - lib/optee
764
765 - title: PSCI
766 scope: psci
767
768 - title: GPT
769 scope: gpt
770
771 deprecated:
772 - gpt_rme
773
774 - title: SMCCC
775 scope: smccc
776
777 - title: Translation Tables
778 scope: xlat
779
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100780 - title: C Standard Library
781 scope: libc
782
783 - title: Locks
784 scope: locks
785
786 - title: PSA
787 scope: psa
788
laurenw-arm21cd0662022-11-01 14:45:33 -0500789 deprecated:
790 - lib/psa
791
Zelalem Aweked20052f2022-04-04 17:42:48 -0500792 - title: Context Management
Chris Kay24687b72022-10-10 16:57:45 +0100793 scope: context-mgmt
794
795 deprecated:
796 - context mgmt
Zelalem Aweked20052f2022-04-04 17:42:48 -0500797
Manish V Badarkhe7c494382022-09-26 15:06:56 +0100798 - title: Semihosting
799 scope: semihosting
800
Raymond Mao3ba2c152023-07-25 07:53:35 -0700801 - title: Firmware Handoff
802 scope: handoff
803
Chris Kayf64c5582021-12-01 16:34:55 +0000804 - title: Drivers
805
806 subsections:
807 - title: Authentication
808 scope: auth
809
810 deprecated:
811 - driver/auth
812
813 subsections:
814 - title: CryptoCell-713
815 scope: cc-713
816
Manish V Badarkhe9e0d2ba2022-09-22 21:41:55 +0100817 - title: Crypto
818 scope: crypto
819
820 - title: mbedTLS
821 scope: mbedtls
822
Manish V Badarkhe902e94c2023-09-22 17:54:59 +0100823 - title: mbedTLS-PSA
824 scope: mbedtls-psa
825
Yann Gautier3c788292023-01-06 17:05:48 +0100826 - title: Console
827 scope: console
828
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100829 - title: Generic Clock
830 scope: clk
831
Chris Kayf64c5582021-12-01 16:34:55 +0000832 - title: FWU
833 scope: fwu
834
835 deprecated:
836 - fwu_metadata
837
838 - title: I/O
839 scope: io
840
841 subsections:
842 - title: MTD
843 scope: mtd
844
845 deprecated:
846 - io_mtd
847
848 - title: Measured Boot
849 scope: measured-boot
850
851 deprecated:
852 - measured boot
853 - measured_boot
854
855 - title: MMC
856 scope: mmc
857
858 deprecated:
859 - drivers/mmc
860
861 - title: MTD
862 scope: mtd
863
864 deprecated:
865 - drivers/mtd
866
867 subsections:
868 - title: NAND
869 scope: nand
870
871 subsections:
872 - title: SPI NAND
873 scope: spi-nand
874
875 deprecated:
876 - spi_nand
877
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100878 - title: GUID Partition Tables Support
879 scope: guid-partition
Sughosh Ganue1157ec2022-01-19 11:31:20 +0530880
Juan Pablo Condeb78ad002023-05-15 22:17:17 -0500881 deprecated:
882 - partition
883
Chris Kayf64c5582021-12-01 16:34:55 +0000884 - title: SCMI
885 scope: scmi
886
887 deprecated:
888 - scmi_common
889 - drivers/scmi-msg
laurenw-arm21cd0662022-11-01 14:45:33 -0500890 - scmi-msg
Chris Kayf64c5582021-12-01 16:34:55 +0000891
892 - title: UFS
893 scope: ufs
894
895 - title: Arm
896 scope: arm-drivers
897
898 subsections:
899 - title: Ethos-N
900 scope: ethos-n
901
902 deprecated:
903 - drivers/arm/ethosn
904
905 - title: GIC
906 scope: gic
907
908 subsections:
909 - title: GICv3
910 scope: gicv3
911
laurenw-arm21cd0662022-11-01 14:45:33 -0500912 deprecated:
913 - gicv3/multichip
914
Chris Kayf64c5582021-12-01 16:34:55 +0000915 subsections:
laurenw-arm21cd0662022-11-01 14:45:33 -0500916 - title: GIC-600
917 scope: gic600
918
Chris Kayf64c5582021-12-01 16:34:55 +0000919 - title: GIC-600AE
920 scope: gic600ae
921
Madhukar Pappireddyab80cf32023-08-03 12:13:27 -0500922 - title: GICv2
923 scope: gicv2
924
Manish V Badarkhe0de3eda2022-03-24 18:23:37 +0000925 - title: SMMU
926 scope: smmu
927
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100928 - title: MHU
929 scope: mhu
930
931 deprecated:
932 - drivers/arm/mhu
933
934 - title: RSS
935 scope: rss
936
937 deprecated:
938 - drivers/arm/rss
939
Chris Kayf64c5582021-12-01 16:34:55 +0000940 - title: TZC
941 scope: tzc
942
943 subsections:
944 - title: TZC-400
945 scope: tzc400
946
947 deprecated:
948 - drivers/tzc400
949
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +0100950 - title: TZC-380
951 scope: tzc380
952
953 deprecated:
954 - drivers/tzc380
955
Madhukar Pappireddye8166d32023-03-22 15:27:22 -0500956 - title: SBSA
957 scope: sbsa
958
Chris Kayf64c5582021-12-01 16:34:55 +0000959 - title: Marvell
960 scope: marvell-drivers
961
962 subsections:
963 - title: COMPHY
964 scope: marvell-comphy
965
966 deprecated:
967 - drivers/marvell/comphy
968
969 subsections:
970 - title: Armada 3700
971 scope: marvell-comphy-3700
972
973 deprecated:
974 - drivers/marvell/comphy-3700
975
976 - title: CP110
977 scope: marvell-comphy-cp110
978
979 deprecated:
980 - drivers/marvell/comphy-cp110
981
982 - title: UART
983 scope: marvell-uart
984
985 deprecated:
986 - plat/marvell/uart
987
988 - title: Armada
989 scope: armada-drivers
990
991 subsections:
992 - title: A3K
993 scope: a3k-drivers
994
995 subsections:
996 - title: A3720
997 scope: a3720-uart
998
999 deprecated:
1000 - plat/marvell/a3720/uart
1001
1002 - title: MediaTek
1003 scope: mediatek-drivers
1004
1005 subsections:
1006 - title: APU
1007 scope: mediatek-apu
1008
1009 deprecated:
1010 - plat/mediatek/apu
1011
1012 - title: EMI MPU
1013 scope: mediatek-emi-mpu
1014
1015 deprecated:
1016 - plat/mediatek/mpu
1017
1018 - title: PMIC Wrapper
1019 scope: mediatek-pmic-wrapper
1020
1021 deprecated:
1022 - plat/mediatek/pmic_wrap
1023
1024 - title: MT8192
1025 scope: mt8192-drivers
1026
1027 subsections:
1028 - title: SPM
1029 scope: mt8192-spm
1030
1031 deprecated:
1032 - mediatek/mt8192/spm
1033
1034 - title: NXP
1035 scope: nxp-drivers
1036
1037 subsections:
1038 - title: DCFG
1039 scope: nxp-dcfg
1040
1041 deprecated:
1042 - driver/nxp/dcfg
1043
1044 - title: FLEXSPI
1045 scope: flexspi
1046
1047 deprecated:
1048 - include/drivers/flexspi
1049 - driver/nxp/xspi
1050
1051 - title: SCFG
1052 scope: nxp-scfg
1053
1054 deprecated:
1055 - nxp/scfg
1056
1057 - title: SFP
1058 scope: nxp-sfp
1059
1060 deprecated:
1061 - drivers/nxp/sfp
1062
Jiafei Pan1acfb982022-02-10 10:39:56 +08001063 - title: QSPI
1064 scope: nxp-qspi
1065
Jiafei Pan9dcbeb92022-02-18 12:02:04 +08001066 - title: NXP Crypto
1067 scope: nxp-crypto
1068
Jiafei Pan5ba30c62022-02-22 11:05:00 +08001069 - title: DDR
1070 scope: nxp-ddr
1071
1072 - title: GIC
1073 scope: nxp-gic
1074
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001075 - title: CSU
1076 scope: nxp-csu
1077
1078 - title: IFC NAND
1079 scope: nxp-ifc-nand
1080
1081 - title: IFC NOR
1082 scope: nxp-ifc-nor
1083
1084 - title: TZC-380
1085 scope: nxp-tzc380
1086
Jacky Bai9f38eb82023-06-14 15:24:00 +08001087 - title: TRDC
1088 scope: imx-trdc
1089
Chris Kayf64c5582021-12-01 16:34:55 +00001090 - title: Renesas
1091 scope: renesas-drivers
1092
1093 subsections:
1094 - title: R-Car3
1095 scope: rcar3-drivers
1096
1097 deprecated:
1098 - drivers/rcar3
1099
1100 - title: ST
1101 scope: st-drivers
1102
1103 deprecated:
1104 - drivers/st
1105
1106 subsections:
Yann Gautier27254d92022-01-27 09:25:47 +01001107 - title: BSEC
1108 scope: st-bsec
1109
Chris Kayf64c5582021-12-01 16:34:55 +00001110 - title: Clock
1111 scope: st-clock
1112
1113 deprecated:
1114 - stm32mp_clk
1115 - drivers/st/clk
1116 - stm32mp1_clk
1117
Yann Gautier27254d92022-01-27 09:25:47 +01001118 - title: Crypto
1119 scope: st-crypto
1120
1121 - title: DDR
1122 scope: st-ddr
1123
Chris Kayf64c5582021-12-01 16:34:55 +00001124 - title: I/O
1125 scope: st-io-drivers
1126
1127 subsections:
1128 - title: STM32 Image
1129 scope: st-io-stm32image
1130
1131 deprecated:
1132 - io-stm32image
1133 - io_stm32image
1134
Yann Gautier27254d92022-01-27 09:25:47 +01001135 - title: I2C
1136 scope: st-i2c
1137
1138 - title: FMC
1139 scope: st-fmc
1140
1141 - title: GPIO
1142 scope: st-gpio
1143
Chris Kayf64c5582021-12-01 16:34:55 +00001144 - title: SDMMC2
1145 scope: st-sdmmc2
1146
1147 deprecated:
1148 - stm32_sdmmc2
1149
1150 - title: ST PMIC
1151 scope: st-pmic
1152
1153 deprecated:
1154 - drivers/st/pmic
1155
1156 - title: STPMIC1
1157 scope: stpmic1
1158
Yann Gautier27254d92022-01-27 09:25:47 +01001159 - title: Regulator
1160 scope: st-regulator
1161
1162 - title: Reset
1163 scope: st-reset
1164
1165 - title: SPI
1166 scope: st-spi
1167
Chris Kayf64c5582021-12-01 16:34:55 +00001168 - title: UART
1169 scope: st-uart
1170
1171 subsections:
1172 - title: STM32 Console
1173 scope: stm32-console
1174
1175 deprecated:
1176 - stm32_console
1177
1178 - title: USB
1179 scope: st-usb
1180
1181 deprecated:
1182 - drivers/st/usb
1183
Yann Gautier27254d92022-01-27 09:25:47 +01001184 - title: Watchdog
1185 scope: st-iwdg
1186
Chris Kayf64c5582021-12-01 16:34:55 +00001187 - title: USB
1188 scope: usb
1189
1190 deprecated:
1191 - drivers/usb
1192
1193 - title: Miscellaneous
1194
1195 subsections:
1196 - title: AArch64
1197 scope: aarch64
1198
1199 - title: Debug
1200 scope: debug
1201
1202 deprecated:
1203 - common/debug
1204
1205 - title: CRC32
1206 scope: crc32
1207
1208 subsections:
1209 - title: Hardware CRC32
1210 scope: hw-crc32
1211
1212 deprecated:
1213 - hw_crc
1214 - hw_crc32
1215
1216 - title: Software CRC32
1217 scope: sw-crc32
1218
1219 deprecated:
1220 - sw_crc32
1221
1222 - title: DT Bindings
1223 scope: dt-bindings
1224
1225 - title: FDT Wrappers
1226 scope: fdt-wrappers
1227
1228 - title: FDTs
1229 scope: fdts
1230
1231 deprecated:
1232 - fdt
1233
1234 subsections:
1235 - title: Morello
1236 scope: morello-fdts
1237
1238 deprecated:
1239 - fdts/morello
1240
1241 - title: STM32MP1
1242 scope: stm32mp1-fdts
1243
1244 deprecated:
1245 - fdts stm32mp1
1246
Yann Gautier3e35da92022-07-08 15:55:14 +02001247 subsections:
1248 - title: STM32MP13
1249 scope: stm32mp13-fdts
1250
1251 - title: STM32MP15
1252 scope: stm32mp15-fdts
1253
Yann Gautier3f6c16f2022-12-16 15:32:25 +01001254 - title: STM32MP2
1255 scope: stm32mp2-fdts
1256
Chris Kayf64c5582021-12-01 16:34:55 +00001257 - title: PIE
1258 scope: pie
1259
Juan Pablo Condeb78ad002023-05-15 22:17:17 -05001260 - title: PIE/POR
1261 scope: pie/por
1262
Chris Kayf64c5582021-12-01 16:34:55 +00001263 - title: Security
1264 scope: security
1265
1266 - title: SDEI
1267 scope: sdei
1268
1269 - title: TBBR
1270 scope: tbbr
1271
1272 - title: NXP
1273
1274 subsections:
1275 - title: OCRAM
1276 scope: nxp-ocram
1277
1278 deprecated:
1279 - nxp/common/ocram
1280
1281 - title: PSCI
1282 scope: nxp-psci
1283
1284 deprecated:
1285 - plat/nxp/common/psci
1286
Chris Kay12562af2023-04-13 17:24:20 +01001287 - title: UUID
1288 scope: uuid
1289
Chris Kayf64c5582021-12-01 16:34:55 +00001290 - title: Documentation
1291 scope: docs
1292
1293 deprecated:
1294 - doc
1295
1296 subsections:
1297 - title: Changelog
1298 scope: changelog
1299
1300 - title: Commit Style
1301 scope: commit-style
1302
1303 - title: Contribution Guidelines
1304 scope: contributing
1305
1306 deprecated:
1307 - contribution-guidelines
1308 - docs-contributing.rst
1309
1310 - title: Maintainers
1311 scope: maintainers
1312
1313 - title: Prerequisites
1314 scope: prerequisites
1315
Sandrine Bailleux50075fd2022-05-10 14:53:44 +02001316 - title: Threat Model
1317 scope: threat-model
1318
Sandrine Bailleuxd3171612023-02-08 13:58:25 +01001319 - title: Porting Guide
1320 scope: porting
1321
Chris Kayf64c5582021-12-01 16:34:55 +00001322 - title: Build System
1323 scope: build
1324
1325 deprecated:
1326 - makefile
1327 - Makefile
1328
1329 subsections:
1330 - title: Git Hooks
1331 scope: hooks
1332
Juan Pablo Condeb78ad002023-05-15 22:17:17 -05001333 deprecated:
1334 - git-hooks
1335
Chris Kayf64c5582021-12-01 16:34:55 +00001336 - title: Tools
1337
1338 subsections:
1339 - title: STM32 Image
1340 scope: stm32image
1341
1342 deprecated:
1343 - tools/stm32image
1344
Jiafei Pan1acfb982022-02-10 10:39:56 +08001345 - title: NXP Tools
1346 scope: nxp-tools
1347
Jayanth Dodderi Chidanand24c5d202022-05-19 11:03:07 +01001348 - title: Firmware Image Package Tool
1349 scope: fiptool
1350
1351 - title: Secure Partition Tool
1352 scope: sptool
1353
1354 - title: Certificate Creation Tool
1355 scope: cert-create
1356
Harrison Mutaid9d5eb12023-02-23 11:30:17 +00001357 - title: Memory Mapping Tool
1358 scope: memmap
1359
laurenw-arm21cd0662022-11-01 14:45:33 -05001360 deprecated:
1361 - cert_create
1362
Chris Kayf64c5582021-12-01 16:34:55 +00001363 - title: Dependencies
1364 scope: deps
1365
1366 subsections:
1367 - title: checkpatch
1368 scope: checkpatch
1369
1370 - title: commitlint
1371 scope: commitlint
1372
Daniel Boulby98a43d92022-10-05 11:03:44 +01001373 - title: Compiler runtime libraries
1374 scope: compiler-rt
1375
Chris Kayf64c5582021-12-01 16:34:55 +00001376 - title: libfdt
1377 scope: libfdt
1378
1379 - title: Node Package Manager (NPM)
1380 scope: npm
Daniel Boulby98a43d92022-10-05 11:03:44 +01001381
dependabot[bot]075a9612023-09-06 09:55:17 +00001382 - title: Poetry
1383 scope: poetry
1384
Daniel Boulby98a43d92022-10-05 11:03:44 +01001385 - title: zlib
1386 scope: zlib