blob: 2ce9f27b862e69e82ce3a9168441532c13556efd [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Ajay Bhargav54cb0042012-02-13 03:27:43 +00002/*
3 * (C) Copyright 2012
4 * eInfochips Ltd. <www.einfochips.com>
Ajay Bhargavc7c47ca2016-12-21 13:28:06 +05305 * Written-by: Ajay Bhargav <contact@8051projects.net>
Ajay Bhargav54cb0042012-02-13 03:27:43 +00006 *
7 * This driver is based on Kirkwood echi driver
8 * (C) Copyright 2009
9 * Marvell Semiconductor <www.marvell.com>
10 * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
Ajay Bhargav54cb0042012-02-13 03:27:43 +000011 */
12
13#include <common.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060014#include <log.h>
Ajay Bhargav54cb0042012-02-13 03:27:43 +000015#include <asm/io.h>
16#include <usb.h>
17#include "ehci.h"
Ajay Bhargav54cb0042012-02-13 03:27:43 +000018#include <asm/arch/cpu.h>
19#include <asm/arch/armada100.h>
20#include <asm/arch/utmi-armada100.h>
21
22/*
23 * EHCI host controller init
24 */
Troy Kisky127efc42013-10-10 15:27:57 -070025int ehci_hcd_init(int index, enum usb_init_type init,
26 struct ehci_hccr **hccr, struct ehci_hcor **hcor)
Ajay Bhargav54cb0042012-02-13 03:27:43 +000027{
28 if (utmi_init() < 0)
29 return -1;
30
Lucas Stach676ae062012-09-26 00:14:35 +020031 *hccr = (struct ehci_hccr *)(ARMD1_USB_HOST_BASE + 0x100);
32 *hcor = (struct ehci_hcor *)((uint32_t) *hccr
33 + HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase)));
Ajay Bhargav54cb0042012-02-13 03:27:43 +000034
35 debug("armada100-ehci: init hccr %x and hcor %x hc_length %d\n",
Lucas Stach676ae062012-09-26 00:14:35 +020036 (uint32_t)*hccr, (uint32_t)*hcor,
37 (uint32_t)HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase)));
Ajay Bhargav54cb0042012-02-13 03:27:43 +000038
39 return 0;
40}
41
42/*
43 * EHCI host controller stop
44 */
Lucas Stach676ae062012-09-26 00:14:35 +020045int ehci_hcd_stop(int index)
Ajay Bhargav54cb0042012-02-13 03:27:43 +000046{
47 return 0;
48}