changelog.yaml 24 KB

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