匿名
未登录
登录
百问网嵌入式Linux wiki
搜索
查看“USART internal peripheral”的源代码
来自百问网嵌入式Linux wiki
名字空间
页面
讨论
更多
更多
页面选项
Read
查看源代码
历史
←
USART internal peripheral
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看与复制此页面的源代码。
==Article purpose== The purpose of this article is to: * briefly introduce the USART peripheral and its main features * indicate the level of security supported by this hardware block * explain how each instance can be allocated to the three runtime contexts and linked to the corresponding software components * explain, when needed, how to configure the USART peripheral. ==Peripheral overview== The '''USART''' peripheral is used to interconnect STM32 MPU devices with other systems, typically via RS232 or RS485 protocols. In addition, the USART supports the '''Synchronous''' mode that can be used for smartcard interfacing or SPI master/slave operation. The '''UART''' peripheral is similar to the USART but does not support the Synchronous mode. High-speed data communications can be achieved by using the [[DMA internal peripheral]] for multibuffer configuration. ===Features=== Refer to [[STM32MP15 resources#Reference manuals|STM32MP15 reference manuals]] for the complete list of features, and to the software components, introduced below, to see which features are implemented. ===Security support=== USART1 is a '''secure''' instance (under [[ETZPC_internal_peripheral|ETZPC]] control).<br> The other UARTs and USARTs are '''non-secure''' instances. ==Peripheral usage and associated software== ===Boot time=== All USART (except USART1) and UART instances are boot devices that support serial boot for Flash programming with [[STM32CubeProgrammer]]. ===Runtime=== ====Overview==== The STM32 MPU devices feature four USART instances (supporting both Asynchronous and Synchronous modes), and four UART instances (supporting only Asynchronous mode). USART1 can be allocated to: * the Arm<sup>®</sup> Cortex<sup>®</sup>-A7 secure core to be used under OP-TEE with the [[OP-TEE_overview|USART OP-TEE driver]], typically to communicate with a smartcard. <br/> All USART and UART instances can be allocated to: * the Arm<sup>®</sup> Cortex<sup>®</sup>-A7 non-secure core to be used under Linux<sup>®</sup> with the [[Serial TTY_overview|tty framework]]. However, the Linux<sup>®</sup> kernel supports only the UART Asynchronous mode (Synchronous mode not supported). or * the Arm<sup>®</sup> Cortex<sup>®</sup>-M4 to be used with STM32Cube MPU Package with [[STM32CubeMP1 architecture|USART HAL driver]]. Both USART Synchronous and Asynchronous modes are supported by the STM32Cube MPU Package. {{InternalInfo| From a hardware point of view, USART1 can be configured as a non-secure peripheral in the ETZPC. However: * It is reset to the secure status by the RCC. This means that secure services are required to control it from Arm<sup>®</sup> Cortex<sup>®</sup>-A7 non-secure core, which is not possible from Arm<sup>®</sup> Cortex<sup>®</sup>-M4 side. The clock control from non-secure world is possible starting from STM32MP15 Rev.B. However the reset control remains secure. * The MDMA controller must be used with this instance whereas all other USART and UART instances are controlled via DMA1 or DMA2. For simplicity purposes, only the MDMA is shared between the Arm<sup>®</sup>Cortex<sup>®</sup>-A7 secure and the Arm<sup>®</sup>Cortex<sup>®</sup>-A7 non secure contexts.}} Chapter [[#Peripheral assignment|Peripheral assignment]] describes which peripheral instance can be assigned to which context. {{ReviewsComments| GeraldB W846: Above, the sentence "It is reset to the secure status by the RCC" was written by the technical writer but the meaning of my initial sentence was lost (I do not say that my initial sentence was perfect from english perspective :) ... but this version needs to be reworked and discussed with the TW)}} ====Software frameworks==== {{:Internal_peripherals_software_table_template}} | Low speed interface | [[USART_internal_peripheral|USART]] | [[OP-TEE_overview|USART OP-TEE driver]] | [[Serial TTY_overview|Linux serial/tty framework]] | [[STM32CubeMP1 architecture|STM32Cube USART driver]] | |- |} ====Peripheral configuration==== The configuration is applied by the firmware running in the context to which the peripheral is assigned. The configuration can be done alone via the [[STM32CubeMX]] tool for all internal peripherals, and then manually completed (particularly for external peripherals) according to the information given in the corresponding software framework article or, for Linux in the [[Serial TTY device tree configuration]] article. ====Peripheral assignment==== {{:Internal_peripherals_assignment_table_template}} <onlyinclude> | rowspan="8" | Low speed interface | rowspan="8" | [[USART_internal_peripheral|USART]] | USART1 | <span title="assignable peripheral" style="font-size:21px">☐</span> | <span title="assignable peripheral" style="font-size:21px">☐</span> | | Assignment (single choice) |- | USART2 | | <span title="assignable peripheral" style="font-size:21px">☐</span> | <span title="assignable peripheral" style="font-size:21px">☐</span> | Assignment (single choice) |- | USART3 | | <span title="assignable peripheral" style="font-size:21px">☐</span> | <span title="assignable peripheral" style="font-size:21px">☐</span> | Assignment (single choice) |- | UART4 | | <span title="assignable peripheral" style="font-size:21px">☐</span> | <span title="assignable peripheral" style="font-size:21px">☐</span> | Assignment (single choice). <br />Used for Linux<sup>®</sup> serial console on [[:Category:Getting_started_with_STM32MP1_boards|ST boards]]. |- | UART5 | | <span title="assignable peripheral" style="font-size:21px">☐</span> | <span title="assignable peripheral" style="font-size:21px">☐</span> | Assignment (single choice) |- | USART6 | | <span title="assignable peripheral" style="font-size:21px">☐</span> | <span title="assignable peripheral" style="font-size:21px">☐</span> | Assignment (single choice) |- | UART7 | | <span title="assignable peripheral" style="font-size:21px">☐</span> | <span title="assignable peripheral" style="font-size:21px">☐</span> | Assignment (single choice) |- | UART8 | | <span title="assignable peripheral" style="font-size:21px">☐</span> | <span title="assignable peripheral" style="font-size:21px">☐</span> | Assignment (single choice) |- </onlyinclude> |} ==How to go further== Additional documentation on USART peripheral is available on st.com: * STM32 USART training <ref> Please refer to '''stm32f7_peripheral_usart''' document on st.com </ref> presents the STM32 Universal Synchronous/Asynchronous Receiver/Transmitter interface. * STM32 USART automatic baud rate detection <ref>[http://idp.st.com/dmsdownloader/downloadServlet/DM00327191_1_0?docname=DM00327191 STM32 USART automatic baud rate detection application note (AN4908)]</ref> presents STM32 USART automatic baud rate detection. ==References== <references/> <noinclude> [[Category:Low speed interface peripherals]] {{PublicationRequestId | 8315 | 2018-08-03 | AnneJ}} {{ArticleBasedOnModel | Internal peripheral article model}} {{ReviewsComments|JCT 1840: alignment needed with the last version of the model<br> [[Category:ToBeAlignedWithModel]] }} </noinclude>
该页面使用的模板:
Internal peripherals assignment table template
(
查看源代码
)
Internal peripherals software table template
(
查看源代码
)
模板:ArticleBasedOnModel
(
查看源代码
)
模板:InternalInfo
(
查看源代码
)
模板:PublicationRequestId
(
查看源代码
)
模板:ReviewsComments
(
查看源代码
)
返回至
USART internal peripheral
。
导航
导航
WIKI首页
官方店铺
资料下载
交流社区
所有页面
所有产品
MPU-Linux开发板
MCU-单片机开发板
Linux开发系列视频
单片机开发系列视频
所有模块配件
Wiki工具
Wiki工具
特殊页面
页面工具
页面工具
用户页面工具
更多
链入页面
相关更改
页面信息
页面日志