7b55da30e06736d521785ed7943c5872cae5f411
[oweals/u-boot.git] / drivers / usb / eth / usb_ether.c
1 /*
2  * Copyright (c) 2011 The Chromium OS Authors.
3  * See file CREDITS for list of people who contributed to this
4  * project.
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; either version 2 of
9  * the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
19  * MA 02111-1307 USA
20  */
21
22 #include <common.h>
23 #include <usb.h>
24
25 #include "usb_ether.h"
26
27 typedef void (*usb_eth_before_probe)(void);
28 typedef int (*usb_eth_probe)(struct usb_device *dev, unsigned int ifnum,
29                         struct ueth_data *ss);
30 typedef int (*usb_eth_get_info)(struct usb_device *dev, struct ueth_data *ss,
31                         struct eth_device *dev_desc);
32
33 struct usb_eth_prob_dev {
34         usb_eth_before_probe    before_probe; /* optional */
35         usb_eth_probe                   probe;
36         usb_eth_get_info                get_info;
37 };
38
39 /* driver functions go here, each bracketed by #ifdef CONFIG_USB_ETHER_xxx */
40 static const struct usb_eth_prob_dev prob_dev[] = {
41 #ifdef CONFIG_USB_ETHER_ASIX
42         {
43                 .before_probe = asix_eth_before_probe,
44                 .probe = asix_eth_probe,
45                 .get_info = asix_eth_get_info,
46         },
47 #endif
48 #ifdef CONFIG_USB_ETHER_SMSC95XX
49         {
50                 .before_probe = smsc95xx_eth_before_probe,
51                 .probe = smsc95xx_eth_probe,
52                 .get_info = smsc95xx_eth_get_info,
53         },
54 #endif
55         { },            /* END */
56 };
57
58 static int usb_max_eth_dev; /* number of highest available usb eth device */
59 static struct ueth_data usb_eth[USB_MAX_ETH_DEV];
60
61 /*******************************************************************************
62  * tell if current ethernet device is a usb dongle
63  */
64 int is_eth_dev_on_usb_host(void)
65 {
66         int i;
67         struct eth_device *dev = eth_get_dev();
68
69         if (dev) {
70                 for (i = 0; i < usb_max_eth_dev; i++)
71                         if (&usb_eth[i].eth_dev == dev)
72                                 return 1;
73         }
74         return 0;
75 }
76
77 /*
78  * Given a USB device, ask each driver if it can support it, and attach it
79  * to the first driver that says 'yes'
80  */
81 static void probe_valid_drivers(struct usb_device *dev)
82 {
83         int j;
84
85         for (j = 0; prob_dev[j].probe && prob_dev[j].get_info; j++) {
86                 if (!prob_dev[j].probe(dev, 0, &usb_eth[usb_max_eth_dev]))
87                         continue;
88                 /*
89                  * ok, it is a supported eth device. Get info and fill it in
90                  */
91                 if (prob_dev[j].get_info(dev,
92                         &usb_eth[usb_max_eth_dev],
93                         &usb_eth[usb_max_eth_dev].eth_dev)) {
94                         /* found proper driver */
95                         /* register with networking stack */
96                         usb_max_eth_dev++;
97
98                         /*
99                          * usb_max_eth_dev must be incremented prior to this
100                          * call since eth_current_changed (internally called)
101                          * relies on it
102                          */
103                         eth_register(&usb_eth[usb_max_eth_dev - 1].eth_dev);
104                         break;
105                         }
106                 }
107         }
108
109 /*******************************************************************************
110  * scan the usb and reports device info
111  * to the user if mode = 1
112  * returns current device or -1 if no
113  */
114 int usb_host_eth_scan(int mode)
115 {
116         int i, old_async;
117         struct usb_device *dev;
118
119
120         if (mode == 1)
121                 printf("       scanning bus for ethernet devices... ");
122
123         old_async = usb_disable_asynch(1); /* asynch transfer not allowed */
124
125         for (i = 0; i < USB_MAX_ETH_DEV; i++)
126                 memset(&usb_eth[i], 0, sizeof(usb_eth[i]));
127
128         for (i = 0; prob_dev[i].probe; i++) {
129                 if (prob_dev[i].before_probe)
130                         prob_dev[i].before_probe();
131         }
132
133         usb_max_eth_dev = 0;
134         for (i = 0; i < USB_MAX_DEVICE; i++) {
135                 dev = usb_get_dev_index(i); /* get device */
136                 debug("i=%d\n", i);
137                 if (dev == NULL)
138                         break; /* no more devices avaiable */
139
140                 /* find valid usb_ether driver for this device, if any */
141                 probe_valid_drivers(dev);
142
143                 /* check limit */
144                 if (usb_max_eth_dev == USB_MAX_ETH_DEV) {
145                         printf("max USB Ethernet Device reached: %d stopping\n",
146                                 usb_max_eth_dev);
147                         break;
148                 }
149         } /* for */
150
151         usb_disable_asynch(old_async); /* restore asynch value */
152         printf("%d Ethernet Device(s) found\n", usb_max_eth_dev);
153         if (usb_max_eth_dev > 0)
154                 return 0;
155         return -1;
156 }