In document, there is information about Rx interrupt (RxF Interrupt, RxBD busy Interrupt) but I could not find information on Tx interrupt. How to check for Tx complete event or Tx ready event?
Solved! Go to Solution.
unfortunately there is no dedicate interrupt to handle what you want,
please follow to the next link in order to get an idea to develop your own interrupt
https://developer.arm.com/documentation/den0024/a/AArch64-Exception-Handling/Interrupt-handling
You can use theBSYfield in theFMBM_TST—Tx Statusregister.
How to enable interrupt for this field? I could not find interrupt details in document.
Not using LPUART. I am using Ethernet - Independent mode. Any Tx interrupt available for Ethernet?
unfortunately there is no dedicate interrupt to handle what you want,
please follow to the next link in order to get an idea to develop your own interrupt
https://developer.arm.com/documentation/den0024/a/AArch64-Exception-Handling/Interrupt-handling
You can use the BSY field in the FMBM_TST—Tx Status register.
Please go to the section BMI Tx Port Registers in the LS1046 DPAA reference manual, page 552
use the next link for the DPAA
if you are using LPUART you can read the field TXEMPT in the LPUART FIFO Register.
Please go to the section 24.3.7 LPUART FIFO Register (LPUARTx_FIFO) in the reference manual to get more info about it.