diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-04-27 08:59:45 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-05-02 10:25:57 -0700 |
commit | e9b29ffc519b9e63d4e1c0b1278bb951bb418a9d (patch) | |
tree | 4da71b6882ff9c41690a1ebcfaf3f3de5154c082 /drivers/usb/c67x00/c67x00-drv.c | |
parent | b02b371e6d14961ad458ca9d88b30eefef77003d (diff) |
USB: add Cypress c67x00 OTG controller HCD driver
This patch adds HCD support for the Cypress c67x00 family of devices.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/c67x00/c67x00-drv.c')
-rw-r--r-- | drivers/usb/c67x00/c67x00-drv.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/drivers/usb/c67x00/c67x00-drv.c b/drivers/usb/c67x00/c67x00-drv.c index f8189bdbd06..5633bc5c8bf 100644 --- a/drivers/usb/c67x00/c67x00-drv.c +++ b/drivers/usb/c67x00/c67x00-drv.c @@ -41,6 +41,7 @@ #include <linux/usb/c67x00.h> #include "c67x00.h" +#include "c67x00-hcd.h" static void c67x00_probe_sie(struct c67x00_sie *sie, struct c67x00_device *dev, int sie_num) @@ -51,6 +52,10 @@ static void c67x00_probe_sie(struct c67x00_sie *sie, sie->mode = c67x00_sie_config(dev->pdata->sie_config, sie_num); switch (sie->mode) { + case C67X00_SIE_HOST: + c67x00_hcd_probe(sie); + break; + case C67X00_SIE_UNUSED: dev_info(sie_dev(sie), "Not using SIE %d as requested\n", sie->sie_num); @@ -66,6 +71,14 @@ static void c67x00_probe_sie(struct c67x00_sie *sie, static void c67x00_remove_sie(struct c67x00_sie *sie) { + switch (sie->mode) { + case C67X00_SIE_HOST: + c67x00_hcd_remove(sie); + break; + + default: + break; + } } static irqreturn_t c67x00_irq(int irq, void *__dev) |