blob: 2b138c515355f97481cb362490b495665b7e4c24 [file] [log] [blame]
Bo Shencc30b782012-06-27 21:58:20 +00001/*
2 * (C) Copyright 2012
3 * Atmel Semiconductor <www.atmel.com>
4 * Written-by: Bo Shen <voice.shen@atmel.com>
5 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Bo Shencc30b782012-06-27 21:58:20 +00007 */
8
9#include <common.h>
Wenyou Yang17b68b52016-08-05 08:57:35 +080010#include <clk.h>
11#include <dm.h>
Bo Shencc30b782012-06-27 21:58:20 +000012#include <usb.h>
13#include <asm/io.h>
Bo Shencc30b782012-06-27 21:58:20 +000014#include <asm/arch/clk.h>
15
16#include "ehci.h"
Bo Shencc30b782012-06-27 21:58:20 +000017
Wenyou Yang17b68b52016-08-05 08:57:35 +080018DECLARE_GLOBAL_DATA_PTR;
19
20#ifndef CONFIG_DM_USB
21
Troy Kisky127efc42013-10-10 15:27:57 -070022int ehci_hcd_init(int index, enum usb_init_type init,
23 struct ehci_hccr **hccr, struct ehci_hcor **hcor)
Bo Shencc30b782012-06-27 21:58:20 +000024{
Bo Shencc30b782012-06-27 21:58:20 +000025 /* Enable UTMI PLL */
Wenyou Yangb55b5962016-02-02 11:11:53 +080026 if (at91_upll_clk_enable())
27 return -1;
Bo Shencc30b782012-06-27 21:58:20 +000028
29 /* Enable USB Host clock */
Bo Shen97b20432014-08-06 17:24:57 +080030 at91_periph_clk_enable(ATMEL_ID_UHPHS);
Bo Shencc30b782012-06-27 21:58:20 +000031
Lucas Stach676ae062012-09-26 00:14:35 +020032 *hccr = (struct ehci_hccr *)ATMEL_BASE_EHCI;
33 *hcor = (struct ehci_hcor *)((uint32_t)*hccr +
34 HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase)));
Bo Shencc30b782012-06-27 21:58:20 +000035
36 return 0;
37}
38
Lucas Stach676ae062012-09-26 00:14:35 +020039int ehci_hcd_stop(int index)
Bo Shencc30b782012-06-27 21:58:20 +000040{
Bo Shencc30b782012-06-27 21:58:20 +000041 /* Disable USB Host Clock */
Bo Shen97b20432014-08-06 17:24:57 +080042 at91_periph_clk_disable(ATMEL_ID_UHPHS);
Bo Shencc30b782012-06-27 21:58:20 +000043
Bo Shencc30b782012-06-27 21:58:20 +000044 /* Disable UTMI PLL */
Wenyou Yangb55b5962016-02-02 11:11:53 +080045 if (at91_upll_clk_disable())
46 return -1;
Bo Shencc30b782012-06-27 21:58:20 +000047
48 return 0;
49}
Wenyou Yang17b68b52016-08-05 08:57:35 +080050
51#else
52
53struct ehci_atmel_priv {
54 struct ehci_ctrl ehci;
55};
56
57static int ehci_atmel_enable_clk(struct udevice *dev)
58{
59 struct udevice *dev_clk;
60 struct clk clk;
61 int periph;
62 int ret;
63
64 ret = clk_get_by_index(dev, 0, &clk);
65 if (ret)
66 return ret;
67
68 ret = clk_enable(&clk);
69 if (ret)
70 return ret;
71
72 ret = clk_get_by_index(dev, 1, &clk);
73 if (ret)
74 return -EINVAL;
75
76 periph = fdtdec_get_uint(gd->fdt_blob, clk.dev->of_offset, "reg", -1);
77 if (periph < 0)
78 return -EINVAL;
79
80 dev_clk = dev_get_parent(clk.dev);
81 if (!dev_clk)
82 return -ENODEV;
83
84 ret = clk_request(dev_clk, &clk);
85 if (ret)
86 return ret;
87
88 clk.id = periph;
89 ret = clk_enable(&clk);
90 if (ret)
91 return ret;
92
93 clk_free(&clk);
94
95 return 0;
96}
97
98static int ehci_atmel_probe(struct udevice *dev)
99{
100 struct ehci_hccr *hccr;
101 struct ehci_hcor *hcor;
102 fdt_addr_t hcd_base;
103 int ret;
104
105 ret = ehci_atmel_enable_clk(dev);
106 if (ret) {
107 debug("Failed to enable USB Host clock\n");
108 return ret;
109 }
110
111 /*
112 * Get the base address for EHCI controller from the device node
113 */
114 hcd_base = dev_get_addr(dev);
115 if (hcd_base == FDT_ADDR_T_NONE) {
116 debug("Can't get the EHCI register base address\n");
117 return -ENXIO;
118 }
119
120 hccr = (struct ehci_hccr *)hcd_base;
121 hcor = (struct ehci_hcor *)
122 ((u32)hccr + HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
123
124 debug("echi-atmel: init hccr %x and hcor %x hc_length %d\n",
125 (u32)hccr, (u32)hcor,
126 (u32)HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
127
128 return ehci_register(dev, hccr, hcor, NULL, 0, USB_INIT_HOST);
129}
130
Wenyou Yang17b68b52016-08-05 08:57:35 +0800131static const struct udevice_id ehci_usb_ids[] = {
132 { .compatible = "atmel,at91sam9g45-ehci", },
133 { }
134};
135
136U_BOOT_DRIVER(ehci_atmel) = {
137 .name = "ehci_atmel",
138 .id = UCLASS_USB,
139 .of_match = ehci_usb_ids,
140 .probe = ehci_atmel_probe,
Masahiro Yamada40527342016-09-06 22:17:34 +0900141 .remove = ehci_deregister,
Wenyou Yang17b68b52016-08-05 08:57:35 +0800142 .ops = &ehci_usb_ops,
143 .platdata_auto_alloc_size = sizeof(struct usb_platdata),
144 .priv_auto_alloc_size = sizeof(struct ehci_atmel_priv),
145 .flags = DM_FLAG_ALLOC_PRIV_DMA,
146};
147
148#endif