[components][drivers]close can irq before release fifo
原来的CAN close中先释放fifo后关闭CAN中断,可能导致释放fifo后且关闭CAN中断前来CAN中断,此时rt_hw_can_isr可能在RT_ASSERT(tx/rx_fifo != RT_NULL)断言失败
This commit is contained in:
parent
6ad0b2bd09
commit
be699795f8
|
@ -407,20 +407,24 @@ static rt_err_t rt_can_close(struct rt_device *dev)
|
||||||
{
|
{
|
||||||
struct rt_can_rx_fifo *rx_fifo;
|
struct rt_can_rx_fifo *rx_fifo;
|
||||||
|
|
||||||
|
/* clear can rx interrupt */
|
||||||
|
can->ops->control(can, RT_DEVICE_CTRL_CLR_INT, (void *)RT_DEVICE_FLAG_INT_RX);
|
||||||
|
|
||||||
rx_fifo = (struct rt_can_rx_fifo *)can->can_rx;
|
rx_fifo = (struct rt_can_rx_fifo *)can->can_rx;
|
||||||
RT_ASSERT(rx_fifo != RT_NULL);
|
RT_ASSERT(rx_fifo != RT_NULL);
|
||||||
|
|
||||||
rt_free(rx_fifo);
|
rt_free(rx_fifo);
|
||||||
dev->open_flag &= ~RT_DEVICE_FLAG_INT_RX;
|
dev->open_flag &= ~RT_DEVICE_FLAG_INT_RX;
|
||||||
can->can_rx = RT_NULL;
|
can->can_rx = RT_NULL;
|
||||||
/* clear can rx interrupt */
|
|
||||||
can->ops->control(can, RT_DEVICE_CTRL_CLR_INT, (void *)RT_DEVICE_FLAG_INT_RX);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (dev->open_flag & RT_DEVICE_FLAG_INT_TX)
|
if (dev->open_flag & RT_DEVICE_FLAG_INT_TX)
|
||||||
{
|
{
|
||||||
struct rt_can_tx_fifo *tx_fifo;
|
struct rt_can_tx_fifo *tx_fifo;
|
||||||
|
|
||||||
|
/* clear can tx interrupt */
|
||||||
|
can->ops->control(can, RT_DEVICE_CTRL_CLR_INT, (void *)RT_DEVICE_FLAG_INT_TX);
|
||||||
|
|
||||||
tx_fifo = (struct rt_can_tx_fifo *)can->can_tx;
|
tx_fifo = (struct rt_can_tx_fifo *)can->can_tx;
|
||||||
RT_ASSERT(tx_fifo != RT_NULL);
|
RT_ASSERT(tx_fifo != RT_NULL);
|
||||||
|
|
||||||
|
@ -428,8 +432,6 @@ static rt_err_t rt_can_close(struct rt_device *dev)
|
||||||
rt_free(tx_fifo);
|
rt_free(tx_fifo);
|
||||||
dev->open_flag &= ~RT_DEVICE_FLAG_INT_TX;
|
dev->open_flag &= ~RT_DEVICE_FLAG_INT_TX;
|
||||||
can->can_tx = RT_NULL;
|
can->can_tx = RT_NULL;
|
||||||
/* clear can tx interrupt */
|
|
||||||
can->ops->control(can, RT_DEVICE_CTRL_CLR_INT, (void *)RT_DEVICE_FLAG_INT_TX);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
can->ops->control(can, RT_DEVICE_CTRL_CLR_INT, (void *)RT_DEVICE_CAN_INT_ERR);
|
can->ops->control(can, RT_DEVICE_CTRL_CLR_INT, (void *)RT_DEVICE_CAN_INT_ERR);
|
||||||
|
|
Loading…
Reference in New Issue