Krzysztof Kozlowski | 84b2170 | 2017-12-25 20:54:32 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
| 2 | // |
| 3 | // Copyright 2004-2005 Simtec Electronics |
| 4 | // 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 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | |
| 10 | #define DEBUG |
| 11 | |
| 12 | #include <linux/kernel.h> |
| 13 | #include <linux/types.h> |
| 14 | #include <linux/interrupt.h> |
| 15 | #include <linux/list.h> |
Ben Dooks | ec976d6 | 2009-05-13 22:52:24 +0100 | [diff] [blame] | 16 | #include <linux/gpio.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/timer.h> |
| 18 | #include <linux/init.h> |
| 19 | #include <linux/device.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 20 | #include <linux/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
| 22 | #include <asm/mach/arch.h> |
| 23 | #include <asm/mach/map.h> |
| 24 | #include <asm/mach/irq.h> |
| 25 | |
Arnd Bergmann | c6ff132 | 2019-09-02 18:37:30 +0200 | [diff] [blame] | 26 | #include "gpio-samsung.h" |
Arnd Bergmann | b2a587c | 2020-08-06 20:20:47 +0200 | [diff] [blame] | 27 | #include <mach/irqs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <asm/irq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
Arnd Bergmann | 436d42c | 2012-08-24 15:22:12 +0200 | [diff] [blame] | 30 | #include <linux/platform_data/usb-ohci-s3c2410.h> |
Arnd Bergmann | c6ff132 | 2019-09-02 18:37:30 +0200 | [diff] [blame] | 31 | #include "devs.h" |
Ben Dooks | 49121aa | 2009-03-07 11:44:21 +0000 | [diff] [blame] | 32 | |
Kukjin Kim | bbd7e5e | 2013-01-01 19:56:20 -0800 | [diff] [blame] | 33 | #include "bast.h" |
Heiko Stuebner | ec2cc75 | 2012-03-07 01:47:11 -0800 | [diff] [blame] | 34 | #include "simtec.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
| 36 | /* control power and monitor over-current events on various Simtec |
| 37 | * designed boards. |
| 38 | */ |
| 39 | |
Ben Dooks | 484ae6b | 2005-08-10 16:45:14 +0100 | [diff] [blame] | 40 | static unsigned int power_state[2]; |
| 41 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | static void |
| 43 | usb_simtec_powercontrol(int port, int to) |
| 44 | { |
| 45 | pr_debug("usb_simtec_powercontrol(%d,%d)\n", port, to); |
| 46 | |
Ben Dooks | 484ae6b | 2005-08-10 16:45:14 +0100 | [diff] [blame] | 47 | power_state[port] = to; |
| 48 | |
| 49 | if (power_state[0] && power_state[1]) |
Ben Dooks | 7a05a2c | 2009-05-18 20:15:01 +0100 | [diff] [blame] | 50 | gpio_set_value(S3C2410_GPB(4), 0); |
Ben Dooks | 484ae6b | 2005-08-10 16:45:14 +0100 | [diff] [blame] | 51 | else |
Ben Dooks | 7a05a2c | 2009-05-18 20:15:01 +0100 | [diff] [blame] | 52 | gpio_set_value(S3C2410_GPB(4), 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | } |
| 54 | |
| 55 | static irqreturn_t |
Linus Torvalds | 0cd61b6 | 2006-10-06 10:53:39 -0700 | [diff] [blame] | 56 | usb_simtec_ocirq(int irq, void *pw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | { |
Jeff Garzik | 2a7057e | 2007-10-26 05:40:22 -0400 | [diff] [blame] | 58 | struct s3c2410_hcd_info *info = pw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
Ben Dooks | 7a05a2c | 2009-05-18 20:15:01 +0100 | [diff] [blame] | 60 | if (gpio_get_value(S3C2410_GPG(10)) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | pr_debug("usb_simtec: over-current irq (oc detected)\n"); |
Ben Dooks | 484ae6b | 2005-08-10 16:45:14 +0100 | [diff] [blame] | 62 | s3c2410_usb_report_oc(info, 3); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | } else { |
| 64 | pr_debug("usb_simtec: over-current irq (oc cleared)\n"); |
Ben Dooks | 484ae6b | 2005-08-10 16:45:14 +0100 | [diff] [blame] | 65 | s3c2410_usb_report_oc(info, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | return IRQ_HANDLED; |
| 69 | } |
| 70 | |
| 71 | static void usb_simtec_enableoc(struct s3c2410_hcd_info *info, int on) |
| 72 | { |
| 73 | int ret; |
| 74 | |
| 75 | if (on) { |
Kukjin Kim | bbd7e5e | 2013-01-01 19:56:20 -0800 | [diff] [blame] | 76 | ret = request_irq(BAST_IRQ_USBOC, usb_simtec_ocirq, |
Michael Opdenacker | fa53d5c | 2013-12-12 07:05:19 +0900 | [diff] [blame] | 77 | IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | "USB Over-current", info); |
| 79 | if (ret != 0) { |
| 80 | printk(KERN_ERR "failed to request usb oc irq\n"); |
| 81 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | } else { |
Kukjin Kim | bbd7e5e | 2013-01-01 19:56:20 -0800 | [diff] [blame] | 83 | free_irq(BAST_IRQ_USBOC, info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | } |
| 85 | } |
| 86 | |
Ben Dooks | f126752 | 2010-01-13 14:59:46 +0900 | [diff] [blame] | 87 | static struct s3c2410_hcd_info usb_simtec_info __initdata = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | .port[0] = { |
| 89 | .flags = S3C_HCDFLG_USED |
| 90 | }, |
| 91 | .port[1] = { |
| 92 | .flags = S3C_HCDFLG_USED |
| 93 | }, |
| 94 | |
| 95 | .power_control = usb_simtec_powercontrol, |
| 96 | .enable_oc = usb_simtec_enableoc, |
| 97 | }; |
| 98 | |
| 99 | |
Arnd Bergmann | 673550a | 2012-05-27 02:42:12 +0000 | [diff] [blame] | 100 | int __init usb_simtec_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | { |
Ben Dooks | 7a05a2c | 2009-05-18 20:15:01 +0100 | [diff] [blame] | 102 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | |
Ben Dooks | 50f430e | 2009-11-13 22:54:12 +0000 | [diff] [blame] | 104 | printk("USB Power Control, Copyright 2004 Simtec Electronics\n"); |
Ben Dooks | 7a05a2c | 2009-05-18 20:15:01 +0100 | [diff] [blame] | 105 | |
| 106 | ret = gpio_request(S3C2410_GPB(4), "USB power control"); |
| 107 | if (ret < 0) { |
| 108 | pr_err("%s: failed to get GPB4\n", __func__); |
| 109 | return ret; |
| 110 | } |
| 111 | |
| 112 | ret = gpio_request(S3C2410_GPG(10), "USB overcurrent"); |
| 113 | if (ret < 0) { |
| 114 | pr_err("%s: failed to get GPG10\n", __func__); |
| 115 | gpio_free(S3C2410_GPB(4)); |
| 116 | return ret; |
| 117 | } |
| 118 | |
| 119 | /* turn power on */ |
| 120 | gpio_direction_output(S3C2410_GPB(4), 1); |
| 121 | gpio_direction_input(S3C2410_GPG(10)); |
| 122 | |
Ben Dooks | f126752 | 2010-01-13 14:59:46 +0900 | [diff] [blame] | 123 | s3c_ohci_set_platdata(&usb_simtec_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | return 0; |
| 125 | } |