hc
2024-08-16 a24a44ff9ca902811b99aa9663d697cf452e08ef
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/* SPDX-License-Identifier: GPL-2.0+ */
/* Copyright (C) 2004 Texas Instruments */
 
/*
 * This OTG and Embedded Host list is "Targeted Peripheral List".
 * It should mostly use of USB_DEVICE() or USB_DEVICE_VER() entries..
 *
 * YOU _SHOULD_ CHANGE THIS LIST TO MATCH YOUR PRODUCT AND ITS TESTING!
 */
 
static struct usb_device_id productlist_table[] = {
 
/* hubs are optional in OTG, but very handy ... */
{ USB_DEVICE_INFO(USB_CLASS_HUB, 0, 0), },
{ USB_DEVICE_INFO(USB_CLASS_HUB, 0, 1), },
 
#ifdef    CONFIG_USB_PRINTER        /* ignoring nonstatic linkage! */
/* FIXME actually, printers are NOT supposed to use device classes;
 * they're supposed to use interface classes...
 */
{ USB_DEVICE_INFO(7, 1, 1) },
{ USB_DEVICE_INFO(7, 1, 2) },
{ USB_DEVICE_INFO(7, 1, 3) },
#endif
 
#ifdef    CONFIG_USB_NET_CDCETHER
/* Linux-USB CDC Ethernet gadget */
{ USB_DEVICE(0x0525, 0xa4a1), },
/* Linux-USB CDC Ethernet + RNDIS gadget */
{ USB_DEVICE(0x0525, 0xa4a2), },
#endif
 
#if    IS_ENABLED(CONFIG_USB_TEST)
/* gadget zero, for testing */
{ USB_DEVICE(0x0525, 0xa4a0), },
#endif
 
{ }    /* Terminating entry */
};
 
static int is_targeted(struct usb_device *dev)
{
   struct usb_device_id    *id = productlist_table;
 
   /* HNP test device is _never_ targeted (see OTG spec 6.6.6) */
   if ((le16_to_cpu(dev->descriptor.idVendor) == 0x1a0a &&
        le16_to_cpu(dev->descriptor.idProduct) == 0xbadd))
       return 0;
 
   /* OTG PET device is always targeted (see OTG 2.0 ECN 6.4.2) */
   if ((le16_to_cpu(dev->descriptor.idVendor) == 0x1a0a &&
        le16_to_cpu(dev->descriptor.idProduct) == 0x0200))
       return 1;
 
   /* NOTE: can't use usb_match_id() since interface caches
    * aren't set up yet. this is cut/paste from that code.
    */
   for (id = productlist_table; id->match_flags; id++) {
       if ((id->match_flags & USB_DEVICE_ID_MATCH_VENDOR) &&
           id->idVendor != le16_to_cpu(dev->descriptor.idVendor))
           continue;
 
       if ((id->match_flags & USB_DEVICE_ID_MATCH_PRODUCT) &&
           id->idProduct != le16_to_cpu(dev->descriptor.idProduct))
           continue;
 
       /* No need to test id->bcdDevice_lo != 0, since 0 is never
          greater than any unsigned number. */
       if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_LO) &&
           (id->bcdDevice_lo > le16_to_cpu(dev->descriptor.bcdDevice)))
           continue;
 
       if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_HI) &&
           (id->bcdDevice_hi < le16_to_cpu(dev->descriptor.bcdDevice)))
           continue;
 
       if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_CLASS) &&
           (id->bDeviceClass != dev->descriptor.bDeviceClass))
           continue;
 
       if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_SUBCLASS) &&
           (id->bDeviceSubClass != dev->descriptor.bDeviceSubClass))
           continue;
 
       if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_PROTOCOL) &&
           (id->bDeviceProtocol != dev->descriptor.bDeviceProtocol))
           continue;
 
       return 1;
   }
 
   /* add other match criteria here ... */
 
 
   /* OTG MESSAGE: report errors here, customize to match your product */
   dev_err(&dev->dev, "device v%04x p%04x is not supported\n",
       le16_to_cpu(dev->descriptor.idVendor),
       le16_to_cpu(dev->descriptor.idProduct));
 
   return 0;
}