blob: ee751224463a1319c6d306a2e28fe8a7c3376ea2 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Bo Shenc0eede02012-06-27 21:58:20 +00002/*
3 * (C) Copyright 2012
4 * Atmel Semiconductor <www.atmel.com>
5 * Written-by: Bo Shen <voice.shen@atmel.com>
Bo Shenc0eede02012-06-27 21:58:20 +00006 */
7
Wenyou Yang11e26652016-08-05 08:57:35 +08008#include <clk.h>
9#include <dm.h>
Simon Glass0f2af882020-05-10 11:40:05 -060010#include <log.h>
Simon Glass9bc15642020-02-03 07:36:16 -070011#include <malloc.h>
Bo Shenc0eede02012-06-27 21:58:20 +000012#include <usb.h>
13#include <asm/io.h>
Bo Shenc0eede02012-06-27 21:58:20 +000014#include <asm/arch/clk.h>
15
16#include "ehci.h"
Bo Shenc0eede02012-06-27 21:58:20 +000017
Sven Schwermer8a3cb9f12018-11-21 08:43:56 +010018#if !CONFIG_IS_ENABLED(DM_USB)
Wenyou Yang11e26652016-08-05 08:57:35 +080019
Troy Kisky7d6bbb92013-10-10 15:27:57 -070020int ehci_hcd_init(int index, enum usb_init_type init,
21 struct ehci_hccr **hccr, struct ehci_hcor **hcor)
Bo Shenc0eede02012-06-27 21:58:20 +000022{
Bo Shenc0eede02012-06-27 21:58:20 +000023 /* Enable UTMI PLL */
Wenyou Yang2f7be642016-02-02 11:11:53 +080024 if (at91_upll_clk_enable())
25 return -1;
Bo Shenc0eede02012-06-27 21:58:20 +000026
27 /* Enable USB Host clock */
Bo Shena2a637d2014-08-06 17:24:57 +080028 at91_periph_clk_enable(ATMEL_ID_UHPHS);
Bo Shenc0eede02012-06-27 21:58:20 +000029
Lucas Stach3494a4c2012-09-26 00:14:35 +020030 *hccr = (struct ehci_hccr *)ATMEL_BASE_EHCI;
31 *hcor = (struct ehci_hcor *)((uint32_t)*hccr +
32 HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase)));
Bo Shenc0eede02012-06-27 21:58:20 +000033
34 return 0;
35}
36
Lucas Stach3494a4c2012-09-26 00:14:35 +020037int ehci_hcd_stop(int index)
Bo Shenc0eede02012-06-27 21:58:20 +000038{
Bo Shenc0eede02012-06-27 21:58:20 +000039 /* Disable USB Host Clock */
Bo Shena2a637d2014-08-06 17:24:57 +080040 at91_periph_clk_disable(ATMEL_ID_UHPHS);
Bo Shenc0eede02012-06-27 21:58:20 +000041
Bo Shenc0eede02012-06-27 21:58:20 +000042 /* Disable UTMI PLL */
Wenyou Yang2f7be642016-02-02 11:11:53 +080043 if (at91_upll_clk_disable())
44 return -1;
Bo Shenc0eede02012-06-27 21:58:20 +000045
46 return 0;
47}
Wenyou Yang11e26652016-08-05 08:57:35 +080048
49#else
50
51struct ehci_atmel_priv {
52 struct ehci_ctrl ehci;
53};
54
55static int ehci_atmel_enable_clk(struct udevice *dev)
56{
Wenyou Yang11e26652016-08-05 08:57:35 +080057 struct clk clk;
Wenyou Yang11e26652016-08-05 08:57:35 +080058 int ret;
59
60 ret = clk_get_by_index(dev, 0, &clk);
61 if (ret)
62 return ret;
63
64 ret = clk_enable(&clk);
65 if (ret)
66 return ret;
67
68 ret = clk_get_by_index(dev, 1, &clk);
69 if (ret)
70 return -EINVAL;
71
Sean Andersond318eb32023-12-16 14:38:42 -050072 return clk_enable(&clk);
Wenyou Yang11e26652016-08-05 08:57:35 +080073}
74
75static int ehci_atmel_probe(struct udevice *dev)
76{
77 struct ehci_hccr *hccr;
78 struct ehci_hcor *hcor;
79 fdt_addr_t hcd_base;
80 int ret;
81
82 ret = ehci_atmel_enable_clk(dev);
83 if (ret) {
84 debug("Failed to enable USB Host clock\n");
85 return ret;
86 }
87
88 /*
89 * Get the base address for EHCI controller from the device node
90 */
Masahiro Yamadaa89b4de2020-07-17 14:36:48 +090091 hcd_base = dev_read_addr(dev);
Wenyou Yang11e26652016-08-05 08:57:35 +080092 if (hcd_base == FDT_ADDR_T_NONE) {
93 debug("Can't get the EHCI register base address\n");
94 return -ENXIO;
95 }
96
97 hccr = (struct ehci_hccr *)hcd_base;
98 hcor = (struct ehci_hcor *)
99 ((u32)hccr + HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
100
101 debug("echi-atmel: init hccr %x and hcor %x hc_length %d\n",
102 (u32)hccr, (u32)hcor,
103 (u32)HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
104
105 return ehci_register(dev, hccr, hcor, NULL, 0, USB_INIT_HOST);
106}
107
Wenyou Yang11e26652016-08-05 08:57:35 +0800108static const struct udevice_id ehci_usb_ids[] = {
109 { .compatible = "atmel,at91sam9g45-ehci", },
110 { }
111};
112
113U_BOOT_DRIVER(ehci_atmel) = {
114 .name = "ehci_atmel",
115 .id = UCLASS_USB,
116 .of_match = ehci_usb_ids,
117 .probe = ehci_atmel_probe,
Masahiro Yamadad41919b2016-09-06 22:17:34 +0900118 .remove = ehci_deregister,
Wenyou Yang11e26652016-08-05 08:57:35 +0800119 .ops = &ehci_usb_ops,
Simon Glassb75b15b2020-12-03 16:55:23 -0700120 .plat_auto = sizeof(struct usb_plat),
Simon Glass8a2b47f2020-12-03 16:55:17 -0700121 .priv_auto = sizeof(struct ehci_atmel_priv),
Wenyou Yang11e26652016-08-05 08:57:35 +0800122 .flags = DM_FLAG_ALLOC_PRIV_DMA,
123};
124
125#endif