blob: 9114dadb5eed80921f34e5236c08474a699b06bf [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
153
154 subsections:
155 - title: Allwinner
156 scope: allwinner
157
158 deprecated:
159 - plat/allwinner
160
161 - title: Arm
162 scope: arm
163
164 deprecated:
165 - plat/arm
166
167 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500168 - title: CSS
169 scope: css
170
171 deprecated:
172 - plat/arm/css
173
Chris Kay82117d72021-12-01 16:34:55 +0000174 - title: FPGA
175 scope: fpga
176
177 deprecated:
178 - arm_fgpa
179 - arm_fpga
180 - plat/arm_fpga
181
182 - title: FVP
183 scope: fvp
184
185 deprecated:
186 - plat/fvp
laurenw-arm7c66fca2022-11-01 14:45:33 -0500187 - fvp/tsp_manifest
Chris Kay82117d72021-12-01 16:34:55 +0000188
189 - title: FVP-R
190 scope: fvp-r
191
192 deprecated:
193 - fvp_r
194
laurenw-arm7c66fca2022-11-01 14:45:33 -0500195 - title: FVP Versatile Express
196 scope: fvp_ve
197
Chris Kay82117d72021-12-01 16:34:55 +0000198 - title: Juno
199 scope: juno
200
201 - title: Morello
202 scope: morello
203
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100204 - title: N1SDP
205 scope: n1sdp
206
Chris Kay82117d72021-12-01 16:34:55 +0000207 - title: RD
208 scope: rd
209
210 subsections:
211 - title: RD-N2
212 scope: rdn2
213
214 deprecated:
215 - board/rdn2
216
217 - title: SGI
218 scope: sgi
219
220 deprecated:
221 - plat/sgi
222 - plat/arm/sgi
223
224 - title: TC
225 scope: tc
226
227 subsections:
228 - title: TC0
229 scope: tc0
230
231 deprecated:
232 - plat/tc0
233
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100234 - title: Corstone-1000
235 scope: corstone-1000
236
237 - title: Broadcom
238 scope: brcm
239
laurenw-arm7c66fca2022-11-01 14:45:33 -0500240 - title: HiSilicon
241 scope: hisilicon
242
243 subsections:
244 - title: HiKey
245 scope: hikey
246
247 - title: HiKey960
248 scope: hikey960
249
Sieu Mun Tang9f3a13c2022-02-22 14:14:26 +0800250 - title: Intel
251 scope: intel
252
253 subsections:
254 - title: SoC
255 scope: soc
256
Chris Kay82117d72021-12-01 16:34:55 +0000257 - title: Marvell
258 scope: marvell
259
260 deprecated:
261 - plat/marvell
262
263 subsections:
264 - title: Armada
265 scope: armada
266
267 deprecated:
268 - plat/marvell/armada
269
270 subsections:
271 - title: A3K
272 scope: a3k
273
274 deprecated:
275 - plat/marvell/a3k
276
277 - title: A8K
278 scope: a8k
279
280 deprecated:
281 - plat/marvell/a8k
282
283 - title: MediaTek
284 scope: mediatek
285
286 deprecated:
287 - plat/mediatek/common
288 - plat/mediatek
289
290 subsections:
291 - title: MT8183
292 scope: mt8183
293
294 deprecated:
295 - plat/mediatek/mt8183
296
laurenw-arm7c66fca2022-11-01 14:45:33 -0500297 - title: MT8186
298 scope: mt8186
299
300 deprecated:
301 - plat/mediatek/mt8186
302 - mt8186-emi-mpu
303
304 - title: MT8188
305 scope: mt8188
306
Chris Kay82117d72021-12-01 16:34:55 +0000307 - title: MT8192
308 scope: mt8192
309
310 deprecated:
311 - plat/mdeiatek/mt8192
312
313 - title: MT8195
314 scope: mt8195
315
316 deprecated:
317 - plat/mediatek/me8195
318 - plat/mediatek/mt8195
319 - plat/mdeiatek/mt8195
320
321 - title: NVIDIA
322 scope: nvidia
323
324 subsections:
325 - title: Tegra
326 scope: tegra
327
328 deprecated:
329 - plat/tegra
330
331 subsections:
332 - title: Tegra 132
333 scope: tegra132
334
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100335 - title: Tegra 194
336 scope: tegra194
337
Chris Kay82117d72021-12-01 16:34:55 +0000338 - title: NXP
339 scope: nxp
340
341 deprecated:
342 - plat/nxp
343 - plat/nxp/common
344
345 subsections:
346 - title: i.MX
347 scope: imx
348
349 deprecated:
350 - plat/imx
351 - plat/imx/imx
352
353 subsections:
354 - title: i.MX 8M
355 scope: imx8m
356
357 deprecated:
358 - plat/imx8m
359 - plat/imx/imx8m
360
361 subsections:
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100362 - title: i.MX 8M Nano
363 scope: imx8mn
364
365 deprecated:
366 - plat/imx/imx8m/imx8mn
367
Chris Kay82117d72021-12-01 16:34:55 +0000368 - title: i.MX 8M Mini
369 scope: imx8mm
370
371 deprecated:
372 - plat/imx/imx8m/imx8mm
373
374 - title: i.MX 8M Plus
375 scope: imx8mp
376
377 deprecated:
378 - plat/imx/imx8m/imx8mp
379
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100380 - title: i.MX 8Q
381 scope: imx8mq
382
383 deprecated:
384 - plat/imx/imx8m/imx8mq
385
Chris Kay82117d72021-12-01 16:34:55 +0000386 - title: Layerscape
387 scope: layerscape
388
389 deprecated:
390 - docs/nxp/layerscape
391
392 subsections:
393 - title: LS1028A
394 scope: ls1028a
395
396 deprecated:
397 - plat/nxp/ls1028a
398
399 subsections:
400 - title: LS1028ARDB
401 scope: ls1028ardb
402
403 deprecated:
404 - plat/nxp/ls1028ardb
405
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100406 - title: LS1043A
407 scope: ls1043a
408
409 deprecated:
410 - plat/nxp/ls1043a
411
412 subsections:
413 - title: LS1043ARDB
414 scope: ls1043ardb
415
416 deprecated:
417 - plat/nxp/ls1043ardb
418
Chris Kay82117d72021-12-01 16:34:55 +0000419 - title: LX2
420 scope: lx2
421
422 deprecated:
423 - plat/nxp/lx2
424
425 subsections:
426 - title: LX216
427 scope: lx216
428
429 deprecated:
430 - plat/nxp/lx216x
431
432 subsections:
433 - title: LX2160
434 scope: lx2160
435
436 deprecated:
437 - plat/soc-lx2160
438
Jiafei Pan18ba9e42022-02-10 10:39:56 +0800439 - title: LS1046A
440 scope: ls1046a
441
442 subsections:
443 - title: LS1046ARDB
444 scope: ls1046ardb
445
446 - title: LS1046AFRWY
447 scope: ls1046afrwy
448
449 - title: LS1046AQDS
450 scope: ls1046aqds
451
Jiafei Pan290bf6f2022-02-24 16:00:35 +0800452 - title: LS1088A
453 scope: ls1088a
454
455 subsections:
456 - title: LS1088ARDB
457 scope: ls1088ardb
458
459 - title: LS1088AQDS
460 scope: ls1088aqds
461
Chris Kay82117d72021-12-01 16:34:55 +0000462 - title: QEMU
463 scope: qemu
464
465 deprecated:
466 - plat/qemu
467
468 - title: QTI
469 scope: qti
470
laurenw-arm7c66fca2022-11-01 14:45:33 -0500471 deprecated:
472 - plat/qti
473
Chris Kay82117d72021-12-01 16:34:55 +0000474 subsections:
475 - title: SC1780
476 scope: sc7180
477
478 deprecated:
479 - plat/qti/sc7180
480
481 - title: SC7280
482 scope: sc7280
483
484 deprecated:
485 - plat/qti/sc7280
486
Stephan Gerholdd0d0bf42021-12-01 20:00:00 +0100487 - title: MSM8916
488 scope: msm8916
489
Chris Kay82117d72021-12-01 16:34:55 +0000490 - title: Raspberry Pi
491 scope: rpi
492
493 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500494 - title: Raspberry Pi 3
495 scope: rpi3
496
Chris Kay82117d72021-12-01 16:34:55 +0000497 - title: Raspberry Pi 4
498 scope: rpi4
499
500 - title: Renesas
501 scope: renesas
502
503 subsections:
504 - title: R-Car
505 scope: rcar
506
507 deprecated:
508 - plat/rcar
509
510 subsections:
511 - title: R-Car 3
512 scope: rcar3
513
514 deprecated:
515 - plat/rcar3
516
517 - title: Rockchip
518 scope: rockchip
519
520 subsections:
521 - title: RK3399
522 scope: rk3399
523
524 deprecated:
525 - rockchip/rk3399
526 - rk3399/suspend
527
528 - title: Socionext
529 scope: socionext
530
531 subsections:
532 - title: Synquacer
533 scope: synquacer
534
535 deprecated:
536 - plat/synquacer
537
538 - title: ST
539 scope: st
540
541 deprecated:
542 - plat/st
543
544 subsections:
Yann Gautier14b32e82022-06-01 18:17:43 +0200545 - title: STM32MP1
Chris Kay82117d72021-12-01 16:34:55 +0000546 scope: stm32mp1
547
548 deprecated:
549 - plat/st/stm32mp1
550
Yann Gautier14b32e82022-06-01 18:17:43 +0200551 subsections:
552 - title: STM32MP13
553 scope: stm32mp13
554
555 - title: STM32MP15
556 scope: stm32mp15
557
Dave Gerlach74c19f92022-03-22 11:02:52 -0500558 - title: Texas Instruments
559 scope: ti
560
561 subsections:
562 - title: K3
563 scope: k3
564
laurenw-arm7c66fca2022-11-01 14:45:33 -0500565 deprecated:
566 - ti-k3
567
Chris Kay82117d72021-12-01 16:34:55 +0000568 - title: Xilinx
569 scope: xilinx
570
571 deprecated:
572 - plat/xilinx
573
574 subsections:
575 - title: Versal
576 scope: versal
577
578 deprecated:
579 - plat/xilinx/versal/include
580 - plat/xilinx/versal
581 - plat/versal
582
laurenw-arm7c66fca2022-11-01 14:45:33 -0500583 subsections:
584 - title: Versal NET
585 scope: versal-net
586
587 deprecated:
588 - versal_net
589
Chris Kay82117d72021-12-01 16:34:55 +0000590 - title: ZynqMP
591 scope: zynqmp
592
593 deprecated:
594 - plat/zynqmp
595 - plat/xilinx/zynqmp
596
597 - title: Bootloader Images
598 scope: bl
599
600 deprecated:
601 - bl_common
602
603 subsections:
604 - title: BL1
605 scope: bl1
606
607 - title: BL2
608 scope: bl2
609
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100610 - title: BL31
611 scope: bl31
612
Shruti Guptac31beb62022-08-09 10:46:07 +0100613 - title: BL32
614 scope: bl32
615
616 subsections:
617 - title: TSP
618 scope: tsp
619
Chris Kay82117d72021-12-01 16:34:55 +0000620 - title: Services
621 scope: services
622
623 subsections:
624 - title: FF-A
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000625 scope: ff-a
Chris Kay82117d72021-12-01 16:34:55 +0000626
627 deprecated:
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000628 - ffa
Chris Kay82117d72021-12-01 16:34:55 +0000629
630 - title: RME
631 scope: rme
632
laurenw-arm7c66fca2022-11-01 14:45:33 -0500633 deprecated:
634 - rme/fid
635
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100636 subsections:
637 - title: TRP
638 scope: trp
639
Javier Almansa Sobrino7176a772021-11-24 18:37:37 +0000640 - title: RMMD
641 scope: rmmd
642
Chris Kay82117d72021-12-01 16:34:55 +0000643 - title: SPM
644 scope: spm
645
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100646 subsections:
647 - title: EL3 SPMC
648 scope: el3-spmc
649
laurenw-arm7c66fca2022-11-01 14:45:33 -0500650 deprecated:
651 - spmc
652
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100653 - title: SPMD
654 scope: spmd
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000655
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100656 - title: SPM MM
657 scope: spm-mm
Chris Kay82117d72021-12-01 16:34:55 +0000658
Manish V Badarkhe478d3ee2022-06-27 09:21:14 +0100659 - title: DRTM
660 scope: drtm
661
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +0100662 - title: TRNG
663 scope: trng
664
Sona Mathew7fe03522022-11-18 18:05:38 -0600665 - title: ERRATA_ABI
666 scope: errata_abi
667
Chris Kay82117d72021-12-01 16:34:55 +0000668 - title: Libraries
669
670 subsections:
671 - title: CPU Support
672 scope: cpus
673
674 deprecated:
675 - cpu
676 - errata
677 - errata_report
678
679 - title: EL3 Runtime
680 scope: el3-runtime
681
682 deprecated:
683 - el3_runtime
684
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100685 subsections:
686 - title: Context Management
687 scope: cm
688
laurenw-arm7c66fca2022-11-01 14:45:33 -0500689 - title: RAS
690 scope: ras
691
Chris Kay82117d72021-12-01 16:34:55 +0000692 - title: FCONF
693 scope: fconf
694
695 - title: MPMM
696 scope: mpmm
697
698 - title: OP-TEE
699 scope: optee
700
701 deprecated:
702 - lib/optee
703
704 - title: PSCI
705 scope: psci
706
707 - title: GPT
708 scope: gpt
709
710 deprecated:
711 - gpt_rme
712
713 - title: SMCCC
714 scope: smccc
715
716 - title: Translation Tables
717 scope: xlat
718
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100719 - title: C Standard Library
720 scope: libc
721
722 - title: Locks
723 scope: locks
724
725 - title: PSA
726 scope: psa
727
laurenw-arm7c66fca2022-11-01 14:45:33 -0500728 deprecated:
729 - lib/psa
730
Zelalem Aweke5362beb2022-04-04 17:42:48 -0500731 - title: Context Management
Chris Kaye76be0a2022-10-10 16:57:45 +0100732 scope: context-mgmt
733
734 deprecated:
735 - context mgmt
Zelalem Aweke5362beb2022-04-04 17:42:48 -0500736
Manish V Badarkhede920262022-09-26 15:06:56 +0100737 - title: Semihosting
738 scope: semihosting
739
Chris Kay82117d72021-12-01 16:34:55 +0000740 - title: Drivers
741
742 subsections:
743 - title: Authentication
744 scope: auth
745
746 deprecated:
747 - driver/auth
748
749 subsections:
750 - title: CryptoCell-713
751 scope: cc-713
752
Manish V Badarkhe8d91e982022-09-22 21:41:55 +0100753 - title: Crypto
754 scope: crypto
755
756 - title: mbedTLS
757 scope: mbedtls
758
Yann Gautier1832d662023-01-06 17:05:48 +0100759 - title: Console
760 scope: console
761
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100762 - title: Generic Clock
763 scope: clk
764
Chris Kay82117d72021-12-01 16:34:55 +0000765 - title: FWU
766 scope: fwu
767
768 deprecated:
769 - fwu_metadata
770
771 - title: I/O
772 scope: io
773
774 subsections:
775 - title: MTD
776 scope: mtd
777
778 deprecated:
779 - io_mtd
780
781 - title: Measured Boot
782 scope: measured-boot
783
784 deprecated:
785 - measured boot
786 - measured_boot
787
788 - title: MMC
789 scope: mmc
790
791 deprecated:
792 - drivers/mmc
793
794 - title: MTD
795 scope: mtd
796
797 deprecated:
798 - drivers/mtd
799
800 subsections:
801 - title: NAND
802 scope: nand
803
804 subsections:
805 - title: SPI NAND
806 scope: spi-nand
807
808 deprecated:
809 - spi_nand
810
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100811 - title: GUID Partition Tables Support
812 scope: guid-partition
Sughosh Ganu540e0322022-01-19 11:31:20 +0530813
Chris Kay82117d72021-12-01 16:34:55 +0000814 - title: SCMI
815 scope: scmi
816
817 deprecated:
818 - scmi_common
819 - drivers/scmi-msg
laurenw-arm7c66fca2022-11-01 14:45:33 -0500820 - scmi-msg
Chris Kay82117d72021-12-01 16:34:55 +0000821
822 - title: UFS
823 scope: ufs
824
825 - title: Arm
826 scope: arm-drivers
827
828 subsections:
829 - title: Ethos-N
830 scope: ethos-n
831
832 deprecated:
833 - drivers/arm/ethosn
834
835 - title: GIC
836 scope: gic
837
838 subsections:
839 - title: GICv3
840 scope: gicv3
841
laurenw-arm7c66fca2022-11-01 14:45:33 -0500842 deprecated:
843 - gicv3/multichip
844
Chris Kay82117d72021-12-01 16:34:55 +0000845 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500846 - title: GIC-600
847 scope: gic600
848
Chris Kay82117d72021-12-01 16:34:55 +0000849 - title: GIC-600AE
850 scope: gic600ae
851
Manish V Badarkhebcaeb672022-03-24 18:23:37 +0000852 - title: SMMU
853 scope: smmu
854
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100855 - title: MHU
856 scope: mhu
857
858 deprecated:
859 - drivers/arm/mhu
860
861 - title: RSS
862 scope: rss
863
864 deprecated:
865 - drivers/arm/rss
866
Chris Kay82117d72021-12-01 16:34:55 +0000867 - title: TZC
868 scope: tzc
869
870 subsections:
871 - title: TZC-400
872 scope: tzc400
873
874 deprecated:
875 - drivers/tzc400
876
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100877 - title: TZC-380
878 scope: tzc380
879
880 deprecated:
881 - drivers/tzc380
882
Madhukar Pappireddy4c3de562023-03-22 15:27:22 -0500883 - title: SBSA
884 scope: sbsa
885
Chris Kay82117d72021-12-01 16:34:55 +0000886 - title: Marvell
887 scope: marvell-drivers
888
889 subsections:
890 - title: COMPHY
891 scope: marvell-comphy
892
893 deprecated:
894 - drivers/marvell/comphy
895
896 subsections:
897 - title: Armada 3700
898 scope: marvell-comphy-3700
899
900 deprecated:
901 - drivers/marvell/comphy-3700
902
903 - title: CP110
904 scope: marvell-comphy-cp110
905
906 deprecated:
907 - drivers/marvell/comphy-cp110
908
909 - title: UART
910 scope: marvell-uart
911
912 deprecated:
913 - plat/marvell/uart
914
915 - title: Armada
916 scope: armada-drivers
917
918 subsections:
919 - title: A3K
920 scope: a3k-drivers
921
922 subsections:
923 - title: A3720
924 scope: a3720-uart
925
926 deprecated:
927 - plat/marvell/a3720/uart
928
929 - title: MediaTek
930 scope: mediatek-drivers
931
932 subsections:
933 - title: APU
934 scope: mediatek-apu
935
936 deprecated:
937 - plat/mediatek/apu
938
939 - title: EMI MPU
940 scope: mediatek-emi-mpu
941
942 deprecated:
943 - plat/mediatek/mpu
944
945 - title: PMIC Wrapper
946 scope: mediatek-pmic-wrapper
947
948 deprecated:
949 - plat/mediatek/pmic_wrap
950
951 - title: MT8192
952 scope: mt8192-drivers
953
954 subsections:
955 - title: SPM
956 scope: mt8192-spm
957
958 deprecated:
959 - mediatek/mt8192/spm
960
961 - title: NXP
962 scope: nxp-drivers
963
964 subsections:
965 - title: DCFG
966 scope: nxp-dcfg
967
968 deprecated:
969 - driver/nxp/dcfg
970
971 - title: FLEXSPI
972 scope: flexspi
973
974 deprecated:
975 - include/drivers/flexspi
976 - driver/nxp/xspi
977
978 - title: SCFG
979 scope: nxp-scfg
980
981 deprecated:
982 - nxp/scfg
983
984 - title: SFP
985 scope: nxp-sfp
986
987 deprecated:
988 - drivers/nxp/sfp
989
Jiafei Pan18ba9e42022-02-10 10:39:56 +0800990 - title: QSPI
991 scope: nxp-qspi
992
Jiafei Pan94450412022-02-18 12:02:04 +0800993 - title: NXP Crypto
994 scope: nxp-crypto
995
Jiafei Panfa3f7612022-02-22 11:05:00 +0800996 - title: DDR
997 scope: nxp-ddr
998
999 - title: GIC
1000 scope: nxp-gic
1001
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001002 - title: CSU
1003 scope: nxp-csu
1004
1005 - title: IFC NAND
1006 scope: nxp-ifc-nand
1007
1008 - title: IFC NOR
1009 scope: nxp-ifc-nor
1010
1011 - title: TZC-380
1012 scope: nxp-tzc380
1013
Chris Kay82117d72021-12-01 16:34:55 +00001014 - title: Renesas
1015 scope: renesas-drivers
1016
1017 subsections:
1018 - title: R-Car3
1019 scope: rcar3-drivers
1020
1021 deprecated:
1022 - drivers/rcar3
1023
1024 - title: ST
1025 scope: st-drivers
1026
1027 deprecated:
1028 - drivers/st
1029
1030 subsections:
Yann Gautier9f359fd2022-01-27 09:25:47 +01001031 - title: BSEC
1032 scope: st-bsec
1033
Chris Kay82117d72021-12-01 16:34:55 +00001034 - title: Clock
1035 scope: st-clock
1036
1037 deprecated:
1038 - stm32mp_clk
1039 - drivers/st/clk
1040 - stm32mp1_clk
1041
Yann Gautier9f359fd2022-01-27 09:25:47 +01001042 - title: Crypto
1043 scope: st-crypto
1044
1045 - title: DDR
1046 scope: st-ddr
1047
Chris Kay82117d72021-12-01 16:34:55 +00001048 - title: I/O
1049 scope: st-io-drivers
1050
1051 subsections:
1052 - title: STM32 Image
1053 scope: st-io-stm32image
1054
1055 deprecated:
1056 - io-stm32image
1057 - io_stm32image
1058
Yann Gautier9f359fd2022-01-27 09:25:47 +01001059 - title: I2C
1060 scope: st-i2c
1061
1062 - title: FMC
1063 scope: st-fmc
1064
1065 - title: GPIO
1066 scope: st-gpio
1067
Chris Kay82117d72021-12-01 16:34:55 +00001068 - title: SDMMC2
1069 scope: st-sdmmc2
1070
1071 deprecated:
1072 - stm32_sdmmc2
1073
1074 - title: ST PMIC
1075 scope: st-pmic
1076
1077 deprecated:
1078 - drivers/st/pmic
1079
1080 - title: STPMIC1
1081 scope: stpmic1
1082
Yann Gautier9f359fd2022-01-27 09:25:47 +01001083 - title: Regulator
1084 scope: st-regulator
1085
1086 - title: Reset
1087 scope: st-reset
1088
1089 - title: SPI
1090 scope: st-spi
1091
Chris Kay82117d72021-12-01 16:34:55 +00001092 - title: UART
1093 scope: st-uart
1094
1095 subsections:
1096 - title: STM32 Console
1097 scope: stm32-console
1098
1099 deprecated:
1100 - stm32_console
1101
1102 - title: USB
1103 scope: st-usb
1104
1105 deprecated:
1106 - drivers/st/usb
1107
Yann Gautier9f359fd2022-01-27 09:25:47 +01001108 - title: Watchdog
1109 scope: st-iwdg
1110
Chris Kay82117d72021-12-01 16:34:55 +00001111 - title: USB
1112 scope: usb
1113
1114 deprecated:
1115 - drivers/usb
1116
1117 - title: Miscellaneous
1118
1119 subsections:
1120 - title: AArch64
1121 scope: aarch64
1122
1123 - title: Debug
1124 scope: debug
1125
1126 deprecated:
1127 - common/debug
1128
1129 - title: CRC32
1130 scope: crc32
1131
1132 subsections:
1133 - title: Hardware CRC32
1134 scope: hw-crc32
1135
1136 deprecated:
1137 - hw_crc
1138 - hw_crc32
1139
1140 - title: Software CRC32
1141 scope: sw-crc32
1142
1143 deprecated:
1144 - sw_crc32
1145
1146 - title: DT Bindings
1147 scope: dt-bindings
1148
1149 - title: FDT Wrappers
1150 scope: fdt-wrappers
1151
1152 - title: FDTs
1153 scope: fdts
1154
1155 deprecated:
1156 - fdt
1157
1158 subsections:
1159 - title: Morello
1160 scope: morello-fdts
1161
1162 deprecated:
1163 - fdts/morello
1164
1165 - title: STM32MP1
1166 scope: stm32mp1-fdts
1167
1168 deprecated:
1169 - fdts stm32mp1
1170
Yann Gautier2c962252022-07-08 15:55:14 +02001171 subsections:
1172 - title: STM32MP13
1173 scope: stm32mp13-fdts
1174
1175 - title: STM32MP15
1176 scope: stm32mp15-fdts
1177
Chris Kay82117d72021-12-01 16:34:55 +00001178 - title: PIE
1179 scope: pie
1180
1181 - title: Security
1182 scope: security
1183
1184 - title: SDEI
1185 scope: sdei
1186
1187 - title: TBBR
1188 scope: tbbr
1189
1190 - title: NXP
1191
1192 subsections:
1193 - title: OCRAM
1194 scope: nxp-ocram
1195
1196 deprecated:
1197 - nxp/common/ocram
1198
1199 - title: PSCI
1200 scope: nxp-psci
1201
1202 deprecated:
1203 - plat/nxp/common/psci
1204
Chris Kayd04a4762023-04-13 17:24:20 +01001205 - title: UUID
1206 scope: uuid
1207
Chris Kay82117d72021-12-01 16:34:55 +00001208 - title: Documentation
1209 scope: docs
1210
1211 deprecated:
1212 - doc
1213
1214 subsections:
1215 - title: Changelog
1216 scope: changelog
1217
1218 - title: Commit Style
1219 scope: commit-style
1220
1221 - title: Contribution Guidelines
1222 scope: contributing
1223
1224 deprecated:
1225 - contribution-guidelines
1226 - docs-contributing.rst
1227
1228 - title: Maintainers
1229 scope: maintainers
1230
1231 - title: Prerequisites
1232 scope: prerequisites
1233
Sandrine Bailleux3c8fdf72022-05-10 14:53:44 +02001234 - title: Threat Model
1235 scope: threat-model
1236
Sandrine Bailleuxe67bb122023-02-08 13:58:25 +01001237 - title: Porting Guide
1238 scope: porting
1239
Chris Kay82117d72021-12-01 16:34:55 +00001240 - title: Build System
1241 scope: build
1242
1243 deprecated:
1244 - makefile
1245 - Makefile
1246
1247 subsections:
1248 - title: Git Hooks
1249 scope: hooks
1250
1251 - title: Tools
1252
1253 subsections:
1254 - title: STM32 Image
1255 scope: stm32image
1256
1257 deprecated:
1258 - tools/stm32image
1259
Jiafei Pan18ba9e42022-02-10 10:39:56 +08001260 - title: NXP Tools
1261 scope: nxp-tools
1262
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001263 - title: Firmware Image Package Tool
1264 scope: fiptool
1265
1266 - title: Secure Partition Tool
1267 scope: sptool
1268
1269 - title: Certificate Creation Tool
1270 scope: cert-create
1271
laurenw-arm7c66fca2022-11-01 14:45:33 -05001272 deprecated:
1273 - cert_create
1274
Chris Kay82117d72021-12-01 16:34:55 +00001275 - title: Dependencies
1276 scope: deps
1277
1278 subsections:
1279 - title: checkpatch
1280 scope: checkpatch
1281
1282 - title: commitlint
1283 scope: commitlint
1284
Daniel Boulbyc550e702022-10-05 11:03:44 +01001285 - title: Compiler runtime libraries
1286 scope: compiler-rt
1287
Chris Kay82117d72021-12-01 16:34:55 +00001288 - title: libfdt
1289 scope: libfdt
1290
1291 - title: Node Package Manager (NPM)
1292 scope: npm
Daniel Boulbyc550e702022-10-05 11:03:44 +01001293
1294 - title: zlib
1295 scope: zlib