~hamo/ubuntu/precise/grub2/grub2.hi_res

« back to all changes in this revision

Viewing changes to bus/usb/usb.c

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson, Colin Watson, Evan Broder, Mario Limonciello
  • Date: 2010-11-24 13:59:55 UTC
  • mfrom: (1.17.6 upstream) (17.6.15 experimental)
  • Revision ID: james.westby@ubuntu.com-20101124135955-r6ii5sepayr7jt53
Tags: 1.99~20101124-1ubuntu1
[ Colin Watson ]
* Resynchronise with Debian experimental.  Remaining changes:
  - Adjust for default Ubuntu boot options ("quiet splash").
  - Default to hiding the menu; holding down Shift at boot will show it.
  - Set a monochromatic theme for Ubuntu.
  - Apply Ubuntu GRUB Legacy changes to legacy update-grub script: title,
    recovery mode, quiet option, tweak how memtest86+ is displayed, and
    use UUIDs where appropriate.
  - Fix backslash-escaping in merge_debconf_into_conf.
  - Remove "GNU/Linux" from default distributor string.
  - Add crashkernel= options if kdump and makedumpfile are available.
  - If other operating systems are installed, then automatically unhide
    the menu.  Otherwise, if GRUB_HIDDEN_TIMEOUT is 0, then use keystatus
    if available to check whether Shift is pressed.  If it is, show the
    menu, otherwise boot immediately.  If keystatus is not available, then
    fall back to a short delay interruptible with Escape.
  - Allow Shift to interrupt 'sleep --interruptible'.
  - Don't display introductory message about line editing unless we're
    actually offering a shell prompt.  Don't clear the screen just before
    booting if we never drew the menu in the first place.
  - Remove some verbose messages printed before reading the configuration
    file.
  - Suppress progress messages as the kernel and initrd load for
    non-recovery kernel menu entries.
  - Change prepare_grub_to_access_device to handle filesystems
    loop-mounted on file images.
  - Ignore devices loop-mounted from files in 10_linux.
  - Show the boot menu if the previous boot failed, that is if it failed
    to get to the end of one of the normal runlevels.
  - Don't generate /boot/grub/device.map during grub-install or
    grub-mkconfig by default.
  - Adjust upgrade version checks for Ubuntu.
  - Don't display "GRUB loading" unless Shift is held down.
  - Adjust versions of grub-doc and grub-legacy-doc conflicts to tolerate
    our backport of the grub-doc split.
  - Fix LVM/RAID probing in the absence of /boot/grub/device.map.
  - Look for .mo files in /usr/share/locale-langpack as well, in
    preference.
  - Make sure GRUB_TIMEOUT isn't quoted unnecessarily.
  - Probe all devices in 'grub-probe --target=drive' if
    /boot/grub/device.map is missing.
  - Build-depend on qemu-kvm rather than qemu-system for grub-pc tests.
  - Use qemu rather than qemu-system-i386.
  - Program vesafb on BIOS systems rather than efifb.
  - Add a grub-rescue-efi-amd64 package containing a rescue CD-ROM image
    for EFI-AMD64.
  - On Wubi, don't ask for an install device, but just update wubildr
    using the diverted grub-install.
  - When embedding the core image in a post-MBR gap, check for and avoid
    sectors matching any of a list of known signatures.
  - Disable video_bochs and video_cirrus on PC BIOS systems, as probing
    PCI space seems to break on some systems.
* Downgrade "ACPI shutdown failed" error to a debug message, since it can
  cause spurious test failures.

[ Evan Broder ]
* Enable lua from grub-extras.
* Incorporate the bitop library into lua.
* Add enum_pci function to grub module in lua.
* Switch back to gfxpayload=keep by default, unless the video hardware
  is known to not support it.

