mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-16 18:04:48 +00:00
net: dwc_eth_qos: Set DMA_MODE SWR bit to reset the MAC
The driver currently only waits for DMA_MODE SWR bit to clear itself. This is insufficient e.g. on i.MX8M Plus, where the MAC must be reset before IOMUX GPR[1] content is latched into the MAC and used. Without the proper reset, the i.MX8M Plus MAC variant does not take the value in IOMUX GPR[1] into account, which makes it impossible e.g. to switch interface mode from RGMII to any other. Since proper reset is desired in general to put the block into defined state, always assert the DMA_MODE SWR bit before waiting for the bit to clear itself. Reviewed-by: Ramon Fried <rfried.dev@gmail.com> Signed-off-by: Marek Vasut <marex@denx.de>
This commit is contained in:
parent
ac19125f72
commit
a79de0808a
1 changed files with 6 additions and 0 deletions
|
@ -761,6 +761,12 @@ static int eqos_start(struct udevice *dev)
|
|||
|
||||
eqos->reg_access_ok = true;
|
||||
|
||||
/*
|
||||
* Assert the SWR first, the actually reset the MAC and to latch in
|
||||
* e.g. i.MX8M Plus GPR[1] content, which selects interface mode.
|
||||
*/
|
||||
setbits_le32(&eqos->dma_regs->mode, EQOS_DMA_MODE_SWR);
|
||||
|
||||
ret = wait_for_bit_le32(&eqos->dma_regs->mode,
|
||||
EQOS_DMA_MODE_SWR, false,
|
||||
eqos->config->swr_wait, false);
|
||||
|
|
Loading…
Add table
Reference in a new issue