usbtrans.h 4.25 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 *  GRUB  --  GRand Unified Bootloader
 *  Copyright (C) 2008  Free Software Foundation, Inc.
 *
 *  GRUB is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  GRUB is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef	GRUB_USBTRANS_H
#define	GRUB_USBTRANS_H	1

22 23
#define MAX_USB_TRANSFER_LEN 0x0800

24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
typedef enum
  {
    GRUB_USB_TRANSFER_TYPE_IN,
    GRUB_USB_TRANSFER_TYPE_OUT,
    GRUB_USB_TRANSFER_TYPE_SETUP
  } grub_transfer_type_t;

typedef enum
  {
    GRUB_USB_TRANSACTION_TYPE_CONTROL,
    GRUB_USB_TRANSACTION_TYPE_BULK
  } grub_transaction_type_t;

struct grub_usb_transaction
{
  int size;
  int toggle;
  grub_transfer_type_t pid;
42
  grub_uint32_t data;
43
  grub_size_t preceding;
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
};
typedef struct grub_usb_transaction *grub_usb_transaction_t;

struct grub_usb_transfer
{
  int devaddr;

  int endpoint;

  int size;

  int transcnt;

  int max;

  grub_transaction_type_t type;

61 62
  grub_transfer_type_t dir;

63 64 65
  struct grub_usb_device *dev;

  struct grub_usb_transaction *transactions;
66 67 68
  
  int last_trans;
  /* Index of last processed transaction in OHCI/UHCI driver. */
69 70

  void *controller_data;
71 72 73 74

  /* Used when finishing transfer to copy data back.  */
  struct grub_pci_dma_chunk *data_chunk;
  void *data;
75 76 77 78
};
typedef struct grub_usb_transfer *grub_usb_transfer_t;


79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97

enum
  {
    GRUB_USB_REQTYPE_TARGET_DEV = (0 << 0),
    GRUB_USB_REQTYPE_TARGET_INTERF = (1 << 0),
    GRUB_USB_REQTYPE_TARGET_ENDP = (2 << 0),
    GRUB_USB_REQTYPE_TARGET_OTHER = (3 << 0),
    GRUB_USB_REQTYPE_STANDARD = (0 << 5),
    GRUB_USB_REQTYPE_CLASS = (1 << 5),
    GRUB_USB_REQTYPE_VENDOR = (2 << 5),
    GRUB_USB_REQTYPE_OUT = (0 << 7),
    GRUB_USB_REQTYPE_IN	= (1 << 7),
    GRUB_USB_REQTYPE_CLASS_INTERFACE_OUT = GRUB_USB_REQTYPE_TARGET_INTERF
    | GRUB_USB_REQTYPE_CLASS | GRUB_USB_REQTYPE_OUT,
    GRUB_USB_REQTYPE_VENDOR_OUT = GRUB_USB_REQTYPE_VENDOR | GRUB_USB_REQTYPE_OUT,
    GRUB_USB_REQTYPE_CLASS_INTERFACE_IN = GRUB_USB_REQTYPE_TARGET_INTERF
    | GRUB_USB_REQTYPE_CLASS | GRUB_USB_REQTYPE_IN,
    GRUB_USB_REQTYPE_VENDOR_IN = GRUB_USB_REQTYPE_VENDOR | GRUB_USB_REQTYPE_IN
  };
98

99 100 101 102 103 104 105 106 107 108 109 110 111 112
enum
  {
    GRUB_USB_REQ_GET_STATUS = 0x00,
    GRUB_USB_REQ_CLEAR_FEATURE = 0x01,
    GRUB_USB_REQ_SET_FEATURE = 0x03,
    GRUB_USB_REQ_SET_ADDRESS = 0x05,
    GRUB_USB_REQ_GET_DESCRIPTOR = 0x06,
    GRUB_USB_REQ_SET_DESCRIPTOR	= 0x07,
    GRUB_USB_REQ_GET_CONFIGURATION = 0x08,
    GRUB_USB_REQ_SET_CONFIGURATION = 0x09,
    GRUB_USB_REQ_GET_INTERFACE = 0x0A,
    GRUB_USB_REQ_SET_INTERFACE = 0x0B,
    GRUB_USB_REQ_SYNC_FRAME = 0x0C
  };
113

114 115 116
#define GRUB_USB_FEATURE_ENDP_HALT	0x00
#define GRUB_USB_FEATURE_DEV_REMOTE_WU	0x01
#define GRUB_USB_FEATURE_TEST_MODE	0x02
117

118 119 120 121 122 123 124 125 126 127
enum
  {
    GRUB_USB_HUB_FEATURE_PORT_RESET = 0x04,
    GRUB_USB_HUB_FEATURE_PORT_POWER = 0x08,
    GRUB_USB_HUB_FEATURE_C_PORT_CONNECTED = 0x10,
    GRUB_USB_HUB_FEATURE_C_PORT_ENABLED = 0x11,
    GRUB_USB_HUB_FEATURE_C_PORT_SUSPEND = 0x12,
    GRUB_USB_HUB_FEATURE_C_PORT_OVERCURRENT = 0x13,
    GRUB_USB_HUB_FEATURE_C_PORT_RESET = 0x14
  };
128

129 130 131 132 133 134
enum
  {
    GRUB_USB_HUB_STATUS_PORT_CONNECTED = (1 << 0),
    GRUB_USB_HUB_STATUS_PORT_ENABLED = (1 << 1),
    GRUB_USB_HUB_STATUS_PORT_SUSPEND = (1 << 2),
    GRUB_USB_HUB_STATUS_PORT_OVERCURRENT = (1 << 3),
135
    GRUB_USB_HUB_STATUS_PORT_POWERED = (1 << 8),
136 137 138 139 140 141 142 143
    GRUB_USB_HUB_STATUS_PORT_LOWSPEED = (1 << 9),
    GRUB_USB_HUB_STATUS_PORT_HIGHSPEED = (1 << 10),
    GRUB_USB_HUB_STATUS_C_PORT_CONNECTED = (1 << 16),
    GRUB_USB_HUB_STATUS_C_PORT_ENABLED = (1 << 17),
    GRUB_USB_HUB_STATUS_C_PORT_SUSPEND = (1 << 18),
    GRUB_USB_HUB_STATUS_C_PORT_OVERCURRENT = (1 << 19),
    GRUB_USB_HUB_STATUS_C_PORT_RESET = (1 << 20)
  };
144 145 146 147 148 149 150 151

struct grub_usb_packet_setup
{
  grub_uint8_t reqtype;
  grub_uint8_t request;
  grub_uint16_t value;
  grub_uint16_t index;
  grub_uint16_t length;
152
} GRUB_PACKED;
153 154 155


#endif /* GRUB_USBTRANS_H */