2 * drivers/usb/host/ehci-orion.c
4 * Tzachi Perelstein <tzachi@marvell.com>
6 * This file is licensed under the terms of the GNU General Public
7 * License version 2. This program is licensed "as is" without any
8 * warranty of any kind, whether express or implied.
11 #include <linux/kernel.h>
12 #include <linux/module.h>
13 #include <linux/platform_device.h>
14 #include <asm/arch/orion.h>
16 #define rdl(off) __raw_readl(hcd->regs + (off))
17 #define wrl(off, val) __raw_writel((val), hcd->regs + (off))
19 #define USB_CAUSE 0x310
20 #define USB_MASK 0x314
22 #define USB_MODE 0x1a8
24 #define USB_PHY_PWR_CTRL 0x400
25 #define USB_PHY_TX_CTRL 0x420
26 #define USB_PHY_RX_CTRL 0x430
27 #define USB_PHY_IVREF_CTRL 0x440
28 #define USB_PHY_TST_GRP_CTRL 0x450
31 * Implement Orion USB controller specification guidelines
33 static void orion_usb_setup(struct usb_hcd
*hcd
)
36 * Clear interrupt cause and mask
44 wrl(USB_CMD
, rdl(USB_CMD
) | 0x2);
45 while (rdl(USB_CMD
) & 0x2);
48 * GL# USB-10: Set IPG for non start of frame packets
51 wrl(USB_IPG
, (rdl(USB_IPG
) & ~0x7f00) | 0xc00);
54 * GL# USB-9: USB 2.0 Power Control
57 wrl(USB_PHY_PWR_CTRL
, (rdl(USB_PHY_PWR_CTRL
) & ~0xc0)| 0x40);
60 * GL# USB-1: USB PHY Tx Control - force calibration to '8'
61 * TXDATA_BLOCK_EN[21]=0x1, EXT_RCAL_EN[13]=0x1, IMP_CAL[6:3]=0x8
63 wrl(USB_PHY_TX_CTRL
, (rdl(USB_PHY_TX_CTRL
) & ~0x78) | 0x202040);
66 * GL# USB-3 GL# USB-9: USB PHY Rx Control
67 * RXDATA_BLOCK_LENGHT[31:30]=0x3, EDGE_DET_SEL[27:26]=0,
68 * CDR_FASTLOCK_EN[21]=0, DISCON_THRESHOLD[9:8]=0, SQ_THRESH[7:4]=0x1
70 wrl(USB_PHY_RX_CTRL
, (rdl(USB_PHY_RX_CTRL
) & ~0xc2003f0) | 0xc0000010);
73 * GL# USB-3 GL# USB-9: USB PHY IVREF Control
74 * PLLVDD12[1:0]=0x2, RXVDD[5:4]=0x3, Reserved[19]=0
76 wrl(USB_PHY_IVREF_CTRL
, (rdl(USB_PHY_IVREF_CTRL
) & ~0x80003 ) | 0x32);
79 * GL# USB-3 GL# USB-9: USB PHY Test Group Control
80 * REG_FIFO_SQ_RST[15]=0
82 wrl(USB_PHY_TST_GRP_CTRL
, rdl(USB_PHY_TST_GRP_CTRL
) & ~0x8000);
85 * Stop and reset controller
87 wrl(USB_CMD
, rdl(USB_CMD
) & ~0x1);
88 wrl(USB_CMD
, rdl(USB_CMD
) | 0x2);
89 while (rdl(USB_CMD
) & 0x2);
92 * GL# USB-5 Streaming disable REG_USB_MODE[4]=1
93 * TBD: This need to be done after each reset!
94 * GL# USB-4 Setup USB Host mode
99 static int ehci_orion_setup(struct usb_hcd
*hcd
)
101 struct ehci_hcd
*ehci
= hcd_to_ehci(hcd
);
104 retval
= ehci_halt(ehci
);
109 * data structure init
111 retval
= ehci_init(hcd
);
116 ehci_port_power(ehci
, 0);
121 static const struct hc_driver ehci_orion_hc_driver
= {
122 .description
= hcd_name
,
123 .product_desc
= "Marvell Orion EHCI",
124 .hcd_priv_size
= sizeof(struct ehci_hcd
),
127 * generic hardware linkage
130 .flags
= HCD_MEMORY
| HCD_USB2
,
133 * basic lifecycle operations
135 .reset
= ehci_orion_setup
,
138 .suspend
= ehci_bus_suspend
,
139 .resume
= ehci_bus_resume
,
142 .shutdown
= ehci_shutdown
,
145 * managing i/o requests and associated device resources
147 .urb_enqueue
= ehci_urb_enqueue
,
148 .urb_dequeue
= ehci_urb_dequeue
,
149 .endpoint_disable
= ehci_endpoint_disable
,
154 .get_frame_number
= ehci_get_frame
,
159 .hub_status_data
= ehci_hub_status_data
,
160 .hub_control
= ehci_hub_control
,
161 .bus_suspend
= ehci_bus_suspend
,
162 .bus_resume
= ehci_bus_resume
,
165 static int __init
ehci_orion_drv_probe(struct platform_device
*pdev
)
167 struct resource
*res
;
169 struct ehci_hcd
*ehci
;
176 pr_debug("Initializing Orion-SoC USB Host Controller\n");
178 irq
= platform_get_irq(pdev
, 0);
181 "Found HC with no IRQ. Check %s setup!\n",
187 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
190 "Found HC with no register addr. Check %s setup!\n",
196 if (!request_mem_region(res
->start
, res
->end
- res
->start
+ 1,
197 ehci_orion_hc_driver
.description
)) {
198 dev_dbg(&pdev
->dev
, "controller already in use\n");
203 regs
= ioremap(res
->start
, res
->end
- res
->start
+ 1);
205 dev_dbg(&pdev
->dev
, "error mapping memory\n");
210 hcd
= usb_create_hcd(&ehci_orion_hc_driver
,
211 &pdev
->dev
, pdev
->dev
.bus_id
);
217 hcd
->rsrc_start
= res
->start
;
218 hcd
->rsrc_len
= res
->end
- res
->start
+ 1;
221 ehci
= hcd_to_ehci(hcd
);
222 ehci
->caps
= hcd
->regs
+ 0x100;
223 ehci
->regs
= hcd
->regs
+ 0x100 +
224 HC_LENGTH(ehci_readl(ehci
, &ehci
->caps
->hc_capbase
));
225 ehci
->hcs_params
= ehci_readl(ehci
, &ehci
->caps
->hcs_params
);
226 ehci
->is_tdi_rh_tt
= 1;
230 * setup Orion USB controller
232 orion_usb_setup(hcd
);
234 err
= usb_add_hcd(hcd
, irq
, IRQF_SHARED
| IRQF_DISABLED
);
245 release_mem_region(res
->start
, res
->end
- res
->start
+ 1);
247 dev_err(&pdev
->dev
, "init %s fail, %d\n",
248 pdev
->dev
.bus_id
, err
);
253 static int __exit
ehci_orion_drv_remove(struct platform_device
*pdev
)
255 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
259 release_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
);
265 MODULE_ALIAS("platform:orion-ehci");
267 static struct platform_driver ehci_orion_driver
= {
268 .probe
= ehci_orion_drv_probe
,
269 .remove
= __exit_p(ehci_orion_drv_remove
),
270 .shutdown
= usb_hcd_platform_shutdown
,
271 .driver
.name
= "orion-ehci",