changelog.yaml 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275
  1. #
  2. # Copyright (c) 2021-2022, Arm Limited. All rights reserved.
  3. #
  4. # SPDX-License-Identifier: BSD-3-Clause
  5. #
  6. #
  7. # The following block describes the top-level sections of the changelog. Commits are categorized
  8. # into these top-level sections based on the commit message "type":
  9. #
  10. # feat(xyz): add the xyz feature
  11. # ^^^^
  12. #
  13. sections:
  14. - title: New Features
  15. description: A new feature
  16. type: feat
  17. - title: Resolved Issues
  18. description: A bug fix
  19. type: fix
  20. - title: Build System
  21. description: Changes that affect the build system or external dependencies
  22. type: build
  23. hidden: true
  24. - title: Continuous Integration
  25. description: Changes to our CI configuration files and scripts
  26. type: ci
  27. hidden: true
  28. - title: Documentation
  29. description: Documentation-only changes
  30. type: docs
  31. hidden: true
  32. - title: Performance Improvements
  33. description: A code change that improves performance
  34. type: perf
  35. hidden: true
  36. - title: Code Refactoring
  37. description: A code change that neither fixes a bug nor adds a feature
  38. type: refactor
  39. hidden: true
  40. - title: Reverted Changes
  41. description: Changes that revert a previous change
  42. type: revert
  43. hidden: true
  44. - title: Style
  45. description: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc.)
  46. type: style
  47. hidden: true
  48. - title: Tests
  49. description: Adding missing tests or correcting existing tests
  50. type: test
  51. hidden: true
  52. - title: Miscellaneous
  53. description: Any other change
  54. type: chore
  55. hidden: true
  56. #
  57. # The following block describes the sub-sections of the changelog. These sub-sections may appear in
  58. # any of the top-level sections, and describe the individual components that a change may relate to.
  59. #
  60. # Sub-sections have an optional associated commit message "scope":
  61. #
  62. # feat(xyz): add the xyz feature
  63. # ^^^
  64. #
  65. # This file also describes deprecated scopes, which are scopes that were used before we introduced
  66. # scope enforcement. These will not pass CI checks when used, but they will be used to generate the
  67. # changelog.
  68. #
  69. # Please note that new scopes should be kebab-case: https://en.wiktionary.org/wiki/kebab_case
  70. #
  71. subsections:
  72. - title: Architecture
  73. subsections:
  74. - title: Activity Monitors Extension (FEAT_AMU)
  75. scope: amu
  76. - title: Branch Record Buffer Extension (FEAT_BRBE)
  77. scope: brbe
  78. - title: Branch Target Identification Extension
  79. scope: bti
  80. - title: Confidential Compute Architecture (CCA)
  81. scope: cca
  82. - title: Extended Cache Index (FEAT_CCIDX)
  83. scope: ccidx
  84. - title: Support for the `HCRX_EL2` register (FEAT_HCX)
  85. scope: hcx
  86. - title: Memory Partitioning and Monitoring (MPAM) Extension (FEAT_MPAM)
  87. scope: mpam
  88. - title: Memory Tagging Extension
  89. scope: mte
  90. - title: Pointer Authentication Extension
  91. scope: pauth
  92. - title: Performance Monitors Extension (FEAT_PMUv3)
  93. scope: pmu
  94. - title: Trapping support for RNDR/RNDRRS (FEAT_RNG_TRAP)
  95. scope: rng-trap
  96. - title: Scalable Matrix Extension (FEAT_SME)
  97. scope: sme
  98. - title: Statistical profiling Extension (FEAT_SPE)
  99. scope: spe
  100. - title: Scalable Vector Extension (FEAT_SVE)
  101. scope: sve
  102. - title: System Register Trace Extensions (FEAT_ETMv4, FEAT_ETE and FEAT_ETEv1.1)
  103. scope: sys-reg-trace
  104. deprecated:
  105. - sys_reg_trace
  106. - title: Trace Buffer Extension (FEAT_TRBE)
  107. scope: trbe
  108. - title: Self-hosted Trace Extensions (FEAT_TRF)
  109. scope: trf
  110. - title: Platforms
  111. subsections:
  112. - title: Allwinner
  113. scope: allwinner
  114. deprecated:
  115. - plat/allwinner
  116. - title: Arm
  117. scope: arm
  118. deprecated:
  119. - plat/arm
  120. subsections:
  121. - title: CSS
  122. scope: css
  123. deprecated:
  124. - plat/arm/css
  125. - title: FPGA
  126. scope: fpga
  127. deprecated:
  128. - arm_fgpa
  129. - arm_fpga
  130. - plat/arm_fpga
  131. - title: FVP
  132. scope: fvp
  133. deprecated:
  134. - plat/fvp
  135. - fvp/tsp_manifest
  136. - title: FVP-R
  137. scope: fvp-r
  138. deprecated:
  139. - fvp_r
  140. - title: FVP Versatile Express
  141. scope: fvp_ve
  142. - title: Juno
  143. scope: juno
  144. - title: Morello
  145. scope: morello
  146. - title: N1SDP
  147. scope: n1sdp
  148. - title: RD
  149. scope: rd
  150. subsections:
  151. - title: RD-N2
  152. scope: rdn2
  153. deprecated:
  154. - board/rdn2
  155. - title: SGI
  156. scope: sgi
  157. deprecated:
  158. - plat/sgi
  159. - plat/arm/sgi
  160. - title: TC
  161. scope: tc
  162. subsections:
  163. - title: TC0
  164. scope: tc0
  165. deprecated:
  166. - plat/tc0
  167. - title: Corstone-1000
  168. scope: corstone-1000
  169. - title: Broadcom
  170. scope: brcm
  171. - title: HiSilicon
  172. scope: hisilicon
  173. subsections:
  174. - title: HiKey
  175. scope: hikey
  176. - title: HiKey960
  177. scope: hikey960
  178. - title: Intel
  179. scope: intel
  180. subsections:
  181. - title: SoC
  182. scope: soc
  183. - title: Marvell
  184. scope: marvell
  185. deprecated:
  186. - plat/marvell
  187. subsections:
  188. - title: Armada
  189. scope: armada
  190. deprecated:
  191. - plat/marvell/armada
  192. subsections:
  193. - title: A3K
  194. scope: a3k
  195. deprecated:
  196. - plat/marvell/a3k
  197. - title: A8K
  198. scope: a8k
  199. deprecated:
  200. - plat/marvell/a8k
  201. - title: MediaTek
  202. scope: mediatek
  203. deprecated:
  204. - plat/mediatek/common
  205. - plat/mediatek
  206. subsections:
  207. - title: MT8183
  208. scope: mt8183
  209. deprecated:
  210. - plat/mediatek/mt8183
  211. - title: MT8186
  212. scope: mt8186
  213. deprecated:
  214. - plat/mediatek/mt8186
  215. - mt8186-emi-mpu
  216. - title: MT8188
  217. scope: mt8188
  218. - title: MT8192
  219. scope: mt8192
  220. deprecated:
  221. - plat/mdeiatek/mt8192
  222. - title: MT8195
  223. scope: mt8195
  224. deprecated:
  225. - plat/mediatek/me8195
  226. - plat/mediatek/mt8195
  227. - plat/mdeiatek/mt8195
  228. - title: NVIDIA
  229. scope: nvidia
  230. subsections:
  231. - title: Tegra
  232. scope: tegra
  233. deprecated:
  234. - plat/tegra
  235. subsections:
  236. - title: Tegra 132
  237. scope: tegra132
  238. - title: Tegra 194
  239. scope: tegra194
  240. - title: NXP
  241. scope: nxp
  242. deprecated:
  243. - plat/nxp
  244. - plat/nxp/common
  245. subsections:
  246. - title: i.MX
  247. scope: imx
  248. deprecated:
  249. - plat/imx
  250. - plat/imx/imx
  251. subsections:
  252. - title: i.MX 8M
  253. scope: imx8m
  254. deprecated:
  255. - plat/imx8m
  256. - plat/imx/imx8m
  257. subsections:
  258. - title: i.MX 8M Nano
  259. scope: imx8mn
  260. deprecated:
  261. - plat/imx/imx8m/imx8mn
  262. - title: i.MX 8M Mini
  263. scope: imx8mm
  264. deprecated:
  265. - plat/imx/imx8m/imx8mm
  266. - title: i.MX 8M Plus
  267. scope: imx8mp
  268. deprecated:
  269. - plat/imx/imx8m/imx8mp
  270. - title: i.MX 8Q
  271. scope: imx8mq
  272. deprecated:
  273. - plat/imx/imx8m/imx8mq
  274. - title: Layerscape
  275. scope: layerscape
  276. deprecated:
  277. - docs/nxp/layerscape
  278. subsections:
  279. - title: LS1028A
  280. scope: ls1028a
  281. deprecated:
  282. - plat/nxp/ls1028a
  283. subsections:
  284. - title: LS1028ARDB
  285. scope: ls1028ardb
  286. deprecated:
  287. - plat/nxp/ls1028ardb
  288. - title: LS1043A
  289. scope: ls1043a
  290. deprecated:
  291. - plat/nxp/ls1043a
  292. subsections:
  293. - title: LS1043ARDB
  294. scope: ls1043ardb
  295. deprecated:
  296. - plat/nxp/ls1043ardb
  297. - title: LX2
  298. scope: lx2
  299. deprecated:
  300. - plat/nxp/lx2
  301. subsections:
  302. - title: LX216
  303. scope: lx216
  304. deprecated:
  305. - plat/nxp/lx216x
  306. subsections:
  307. - title: LX2160
  308. scope: lx2160
  309. deprecated:
  310. - plat/soc-lx2160
  311. - title: LS1046A
  312. scope: ls1046a
  313. subsections:
  314. - title: LS1046ARDB
  315. scope: ls1046ardb
  316. - title: LS1046AFRWY
  317. scope: ls1046afrwy
  318. - title: LS1046AQDS
  319. scope: ls1046aqds
  320. - title: LS1088A
  321. scope: ls1088a
  322. subsections:
  323. - title: LS1088ARDB
  324. scope: ls1088ardb
  325. - title: LS1088AQDS
  326. scope: ls1088aqds
  327. - title: QEMU
  328. scope: qemu
  329. deprecated:
  330. - plat/qemu
  331. - title: QTI
  332. scope: qti
  333. deprecated:
  334. - plat/qti
  335. subsections:
  336. - title: SC1780
  337. scope: sc7180
  338. deprecated:
  339. - plat/qti/sc7180
  340. - title: SC7280
  341. scope: sc7280
  342. deprecated:
  343. - plat/qti/sc7280
  344. - title: MSM8916
  345. scope: msm8916
  346. - title: Raspberry Pi
  347. scope: rpi
  348. subsections:
  349. - title: Raspberry Pi 3
  350. scope: rpi3
  351. - title: Raspberry Pi 4
  352. scope: rpi4
  353. - title: Renesas
  354. scope: renesas
  355. subsections:
  356. - title: R-Car
  357. scope: rcar
  358. deprecated:
  359. - plat/rcar
  360. subsections:
  361. - title: R-Car 3
  362. scope: rcar3
  363. deprecated:
  364. - plat/rcar3
  365. - title: Rockchip
  366. scope: rockchip
  367. subsections:
  368. - title: RK3399
  369. scope: rk3399
  370. deprecated:
  371. - rockchip/rk3399
  372. - rk3399/suspend
  373. - title: Socionext
  374. scope: socionext
  375. subsections:
  376. - title: Synquacer
  377. scope: synquacer
  378. deprecated:
  379. - plat/synquacer
  380. - title: ST
  381. scope: st
  382. deprecated:
  383. - plat/st
  384. subsections:
  385. - title: STM32MP1
  386. scope: stm32mp1
  387. deprecated:
  388. - plat/st/stm32mp1
  389. subsections:
  390. - title: STM32MP13
  391. scope: stm32mp13
  392. - title: STM32MP15
  393. scope: stm32mp15
  394. - title: Texas Instruments
  395. scope: ti
  396. subsections:
  397. - title: K3
  398. scope: k3
  399. deprecated:
  400. - ti-k3
  401. - title: Xilinx
  402. scope: xilinx
  403. deprecated:
  404. - plat/xilinx
  405. subsections:
  406. - title: Versal
  407. scope: versal
  408. deprecated:
  409. - plat/xilinx/versal/include
  410. - plat/xilinx/versal
  411. - plat/versal
  412. subsections:
  413. - title: Versal NET
  414. scope: versal-net
  415. deprecated:
  416. - versal_net
  417. - title: ZynqMP
  418. scope: zynqmp
  419. deprecated:
  420. - plat/zynqmp
  421. - plat/xilinx/zynqmp
  422. - title: Bootloader Images
  423. scope: bl
  424. deprecated:
  425. - bl_common
  426. subsections:
  427. - title: BL1
  428. scope: bl1
  429. - title: BL2
  430. scope: bl2
  431. - title: BL31
  432. scope: bl31
  433. - title: BL32
  434. scope: bl32
  435. subsections:
  436. - title: TSP
  437. scope: tsp
  438. - title: Services
  439. scope: services
  440. subsections:
  441. - title: FF-A
  442. scope: ff-a
  443. deprecated:
  444. - ffa
  445. - title: RME
  446. scope: rme
  447. deprecated:
  448. - rme/fid
  449. subsections:
  450. - title: TRP
  451. scope: trp
  452. - title: RMMD
  453. scope: rmmd
  454. - title: SPM
  455. scope: spm
  456. subsections:
  457. - title: EL3 SPMC
  458. scope: el3-spmc
  459. deprecated:
  460. - spmc
  461. - title: SPMD
  462. scope: spmd
  463. - title: SPM MM
  464. scope: spm-mm
  465. - title: DRTM
  466. scope: drtm
  467. - title: TRNG
  468. scope: trng
  469. - title: ERRATA_ABI
  470. scope: errata_abi
  471. - title: Libraries
  472. subsections:
  473. - title: CPU Support
  474. scope: cpus
  475. deprecated:
  476. - cpu
  477. - errata
  478. - errata_report
  479. - title: EL3 Runtime
  480. scope: el3-runtime
  481. deprecated:
  482. - el3_runtime
  483. subsections:
  484. - title: Context Management
  485. scope: cm
  486. - title: RAS
  487. scope: ras
  488. - title: FCONF
  489. scope: fconf
  490. - title: MPMM
  491. scope: mpmm
  492. - title: OP-TEE
  493. scope: optee
  494. deprecated:
  495. - lib/optee
  496. - title: PSCI
  497. scope: psci
  498. - title: GPT
  499. scope: gpt
  500. deprecated:
  501. - gpt_rme
  502. - title: SMCCC
  503. scope: smccc
  504. - title: Translation Tables
  505. scope: xlat
  506. - title: C Standard Library
  507. scope: libc
  508. - title: Locks
  509. scope: locks
  510. - title: PSA
  511. scope: psa
  512. deprecated:
  513. - lib/psa
  514. - title: Context Management
  515. scope: context-mgmt
  516. deprecated:
  517. - context mgmt
  518. - title: Semihosting
  519. scope: semihosting
  520. - title: Drivers
  521. subsections:
  522. - title: Authentication
  523. scope: auth
  524. deprecated:
  525. - driver/auth
  526. subsections:
  527. - title: CryptoCell-713
  528. scope: cc-713
  529. - title: Crypto
  530. scope: crypto
  531. - title: mbedTLS
  532. scope: mbedtls
  533. - title: Generic Clock
  534. scope: clk
  535. - title: FWU
  536. scope: fwu
  537. deprecated:
  538. - fwu_metadata
  539. - title: I/O
  540. scope: io
  541. subsections:
  542. - title: MTD
  543. scope: mtd
  544. deprecated:
  545. - io_mtd
  546. - title: Measured Boot
  547. scope: measured-boot
  548. deprecated:
  549. - measured boot
  550. - measured_boot
  551. - title: MMC
  552. scope: mmc
  553. deprecated:
  554. - drivers/mmc
  555. - title: MTD
  556. scope: mtd
  557. deprecated:
  558. - drivers/mtd
  559. subsections:
  560. - title: NAND
  561. scope: nand
  562. subsections:
  563. - title: SPI NAND
  564. scope: spi-nand
  565. deprecated:
  566. - spi_nand
  567. - title: GUID Partition Tables Support
  568. scope: guid-partition
  569. - title: SCMI
  570. scope: scmi
  571. deprecated:
  572. - scmi_common
  573. - drivers/scmi-msg
  574. - scmi-msg
  575. - title: UFS
  576. scope: ufs
  577. - title: Arm
  578. scope: arm-drivers
  579. subsections:
  580. - title: Ethos-N
  581. scope: ethos-n
  582. deprecated:
  583. - drivers/arm/ethosn
  584. - title: GIC
  585. scope: gic
  586. subsections:
  587. - title: GICv3
  588. scope: gicv3
  589. deprecated:
  590. - gicv3/multichip
  591. subsections:
  592. - title: GIC-600
  593. scope: gic600
  594. - title: GIC-600AE
  595. scope: gic600ae
  596. - title: SMMU
  597. scope: smmu
  598. - title: MHU
  599. scope: mhu
  600. deprecated:
  601. - drivers/arm/mhu
  602. - title: RSS
  603. scope: rss
  604. deprecated:
  605. - drivers/arm/rss
  606. - title: TZC
  607. scope: tzc
  608. subsections:
  609. - title: TZC-400
  610. scope: tzc400
  611. deprecated:
  612. - drivers/tzc400
  613. - title: TZC-380
  614. scope: tzc380
  615. deprecated:
  616. - drivers/tzc380
  617. - title: Marvell
  618. scope: marvell-drivers
  619. subsections:
  620. - title: COMPHY
  621. scope: marvell-comphy
  622. deprecated:
  623. - drivers/marvell/comphy
  624. subsections:
  625. - title: Armada 3700
  626. scope: marvell-comphy-3700
  627. deprecated:
  628. - drivers/marvell/comphy-3700
  629. - title: CP110
  630. scope: marvell-comphy-cp110
  631. deprecated:
  632. - drivers/marvell/comphy-cp110
  633. - title: UART
  634. scope: marvell-uart
  635. deprecated:
  636. - plat/marvell/uart
  637. - title: Armada
  638. scope: armada-drivers
  639. subsections:
  640. - title: A3K
  641. scope: a3k-drivers
  642. subsections:
  643. - title: A3720
  644. scope: a3720-uart
  645. deprecated:
  646. - plat/marvell/a3720/uart
  647. - title: MediaTek
  648. scope: mediatek-drivers
  649. subsections:
  650. - title: APU
  651. scope: mediatek-apu
  652. deprecated:
  653. - plat/mediatek/apu
  654. - title: EMI MPU
  655. scope: mediatek-emi-mpu
  656. deprecated:
  657. - plat/mediatek/mpu
  658. - title: PMIC Wrapper
  659. scope: mediatek-pmic-wrapper
  660. deprecated:
  661. - plat/mediatek/pmic_wrap
  662. - title: MT8192
  663. scope: mt8192-drivers
  664. subsections:
  665. - title: SPM
  666. scope: mt8192-spm
  667. deprecated:
  668. - mediatek/mt8192/spm
  669. - title: NXP
  670. scope: nxp-drivers
  671. subsections:
  672. - title: DCFG
  673. scope: nxp-dcfg
  674. deprecated:
  675. - driver/nxp/dcfg
  676. - title: FLEXSPI
  677. scope: flexspi
  678. deprecated:
  679. - include/drivers/flexspi
  680. - driver/nxp/xspi
  681. - title: SCFG
  682. scope: nxp-scfg
  683. deprecated:
  684. - nxp/scfg
  685. - title: SFP
  686. scope: nxp-sfp
  687. deprecated:
  688. - drivers/nxp/sfp
  689. - title: QSPI
  690. scope: nxp-qspi
  691. - title: NXP Crypto
  692. scope: nxp-crypto
  693. - title: DDR
  694. scope: nxp-ddr
  695. - title: GIC
  696. scope: nxp-gic
  697. - title: CSU
  698. scope: nxp-csu
  699. - title: IFC NAND
  700. scope: nxp-ifc-nand
  701. - title: IFC NOR
  702. scope: nxp-ifc-nor
  703. - title: TZC-380
  704. scope: nxp-tzc380
  705. - title: Renesas
  706. scope: renesas-drivers
  707. subsections:
  708. - title: R-Car3
  709. scope: rcar3-drivers
  710. deprecated:
  711. - drivers/rcar3
  712. - title: ST
  713. scope: st-drivers
  714. deprecated:
  715. - drivers/st
  716. subsections:
  717. - title: BSEC
  718. scope: st-bsec
  719. - title: Clock
  720. scope: st-clock
  721. deprecated:
  722. - stm32mp_clk
  723. - drivers/st/clk
  724. - stm32mp1_clk
  725. - title: Crypto
  726. scope: st-crypto
  727. - title: DDR
  728. scope: st-ddr
  729. - title: I/O
  730. scope: st-io-drivers
  731. subsections:
  732. - title: STM32 Image
  733. scope: st-io-stm32image
  734. deprecated:
  735. - io-stm32image
  736. - io_stm32image
  737. - title: I2C
  738. scope: st-i2c
  739. - title: FMC
  740. scope: st-fmc
  741. - title: GPIO
  742. scope: st-gpio
  743. - title: SDMMC2
  744. scope: st-sdmmc2
  745. deprecated:
  746. - stm32_sdmmc2
  747. - title: ST PMIC
  748. scope: st-pmic
  749. deprecated:
  750. - drivers/st/pmic
  751. - title: STPMIC1
  752. scope: stpmic1
  753. - title: Regulator
  754. scope: st-regulator
  755. - title: Reset
  756. scope: st-reset
  757. - title: SPI
  758. scope: st-spi
  759. - title: UART
  760. scope: st-uart
  761. subsections:
  762. - title: STM32 Console
  763. scope: stm32-console
  764. deprecated:
  765. - stm32_console
  766. - title: USB
  767. scope: st-usb
  768. deprecated:
  769. - drivers/st/usb
  770. - title: Watchdog
  771. scope: st-iwdg
  772. - title: USB
  773. scope: usb
  774. deprecated:
  775. - drivers/usb
  776. - title: Miscellaneous
  777. subsections:
  778. - title: AArch64
  779. scope: aarch64
  780. - title: Debug
  781. scope: debug
  782. deprecated:
  783. - common/debug
  784. - title: CRC32
  785. scope: crc32
  786. subsections:
  787. - title: Hardware CRC32
  788. scope: hw-crc32
  789. deprecated:
  790. - hw_crc
  791. - hw_crc32
  792. - title: Software CRC32
  793. scope: sw-crc32
  794. deprecated:
  795. - sw_crc32
  796. - title: DT Bindings
  797. scope: dt-bindings
  798. - title: FDT Wrappers
  799. scope: fdt-wrappers
  800. - title: FDTs
  801. scope: fdts
  802. deprecated:
  803. - fdt
  804. subsections:
  805. - title: Morello
  806. scope: morello-fdts
  807. deprecated:
  808. - fdts/morello
  809. - title: STM32MP1
  810. scope: stm32mp1-fdts
  811. deprecated:
  812. - fdts stm32mp1
  813. subsections:
  814. - title: STM32MP13
  815. scope: stm32mp13-fdts
  816. - title: STM32MP15
  817. scope: stm32mp15-fdts
  818. - title: PIE
  819. scope: pie
  820. - title: Security
  821. scope: security
  822. - title: SDEI
  823. scope: sdei
  824. - title: TBBR
  825. scope: tbbr
  826. - title: NXP
  827. subsections:
  828. - title: OCRAM
  829. scope: nxp-ocram
  830. deprecated:
  831. - nxp/common/ocram
  832. - title: PSCI
  833. scope: nxp-psci
  834. deprecated:
  835. - plat/nxp/common/psci
  836. - title: Documentation
  837. scope: docs
  838. deprecated:
  839. - doc
  840. subsections:
  841. - title: Changelog
  842. scope: changelog
  843. - title: Commit Style
  844. scope: commit-style
  845. - title: Contribution Guidelines
  846. scope: contributing
  847. deprecated:
  848. - contribution-guidelines
  849. - docs-contributing.rst
  850. - title: Maintainers
  851. scope: maintainers
  852. - title: Prerequisites
  853. scope: prerequisites
  854. - title: Threat Model
  855. scope: threat-model
  856. - title: Build System
  857. scope: build
  858. deprecated:
  859. - makefile
  860. - Makefile
  861. subsections:
  862. - title: Git Hooks
  863. scope: hooks
  864. - title: Tools
  865. subsections:
  866. - title: STM32 Image
  867. scope: stm32image
  868. deprecated:
  869. - tools/stm32image
  870. - title: NXP Tools
  871. scope: nxp-tools
  872. - title: Firmware Image Package Tool
  873. scope: fiptool
  874. - title: Secure Partition Tool
  875. scope: sptool
  876. - title: Certificate Creation Tool
  877. scope: cert-create
  878. deprecated:
  879. - cert_create
  880. - title: Dependencies
  881. scope: deps
  882. subsections:
  883. - title: checkpatch
  884. scope: checkpatch
  885. - title: commitlint
  886. scope: commitlint
  887. - title: Compiler runtime libraries
  888. scope: compiler-rt
  889. - title: libfdt
  890. scope: libfdt
  891. - title: Node Package Manager (NPM)
  892. scope: npm
  893. - title: zlib
  894. scope: zlib