ehci-atmel.c 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /*
  2. * (C) Copyright 2012
  3. * Atmel Semiconductor <www.atmel.com>
  4. * Written-by: Bo Shen <voice.shen@atmel.com>
  5. *
  6. * See file CREDITS for list of people who contributed to this
  7. * project.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  22. * MA 02110-1301 USA
  23. */
  24. #include <common.h>
  25. #include <watchdog.h>
  26. #include <usb.h>
  27. #include <asm/io.h>
  28. #include <asm/arch/hardware.h>
  29. #include <asm/arch/at91_pmc.h>
  30. #include <asm/arch/clk.h>
  31. #include "ehci.h"
  32. #include "ehci-core.h"
  33. /* Enable UTMI PLL time out 500us
  34. * 10 times as datasheet specified
  35. */
  36. #define EN_UPLL_TIMEOUT 500UL
  37. int ehci_hcd_init(void)
  38. {
  39. at91_pmc_t *pmc = (at91_pmc_t *)ATMEL_BASE_PMC;
  40. ulong start_time, tmp_time;
  41. start_time = get_timer(0);
  42. /* Enable UTMI PLL */
  43. writel(AT91_PMC_UPLLEN | AT91_PMC_BIASEN, &pmc->uckr);
  44. while ((readl(&pmc->sr) & AT91_PMC_LOCKU) != AT91_PMC_LOCKU) {
  45. WATCHDOG_RESET();
  46. tmp_time = get_timer(0);
  47. if ((tmp_time - start_time) > EN_UPLL_TIMEOUT) {
  48. printf("ERROR: failed to enable UPLL\n");
  49. return -1;
  50. }
  51. }
  52. /* Enable USB Host clock */
  53. writel(1 << ATMEL_ID_UHPHS, &pmc->pcer);
  54. hccr = (struct ehci_hccr *)ATMEL_BASE_EHCI;
  55. hcor = (struct ehci_hcor *)((uint32_t)hccr +
  56. HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
  57. return 0;
  58. }
  59. int ehci_hcd_stop(void)
  60. {
  61. at91_pmc_t *pmc = (at91_pmc_t *)ATMEL_BASE_PMC;
  62. ulong start_time, tmp_time;
  63. /* Disable USB Host Clock */
  64. writel(1 << ATMEL_ID_UHPHS, &pmc->pcdr);
  65. start_time = get_timer(0);
  66. /* Disable UTMI PLL */
  67. writel(readl(&pmc->uckr) & ~AT91_PMC_UPLLEN, &pmc->uckr);
  68. while ((readl(&pmc->sr) & AT91_PMC_LOCKU) == AT91_PMC_LOCKU) {
  69. WATCHDOG_RESET();
  70. tmp_time = get_timer(0);
  71. if ((tmp_time - start_time) > EN_UPLL_TIMEOUT) {
  72. printf("ERROR: failed to stop UPLL\n");
  73. return -1;
  74. }
  75. }
  76. return 0;
  77. }