changelog.yaml 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392
  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. 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: Extended Translation Control Register (FEAT_TCR2).
  85. scope: tcr2
  86. - title: CPU feature / ID register handling in general
  87. scope: cpufeat
  88. - title: Guarded Control Stack (FEAT_GCS)
  89. scope: gcs
  90. - title: Support for the `HCRX_EL2` register (FEAT_HCX)
  91. scope: hcx
  92. - title: Memory Partitioning and Monitoring (MPAM) Extension (FEAT_MPAM)
  93. scope: mpam
  94. - title: Memory Tagging Extension
  95. scope: mte
  96. - title: Pointer Authentication Extension
  97. scope: pauth
  98. - title: Performance Monitors Extension (FEAT_PMUv3)
  99. scope: pmu
  100. - title: Trapping support for RNDR/RNDRRS (FEAT_RNG_TRAP)
  101. scope: rng-trap
  102. - title: Scalable Matrix Extension (FEAT_SME, FEAT_SME2)
  103. scope: sme
  104. - title: Statistical profiling Extension (FEAT_SPE)
  105. scope: spe
  106. - title: Scalable Vector Extension (FEAT_SVE)
  107. scope: sve
  108. - title: System Register Trace Extensions (FEAT_ETMv4, FEAT_ETE and FEAT_ETEv1.1)
  109. scope: sys-reg-trace
  110. deprecated:
  111. - sys_reg_trace
  112. - title: Trace Buffer Extension (FEAT_TRBE)
  113. scope: trbe
  114. - title: Self-hosted Trace Extensions (FEAT_TRF)
  115. scope: trf
  116. - title: Platforms
  117. scope: platforms
  118. deprecated:
  119. - plat/common
  120. subsections:
  121. - title: Allwinner
  122. scope: allwinner
  123. deprecated:
  124. - plat/allwinner
  125. - title: Arm
  126. scope: arm
  127. deprecated:
  128. - plat/arm
  129. subsections:
  130. - title: A5DS
  131. scope: a5ds
  132. - title: CSS
  133. scope: css
  134. deprecated:
  135. - plat/arm/css
  136. - plat/css
  137. - title: FPGA
  138. scope: fpga
  139. deprecated:
  140. - arm_fgpa
  141. - plat/arm_fpga
  142. - arm/fpga
  143. - title: FVP
  144. scope: fvp
  145. deprecated:
  146. - plat/fvp
  147. - fvp/tsp_manifest
  148. - title: FVP-R
  149. scope: fvp-r
  150. deprecated:
  151. - fvp_r
  152. - title: FVP Versatile Express
  153. scope: fvp_ve
  154. - title: Juno
  155. scope: juno
  156. - title: Morello
  157. scope: morello
  158. - title: N1SDP
  159. scope: n1sdp
  160. - title: RD
  161. scope: rd
  162. subsections:
  163. - title: RD-N1 Edge
  164. scope: rdn1edge
  165. - title: RD-N2
  166. scope: rdn2
  167. deprecated:
  168. - board/rdn2
  169. - title: SGI
  170. scope: sgi
  171. deprecated:
  172. - plat/sgi
  173. - plat/arm/sgi
  174. - title: TC
  175. scope: tc
  176. deprecated:
  177. - plat/tc
  178. subsections:
  179. - title: TC0
  180. scope: tc0
  181. deprecated:
  182. - plat/tc0
  183. - title: Corstone-1000
  184. scope: corstone-1000
  185. - title: Aspeed
  186. scope: aspeed
  187. subsections:
  188. - title: AST2700
  189. scope: ast2700
  190. - title: Broadcom
  191. scope: brcm
  192. - title: Cadence
  193. scope: cadence
  194. - title: HiSilicon
  195. scope: hisilicon
  196. subsections:
  197. - title: HiKey
  198. scope: hikey
  199. - title: HiKey960
  200. scope: hikey960
  201. - title: Intel
  202. scope: intel
  203. subsections:
  204. - title: SoC
  205. scope: soc
  206. - title: Marvell
  207. scope: marvell
  208. deprecated:
  209. - plat/marvell
  210. subsections:
  211. - title: Armada
  212. scope: armada
  213. deprecated:
  214. - plat/marvell/armada
  215. subsections:
  216. - title: A3K
  217. scope: a3k
  218. deprecated:
  219. - plat/marvell/a3k
  220. - title: A8K
  221. scope: a8k
  222. deprecated:
  223. - plat/marvell/a8k
  224. - title: MediaTek
  225. scope: mediatek
  226. deprecated:
  227. - plat/mediatek/common
  228. - plat/mediatek
  229. subsections:
  230. - title: MT8183
  231. scope: mt8183
  232. deprecated:
  233. - plat/mediatek/mt8183
  234. - title: MT8186
  235. scope: mt8186
  236. deprecated:
  237. - plat/mediatek/mt8186
  238. - mt8186-emi-mpu
  239. - title: MT8188
  240. scope: mt8188
  241. - title: MT8192
  242. scope: mt8192
  243. deprecated:
  244. - plat/mdeiatek/mt8192
  245. - title: MT8195
  246. scope: mt8195
  247. deprecated:
  248. - plat/mediatek/me8195
  249. - plat/mediatek/mt8195
  250. - plat/mdeiatek/mt8195
  251. - title: NVIDIA
  252. scope: nvidia
  253. subsections:
  254. - title: Tegra
  255. scope: tegra
  256. deprecated:
  257. - plat/tegra
  258. subsections:
  259. - title: Tegra 132
  260. scope: tegra132
  261. - title: Tegra 194
  262. scope: tegra194
  263. - title: Tegra 210
  264. scope: tegra210
  265. - title: NXP
  266. scope: nxp
  267. deprecated:
  268. - plat/nxp
  269. - plat/nxp/common
  270. subsections:
  271. - title: i.MX
  272. scope: imx
  273. deprecated:
  274. - plat/imx
  275. - plat/imx/imx
  276. subsections:
  277. - title: i.MX 8M
  278. scope: imx8m
  279. deprecated:
  280. - plat/imx8m
  281. - plat/imx/imx8m
  282. subsections:
  283. - title: i.MX 8M Nano
  284. scope: imx8mn
  285. deprecated:
  286. - plat/imx/imx8m/imx8mn
  287. - title: i.MX 8M Mini
  288. scope: imx8mm
  289. deprecated:
  290. - plat/imx/imx8m/imx8mm
  291. - title: i.MX 8M Plus
  292. scope: imx8mp
  293. deprecated:
  294. - plat/imx/imx8m/imx8mp
  295. - title: i.MX 8Q
  296. scope: imx8mq
  297. deprecated:
  298. - plat/imx/imx8m/imx8mq
  299. - title: i.MX 8
  300. scope: imx8
  301. - title: i.MX 9
  302. scope: imx9
  303. subsections:
  304. - title: i.MX93
  305. scope: imx93
  306. - title: Layerscape
  307. scope: layerscape
  308. deprecated:
  309. - docs/nxp/layerscape
  310. subsections:
  311. - title: LS1028A
  312. scope: ls1028a
  313. deprecated:
  314. - plat/nxp/ls1028a
  315. subsections:
  316. - title: LS1028ARDB
  317. scope: ls1028ardb
  318. deprecated:
  319. - plat/nxp/ls1028ardb
  320. - title: LS1043A
  321. scope: ls1043a
  322. deprecated:
  323. - plat/nxp/ls1043a
  324. subsections:
  325. - title: LS1043ARDB
  326. scope: ls1043ardb
  327. deprecated:
  328. - plat/nxp/ls1043ardb
  329. - title: LX2
  330. scope: lx2
  331. deprecated:
  332. - plat/nxp/lx2
  333. subsections:
  334. - title: LX216
  335. scope: lx216
  336. deprecated:
  337. - plat/nxp/lx216x
  338. subsections:
  339. - title: LX2160
  340. scope: lx2160
  341. deprecated:
  342. - plat/soc-lx2160
  343. - title: LS1046A
  344. scope: ls1046a
  345. subsections:
  346. - title: LS1046ARDB
  347. scope: ls1046ardb
  348. - title: LS1046AFRWY
  349. scope: ls1046afrwy
  350. - title: LS1046AQDS
  351. scope: ls1046aqds
  352. - title: LS1088A
  353. scope: ls1088a
  354. subsections:
  355. - title: LS1088ARDB
  356. scope: ls1088ardb
  357. - title: LS1088AQDS
  358. scope: ls1088aqds
  359. - title: QEMU
  360. scope: qemu
  361. deprecated:
  362. - plat/qemu
  363. subsections:
  364. - title: SBSA
  365. scope: qemu-sbsa
  366. deprecated:
  367. - qemu_sbsa
  368. - title: QTI
  369. scope: qti
  370. deprecated:
  371. - plat/qti
  372. subsections:
  373. - title: SC1780
  374. scope: sc7180
  375. deprecated:
  376. - plat/qti/sc7180
  377. - title: SC7280
  378. scope: sc7280
  379. deprecated:
  380. - plat/qti/sc7280
  381. - title: MSM8916
  382. scope: msm8916
  383. - title: Raspberry Pi
  384. scope: rpi
  385. subsections:
  386. - title: Raspberry Pi 3
  387. scope: rpi3
  388. - title: Raspberry Pi 4
  389. scope: rpi4
  390. - title: Renesas
  391. scope: renesas
  392. subsections:
  393. - title: R-Car
  394. scope: rcar
  395. deprecated:
  396. - plat/rcar
  397. subsections:
  398. - title: R-Car 3
  399. scope: rcar3
  400. deprecated:
  401. - plat/rcar3
  402. - title: Rockchip
  403. scope: rockchip
  404. subsections:
  405. - title: RK3399
  406. scope: rk3399
  407. deprecated:
  408. - rockchip/rk3399
  409. - rk3399/suspend
  410. - title: Socionext
  411. scope: socionext
  412. subsections:
  413. - title: Synquacer
  414. scope: synquacer
  415. deprecated:
  416. - plat/synquacer
  417. - title: ST
  418. scope: st
  419. deprecated:
  420. - plat/st
  421. subsections:
  422. - title: STM32MP1
  423. scope: stm32mp1
  424. deprecated:
  425. - plat/st/stm32mp1
  426. subsections:
  427. - title: STM32MP13
  428. scope: stm32mp13
  429. - title: STM32MP15
  430. scope: stm32mp15
  431. - title: STM32MP2
  432. scope: stm32mp2
  433. - title: Texas Instruments
  434. scope: ti
  435. subsections:
  436. - title: K3
  437. scope: k3
  438. deprecated:
  439. - ti-k3
  440. - title: Xilinx
  441. scope: xilinx
  442. deprecated:
  443. - plat/xilinx
  444. subsections:
  445. - title: DCC (Debug Communication Channel)
  446. scope: dcc
  447. - title: Versal
  448. scope: versal
  449. deprecated:
  450. - plat/xilinx/versal/include
  451. - plat/xilinx/versal
  452. - plat/versal
  453. subsections:
  454. - title: Versal NET
  455. scope: versal-net
  456. deprecated:
  457. - versal_net
  458. - title: ZynqMP
  459. scope: zynqmp
  460. deprecated:
  461. - plat/zynqmp
  462. - plat/xilinx/zynqmp
  463. - title: Nuvoton
  464. scope: nuvoton
  465. subsections:
  466. - title: npcm845x
  467. scope: npcm845x
  468. - title: Bootloader Images
  469. scope: bl
  470. deprecated:
  471. - bl_common
  472. subsections:
  473. - title: BL1
  474. scope: bl1
  475. - title: BL2
  476. scope: bl2
  477. - title: BL31
  478. scope: bl31
  479. - title: BL32
  480. scope: bl32
  481. subsections:
  482. - title: TSP
  483. scope: tsp
  484. - title: Services
  485. scope: services
  486. subsections:
  487. - title: FF-A
  488. scope: ff-a
  489. deprecated:
  490. - ffa
  491. - title: RME
  492. scope: rme
  493. deprecated:
  494. - rme/fid
  495. subsections:
  496. - title: TRP
  497. scope: trp
  498. - title: RMMD
  499. scope: rmmd
  500. - title: RMM
  501. scope: rmm
  502. - title: SPM
  503. scope: spm
  504. subsections:
  505. - title: EL3 SPM
  506. scope: el3-spm
  507. - title: EL3 SPMC
  508. scope: el3-spmc
  509. deprecated:
  510. - spmc
  511. - title: SPMD
  512. scope: spmd
  513. - title: SPM MM
  514. scope: spm-mm
  515. - title: DRTM
  516. scope: drtm
  517. - title: TRNG
  518. scope: trng
  519. - title: ERRATA ABI
  520. scope: errata-abi
  521. deprecated:
  522. - errata_abi
  523. - title: Libraries
  524. scope: lib
  525. subsections:
  526. - title: CPU Support
  527. scope: cpus
  528. deprecated:
  529. - cpu
  530. - errata
  531. - errata_report
  532. - title: EL3 Runtime
  533. scope: el3-runtime
  534. deprecated:
  535. - el3_runtime
  536. subsections:
  537. - title: Context Management
  538. scope: cm
  539. - title: RAS
  540. scope: ras
  541. - title: FCONF
  542. scope: fconf
  543. - title: MPMM
  544. scope: mpmm
  545. - title: OP-TEE
  546. scope: optee
  547. deprecated:
  548. - lib/optee
  549. - title: PSCI
  550. scope: psci
  551. - title: GPT
  552. scope: gpt
  553. deprecated:
  554. - gpt_rme
  555. - title: SMCCC
  556. scope: smccc
  557. - title: Translation Tables
  558. scope: xlat
  559. - title: C Standard Library
  560. scope: libc
  561. - title: Locks
  562. scope: locks
  563. - title: PSA
  564. scope: psa
  565. deprecated:
  566. - lib/psa
  567. - title: Context Management
  568. scope: context-mgmt
  569. deprecated:
  570. - context mgmt
  571. - title: Semihosting
  572. scope: semihosting
  573. - title: Firmware Handoff
  574. scope: handoff
  575. - title: Drivers
  576. subsections:
  577. - title: Authentication
  578. scope: auth
  579. deprecated:
  580. - driver/auth
  581. subsections:
  582. - title: CryptoCell-713
  583. scope: cc-713
  584. - title: Crypto
  585. scope: crypto
  586. - title: mbedTLS
  587. scope: mbedtls
  588. - title: mbedTLS-PSA
  589. scope: mbedtls-psa
  590. - title: Console
  591. scope: console
  592. - title: Generic Clock
  593. scope: clk
  594. - title: FWU
  595. scope: fwu
  596. deprecated:
  597. - fwu_metadata
  598. - title: I/O
  599. scope: io
  600. subsections:
  601. - title: MTD
  602. scope: mtd
  603. deprecated:
  604. - io_mtd
  605. - title: Measured Boot
  606. scope: measured-boot
  607. deprecated:
  608. - measured boot
  609. - measured_boot
  610. - title: MMC
  611. scope: mmc
  612. deprecated:
  613. - drivers/mmc
  614. - title: MTD
  615. scope: mtd
  616. deprecated:
  617. - drivers/mtd
  618. subsections:
  619. - title: NAND
  620. scope: nand
  621. subsections:
  622. - title: SPI NAND
  623. scope: spi-nand
  624. deprecated:
  625. - spi_nand
  626. - title: GUID Partition Tables Support
  627. scope: guid-partition
  628. deprecated:
  629. - partition
  630. - title: SCMI
  631. scope: scmi
  632. deprecated:
  633. - scmi_common
  634. - drivers/scmi-msg
  635. - scmi-msg
  636. - title: UFS
  637. scope: ufs
  638. - title: Arm
  639. scope: arm-drivers
  640. subsections:
  641. - title: Ethos-N
  642. scope: ethos-n
  643. deprecated:
  644. - drivers/arm/ethosn
  645. - title: GIC
  646. scope: gic
  647. subsections:
  648. - title: GICv3
  649. scope: gicv3
  650. deprecated:
  651. - gicv3/multichip
  652. subsections:
  653. - title: GIC-600
  654. scope: gic600
  655. - title: GIC-600AE
  656. scope: gic600ae
  657. - title: GICv2
  658. scope: gicv2
  659. - title: SMMU
  660. scope: smmu
  661. - title: MHU
  662. scope: mhu
  663. deprecated:
  664. - drivers/arm/mhu
  665. - title: RSS
  666. scope: rss
  667. deprecated:
  668. - drivers/arm/rss
  669. - title: TZC
  670. scope: tzc
  671. subsections:
  672. - title: TZC-400
  673. scope: tzc400
  674. deprecated:
  675. - drivers/tzc400
  676. - title: TZC-380
  677. scope: tzc380
  678. deprecated:
  679. - drivers/tzc380
  680. - title: SBSA
  681. scope: sbsa
  682. - title: Marvell
  683. scope: marvell-drivers
  684. subsections:
  685. - title: COMPHY
  686. scope: marvell-comphy
  687. deprecated:
  688. - drivers/marvell/comphy
  689. subsections:
  690. - title: Armada 3700
  691. scope: marvell-comphy-3700
  692. deprecated:
  693. - drivers/marvell/comphy-3700
  694. - title: CP110
  695. scope: marvell-comphy-cp110
  696. deprecated:
  697. - drivers/marvell/comphy-cp110
  698. - title: UART
  699. scope: marvell-uart
  700. deprecated:
  701. - plat/marvell/uart
  702. - title: Armada
  703. scope: armada-drivers
  704. subsections:
  705. - title: A3K
  706. scope: a3k-drivers
  707. subsections:
  708. - title: A3720
  709. scope: a3720-uart
  710. deprecated:
  711. - plat/marvell/a3720/uart
  712. - title: MediaTek
  713. scope: mediatek-drivers
  714. subsections:
  715. - title: APU
  716. scope: mediatek-apu
  717. deprecated:
  718. - plat/mediatek/apu
  719. - title: EMI MPU
  720. scope: mediatek-emi-mpu
  721. deprecated:
  722. - plat/mediatek/mpu
  723. - title: PMIC Wrapper
  724. scope: mediatek-pmic-wrapper
  725. deprecated:
  726. - plat/mediatek/pmic_wrap
  727. - title: MT8192
  728. scope: mt8192-drivers
  729. subsections:
  730. - title: SPM
  731. scope: mt8192-spm
  732. deprecated:
  733. - mediatek/mt8192/spm
  734. - title: NXP
  735. scope: nxp-drivers
  736. subsections:
  737. - title: DCFG
  738. scope: nxp-dcfg
  739. deprecated:
  740. - driver/nxp/dcfg
  741. - title: FLEXSPI
  742. scope: flexspi
  743. deprecated:
  744. - include/drivers/flexspi
  745. - driver/nxp/xspi
  746. - title: SCFG
  747. scope: nxp-scfg
  748. deprecated:
  749. - nxp/scfg
  750. - title: SFP
  751. scope: nxp-sfp
  752. deprecated:
  753. - drivers/nxp/sfp
  754. - title: QSPI
  755. scope: nxp-qspi
  756. - title: NXP Crypto
  757. scope: nxp-crypto
  758. - title: DDR
  759. scope: nxp-ddr
  760. - title: GIC
  761. scope: nxp-gic
  762. - title: CSU
  763. scope: nxp-csu
  764. - title: IFC NAND
  765. scope: nxp-ifc-nand
  766. - title: IFC NOR
  767. scope: nxp-ifc-nor
  768. - title: TZC-380
  769. scope: nxp-tzc380
  770. - title: TRDC
  771. scope: imx-trdc
  772. - title: Renesas
  773. scope: renesas-drivers
  774. subsections:
  775. - title: R-Car3
  776. scope: rcar3-drivers
  777. deprecated:
  778. - drivers/rcar3
  779. - title: ST
  780. scope: st-drivers
  781. deprecated:
  782. - drivers/st
  783. subsections:
  784. - title: BSEC
  785. scope: st-bsec
  786. - title: Clock
  787. scope: st-clock
  788. deprecated:
  789. - stm32mp_clk
  790. - drivers/st/clk
  791. - stm32mp1_clk
  792. - title: Crypto
  793. scope: st-crypto
  794. - title: DDR
  795. scope: st-ddr
  796. - title: I/O
  797. scope: st-io-drivers
  798. subsections:
  799. - title: STM32 Image
  800. scope: st-io-stm32image
  801. deprecated:
  802. - io-stm32image
  803. - io_stm32image
  804. - title: I2C
  805. scope: st-i2c
  806. - title: FMC
  807. scope: st-fmc
  808. - title: GPIO
  809. scope: st-gpio
  810. - title: SDMMC2
  811. scope: st-sdmmc2
  812. deprecated:
  813. - stm32_sdmmc2
  814. - title: ST PMIC
  815. scope: st-pmic
  816. deprecated:
  817. - drivers/st/pmic
  818. - title: STPMIC1
  819. scope: stpmic1
  820. - title: Regulator
  821. scope: st-regulator
  822. - title: Reset
  823. scope: st-reset
  824. - title: SPI
  825. scope: st-spi
  826. - title: UART
  827. scope: st-uart
  828. subsections:
  829. - title: STM32 Console
  830. scope: stm32-console
  831. deprecated:
  832. - stm32_console
  833. - title: USB
  834. scope: st-usb
  835. deprecated:
  836. - drivers/st/usb
  837. - title: Watchdog
  838. scope: st-iwdg
  839. - title: USB
  840. scope: usb
  841. deprecated:
  842. - drivers/usb
  843. - title: Miscellaneous
  844. subsections:
  845. - title: AArch64
  846. scope: aarch64
  847. - title: Debug
  848. scope: debug
  849. deprecated:
  850. - common/debug
  851. - title: CRC32
  852. scope: crc32
  853. subsections:
  854. - title: Hardware CRC32
  855. scope: hw-crc32
  856. deprecated:
  857. - hw_crc
  858. - hw_crc32
  859. - title: Software CRC32
  860. scope: sw-crc32
  861. deprecated:
  862. - sw_crc32
  863. - title: DT Bindings
  864. scope: dt-bindings
  865. - title: FDT Wrappers
  866. scope: fdt-wrappers
  867. - title: FDTs
  868. scope: fdts
  869. deprecated:
  870. - fdt
  871. subsections:
  872. - title: Morello
  873. scope: morello-fdts
  874. deprecated:
  875. - fdts/morello
  876. - title: STM32MP1
  877. scope: stm32mp1-fdts
  878. deprecated:
  879. - fdts stm32mp1
  880. subsections:
  881. - title: STM32MP13
  882. scope: stm32mp13-fdts
  883. - title: STM32MP15
  884. scope: stm32mp15-fdts
  885. - title: STM32MP2
  886. scope: stm32mp2-fdts
  887. - title: PIE
  888. scope: pie
  889. - title: PIE/POR
  890. scope: pie/por
  891. - title: Security
  892. scope: security
  893. - title: SDEI
  894. scope: sdei
  895. - title: TBBR
  896. scope: tbbr
  897. - title: NXP
  898. subsections:
  899. - title: OCRAM
  900. scope: nxp-ocram
  901. deprecated:
  902. - nxp/common/ocram
  903. - title: PSCI
  904. scope: nxp-psci
  905. deprecated:
  906. - plat/nxp/common/psci
  907. - title: UUID
  908. scope: uuid
  909. - title: Documentation
  910. scope: docs
  911. deprecated:
  912. - doc
  913. subsections:
  914. - title: Changelog
  915. scope: changelog
  916. - title: Commit Style
  917. scope: commit-style
  918. - title: Contribution Guidelines
  919. scope: contributing
  920. deprecated:
  921. - contribution-guidelines
  922. - docs-contributing.rst
  923. - title: Maintainers
  924. scope: maintainers
  925. - title: Prerequisites
  926. scope: prerequisites
  927. - title: Threat Model
  928. scope: threat-model
  929. - title: Porting Guide
  930. scope: porting
  931. - title: Build System
  932. scope: build
  933. deprecated:
  934. - makefile
  935. - Makefile
  936. subsections:
  937. - title: Git Hooks
  938. scope: hooks
  939. deprecated:
  940. - git-hooks
  941. - title: Tools
  942. subsections:
  943. - title: STM32 Image
  944. scope: stm32image
  945. deprecated:
  946. - tools/stm32image
  947. - title: NXP Tools
  948. scope: nxp-tools
  949. - title: Firmware Image Package Tool
  950. scope: fiptool
  951. - title: Secure Partition Tool
  952. scope: sptool
  953. - title: Certificate Creation Tool
  954. scope: cert-create
  955. - title: Memory Mapping Tool
  956. scope: memmap
  957. deprecated:
  958. - cert_create
  959. - title: Dependencies
  960. scope: deps
  961. subsections:
  962. - title: checkpatch
  963. scope: checkpatch
  964. - title: commitlint
  965. scope: commitlint
  966. - title: Compiler runtime libraries
  967. scope: compiler-rt
  968. - title: libfdt
  969. scope: libfdt
  970. - title: Node Package Manager (NPM)
  971. scope: npm
  972. - title: Poetry
  973. scope: poetry
  974. - title: zlib
  975. scope: zlib