blob: bb3eac6a769733155c17ce165342153333b255c2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* linux/arch/arm/mach-s3c2410/usb-simtec.c
2 *
Ben Dookse02f8662009-11-13 22:54:13 +00003 * Copyright 2004-2005 Simtec Electronics
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Ben Dooks <ben@simtec.co.uk>
5 *
6 * http://www.simtec.co.uk/products/EB2410ITX/
7 *
8 * Simtec BAST and Thorcom VR1000 USB port support functions
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013*/
14
15#define DEBUG
16
17#include <linux/kernel.h>
18#include <linux/types.h>
19#include <linux/interrupt.h>
20#include <linux/list.h>
Ben Dooksec976d62009-05-13 22:52:24 +010021#include <linux/gpio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/timer.h>
23#include <linux/init.h>
24#include <linux/device.h>
Russell Kingfced80c2008-09-06 12:10:45 +010025#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27#include <asm/mach/arch.h>
28#include <asm/mach/map.h>
29#include <asm/mach/irq.h>
30
Russell Kinga09e64f2008-08-05 16:14:15 +010031#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Arnd Bergmann436d42c2012-08-24 15:22:12 +020034#include <linux/platform_data/usb-ohci-s3c2410.h>
Ben Dooksa2b7ba92008-10-07 22:26:09 +010035#include <plat/devs.h>
Ben Dooks49121aa2009-03-07 11:44:21 +000036
Kukjin Kimbbd7e5e2013-01-01 19:56:20 -080037#include "bast.h"
Heiko Stuebnerec2cc752012-03-07 01:47:11 -080038#include "simtec.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40/* control power and monitor over-current events on various Simtec
41 * designed boards.
42*/
43
Ben Dooks484ae6b2005-08-10 16:45:14 +010044static unsigned int power_state[2];
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046static void
47usb_simtec_powercontrol(int port, int to)
48{
49 pr_debug("usb_simtec_powercontrol(%d,%d)\n", port, to);
50
Ben Dooks484ae6b2005-08-10 16:45:14 +010051 power_state[port] = to;
52
53 if (power_state[0] && power_state[1])
Ben Dooks7a05a2c2009-05-18 20:15:01 +010054 gpio_set_value(S3C2410_GPB(4), 0);
Ben Dooks484ae6b2005-08-10 16:45:14 +010055 else
Ben Dooks7a05a2c2009-05-18 20:15:01 +010056 gpio_set_value(S3C2410_GPB(4), 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057}
58
59static irqreturn_t
Linus Torvalds0cd61b62006-10-06 10:53:39 -070060usb_simtec_ocirq(int irq, void *pw)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
Jeff Garzik2a7057e2007-10-26 05:40:22 -040062 struct s3c2410_hcd_info *info = pw;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Ben Dooks7a05a2c2009-05-18 20:15:01 +010064 if (gpio_get_value(S3C2410_GPG(10)) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 pr_debug("usb_simtec: over-current irq (oc detected)\n");
Ben Dooks484ae6b2005-08-10 16:45:14 +010066 s3c2410_usb_report_oc(info, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 } else {
68 pr_debug("usb_simtec: over-current irq (oc cleared)\n");
Ben Dooks484ae6b2005-08-10 16:45:14 +010069 s3c2410_usb_report_oc(info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 }
71
72 return IRQ_HANDLED;
73}
74
75static void usb_simtec_enableoc(struct s3c2410_hcd_info *info, int on)
76{
77 int ret;
78
79 if (on) {
Kukjin Kimbbd7e5e2013-01-01 19:56:20 -080080 ret = request_irq(BAST_IRQ_USBOC, usb_simtec_ocirq,
Michael Opdenackerfa53d5c2013-12-12 07:05:19 +090081 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 "USB Over-current", info);
83 if (ret != 0) {
84 printk(KERN_ERR "failed to request usb oc irq\n");
85 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 } else {
Kukjin Kimbbd7e5e2013-01-01 19:56:20 -080087 free_irq(BAST_IRQ_USBOC, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 }
89}
90
Ben Dooksf1267522010-01-13 14:59:46 +090091static struct s3c2410_hcd_info usb_simtec_info __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 .port[0] = {
93 .flags = S3C_HCDFLG_USED
94 },
95 .port[1] = {
96 .flags = S3C_HCDFLG_USED
97 },
98
99 .power_control = usb_simtec_powercontrol,
100 .enable_oc = usb_simtec_enableoc,
101};
102
103
Arnd Bergmann673550a2012-05-27 02:42:12 +0000104int __init usb_simtec_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
Ben Dooks7a05a2c2009-05-18 20:15:01 +0100106 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Ben Dooks50f430e2009-11-13 22:54:12 +0000108 printk("USB Power Control, Copyright 2004 Simtec Electronics\n");
Ben Dooks7a05a2c2009-05-18 20:15:01 +0100109
110 ret = gpio_request(S3C2410_GPB(4), "USB power control");
111 if (ret < 0) {
112 pr_err("%s: failed to get GPB4\n", __func__);
113 return ret;
114 }
115
116 ret = gpio_request(S3C2410_GPG(10), "USB overcurrent");
117 if (ret < 0) {
118 pr_err("%s: failed to get GPG10\n", __func__);
119 gpio_free(S3C2410_GPB(4));
120 return ret;
121 }
122
123 /* turn power on */
124 gpio_direction_output(S3C2410_GPB(4), 1);
125 gpio_direction_input(S3C2410_GPG(10));
126
Ben Dooksf1267522010-01-13 14:59:46 +0900127 s3c_ohci_set_platdata(&usb_simtec_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 return 0;
129}