[ Mario Limonciello ]
* Built part_msdos and vfat into bootx64.efi (LP: #677758)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* usb.c - Generic USB interfaces.  */
2
 
/*
3
 
 *  GRUB  --  GRand Unified Bootloader
4
 
 *  Copyright (C) 2008  Free Software Foundation, Inc.
5
 
 *
6
 
 *  GRUB is free software: you can redistribute it and/or modify
7
 
 *  it under the terms of the GNU General Public License as published by
8
 
 *  the Free Software Foundation, either version 3 of the License, or
9
 
 *  (at your option) any later version.
10
 
 *
11
 
 *  GRUB 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 GRUB.  If not, see <http://www.gnu.org/licenses/>.
18
 
 */
19
 
 
20
 
#include <grub/dl.h>
21
 
#include <grub/mm.h>
22
 
#include <grub/usb.h>
23
 
#include <grub/misc.h>
24
 
#include <grub/list.h>
25
 
 
26
 
static grub_usb_controller_dev_t grub_usb_list;
27
 
struct grub_usb_attach_desc *attach_hooks;
28
 
 
29
 
void
30
 
grub_usb_controller_dev_register (grub_usb_controller_dev_t usb)
31
 
{
32
 
  auto int iterate_hook (grub_usb_controller_t dev);
33
 
 
34
 
  /* Iterate over all controllers found by the driver.  */
35
 
  int iterate_hook (grub_usb_controller_t dev)
36
 
    {
37
 
      dev->dev = usb;
38
 
 
39
 
      /* Enable the ports of the USB Root Hub.  */
40
 
      grub_usb_root_hub (dev);
41
 
 
42
 
      return 0;
43
 
    }
44
 
 
45
 
  usb->next = grub_usb_list;
46
 
  grub_usb_list = usb;
47
 
 
48
 
  if (usb->iterate)
49
 
    usb->iterate (iterate_hook);
50
 
}
51
 
 
52
 
void
53
 
grub_usb_controller_dev_unregister (grub_usb_controller_dev_t usb)
54
 
{
55
 
  grub_usb_controller_dev_t *p, q;
56
 
 
57
 
  for (p = &grub_usb_list, q = *p; q; p = &(q->next), q = q->next)
58
 
    if (q == usb)
59
 
      {
60
 
        *p = q->next;
61
 
        break;
62
 
      }
63
 
}
64
 
 
65
 
#if 0
66
 
int
67
 
grub_usb_controller_iterate (int (*hook) (grub_usb_controller_t dev))
68
 
{
69
 
  grub_usb_controller_dev_t p;
70
 
 
71
 
  auto int iterate_hook (grub_usb_controller_t dev);
72
 
 
73
 
  int iterate_hook (grub_usb_controller_t dev)
74
 
    {
75
 
      dev->dev = p;
76
 
      if (hook (dev))
77
 
        return 1;
78
 
      return 0;
79
 
    }
80
 
 
81
 
  /* Iterate over all controller drivers.  */
82
 
  for (p = grub_usb_list; p; p = p->next)
83
 
    {
84
 
      /* Iterate over the busses of the controllers.  XXX: Actually, a
85
 
         hub driver should do this.  */
86
 
      if (p->iterate (iterate_hook))
87
 
        return 1;
88
 
    }
89
 
 
90
 
  return 0;
91
 
}
92
 
#endif
93
 
 
94
 
 
95
 
grub_usb_err_t
96
 
grub_usb_clear_halt (grub_usb_device_t dev, int endpoint)
97
 
{
98
 
  dev->toggle[endpoint] = 0;
99
 
  return grub_usb_control_msg (dev, (GRUB_USB_REQTYPE_OUT
100
 
                                     | GRUB_USB_REQTYPE_STANDARD
101
 
                                     | GRUB_USB_REQTYPE_TARGET_ENDP),
102
 
                               GRUB_USB_REQ_CLEAR_FEATURE,
103
 
                               GRUB_USB_FEATURE_ENDP_HALT,
104
 
                               endpoint, 0, 0);
105
 
}
106
 
 
107
 
grub_usb_err_t
108
 
grub_usb_set_configuration (grub_usb_device_t dev, int configuration)
109
 
{
110
 
  grub_memset (dev->toggle, 0, sizeof (dev->toggle));
111
 
 
112
 
  return grub_usb_control_msg (dev, (GRUB_USB_REQTYPE_OUT
113
 
                                     | GRUB_USB_REQTYPE_STANDARD
114
 
                                     | GRUB_USB_REQTYPE_TARGET_DEV),
115
 
                               GRUB_USB_REQ_SET_CONFIGURATION, configuration,
116
 
                               0, 0, NULL);
117
 
}
118
 
 
119
 
grub_usb_err_t
120
 
grub_usb_get_descriptor (grub_usb_device_t dev,
121
 
                         grub_uint8_t type, grub_uint8_t index,
122
 
                         grub_size_t size, char *data)
123
 
{
124
 
  return grub_usb_control_msg (dev, (GRUB_USB_REQTYPE_IN
125
 
                                     | GRUB_USB_REQTYPE_STANDARD
126
 
                                     | GRUB_USB_REQTYPE_TARGET_DEV),
127
 
                               GRUB_USB_REQ_GET_DESCRIPTOR,
128
 
                               (type << 8) | index,
129
 
                               0, size, data);
130
 
}
131
 
 
132
 
struct grub_usb_desc_endp *
133
 
grub_usb_get_endpdescriptor (grub_usb_device_t usbdev, int addr)
134
 
{
135
 
  int i;
136
 
 
137
 
  for (i = 0; i < usbdev->config[0].descconf->numif; i++)
138
 
    {
139
 
      struct grub_usb_desc_if *interf;
140
 
      int j;
141
 
 
142
 
      interf = usbdev->config[0].interf[i].descif;
143
 
 
144
 
      for (j = 0; j < interf->endpointcnt; j++)
145
 
        {
146
 
          struct grub_usb_desc_endp *endp;
147
 
          endp = &usbdev->config[0].interf[i].descendp[j];
148
 
 
149
 
          if (endp->endp_addr == addr)
150
 
            return endp;
151
 
        }
152
 
    }
153
 
 
154
 
  return NULL;
155
 
}
156
 
 
157
 
grub_usb_err_t
158
 
grub_usb_device_initialize (grub_usb_device_t dev)
159
 
{
160
 
  struct grub_usb_desc_device *descdev;
161
 
  struct grub_usb_desc_config config;
162
 
  grub_usb_err_t err;
163
 
  int i;
164
 
 
165
 
  /* First we have to read first 8 bytes only and determine
166
 
   * max. size of packet */
167
 
  dev->descdev.maxsize0 = 0; /* invalidating, for safety only, can be removed if it is sure it is zero here */
168
 
  err = grub_usb_get_descriptor (dev, GRUB_USB_DESCRIPTOR_DEVICE,
169
 
                                 0, 8, (char *) &dev->descdev);
170
 
  if (err)
171
 
    return err;
172
 
 
173
 
  /* Now we have valid value in dev->descdev.maxsize0,
174
 
   * so we can read whole device descriptor */
175
 
  err = grub_usb_get_descriptor (dev, GRUB_USB_DESCRIPTOR_DEVICE,
176
 
                                 0, sizeof (struct grub_usb_desc_device),
177
 
                                 (char *) &dev->descdev);
178
 
  if (err)
179
 
    return err;
180
 
  descdev = &dev->descdev;
181
 
 
182
 
  for (i = 0; i < 8; i++)
183
 
    dev->config[i].descconf = NULL;
184
 
 
185
 
  for (i = 0; i < descdev->configcnt; i++)
186
 
    {
187
 
      int pos;
188
 
      int currif;
189
 
      char *data;
190
 
 
191
 
      /* First just read the first 4 bytes of the configuration
192
 
         descriptor, after that it is known how many bytes really have
193
 
         to be read.  */
194
 
      err = grub_usb_get_descriptor (dev, GRUB_USB_DESCRIPTOR_CONFIG, i, 4,
195
 
                                     (char *) &config);
196
 
 
197
 
      data = grub_malloc (config.totallen);
198
 
      if (! data)
199
 
        {
200
 
          err = GRUB_USB_ERR_INTERNAL;
201
 
          goto fail;
202
 
        }
203
 
 
204
 
      dev->config[i].descconf = (struct grub_usb_desc_config *) data;
205
 
      err = grub_usb_get_descriptor (dev, GRUB_USB_DESCRIPTOR_CONFIG, i,
206
 
                                     config.totallen, data);
207
 
      if (err)
208
 
        goto fail;
209
 
 
210
 
      /* Skip the configuration descriptor.  */
211
 
      pos = sizeof (struct grub_usb_desc_config);
212
 
 
213
 
      /* Read all interfaces.  */
214
 
      for (currif = 0; currif < dev->config[i].descconf->numif; currif++)
215
 
        {
216
 
          dev->config[i].interf[currif].descif
217
 
            = (struct grub_usb_desc_if *) &data[pos];
218
 
          pos += sizeof (struct grub_usb_desc_if);
219
 
 
220
 
          /* Point to the first endpoint.  */
221
 
          dev->config[i].interf[currif].descendp
222
 
            = (struct grub_usb_desc_endp *) &data[pos];
223
 
          pos += (sizeof (struct grub_usb_desc_endp)
224
 
                  * dev->config[i].interf[currif].descif->endpointcnt);
225
 
        }
226
 
    }
227
 
 
228
 
  return GRUB_USB_ERR_NONE;
229
 
 
230
 
 fail:
231
 
 
232
 
  for (i = 0; i < 8; i++)
233
 
    grub_free (dev->config[i].descconf);
234
 
 
235
 
  return err;
236
 
}
237
 
 
238
 
void grub_usb_device_attach (grub_usb_device_t dev)
239
 
{
240
 
  int i;
241
 
  
242
 
  /* XXX: Just check configuration 0 for now.  */
243
 
  for (i = 0; i < dev->config[0].descconf->numif; i++)
244
 
    {
245
 
      struct grub_usb_desc_if *interf;
246
 
      struct grub_usb_attach_desc *desc;
247
 
 
248
 
      interf = dev->config[0].interf[i].descif;
249
 
 
250
 
      grub_dprintf ("usb", "iterate: interf=%d, class=%d, subclass=%d, protocol=%d\n",
251
 
                    i, interf->class, interf->subclass, interf->protocol);
252
 
 
253
 
      if (dev->config[0].interf[i].attached)
254
 
        continue;
255
 
 
256
 
      for (desc = attach_hooks; desc; desc = desc->next)
257
 
        if (interf->class == desc->class && desc->hook (dev, 0, i))
258
 
          dev->config[0].interf[i].attached = 1;
259
 
    }
260
 
}
261
 
 
262
 
void
263
 
grub_usb_register_attach_hook_class (struct grub_usb_attach_desc *desc)
264
 
{
265
 
  auto int usb_iterate (grub_usb_device_t dev);
266
 
 
267
 
  int usb_iterate (grub_usb_device_t usbdev)
268
 
    {
269
 
      struct grub_usb_desc_device *descdev = &usbdev->descdev;
270
 
      int i;
271
 
 
272
 
      if (descdev->class != 0 || descdev->subclass || descdev->protocol != 0
273
 
          || descdev->configcnt == 0)
274
 
        return 0;
275
 
 
276
 
      /* XXX: Just check configuration 0 for now.  */
277
 
      for (i = 0; i < usbdev->config[0].descconf->numif; i++)
278
 
        {
279
 
          struct grub_usb_desc_if *interf;
280
 
 
281
 
          interf = usbdev->config[0].interf[i].descif;
282
 
 
283
 
          grub_dprintf ("usb", "iterate: interf=%d, class=%d, subclass=%d, protocol=%d\n",
284
 
                        i, interf->class, interf->subclass, interf->protocol);
285
 
 
286
 
          if (usbdev->config[0].interf[i].attached)
287
 
            continue;
288
 
 
289
 
          if (interf->class != desc->class)
290
 
            continue;
291
 
          if (desc->hook (usbdev, 0, i))
292
 
            usbdev->config[0].interf[i].attached = 1;
293
 
        }
294
 
 
295
 
      return 0;
296
 
    }
297
 
 
298
 
  desc->next = attach_hooks;
299
 
  attach_hooks = desc;
300
 
 
301
 
  grub_usb_iterate (usb_iterate);
302
 
}
303
 
 
304
 
void
305
 
grub_usb_unregister_attach_hook_class (struct grub_usb_attach_desc *desc)
306
 
{
307
 
  grub_list_remove (GRUB_AS_LIST_P (&attach_hooks), GRUB_AS_LIST (desc));  
308
 
}