1 // SPDX-License-Identifier: GPL-2.0+
3 * c67x00-drv.c: Cypress C67X00 USB Common infrastructure
5 * Copyright (C) 2006-2008 Barco N.V.
6 * Derived from the Cypress cy7c67200/300 ezusb linux driver and
7 * based on multiple host controller drivers inside the linux kernel.
11 * This file implements the common infrastructure for using the c67x00.
12 * It is both the link between the platform configuration and subdrivers and
13 * the link between the common hardware parts and the subdrivers (e.g.
14 * interrupt handling).
16 * The c67x00 has 2 SIE's (serial interface engine) which can be configured
17 * to be host, device or OTG (with some limitations, E.G. only SIE1 can be OTG).
19 * Depending on the platform configuration, the SIE's are created and
20 * the corresponding subdriver is initialized (c67x00_probe_sie).
23 #include <linux/device.h>
25 #include <linux/list.h>
26 #include <linux/slab.h>
27 #include <linux/module.h>
28 #include <linux/usb.h>
29 #include <linux/usb/c67x00.h>
32 #include "c67x00-hcd.h"
34 static void c67x00_probe_sie(struct c67x00_sie *sie,
35 struct c67x00_device *dev, int sie_num)
37 spin_lock_init(&sie->lock);
39 sie->sie_num = sie_num;
40 sie->mode = c67x00_sie_config(dev->pdata->sie_config, sie_num);
44 c67x00_hcd_probe(sie);
47 case C67X00_SIE_UNUSED:
48 dev_info(sie_dev(sie),
49 "Not using SIE %d as requested\n", sie->sie_num);
54 "Unsupported configuration: 0x%x for SIE %d\n",
55 sie->mode, sie->sie_num);
60 static void c67x00_remove_sie(struct c67x00_sie *sie)
64 c67x00_hcd_remove(sie);
72 static irqreturn_t c67x00_irq(int irq, void *__dev)
74 struct c67x00_device *c67x00 = __dev;
75 struct c67x00_sie *sie;
79 int_status = c67x00_ll_hpi_status(c67x00);
83 while (int_status != 0 && (count-- >= 0)) {
84 c67x00_ll_irq(c67x00, int_status);
85 for (i = 0; i < C67X00_SIES; i++) {
86 sie = &c67x00->sie[i];
88 if (int_status & SIEMSG_FLG(i))
89 msg = c67x00_ll_fetch_siemsg(c67x00, i);
91 sie->irq(sie, int_status, msg);
93 int_status = c67x00_ll_hpi_status(c67x00);
97 dev_warn(&c67x00->pdev->dev, "Not all interrupts handled! "
98 "status = 0x%04x\n", int_status);
103 /* ------------------------------------------------------------------------- */
105 static int c67x00_drv_probe(struct platform_device *pdev)
107 struct c67x00_device *c67x00;
108 struct c67x00_platform_data *pdata;
109 struct resource *res, *res2;
112 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
116 res2 = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
120 pdata = dev_get_platdata(&pdev->dev);
124 c67x00 = kzalloc(sizeof(*c67x00), GFP_KERNEL);
128 if (!request_mem_region(res->start, resource_size(res),
130 dev_err(&pdev->dev, "Memory region busy\n");
132 goto request_mem_failed;
134 c67x00->hpi.base = ioremap(res->start, resource_size(res));
135 if (!c67x00->hpi.base) {
136 dev_err(&pdev->dev, "Unable to map HPI registers\n");
141 spin_lock_init(&c67x00->hpi.lock);
142 c67x00->hpi.regstep = pdata->hpi_regstep;
143 c67x00->pdata = dev_get_platdata(&pdev->dev);
146 c67x00_ll_init(c67x00);
147 c67x00_ll_hpi_reg_init(c67x00);
149 ret = request_irq(res2->start, c67x00_irq, 0, pdev->name, c67x00);
151 dev_err(&pdev->dev, "Cannot claim IRQ\n");
152 goto request_irq_failed;
155 ret = c67x00_ll_reset(c67x00);
157 dev_err(&pdev->dev, "Device reset failed\n");
161 for (i = 0; i < C67X00_SIES; i++)
162 c67x00_probe_sie(&c67x00->sie[i], c67x00, i);
164 platform_set_drvdata(pdev, c67x00);
169 free_irq(res2->start, c67x00);
171 iounmap(c67x00->hpi.base);
173 release_mem_region(res->start, resource_size(res));
180 static int c67x00_drv_remove(struct platform_device *pdev)
182 struct c67x00_device *c67x00 = platform_get_drvdata(pdev);
183 struct resource *res;
186 for (i = 0; i < C67X00_SIES; i++)
187 c67x00_remove_sie(&c67x00->sie[i]);
189 c67x00_ll_release(c67x00);
191 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
193 free_irq(res->start, c67x00);
195 iounmap(c67x00->hpi.base);
197 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
199 release_mem_region(res->start, resource_size(res));
206 static struct platform_driver c67x00_driver = {
207 .probe = c67x00_drv_probe,
208 .remove = c67x00_drv_remove,
214 module_platform_driver(c67x00_driver);
216 MODULE_AUTHOR("Peter Korsgaard, Jan Veldeman, Grant Likely");
217 MODULE_DESCRIPTION("Cypress C67X00 USB Controller Driver");
218 MODULE_LICENSE("GPL");
219 MODULE_ALIAS("platform:c67x00");