diff options
-rw-r--r-- | drivers/usb/host/ehci-hcd.c | 5 | ||||
-rw-r--r-- | drivers/usb/host/ehci-hub.c | 75 | ||||
-rw-r--r-- | drivers/usb/host/ehci-sysfs.c | 94 |
3 files changed, 97 insertions, 77 deletions
diff --git a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c index e18862c5b059..8306155de9e5 100644 --- a/drivers/usb/host/ehci-hcd.c +++ b/drivers/usb/host/ehci-hcd.c | |||
@@ -336,6 +336,7 @@ static void ehci_work(struct ehci_hcd *ehci); | |||
336 | #include "ehci-mem.c" | 336 | #include "ehci-mem.c" |
337 | #include "ehci-q.c" | 337 | #include "ehci-q.c" |
338 | #include "ehci-sched.c" | 338 | #include "ehci-sched.c" |
339 | #include "ehci-sysfs.c" | ||
339 | 340 | ||
340 | /*-------------------------------------------------------------------------*/ | 341 | /*-------------------------------------------------------------------------*/ |
341 | 342 | ||
@@ -520,7 +521,7 @@ static void ehci_stop (struct usb_hcd *hcd) | |||
520 | ehci_reset (ehci); | 521 | ehci_reset (ehci); |
521 | spin_unlock_irq(&ehci->lock); | 522 | spin_unlock_irq(&ehci->lock); |
522 | 523 | ||
523 | remove_companion_file(ehci); | 524 | remove_sysfs_files(ehci); |
524 | remove_debug_files (ehci); | 525 | remove_debug_files (ehci); |
525 | 526 | ||
526 | /* root hub is shut down separately (first, when possible) */ | 527 | /* root hub is shut down separately (first, when possible) */ |
@@ -754,7 +755,7 @@ static int ehci_run (struct usb_hcd *hcd) | |||
754 | * since the class device isn't created that early. | 755 | * since the class device isn't created that early. |
755 | */ | 756 | */ |
756 | create_debug_files(ehci); | 757 | create_debug_files(ehci); |
757 | create_companion_file(ehci); | 758 | create_sysfs_files(ehci); |
758 | 759 | ||
759 | return 0; | 760 | return 0; |
760 | } | 761 | } |
diff --git a/drivers/usb/host/ehci-hub.c b/drivers/usb/host/ehci-hub.c index ea6184bf48d0..d9e8d713f485 100644 --- a/drivers/usb/host/ehci-hub.c +++ b/drivers/usb/host/ehci-hub.c | |||
@@ -471,29 +471,6 @@ static int ehci_bus_resume (struct usb_hcd *hcd) | |||
471 | 471 | ||
472 | /*-------------------------------------------------------------------------*/ | 472 | /*-------------------------------------------------------------------------*/ |
473 | 473 | ||
474 | /* Display the ports dedicated to the companion controller */ | ||
475 | static ssize_t show_companion(struct device *dev, | ||
476 | struct device_attribute *attr, | ||
477 | char *buf) | ||
478 | { | ||
479 | struct ehci_hcd *ehci; | ||
480 | int nports, index, n; | ||
481 | int count = PAGE_SIZE; | ||
482 | char *ptr = buf; | ||
483 | |||
484 | ehci = hcd_to_ehci(bus_to_hcd(dev_get_drvdata(dev))); | ||
485 | nports = HCS_N_PORTS(ehci->hcs_params); | ||
486 | |||
487 | for (index = 0; index < nports; ++index) { | ||
488 | if (test_bit(index, &ehci->companion_ports)) { | ||
489 | n = scnprintf(ptr, count, "%d\n", index + 1); | ||
490 | ptr += n; | ||
491 | count -= n; | ||
492 | } | ||
493 | } | ||
494 | return ptr - buf; | ||
495 | } | ||
496 | |||
497 | /* | 474 | /* |
498 | * Sets the owner of a port | 475 | * Sets the owner of a port |
499 | */ | 476 | */ |
@@ -528,58 +505,6 @@ static void set_owner(struct ehci_hcd *ehci, int portnum, int new_owner) | |||
528 | } | 505 | } |
529 | } | 506 | } |
530 | 507 | ||
531 | /* | ||
532 | * Dedicate or undedicate a port to the companion controller. | ||
533 | * Syntax is "[-]portnum", where a leading '-' sign means | ||
534 | * return control of the port to the EHCI controller. | ||
535 | */ | ||
536 | static ssize_t store_companion(struct device *dev, | ||
537 | struct device_attribute *attr, | ||
538 | const char *buf, size_t count) | ||
539 | { | ||
540 | struct ehci_hcd *ehci; | ||
541 | int portnum, new_owner; | ||
542 | |||
543 | ehci = hcd_to_ehci(bus_to_hcd(dev_get_drvdata(dev))); | ||
544 | new_owner = PORT_OWNER; /* Owned by companion */ | ||
545 | if (sscanf(buf, "%d", &portnum) != 1) | ||
546 | return -EINVAL; | ||
547 | if (portnum < 0) { | ||
548 | portnum = - portnum; | ||
549 | new_owner = 0; /* Owned by EHCI */ | ||
550 | } | ||
551 | if (portnum <= 0 || portnum > HCS_N_PORTS(ehci->hcs_params)) | ||
552 | return -ENOENT; | ||
553 | portnum--; | ||
554 | if (new_owner) | ||
555 | set_bit(portnum, &ehci->companion_ports); | ||
556 | else | ||
557 | clear_bit(portnum, &ehci->companion_ports); | ||
558 | set_owner(ehci, portnum, new_owner); | ||
559 | return count; | ||
560 | } | ||
561 | static DEVICE_ATTR(companion, 0644, show_companion, store_companion); | ||
562 | |||
563 | static inline int create_companion_file(struct ehci_hcd *ehci) | ||
564 | { | ||
565 | int i = 0; | ||
566 | |||
567 | /* with integrated TT there is no companion! */ | ||
568 | if (!ehci_is_TDI(ehci)) | ||
569 | i = device_create_file(ehci_to_hcd(ehci)->self.controller, | ||
570 | &dev_attr_companion); | ||
571 | return i; | ||
572 | } | ||
573 | |||
574 | static inline void remove_companion_file(struct ehci_hcd *ehci) | ||
575 | { | ||
576 | /* with integrated TT there is no companion! */ | ||
577 | if (!ehci_is_TDI(ehci)) | ||
578 | device_remove_file(ehci_to_hcd(ehci)->self.controller, | ||
579 | &dev_attr_companion); | ||
580 | } | ||
581 | |||
582 | |||
583 | /*-------------------------------------------------------------------------*/ | 508 | /*-------------------------------------------------------------------------*/ |
584 | 509 | ||
585 | static int check_reset_complete ( | 510 | static int check_reset_complete ( |
diff --git a/drivers/usb/host/ehci-sysfs.c b/drivers/usb/host/ehci-sysfs.c new file mode 100644 index 000000000000..29824a98aec9 --- /dev/null +++ b/drivers/usb/host/ehci-sysfs.c | |||
@@ -0,0 +1,94 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007 by Alan Stern | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify it | ||
5 | * under the terms of the GNU General Public License as published by the | ||
6 | * Free Software Foundation; either version 2 of the License, or (at your | ||
7 | * option) any later version. | ||
8 | * | ||
9 | * This program is distributed in the hope that it will be useful, but | ||
10 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY | ||
11 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
12 | * for more details. | ||
13 | * | ||
14 | * You should have received a copy of the GNU General Public License | ||
15 | * along with this program; if not, write to the Free Software Foundation, | ||
16 | * Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
17 | */ | ||
18 | |||
19 | /* this file is part of ehci-hcd.c */ | ||
20 | |||
21 | |||
22 | /* Display the ports dedicated to the companion controller */ | ||
23 | static ssize_t show_companion(struct device *dev, | ||
24 | struct device_attribute *attr, | ||
25 | char *buf) | ||
26 | { | ||
27 | struct ehci_hcd *ehci; | ||
28 | int nports, index, n; | ||
29 | int count = PAGE_SIZE; | ||
30 | char *ptr = buf; | ||
31 | |||
32 | ehci = hcd_to_ehci(bus_to_hcd(dev_get_drvdata(dev))); | ||
33 | nports = HCS_N_PORTS(ehci->hcs_params); | ||
34 | |||
35 | for (index = 0; index < nports; ++index) { | ||
36 | if (test_bit(index, &ehci->companion_ports)) { | ||
37 | n = scnprintf(ptr, count, "%d\n", index + 1); | ||
38 | ptr += n; | ||
39 | count -= n; | ||
40 | } | ||
41 | } | ||
42 | return ptr - buf; | ||
43 | } | ||
44 | |||
45 | /* | ||
46 | * Dedicate or undedicate a port to the companion controller. | ||
47 | * Syntax is "[-]portnum", where a leading '-' sign means | ||
48 | * return control of the port to the EHCI controller. | ||
49 | */ | ||
50 | static ssize_t store_companion(struct device *dev, | ||
51 | struct device_attribute *attr, | ||
52 | const char *buf, size_t count) | ||
53 | { | ||
54 | struct ehci_hcd *ehci; | ||
55 | int portnum, new_owner; | ||
56 | |||
57 | ehci = hcd_to_ehci(bus_to_hcd(dev_get_drvdata(dev))); | ||
58 | new_owner = PORT_OWNER; /* Owned by companion */ | ||
59 | if (sscanf(buf, "%d", &portnum) != 1) | ||
60 | return -EINVAL; | ||
61 | if (portnum < 0) { | ||
62 | portnum = - portnum; | ||
63 | new_owner = 0; /* Owned by EHCI */ | ||
64 | } | ||
65 | if (portnum <= 0 || portnum > HCS_N_PORTS(ehci->hcs_params)) | ||
66 | return -ENOENT; | ||
67 | portnum--; | ||
68 | if (new_owner) | ||
69 | set_bit(portnum, &ehci->companion_ports); | ||
70 | else | ||
71 | clear_bit(portnum, &ehci->companion_ports); | ||
72 | set_owner(ehci, portnum, new_owner); | ||
73 | return count; | ||
74 | } | ||
75 | static DEVICE_ATTR(companion, 0644, show_companion, store_companion); | ||
76 | |||
77 | static inline int create_sysfs_files(struct ehci_hcd *ehci) | ||
78 | { | ||
79 | int i = 0; | ||
80 | |||
81 | /* with integrated TT there is no companion! */ | ||
82 | if (!ehci_is_TDI(ehci)) | ||
83 | i = device_create_file(ehci_to_hcd(ehci)->self.controller, | ||
84 | &dev_attr_companion); | ||
85 | return i; | ||
86 | } | ||
87 | |||
88 | static inline void remove_sysfs_files(struct ehci_hcd *ehci) | ||
89 | { | ||
90 | /* with integrated TT there is no companion! */ | ||
91 | if (!ehci_is_TDI(ehci)) | ||
92 | device_remove_file(ehci_to_hcd(ehci)->self.controller, | ||
93 | &dev_attr_companion); | ||
94 | } | ||