musb_dsps.c revision d871c622e202efc663f953a4fcbd2cba6a28a24f
1/*
2 * Texas Instruments DSPS platforms "glue layer"
3 *
4 * Copyright (C) 2012, by Texas Instruments
5 *
6 * Based on the am35x "glue layer" code.
7 *
8 * This file is part of the Inventra Controller Driver for Linux.
9 *
10 * The Inventra Controller Driver for Linux is free software; you
11 * can redistribute it and/or modify it under the terms of the GNU
12 * General Public License version 2 as published by the Free Software
13 * Foundation.
14 *
15 * The Inventra Controller Driver for Linux is distributed in
16 * the hope that it will be useful, but WITHOUT ANY WARRANTY;
17 * without even the implied warranty of MERCHANTABILITY or
18 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
19 * License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with The Inventra Controller Driver for Linux ; if not,
23 * write to the Free Software Foundation, Inc., 59 Temple Place,
24 * Suite 330, Boston, MA  02111-1307  USA
25 *
26 * musb_dsps.c will be a common file for all the TI DSPS platforms
27 * such as dm64x, dm36x, dm35x, da8x, am35x and ti81x.
28 * For now only ti81x is using this and in future davinci.c, am35x.c
29 * da8xx.c would be merged to this file after testing.
30 */
31
32#include <linux/io.h>
33#include <linux/err.h>
34#include <linux/platform_device.h>
35#include <linux/dma-mapping.h>
36#include <linux/pm_runtime.h>
37#include <linux/module.h>
38#include <linux/usb/usb_phy_generic.h>
39#include <linux/platform_data/usb-omap.h>
40#include <linux/sizes.h>
41
42#include <linux/of.h>
43#include <linux/of_device.h>
44#include <linux/of_address.h>
45#include <linux/of_irq.h>
46#include <linux/usb/of.h>
47
48#include <linux/debugfs.h>
49
50#include "musb_core.h"
51
52static const struct of_device_id musb_dsps_of_match[];
53
54/**
55 * avoid using musb_readx()/musb_writex() as glue layer should not be
56 * dependent on musb core layer symbols.
57 */
58static inline u8 dsps_readb(const void __iomem *addr, unsigned offset)
59{
60	return __raw_readb(addr + offset);
61}
62
63static inline u32 dsps_readl(const void __iomem *addr, unsigned offset)
64{
65	return __raw_readl(addr + offset);
66}
67
68static inline void dsps_writeb(void __iomem *addr, unsigned offset, u8 data)
69{
70	__raw_writeb(data, addr + offset);
71}
72
73static inline void dsps_writel(void __iomem *addr, unsigned offset, u32 data)
74{
75	__raw_writel(data, addr + offset);
76}
77
78/**
79 * DSPS musb wrapper register offset.
80 * FIXME: This should be expanded to have all the wrapper registers from TI DSPS
81 * musb ips.
82 */
83struct dsps_musb_wrapper {
84	u16	revision;
85	u16	control;
86	u16	status;
87	u16	epintr_set;
88	u16	epintr_clear;
89	u16	epintr_status;
90	u16	coreintr_set;
91	u16	coreintr_clear;
92	u16	coreintr_status;
93	u16	phy_utmi;
94	u16	mode;
95	u16	tx_mode;
96	u16	rx_mode;
97
98	/* bit positions for control */
99	unsigned	reset:5;
100
101	/* bit positions for interrupt */
102	unsigned	usb_shift:5;
103	u32		usb_mask;
104	u32		usb_bitmap;
105	unsigned	drvvbus:5;
106
107	unsigned	txep_shift:5;
108	u32		txep_mask;
109	u32		txep_bitmap;
110
111	unsigned	rxep_shift:5;
112	u32		rxep_mask;
113	u32		rxep_bitmap;
114
115	/* bit positions for phy_utmi */
116	unsigned	otg_disable:5;
117
118	/* bit positions for mode */
119	unsigned	iddig:5;
120	unsigned	iddig_mux:5;
121	/* miscellaneous stuff */
122	u8		poll_seconds;
123};
124
125/*
126 * register shadow for suspend
127 */
128struct dsps_context {
129	u32 control;
130	u32 epintr;
131	u32 coreintr;
132	u32 phy_utmi;
133	u32 mode;
134	u32 tx_mode;
135	u32 rx_mode;
136};
137
138/**
139 * DSPS glue structure.
140 */
141struct dsps_glue {
142	struct device *dev;
143	struct platform_device *musb;	/* child musb pdev */
144	const struct dsps_musb_wrapper *wrp; /* wrapper register offsets */
145	struct timer_list timer;	/* otg_workaround timer */
146	unsigned long last_timer;    /* last timer data for each instance */
147
148	struct dsps_context context;
149	struct debugfs_regset32 regset;
150	struct dentry *dbgfs_root;
151};
152
153static const struct debugfs_reg32 dsps_musb_regs[] = {
154	{ "revision",		0x00 },
155	{ "control",		0x14 },
156	{ "status",		0x18 },
157	{ "eoi",		0x24 },
158	{ "intr0_stat",		0x30 },
159	{ "intr1_stat",		0x34 },
160	{ "intr0_set",		0x38 },
161	{ "intr1_set",		0x3c },
162	{ "txmode",		0x70 },
163	{ "rxmode",		0x74 },
164	{ "autoreq",		0xd0 },
165	{ "srpfixtime",		0xd4 },
166	{ "tdown",		0xd8 },
167	{ "phy_utmi",		0xe0 },
168	{ "mode",		0xe8 },
169};
170
171static void dsps_musb_try_idle(struct musb *musb, unsigned long timeout)
172{
173	struct device *dev = musb->controller;
174	struct dsps_glue *glue = dev_get_drvdata(dev->parent);
175
176	if (timeout == 0)
177		timeout = jiffies + msecs_to_jiffies(3);
178
179	/* Never idle if active, or when VBUS timeout is not set as host */
180	if (musb->is_active || (musb->a_wait_bcon == 0 &&
181				musb->xceiv->state == OTG_STATE_A_WAIT_BCON)) {
182		dev_dbg(musb->controller, "%s active, deleting timer\n",
183				usb_otg_state_string(musb->xceiv->state));
184		del_timer(&glue->timer);
185		glue->last_timer = jiffies;
186		return;
187	}
188	if (musb->port_mode != MUSB_PORT_MODE_DUAL_ROLE)
189		return;
190
191	if (!musb->g.dev.driver)
192		return;
193
194	if (time_after(glue->last_timer, timeout) &&
195				timer_pending(&glue->timer)) {
196		dev_dbg(musb->controller,
197			"Longer idle timer already pending, ignoring...\n");
198		return;
199	}
200	glue->last_timer = timeout;
201
202	dev_dbg(musb->controller, "%s inactive, starting idle timer for %u ms\n",
203		usb_otg_state_string(musb->xceiv->state),
204			jiffies_to_msecs(timeout - jiffies));
205	mod_timer(&glue->timer, timeout);
206}
207
208/**
209 * dsps_musb_enable - enable interrupts
210 */
211static void dsps_musb_enable(struct musb *musb)
212{
213	struct device *dev = musb->controller;
214	struct platform_device *pdev = to_platform_device(dev->parent);
215	struct dsps_glue *glue = platform_get_drvdata(pdev);
216	const struct dsps_musb_wrapper *wrp = glue->wrp;
217	void __iomem *reg_base = musb->ctrl_base;
218	u32 epmask, coremask;
219
220	/* Workaround: setup IRQs through both register sets. */
221	epmask = ((musb->epmask & wrp->txep_mask) << wrp->txep_shift) |
222	       ((musb->epmask & wrp->rxep_mask) << wrp->rxep_shift);
223	coremask = (wrp->usb_bitmap & ~MUSB_INTR_SOF);
224
225	dsps_writel(reg_base, wrp->epintr_set, epmask);
226	dsps_writel(reg_base, wrp->coreintr_set, coremask);
227	/* Force the DRVVBUS IRQ so we can start polling for ID change. */
228	dsps_writel(reg_base, wrp->coreintr_set,
229		    (1 << wrp->drvvbus) << wrp->usb_shift);
230	dsps_musb_try_idle(musb, 0);
231}
232
233/**
234 * dsps_musb_disable - disable HDRC and flush interrupts
235 */
236static void dsps_musb_disable(struct musb *musb)
237{
238	struct device *dev = musb->controller;
239	struct platform_device *pdev = to_platform_device(dev->parent);
240	struct dsps_glue *glue = platform_get_drvdata(pdev);
241	const struct dsps_musb_wrapper *wrp = glue->wrp;
242	void __iomem *reg_base = musb->ctrl_base;
243
244	dsps_writel(reg_base, wrp->coreintr_clear, wrp->usb_bitmap);
245	dsps_writel(reg_base, wrp->epintr_clear,
246			 wrp->txep_bitmap | wrp->rxep_bitmap);
247	dsps_writeb(musb->mregs, MUSB_DEVCTL, 0);
248}
249
250static void otg_timer(unsigned long _musb)
251{
252	struct musb *musb = (void *)_musb;
253	void __iomem *mregs = musb->mregs;
254	struct device *dev = musb->controller;
255	struct dsps_glue *glue = dev_get_drvdata(dev->parent);
256	const struct dsps_musb_wrapper *wrp = glue->wrp;
257	u8 devctl;
258	unsigned long flags;
259	int skip_session = 0;
260
261	/*
262	 * We poll because DSPS IP's won't expose several OTG-critical
263	 * status change events (from the transceiver) otherwise.
264	 */
265	devctl = dsps_readb(mregs, MUSB_DEVCTL);
266	dev_dbg(musb->controller, "Poll devctl %02x (%s)\n", devctl,
267				usb_otg_state_string(musb->xceiv->state));
268
269	spin_lock_irqsave(&musb->lock, flags);
270	switch (musb->xceiv->state) {
271	case OTG_STATE_A_WAIT_BCON:
272		dsps_writeb(musb->mregs, MUSB_DEVCTL, 0);
273		skip_session = 1;
274		/* fall */
275
276	case OTG_STATE_A_IDLE:
277	case OTG_STATE_B_IDLE:
278		if (devctl & MUSB_DEVCTL_BDEVICE) {
279			musb->xceiv->state = OTG_STATE_B_IDLE;
280			MUSB_DEV_MODE(musb);
281		} else {
282			musb->xceiv->state = OTG_STATE_A_IDLE;
283			MUSB_HST_MODE(musb);
284		}
285		if (!(devctl & MUSB_DEVCTL_SESSION) && !skip_session)
286			dsps_writeb(mregs, MUSB_DEVCTL, MUSB_DEVCTL_SESSION);
287		mod_timer(&glue->timer, jiffies + wrp->poll_seconds * HZ);
288		break;
289	case OTG_STATE_A_WAIT_VFALL:
290		musb->xceiv->state = OTG_STATE_A_WAIT_VRISE;
291		dsps_writel(musb->ctrl_base, wrp->coreintr_set,
292			    MUSB_INTR_VBUSERROR << wrp->usb_shift);
293		break;
294	default:
295		break;
296	}
297	spin_unlock_irqrestore(&musb->lock, flags);
298}
299
300static irqreturn_t dsps_interrupt(int irq, void *hci)
301{
302	struct musb  *musb = hci;
303	void __iomem *reg_base = musb->ctrl_base;
304	struct device *dev = musb->controller;
305	struct dsps_glue *glue = dev_get_drvdata(dev->parent);
306	const struct dsps_musb_wrapper *wrp = glue->wrp;
307	unsigned long flags;
308	irqreturn_t ret = IRQ_NONE;
309	u32 epintr, usbintr;
310
311	spin_lock_irqsave(&musb->lock, flags);
312
313	/* Get endpoint interrupts */
314	epintr = dsps_readl(reg_base, wrp->epintr_status);
315	musb->int_rx = (epintr & wrp->rxep_bitmap) >> wrp->rxep_shift;
316	musb->int_tx = (epintr & wrp->txep_bitmap) >> wrp->txep_shift;
317
318	if (epintr)
319		dsps_writel(reg_base, wrp->epintr_status, epintr);
320
321	/* Get usb core interrupts */
322	usbintr = dsps_readl(reg_base, wrp->coreintr_status);
323	if (!usbintr && !epintr)
324		goto out;
325
326	musb->int_usb =	(usbintr & wrp->usb_bitmap) >> wrp->usb_shift;
327	if (usbintr)
328		dsps_writel(reg_base, wrp->coreintr_status, usbintr);
329
330	dev_dbg(musb->controller, "usbintr (%x) epintr(%x)\n",
331			usbintr, epintr);
332	/*
333	 * DRVVBUS IRQs are the only proxy we have (a very poor one!) for
334	 * DSPS IP's missing ID change IRQ.  We need an ID change IRQ to
335	 * switch appropriately between halves of the OTG state machine.
336	 * Managing DEVCTL.SESSION per Mentor docs requires that we know its
337	 * value but DEVCTL.BDEVICE is invalid without DEVCTL.SESSION set.
338	 * Also, DRVVBUS pulses for SRP (but not at 5V) ...
339	 */
340	if (is_host_active(musb) && usbintr & MUSB_INTR_BABBLE) {
341		pr_info("CAUTION: musb: Babble Interrupt Occurred\n");
342
343		/*
344		 * When a babble condition occurs, the musb controller removes
345		 * the session and is no longer in host mode. Hence, all
346		 * devices connected to its root hub get disconnected.
347		 *
348		 * Hand this error down to the musb core isr, so it can
349		 * recover.
350		 */
351		musb->int_usb = MUSB_INTR_BABBLE | MUSB_INTR_DISCONNECT;
352		musb->int_tx = musb->int_rx = 0;
353	}
354
355	if (usbintr & ((1 << wrp->drvvbus) << wrp->usb_shift)) {
356		int drvvbus = dsps_readl(reg_base, wrp->status);
357		void __iomem *mregs = musb->mregs;
358		u8 devctl = dsps_readb(mregs, MUSB_DEVCTL);
359		int err;
360
361		err = musb->int_usb & MUSB_INTR_VBUSERROR;
362		if (err) {
363			/*
364			 * The Mentor core doesn't debounce VBUS as needed
365			 * to cope with device connect current spikes. This
366			 * means it's not uncommon for bus-powered devices
367			 * to get VBUS errors during enumeration.
368			 *
369			 * This is a workaround, but newer RTL from Mentor
370			 * seems to allow a better one: "re"-starting sessions
371			 * without waiting for VBUS to stop registering in
372			 * devctl.
373			 */
374			musb->int_usb &= ~MUSB_INTR_VBUSERROR;
375			musb->xceiv->state = OTG_STATE_A_WAIT_VFALL;
376			mod_timer(&glue->timer,
377					jiffies + wrp->poll_seconds * HZ);
378			WARNING("VBUS error workaround (delay coming)\n");
379		} else if (drvvbus) {
380			MUSB_HST_MODE(musb);
381			musb->xceiv->otg->default_a = 1;
382			musb->xceiv->state = OTG_STATE_A_WAIT_VRISE;
383			del_timer(&glue->timer);
384		} else {
385			musb->is_active = 0;
386			MUSB_DEV_MODE(musb);
387			musb->xceiv->otg->default_a = 0;
388			musb->xceiv->state = OTG_STATE_B_IDLE;
389		}
390
391		/* NOTE: this must complete power-on within 100 ms. */
392		dev_dbg(musb->controller, "VBUS %s (%s)%s, devctl %02x\n",
393				drvvbus ? "on" : "off",
394				usb_otg_state_string(musb->xceiv->state),
395				err ? " ERROR" : "",
396				devctl);
397		ret = IRQ_HANDLED;
398	}
399
400	if (musb->int_tx || musb->int_rx || musb->int_usb)
401		ret |= musb_interrupt(musb);
402
403	/* Poll for ID change in OTG port mode */
404	if (musb->xceiv->state == OTG_STATE_B_IDLE &&
405			musb->port_mode == MUSB_PORT_MODE_DUAL_ROLE)
406		mod_timer(&glue->timer, jiffies + wrp->poll_seconds * HZ);
407out:
408	spin_unlock_irqrestore(&musb->lock, flags);
409
410	return ret;
411}
412
413static int dsps_musb_dbg_init(struct musb *musb, struct dsps_glue *glue)
414{
415	struct dentry *root;
416	struct dentry *file;
417	char buf[128];
418
419	sprintf(buf, "%s.dsps", dev_name(musb->controller));
420	root = debugfs_create_dir(buf, NULL);
421	if (!root)
422		return -ENOMEM;
423	glue->dbgfs_root = root;
424
425	glue->regset.regs = dsps_musb_regs;
426	glue->regset.nregs = ARRAY_SIZE(dsps_musb_regs);
427	glue->regset.base = musb->ctrl_base;
428
429	file = debugfs_create_regset32("regdump", S_IRUGO, root, &glue->regset);
430	if (!file) {
431		debugfs_remove_recursive(root);
432		return -ENOMEM;
433	}
434	return 0;
435}
436
437static int dsps_musb_init(struct musb *musb)
438{
439	struct device *dev = musb->controller;
440	struct dsps_glue *glue = dev_get_drvdata(dev->parent);
441	struct platform_device *parent = to_platform_device(dev->parent);
442	const struct dsps_musb_wrapper *wrp = glue->wrp;
443	void __iomem *reg_base;
444	struct resource *r;
445	u32 rev, val;
446	int ret;
447
448	r = platform_get_resource_byname(parent, IORESOURCE_MEM, "control");
449	if (!r)
450		return -EINVAL;
451
452	reg_base = devm_ioremap_resource(dev, r);
453	if (IS_ERR(reg_base))
454		return PTR_ERR(reg_base);
455	musb->ctrl_base = reg_base;
456
457	/* NOP driver needs change if supporting dual instance */
458	musb->xceiv = devm_usb_get_phy_by_phandle(dev, "phys", 0);
459	if (IS_ERR(musb->xceiv))
460		return PTR_ERR(musb->xceiv);
461
462	/* Returns zero if e.g. not clocked */
463	rev = dsps_readl(reg_base, wrp->revision);
464	if (!rev)
465		return -ENODEV;
466
467	usb_phy_init(musb->xceiv);
468	setup_timer(&glue->timer, otg_timer, (unsigned long) musb);
469
470	/* Reset the musb */
471	dsps_writel(reg_base, wrp->control, (1 << wrp->reset));
472
473	musb->isr = dsps_interrupt;
474
475	/* reset the otgdisable bit, needed for host mode to work */
476	val = dsps_readl(reg_base, wrp->phy_utmi);
477	val &= ~(1 << wrp->otg_disable);
478	dsps_writel(musb->ctrl_base, wrp->phy_utmi, val);
479
480	ret = dsps_musb_dbg_init(musb, glue);
481	if (ret)
482		return ret;
483
484	return 0;
485}
486
487static int dsps_musb_exit(struct musb *musb)
488{
489	struct device *dev = musb->controller;
490	struct dsps_glue *glue = dev_get_drvdata(dev->parent);
491
492	del_timer_sync(&glue->timer);
493	usb_phy_shutdown(musb->xceiv);
494	debugfs_remove_recursive(glue->dbgfs_root);
495
496	return 0;
497}
498
499static int dsps_musb_set_mode(struct musb *musb, u8 mode)
500{
501	struct device *dev = musb->controller;
502	struct dsps_glue *glue = dev_get_drvdata(dev->parent);
503	const struct dsps_musb_wrapper *wrp = glue->wrp;
504	void __iomem *ctrl_base = musb->ctrl_base;
505	void __iomem *base = musb->mregs;
506	u32 reg;
507
508	reg = dsps_readl(base, wrp->mode);
509
510	switch (mode) {
511	case MUSB_HOST:
512		reg &= ~(1 << wrp->iddig);
513
514		/*
515		 * if we're setting mode to host-only or device-only, we're
516		 * going to ignore whatever the PHY sends us and just force
517		 * ID pin status by SW
518		 */
519		reg |= (1 << wrp->iddig_mux);
520
521		dsps_writel(base, wrp->mode, reg);
522		dsps_writel(ctrl_base, wrp->phy_utmi, 0x02);
523		break;
524	case MUSB_PERIPHERAL:
525		reg |= (1 << wrp->iddig);
526
527		/*
528		 * if we're setting mode to host-only or device-only, we're
529		 * going to ignore whatever the PHY sends us and just force
530		 * ID pin status by SW
531		 */
532		reg |= (1 << wrp->iddig_mux);
533
534		dsps_writel(base, wrp->mode, reg);
535		break;
536	case MUSB_OTG:
537		dsps_writel(base, wrp->phy_utmi, 0x02);
538		break;
539	default:
540		dev_err(glue->dev, "unsupported mode %d\n", mode);
541		return -EINVAL;
542	}
543
544	return 0;
545}
546
547static int dsps_musb_reset(struct musb *musb)
548{
549	struct device *dev = musb->controller;
550	struct dsps_glue *glue = dev_get_drvdata(dev->parent);
551	const struct dsps_musb_wrapper *wrp = glue->wrp;
552
553	dsps_writel(musb->ctrl_base, wrp->control, (1 << wrp->reset));
554	usleep_range(100, 200);
555	usb_phy_shutdown(musb->xceiv);
556	usleep_range(100, 200);
557	usb_phy_init(musb->xceiv);
558
559	return 0;
560}
561
562static struct musb_platform_ops dsps_ops = {
563	.init		= dsps_musb_init,
564	.exit		= dsps_musb_exit,
565
566	.enable		= dsps_musb_enable,
567	.disable	= dsps_musb_disable,
568
569	.try_idle	= dsps_musb_try_idle,
570	.set_mode	= dsps_musb_set_mode,
571	.reset		= dsps_musb_reset,
572};
573
574static u64 musb_dmamask = DMA_BIT_MASK(32);
575
576static int get_int_prop(struct device_node *dn, const char *s)
577{
578	int ret;
579	u32 val;
580
581	ret = of_property_read_u32(dn, s, &val);
582	if (ret)
583		return 0;
584	return val;
585}
586
587static int get_musb_port_mode(struct device *dev)
588{
589	enum usb_dr_mode mode;
590
591	mode = of_usb_get_dr_mode(dev->of_node);
592	switch (mode) {
593	case USB_DR_MODE_HOST:
594		return MUSB_PORT_MODE_HOST;
595
596	case USB_DR_MODE_PERIPHERAL:
597		return MUSB_PORT_MODE_GADGET;
598
599	case USB_DR_MODE_UNKNOWN:
600	case USB_DR_MODE_OTG:
601	default:
602		return MUSB_PORT_MODE_DUAL_ROLE;
603	}
604}
605
606static int dsps_create_musb_pdev(struct dsps_glue *glue,
607		struct platform_device *parent)
608{
609	struct musb_hdrc_platform_data pdata;
610	struct resource	resources[2];
611	struct resource	*res;
612	struct device *dev = &parent->dev;
613	struct musb_hdrc_config	*config;
614	struct platform_device *musb;
615	struct device_node *dn = parent->dev.of_node;
616	int ret;
617
618	memset(resources, 0, sizeof(resources));
619	res = platform_get_resource_byname(parent, IORESOURCE_MEM, "mc");
620	if (!res) {
621		dev_err(dev, "failed to get memory.\n");
622		return -EINVAL;
623	}
624	resources[0] = *res;
625
626	res = platform_get_resource_byname(parent, IORESOURCE_IRQ, "mc");
627	if (!res) {
628		dev_err(dev, "failed to get irq.\n");
629		return -EINVAL;
630	}
631	resources[1] = *res;
632
633	/* allocate the child platform device */
634	musb = platform_device_alloc("musb-hdrc", PLATFORM_DEVID_AUTO);
635	if (!musb) {
636		dev_err(dev, "failed to allocate musb device\n");
637		return -ENOMEM;
638	}
639
640	musb->dev.parent		= dev;
641	musb->dev.dma_mask		= &musb_dmamask;
642	musb->dev.coherent_dma_mask	= musb_dmamask;
643	musb->dev.of_node		= of_node_get(dn);
644
645	glue->musb = musb;
646
647	ret = platform_device_add_resources(musb, resources,
648			ARRAY_SIZE(resources));
649	if (ret) {
650		dev_err(dev, "failed to add resources\n");
651		goto err;
652	}
653
654	config = devm_kzalloc(&parent->dev, sizeof(*config), GFP_KERNEL);
655	if (!config) {
656		dev_err(dev, "failed to allocate musb hdrc config\n");
657		ret = -ENOMEM;
658		goto err;
659	}
660	pdata.config = config;
661	pdata.platform_ops = &dsps_ops;
662
663	config->num_eps = get_int_prop(dn, "mentor,num-eps");
664	config->ram_bits = get_int_prop(dn, "mentor,ram-bits");
665	config->host_port_deassert_reset_at_resume = 1;
666	pdata.mode = get_musb_port_mode(dev);
667	/* DT keeps this entry in mA, musb expects it as per USB spec */
668	pdata.power = get_int_prop(dn, "mentor,power") / 2;
669	config->multipoint = of_property_read_bool(dn, "mentor,multipoint");
670
671	ret = platform_device_add_data(musb, &pdata, sizeof(pdata));
672	if (ret) {
673		dev_err(dev, "failed to add platform_data\n");
674		goto err;
675	}
676
677	ret = platform_device_add(musb);
678	if (ret) {
679		dev_err(dev, "failed to register musb device\n");
680		goto err;
681	}
682	return 0;
683
684err:
685	platform_device_put(musb);
686	return ret;
687}
688
689static int dsps_probe(struct platform_device *pdev)
690{
691	const struct of_device_id *match;
692	const struct dsps_musb_wrapper *wrp;
693	struct dsps_glue *glue;
694	int ret;
695
696	if (!strcmp(pdev->name, "musb-hdrc"))
697		return -ENODEV;
698
699	match = of_match_node(musb_dsps_of_match, pdev->dev.of_node);
700	if (!match) {
701		dev_err(&pdev->dev, "fail to get matching of_match struct\n");
702		return -EINVAL;
703	}
704	wrp = match->data;
705
706	/* allocate glue */
707	glue = devm_kzalloc(&pdev->dev, sizeof(*glue), GFP_KERNEL);
708	if (!glue) {
709		dev_err(&pdev->dev, "unable to allocate glue memory\n");
710		return -ENOMEM;
711	}
712
713	glue->dev = &pdev->dev;
714	glue->wrp = wrp;
715
716	platform_set_drvdata(pdev, glue);
717	pm_runtime_enable(&pdev->dev);
718
719	ret = pm_runtime_get_sync(&pdev->dev);
720	if (ret < 0) {
721		dev_err(&pdev->dev, "pm_runtime_get_sync FAILED");
722		goto err2;
723	}
724
725	ret = dsps_create_musb_pdev(glue, pdev);
726	if (ret)
727		goto err3;
728
729	return 0;
730
731err3:
732	pm_runtime_put(&pdev->dev);
733err2:
734	pm_runtime_disable(&pdev->dev);
735	return ret;
736}
737
738static int dsps_remove(struct platform_device *pdev)
739{
740	struct dsps_glue *glue = platform_get_drvdata(pdev);
741
742	platform_device_unregister(glue->musb);
743
744	/* disable usbss clocks */
745	pm_runtime_put(&pdev->dev);
746	pm_runtime_disable(&pdev->dev);
747
748	return 0;
749}
750
751static const struct dsps_musb_wrapper am33xx_driver_data = {
752	.revision		= 0x00,
753	.control		= 0x14,
754	.status			= 0x18,
755	.epintr_set		= 0x38,
756	.epintr_clear		= 0x40,
757	.epintr_status		= 0x30,
758	.coreintr_set		= 0x3c,
759	.coreintr_clear		= 0x44,
760	.coreintr_status	= 0x34,
761	.phy_utmi		= 0xe0,
762	.mode			= 0xe8,
763	.tx_mode		= 0x70,
764	.rx_mode		= 0x74,
765	.reset			= 0,
766	.otg_disable		= 21,
767	.iddig			= 8,
768	.iddig_mux		= 7,
769	.usb_shift		= 0,
770	.usb_mask		= 0x1ff,
771	.usb_bitmap		= (0x1ff << 0),
772	.drvvbus		= 8,
773	.txep_shift		= 0,
774	.txep_mask		= 0xffff,
775	.txep_bitmap		= (0xffff << 0),
776	.rxep_shift		= 16,
777	.rxep_mask		= 0xfffe,
778	.rxep_bitmap		= (0xfffe << 16),
779	.poll_seconds		= 2,
780};
781
782static const struct of_device_id musb_dsps_of_match[] = {
783	{ .compatible = "ti,musb-am33xx",
784		.data = (void *) &am33xx_driver_data, },
785	{  },
786};
787MODULE_DEVICE_TABLE(of, musb_dsps_of_match);
788
789#ifdef CONFIG_PM_SLEEP
790static int dsps_suspend(struct device *dev)
791{
792	struct dsps_glue *glue = dev_get_drvdata(dev);
793	const struct dsps_musb_wrapper *wrp = glue->wrp;
794	struct musb *musb = platform_get_drvdata(glue->musb);
795	void __iomem *mbase = musb->ctrl_base;
796
797	glue->context.control = dsps_readl(mbase, wrp->control);
798	glue->context.epintr = dsps_readl(mbase, wrp->epintr_set);
799	glue->context.coreintr = dsps_readl(mbase, wrp->coreintr_set);
800	glue->context.phy_utmi = dsps_readl(mbase, wrp->phy_utmi);
801	glue->context.mode = dsps_readl(mbase, wrp->mode);
802	glue->context.tx_mode = dsps_readl(mbase, wrp->tx_mode);
803	glue->context.rx_mode = dsps_readl(mbase, wrp->rx_mode);
804
805	return 0;
806}
807
808static int dsps_resume(struct device *dev)
809{
810	struct dsps_glue *glue = dev_get_drvdata(dev);
811	const struct dsps_musb_wrapper *wrp = glue->wrp;
812	struct musb *musb = platform_get_drvdata(glue->musb);
813	void __iomem *mbase = musb->ctrl_base;
814
815	dsps_writel(mbase, wrp->control, glue->context.control);
816	dsps_writel(mbase, wrp->epintr_set, glue->context.epintr);
817	dsps_writel(mbase, wrp->coreintr_set, glue->context.coreintr);
818	dsps_writel(mbase, wrp->phy_utmi, glue->context.phy_utmi);
819	dsps_writel(mbase, wrp->mode, glue->context.mode);
820	dsps_writel(mbase, wrp->tx_mode, glue->context.tx_mode);
821	dsps_writel(mbase, wrp->rx_mode, glue->context.rx_mode);
822
823	return 0;
824}
825#endif
826
827static SIMPLE_DEV_PM_OPS(dsps_pm_ops, dsps_suspend, dsps_resume);
828
829static struct platform_driver dsps_usbss_driver = {
830	.probe		= dsps_probe,
831	.remove         = dsps_remove,
832	.driver         = {
833		.name   = "musb-dsps",
834		.pm	= &dsps_pm_ops,
835		.of_match_table	= musb_dsps_of_match,
836	},
837};
838
839MODULE_DESCRIPTION("TI DSPS MUSB Glue Layer");
840MODULE_AUTHOR("Ravi B <ravibabu@ti.com>");
841MODULE_AUTHOR("Ajay Kumar Gupta <ajay.gupta@ti.com>");
842MODULE_LICENSE("GPL v2");
843
844module_platform_driver(dsps_usbss_driver);
845