xref: /rk3399_rockchip-uboot/drivers/usb/host/ehci-hcd.c (revision 8bc3603675f7bf4dfa4eb6bdaf2aa0a8ddce9fa6)
12731b9a8SJean-Christophe PLAGNIOL-VILLARD /*-
22731b9a8SJean-Christophe PLAGNIOL-VILLARD  * Copyright (c) 2007-2008, Juniper Networks, Inc.
32731b9a8SJean-Christophe PLAGNIOL-VILLARD  * Copyright (c) 2008, Excito Elektronik i Skåne AB
42731b9a8SJean-Christophe PLAGNIOL-VILLARD  * Copyright (c) 2008, Michael Trimarchi <trimarchimichael@yahoo.it>
52731b9a8SJean-Christophe PLAGNIOL-VILLARD  *
62731b9a8SJean-Christophe PLAGNIOL-VILLARD  * All rights reserved.
72731b9a8SJean-Christophe PLAGNIOL-VILLARD  *
82731b9a8SJean-Christophe PLAGNIOL-VILLARD  * This program is free software; you can redistribute it and/or
92731b9a8SJean-Christophe PLAGNIOL-VILLARD  * modify it under the terms of the GNU General Public License as
102731b9a8SJean-Christophe PLAGNIOL-VILLARD  * published by the Free Software Foundation version 2 of
112731b9a8SJean-Christophe PLAGNIOL-VILLARD  * the License.
122731b9a8SJean-Christophe PLAGNIOL-VILLARD  *
132731b9a8SJean-Christophe PLAGNIOL-VILLARD  * This program is distributed in the hope that it will be useful,
142731b9a8SJean-Christophe PLAGNIOL-VILLARD  * but WITHOUT ANY WARRANTY; without even the implied warranty of
152731b9a8SJean-Christophe PLAGNIOL-VILLARD  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
162731b9a8SJean-Christophe PLAGNIOL-VILLARD  * GNU General Public License for more details.
172731b9a8SJean-Christophe PLAGNIOL-VILLARD  *
182731b9a8SJean-Christophe PLAGNIOL-VILLARD  * You should have received a copy of the GNU General Public License
192731b9a8SJean-Christophe PLAGNIOL-VILLARD  * along with this program; if not, write to the Free Software
202731b9a8SJean-Christophe PLAGNIOL-VILLARD  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
212731b9a8SJean-Christophe PLAGNIOL-VILLARD  * MA 02111-1307 USA
222731b9a8SJean-Christophe PLAGNIOL-VILLARD  */
232731b9a8SJean-Christophe PLAGNIOL-VILLARD #include <common.h>
248f62ca64SPatrick Georgi #include <errno.h>
252731b9a8SJean-Christophe PLAGNIOL-VILLARD #include <asm/byteorder.h>
2693ad908cSLucas Stach #include <asm/unaligned.h>
272731b9a8SJean-Christophe PLAGNIOL-VILLARD #include <usb.h>
282731b9a8SJean-Christophe PLAGNIOL-VILLARD #include <asm/io.h>
292731b9a8SJean-Christophe PLAGNIOL-VILLARD #include <malloc.h>
3067333f76SStefan Roese #include <watchdog.h>
318f62ca64SPatrick Georgi #include <linux/compiler.h>
322731b9a8SJean-Christophe PLAGNIOL-VILLARD 
332731b9a8SJean-Christophe PLAGNIOL-VILLARD #include "ehci.h"
342731b9a8SJean-Christophe PLAGNIOL-VILLARD 
35676ae068SLucas Stach #ifndef CONFIG_USB_MAX_CONTROLLER_COUNT
36676ae068SLucas Stach #define CONFIG_USB_MAX_CONTROLLER_COUNT 1
37676ae068SLucas Stach #endif
382731b9a8SJean-Christophe PLAGNIOL-VILLARD 
39b959655fSMarek Vasut static struct ehci_ctrl ehcic[CONFIG_USB_MAX_CONTROLLER_COUNT];
4071c5de4fSTom Rini 
4171c5de4fSTom Rini #define ALIGN_END_ADDR(type, ptr, size)			\
4271c5de4fSTom Rini 	((uint32_t)(ptr) + roundup((size) * sizeof(type), USB_DMA_MINALIGN))
432731b9a8SJean-Christophe PLAGNIOL-VILLARD 
442731b9a8SJean-Christophe PLAGNIOL-VILLARD static struct descriptor {
452731b9a8SJean-Christophe PLAGNIOL-VILLARD 	struct usb_hub_descriptor hub;
462731b9a8SJean-Christophe PLAGNIOL-VILLARD 	struct usb_device_descriptor device;
472731b9a8SJean-Christophe PLAGNIOL-VILLARD 	struct usb_linux_config_descriptor config;
482731b9a8SJean-Christophe PLAGNIOL-VILLARD 	struct usb_linux_interface_descriptor interface;
492731b9a8SJean-Christophe PLAGNIOL-VILLARD 	struct usb_endpoint_descriptor endpoint;
502731b9a8SJean-Christophe PLAGNIOL-VILLARD }  __attribute__ ((packed)) descriptor = {
512731b9a8SJean-Christophe PLAGNIOL-VILLARD 	{
522731b9a8SJean-Christophe PLAGNIOL-VILLARD 		0x8,		/* bDescLength */
532731b9a8SJean-Christophe PLAGNIOL-VILLARD 		0x29,		/* bDescriptorType: hub descriptor */
542731b9a8SJean-Christophe PLAGNIOL-VILLARD 		2,		/* bNrPorts -- runtime modified */
552731b9a8SJean-Christophe PLAGNIOL-VILLARD 		0,		/* wHubCharacteristics */
565f4b4f2fSVincent Palatin 		10,		/* bPwrOn2PwrGood */
572731b9a8SJean-Christophe PLAGNIOL-VILLARD 		0,		/* bHubCntrCurrent */
582731b9a8SJean-Christophe PLAGNIOL-VILLARD 		{},		/* Device removable */
592731b9a8SJean-Christophe PLAGNIOL-VILLARD 		{}		/* at most 7 ports! XXX */
602731b9a8SJean-Christophe PLAGNIOL-VILLARD 	},
612731b9a8SJean-Christophe PLAGNIOL-VILLARD 	{
622731b9a8SJean-Christophe PLAGNIOL-VILLARD 		0x12,		/* bLength */
632731b9a8SJean-Christophe PLAGNIOL-VILLARD 		1,		/* bDescriptorType: UDESC_DEVICE */
646d313c84SSergei Shtylyov 		cpu_to_le16(0x0200), /* bcdUSB: v2.0 */
652731b9a8SJean-Christophe PLAGNIOL-VILLARD 		9,		/* bDeviceClass: UDCLASS_HUB */
662731b9a8SJean-Christophe PLAGNIOL-VILLARD 		0,		/* bDeviceSubClass: UDSUBCLASS_HUB */
672731b9a8SJean-Christophe PLAGNIOL-VILLARD 		1,		/* bDeviceProtocol: UDPROTO_HSHUBSTT */
682731b9a8SJean-Christophe PLAGNIOL-VILLARD 		64,		/* bMaxPacketSize: 64 bytes */
692731b9a8SJean-Christophe PLAGNIOL-VILLARD 		0x0000,		/* idVendor */
702731b9a8SJean-Christophe PLAGNIOL-VILLARD 		0x0000,		/* idProduct */
716d313c84SSergei Shtylyov 		cpu_to_le16(0x0100), /* bcdDevice */
722731b9a8SJean-Christophe PLAGNIOL-VILLARD 		1,		/* iManufacturer */
732731b9a8SJean-Christophe PLAGNIOL-VILLARD 		2,		/* iProduct */
742731b9a8SJean-Christophe PLAGNIOL-VILLARD 		0,		/* iSerialNumber */
752731b9a8SJean-Christophe PLAGNIOL-VILLARD 		1		/* bNumConfigurations: 1 */
762731b9a8SJean-Christophe PLAGNIOL-VILLARD 	},
772731b9a8SJean-Christophe PLAGNIOL-VILLARD 	{
782731b9a8SJean-Christophe PLAGNIOL-VILLARD 		0x9,
792731b9a8SJean-Christophe PLAGNIOL-VILLARD 		2,		/* bDescriptorType: UDESC_CONFIG */
802731b9a8SJean-Christophe PLAGNIOL-VILLARD 		cpu_to_le16(0x19),
812731b9a8SJean-Christophe PLAGNIOL-VILLARD 		1,		/* bNumInterface */
822731b9a8SJean-Christophe PLAGNIOL-VILLARD 		1,		/* bConfigurationValue */
832731b9a8SJean-Christophe PLAGNIOL-VILLARD 		0,		/* iConfiguration */
842731b9a8SJean-Christophe PLAGNIOL-VILLARD 		0x40,		/* bmAttributes: UC_SELF_POWER */
852731b9a8SJean-Christophe PLAGNIOL-VILLARD 		0		/* bMaxPower */
862731b9a8SJean-Christophe PLAGNIOL-VILLARD 	},
872731b9a8SJean-Christophe PLAGNIOL-VILLARD 	{
882731b9a8SJean-Christophe PLAGNIOL-VILLARD 		0x9,		/* bLength */
892731b9a8SJean-Christophe PLAGNIOL-VILLARD 		4,		/* bDescriptorType: UDESC_INTERFACE */
902731b9a8SJean-Christophe PLAGNIOL-VILLARD 		0,		/* bInterfaceNumber */
912731b9a8SJean-Christophe PLAGNIOL-VILLARD 		0,		/* bAlternateSetting */
922731b9a8SJean-Christophe PLAGNIOL-VILLARD 		1,		/* bNumEndpoints */
932731b9a8SJean-Christophe PLAGNIOL-VILLARD 		9,		/* bInterfaceClass: UICLASS_HUB */
942731b9a8SJean-Christophe PLAGNIOL-VILLARD 		0,		/* bInterfaceSubClass: UISUBCLASS_HUB */
952731b9a8SJean-Christophe PLAGNIOL-VILLARD 		0,		/* bInterfaceProtocol: UIPROTO_HSHUBSTT */
962731b9a8SJean-Christophe PLAGNIOL-VILLARD 		0		/* iInterface */
972731b9a8SJean-Christophe PLAGNIOL-VILLARD 	},
982731b9a8SJean-Christophe PLAGNIOL-VILLARD 	{
992731b9a8SJean-Christophe PLAGNIOL-VILLARD 		0x7,		/* bLength */
1002731b9a8SJean-Christophe PLAGNIOL-VILLARD 		5,		/* bDescriptorType: UDESC_ENDPOINT */
1012731b9a8SJean-Christophe PLAGNIOL-VILLARD 		0x81,		/* bEndpointAddress:
1022731b9a8SJean-Christophe PLAGNIOL-VILLARD 				 * UE_DIR_IN | EHCI_INTR_ENDPT
1032731b9a8SJean-Christophe PLAGNIOL-VILLARD 				 */
1042731b9a8SJean-Christophe PLAGNIOL-VILLARD 		3,		/* bmAttributes: UE_INTERRUPT */
1058f8bd565STom Rix 		8,		/* wMaxPacketSize */
1062731b9a8SJean-Christophe PLAGNIOL-VILLARD 		255		/* bInterval */
1072731b9a8SJean-Christophe PLAGNIOL-VILLARD 	},
1082731b9a8SJean-Christophe PLAGNIOL-VILLARD };
1092731b9a8SJean-Christophe PLAGNIOL-VILLARD 
1102731b9a8SJean-Christophe PLAGNIOL-VILLARD #if defined(CONFIG_EHCI_IS_TDI)
1112731b9a8SJean-Christophe PLAGNIOL-VILLARD #define ehci_is_TDI()	(1)
1122731b9a8SJean-Christophe PLAGNIOL-VILLARD #else
1132731b9a8SJean-Christophe PLAGNIOL-VILLARD #define ehci_is_TDI()	(0)
1142731b9a8SJean-Christophe PLAGNIOL-VILLARD #endif
1152731b9a8SJean-Christophe PLAGNIOL-VILLARD 
116b068deb3SJim Lin int __ehci_get_port_speed(struct ehci_hcor *hcor, uint32_t reg)
117b068deb3SJim Lin {
118b068deb3SJim Lin 	return PORTSC_PSPD(reg);
119b068deb3SJim Lin }
120b068deb3SJim Lin 
121b068deb3SJim Lin int ehci_get_port_speed(struct ehci_hcor *hcor, uint32_t reg)
122b068deb3SJim Lin 	__attribute__((weak, alias("__ehci_get_port_speed")));
123b068deb3SJim Lin 
124b068deb3SJim Lin void __ehci_set_usbmode(int index)
125b068deb3SJim Lin {
126b068deb3SJim Lin 	uint32_t tmp;
127b068deb3SJim Lin 	uint32_t *reg_ptr;
128b068deb3SJim Lin 
129b068deb3SJim Lin 	reg_ptr = (uint32_t *)((u8 *)&ehcic[index].hcor->or_usbcmd + USBMODE);
130b068deb3SJim Lin 	tmp = ehci_readl(reg_ptr);
131b068deb3SJim Lin 	tmp |= USBMODE_CM_HC;
132b068deb3SJim Lin #if defined(CONFIG_EHCI_MMIO_BIG_ENDIAN)
133b068deb3SJim Lin 	tmp |= USBMODE_BE;
134b068deb3SJim Lin #endif
135b068deb3SJim Lin 	ehci_writel(reg_ptr, tmp);
136b068deb3SJim Lin }
137b068deb3SJim Lin 
138b068deb3SJim Lin void ehci_set_usbmode(int index)
139b068deb3SJim Lin 	__attribute__((weak, alias("__ehci_set_usbmode")));
140b068deb3SJim Lin 
1413874b6d6SMarek Vasut void __ehci_powerup_fixup(uint32_t *status_reg, uint32_t *reg)
1423874b6d6SMarek Vasut {
1433874b6d6SMarek Vasut 	mdelay(50);
1443874b6d6SMarek Vasut }
1453874b6d6SMarek Vasut 
1463874b6d6SMarek Vasut void ehci_powerup_fixup(uint32_t *status_reg, uint32_t *reg)
1473874b6d6SMarek Vasut 	__attribute__((weak, alias("__ehci_powerup_fixup")));
1483874b6d6SMarek Vasut 
1492731b9a8SJean-Christophe PLAGNIOL-VILLARD static int handshake(uint32_t *ptr, uint32_t mask, uint32_t done, int usec)
1502731b9a8SJean-Christophe PLAGNIOL-VILLARD {
1512731b9a8SJean-Christophe PLAGNIOL-VILLARD 	uint32_t result;
1522731b9a8SJean-Christophe PLAGNIOL-VILLARD 	do {
1532731b9a8SJean-Christophe PLAGNIOL-VILLARD 		result = ehci_readl(ptr);
15409c83a45SWolfgang Denk 		udelay(5);
1552731b9a8SJean-Christophe PLAGNIOL-VILLARD 		if (result == ~(uint32_t)0)
1562731b9a8SJean-Christophe PLAGNIOL-VILLARD 			return -1;
1572731b9a8SJean-Christophe PLAGNIOL-VILLARD 		result &= mask;
1582731b9a8SJean-Christophe PLAGNIOL-VILLARD 		if (result == done)
1592731b9a8SJean-Christophe PLAGNIOL-VILLARD 			return 0;
1602731b9a8SJean-Christophe PLAGNIOL-VILLARD 		usec--;
1612731b9a8SJean-Christophe PLAGNIOL-VILLARD 	} while (usec > 0);
1622731b9a8SJean-Christophe PLAGNIOL-VILLARD 	return -1;
1632731b9a8SJean-Christophe PLAGNIOL-VILLARD }
1642731b9a8SJean-Christophe PLAGNIOL-VILLARD 
165676ae068SLucas Stach static int ehci_reset(int index)
1662731b9a8SJean-Christophe PLAGNIOL-VILLARD {
1672731b9a8SJean-Christophe PLAGNIOL-VILLARD 	uint32_t cmd;
1682731b9a8SJean-Christophe PLAGNIOL-VILLARD 	int ret = 0;
1692731b9a8SJean-Christophe PLAGNIOL-VILLARD 
170676ae068SLucas Stach 	cmd = ehci_readl(&ehcic[index].hcor->or_usbcmd);
171273d7204SStefan Roese 	cmd = (cmd & ~CMD_RUN) | CMD_RESET;
172676ae068SLucas Stach 	ehci_writel(&ehcic[index].hcor->or_usbcmd, cmd);
173676ae068SLucas Stach 	ret = handshake((uint32_t *)&ehcic[index].hcor->or_usbcmd,
174676ae068SLucas Stach 			CMD_RESET, 0, 250 * 1000);
1752731b9a8SJean-Christophe PLAGNIOL-VILLARD 	if (ret < 0) {
1762731b9a8SJean-Christophe PLAGNIOL-VILLARD 		printf("EHCI fail to reset\n");
1772731b9a8SJean-Christophe PLAGNIOL-VILLARD 		goto out;
1782731b9a8SJean-Christophe PLAGNIOL-VILLARD 	}
1792731b9a8SJean-Christophe PLAGNIOL-VILLARD 
180b068deb3SJim Lin 	if (ehci_is_TDI())
181b068deb3SJim Lin 		ehci_set_usbmode(index);
1829ab4ce22SSimon Glass 
1839ab4ce22SSimon Glass #ifdef CONFIG_USB_EHCI_TXFIFO_THRESH
184676ae068SLucas Stach 	cmd = ehci_readl(&ehcic[index].hcor->or_txfilltuning);
18514eb79b7SBenoît Thébaudeau 	cmd &= ~TXFIFO_THRESH_MASK;
1869ab4ce22SSimon Glass 	cmd |= TXFIFO_THRESH(CONFIG_USB_EHCI_TXFIFO_THRESH);
187676ae068SLucas Stach 	ehci_writel(&ehcic[index].hcor->or_txfilltuning, cmd);
1889ab4ce22SSimon Glass #endif
1892731b9a8SJean-Christophe PLAGNIOL-VILLARD out:
1902731b9a8SJean-Christophe PLAGNIOL-VILLARD 	return ret;
1912731b9a8SJean-Christophe PLAGNIOL-VILLARD }
1922731b9a8SJean-Christophe PLAGNIOL-VILLARD 
1932731b9a8SJean-Christophe PLAGNIOL-VILLARD static int ehci_td_buffer(struct qTD *td, void *buf, size_t sz)
1942731b9a8SJean-Christophe PLAGNIOL-VILLARD {
195b8adb120SMarek Vasut 	uint32_t delta, next;
196b8adb120SMarek Vasut 	uint32_t addr = (uint32_t)buf;
1972731b9a8SJean-Christophe PLAGNIOL-VILLARD 	int idx;
1982731b9a8SJean-Christophe PLAGNIOL-VILLARD 
199189a6956SIlya Yanok 	if (addr != ALIGN(addr, ARCH_DMA_MINALIGN))
200b8adb120SMarek Vasut 		debug("EHCI-HCD: Misaligned buffer address (%p)\n", buf);
201b8adb120SMarek Vasut 
202189a6956SIlya Yanok 	flush_dcache_range(addr, ALIGN(addr + sz, ARCH_DMA_MINALIGN));
203189a6956SIlya Yanok 
2042731b9a8SJean-Christophe PLAGNIOL-VILLARD 	idx = 0;
205cdeb9161SBenoît Thébaudeau 	while (idx < QT_BUFFER_CNT) {
2062731b9a8SJean-Christophe PLAGNIOL-VILLARD 		td->qt_buffer[idx] = cpu_to_hc32(addr);
2073ed16071SWolfgang Denk 		td->qt_buffer_hi[idx] = 0;
20814eb79b7SBenoît Thébaudeau 		next = (addr + EHCI_PAGE_SIZE) & ~(EHCI_PAGE_SIZE - 1);
2092731b9a8SJean-Christophe PLAGNIOL-VILLARD 		delta = next - addr;
2102731b9a8SJean-Christophe PLAGNIOL-VILLARD 		if (delta >= sz)
2112731b9a8SJean-Christophe PLAGNIOL-VILLARD 			break;
2122731b9a8SJean-Christophe PLAGNIOL-VILLARD 		sz -= delta;
2132731b9a8SJean-Christophe PLAGNIOL-VILLARD 		addr = next;
2142731b9a8SJean-Christophe PLAGNIOL-VILLARD 		idx++;
2152731b9a8SJean-Christophe PLAGNIOL-VILLARD 	}
2162731b9a8SJean-Christophe PLAGNIOL-VILLARD 
217cdeb9161SBenoît Thébaudeau 	if (idx == QT_BUFFER_CNT) {
2182af16f85SIlya Yanok 		printf("out of buffer pointers (%u bytes left)\n", sz);
2192731b9a8SJean-Christophe PLAGNIOL-VILLARD 		return -1;
2202731b9a8SJean-Christophe PLAGNIOL-VILLARD 	}
2212731b9a8SJean-Christophe PLAGNIOL-VILLARD 
2222731b9a8SJean-Christophe PLAGNIOL-VILLARD 	return 0;
2232731b9a8SJean-Christophe PLAGNIOL-VILLARD }
2242731b9a8SJean-Christophe PLAGNIOL-VILLARD 
225c60795f4SIlya Yanok static inline u8 ehci_encode_speed(enum usb_device_speed speed)
226c60795f4SIlya Yanok {
227c60795f4SIlya Yanok 	#define QH_HIGH_SPEED	2
228c60795f4SIlya Yanok 	#define QH_FULL_SPEED	0
229c60795f4SIlya Yanok 	#define QH_LOW_SPEED	1
230c60795f4SIlya Yanok 	if (speed == USB_SPEED_HIGH)
231c60795f4SIlya Yanok 		return QH_HIGH_SPEED;
232c60795f4SIlya Yanok 	if (speed == USB_SPEED_LOW)
233c60795f4SIlya Yanok 		return QH_LOW_SPEED;
234c60795f4SIlya Yanok 	return QH_FULL_SPEED;
235c60795f4SIlya Yanok }
236c60795f4SIlya Yanok 
2372731b9a8SJean-Christophe PLAGNIOL-VILLARD static int
2382731b9a8SJean-Christophe PLAGNIOL-VILLARD ehci_submit_async(struct usb_device *dev, unsigned long pipe, void *buffer,
2392731b9a8SJean-Christophe PLAGNIOL-VILLARD 		   int length, struct devrequest *req)
2402731b9a8SJean-Christophe PLAGNIOL-VILLARD {
24171c5de4fSTom Rini 	ALLOC_ALIGN_BUFFER(struct QH, qh, 1, USB_DMA_MINALIGN);
2425cec214eSBenoît Thébaudeau 	struct qTD *qtd;
2435cec214eSBenoît Thébaudeau 	int qtd_count = 0;
244de98e8b2SMarek Vasut 	int qtd_counter = 0;
2452731b9a8SJean-Christophe PLAGNIOL-VILLARD 	volatile struct qTD *vtd;
2462731b9a8SJean-Christophe PLAGNIOL-VILLARD 	unsigned long ts;
2472731b9a8SJean-Christophe PLAGNIOL-VILLARD 	uint32_t *tdp;
248db191346SBenoît Thébaudeau 	uint32_t endpt, maxpacket, token, usbsts;
2492731b9a8SJean-Christophe PLAGNIOL-VILLARD 	uint32_t c, toggle;
2502731b9a8SJean-Christophe PLAGNIOL-VILLARD 	uint32_t cmd;
25196820a35SSimon Glass 	int timeout;
2522731b9a8SJean-Christophe PLAGNIOL-VILLARD 	int ret = 0;
253676ae068SLucas Stach 	struct ehci_ctrl *ctrl = dev->controller;
2542731b9a8SJean-Christophe PLAGNIOL-VILLARD 
2552731b9a8SJean-Christophe PLAGNIOL-VILLARD 	debug("dev=%p, pipe=%lx, buffer=%p, length=%d, req=%p\n", dev, pipe,
2562731b9a8SJean-Christophe PLAGNIOL-VILLARD 	      buffer, length, req);
2572731b9a8SJean-Christophe PLAGNIOL-VILLARD 	if (req != NULL)
2582731b9a8SJean-Christophe PLAGNIOL-VILLARD 		debug("req=%u (%#x), type=%u (%#x), value=%u (%#x), index=%u\n",
2592731b9a8SJean-Christophe PLAGNIOL-VILLARD 		      req->request, req->request,
2602731b9a8SJean-Christophe PLAGNIOL-VILLARD 		      req->requesttype, req->requesttype,
2612731b9a8SJean-Christophe PLAGNIOL-VILLARD 		      le16_to_cpu(req->value), le16_to_cpu(req->value),
2622731b9a8SJean-Christophe PLAGNIOL-VILLARD 		      le16_to_cpu(req->index));
2632731b9a8SJean-Christophe PLAGNIOL-VILLARD 
264db191346SBenoît Thébaudeau #define PKT_ALIGN	512
2655cec214eSBenoît Thébaudeau 	/*
2665cec214eSBenoît Thébaudeau 	 * The USB transfer is split into qTD transfers. Eeach qTD transfer is
2675cec214eSBenoît Thébaudeau 	 * described by a transfer descriptor (the qTD). The qTDs form a linked
2685cec214eSBenoît Thébaudeau 	 * list with a queue head (QH).
2695cec214eSBenoît Thébaudeau 	 *
2705cec214eSBenoît Thébaudeau 	 * Each qTD transfer starts with a new USB packet, i.e. a packet cannot
2715cec214eSBenoît Thébaudeau 	 * have its beginning in a qTD transfer and its end in the following
2725cec214eSBenoît Thébaudeau 	 * one, so the qTD transfer lengths have to be chosen accordingly.
2735cec214eSBenoît Thébaudeau 	 *
2745cec214eSBenoît Thébaudeau 	 * Each qTD transfer uses up to QT_BUFFER_CNT data buffers, mapped to
2755cec214eSBenoît Thébaudeau 	 * single pages. The first data buffer can start at any offset within a
2765cec214eSBenoît Thébaudeau 	 * page (not considering the cache-line alignment issues), while the
2775cec214eSBenoît Thébaudeau 	 * following buffers must be page-aligned. There is no alignment
2785cec214eSBenoît Thébaudeau 	 * constraint on the size of a qTD transfer.
2795cec214eSBenoît Thébaudeau 	 */
2805cec214eSBenoît Thébaudeau 	if (req != NULL)
2815cec214eSBenoît Thébaudeau 		/* 1 qTD will be needed for SETUP, and 1 for ACK. */
2825cec214eSBenoît Thébaudeau 		qtd_count += 1 + 1;
2835cec214eSBenoît Thébaudeau 	if (length > 0 || req == NULL) {
2845cec214eSBenoît Thébaudeau 		/*
2855cec214eSBenoît Thébaudeau 		 * Determine the qTD transfer size that will be used for the
286db191346SBenoît Thébaudeau 		 * data payload (not considering the first qTD transfer, which
287db191346SBenoît Thébaudeau 		 * may be longer or shorter, and the final one, which may be
288db191346SBenoît Thébaudeau 		 * shorter).
2895cec214eSBenoît Thébaudeau 		 *
2905cec214eSBenoît Thébaudeau 		 * In order to keep each packet within a qTD transfer, the qTD
291db191346SBenoît Thébaudeau 		 * transfer size is aligned to PKT_ALIGN, which is a multiple of
292db191346SBenoît Thébaudeau 		 * wMaxPacketSize (except in some cases for interrupt transfers,
293db191346SBenoît Thébaudeau 		 * see comment in submit_int_msg()).
2945cec214eSBenoît Thébaudeau 		 *
295db191346SBenoît Thébaudeau 		 * By default, i.e. if the input buffer is aligned to PKT_ALIGN,
2965cec214eSBenoît Thébaudeau 		 * QT_BUFFER_CNT full pages will be used.
2975cec214eSBenoît Thébaudeau 		 */
2985cec214eSBenoît Thébaudeau 		int xfr_sz = QT_BUFFER_CNT;
2995cec214eSBenoît Thébaudeau 		/*
300db191346SBenoît Thébaudeau 		 * However, if the input buffer is not aligned to PKT_ALIGN, the
301db191346SBenoît Thébaudeau 		 * qTD transfer size will be one page shorter, and the first qTD
3025cec214eSBenoît Thébaudeau 		 * data buffer of each transfer will be page-unaligned.
3035cec214eSBenoît Thébaudeau 		 */
304db191346SBenoît Thébaudeau 		if ((uint32_t)buffer & (PKT_ALIGN - 1))
3055cec214eSBenoît Thébaudeau 			xfr_sz--;
3065cec214eSBenoît Thébaudeau 		/* Convert the qTD transfer size to bytes. */
3075cec214eSBenoît Thébaudeau 		xfr_sz *= EHCI_PAGE_SIZE;
3085cec214eSBenoît Thébaudeau 		/*
309db191346SBenoît Thébaudeau 		 * Approximate by excess the number of qTDs that will be
310db191346SBenoît Thébaudeau 		 * required for the data payload. The exact formula is way more
311db191346SBenoît Thébaudeau 		 * complicated and saves at most 2 qTDs, i.e. a total of 128
312db191346SBenoît Thébaudeau 		 * bytes.
3135cec214eSBenoît Thébaudeau 		 */
314db191346SBenoît Thébaudeau 		qtd_count += 2 + length / xfr_sz;
3155cec214eSBenoît Thébaudeau 	}
3165cec214eSBenoît Thébaudeau /*
317db191346SBenoît Thébaudeau  * Threshold value based on the worst-case total size of the allocated qTDs for
318db191346SBenoît Thébaudeau  * a mass-storage transfer of 65535 blocks of 512 bytes.
3195cec214eSBenoît Thébaudeau  */
320db191346SBenoît Thébaudeau #if CONFIG_SYS_MALLOC_LEN <= 64 + 128 * 1024
3215cec214eSBenoît Thébaudeau #warning CONFIG_SYS_MALLOC_LEN may be too small for EHCI
3225cec214eSBenoît Thébaudeau #endif
3235cec214eSBenoît Thébaudeau 	qtd = memalign(USB_DMA_MINALIGN, qtd_count * sizeof(struct qTD));
3245cec214eSBenoît Thébaudeau 	if (qtd == NULL) {
3255cec214eSBenoît Thébaudeau 		printf("unable to allocate TDs\n");
3265cec214eSBenoît Thébaudeau 		return -1;
3275cec214eSBenoît Thébaudeau 	}
3285cec214eSBenoît Thébaudeau 
32971c5de4fSTom Rini 	memset(qh, 0, sizeof(struct QH));
3305cec214eSBenoît Thébaudeau 	memset(qtd, 0, qtd_count * sizeof(*qtd));
331de98e8b2SMarek Vasut 
332b8adb120SMarek Vasut 	toggle = usb_gettoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe));
333b8adb120SMarek Vasut 
33441b1f0acSMarek Vasut 	/*
33541b1f0acSMarek Vasut 	 * Setup QH (3.6 in ehci-r10.pdf)
33641b1f0acSMarek Vasut 	 *
33741b1f0acSMarek Vasut 	 *   qh_link ................. 03-00 H
33841b1f0acSMarek Vasut 	 *   qh_endpt1 ............... 07-04 H
33941b1f0acSMarek Vasut 	 *   qh_endpt2 ............... 0B-08 H
34041b1f0acSMarek Vasut 	 * - qh_curtd
34141b1f0acSMarek Vasut 	 *   qh_overlay.qt_next ...... 13-10 H
34241b1f0acSMarek Vasut 	 * - qh_overlay.qt_altnext
34341b1f0acSMarek Vasut 	 */
344676ae068SLucas Stach 	qh->qh_link = cpu_to_hc32((uint32_t)&ctrl->qh_list | QH_LINK_TYPE_QH);
345c60795f4SIlya Yanok 	c = (dev->speed != USB_SPEED_HIGH) && !usb_pipeendpoint(pipe);
346db191346SBenoît Thébaudeau 	maxpacket = usb_maxpacket(dev, pipe);
34714eb79b7SBenoît Thébaudeau 	endpt = QH_ENDPT1_RL(8) | QH_ENDPT1_C(c) |
348db191346SBenoît Thébaudeau 		QH_ENDPT1_MAXPKTLEN(maxpacket) | QH_ENDPT1_H(0) |
34914eb79b7SBenoît Thébaudeau 		QH_ENDPT1_DTC(QH_ENDPT1_DTC_DT_FROM_QTD) |
350c60795f4SIlya Yanok 		QH_ENDPT1_EPS(ehci_encode_speed(dev->speed)) |
35114eb79b7SBenoît Thébaudeau 		QH_ENDPT1_ENDPT(usb_pipeendpoint(pipe)) | QH_ENDPT1_I(0) |
35214eb79b7SBenoît Thébaudeau 		QH_ENDPT1_DEVADDR(usb_pipedevice(pipe));
35371c5de4fSTom Rini 	qh->qh_endpt1 = cpu_to_hc32(endpt);
35414eb79b7SBenoît Thébaudeau 	endpt = QH_ENDPT2_MULT(1) | QH_ENDPT2_PORTNUM(dev->portnr) |
35514eb79b7SBenoît Thébaudeau 		QH_ENDPT2_HUBADDR(dev->parent->devnum) |
35614eb79b7SBenoît Thébaudeau 		QH_ENDPT2_UFCMASK(0) | QH_ENDPT2_UFSMASK(0);
35771c5de4fSTom Rini 	qh->qh_endpt2 = cpu_to_hc32(endpt);
35871c5de4fSTom Rini 	qh->qh_overlay.qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
3592731b9a8SJean-Christophe PLAGNIOL-VILLARD 
36071c5de4fSTom Rini 	tdp = &qh->qh_overlay.qt_next;
3612731b9a8SJean-Christophe PLAGNIOL-VILLARD 
3622731b9a8SJean-Christophe PLAGNIOL-VILLARD 	if (req != NULL) {
36341b1f0acSMarek Vasut 		/*
36441b1f0acSMarek Vasut 		 * Setup request qTD (3.5 in ehci-r10.pdf)
36541b1f0acSMarek Vasut 		 *
36641b1f0acSMarek Vasut 		 *   qt_next ................ 03-00 H
36741b1f0acSMarek Vasut 		 *   qt_altnext ............. 07-04 H
36841b1f0acSMarek Vasut 		 *   qt_token ............... 0B-08 H
36941b1f0acSMarek Vasut 		 *
37041b1f0acSMarek Vasut 		 *   [ buffer, buffer_hi ] loaded with "req".
37141b1f0acSMarek Vasut 		 */
372de98e8b2SMarek Vasut 		qtd[qtd_counter].qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
373de98e8b2SMarek Vasut 		qtd[qtd_counter].qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
37414eb79b7SBenoît Thébaudeau 		token = QT_TOKEN_DT(0) | QT_TOKEN_TOTALBYTES(sizeof(*req)) |
37514eb79b7SBenoît Thébaudeau 			QT_TOKEN_IOC(0) | QT_TOKEN_CPAGE(0) | QT_TOKEN_CERR(3) |
37614eb79b7SBenoît Thébaudeau 			QT_TOKEN_PID(QT_TOKEN_PID_SETUP) |
37714eb79b7SBenoît Thébaudeau 			QT_TOKEN_STATUS(QT_TOKEN_STATUS_ACTIVE);
378de98e8b2SMarek Vasut 		qtd[qtd_counter].qt_token = cpu_to_hc32(token);
37914eb79b7SBenoît Thébaudeau 		if (ehci_td_buffer(&qtd[qtd_counter], req, sizeof(*req))) {
38014eb79b7SBenoît Thébaudeau 			printf("unable to construct SETUP TD\n");
3812731b9a8SJean-Christophe PLAGNIOL-VILLARD 			goto fail;
3822731b9a8SJean-Christophe PLAGNIOL-VILLARD 		}
38341b1f0acSMarek Vasut 		/* Update previous qTD! */
384de98e8b2SMarek Vasut 		*tdp = cpu_to_hc32((uint32_t)&qtd[qtd_counter]);
385de98e8b2SMarek Vasut 		tdp = &qtd[qtd_counter++].qt_next;
3862731b9a8SJean-Christophe PLAGNIOL-VILLARD 		toggle = 1;
3872731b9a8SJean-Christophe PLAGNIOL-VILLARD 	}
3882731b9a8SJean-Christophe PLAGNIOL-VILLARD 
3892731b9a8SJean-Christophe PLAGNIOL-VILLARD 	if (length > 0 || req == NULL) {
3905cec214eSBenoît Thébaudeau 		uint8_t *buf_ptr = buffer;
3915cec214eSBenoît Thébaudeau 		int left_length = length;
3925cec214eSBenoît Thébaudeau 
3935cec214eSBenoît Thébaudeau 		do {
3945cec214eSBenoît Thébaudeau 			/*
3955cec214eSBenoît Thébaudeau 			 * Determine the size of this qTD transfer. By default,
3965cec214eSBenoît Thébaudeau 			 * QT_BUFFER_CNT full pages can be used.
3975cec214eSBenoît Thébaudeau 			 */
3985cec214eSBenoît Thébaudeau 			int xfr_bytes = QT_BUFFER_CNT * EHCI_PAGE_SIZE;
3995cec214eSBenoît Thébaudeau 			/*
4005cec214eSBenoît Thébaudeau 			 * However, if the input buffer is not page-aligned, the
4015cec214eSBenoît Thébaudeau 			 * portion of the first page before the buffer start
4025cec214eSBenoît Thébaudeau 			 * offset within that page is unusable.
4035cec214eSBenoît Thébaudeau 			 */
4045cec214eSBenoît Thébaudeau 			xfr_bytes -= (uint32_t)buf_ptr & (EHCI_PAGE_SIZE - 1);
4055cec214eSBenoît Thébaudeau 			/*
4065cec214eSBenoît Thébaudeau 			 * In order to keep each packet within a qTD transfer,
407db191346SBenoît Thébaudeau 			 * align the qTD transfer size to PKT_ALIGN.
4085cec214eSBenoît Thébaudeau 			 */
409db191346SBenoît Thébaudeau 			xfr_bytes &= ~(PKT_ALIGN - 1);
4105cec214eSBenoît Thébaudeau 			/*
4115cec214eSBenoît Thébaudeau 			 * This transfer may be shorter than the available qTD
4125cec214eSBenoît Thébaudeau 			 * transfer size that has just been computed.
4135cec214eSBenoît Thébaudeau 			 */
4145cec214eSBenoît Thébaudeau 			xfr_bytes = min(xfr_bytes, left_length);
4155cec214eSBenoît Thébaudeau 
41641b1f0acSMarek Vasut 			/*
41741b1f0acSMarek Vasut 			 * Setup request qTD (3.5 in ehci-r10.pdf)
41841b1f0acSMarek Vasut 			 *
41941b1f0acSMarek Vasut 			 *   qt_next ................ 03-00 H
42041b1f0acSMarek Vasut 			 *   qt_altnext ............. 07-04 H
42141b1f0acSMarek Vasut 			 *   qt_token ............... 0B-08 H
42241b1f0acSMarek Vasut 			 *
42341b1f0acSMarek Vasut 			 *   [ buffer, buffer_hi ] loaded with "buffer".
42441b1f0acSMarek Vasut 			 */
4255cec214eSBenoît Thébaudeau 			qtd[qtd_counter].qt_next =
4265cec214eSBenoît Thébaudeau 					cpu_to_hc32(QT_NEXT_TERMINATE);
4275cec214eSBenoît Thébaudeau 			qtd[qtd_counter].qt_altnext =
4285cec214eSBenoît Thébaudeau 					cpu_to_hc32(QT_NEXT_TERMINATE);
4295cec214eSBenoît Thébaudeau 			token = QT_TOKEN_DT(toggle) |
4305cec214eSBenoît Thébaudeau 				QT_TOKEN_TOTALBYTES(xfr_bytes) |
43114eb79b7SBenoît Thébaudeau 				QT_TOKEN_IOC(req == NULL) | QT_TOKEN_CPAGE(0) |
4325cec214eSBenoît Thébaudeau 				QT_TOKEN_CERR(3) |
4335cec214eSBenoît Thébaudeau 				QT_TOKEN_PID(usb_pipein(pipe) ?
43414eb79b7SBenoît Thébaudeau 					QT_TOKEN_PID_IN : QT_TOKEN_PID_OUT) |
43514eb79b7SBenoît Thébaudeau 				QT_TOKEN_STATUS(QT_TOKEN_STATUS_ACTIVE);
436de98e8b2SMarek Vasut 			qtd[qtd_counter].qt_token = cpu_to_hc32(token);
4375cec214eSBenoît Thébaudeau 			if (ehci_td_buffer(&qtd[qtd_counter], buf_ptr,
4385cec214eSBenoît Thébaudeau 						xfr_bytes)) {
43914eb79b7SBenoît Thébaudeau 				printf("unable to construct DATA TD\n");
4402731b9a8SJean-Christophe PLAGNIOL-VILLARD 				goto fail;
4412731b9a8SJean-Christophe PLAGNIOL-VILLARD 			}
44241b1f0acSMarek Vasut 			/* Update previous qTD! */
443de98e8b2SMarek Vasut 			*tdp = cpu_to_hc32((uint32_t)&qtd[qtd_counter]);
444de98e8b2SMarek Vasut 			tdp = &qtd[qtd_counter++].qt_next;
445db191346SBenoît Thébaudeau 			/*
446db191346SBenoît Thébaudeau 			 * Data toggle has to be adjusted since the qTD transfer
447db191346SBenoît Thébaudeau 			 * size is not always an even multiple of
448db191346SBenoît Thébaudeau 			 * wMaxPacketSize.
449db191346SBenoît Thébaudeau 			 */
450db191346SBenoît Thébaudeau 			if ((xfr_bytes / maxpacket) & 1)
451db191346SBenoît Thébaudeau 				toggle ^= 1;
4525cec214eSBenoît Thébaudeau 			buf_ptr += xfr_bytes;
4535cec214eSBenoît Thébaudeau 			left_length -= xfr_bytes;
4545cec214eSBenoît Thébaudeau 		} while (left_length > 0);
4552731b9a8SJean-Christophe PLAGNIOL-VILLARD 	}
4562731b9a8SJean-Christophe PLAGNIOL-VILLARD 
4572731b9a8SJean-Christophe PLAGNIOL-VILLARD 	if (req != NULL) {
45841b1f0acSMarek Vasut 		/*
45941b1f0acSMarek Vasut 		 * Setup request qTD (3.5 in ehci-r10.pdf)
46041b1f0acSMarek Vasut 		 *
46141b1f0acSMarek Vasut 		 *   qt_next ................ 03-00 H
46241b1f0acSMarek Vasut 		 *   qt_altnext ............. 07-04 H
46341b1f0acSMarek Vasut 		 *   qt_token ............... 0B-08 H
46441b1f0acSMarek Vasut 		 */
465de98e8b2SMarek Vasut 		qtd[qtd_counter].qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
466de98e8b2SMarek Vasut 		qtd[qtd_counter].qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
467db191346SBenoît Thébaudeau 		token = QT_TOKEN_DT(1) | QT_TOKEN_TOTALBYTES(0) |
46814eb79b7SBenoît Thébaudeau 			QT_TOKEN_IOC(1) | QT_TOKEN_CPAGE(0) | QT_TOKEN_CERR(3) |
46914eb79b7SBenoît Thébaudeau 			QT_TOKEN_PID(usb_pipein(pipe) ?
47014eb79b7SBenoît Thébaudeau 				QT_TOKEN_PID_OUT : QT_TOKEN_PID_IN) |
47114eb79b7SBenoît Thébaudeau 			QT_TOKEN_STATUS(QT_TOKEN_STATUS_ACTIVE);
472de98e8b2SMarek Vasut 		qtd[qtd_counter].qt_token = cpu_to_hc32(token);
47341b1f0acSMarek Vasut 		/* Update previous qTD! */
474de98e8b2SMarek Vasut 		*tdp = cpu_to_hc32((uint32_t)&qtd[qtd_counter]);
475de98e8b2SMarek Vasut 		tdp = &qtd[qtd_counter++].qt_next;
4762731b9a8SJean-Christophe PLAGNIOL-VILLARD 	}
4772731b9a8SJean-Christophe PLAGNIOL-VILLARD 
478676ae068SLucas Stach 	ctrl->qh_list.qh_link = cpu_to_hc32((uint32_t)qh | QH_LINK_TYPE_QH);
4792731b9a8SJean-Christophe PLAGNIOL-VILLARD 
4802731b9a8SJean-Christophe PLAGNIOL-VILLARD 	/* Flush dcache */
481676ae068SLucas Stach 	flush_dcache_range((uint32_t)&ctrl->qh_list,
482676ae068SLucas Stach 		ALIGN_END_ADDR(struct QH, &ctrl->qh_list, 1));
48371c5de4fSTom Rini 	flush_dcache_range((uint32_t)qh, ALIGN_END_ADDR(struct QH, qh, 1));
48414eb79b7SBenoît Thébaudeau 	flush_dcache_range((uint32_t)qtd,
4855cec214eSBenoît Thébaudeau 			   ALIGN_END_ADDR(struct qTD, qtd, qtd_count));
4862731b9a8SJean-Christophe PLAGNIOL-VILLARD 
487c7701af5SIlya Yanok 	/* Set async. queue head pointer. */
488676ae068SLucas Stach 	ehci_writel(&ctrl->hcor->or_asynclistaddr, (uint32_t)&ctrl->qh_list);
489c7701af5SIlya Yanok 
490676ae068SLucas Stach 	usbsts = ehci_readl(&ctrl->hcor->or_usbsts);
491676ae068SLucas Stach 	ehci_writel(&ctrl->hcor->or_usbsts, (usbsts & 0x3f));
4922731b9a8SJean-Christophe PLAGNIOL-VILLARD 
4932731b9a8SJean-Christophe PLAGNIOL-VILLARD 	/* Enable async. schedule. */
494676ae068SLucas Stach 	cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
4952731b9a8SJean-Christophe PLAGNIOL-VILLARD 	cmd |= CMD_ASE;
496676ae068SLucas Stach 	ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
4972731b9a8SJean-Christophe PLAGNIOL-VILLARD 
498676ae068SLucas Stach 	ret = handshake((uint32_t *)&ctrl->hcor->or_usbsts, STS_ASS, STS_ASS,
4992731b9a8SJean-Christophe PLAGNIOL-VILLARD 			100 * 1000);
5002731b9a8SJean-Christophe PLAGNIOL-VILLARD 	if (ret < 0) {
50114eb79b7SBenoît Thébaudeau 		printf("EHCI fail timeout STS_ASS set\n");
5022731b9a8SJean-Christophe PLAGNIOL-VILLARD 		goto fail;
5032731b9a8SJean-Christophe PLAGNIOL-VILLARD 	}
5042731b9a8SJean-Christophe PLAGNIOL-VILLARD 
5052731b9a8SJean-Christophe PLAGNIOL-VILLARD 	/* Wait for TDs to be processed. */
5062731b9a8SJean-Christophe PLAGNIOL-VILLARD 	ts = get_timer(0);
507de98e8b2SMarek Vasut 	vtd = &qtd[qtd_counter - 1];
50896820a35SSimon Glass 	timeout = USB_TIMEOUT_MS(pipe);
5092731b9a8SJean-Christophe PLAGNIOL-VILLARD 	do {
5102731b9a8SJean-Christophe PLAGNIOL-VILLARD 		/* Invalidate dcache */
511676ae068SLucas Stach 		invalidate_dcache_range((uint32_t)&ctrl->qh_list,
512676ae068SLucas Stach 			ALIGN_END_ADDR(struct QH, &ctrl->qh_list, 1));
51371c5de4fSTom Rini 		invalidate_dcache_range((uint32_t)qh,
51471c5de4fSTom Rini 			ALIGN_END_ADDR(struct QH, qh, 1));
515b8adb120SMarek Vasut 		invalidate_dcache_range((uint32_t)qtd,
5165cec214eSBenoît Thébaudeau 			ALIGN_END_ADDR(struct qTD, qtd, qtd_count));
517b8adb120SMarek Vasut 
5182731b9a8SJean-Christophe PLAGNIOL-VILLARD 		token = hc32_to_cpu(vtd->qt_token);
51914eb79b7SBenoît Thébaudeau 		if (!(QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE))
5202731b9a8SJean-Christophe PLAGNIOL-VILLARD 			break;
52167333f76SStefan Roese 		WATCHDOG_RESET();
52296820a35SSimon Glass 	} while (get_timer(ts) < timeout);
52396820a35SSimon Glass 
524189a6956SIlya Yanok 	/*
525189a6956SIlya Yanok 	 * Invalidate the memory area occupied by buffer
526189a6956SIlya Yanok 	 * Don't try to fix the buffer alignment, if it isn't properly
527189a6956SIlya Yanok 	 * aligned it's upper layer's fault so let invalidate_dcache_range()
528189a6956SIlya Yanok 	 * vow about it. But we have to fix the length as it's actual
529189a6956SIlya Yanok 	 * transfer length and can be unaligned. This is potentially
530189a6956SIlya Yanok 	 * dangerous operation, it's responsibility of the calling
531189a6956SIlya Yanok 	 * code to make sure enough space is reserved.
532189a6956SIlya Yanok 	 */
533189a6956SIlya Yanok 	invalidate_dcache_range((uint32_t)buffer,
534189a6956SIlya Yanok 		ALIGN((uint32_t)buffer + length, ARCH_DMA_MINALIGN));
535b8adb120SMarek Vasut 
53696820a35SSimon Glass 	/* Check that the TD processing happened */
53714eb79b7SBenoît Thébaudeau 	if (QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE)
53896820a35SSimon Glass 		printf("EHCI timed out on TD - token=%#x\n", token);
5392731b9a8SJean-Christophe PLAGNIOL-VILLARD 
5402731b9a8SJean-Christophe PLAGNIOL-VILLARD 	/* Disable async schedule. */
541676ae068SLucas Stach 	cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
5422731b9a8SJean-Christophe PLAGNIOL-VILLARD 	cmd &= ~CMD_ASE;
543676ae068SLucas Stach 	ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
5442731b9a8SJean-Christophe PLAGNIOL-VILLARD 
545676ae068SLucas Stach 	ret = handshake((uint32_t *)&ctrl->hcor->or_usbsts, STS_ASS, 0,
5462731b9a8SJean-Christophe PLAGNIOL-VILLARD 			100 * 1000);
5472731b9a8SJean-Christophe PLAGNIOL-VILLARD 	if (ret < 0) {
54814eb79b7SBenoît Thébaudeau 		printf("EHCI fail timeout STS_ASS reset\n");
5492731b9a8SJean-Christophe PLAGNIOL-VILLARD 		goto fail;
5502731b9a8SJean-Christophe PLAGNIOL-VILLARD 	}
5512731b9a8SJean-Christophe PLAGNIOL-VILLARD 
55271c5de4fSTom Rini 	token = hc32_to_cpu(qh->qh_overlay.qt_token);
55314eb79b7SBenoît Thébaudeau 	if (!(QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE)) {
5542731b9a8SJean-Christophe PLAGNIOL-VILLARD 		debug("TOKEN=%#x\n", token);
55514eb79b7SBenoît Thébaudeau 		switch (QT_TOKEN_GET_STATUS(token) &
55614eb79b7SBenoît Thébaudeau 			~(QT_TOKEN_STATUS_SPLITXSTATE | QT_TOKEN_STATUS_PERR)) {
5572731b9a8SJean-Christophe PLAGNIOL-VILLARD 		case 0:
55814eb79b7SBenoît Thébaudeau 			toggle = QT_TOKEN_GET_DT(token);
5592731b9a8SJean-Christophe PLAGNIOL-VILLARD 			usb_settoggle(dev, usb_pipeendpoint(pipe),
5602731b9a8SJean-Christophe PLAGNIOL-VILLARD 				       usb_pipeout(pipe), toggle);
5612731b9a8SJean-Christophe PLAGNIOL-VILLARD 			dev->status = 0;
5622731b9a8SJean-Christophe PLAGNIOL-VILLARD 			break;
56314eb79b7SBenoît Thébaudeau 		case QT_TOKEN_STATUS_HALTED:
5642731b9a8SJean-Christophe PLAGNIOL-VILLARD 			dev->status = USB_ST_STALLED;
5652731b9a8SJean-Christophe PLAGNIOL-VILLARD 			break;
56614eb79b7SBenoît Thébaudeau 		case QT_TOKEN_STATUS_ACTIVE | QT_TOKEN_STATUS_DATBUFERR:
56714eb79b7SBenoît Thébaudeau 		case QT_TOKEN_STATUS_DATBUFERR:
5682731b9a8SJean-Christophe PLAGNIOL-VILLARD 			dev->status = USB_ST_BUF_ERR;
5692731b9a8SJean-Christophe PLAGNIOL-VILLARD 			break;
57014eb79b7SBenoît Thébaudeau 		case QT_TOKEN_STATUS_HALTED | QT_TOKEN_STATUS_BABBLEDET:
57114eb79b7SBenoît Thébaudeau 		case QT_TOKEN_STATUS_BABBLEDET:
5722731b9a8SJean-Christophe PLAGNIOL-VILLARD 			dev->status = USB_ST_BABBLE_DET;
5732731b9a8SJean-Christophe PLAGNIOL-VILLARD 			break;
5742731b9a8SJean-Christophe PLAGNIOL-VILLARD 		default:
5752731b9a8SJean-Christophe PLAGNIOL-VILLARD 			dev->status = USB_ST_CRC_ERR;
57614eb79b7SBenoît Thébaudeau 			if (QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_HALTED)
577222d6dffSAnatolij Gustschin 				dev->status |= USB_ST_STALLED;
5782731b9a8SJean-Christophe PLAGNIOL-VILLARD 			break;
5792731b9a8SJean-Christophe PLAGNIOL-VILLARD 		}
58014eb79b7SBenoît Thébaudeau 		dev->act_len = length - QT_TOKEN_GET_TOTALBYTES(token);
5812731b9a8SJean-Christophe PLAGNIOL-VILLARD 	} else {
5822731b9a8SJean-Christophe PLAGNIOL-VILLARD 		dev->act_len = 0;
583e82a316dSKuo-Jung Su #ifndef CONFIG_USB_EHCI_FARADAY
5842731b9a8SJean-Christophe PLAGNIOL-VILLARD 		debug("dev=%u, usbsts=%#x, p[1]=%#x, p[2]=%#x\n",
585676ae068SLucas Stach 		      dev->devnum, ehci_readl(&ctrl->hcor->or_usbsts),
586676ae068SLucas Stach 		      ehci_readl(&ctrl->hcor->or_portsc[0]),
587676ae068SLucas Stach 		      ehci_readl(&ctrl->hcor->or_portsc[1]));
588e82a316dSKuo-Jung Su #endif
5892731b9a8SJean-Christophe PLAGNIOL-VILLARD 	}
5902731b9a8SJean-Christophe PLAGNIOL-VILLARD 
5915cec214eSBenoît Thébaudeau 	free(qtd);
5922731b9a8SJean-Christophe PLAGNIOL-VILLARD 	return (dev->status != USB_ST_NOT_PROC) ? 0 : -1;
5932731b9a8SJean-Christophe PLAGNIOL-VILLARD 
5942731b9a8SJean-Christophe PLAGNIOL-VILLARD fail:
5955cec214eSBenoît Thébaudeau 	free(qtd);
5962731b9a8SJean-Christophe PLAGNIOL-VILLARD 	return -1;
5972731b9a8SJean-Christophe PLAGNIOL-VILLARD }
5982731b9a8SJean-Christophe PLAGNIOL-VILLARD 
5991dde1423SKuo-Jung Su __weak uint32_t *ehci_get_portsc_register(struct ehci_hcor *hcor, int port)
6001dde1423SKuo-Jung Su {
6011dde1423SKuo-Jung Su 	if (port < 0 || port >= CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS) {
6021dde1423SKuo-Jung Su 		/* Printing the message would cause a scan failure! */
6031dde1423SKuo-Jung Su 		debug("The request port(%u) is not configured\n", port);
6041dde1423SKuo-Jung Su 		return NULL;
6051dde1423SKuo-Jung Su 	}
6061dde1423SKuo-Jung Su 
6071dde1423SKuo-Jung Su 	return (uint32_t *)&hcor->or_portsc[port];
6081dde1423SKuo-Jung Su }
6091dde1423SKuo-Jung Su 
6102731b9a8SJean-Christophe PLAGNIOL-VILLARD int
6112731b9a8SJean-Christophe PLAGNIOL-VILLARD ehci_submit_root(struct usb_device *dev, unsigned long pipe, void *buffer,
6122731b9a8SJean-Christophe PLAGNIOL-VILLARD 		 int length, struct devrequest *req)
6132731b9a8SJean-Christophe PLAGNIOL-VILLARD {
6142731b9a8SJean-Christophe PLAGNIOL-VILLARD 	uint8_t tmpbuf[4];
6152731b9a8SJean-Christophe PLAGNIOL-VILLARD 	u16 typeReq;
6162731b9a8SJean-Christophe PLAGNIOL-VILLARD 	void *srcptr = NULL;
6172731b9a8SJean-Christophe PLAGNIOL-VILLARD 	int len, srclen;
6182731b9a8SJean-Christophe PLAGNIOL-VILLARD 	uint32_t reg;
6192731b9a8SJean-Christophe PLAGNIOL-VILLARD 	uint32_t *status_reg;
6207d9aa8fdSJulius Werner 	int port = le16_to_cpu(req->index) & 0xff;
621676ae068SLucas Stach 	struct ehci_ctrl *ctrl = dev->controller;
6222731b9a8SJean-Christophe PLAGNIOL-VILLARD 
6232731b9a8SJean-Christophe PLAGNIOL-VILLARD 	srclen = 0;
6242731b9a8SJean-Christophe PLAGNIOL-VILLARD 
6252731b9a8SJean-Christophe PLAGNIOL-VILLARD 	debug("req=%u (%#x), type=%u (%#x), value=%u, index=%u\n",
6262731b9a8SJean-Christophe PLAGNIOL-VILLARD 	      req->request, req->request,
6272731b9a8SJean-Christophe PLAGNIOL-VILLARD 	      req->requesttype, req->requesttype,
6282731b9a8SJean-Christophe PLAGNIOL-VILLARD 	      le16_to_cpu(req->value), le16_to_cpu(req->index));
6292731b9a8SJean-Christophe PLAGNIOL-VILLARD 
63044259bb9SPrafulla Wadaskar 	typeReq = req->request | req->requesttype << 8;
6312731b9a8SJean-Christophe PLAGNIOL-VILLARD 
63244259bb9SPrafulla Wadaskar 	switch (typeReq) {
6339c6a9d7cSKuo-Jung Su 	case USB_REQ_GET_STATUS | ((USB_RT_PORT | USB_DIR_IN) << 8):
6349c6a9d7cSKuo-Jung Su 	case USB_REQ_SET_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
6359c6a9d7cSKuo-Jung Su 	case USB_REQ_CLEAR_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
6361dde1423SKuo-Jung Su 		status_reg = ehci_get_portsc_register(ctrl->hcor, port - 1);
6371dde1423SKuo-Jung Su 		if (!status_reg)
6389c6a9d7cSKuo-Jung Su 			return -1;
6399c6a9d7cSKuo-Jung Su 		break;
6409c6a9d7cSKuo-Jung Su 	default:
6419c6a9d7cSKuo-Jung Su 		status_reg = NULL;
6429c6a9d7cSKuo-Jung Su 		break;
6439c6a9d7cSKuo-Jung Su 	}
6449c6a9d7cSKuo-Jung Su 
6459c6a9d7cSKuo-Jung Su 	switch (typeReq) {
6462731b9a8SJean-Christophe PLAGNIOL-VILLARD 	case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
6472731b9a8SJean-Christophe PLAGNIOL-VILLARD 		switch (le16_to_cpu(req->value) >> 8) {
6482731b9a8SJean-Christophe PLAGNIOL-VILLARD 		case USB_DT_DEVICE:
6492731b9a8SJean-Christophe PLAGNIOL-VILLARD 			debug("USB_DT_DEVICE request\n");
6502731b9a8SJean-Christophe PLAGNIOL-VILLARD 			srcptr = &descriptor.device;
65114eb79b7SBenoît Thébaudeau 			srclen = descriptor.device.bLength;
6522731b9a8SJean-Christophe PLAGNIOL-VILLARD 			break;
6532731b9a8SJean-Christophe PLAGNIOL-VILLARD 		case USB_DT_CONFIG:
6542731b9a8SJean-Christophe PLAGNIOL-VILLARD 			debug("USB_DT_CONFIG config\n");
6552731b9a8SJean-Christophe PLAGNIOL-VILLARD 			srcptr = &descriptor.config;
65614eb79b7SBenoît Thébaudeau 			srclen = descriptor.config.bLength +
65714eb79b7SBenoît Thébaudeau 					descriptor.interface.bLength +
65814eb79b7SBenoît Thébaudeau 					descriptor.endpoint.bLength;
6592731b9a8SJean-Christophe PLAGNIOL-VILLARD 			break;
6602731b9a8SJean-Christophe PLAGNIOL-VILLARD 		case USB_DT_STRING:
6612731b9a8SJean-Christophe PLAGNIOL-VILLARD 			debug("USB_DT_STRING config\n");
6622731b9a8SJean-Christophe PLAGNIOL-VILLARD 			switch (le16_to_cpu(req->value) & 0xff) {
6632731b9a8SJean-Christophe PLAGNIOL-VILLARD 			case 0:	/* Language */
6642731b9a8SJean-Christophe PLAGNIOL-VILLARD 				srcptr = "\4\3\1\0";
6652731b9a8SJean-Christophe PLAGNIOL-VILLARD 				srclen = 4;
6662731b9a8SJean-Christophe PLAGNIOL-VILLARD 				break;
6672731b9a8SJean-Christophe PLAGNIOL-VILLARD 			case 1:	/* Vendor */
6682731b9a8SJean-Christophe PLAGNIOL-VILLARD 				srcptr = "\16\3u\0-\0b\0o\0o\0t\0";
6692731b9a8SJean-Christophe PLAGNIOL-VILLARD 				srclen = 14;
6702731b9a8SJean-Christophe PLAGNIOL-VILLARD 				break;
6712731b9a8SJean-Christophe PLAGNIOL-VILLARD 			case 2:	/* Product */
6722731b9a8SJean-Christophe PLAGNIOL-VILLARD 				srcptr = "\52\3E\0H\0C\0I\0 "
6732731b9a8SJean-Christophe PLAGNIOL-VILLARD 					 "\0H\0o\0s\0t\0 "
6742731b9a8SJean-Christophe PLAGNIOL-VILLARD 					 "\0C\0o\0n\0t\0r\0o\0l\0l\0e\0r\0";
6752731b9a8SJean-Christophe PLAGNIOL-VILLARD 				srclen = 42;
6762731b9a8SJean-Christophe PLAGNIOL-VILLARD 				break;
6772731b9a8SJean-Christophe PLAGNIOL-VILLARD 			default:
6782731b9a8SJean-Christophe PLAGNIOL-VILLARD 				debug("unknown value DT_STRING %x\n",
6792731b9a8SJean-Christophe PLAGNIOL-VILLARD 					le16_to_cpu(req->value));
6802731b9a8SJean-Christophe PLAGNIOL-VILLARD 				goto unknown;
6812731b9a8SJean-Christophe PLAGNIOL-VILLARD 			}
6822731b9a8SJean-Christophe PLAGNIOL-VILLARD 			break;
6832731b9a8SJean-Christophe PLAGNIOL-VILLARD 		default:
6842731b9a8SJean-Christophe PLAGNIOL-VILLARD 			debug("unknown value %x\n", le16_to_cpu(req->value));
6852731b9a8SJean-Christophe PLAGNIOL-VILLARD 			goto unknown;
6862731b9a8SJean-Christophe PLAGNIOL-VILLARD 		}
6872731b9a8SJean-Christophe PLAGNIOL-VILLARD 		break;
6882731b9a8SJean-Christophe PLAGNIOL-VILLARD 	case USB_REQ_GET_DESCRIPTOR | ((USB_DIR_IN | USB_RT_HUB) << 8):
6892731b9a8SJean-Christophe PLAGNIOL-VILLARD 		switch (le16_to_cpu(req->value) >> 8) {
6902731b9a8SJean-Christophe PLAGNIOL-VILLARD 		case USB_DT_HUB:
6912731b9a8SJean-Christophe PLAGNIOL-VILLARD 			debug("USB_DT_HUB config\n");
6922731b9a8SJean-Christophe PLAGNIOL-VILLARD 			srcptr = &descriptor.hub;
69314eb79b7SBenoît Thébaudeau 			srclen = descriptor.hub.bLength;
6942731b9a8SJean-Christophe PLAGNIOL-VILLARD 			break;
6952731b9a8SJean-Christophe PLAGNIOL-VILLARD 		default:
6962731b9a8SJean-Christophe PLAGNIOL-VILLARD 			debug("unknown value %x\n", le16_to_cpu(req->value));
6972731b9a8SJean-Christophe PLAGNIOL-VILLARD 			goto unknown;
6982731b9a8SJean-Christophe PLAGNIOL-VILLARD 		}
6992731b9a8SJean-Christophe PLAGNIOL-VILLARD 		break;
7002731b9a8SJean-Christophe PLAGNIOL-VILLARD 	case USB_REQ_SET_ADDRESS | (USB_RECIP_DEVICE << 8):
7012731b9a8SJean-Christophe PLAGNIOL-VILLARD 		debug("USB_REQ_SET_ADDRESS\n");
702676ae068SLucas Stach 		ctrl->rootdev = le16_to_cpu(req->value);
7032731b9a8SJean-Christophe PLAGNIOL-VILLARD 		break;
7042731b9a8SJean-Christophe PLAGNIOL-VILLARD 	case DeviceOutRequest | USB_REQ_SET_CONFIGURATION:
7052731b9a8SJean-Christophe PLAGNIOL-VILLARD 		debug("USB_REQ_SET_CONFIGURATION\n");
7062731b9a8SJean-Christophe PLAGNIOL-VILLARD 		/* Nothing to do */
7072731b9a8SJean-Christophe PLAGNIOL-VILLARD 		break;
7082731b9a8SJean-Christophe PLAGNIOL-VILLARD 	case USB_REQ_GET_STATUS | ((USB_DIR_IN | USB_RT_HUB) << 8):
7092731b9a8SJean-Christophe PLAGNIOL-VILLARD 		tmpbuf[0] = 1;	/* USB_STATUS_SELFPOWERED */
7102731b9a8SJean-Christophe PLAGNIOL-VILLARD 		tmpbuf[1] = 0;
7112731b9a8SJean-Christophe PLAGNIOL-VILLARD 		srcptr = tmpbuf;
7122731b9a8SJean-Christophe PLAGNIOL-VILLARD 		srclen = 2;
7132731b9a8SJean-Christophe PLAGNIOL-VILLARD 		break;
7142731b9a8SJean-Christophe PLAGNIOL-VILLARD 	case USB_REQ_GET_STATUS | ((USB_RT_PORT | USB_DIR_IN) << 8):
7152731b9a8SJean-Christophe PLAGNIOL-VILLARD 		memset(tmpbuf, 0, 4);
7162731b9a8SJean-Christophe PLAGNIOL-VILLARD 		reg = ehci_readl(status_reg);
7172731b9a8SJean-Christophe PLAGNIOL-VILLARD 		if (reg & EHCI_PS_CS)
7182731b9a8SJean-Christophe PLAGNIOL-VILLARD 			tmpbuf[0] |= USB_PORT_STAT_CONNECTION;
7192731b9a8SJean-Christophe PLAGNIOL-VILLARD 		if (reg & EHCI_PS_PE)
7202731b9a8SJean-Christophe PLAGNIOL-VILLARD 			tmpbuf[0] |= USB_PORT_STAT_ENABLE;
7212731b9a8SJean-Christophe PLAGNIOL-VILLARD 		if (reg & EHCI_PS_SUSP)
7222731b9a8SJean-Christophe PLAGNIOL-VILLARD 			tmpbuf[0] |= USB_PORT_STAT_SUSPEND;
7232731b9a8SJean-Christophe PLAGNIOL-VILLARD 		if (reg & EHCI_PS_OCA)
7242731b9a8SJean-Christophe PLAGNIOL-VILLARD 			tmpbuf[0] |= USB_PORT_STAT_OVERCURRENT;
725c8b2d1dcSSergei Shtylyov 		if (reg & EHCI_PS_PR)
7262731b9a8SJean-Christophe PLAGNIOL-VILLARD 			tmpbuf[0] |= USB_PORT_STAT_RESET;
7272731b9a8SJean-Christophe PLAGNIOL-VILLARD 		if (reg & EHCI_PS_PP)
7282731b9a8SJean-Christophe PLAGNIOL-VILLARD 			tmpbuf[1] |= USB_PORT_STAT_POWER >> 8;
7292731b9a8SJean-Christophe PLAGNIOL-VILLARD 
7302731b9a8SJean-Christophe PLAGNIOL-VILLARD 		if (ehci_is_TDI()) {
731b068deb3SJim Lin 			switch (ehci_get_port_speed(ctrl->hcor, reg)) {
73214eb79b7SBenoît Thébaudeau 			case PORTSC_PSPD_FS:
7332731b9a8SJean-Christophe PLAGNIOL-VILLARD 				break;
73414eb79b7SBenoît Thébaudeau 			case PORTSC_PSPD_LS:
7352731b9a8SJean-Christophe PLAGNIOL-VILLARD 				tmpbuf[1] |= USB_PORT_STAT_LOW_SPEED >> 8;
7362731b9a8SJean-Christophe PLAGNIOL-VILLARD 				break;
73714eb79b7SBenoît Thébaudeau 			case PORTSC_PSPD_HS:
7382731b9a8SJean-Christophe PLAGNIOL-VILLARD 			default:
7392731b9a8SJean-Christophe PLAGNIOL-VILLARD 				tmpbuf[1] |= USB_PORT_STAT_HIGH_SPEED >> 8;
7402731b9a8SJean-Christophe PLAGNIOL-VILLARD 				break;
7412731b9a8SJean-Christophe PLAGNIOL-VILLARD 			}
7422731b9a8SJean-Christophe PLAGNIOL-VILLARD 		} else {
7432731b9a8SJean-Christophe PLAGNIOL-VILLARD 			tmpbuf[1] |= USB_PORT_STAT_HIGH_SPEED >> 8;
7442731b9a8SJean-Christophe PLAGNIOL-VILLARD 		}
7452731b9a8SJean-Christophe PLAGNIOL-VILLARD 
7462731b9a8SJean-Christophe PLAGNIOL-VILLARD 		if (reg & EHCI_PS_CSC)
7472731b9a8SJean-Christophe PLAGNIOL-VILLARD 			tmpbuf[2] |= USB_PORT_STAT_C_CONNECTION;
7482731b9a8SJean-Christophe PLAGNIOL-VILLARD 		if (reg & EHCI_PS_PEC)
7492731b9a8SJean-Christophe PLAGNIOL-VILLARD 			tmpbuf[2] |= USB_PORT_STAT_C_ENABLE;
7502731b9a8SJean-Christophe PLAGNIOL-VILLARD 		if (reg & EHCI_PS_OCC)
7512731b9a8SJean-Christophe PLAGNIOL-VILLARD 			tmpbuf[2] |= USB_PORT_STAT_C_OVERCURRENT;
7527d9aa8fdSJulius Werner 		if (ctrl->portreset & (1 << port))
7532731b9a8SJean-Christophe PLAGNIOL-VILLARD 			tmpbuf[2] |= USB_PORT_STAT_C_RESET;
7542731b9a8SJean-Christophe PLAGNIOL-VILLARD 
7552731b9a8SJean-Christophe PLAGNIOL-VILLARD 		srcptr = tmpbuf;
7562731b9a8SJean-Christophe PLAGNIOL-VILLARD 		srclen = 4;
7572731b9a8SJean-Christophe PLAGNIOL-VILLARD 		break;
7582731b9a8SJean-Christophe PLAGNIOL-VILLARD 	case USB_REQ_SET_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
7592731b9a8SJean-Christophe PLAGNIOL-VILLARD 		reg = ehci_readl(status_reg);
7602731b9a8SJean-Christophe PLAGNIOL-VILLARD 		reg &= ~EHCI_PS_CLEAR;
7612731b9a8SJean-Christophe PLAGNIOL-VILLARD 		switch (le16_to_cpu(req->value)) {
7622731b9a8SJean-Christophe PLAGNIOL-VILLARD 		case USB_PORT_FEAT_ENABLE:
7632731b9a8SJean-Christophe PLAGNIOL-VILLARD 			reg |= EHCI_PS_PE;
7642731b9a8SJean-Christophe PLAGNIOL-VILLARD 			ehci_writel(status_reg, reg);
7652731b9a8SJean-Christophe PLAGNIOL-VILLARD 			break;
7662731b9a8SJean-Christophe PLAGNIOL-VILLARD 		case USB_PORT_FEAT_POWER:
767676ae068SLucas Stach 			if (HCS_PPC(ehci_readl(&ctrl->hccr->cr_hcsparams))) {
7682731b9a8SJean-Christophe PLAGNIOL-VILLARD 				reg |= EHCI_PS_PP;
7692731b9a8SJean-Christophe PLAGNIOL-VILLARD 				ehci_writel(status_reg, reg);
7702731b9a8SJean-Christophe PLAGNIOL-VILLARD 			}
7712731b9a8SJean-Christophe PLAGNIOL-VILLARD 			break;
7722731b9a8SJean-Christophe PLAGNIOL-VILLARD 		case USB_PORT_FEAT_RESET:
7732731b9a8SJean-Christophe PLAGNIOL-VILLARD 			if ((reg & (EHCI_PS_PE | EHCI_PS_CS)) == EHCI_PS_CS &&
7742731b9a8SJean-Christophe PLAGNIOL-VILLARD 			    !ehci_is_TDI() &&
7752731b9a8SJean-Christophe PLAGNIOL-VILLARD 			    EHCI_PS_IS_LOWSPEED(reg)) {
7762731b9a8SJean-Christophe PLAGNIOL-VILLARD 				/* Low speed device, give up ownership. */
7772731b9a8SJean-Christophe PLAGNIOL-VILLARD 				debug("port %d low speed --> companion\n",
7787d9aa8fdSJulius Werner 				      port - 1);
7792731b9a8SJean-Christophe PLAGNIOL-VILLARD 				reg |= EHCI_PS_PO;
7802731b9a8SJean-Christophe PLAGNIOL-VILLARD 				ehci_writel(status_reg, reg);
7812731b9a8SJean-Christophe PLAGNIOL-VILLARD 				break;
7822731b9a8SJean-Christophe PLAGNIOL-VILLARD 			} else {
783c8b2d1dcSSergei Shtylyov 				int ret;
784c8b2d1dcSSergei Shtylyov 
7852731b9a8SJean-Christophe PLAGNIOL-VILLARD 				reg |= EHCI_PS_PR;
7862731b9a8SJean-Christophe PLAGNIOL-VILLARD 				reg &= ~EHCI_PS_PE;
7872731b9a8SJean-Christophe PLAGNIOL-VILLARD 				ehci_writel(status_reg, reg);
7882731b9a8SJean-Christophe PLAGNIOL-VILLARD 				/*
7892731b9a8SJean-Christophe PLAGNIOL-VILLARD 				 * caller must wait, then call GetPortStatus
7902731b9a8SJean-Christophe PLAGNIOL-VILLARD 				 * usb 2.0 specification say 50 ms resets on
7912731b9a8SJean-Christophe PLAGNIOL-VILLARD 				 * root
7922731b9a8SJean-Christophe PLAGNIOL-VILLARD 				 */
7933874b6d6SMarek Vasut 				ehci_powerup_fixup(status_reg, &reg);
7943874b6d6SMarek Vasut 
795b416191aSChris Zhang 				ehci_writel(status_reg, reg & ~EHCI_PS_PR);
796c8b2d1dcSSergei Shtylyov 				/*
797c8b2d1dcSSergei Shtylyov 				 * A host controller must terminate the reset
798c8b2d1dcSSergei Shtylyov 				 * and stabilize the state of the port within
799c8b2d1dcSSergei Shtylyov 				 * 2 milliseconds
800c8b2d1dcSSergei Shtylyov 				 */
801c8b2d1dcSSergei Shtylyov 				ret = handshake(status_reg, EHCI_PS_PR, 0,
802c8b2d1dcSSergei Shtylyov 						2 * 1000);
803c8b2d1dcSSergei Shtylyov 				if (!ret)
8047d9aa8fdSJulius Werner 					ctrl->portreset |= 1 << port;
805c8b2d1dcSSergei Shtylyov 				else
806c8b2d1dcSSergei Shtylyov 					printf("port(%d) reset error\n",
8077d9aa8fdSJulius Werner 					       port - 1);
8082731b9a8SJean-Christophe PLAGNIOL-VILLARD 			}
8092731b9a8SJean-Christophe PLAGNIOL-VILLARD 			break;
8107d9aa8fdSJulius Werner 		case USB_PORT_FEAT_TEST:
8117d9aa8fdSJulius Werner 			reg &= ~(0xf << 16);
8127d9aa8fdSJulius Werner 			reg |= ((le16_to_cpu(req->index) >> 8) & 0xf) << 16;
8137d9aa8fdSJulius Werner 			ehci_writel(status_reg, reg);
8147d9aa8fdSJulius Werner 			break;
8152731b9a8SJean-Christophe PLAGNIOL-VILLARD 		default:
8162731b9a8SJean-Christophe PLAGNIOL-VILLARD 			debug("unknown feature %x\n", le16_to_cpu(req->value));
8172731b9a8SJean-Christophe PLAGNIOL-VILLARD 			goto unknown;
8182731b9a8SJean-Christophe PLAGNIOL-VILLARD 		}
8192731b9a8SJean-Christophe PLAGNIOL-VILLARD 		/* unblock posted writes */
820676ae068SLucas Stach 		(void) ehci_readl(&ctrl->hcor->or_usbcmd);
8212731b9a8SJean-Christophe PLAGNIOL-VILLARD 		break;
8222731b9a8SJean-Christophe PLAGNIOL-VILLARD 	case USB_REQ_CLEAR_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
8232731b9a8SJean-Christophe PLAGNIOL-VILLARD 		reg = ehci_readl(status_reg);
824ed10e66aSSimon Glass 		reg &= ~EHCI_PS_CLEAR;
8252731b9a8SJean-Christophe PLAGNIOL-VILLARD 		switch (le16_to_cpu(req->value)) {
8262731b9a8SJean-Christophe PLAGNIOL-VILLARD 		case USB_PORT_FEAT_ENABLE:
8272731b9a8SJean-Christophe PLAGNIOL-VILLARD 			reg &= ~EHCI_PS_PE;
8282731b9a8SJean-Christophe PLAGNIOL-VILLARD 			break;
8292731b9a8SJean-Christophe PLAGNIOL-VILLARD 		case USB_PORT_FEAT_C_ENABLE:
830ed10e66aSSimon Glass 			reg |= EHCI_PS_PE;
8312731b9a8SJean-Christophe PLAGNIOL-VILLARD 			break;
8322731b9a8SJean-Christophe PLAGNIOL-VILLARD 		case USB_PORT_FEAT_POWER:
833676ae068SLucas Stach 			if (HCS_PPC(ehci_readl(&ctrl->hccr->cr_hcsparams)))
834ed10e66aSSimon Glass 				reg &= ~EHCI_PS_PP;
835ed10e66aSSimon Glass 			break;
8362731b9a8SJean-Christophe PLAGNIOL-VILLARD 		case USB_PORT_FEAT_C_CONNECTION:
837ed10e66aSSimon Glass 			reg |= EHCI_PS_CSC;
8382731b9a8SJean-Christophe PLAGNIOL-VILLARD 			break;
8392731b9a8SJean-Christophe PLAGNIOL-VILLARD 		case USB_PORT_FEAT_OVER_CURRENT:
840ed10e66aSSimon Glass 			reg |= EHCI_PS_OCC;
8412731b9a8SJean-Christophe PLAGNIOL-VILLARD 			break;
8422731b9a8SJean-Christophe PLAGNIOL-VILLARD 		case USB_PORT_FEAT_C_RESET:
8437d9aa8fdSJulius Werner 			ctrl->portreset &= ~(1 << port);
8442731b9a8SJean-Christophe PLAGNIOL-VILLARD 			break;
8452731b9a8SJean-Christophe PLAGNIOL-VILLARD 		default:
8462731b9a8SJean-Christophe PLAGNIOL-VILLARD 			debug("unknown feature %x\n", le16_to_cpu(req->value));
8472731b9a8SJean-Christophe PLAGNIOL-VILLARD 			goto unknown;
8482731b9a8SJean-Christophe PLAGNIOL-VILLARD 		}
8492731b9a8SJean-Christophe PLAGNIOL-VILLARD 		ehci_writel(status_reg, reg);
8502731b9a8SJean-Christophe PLAGNIOL-VILLARD 		/* unblock posted write */
851676ae068SLucas Stach 		(void) ehci_readl(&ctrl->hcor->or_usbcmd);
8522731b9a8SJean-Christophe PLAGNIOL-VILLARD 		break;
8532731b9a8SJean-Christophe PLAGNIOL-VILLARD 	default:
8542731b9a8SJean-Christophe PLAGNIOL-VILLARD 		debug("Unknown request\n");
8552731b9a8SJean-Christophe PLAGNIOL-VILLARD 		goto unknown;
8562731b9a8SJean-Christophe PLAGNIOL-VILLARD 	}
8572731b9a8SJean-Christophe PLAGNIOL-VILLARD 
8585b84dd67SMike Frysinger 	mdelay(1);
8592731b9a8SJean-Christophe PLAGNIOL-VILLARD 	len = min3(srclen, le16_to_cpu(req->length), length);
8602731b9a8SJean-Christophe PLAGNIOL-VILLARD 	if (srcptr != NULL && len > 0)
8612731b9a8SJean-Christophe PLAGNIOL-VILLARD 		memcpy(buffer, srcptr, len);
8622731b9a8SJean-Christophe PLAGNIOL-VILLARD 	else
8632731b9a8SJean-Christophe PLAGNIOL-VILLARD 		debug("Len is 0\n");
8642731b9a8SJean-Christophe PLAGNIOL-VILLARD 
8652731b9a8SJean-Christophe PLAGNIOL-VILLARD 	dev->act_len = len;
8662731b9a8SJean-Christophe PLAGNIOL-VILLARD 	dev->status = 0;
8672731b9a8SJean-Christophe PLAGNIOL-VILLARD 	return 0;
8682731b9a8SJean-Christophe PLAGNIOL-VILLARD 
8692731b9a8SJean-Christophe PLAGNIOL-VILLARD unknown:
8702731b9a8SJean-Christophe PLAGNIOL-VILLARD 	debug("requesttype=%x, request=%x, value=%x, index=%x, length=%x\n",
8712731b9a8SJean-Christophe PLAGNIOL-VILLARD 	      req->requesttype, req->request, le16_to_cpu(req->value),
8722731b9a8SJean-Christophe PLAGNIOL-VILLARD 	      le16_to_cpu(req->index), le16_to_cpu(req->length));
8732731b9a8SJean-Christophe PLAGNIOL-VILLARD 
8742731b9a8SJean-Christophe PLAGNIOL-VILLARD 	dev->act_len = 0;
8752731b9a8SJean-Christophe PLAGNIOL-VILLARD 	dev->status = USB_ST_STALLED;
8762731b9a8SJean-Christophe PLAGNIOL-VILLARD 	return -1;
8772731b9a8SJean-Christophe PLAGNIOL-VILLARD }
8782731b9a8SJean-Christophe PLAGNIOL-VILLARD 
879c7e3b2b5SLucas Stach int usb_lowlevel_stop(int index)
8802731b9a8SJean-Christophe PLAGNIOL-VILLARD {
881676ae068SLucas Stach 	return ehci_hcd_stop(index);
8822731b9a8SJean-Christophe PLAGNIOL-VILLARD }
8832731b9a8SJean-Christophe PLAGNIOL-VILLARD 
884c7e3b2b5SLucas Stach int usb_lowlevel_init(int index, void **controller)
8852731b9a8SJean-Christophe PLAGNIOL-VILLARD {
8862731b9a8SJean-Christophe PLAGNIOL-VILLARD 	uint32_t reg;
8872731b9a8SJean-Christophe PLAGNIOL-VILLARD 	uint32_t cmd;
888676ae068SLucas Stach 	struct QH *qh_list;
8898f62ca64SPatrick Georgi 	struct QH *periodic;
8908f62ca64SPatrick Georgi 	int i;
8912731b9a8SJean-Christophe PLAGNIOL-VILLARD 
892676ae068SLucas Stach 	if (ehci_hcd_init(index, &ehcic[index].hccr, &ehcic[index].hcor))
8932731b9a8SJean-Christophe PLAGNIOL-VILLARD 		return -1;
8942731b9a8SJean-Christophe PLAGNIOL-VILLARD 
8952731b9a8SJean-Christophe PLAGNIOL-VILLARD 	/* EHCI spec section 4.1 */
896676ae068SLucas Stach 	if (ehci_reset(index))
8972731b9a8SJean-Christophe PLAGNIOL-VILLARD 		return -1;
8982731b9a8SJean-Christophe PLAGNIOL-VILLARD 
8992731b9a8SJean-Christophe PLAGNIOL-VILLARD #if defined(CONFIG_EHCI_HCD_INIT_AFTER_RESET)
900676ae068SLucas Stach 	if (ehci_hcd_init(index, &ehcic[index].hccr, &ehcic[index].hcor))
9012731b9a8SJean-Christophe PLAGNIOL-VILLARD 		return -1;
9022731b9a8SJean-Christophe PLAGNIOL-VILLARD #endif
9032982837eSVincent Palatin 	/* Set the high address word (aka segment) for 64-bit controller */
9042982837eSVincent Palatin 	if (ehci_readl(&ehcic[index].hccr->cr_hccparams) & 1)
9052982837eSVincent Palatin 		ehci_writel(ehcic[index].hcor->or_ctrldssegment, 0);
9062731b9a8SJean-Christophe PLAGNIOL-VILLARD 
907676ae068SLucas Stach 	qh_list = &ehcic[index].qh_list;
908676ae068SLucas Stach 
9092731b9a8SJean-Christophe PLAGNIOL-VILLARD 	/* Set head of reclaim list */
91071c5de4fSTom Rini 	memset(qh_list, 0, sizeof(*qh_list));
91171c5de4fSTom Rini 	qh_list->qh_link = cpu_to_hc32((uint32_t)qh_list | QH_LINK_TYPE_QH);
91214eb79b7SBenoît Thébaudeau 	qh_list->qh_endpt1 = cpu_to_hc32(QH_ENDPT1_H(1) |
91314eb79b7SBenoît Thébaudeau 						QH_ENDPT1_EPS(USB_SPEED_HIGH));
91471c5de4fSTom Rini 	qh_list->qh_curtd = cpu_to_hc32(QT_NEXT_TERMINATE);
91571c5de4fSTom Rini 	qh_list->qh_overlay.qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
91671c5de4fSTom Rini 	qh_list->qh_overlay.qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
91714eb79b7SBenoît Thébaudeau 	qh_list->qh_overlay.qt_token =
91814eb79b7SBenoît Thébaudeau 			cpu_to_hc32(QT_TOKEN_STATUS(QT_TOKEN_STATUS_HALTED));
9192731b9a8SJean-Christophe PLAGNIOL-VILLARD 
920d3e07478SStephen Warren 	flush_dcache_range((uint32_t)qh_list,
921d3e07478SStephen Warren 			   ALIGN_END_ADDR(struct QH, qh_list, 1));
922d3e07478SStephen Warren 
9238f62ca64SPatrick Georgi 	/* Set async. queue head pointer. */
9248f62ca64SPatrick Georgi 	ehci_writel(&ehcic[index].hcor->or_asynclistaddr, (uint32_t)qh_list);
9258f62ca64SPatrick Georgi 
9268f62ca64SPatrick Georgi 	/*
9278f62ca64SPatrick Georgi 	 * Set up periodic list
9288f62ca64SPatrick Georgi 	 * Step 1: Parent QH for all periodic transfers.
9298f62ca64SPatrick Georgi 	 */
9308f62ca64SPatrick Georgi 	periodic = &ehcic[index].periodic_queue;
9318f62ca64SPatrick Georgi 	memset(periodic, 0, sizeof(*periodic));
9328f62ca64SPatrick Georgi 	periodic->qh_link = cpu_to_hc32(QH_LINK_TERMINATE);
9338f62ca64SPatrick Georgi 	periodic->qh_overlay.qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
9348f62ca64SPatrick Georgi 	periodic->qh_overlay.qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
9358f62ca64SPatrick Georgi 
936d3e07478SStephen Warren 	flush_dcache_range((uint32_t)periodic,
937d3e07478SStephen Warren 			   ALIGN_END_ADDR(struct QH, periodic, 1));
938d3e07478SStephen Warren 
9398f62ca64SPatrick Georgi 	/*
9408f62ca64SPatrick Georgi 	 * Step 2: Setup frame-list: Every microframe, USB tries the same list.
9418f62ca64SPatrick Georgi 	 *         In particular, device specifications on polling frequency
9428f62ca64SPatrick Georgi 	 *         are disregarded. Keyboards seem to send NAK/NYet reliably
9438f62ca64SPatrick Georgi 	 *         when polled with an empty buffer.
9448f62ca64SPatrick Georgi 	 *
9458f62ca64SPatrick Georgi 	 *         Split Transactions will be spread across microframes using
9468f62ca64SPatrick Georgi 	 *         S-mask and C-mask.
9478f62ca64SPatrick Georgi 	 */
948*8bc36036SNikita Kiryanov 	if (ehcic[index].periodic_list == NULL)
9498f62ca64SPatrick Georgi 		ehcic[index].periodic_list = memalign(4096, 1024 * 4);
950*8bc36036SNikita Kiryanov 
9518f62ca64SPatrick Georgi 	if (!ehcic[index].periodic_list)
9528f62ca64SPatrick Georgi 		return -ENOMEM;
9538f62ca64SPatrick Georgi 	for (i = 0; i < 1024; i++) {
9548f62ca64SPatrick Georgi 		ehcic[index].periodic_list[i] = (uint32_t)periodic
9558f62ca64SPatrick Georgi 						| QH_LINK_TYPE_QH;
9568f62ca64SPatrick Georgi 	}
9578f62ca64SPatrick Georgi 
958d3e07478SStephen Warren 	flush_dcache_range((uint32_t)ehcic[index].periodic_list,
959d3e07478SStephen Warren 			   ALIGN_END_ADDR(uint32_t, ehcic[index].periodic_list,
960d3e07478SStephen Warren 					  1024));
961d3e07478SStephen Warren 
9628f62ca64SPatrick Georgi 	/* Set periodic list base address */
9638f62ca64SPatrick Georgi 	ehci_writel(&ehcic[index].hcor->or_periodiclistbase,
9648f62ca64SPatrick Georgi 		(uint32_t)ehcic[index].periodic_list);
9658f62ca64SPatrick Georgi 
966676ae068SLucas Stach 	reg = ehci_readl(&ehcic[index].hccr->cr_hcsparams);
9672731b9a8SJean-Christophe PLAGNIOL-VILLARD 	descriptor.hub.bNbrPorts = HCS_N_PORTS(reg);
9687a46b2c7SLucas Stach 	debug("Register %x NbrPorts %d\n", reg, descriptor.hub.bNbrPorts);
9692731b9a8SJean-Christophe PLAGNIOL-VILLARD 	/* Port Indicators */
9702731b9a8SJean-Christophe PLAGNIOL-VILLARD 	if (HCS_INDICATOR(reg))
97193ad908cSLucas Stach 		put_unaligned(get_unaligned(&descriptor.hub.wHubCharacteristics)
97293ad908cSLucas Stach 				| 0x80, &descriptor.hub.wHubCharacteristics);
9732731b9a8SJean-Christophe PLAGNIOL-VILLARD 	/* Port Power Control */
9742731b9a8SJean-Christophe PLAGNIOL-VILLARD 	if (HCS_PPC(reg))
97593ad908cSLucas Stach 		put_unaligned(get_unaligned(&descriptor.hub.wHubCharacteristics)
97693ad908cSLucas Stach 				| 0x01, &descriptor.hub.wHubCharacteristics);
9772731b9a8SJean-Christophe PLAGNIOL-VILLARD 
9782731b9a8SJean-Christophe PLAGNIOL-VILLARD 	/* Start the host controller. */
979676ae068SLucas Stach 	cmd = ehci_readl(&ehcic[index].hcor->or_usbcmd);
9802731b9a8SJean-Christophe PLAGNIOL-VILLARD 	/*
9812731b9a8SJean-Christophe PLAGNIOL-VILLARD 	 * Philips, Intel, and maybe others need CMD_RUN before the
9822731b9a8SJean-Christophe PLAGNIOL-VILLARD 	 * root hub will detect new devices (why?); NEC doesn't
9832731b9a8SJean-Christophe PLAGNIOL-VILLARD 	 */
9842731b9a8SJean-Christophe PLAGNIOL-VILLARD 	cmd &= ~(CMD_LRESET|CMD_IAAD|CMD_PSE|CMD_ASE|CMD_RESET);
9852731b9a8SJean-Christophe PLAGNIOL-VILLARD 	cmd |= CMD_RUN;
986676ae068SLucas Stach 	ehci_writel(&ehcic[index].hcor->or_usbcmd, cmd);
9872731b9a8SJean-Christophe PLAGNIOL-VILLARD 
988e82a316dSKuo-Jung Su #ifndef CONFIG_USB_EHCI_FARADAY
9892731b9a8SJean-Christophe PLAGNIOL-VILLARD 	/* take control over the ports */
990676ae068SLucas Stach 	cmd = ehci_readl(&ehcic[index].hcor->or_configflag);
9912731b9a8SJean-Christophe PLAGNIOL-VILLARD 	cmd |= FLAG_CF;
992676ae068SLucas Stach 	ehci_writel(&ehcic[index].hcor->or_configflag, cmd);
993e82a316dSKuo-Jung Su #endif
994e82a316dSKuo-Jung Su 
9952731b9a8SJean-Christophe PLAGNIOL-VILLARD 	/* unblock posted write */
996676ae068SLucas Stach 	cmd = ehci_readl(&ehcic[index].hcor->or_usbcmd);
9975b84dd67SMike Frysinger 	mdelay(5);
998676ae068SLucas Stach 	reg = HC_VERSION(ehci_readl(&ehcic[index].hccr->cr_capbase));
9992731b9a8SJean-Christophe PLAGNIOL-VILLARD 	printf("USB EHCI %x.%02x\n", reg >> 8, reg & 0xff);
10002731b9a8SJean-Christophe PLAGNIOL-VILLARD 
1001676ae068SLucas Stach 	ehcic[index].rootdev = 0;
10022731b9a8SJean-Christophe PLAGNIOL-VILLARD 
1003676ae068SLucas Stach 	*controller = &ehcic[index];
10042731b9a8SJean-Christophe PLAGNIOL-VILLARD 	return 0;
10052731b9a8SJean-Christophe PLAGNIOL-VILLARD }
10062731b9a8SJean-Christophe PLAGNIOL-VILLARD 
10072731b9a8SJean-Christophe PLAGNIOL-VILLARD int
10082731b9a8SJean-Christophe PLAGNIOL-VILLARD submit_bulk_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
10092731b9a8SJean-Christophe PLAGNIOL-VILLARD 		int length)
10102731b9a8SJean-Christophe PLAGNIOL-VILLARD {
10112731b9a8SJean-Christophe PLAGNIOL-VILLARD 
10122731b9a8SJean-Christophe PLAGNIOL-VILLARD 	if (usb_pipetype(pipe) != PIPE_BULK) {
10132731b9a8SJean-Christophe PLAGNIOL-VILLARD 		debug("non-bulk pipe (type=%lu)", usb_pipetype(pipe));
10142731b9a8SJean-Christophe PLAGNIOL-VILLARD 		return -1;
10152731b9a8SJean-Christophe PLAGNIOL-VILLARD 	}
10162731b9a8SJean-Christophe PLAGNIOL-VILLARD 	return ehci_submit_async(dev, pipe, buffer, length, NULL);
10172731b9a8SJean-Christophe PLAGNIOL-VILLARD }
10182731b9a8SJean-Christophe PLAGNIOL-VILLARD 
10192731b9a8SJean-Christophe PLAGNIOL-VILLARD int
10202731b9a8SJean-Christophe PLAGNIOL-VILLARD submit_control_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
10212731b9a8SJean-Christophe PLAGNIOL-VILLARD 		   int length, struct devrequest *setup)
10222731b9a8SJean-Christophe PLAGNIOL-VILLARD {
1023676ae068SLucas Stach 	struct ehci_ctrl *ctrl = dev->controller;
10242731b9a8SJean-Christophe PLAGNIOL-VILLARD 
10252731b9a8SJean-Christophe PLAGNIOL-VILLARD 	if (usb_pipetype(pipe) != PIPE_CONTROL) {
10262731b9a8SJean-Christophe PLAGNIOL-VILLARD 		debug("non-control pipe (type=%lu)", usb_pipetype(pipe));
10272731b9a8SJean-Christophe PLAGNIOL-VILLARD 		return -1;
10282731b9a8SJean-Christophe PLAGNIOL-VILLARD 	}
10292731b9a8SJean-Christophe PLAGNIOL-VILLARD 
1030676ae068SLucas Stach 	if (usb_pipedevice(pipe) == ctrl->rootdev) {
1031676ae068SLucas Stach 		if (!ctrl->rootdev)
10322731b9a8SJean-Christophe PLAGNIOL-VILLARD 			dev->speed = USB_SPEED_HIGH;
10332731b9a8SJean-Christophe PLAGNIOL-VILLARD 		return ehci_submit_root(dev, pipe, buffer, length, setup);
10342731b9a8SJean-Christophe PLAGNIOL-VILLARD 	}
10352731b9a8SJean-Christophe PLAGNIOL-VILLARD 	return ehci_submit_async(dev, pipe, buffer, length, setup);
10362731b9a8SJean-Christophe PLAGNIOL-VILLARD }
10372731b9a8SJean-Christophe PLAGNIOL-VILLARD 
10388f62ca64SPatrick Georgi struct int_queue {
10398f62ca64SPatrick Georgi 	struct QH *first;
10408f62ca64SPatrick Georgi 	struct QH *current;
10418f62ca64SPatrick Georgi 	struct QH *last;
10428f62ca64SPatrick Georgi 	struct qTD *tds;
10438f62ca64SPatrick Georgi };
10448f62ca64SPatrick Georgi 
10458f62ca64SPatrick Georgi #define NEXT_QH(qh) (struct QH *)((qh)->qh_link & ~0x1f)
10468f62ca64SPatrick Georgi 
10478f62ca64SPatrick Georgi static int
10488f62ca64SPatrick Georgi enable_periodic(struct ehci_ctrl *ctrl)
10498f62ca64SPatrick Georgi {
10508f62ca64SPatrick Georgi 	uint32_t cmd;
10518f62ca64SPatrick Georgi 	struct ehci_hcor *hcor = ctrl->hcor;
10528f62ca64SPatrick Georgi 	int ret;
10538f62ca64SPatrick Georgi 
10548f62ca64SPatrick Georgi 	cmd = ehci_readl(&hcor->or_usbcmd);
10558f62ca64SPatrick Georgi 	cmd |= CMD_PSE;
10568f62ca64SPatrick Georgi 	ehci_writel(&hcor->or_usbcmd, cmd);
10578f62ca64SPatrick Georgi 
10588f62ca64SPatrick Georgi 	ret = handshake((uint32_t *)&hcor->or_usbsts,
10598f62ca64SPatrick Georgi 			STS_PSS, STS_PSS, 100 * 1000);
10608f62ca64SPatrick Georgi 	if (ret < 0) {
10618f62ca64SPatrick Georgi 		printf("EHCI failed: timeout when enabling periodic list\n");
10628f62ca64SPatrick Georgi 		return -ETIMEDOUT;
10638f62ca64SPatrick Georgi 	}
10648f62ca64SPatrick Georgi 	udelay(1000);
10658f62ca64SPatrick Georgi 	return 0;
10668f62ca64SPatrick Georgi }
10678f62ca64SPatrick Georgi 
10688f62ca64SPatrick Georgi static int
10698f62ca64SPatrick Georgi disable_periodic(struct ehci_ctrl *ctrl)
10708f62ca64SPatrick Georgi {
10718f62ca64SPatrick Georgi 	uint32_t cmd;
10728f62ca64SPatrick Georgi 	struct ehci_hcor *hcor = ctrl->hcor;
10738f62ca64SPatrick Georgi 	int ret;
10748f62ca64SPatrick Georgi 
10758f62ca64SPatrick Georgi 	cmd = ehci_readl(&hcor->or_usbcmd);
10768f62ca64SPatrick Georgi 	cmd &= ~CMD_PSE;
10778f62ca64SPatrick Georgi 	ehci_writel(&hcor->or_usbcmd, cmd);
10788f62ca64SPatrick Georgi 
10798f62ca64SPatrick Georgi 	ret = handshake((uint32_t *)&hcor->or_usbsts,
10808f62ca64SPatrick Georgi 			STS_PSS, 0, 100 * 1000);
10818f62ca64SPatrick Georgi 	if (ret < 0) {
10828f62ca64SPatrick Georgi 		printf("EHCI failed: timeout when disabling periodic list\n");
10838f62ca64SPatrick Georgi 		return -ETIMEDOUT;
10848f62ca64SPatrick Georgi 	}
10858f62ca64SPatrick Georgi 	return 0;
10868f62ca64SPatrick Georgi }
10878f62ca64SPatrick Georgi 
10888f62ca64SPatrick Georgi static int periodic_schedules;
10898f62ca64SPatrick Georgi 
10908f62ca64SPatrick Georgi struct int_queue *
10918f62ca64SPatrick Georgi create_int_queue(struct usb_device *dev, unsigned long pipe, int queuesize,
10928f62ca64SPatrick Georgi 		 int elementsize, void *buffer)
10938f62ca64SPatrick Georgi {
10948f62ca64SPatrick Georgi 	struct ehci_ctrl *ctrl = dev->controller;
10958f62ca64SPatrick Georgi 	struct int_queue *result = NULL;
10968f62ca64SPatrick Georgi 	int i;
10978f62ca64SPatrick Georgi 
10988f62ca64SPatrick Georgi 	debug("Enter create_int_queue\n");
10998f62ca64SPatrick Georgi 	if (usb_pipetype(pipe) != PIPE_INTERRUPT) {
11008f62ca64SPatrick Georgi 		debug("non-interrupt pipe (type=%lu)", usb_pipetype(pipe));
11018f62ca64SPatrick Georgi 		return NULL;
11028f62ca64SPatrick Georgi 	}
11038f62ca64SPatrick Georgi 
11048f62ca64SPatrick Georgi 	/* limit to 4 full pages worth of data -
11058f62ca64SPatrick Georgi 	 * we can safely fit them in a single TD,
11068f62ca64SPatrick Georgi 	 * no matter the alignment
11078f62ca64SPatrick Georgi 	 */
11088f62ca64SPatrick Georgi 	if (elementsize >= 16384) {
11098f62ca64SPatrick Georgi 		debug("too large elements for interrupt transfers\n");
11108f62ca64SPatrick Georgi 		return NULL;
11118f62ca64SPatrick Georgi 	}
11128f62ca64SPatrick Georgi 
11138f62ca64SPatrick Georgi 	result = malloc(sizeof(*result));
11148f62ca64SPatrick Georgi 	if (!result) {
11158f62ca64SPatrick Georgi 		debug("ehci intr queue: out of memory\n");
11168f62ca64SPatrick Georgi 		goto fail1;
11178f62ca64SPatrick Georgi 	}
11188f62ca64SPatrick Georgi 	result->first = memalign(32, sizeof(struct QH) * queuesize);
11198f62ca64SPatrick Georgi 	if (!result->first) {
11208f62ca64SPatrick Georgi 		debug("ehci intr queue: out of memory\n");
11218f62ca64SPatrick Georgi 		goto fail2;
11228f62ca64SPatrick Georgi 	}
11238f62ca64SPatrick Georgi 	result->current = result->first;
11248f62ca64SPatrick Georgi 	result->last = result->first + queuesize - 1;
11258f62ca64SPatrick Georgi 	result->tds = memalign(32, sizeof(struct qTD) * queuesize);
11268f62ca64SPatrick Georgi 	if (!result->tds) {
11278f62ca64SPatrick Georgi 		debug("ehci intr queue: out of memory\n");
11288f62ca64SPatrick Georgi 		goto fail3;
11298f62ca64SPatrick Georgi 	}
11308f62ca64SPatrick Georgi 	memset(result->first, 0, sizeof(struct QH) * queuesize);
11318f62ca64SPatrick Georgi 	memset(result->tds, 0, sizeof(struct qTD) * queuesize);
11328f62ca64SPatrick Georgi 
11338f62ca64SPatrick Georgi 	for (i = 0; i < queuesize; i++) {
11348f62ca64SPatrick Georgi 		struct QH *qh = result->first + i;
11358f62ca64SPatrick Georgi 		struct qTD *td = result->tds + i;
11368f62ca64SPatrick Georgi 		void **buf = &qh->buffer;
11378f62ca64SPatrick Georgi 
11388f62ca64SPatrick Georgi 		qh->qh_link = (uint32_t)(qh+1) | QH_LINK_TYPE_QH;
11398f62ca64SPatrick Georgi 		if (i == queuesize - 1)
11408f62ca64SPatrick Georgi 			qh->qh_link = QH_LINK_TERMINATE;
11418f62ca64SPatrick Georgi 
11428f62ca64SPatrick Georgi 		qh->qh_overlay.qt_next = (uint32_t)td;
11438f62ca64SPatrick Georgi 		qh->qh_endpt1 = (0 << 28) | /* No NAK reload (ehci 4.9) */
11448f62ca64SPatrick Georgi 			(usb_maxpacket(dev, pipe) << 16) | /* MPS */
11458f62ca64SPatrick Georgi 			(1 << 14) |
11468f62ca64SPatrick Georgi 			QH_ENDPT1_EPS(ehci_encode_speed(dev->speed)) |
11478f62ca64SPatrick Georgi 			(usb_pipeendpoint(pipe) << 8) | /* Endpoint Number */
11488f62ca64SPatrick Georgi 			(usb_pipedevice(pipe) << 0);
11498f62ca64SPatrick Georgi 		qh->qh_endpt2 = (1 << 30) | /* 1 Tx per mframe */
11508f62ca64SPatrick Georgi 			(1 << 0); /* S-mask: microframe 0 */
11518f62ca64SPatrick Georgi 		if (dev->speed == USB_SPEED_LOW ||
11528f62ca64SPatrick Georgi 				dev->speed == USB_SPEED_FULL) {
11538f62ca64SPatrick Georgi 			debug("TT: port: %d, hub address: %d\n",
11548f62ca64SPatrick Georgi 				dev->portnr, dev->parent->devnum);
11558f62ca64SPatrick Georgi 			qh->qh_endpt2 |= (dev->portnr << 23) |
11568f62ca64SPatrick Georgi 				(dev->parent->devnum << 16) |
11578f62ca64SPatrick Georgi 				(0x1c << 8); /* C-mask: microframes 2-4 */
11588f62ca64SPatrick Georgi 		}
11598f62ca64SPatrick Georgi 
11608f62ca64SPatrick Georgi 		td->qt_next = QT_NEXT_TERMINATE;
11618f62ca64SPatrick Georgi 		td->qt_altnext = QT_NEXT_TERMINATE;
11628f62ca64SPatrick Georgi 		debug("communication direction is '%s'\n",
11638f62ca64SPatrick Georgi 		      usb_pipein(pipe) ? "in" : "out");
11648f62ca64SPatrick Georgi 		td->qt_token = (elementsize << 16) |
11658f62ca64SPatrick Georgi 			((usb_pipein(pipe) ? 1 : 0) << 8) | /* IN/OUT token */
11668f62ca64SPatrick Georgi 			0x80; /* active */
11678f62ca64SPatrick Georgi 		td->qt_buffer[0] = (uint32_t)buffer + i * elementsize;
11688f62ca64SPatrick Georgi 		td->qt_buffer[1] = (td->qt_buffer[0] + 0x1000) & ~0xfff;
11698f62ca64SPatrick Georgi 		td->qt_buffer[2] = (td->qt_buffer[0] + 0x2000) & ~0xfff;
11708f62ca64SPatrick Georgi 		td->qt_buffer[3] = (td->qt_buffer[0] + 0x3000) & ~0xfff;
11718f62ca64SPatrick Georgi 		td->qt_buffer[4] = (td->qt_buffer[0] + 0x4000) & ~0xfff;
11728f62ca64SPatrick Georgi 
11738f62ca64SPatrick Georgi 		*buf = buffer + i * elementsize;
11748f62ca64SPatrick Georgi 	}
11758f62ca64SPatrick Georgi 
1176d3e07478SStephen Warren 	flush_dcache_range((uint32_t)buffer,
1177d3e07478SStephen Warren 			   ALIGN_END_ADDR(char, buffer,
1178d3e07478SStephen Warren 					  queuesize * elementsize));
1179d3e07478SStephen Warren 	flush_dcache_range((uint32_t)result->first,
1180d3e07478SStephen Warren 			   ALIGN_END_ADDR(struct QH, result->first,
1181d3e07478SStephen Warren 					  queuesize));
1182d3e07478SStephen Warren 	flush_dcache_range((uint32_t)result->tds,
1183d3e07478SStephen Warren 			   ALIGN_END_ADDR(struct qTD, result->tds,
1184d3e07478SStephen Warren 					  queuesize));
1185d3e07478SStephen Warren 
11868f62ca64SPatrick Georgi 	if (disable_periodic(ctrl) < 0) {
11878f62ca64SPatrick Georgi 		debug("FATAL: periodic should never fail, but did");
11888f62ca64SPatrick Georgi 		goto fail3;
11898f62ca64SPatrick Georgi 	}
11908f62ca64SPatrick Georgi 
11918f62ca64SPatrick Georgi 	/* hook up to periodic list */
11928f62ca64SPatrick Georgi 	struct QH *list = &ctrl->periodic_queue;
11938f62ca64SPatrick Georgi 	result->last->qh_link = list->qh_link;
11948f62ca64SPatrick Georgi 	list->qh_link = (uint32_t)result->first | QH_LINK_TYPE_QH;
11958f62ca64SPatrick Georgi 
1196d3e07478SStephen Warren 	flush_dcache_range((uint32_t)result->last,
1197d3e07478SStephen Warren 			   ALIGN_END_ADDR(struct QH, result->last, 1));
1198d3e07478SStephen Warren 	flush_dcache_range((uint32_t)list,
1199d3e07478SStephen Warren 			   ALIGN_END_ADDR(struct QH, list, 1));
1200d3e07478SStephen Warren 
12018f62ca64SPatrick Georgi 	if (enable_periodic(ctrl) < 0) {
12028f62ca64SPatrick Georgi 		debug("FATAL: periodic should never fail, but did");
12038f62ca64SPatrick Georgi 		goto fail3;
12048f62ca64SPatrick Georgi 	}
12058f62ca64SPatrick Georgi 	periodic_schedules++;
12068f62ca64SPatrick Georgi 
12078f62ca64SPatrick Georgi 	debug("Exit create_int_queue\n");
12088f62ca64SPatrick Georgi 	return result;
12098f62ca64SPatrick Georgi fail3:
12108f62ca64SPatrick Georgi 	if (result->tds)
12118f62ca64SPatrick Georgi 		free(result->tds);
12128f62ca64SPatrick Georgi fail2:
12138f62ca64SPatrick Georgi 	if (result->first)
12148f62ca64SPatrick Georgi 		free(result->first);
12158f62ca64SPatrick Georgi 	if (result)
12168f62ca64SPatrick Georgi 		free(result);
12178f62ca64SPatrick Georgi fail1:
12188f62ca64SPatrick Georgi 	return NULL;
12198f62ca64SPatrick Georgi }
12208f62ca64SPatrick Georgi 
12218f62ca64SPatrick Georgi void *poll_int_queue(struct usb_device *dev, struct int_queue *queue)
12228f62ca64SPatrick Georgi {
12238f62ca64SPatrick Georgi 	struct QH *cur = queue->current;
12248f62ca64SPatrick Georgi 
12258f62ca64SPatrick Georgi 	/* depleted queue */
12268f62ca64SPatrick Georgi 	if (cur == NULL) {
12278f62ca64SPatrick Georgi 		debug("Exit poll_int_queue with completed queue\n");
12288f62ca64SPatrick Georgi 		return NULL;
12298f62ca64SPatrick Georgi 	}
12308f62ca64SPatrick Georgi 	/* still active */
1231d3e07478SStephen Warren 	invalidate_dcache_range((uint32_t)cur,
1232d3e07478SStephen Warren 				ALIGN_END_ADDR(struct QH, cur, 1));
12338f62ca64SPatrick Georgi 	if (cur->qh_overlay.qt_token & 0x80) {
12348f62ca64SPatrick Georgi 		debug("Exit poll_int_queue with no completed intr transfer. "
12358f62ca64SPatrick Georgi 		      "token is %x\n", cur->qh_overlay.qt_token);
12368f62ca64SPatrick Georgi 		return NULL;
12378f62ca64SPatrick Georgi 	}
12388f62ca64SPatrick Georgi 	if (!(cur->qh_link & QH_LINK_TERMINATE))
12398f62ca64SPatrick Georgi 		queue->current++;
12408f62ca64SPatrick Georgi 	else
12418f62ca64SPatrick Georgi 		queue->current = NULL;
12428f62ca64SPatrick Georgi 	debug("Exit poll_int_queue with completed intr transfer. "
12438f62ca64SPatrick Georgi 	      "token is %x at %p (first at %p)\n", cur->qh_overlay.qt_token,
12448f62ca64SPatrick Georgi 	      &cur->qh_overlay.qt_token, queue->first);
12458f62ca64SPatrick Georgi 	return cur->buffer;
12468f62ca64SPatrick Georgi }
12478f62ca64SPatrick Georgi 
12488f62ca64SPatrick Georgi /* Do not free buffers associated with QHs, they're owned by someone else */
12498f62ca64SPatrick Georgi int
12508f62ca64SPatrick Georgi destroy_int_queue(struct usb_device *dev, struct int_queue *queue)
12518f62ca64SPatrick Georgi {
12528f62ca64SPatrick Georgi 	struct ehci_ctrl *ctrl = dev->controller;
12538f62ca64SPatrick Georgi 	int result = -1;
12548f62ca64SPatrick Georgi 	unsigned long timeout;
12558f62ca64SPatrick Georgi 
12568f62ca64SPatrick Georgi 	if (disable_periodic(ctrl) < 0) {
12578f62ca64SPatrick Georgi 		debug("FATAL: periodic should never fail, but did");
12588f62ca64SPatrick Georgi 		goto out;
12598f62ca64SPatrick Georgi 	}
12608f62ca64SPatrick Georgi 	periodic_schedules--;
12618f62ca64SPatrick Georgi 
12628f62ca64SPatrick Georgi 	struct QH *cur = &ctrl->periodic_queue;
12638f62ca64SPatrick Georgi 	timeout = get_timer(0) + 500; /* abort after 500ms */
12648f62ca64SPatrick Georgi 	while (!(cur->qh_link & QH_LINK_TERMINATE)) {
12658f62ca64SPatrick Georgi 		debug("considering %p, with qh_link %x\n", cur, cur->qh_link);
12668f62ca64SPatrick Georgi 		if (NEXT_QH(cur) == queue->first) {
12678f62ca64SPatrick Georgi 			debug("found candidate. removing from chain\n");
12688f62ca64SPatrick Georgi 			cur->qh_link = queue->last->qh_link;
12698f62ca64SPatrick Georgi 			result = 0;
12708f62ca64SPatrick Georgi 			break;
12718f62ca64SPatrick Georgi 		}
12728f62ca64SPatrick Georgi 		cur = NEXT_QH(cur);
12738f62ca64SPatrick Georgi 		if (get_timer(0) > timeout) {
12748f62ca64SPatrick Georgi 			printf("Timeout destroying interrupt endpoint queue\n");
12758f62ca64SPatrick Georgi 			result = -1;
12768f62ca64SPatrick Georgi 			goto out;
12778f62ca64SPatrick Georgi 		}
12788f62ca64SPatrick Georgi 	}
12798f62ca64SPatrick Georgi 
12808f62ca64SPatrick Georgi 	if (periodic_schedules > 0) {
12818f62ca64SPatrick Georgi 		result = enable_periodic(ctrl);
12828f62ca64SPatrick Georgi 		if (result < 0)
12838f62ca64SPatrick Georgi 			debug("FATAL: periodic should never fail, but did");
12848f62ca64SPatrick Georgi 	}
12858f62ca64SPatrick Georgi 
12868f62ca64SPatrick Georgi out:
12878f62ca64SPatrick Georgi 	free(queue->tds);
12888f62ca64SPatrick Georgi 	free(queue->first);
12898f62ca64SPatrick Georgi 	free(queue);
12908f62ca64SPatrick Georgi 
12918f62ca64SPatrick Georgi 	return result;
12928f62ca64SPatrick Georgi }
12938f62ca64SPatrick Georgi 
12942731b9a8SJean-Christophe PLAGNIOL-VILLARD int
12952731b9a8SJean-Christophe PLAGNIOL-VILLARD submit_int_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
12962731b9a8SJean-Christophe PLAGNIOL-VILLARD 	       int length, int interval)
12972731b9a8SJean-Christophe PLAGNIOL-VILLARD {
12988f62ca64SPatrick Georgi 	void *backbuffer;
12998f62ca64SPatrick Georgi 	struct int_queue *queue;
13008f62ca64SPatrick Georgi 	unsigned long timeout;
13018f62ca64SPatrick Georgi 	int result = 0, ret;
13028f62ca64SPatrick Georgi 
13032731b9a8SJean-Christophe PLAGNIOL-VILLARD 	debug("dev=%p, pipe=%lu, buffer=%p, length=%d, interval=%d",
13042731b9a8SJean-Christophe PLAGNIOL-VILLARD 	      dev, pipe, buffer, length, interval);
130544ae0be7SBenoît Thébaudeau 
130644ae0be7SBenoît Thébaudeau 	/*
130744ae0be7SBenoît Thébaudeau 	 * Interrupt transfers requiring several transactions are not supported
130844ae0be7SBenoît Thébaudeau 	 * because bInterval is ignored.
13095cec214eSBenoît Thébaudeau 	 *
13105cec214eSBenoît Thébaudeau 	 * Also, ehci_submit_async() relies on wMaxPacketSize being a power of 2
1311db191346SBenoît Thébaudeau 	 * <= PKT_ALIGN if several qTDs are required, while the USB
1312db191346SBenoît Thébaudeau 	 * specification does not constrain this for interrupt transfers. That
1313db191346SBenoît Thébaudeau 	 * means that ehci_submit_async() would support interrupt transfers
1314db191346SBenoît Thébaudeau 	 * requiring several transactions only as long as the transfer size does
1315db191346SBenoît Thébaudeau 	 * not require more than a single qTD.
131644ae0be7SBenoît Thébaudeau 	 */
131744ae0be7SBenoît Thébaudeau 	if (length > usb_maxpacket(dev, pipe)) {
13188f62ca64SPatrick Georgi 		printf("%s: Interrupt transfers requiring several "
13198f62ca64SPatrick Georgi 			"transactions are not supported.\n", __func__);
132044ae0be7SBenoît Thébaudeau 		return -1;
132144ae0be7SBenoît Thébaudeau 	}
13228f62ca64SPatrick Georgi 
13238f62ca64SPatrick Georgi 	queue = create_int_queue(dev, pipe, 1, length, buffer);
13248f62ca64SPatrick Georgi 
13258f62ca64SPatrick Georgi 	timeout = get_timer(0) + USB_TIMEOUT_MS(pipe);
13268f62ca64SPatrick Georgi 	while ((backbuffer = poll_int_queue(dev, queue)) == NULL)
13278f62ca64SPatrick Georgi 		if (get_timer(0) > timeout) {
13288f62ca64SPatrick Georgi 			printf("Timeout poll on interrupt endpoint\n");
13298f62ca64SPatrick Georgi 			result = -ETIMEDOUT;
13308f62ca64SPatrick Georgi 			break;
13318f62ca64SPatrick Georgi 		}
13328f62ca64SPatrick Georgi 
13338f62ca64SPatrick Georgi 	if (backbuffer != buffer) {
13348f62ca64SPatrick Georgi 		debug("got wrong buffer back (%x instead of %x)\n",
13358f62ca64SPatrick Georgi 		      (uint32_t)backbuffer, (uint32_t)buffer);
13368f62ca64SPatrick Georgi 		return -EINVAL;
13378f62ca64SPatrick Georgi 	}
13388f62ca64SPatrick Georgi 
1339d3e07478SStephen Warren 	invalidate_dcache_range((uint32_t)buffer,
1340d3e07478SStephen Warren 				ALIGN_END_ADDR(char, buffer, length));
1341d3e07478SStephen Warren 
13428f62ca64SPatrick Georgi 	ret = destroy_int_queue(dev, queue);
13438f62ca64SPatrick Georgi 	if (ret < 0)
13448f62ca64SPatrick Georgi 		return ret;
13458f62ca64SPatrick Georgi 
13468f62ca64SPatrick Georgi 	/* everything worked out fine */
13478f62ca64SPatrick Georgi 	return result;
13482731b9a8SJean-Christophe PLAGNIOL-VILLARD }
1349