Bo Shen | cc30b78 | 2012-06-27 21:58:20 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2012 |
| 3 | * Atmel Semiconductor <www.atmel.com> |
| 4 | * Written-by: Bo Shen <voice.shen@atmel.com> |
| 5 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 6 | * SPDX-License-Identifier: GPL-2.0+ |
Bo Shen | cc30b78 | 2012-06-27 21:58:20 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
Wenyou Yang | 17b68b5 | 2016-08-05 08:57:35 +0800 | [diff] [blame] | 10 | #include <clk.h> |
| 11 | #include <dm.h> |
Bo Shen | cc30b78 | 2012-06-27 21:58:20 +0000 | [diff] [blame] | 12 | #include <usb.h> |
| 13 | #include <asm/io.h> |
Bo Shen | cc30b78 | 2012-06-27 21:58:20 +0000 | [diff] [blame] | 14 | #include <asm/arch/clk.h> |
| 15 | |
| 16 | #include "ehci.h" |
Bo Shen | cc30b78 | 2012-06-27 21:58:20 +0000 | [diff] [blame] | 17 | |
Wenyou Yang | 17b68b5 | 2016-08-05 08:57:35 +0800 | [diff] [blame] | 18 | DECLARE_GLOBAL_DATA_PTR; |
| 19 | |
| 20 | #ifndef CONFIG_DM_USB |
| 21 | |
Troy Kisky | 127efc4 | 2013-10-10 15:27:57 -0700 | [diff] [blame] | 22 | int ehci_hcd_init(int index, enum usb_init_type init, |
| 23 | struct ehci_hccr **hccr, struct ehci_hcor **hcor) |
Bo Shen | cc30b78 | 2012-06-27 21:58:20 +0000 | [diff] [blame] | 24 | { |
Bo Shen | cc30b78 | 2012-06-27 21:58:20 +0000 | [diff] [blame] | 25 | /* Enable UTMI PLL */ |
Wenyou Yang | b55b596 | 2016-02-02 11:11:53 +0800 | [diff] [blame] | 26 | if (at91_upll_clk_enable()) |
| 27 | return -1; |
Bo Shen | cc30b78 | 2012-06-27 21:58:20 +0000 | [diff] [blame] | 28 | |
| 29 | /* Enable USB Host clock */ |
Bo Shen | 97b2043 | 2014-08-06 17:24:57 +0800 | [diff] [blame] | 30 | at91_periph_clk_enable(ATMEL_ID_UHPHS); |
Bo Shen | cc30b78 | 2012-06-27 21:58:20 +0000 | [diff] [blame] | 31 | |
Lucas Stach | 676ae06 | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 32 | *hccr = (struct ehci_hccr *)ATMEL_BASE_EHCI; |
| 33 | *hcor = (struct ehci_hcor *)((uint32_t)*hccr + |
| 34 | HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase))); |
Bo Shen | cc30b78 | 2012-06-27 21:58:20 +0000 | [diff] [blame] | 35 | |
| 36 | return 0; |
| 37 | } |
| 38 | |
Lucas Stach | 676ae06 | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 39 | int ehci_hcd_stop(int index) |
Bo Shen | cc30b78 | 2012-06-27 21:58:20 +0000 | [diff] [blame] | 40 | { |
Bo Shen | cc30b78 | 2012-06-27 21:58:20 +0000 | [diff] [blame] | 41 | /* Disable USB Host Clock */ |
Bo Shen | 97b2043 | 2014-08-06 17:24:57 +0800 | [diff] [blame] | 42 | at91_periph_clk_disable(ATMEL_ID_UHPHS); |
Bo Shen | cc30b78 | 2012-06-27 21:58:20 +0000 | [diff] [blame] | 43 | |
Bo Shen | cc30b78 | 2012-06-27 21:58:20 +0000 | [diff] [blame] | 44 | /* Disable UTMI PLL */ |
Wenyou Yang | b55b596 | 2016-02-02 11:11:53 +0800 | [diff] [blame] | 45 | if (at91_upll_clk_disable()) |
| 46 | return -1; |
Bo Shen | cc30b78 | 2012-06-27 21:58:20 +0000 | [diff] [blame] | 47 | |
| 48 | return 0; |
| 49 | } |
Wenyou Yang | 17b68b5 | 2016-08-05 08:57:35 +0800 | [diff] [blame] | 50 | |
| 51 | #else |
| 52 | |
| 53 | struct ehci_atmel_priv { |
| 54 | struct ehci_ctrl ehci; |
| 55 | }; |
| 56 | |
| 57 | static int ehci_atmel_enable_clk(struct udevice *dev) |
| 58 | { |
Wenyou Yang | 17b68b5 | 2016-08-05 08:57:35 +0800 | [diff] [blame] | 59 | struct clk clk; |
Wenyou Yang | 17b68b5 | 2016-08-05 08:57:35 +0800 | [diff] [blame] | 60 | int ret; |
| 61 | |
| 62 | ret = clk_get_by_index(dev, 0, &clk); |
| 63 | if (ret) |
| 64 | return ret; |
| 65 | |
| 66 | ret = clk_enable(&clk); |
| 67 | if (ret) |
| 68 | return ret; |
| 69 | |
| 70 | ret = clk_get_by_index(dev, 1, &clk); |
| 71 | if (ret) |
| 72 | return -EINVAL; |
| 73 | |
Wenyou Yang | 17b68b5 | 2016-08-05 08:57:35 +0800 | [diff] [blame] | 74 | ret = clk_enable(&clk); |
| 75 | if (ret) |
| 76 | return ret; |
| 77 | |
| 78 | clk_free(&clk); |
| 79 | |
| 80 | return 0; |
| 81 | } |
| 82 | |
| 83 | static int ehci_atmel_probe(struct udevice *dev) |
| 84 | { |
| 85 | struct ehci_hccr *hccr; |
| 86 | struct ehci_hcor *hcor; |
| 87 | fdt_addr_t hcd_base; |
| 88 | int ret; |
| 89 | |
| 90 | ret = ehci_atmel_enable_clk(dev); |
| 91 | if (ret) { |
| 92 | debug("Failed to enable USB Host clock\n"); |
| 93 | return ret; |
| 94 | } |
| 95 | |
| 96 | /* |
| 97 | * Get the base address for EHCI controller from the device node |
| 98 | */ |
Simon Glass | a821c4a | 2017-05-17 17:18:05 -0600 | [diff] [blame] | 99 | hcd_base = devfdt_get_addr(dev); |
Wenyou Yang | 17b68b5 | 2016-08-05 08:57:35 +0800 | [diff] [blame] | 100 | if (hcd_base == FDT_ADDR_T_NONE) { |
| 101 | debug("Can't get the EHCI register base address\n"); |
| 102 | return -ENXIO; |
| 103 | } |
| 104 | |
| 105 | hccr = (struct ehci_hccr *)hcd_base; |
| 106 | hcor = (struct ehci_hcor *) |
| 107 | ((u32)hccr + HC_LENGTH(ehci_readl(&hccr->cr_capbase))); |
| 108 | |
| 109 | debug("echi-atmel: init hccr %x and hcor %x hc_length %d\n", |
| 110 | (u32)hccr, (u32)hcor, |
| 111 | (u32)HC_LENGTH(ehci_readl(&hccr->cr_capbase))); |
| 112 | |
| 113 | return ehci_register(dev, hccr, hcor, NULL, 0, USB_INIT_HOST); |
| 114 | } |
| 115 | |
Wenyou Yang | 17b68b5 | 2016-08-05 08:57:35 +0800 | [diff] [blame] | 116 | static const struct udevice_id ehci_usb_ids[] = { |
| 117 | { .compatible = "atmel,at91sam9g45-ehci", }, |
| 118 | { } |
| 119 | }; |
| 120 | |
| 121 | U_BOOT_DRIVER(ehci_atmel) = { |
| 122 | .name = "ehci_atmel", |
| 123 | .id = UCLASS_USB, |
| 124 | .of_match = ehci_usb_ids, |
| 125 | .probe = ehci_atmel_probe, |
Masahiro Yamada | 4052734 | 2016-09-06 22:17:34 +0900 | [diff] [blame] | 126 | .remove = ehci_deregister, |
Wenyou Yang | 17b68b5 | 2016-08-05 08:57:35 +0800 | [diff] [blame] | 127 | .ops = &ehci_usb_ops, |
| 128 | .platdata_auto_alloc_size = sizeof(struct usb_platdata), |
| 129 | .priv_auto_alloc_size = sizeof(struct ehci_atmel_priv), |
| 130 | .flags = DM_FLAG_ALLOC_PRIV_DMA, |
| 131 | }; |
| 132 | |
| 133 | #endif |