blob: 9e74a0babfbfe2cf8d5e4ca32cd356da9ffca57f [file] [log] [blame]
Roman Byshko8d154002014-07-27 19:32:44 +02001/*
Hans de Goede7b798652015-04-27 14:54:47 +02002 * Sunxi ehci glue
Roman Byshko8d154002014-07-27 19:32:44 +02003 *
Hans de Goede7b798652015-04-27 14:54:47 +02004 * Copyright (C) 2015 Hans de Goede <hdegoede@redhat.com>
5 * Copyright (C) 2014 Roman Byshko <rbyshko@gmail.com>
Roman Byshko8d154002014-07-27 19:32:44 +02006 *
7 * Based on code from
8 * Allwinner Technology Co., Ltd. <www.allwinnertech.com>
9 *
10 * SPDX-License-Identifier: GPL-2.0+
11 */
12
Roman Byshko8d154002014-07-27 19:32:44 +020013#include <common.h>
Hans de Goede375de012015-04-27 11:44:22 +020014#include <asm/arch/clock.h>
Hans de Goede2aacc422015-04-27 15:05:10 +020015#include <asm/arch/usb_phy.h>
Hans de Goede375de012015-04-27 11:44:22 +020016#include <asm/io.h>
Roman Byshko8d154002014-07-27 19:32:44 +020017#include "ehci.h"
18
Roman Byshko8d154002014-07-27 19:32:44 +020019int ehci_hcd_init(int index, enum usb_init_type init, struct ehci_hccr **hccr,
20 struct ehci_hcor **hcor)
21{
Hans de Goede375de012015-04-27 11:44:22 +020022 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
23 int ahb_gate_offset, err;
Roman Byshko8d154002014-07-27 19:32:44 +020024
Hans de Goede7b798652015-04-27 14:54:47 +020025 err = sunxi_usb_phy_probe(index + 1);
Hans de Goede0eccec42015-01-07 15:08:43 +010026 if (err)
27 return err;
Hans de Goede115200c2014-11-07 16:09:00 +010028
Hans de Goede375de012015-04-27 11:44:22 +020029 ahb_gate_offset = index ? AHB_GATE_OFFSET_USB_EHCI1 :
30 AHB_GATE_OFFSET_USB_EHCI0;
31 setbits_le32(&ccm->ahb_gate0, 1 << ahb_gate_offset);
32#ifdef CONFIG_SUNXI_GEN_SUN6I
33 setbits_le32(&ccm->ahb_reset0_cfg, 1 << ahb_gate_offset);
34#endif
35
Hans de Goede7b798652015-04-27 14:54:47 +020036 sunxi_usb_phy_init(index + 1);
37 sunxi_usb_phy_power_on(index + 1);
Roman Byshko8d154002014-07-27 19:32:44 +020038
Hans de Goedea781c972015-04-27 14:36:23 +020039 if (index == 0)
40 *hccr = (void *)SUNXI_USB1_BASE;
41 else
42 *hccr = (void *)SUNXI_USB2_BASE;
Roman Byshko8d154002014-07-27 19:32:44 +020043
44 *hcor = (struct ehci_hcor *)((uint32_t) *hccr
45 + HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase)));
46
47 debug("sunxi-ehci: init hccr %x and hcor %x hc_length %d\n",
48 (uint32_t)*hccr, (uint32_t)*hcor,
49 (uint32_t)HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase)));
50
Roman Byshko8d154002014-07-27 19:32:44 +020051 return 0;
52}
53
54int ehci_hcd_stop(int index)
55{
Hans de Goede375de012015-04-27 11:44:22 +020056 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
57 int ahb_gate_offset;
58
Hans de Goede7b798652015-04-27 14:54:47 +020059 sunxi_usb_phy_power_off(index + 1);
60 sunxi_usb_phy_exit(index + 1);
Roman Byshko8d154002014-07-27 19:32:44 +020061
Hans de Goede375de012015-04-27 11:44:22 +020062 ahb_gate_offset = index ? AHB_GATE_OFFSET_USB_EHCI1 :
63 AHB_GATE_OFFSET_USB_EHCI0;
64#ifdef CONFIG_SUNXI_GEN_SUN6I
65 clrbits_le32(&ccm->ahb_reset0_cfg, 1 << ahb_gate_offset);
66#endif
67 clrbits_le32(&ccm->ahb_gate0, 1 << ahb_gate_offset);
68
Hans de Goede7b798652015-04-27 14:54:47 +020069 return sunxi_usb_phy_remove(index + 1);
Roman Byshko8d154002014-07-27 19:32:44 +020070}