1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2007-2008
5 * Lead Tech Design <www.leadtechdesign.com>
9 * IMKO GmbH <www.imko.de>
15 #include <asm/hardware.h>
17 #include <linux/delay.h>
18 #include <linux/sizes.h>
19 #include <asm/arch/at91_rstc.h>
22 void at91_phy_reset(void)
25 unsigned long start = get_timer(0);
26 unsigned long const timeout = 1000; /* 1000ms */
27 at91_rstc_t *rstc = (at91_rstc_t *)ATMEL_BASE_RSTC;
29 erstl = readl(&rstc->mr) & AT91_RSTC_MR_ERSTL_MASK;
32 * Need to reset PHY -> 500ms reset
33 * Reset PHY by pulling the NRST line for 500ms to low. To do so
34 * disable user reset for low level on NRST pin and poll the NRST
35 * level in reset status register.
37 writel(AT91_RSTC_KEY | AT91_RSTC_MR_ERSTL(0x0D) |
38 AT91_RSTC_MR_URSTEN, &rstc->mr);
40 writel(AT91_RSTC_KEY | AT91_RSTC_CR_EXTRST, &rstc->cr);
42 /* Wait for end of hardware reset */
43 while (!(readl(&rstc->sr) & AT91_RSTC_SR_NRSTL)) {
44 /* avoid shutdown by watchdog */
48 /* timeout for not getting stuck in an endless loop */
49 if (get_timer(start) >= timeout) {
50 puts("*** ERROR: Timeout waiting for PHY reset!\n");
55 /* Restore NRST value */
56 writel(AT91_RSTC_KEY | erstl | AT91_RSTC_MR_URSTEN, &rstc->mr);