blob: 3fc60f33c27c82e1299d89f7064545c7f8ee1540 [file] [log] [blame]
Chris Kay82117d72021-12-01 16:34:55 +00001#
Yann Gautier9f359fd2022-01-27 09:25:47 +01002# Copyright (c) 2021-2022, 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
Chris Kay82117d72021-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-arm7c66fca2022-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
Chris Kay82117d72021-12-01 16:34:55 +0000122 - title: Scalable Matrix Extension (FEAT_SME)
123 scope: sme
124
laurenw-arm7c66fca2022-11-01 14:45:33 -0500125 - title: Statistical profiling Extension (FEAT_SPE)
126 scope: spe
127
Chris Kay82117d72021-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
144
145 subsections:
146 - title: Allwinner
147 scope: allwinner
148
149 deprecated:
150 - plat/allwinner
151
152 - title: Arm
153 scope: arm
154
155 deprecated:
156 - plat/arm
157
158 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500159 - title: CSS
160 scope: css
161
162 deprecated:
163 - plat/arm/css
164
Chris Kay82117d72021-12-01 16:34:55 +0000165 - title: FPGA
166 scope: fpga
167
168 deprecated:
169 - arm_fgpa
170 - arm_fpga
171 - plat/arm_fpga
172
173 - title: FVP
174 scope: fvp
175
176 deprecated:
177 - plat/fvp
laurenw-arm7c66fca2022-11-01 14:45:33 -0500178 - fvp/tsp_manifest
Chris Kay82117d72021-12-01 16:34:55 +0000179
180 - title: FVP-R
181 scope: fvp-r
182
183 deprecated:
184 - fvp_r
185
laurenw-arm7c66fca2022-11-01 14:45:33 -0500186 - title: FVP Versatile Express
187 scope: fvp_ve
188
Chris Kay82117d72021-12-01 16:34:55 +0000189 - title: Juno
190 scope: juno
191
192 - title: Morello
193 scope: morello
194
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100195 - title: N1SDP
196 scope: n1sdp
197
Chris Kay82117d72021-12-01 16:34:55 +0000198 - title: RD
199 scope: rd
200
201 subsections:
202 - title: RD-N2
203 scope: rdn2
204
205 deprecated:
206 - board/rdn2
207
208 - title: SGI
209 scope: sgi
210
211 deprecated:
212 - plat/sgi
213 - plat/arm/sgi
214
215 - title: TC
216 scope: tc
217
218 subsections:
219 - title: TC0
220 scope: tc0
221
222 deprecated:
223 - plat/tc0
224
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100225 - title: Corstone-1000
226 scope: corstone-1000
227
228 - title: Broadcom
229 scope: brcm
230
laurenw-arm7c66fca2022-11-01 14:45:33 -0500231 - title: HiSilicon
232 scope: hisilicon
233
234 subsections:
235 - title: HiKey
236 scope: hikey
237
238 - title: HiKey960
239 scope: hikey960
240
Sieu Mun Tang9f3a13c2022-02-22 14:14:26 +0800241 - title: Intel
242 scope: intel
243
244 subsections:
245 - title: SoC
246 scope: soc
247
Chris Kay82117d72021-12-01 16:34:55 +0000248 - title: Marvell
249 scope: marvell
250
251 deprecated:
252 - plat/marvell
253
254 subsections:
255 - title: Armada
256 scope: armada
257
258 deprecated:
259 - plat/marvell/armada
260
261 subsections:
262 - title: A3K
263 scope: a3k
264
265 deprecated:
266 - plat/marvell/a3k
267
268 - title: A8K
269 scope: a8k
270
271 deprecated:
272 - plat/marvell/a8k
273
274 - title: MediaTek
275 scope: mediatek
276
277 deprecated:
278 - plat/mediatek/common
279 - plat/mediatek
280
281 subsections:
282 - title: MT8183
283 scope: mt8183
284
285 deprecated:
286 - plat/mediatek/mt8183
287
laurenw-arm7c66fca2022-11-01 14:45:33 -0500288 - title: MT8186
289 scope: mt8186
290
291 deprecated:
292 - plat/mediatek/mt8186
293 - mt8186-emi-mpu
294
295 - title: MT8188
296 scope: mt8188
297
Chris Kay82117d72021-12-01 16:34:55 +0000298 - title: MT8192
299 scope: mt8192
300
301 deprecated:
302 - plat/mdeiatek/mt8192
303
304 - title: MT8195
305 scope: mt8195
306
307 deprecated:
308 - plat/mediatek/me8195
309 - plat/mediatek/mt8195
310 - plat/mdeiatek/mt8195
311
312 - title: NVIDIA
313 scope: nvidia
314
315 subsections:
316 - title: Tegra
317 scope: tegra
318
319 deprecated:
320 - plat/tegra
321
322 subsections:
323 - title: Tegra 132
324 scope: tegra132
325
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100326 - title: Tegra 194
327 scope: tegra194
328
Chris Kay82117d72021-12-01 16:34:55 +0000329 - title: NXP
330 scope: nxp
331
332 deprecated:
333 - plat/nxp
334 - plat/nxp/common
335
336 subsections:
337 - title: i.MX
338 scope: imx
339
340 deprecated:
341 - plat/imx
342 - plat/imx/imx
343
344 subsections:
345 - title: i.MX 8M
346 scope: imx8m
347
348 deprecated:
349 - plat/imx8m
350 - plat/imx/imx8m
351
352 subsections:
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100353 - title: i.MX 8M Nano
354 scope: imx8mn
355
356 deprecated:
357 - plat/imx/imx8m/imx8mn
358
Chris Kay82117d72021-12-01 16:34:55 +0000359 - title: i.MX 8M Mini
360 scope: imx8mm
361
362 deprecated:
363 - plat/imx/imx8m/imx8mm
364
365 - title: i.MX 8M Plus
366 scope: imx8mp
367
368 deprecated:
369 - plat/imx/imx8m/imx8mp
370
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100371 - title: i.MX 8Q
372 scope: imx8mq
373
374 deprecated:
375 - plat/imx/imx8m/imx8mq
376
Chris Kay82117d72021-12-01 16:34:55 +0000377 - title: Layerscape
378 scope: layerscape
379
380 deprecated:
381 - docs/nxp/layerscape
382
383 subsections:
384 - title: LS1028A
385 scope: ls1028a
386
387 deprecated:
388 - plat/nxp/ls1028a
389
390 subsections:
391 - title: LS1028ARDB
392 scope: ls1028ardb
393
394 deprecated:
395 - plat/nxp/ls1028ardb
396
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100397 - title: LS1043A
398 scope: ls1043a
399
400 deprecated:
401 - plat/nxp/ls1043a
402
403 subsections:
404 - title: LS1043ARDB
405 scope: ls1043ardb
406
407 deprecated:
408 - plat/nxp/ls1043ardb
409
Chris Kay82117d72021-12-01 16:34:55 +0000410 - title: LX2
411 scope: lx2
412
413 deprecated:
414 - plat/nxp/lx2
415
416 subsections:
417 - title: LX216
418 scope: lx216
419
420 deprecated:
421 - plat/nxp/lx216x
422
423 subsections:
424 - title: LX2160
425 scope: lx2160
426
427 deprecated:
428 - plat/soc-lx2160
429
Jiafei Pan18ba9e42022-02-10 10:39:56 +0800430 - title: LS1046A
431 scope: ls1046a
432
433 subsections:
434 - title: LS1046ARDB
435 scope: ls1046ardb
436
437 - title: LS1046AFRWY
438 scope: ls1046afrwy
439
440 - title: LS1046AQDS
441 scope: ls1046aqds
442
Jiafei Pan290bf6f2022-02-24 16:00:35 +0800443 - title: LS1088A
444 scope: ls1088a
445
446 subsections:
447 - title: LS1088ARDB
448 scope: ls1088ardb
449
450 - title: LS1088AQDS
451 scope: ls1088aqds
452
Chris Kay82117d72021-12-01 16:34:55 +0000453 - title: QEMU
454 scope: qemu
455
456 deprecated:
457 - plat/qemu
458
459 - title: QTI
460 scope: qti
461
laurenw-arm7c66fca2022-11-01 14:45:33 -0500462 deprecated:
463 - plat/qti
464
Chris Kay82117d72021-12-01 16:34:55 +0000465 subsections:
466 - title: SC1780
467 scope: sc7180
468
469 deprecated:
470 - plat/qti/sc7180
471
472 - title: SC7280
473 scope: sc7280
474
475 deprecated:
476 - plat/qti/sc7280
477
Stephan Gerholdd0d0bf42021-12-01 20:00:00 +0100478 - title: MSM8916
479 scope: msm8916
480
Chris Kay82117d72021-12-01 16:34:55 +0000481 - title: Raspberry Pi
482 scope: rpi
483
484 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500485 - title: Raspberry Pi 3
486 scope: rpi3
487
Chris Kay82117d72021-12-01 16:34:55 +0000488 - title: Raspberry Pi 4
489 scope: rpi4
490
491 - title: Renesas
492 scope: renesas
493
494 subsections:
495 - title: R-Car
496 scope: rcar
497
498 deprecated:
499 - plat/rcar
500
501 subsections:
502 - title: R-Car 3
503 scope: rcar3
504
505 deprecated:
506 - plat/rcar3
507
508 - title: Rockchip
509 scope: rockchip
510
511 subsections:
512 - title: RK3399
513 scope: rk3399
514
515 deprecated:
516 - rockchip/rk3399
517 - rk3399/suspend
518
519 - title: Socionext
520 scope: socionext
521
522 subsections:
523 - title: Synquacer
524 scope: synquacer
525
526 deprecated:
527 - plat/synquacer
528
529 - title: ST
530 scope: st
531
532 deprecated:
533 - plat/st
534
535 subsections:
Yann Gautier14b32e82022-06-01 18:17:43 +0200536 - title: STM32MP1
Chris Kay82117d72021-12-01 16:34:55 +0000537 scope: stm32mp1
538
539 deprecated:
540 - plat/st/stm32mp1
541
Yann Gautier14b32e82022-06-01 18:17:43 +0200542 subsections:
543 - title: STM32MP13
544 scope: stm32mp13
545
546 - title: STM32MP15
547 scope: stm32mp15
548
Dave Gerlach74c19f92022-03-22 11:02:52 -0500549 - title: Texas Instruments
550 scope: ti
551
552 subsections:
553 - title: K3
554 scope: k3
555
laurenw-arm7c66fca2022-11-01 14:45:33 -0500556 deprecated:
557 - ti-k3
558
Chris Kay82117d72021-12-01 16:34:55 +0000559 - title: Xilinx
560 scope: xilinx
561
562 deprecated:
563 - plat/xilinx
564
565 subsections:
566 - title: Versal
567 scope: versal
568
569 deprecated:
570 - plat/xilinx/versal/include
571 - plat/xilinx/versal
572 - plat/versal
573
laurenw-arm7c66fca2022-11-01 14:45:33 -0500574 subsections:
575 - title: Versal NET
576 scope: versal-net
577
578 deprecated:
579 - versal_net
580
Chris Kay82117d72021-12-01 16:34:55 +0000581 - title: ZynqMP
582 scope: zynqmp
583
584 deprecated:
585 - plat/zynqmp
586 - plat/xilinx/zynqmp
587
588 - title: Bootloader Images
589 scope: bl
590
591 deprecated:
592 - bl_common
593
594 subsections:
595 - title: BL1
596 scope: bl1
597
598 - title: BL2
599 scope: bl2
600
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100601 - title: BL31
602 scope: bl31
603
Shruti Guptac31beb62022-08-09 10:46:07 +0100604 - title: BL32
605 scope: bl32
606
607 subsections:
608 - title: TSP
609 scope: tsp
610
Chris Kay82117d72021-12-01 16:34:55 +0000611 - title: Services
612 scope: services
613
614 subsections:
615 - title: FF-A
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000616 scope: ff-a
Chris Kay82117d72021-12-01 16:34:55 +0000617
618 deprecated:
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000619 - ffa
Chris Kay82117d72021-12-01 16:34:55 +0000620
621 - title: RME
622 scope: rme
623
laurenw-arm7c66fca2022-11-01 14:45:33 -0500624 deprecated:
625 - rme/fid
626
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100627 subsections:
628 - title: TRP
629 scope: trp
630
Javier Almansa Sobrino7176a772021-11-24 18:37:37 +0000631 - title: RMMD
632 scope: rmmd
633
Chris Kay82117d72021-12-01 16:34:55 +0000634 - title: SPM
635 scope: spm
636
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100637 subsections:
638 - title: EL3 SPMC
639 scope: el3-spmc
640
laurenw-arm7c66fca2022-11-01 14:45:33 -0500641 deprecated:
642 - spmc
643
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100644 - title: SPMD
645 scope: spmd
Daniel Boulby8d74d6a2021-12-06 14:44:35 +0000646
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100647 - title: SPM MM
648 scope: spm-mm
Chris Kay82117d72021-12-01 16:34:55 +0000649
Manish V Badarkhe478d3ee2022-06-27 09:21:14 +0100650 - title: DRTM
651 scope: drtm
652
Chris Kay82117d72021-12-01 16:34:55 +0000653 - title: Libraries
654
655 subsections:
656 - title: CPU Support
657 scope: cpus
658
659 deprecated:
660 - cpu
661 - errata
662 - errata_report
663
664 - title: EL3 Runtime
665 scope: el3-runtime
666
667 deprecated:
668 - el3_runtime
669
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100670 subsections:
671 - title: Context Management
672 scope: cm
673
laurenw-arm7c66fca2022-11-01 14:45:33 -0500674 - title: RAS
675 scope: ras
676
Chris Kay82117d72021-12-01 16:34:55 +0000677 - title: FCONF
678 scope: fconf
679
680 - title: MPMM
681 scope: mpmm
682
683 - title: OP-TEE
684 scope: optee
685
686 deprecated:
687 - lib/optee
688
689 - title: PSCI
690 scope: psci
691
692 - title: GPT
693 scope: gpt
694
695 deprecated:
696 - gpt_rme
697
698 - title: SMCCC
699 scope: smccc
700
701 - title: Translation Tables
702 scope: xlat
703
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100704 - title: C Standard Library
705 scope: libc
706
707 - title: Locks
708 scope: locks
709
710 - title: PSA
711 scope: psa
712
laurenw-arm7c66fca2022-11-01 14:45:33 -0500713 deprecated:
714 - lib/psa
715
Zelalem Aweke5362beb2022-04-04 17:42:48 -0500716 - title: Context Management
717 scope: context mgmt
718
Manish V Badarkhede920262022-09-26 15:06:56 +0100719 - title: Semihosting
720 scope: semihosting
721
Chris Kay82117d72021-12-01 16:34:55 +0000722 - title: Drivers
723
724 subsections:
725 - title: Authentication
726 scope: auth
727
728 deprecated:
729 - driver/auth
730
731 subsections:
732 - title: CryptoCell-713
733 scope: cc-713
734
Manish V Badarkhe8d91e982022-09-22 21:41:55 +0100735 - title: Crypto
736 scope: crypto
737
738 - title: mbedTLS
739 scope: mbedtls
740
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100741 - title: Generic Clock
742 scope: clk
743
Chris Kay82117d72021-12-01 16:34:55 +0000744 - title: FWU
745 scope: fwu
746
747 deprecated:
748 - fwu_metadata
749
750 - title: I/O
751 scope: io
752
753 subsections:
754 - title: MTD
755 scope: mtd
756
757 deprecated:
758 - io_mtd
759
760 - title: Measured Boot
761 scope: measured-boot
762
763 deprecated:
764 - measured boot
765 - measured_boot
766
767 - title: MMC
768 scope: mmc
769
770 deprecated:
771 - drivers/mmc
772
773 - title: MTD
774 scope: mtd
775
776 deprecated:
777 - drivers/mtd
778
779 subsections:
780 - title: NAND
781 scope: nand
782
783 subsections:
784 - title: SPI NAND
785 scope: spi-nand
786
787 deprecated:
788 - spi_nand
789
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100790 - title: GUID Partition Tables Support
791 scope: guid-partition
Sughosh Ganu540e0322022-01-19 11:31:20 +0530792
Chris Kay82117d72021-12-01 16:34:55 +0000793 - title: SCMI
794 scope: scmi
795
796 deprecated:
797 - scmi_common
798 - drivers/scmi-msg
laurenw-arm7c66fca2022-11-01 14:45:33 -0500799 - scmi-msg
Chris Kay82117d72021-12-01 16:34:55 +0000800
801 - title: UFS
802 scope: ufs
803
804 - title: Arm
805 scope: arm-drivers
806
807 subsections:
808 - title: Ethos-N
809 scope: ethos-n
810
811 deprecated:
812 - drivers/arm/ethosn
813
814 - title: GIC
815 scope: gic
816
817 subsections:
818 - title: GICv3
819 scope: gicv3
820
laurenw-arm7c66fca2022-11-01 14:45:33 -0500821 deprecated:
822 - gicv3/multichip
823
Chris Kay82117d72021-12-01 16:34:55 +0000824 subsections:
laurenw-arm7c66fca2022-11-01 14:45:33 -0500825 - title: GIC-600
826 scope: gic600
827
Chris Kay82117d72021-12-01 16:34:55 +0000828 - title: GIC-600AE
829 scope: gic600ae
830
Manish V Badarkhebcaeb672022-03-24 18:23:37 +0000831 - title: SMMU
832 scope: smmu
833
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100834 - title: MHU
835 scope: mhu
836
837 deprecated:
838 - drivers/arm/mhu
839
840 - title: RSS
841 scope: rss
842
843 deprecated:
844 - drivers/arm/rss
845
Chris Kay82117d72021-12-01 16:34:55 +0000846 - title: TZC
847 scope: tzc
848
849 subsections:
850 - title: TZC-400
851 scope: tzc400
852
853 deprecated:
854 - drivers/tzc400
855
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100856 - title: TZC-380
857 scope: tzc380
858
859 deprecated:
860 - drivers/tzc380
861
Chris Kay82117d72021-12-01 16:34:55 +0000862 - title: Marvell
863 scope: marvell-drivers
864
865 subsections:
866 - title: COMPHY
867 scope: marvell-comphy
868
869 deprecated:
870 - drivers/marvell/comphy
871
872 subsections:
873 - title: Armada 3700
874 scope: marvell-comphy-3700
875
876 deprecated:
877 - drivers/marvell/comphy-3700
878
879 - title: CP110
880 scope: marvell-comphy-cp110
881
882 deprecated:
883 - drivers/marvell/comphy-cp110
884
885 - title: UART
886 scope: marvell-uart
887
888 deprecated:
889 - plat/marvell/uart
890
891 - title: Armada
892 scope: armada-drivers
893
894 subsections:
895 - title: A3K
896 scope: a3k-drivers
897
898 subsections:
899 - title: A3720
900 scope: a3720-uart
901
902 deprecated:
903 - plat/marvell/a3720/uart
904
905 - title: MediaTek
906 scope: mediatek-drivers
907
908 subsections:
909 - title: APU
910 scope: mediatek-apu
911
912 deprecated:
913 - plat/mediatek/apu
914
915 - title: EMI MPU
916 scope: mediatek-emi-mpu
917
918 deprecated:
919 - plat/mediatek/mpu
920
921 - title: PMIC Wrapper
922 scope: mediatek-pmic-wrapper
923
924 deprecated:
925 - plat/mediatek/pmic_wrap
926
927 - title: MT8192
928 scope: mt8192-drivers
929
930 subsections:
931 - title: SPM
932 scope: mt8192-spm
933
934 deprecated:
935 - mediatek/mt8192/spm
936
937 - title: NXP
938 scope: nxp-drivers
939
940 subsections:
941 - title: DCFG
942 scope: nxp-dcfg
943
944 deprecated:
945 - driver/nxp/dcfg
946
947 - title: FLEXSPI
948 scope: flexspi
949
950 deprecated:
951 - include/drivers/flexspi
952 - driver/nxp/xspi
953
954 - title: SCFG
955 scope: nxp-scfg
956
957 deprecated:
958 - nxp/scfg
959
960 - title: SFP
961 scope: nxp-sfp
962
963 deprecated:
964 - drivers/nxp/sfp
965
Jiafei Pan18ba9e42022-02-10 10:39:56 +0800966 - title: QSPI
967 scope: nxp-qspi
968
Jiafei Pan94450412022-02-18 12:02:04 +0800969 - title: NXP Crypto
970 scope: nxp-crypto
971
Jiafei Panfa3f7612022-02-22 11:05:00 +0800972 - title: DDR
973 scope: nxp-ddr
974
975 - title: GIC
976 scope: nxp-gic
977
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +0100978 - title: CSU
979 scope: nxp-csu
980
981 - title: IFC NAND
982 scope: nxp-ifc-nand
983
984 - title: IFC NOR
985 scope: nxp-ifc-nor
986
987 - title: TZC-380
988 scope: nxp-tzc380
989
Chris Kay82117d72021-12-01 16:34:55 +0000990 - title: Renesas
991 scope: renesas-drivers
992
993 subsections:
994 - title: R-Car3
995 scope: rcar3-drivers
996
997 deprecated:
998 - drivers/rcar3
999
1000 - title: ST
1001 scope: st-drivers
1002
1003 deprecated:
1004 - drivers/st
1005
1006 subsections:
Yann Gautier9f359fd2022-01-27 09:25:47 +01001007 - title: BSEC
1008 scope: st-bsec
1009
Chris Kay82117d72021-12-01 16:34:55 +00001010 - title: Clock
1011 scope: st-clock
1012
1013 deprecated:
1014 - stm32mp_clk
1015 - drivers/st/clk
1016 - stm32mp1_clk
1017
Yann Gautier9f359fd2022-01-27 09:25:47 +01001018 - title: Crypto
1019 scope: st-crypto
1020
1021 - title: DDR
1022 scope: st-ddr
1023
Chris Kay82117d72021-12-01 16:34:55 +00001024 - title: I/O
1025 scope: st-io-drivers
1026
1027 subsections:
1028 - title: STM32 Image
1029 scope: st-io-stm32image
1030
1031 deprecated:
1032 - io-stm32image
1033 - io_stm32image
1034
Yann Gautier9f359fd2022-01-27 09:25:47 +01001035 - title: I2C
1036 scope: st-i2c
1037
1038 - title: FMC
1039 scope: st-fmc
1040
1041 - title: GPIO
1042 scope: st-gpio
1043
Chris Kay82117d72021-12-01 16:34:55 +00001044 - title: SDMMC2
1045 scope: st-sdmmc2
1046
1047 deprecated:
1048 - stm32_sdmmc2
1049
1050 - title: ST PMIC
1051 scope: st-pmic
1052
1053 deprecated:
1054 - drivers/st/pmic
1055
1056 - title: STPMIC1
1057 scope: stpmic1
1058
Yann Gautier9f359fd2022-01-27 09:25:47 +01001059 - title: Regulator
1060 scope: st-regulator
1061
1062 - title: Reset
1063 scope: st-reset
1064
1065 - title: SPI
1066 scope: st-spi
1067
Chris Kay82117d72021-12-01 16:34:55 +00001068 - title: UART
1069 scope: st-uart
1070
1071 subsections:
1072 - title: STM32 Console
1073 scope: stm32-console
1074
1075 deprecated:
1076 - stm32_console
1077
1078 - title: USB
1079 scope: st-usb
1080
1081 deprecated:
1082 - drivers/st/usb
1083
Yann Gautier9f359fd2022-01-27 09:25:47 +01001084 - title: Watchdog
1085 scope: st-iwdg
1086
Chris Kay82117d72021-12-01 16:34:55 +00001087 - title: USB
1088 scope: usb
1089
1090 deprecated:
1091 - drivers/usb
1092
1093 - title: Miscellaneous
1094
1095 subsections:
1096 - title: AArch64
1097 scope: aarch64
1098
1099 - title: Debug
1100 scope: debug
1101
1102 deprecated:
1103 - common/debug
1104
1105 - title: CRC32
1106 scope: crc32
1107
1108 subsections:
1109 - title: Hardware CRC32
1110 scope: hw-crc32
1111
1112 deprecated:
1113 - hw_crc
1114 - hw_crc32
1115
1116 - title: Software CRC32
1117 scope: sw-crc32
1118
1119 deprecated:
1120 - sw_crc32
1121
1122 - title: DT Bindings
1123 scope: dt-bindings
1124
1125 - title: FDT Wrappers
1126 scope: fdt-wrappers
1127
1128 - title: FDTs
1129 scope: fdts
1130
1131 deprecated:
1132 - fdt
1133
1134 subsections:
1135 - title: Morello
1136 scope: morello-fdts
1137
1138 deprecated:
1139 - fdts/morello
1140
1141 - title: STM32MP1
1142 scope: stm32mp1-fdts
1143
1144 deprecated:
1145 - fdts stm32mp1
1146
Yann Gautier2c962252022-07-08 15:55:14 +02001147 subsections:
1148 - title: STM32MP13
1149 scope: stm32mp13-fdts
1150
1151 - title: STM32MP15
1152 scope: stm32mp15-fdts
1153
Chris Kay82117d72021-12-01 16:34:55 +00001154 - title: PIE
1155 scope: pie
1156
1157 - title: Security
1158 scope: security
1159
1160 - title: SDEI
1161 scope: sdei
1162
1163 - title: TBBR
1164 scope: tbbr
1165
1166 - title: NXP
1167
1168 subsections:
1169 - title: OCRAM
1170 scope: nxp-ocram
1171
1172 deprecated:
1173 - nxp/common/ocram
1174
1175 - title: PSCI
1176 scope: nxp-psci
1177
1178 deprecated:
1179 - plat/nxp/common/psci
1180
1181 - title: Documentation
1182 scope: docs
1183
1184 deprecated:
1185 - doc
1186
1187 subsections:
1188 - title: Changelog
1189 scope: changelog
1190
1191 - title: Commit Style
1192 scope: commit-style
1193
1194 - title: Contribution Guidelines
1195 scope: contributing
1196
1197 deprecated:
1198 - contribution-guidelines
1199 - docs-contributing.rst
1200
1201 - title: Maintainers
1202 scope: maintainers
1203
1204 - title: Prerequisites
1205 scope: prerequisites
1206
Sandrine Bailleux3c8fdf72022-05-10 14:53:44 +02001207 - title: Threat Model
1208 scope: threat-model
1209
Chris Kay82117d72021-12-01 16:34:55 +00001210 - title: Build System
1211 scope: build
1212
1213 deprecated:
1214 - makefile
1215 - Makefile
1216
1217 subsections:
1218 - title: Git Hooks
1219 scope: hooks
1220
1221 - title: Tools
1222
1223 subsections:
1224 - title: STM32 Image
1225 scope: stm32image
1226
1227 deprecated:
1228 - tools/stm32image
1229
Jiafei Pan18ba9e42022-02-10 10:39:56 +08001230 - title: NXP Tools
1231 scope: nxp-tools
1232
Jayanth Dodderi Chidanandb16bc302022-05-19 11:03:07 +01001233 - title: Firmware Image Package Tool
1234 scope: fiptool
1235
1236 - title: Secure Partition Tool
1237 scope: sptool
1238
1239 - title: Certificate Creation Tool
1240 scope: cert-create
1241
laurenw-arm7c66fca2022-11-01 14:45:33 -05001242 deprecated:
1243 - cert_create
1244
Chris Kay82117d72021-12-01 16:34:55 +00001245 - title: Dependencies
1246 scope: deps
1247
1248 subsections:
1249 - title: checkpatch
1250 scope: checkpatch
1251
1252 - title: commitlint
1253 scope: commitlint
1254
Daniel Boulbyc550e702022-10-05 11:03:44 +01001255 - title: Compiler runtime libraries
1256 scope: compiler-rt
1257
Chris Kay82117d72021-12-01 16:34:55 +00001258 - title: libfdt
1259 scope: libfdt
1260
1261 - title: Node Package Manager (NPM)
1262 scope: npm
Daniel Boulbyc550e702022-10-05 11:03:44 +01001263
1264 - title: zlib
1265 scope: zlib
1266