1 From 7cb1e9a0797dd5d372f943f0ed971a5b432d16aa Mon Sep 17 00:00:00 2001
2 From: mokopatches <mokopatches@openmoko.org>
3 Date: Fri, 25 Jul 2008 22:21:23 +0100
4 Subject: [PATCH] s3c2410-usb-switch.patch
7 drivers/usb/host/ohci-s3c2410.c | 43 +++++++++++++++++++++++++++++++++++++++
8 1 files changed, 43 insertions(+), 0 deletions(-)
10 diff --git a/drivers/usb/host/ohci-s3c2410.c b/drivers/usb/host/ohci-s3c2410.c
11 index 3c7a740..5877fc9 100644
12 --- a/drivers/usb/host/ohci-s3c2410.c
13 +++ b/drivers/usb/host/ohci-s3c2410.c
16 #include <asm/hardware.h>
17 #include <asm/arch/usb-control.h>
18 +#include <asm/arch/regs-gpio.h>
20 #define valid_port(idx) ((idx) == 1 || (idx) == 2)
22 @@ -308,6 +309,40 @@ static void s3c2410_hcd_oc(struct s3c2410_hcd_info *info, int port_oc)
23 local_irq_restore(flags);
26 +/* switching of USB pads */
27 +static ssize_t show_usb_mode(struct device *dev, struct device_attribute *attr,
30 + if (__raw_readl(S3C24XX_MISCCR) & S3C2410_MISCCR_USBHOST)
31 + return sprintf(buf, "host\n");
33 + return sprintf(buf, "device\n");
36 +static ssize_t set_usb_mode(struct device *dev, struct device_attribute *attr,
37 + const char *buf, size_t count)
39 + if (!strncmp(buf, "host", 4)) {
40 + printk("s3c2410: changing usb to host\n");
41 + s3c2410_modify_misccr(S3C2410_MISCCR_USBHOST,
42 + S3C2410_MISCCR_USBHOST);
44 + * - call machine-specific disable-pullup function i
45 + * - enable +Vbus (if hardware supports it)
47 + s3c2410_gpio_setpin(S3C2410_GPB9, 0);
48 + } else if (!strncmp(buf, "device", 6)) {
49 + printk("s3c2410: changing usb to device\n");
50 + s3c2410_modify_misccr(S3C2410_MISCCR_USBHOST, 0);
51 + s3c2410_gpio_setpin(S3C2410_GPB9, 1);
53 + printk("s3c2410: unknown mode\n");
58 +static DEVICE_ATTR(usb_mode, S_IRUGO | S_IWUSR, show_usb_mode, set_usb_mode);
60 /* may be called without controller electrically present */
61 /* may be called with controller, bus, and devices active */
63 @@ -325,6 +360,7 @@ static void s3c2410_hcd_oc(struct s3c2410_hcd_info *info, int port_oc)
65 usb_hcd_s3c2410_remove (struct usb_hcd *hcd, struct platform_device *dev)
67 + device_remove_file(&dev->dev, &dev_attr_usb_mode);
71 @@ -392,8 +428,15 @@ static int usb_hcd_s3c2410_probe (const struct hc_driver *driver,
75 + retval = device_create_file(&dev->dev, &dev_attr_usb_mode);
82 + usb_remove_hcd(hcd);