USB Host Shield 2.0
BTD.h
Go to the documentation of this file.
1 /* Copyright (C) 2012 Kristian Lauszus, TKJ Electronics. All rights reserved.
2 
3  This software may be distributed and modified under the terms of the GNU
4  General Public License version 2 (GPL2) as published by the Free Software
5  Foundation and appearing in the file GPL2.TXT included in the packaging of
6  this file. Please note that GPL2 Section 2[b] requires that all works based
7  on this software must also be made publicly available under the terms of
8  the GPL2 ("Copyleft").
9 
10  Contact information
11  -------------------
12 
13  Kristian Lauszus, TKJ Electronics
14  Web : http://www.tkjelectronics.com
15  e-mail : kristianl@tkjelectronics.com
16  */
17 
18 #ifndef _btd_h_
19 #define _btd_h_
20 
21 #include "Usb.h"
22 #include "usbhid.h"
23 
24 //PID and VID of the Sony PS3 devices
25 #define PS3_VID 0x054C // Sony Corporation
26 #define PS3_PID 0x0268 // PS3 Controller DualShock 3
27 #define PS3NAVIGATION_PID 0x042F // Navigation controller
28 #define PS3MOVE_PID 0x03D5 // Motion controller
29 
30 #define IOGEAR_GBU521_VID 0x0A5C // The IOGEAR GBU521 dongle does not presents itself correctly, so we have to check for it manually
31 #define IOGEAR_GBU521_PID 0x21E8
32 
33 /* Bluetooth dongle data taken from descriptors */
34 #define BULK_MAXPKTSIZE 64 // Max size for ACL data
35 
36 // Used in control endpoint header for HCI Commands
37 #define bmREQ_HCI_OUT USB_SETUP_HOST_TO_DEVICE|USB_SETUP_TYPE_CLASS|USB_SETUP_RECIPIENT_DEVICE
38 
39 /* Bluetooth HCI states for hci_task() */
40 #define HCI_INIT_STATE 0
41 #define HCI_RESET_STATE 1
42 #define HCI_CLASS_STATE 2
43 #define HCI_BDADDR_STATE 3
44 #define HCI_LOCAL_VERSION_STATE 4
45 #define HCI_SET_NAME_STATE 5
46 #define HCI_CHECK_DEVICE_SERVICE 6
47 
48 #define HCI_INQUIRY_STATE 7 // These three states are only used if it should pair and connect to a device
49 #define HCI_CONNECT_DEVICE_STATE 8
50 #define HCI_CONNECTED_DEVICE_STATE 9
51 
52 #define HCI_SCANNING_STATE 10
53 #define HCI_CONNECT_IN_STATE 11
54 #define HCI_REMOTE_NAME_STATE 12
55 #define HCI_CONNECTED_STATE 13
56 #define HCI_DISABLE_SCAN_STATE 14
57 #define HCI_DONE_STATE 15
58 #define HCI_DISCONNECT_STATE 16
59 
60 /* HCI event flags*/
61 #define HCI_FLAG_CMD_COMPLETE (1UL << 0)
62 #define HCI_FLAG_CONNECT_COMPLETE (1UL << 1)
63 #define HCI_FLAG_DISCONNECT_COMPLETE (1UL << 2)
64 #define HCI_FLAG_REMOTE_NAME_COMPLETE (1UL << 3)
65 #define HCI_FLAG_INCOMING_REQUEST (1UL << 4)
66 #define HCI_FLAG_READ_BDADDR (1UL << 5)
67 #define HCI_FLAG_READ_VERSION (1UL << 6)
68 #define HCI_FLAG_DEVICE_FOUND (1UL << 7)
69 #define HCI_FLAG_CONNECT_EVENT (1UL << 8)
70 
71 /* Macros for HCI event flag tests */
72 #define hci_check_flag(flag) (hci_event_flag & (flag))
73 #define hci_set_flag(flag) (hci_event_flag |= (flag))
74 #define hci_clear_flag(flag) (hci_event_flag &= ~(flag))
75 
76 /* HCI Events managed */
77 #define EV_INQUIRY_COMPLETE 0x01
78 #define EV_INQUIRY_RESULT 0x02
79 #define EV_CONNECT_COMPLETE 0x03
80 #define EV_INCOMING_CONNECT 0x04
81 #define EV_DISCONNECT_COMPLETE 0x05
82 #define EV_AUTHENTICATION_COMPLETE 0x06
83 #define EV_REMOTE_NAME_COMPLETE 0x07
84 #define EV_ENCRYPTION_CHANGE 0x08
85 #define EV_CHANGE_CONNECTION_LINK 0x09
86 #define EV_ROLE_CHANGED 0x12
87 #define EV_NUM_COMPLETE_PKT 0x13
88 #define EV_PIN_CODE_REQUEST 0x16
89 #define EV_LINK_KEY_REQUEST 0x17
90 #define EV_LINK_KEY_NOTIFICATION 0x18
91 #define EV_DATA_BUFFER_OVERFLOW 0x1A
92 #define EV_MAX_SLOTS_CHANGE 0x1B
93 #define EV_READ_REMOTE_VERSION_INFORMATION_COMPLETE 0x0C
94 #define EV_QOS_SETUP_COMPLETE 0x0D
95 #define EV_COMMAND_COMPLETE 0x0E
96 #define EV_COMMAND_STATUS 0x0F
97 #define EV_LOOPBACK_COMMAND 0x19
98 #define EV_PAGE_SCAN_REP_MODE 0x20
99 
100 /* Bluetooth states for the different Bluetooth drivers */
101 #define L2CAP_WAIT 0
102 #define L2CAP_DONE 1
103 
104 /* Used for HID Control channel */
105 #define L2CAP_CONTROL_CONNECT_REQUEST 2
106 #define L2CAP_CONTROL_CONFIG_REQUEST 3
107 #define L2CAP_CONTROL_SUCCESS 4
108 #define L2CAP_CONTROL_DISCONNECT 5
109 
110 /* Used for HID Interrupt channel */
111 #define L2CAP_INTERRUPT_SETUP 6
112 #define L2CAP_INTERRUPT_CONNECT_REQUEST 7
113 #define L2CAP_INTERRUPT_CONFIG_REQUEST 8
114 #define L2CAP_INTERRUPT_DISCONNECT 9
115 
116 /* Used for SDP channel */
117 #define L2CAP_SDP_WAIT 10
118 #define L2CAP_SDP_SUCCESS 11
119 
120 /* Used for RFCOMM channel */
121 #define L2CAP_RFCOMM_WAIT 12
122 #define L2CAP_RFCOMM_SUCCESS 13
123 
124 #define L2CAP_DISCONNECT_RESPONSE 14 // Used for both SDP and RFCOMM channel
125 
126 /* Bluetooth states used by some drivers */
127 #define TURN_ON_LED 17
128 #define PS3_ENABLE_SIXAXIS 18
129 #define WII_CHECK_MOTION_PLUS_STATE 19
130 #define WII_CHECK_EXTENSION_STATE 20
131 #define WII_INIT_MOTION_PLUS_STATE 21
132 
133 /* L2CAP event flags for HID Control channel */
134 #define L2CAP_FLAG_CONNECTION_CONTROL_REQUEST (1UL << 0)
135 #define L2CAP_FLAG_CONFIG_CONTROL_SUCCESS (1UL << 1)
136 #define L2CAP_FLAG_CONTROL_CONNECTED (1UL << 2)
137 #define L2CAP_FLAG_DISCONNECT_CONTROL_RESPONSE (1UL << 3)
138 
139 /* L2CAP event flags for HID Interrupt channel */
140 #define L2CAP_FLAG_CONNECTION_INTERRUPT_REQUEST (1UL << 4)
141 #define L2CAP_FLAG_CONFIG_INTERRUPT_SUCCESS (1UL << 5)
142 #define L2CAP_FLAG_INTERRUPT_CONNECTED (1UL << 6)
143 #define L2CAP_FLAG_DISCONNECT_INTERRUPT_RESPONSE (1UL << 7)
144 
145 /* L2CAP event flags for SDP channel */
146 #define L2CAP_FLAG_CONNECTION_SDP_REQUEST (1UL << 8)
147 #define L2CAP_FLAG_CONFIG_SDP_SUCCESS (1UL << 9)
148 #define L2CAP_FLAG_DISCONNECT_SDP_REQUEST (1UL << 10)
149 
150 /* L2CAP event flags for RFCOMM channel */
151 #define L2CAP_FLAG_CONNECTION_RFCOMM_REQUEST (1UL << 11)
152 #define L2CAP_FLAG_CONFIG_RFCOMM_SUCCESS (1UL << 12)
153 #define L2CAP_FLAG_DISCONNECT_RFCOMM_REQUEST (1UL << 13)
154 
155 #define L2CAP_FLAG_DISCONNECT_RESPONSE (1UL << 14)
156 
157 /* Macros for L2CAP event flag tests */
158 #define l2cap_check_flag(flag) (l2cap_event_flag & (flag))
159 #define l2cap_set_flag(flag) (l2cap_event_flag |= (flag))
160 #define l2cap_clear_flag(flag) (l2cap_event_flag &= ~(flag))
161 
162 /* L2CAP signaling commands */
163 #define L2CAP_CMD_COMMAND_REJECT 0x01
164 #define L2CAP_CMD_CONNECTION_REQUEST 0x02
165 #define L2CAP_CMD_CONNECTION_RESPONSE 0x03
166 #define L2CAP_CMD_CONFIG_REQUEST 0x04
167 #define L2CAP_CMD_CONFIG_RESPONSE 0x05
168 #define L2CAP_CMD_DISCONNECT_REQUEST 0x06
169 #define L2CAP_CMD_DISCONNECT_RESPONSE 0x07
170 #define L2CAP_CMD_INFORMATION_REQUEST 0x0A
171 #define L2CAP_CMD_INFORMATION_RESPONSE 0x0B
172 
173 // Used For Connection Response - Remember to Include High Byte
174 #define PENDING 0x01
175 #define SUCCESSFUL 0x00
176 
177 /* Bluetooth L2CAP PSM - see http://www.bluetooth.org/Technical/AssignedNumbers/logical_link.htm */
178 #define SDP_PSM 0x01 // Service Discovery Protocol PSM Value
179 #define RFCOMM_PSM 0x03 // RFCOMM PSM Value
180 #define HID_CTRL_PSM 0x11 // HID_Control PSM Value
181 #define HID_INTR_PSM 0x13 // HID_Interrupt PSM Value
182 
183 // Used to determine if it is a Bluetooth dongle
184 #define WI_SUBCLASS_RF 0x01 // RF Controller
185 #define WI_PROTOCOL_BT 0x01 // Bluetooth Programming Interface
186 
187 #define BTD_MAX_ENDPOINTS 4
188 #define BTD_NUM_SERVICES 4 // Max number of Bluetooth services - if you need more than 4 simply increase this number
189 
190 #define PAIR 1
191 
192 class BluetoothService;
193 
198 class BTD : public USBDeviceConfig, public UsbConfigXtracter {
199 public:
204  BTD(USB *p);
205 
214  uint8_t ConfigureDevice(uint8_t parent, uint8_t port, bool lowspeed);
222  uint8_t Init(uint8_t parent, uint8_t port, bool lowspeed);
227  uint8_t Release();
232  uint8_t Poll();
233 
238  virtual uint8_t GetAddress() {
239  return bAddress;
240  };
241 
246  virtual bool isReady() {
247  return bPollEnable;
248  };
249 
255  virtual bool DEVCLASSOK(uint8_t klass) {
256  return (klass == USB_CLASS_WIRELESS_CTRL);
257  };
258 
266  virtual bool VIDPIDOK(uint16_t vid, uint16_t pid) {
267  if(vid == IOGEAR_GBU521_VID && pid == IOGEAR_GBU521_PID)
268  return true;
269  if(my_bdaddr[0] != 0x00 || my_bdaddr[1] != 0x00 || my_bdaddr[2] != 0x00 || my_bdaddr[3] != 0x00 || my_bdaddr[4] != 0x00 || my_bdaddr[5] != 0x00) { // Check if Bluetooth address is set
270  if(vid == PS3_VID && (pid == PS3_PID || pid == PS3NAVIGATION_PID || pid == PS3MOVE_PID))
271  return true;
272  }
273  return false;
274  };
286  void EndpointXtract(uint8_t conf, uint8_t iface, uint8_t alt, uint8_t proto, const USB_ENDPOINT_DESCRIPTOR *ep);
290  void disconnect();
291 
298  for(uint8_t i = 0; i < BTD_NUM_SERVICES; i++) {
299  if(!btService[i]) {
300  btService[i] = pService;
301  return i; // Return ID
302  }
303  }
304  return -1; // Error registering BluetoothService
305  };
306 
313  void HCI_Command(uint8_t* data, uint16_t nbytes);
315  void hci_reset();
317  void hci_read_bdaddr();
324  void hci_set_local_name(const char* name);
326  void hci_write_scan_enable();
328  void hci_write_scan_disable();
330  void hci_remote_name();
332  void hci_accept_connection();
337  void hci_disconnect(uint16_t handle);
354  void hci_inquiry();
356  void hci_inquiry_cancel();
358  void hci_connect();
363  void hci_connect(uint8_t *bdaddr);
377  void L2CAP_Command(uint16_t handle, uint8_t* data, uint8_t nbytes, uint8_t channelLow = 0x01, uint8_t channelHigh = 0x00);
385  void l2cap_connection_request(uint16_t handle, uint8_t rxid, uint8_t* scid, uint16_t psm);
394  void l2cap_connection_response(uint16_t handle, uint8_t rxid, uint8_t* dcid, uint8_t* scid, uint8_t result);
401  void l2cap_config_request(uint16_t handle, uint8_t rxid, uint8_t* dcid);
408  void l2cap_config_response(uint16_t handle, uint8_t rxid, uint8_t* scid);
416  void l2cap_disconnection_request(uint16_t handle, uint8_t rxid, uint8_t* dcid, uint8_t* scid);
424  void l2cap_disconnection_response(uint16_t handle, uint8_t rxid, uint8_t* dcid, uint8_t* scid);
431  void l2cap_information_response(uint16_t handle, uint8_t rxid, uint8_t infoTypeLow, uint8_t infoTypeHigh);
442 
444  const char* btdName;
446  const char* btdPin;
447 
449  uint8_t my_bdaddr[6];
451  uint16_t hci_handle;
453  uint8_t disc_bdaddr[6];
455  char remote_name[30];
461  uint8_t hci_version;
462 
465  pairWithWii = true;
466  hci_state = HCI_CHECK_DEVICE_SERVICE;
467  };
469  bool connectToWii;
478 
480  void pairWithHID() {
481  pairWithHIDDevice = true;
482  hci_state = HCI_CHECK_DEVICE_SERVICE;
483  };
485  bool connectToHIDDevice;
490 
495  uint8_t readPollInterval() {
496  return pollInterval;
497  };
498 
499 protected:
501  USB *pUsb;
503  uint8_t bAddress;
506 
508  uint8_t bConfNum;
510  uint8_t bNumEP;
512  uint32_t qNextPollTime;
513 
515  static const uint8_t BTD_CONTROL_PIPE;
517  static const uint8_t BTD_EVENT_PIPE;
519  static const uint8_t BTD_DATAIN_PIPE;
521  static const uint8_t BTD_DATAOUT_PIPE;
522 
528 
529 private:
530  void Initialize(); // Set all variables, endpoint structs etc. to default values
532 
533  uint16_t PID, VID; // PID and VID of device connected
534 
535  uint8_t pollInterval;
536  bool bPollEnable;
537 
538  bool pairWiiUsingSync; // True if pairing was done using the Wii SYNC button.
539  bool checkRemoteName; // Used to check remote device's name before connecting.
540  bool incomingPS4; // True if a PS4 controller is connecting
541  uint8_t classOfDevice[3]; // Class of device of last device
542 
543  /* Variables used by high level HCI task */
544  uint8_t hci_state; // Current state of Bluetooth HCI connection
545  uint16_t hci_counter; // Counter used for Bluetooth HCI reset loops
546  uint16_t hci_num_reset_loops; // This value indicate how many times it should read before trying to reset
547  uint16_t hci_event_flag; // HCI flags of received Bluetooth events
548  uint8_t inquiry_counter;
549 
550  uint8_t hcibuf[BULK_MAXPKTSIZE]; // General purpose buffer for HCI data
551  uint8_t l2capinbuf[BULK_MAXPKTSIZE]; // General purpose buffer for L2CAP in data
552  uint8_t l2capoutbuf[14]; // General purpose buffer for L2CAP out data
553 
554  /* State machines */
555  void HCI_event_task(); // Poll the HCI event pipe
556  void HCI_task(); // HCI state machine
557  void ACL_event_task(); // ACL input pipe
558 
559  /* Used to set the Bluetooth Address internally to the PS3 Controllers */
560  void setBdaddr(uint8_t* BDADDR);
561  void setMoveBdaddr(uint8_t* BDADDR);
562 };
563 
566 public:
567  BluetoothService(BTD *p) : pBtd(p) {
568  if(pBtd)
569  pBtd->registerBluetoothService(this); // Register it as a Bluetooth service
570  };
575  virtual void ACLData(uint8_t* ACLData) = 0;
577  virtual void Run() = 0;
579  virtual void Reset() = 0;
581  virtual void disconnect() = 0;
582 
587  void attachOnInit(void (*funcOnInit)(void)) {
588  pFuncOnInit = funcOnInit; // TODO: This really belong in a class of it's own as it is repeated several times
589  };
590 
591 protected:
597  virtual void onInit() = 0;
598 
600  bool checkHciHandle(uint8_t *buf, uint16_t handle) {
601  return (buf[0] == (handle & 0xFF)) && (buf[1] == ((handle >> 8) | 0x20));
602  }
603 
605  void (*pFuncOnInit)(void);
606 
609 
611  uint16_t hci_handle;
612 
615 
617  uint8_t identifier;
618 };
619 
620 #endif
static const uint8_t BTD_DATAOUT_PIPE
Definition: BTD.h:521
bool incomingWii
Definition: BTD.h:471
void hci_connect()
Definition: BTD.cpp:1073
uint8_t bNumEP
Definition: BTD.h:510
const char * btdName
Definition: BTD.h:444
void hci_reset()
Definition: BTD.cpp:955
void l2cap_connection_response(uint16_t handle, uint8_t rxid, uint8_t *dcid, uint8_t *scid, uint8_t result)
Definition: BTD.cpp:1262
void l2cap_connection_request(uint16_t handle, uint8_t rxid, uint8_t *scid, uint16_t psm)
Definition: BTD.cpp:1249
bool sdpConnectionClaimed
Definition: BTD.h:439
Definition: BTD.h:198
int8_t registerBluetoothService(BluetoothService *pService)
Definition: BTD.h:297
void l2cap_disconnection_request(uint16_t handle, uint8_t rxid, uint8_t *dcid, uint8_t *scid)
Definition: BTD.cpp:1315
bool rfcommConnectionClaimed
Definition: BTD.h:441
uint8_t hci_version
Definition: BTD.h:461
void hci_inquiry()
Definition: BTD.cpp:1051
static const uint8_t BTD_EVENT_PIPE
Definition: BTD.h:517
#define PS3MOVE_PID
Definition: BTD.h:28
bool pairWithWii
Definition: BTD.h:473
uint8_t identifier
Definition: BTD.h:617
void hci_write_scan_disable()
Definition: BTD.cpp:977
void EndpointXtract(uint8_t conf, uint8_t iface, uint8_t alt, uint8_t proto, const USB_ENDPOINT_DESCRIPTOR *ep)
Definition: BTD.cpp:327
virtual bool VIDPIDOK(uint16_t vid, uint16_t pid)
Definition: BTD.h:266
virtual uint8_t GetAddress()
Definition: BTD.h:238
#define BTD_NUM_SERVICES
Definition: BTD.h:188
const char * btdPin
Definition: BTD.h:446
bool motionPlusInside
Definition: BTD.h:475
void hci_remote_name()
Definition: BTD.cpp:1020
#define PS3_VID
Definition: BTD.h:25
BTD(USB *p)
Definition: BTD.cpp:27
char remote_name[30]
Definition: BTD.h:455
uint8_t readPollInterval()
Definition: BTD.h:495
static const uint8_t BTD_DATAIN_PIPE
Definition: BTD.h:519
void hci_set_local_name(const char *name)
Definition: BTD.cpp:1039
void hci_write_scan_enable()
Definition: BTD.cpp:964
uint8_t Release()
Definition: BTD.cpp:378
void l2cap_disconnection_response(uint16_t handle, uint8_t rxid, uint8_t *dcid, uint8_t *scid)
Definition: BTD.cpp:1328
#define USB_CLASS_WIRELESS_CTRL
Definition: UsbCore.h:71
bool watingForConnection
Definition: BTD.h:435
bool connectToHIDDevice
Definition: BTD.h:483
uint8_t bAddress
Definition: BTD.h:503
bool incomingHIDDevice
Definition: BTD.h:487
bool pairWithHIDDevice
Definition: BTD.h:489
uint32_t qNextPollTime
Definition: BTD.h:512
void PrintEndpointDescriptor(const USB_ENDPOINT_DESCRIPTOR *ep_ptr)
Definition: BTD.cpp:359
#define IOGEAR_GBU521_PID
Definition: BTD.h:31
bool connectToWii
Definition: BTD.h:467
uint8_t ConfigureDevice(uint8_t parent, uint8_t port, bool lowspeed)
Definition: BTD.cpp:48
bool wiiUProController
Definition: BTD.h:477
uint16_t hci_handle
Definition: BTD.h:451
uint8_t Init(uint8_t parent, uint8_t port, bool lowspeed)
Definition: BTD.cpp:134
Definition: address.h:32
void pairWithHID()
Definition: BTD.h:480
void hci_disconnect(uint16_t handle)
Definition: BTD.cpp:1173
void hci_read_bdaddr()
Definition: BTD.cpp:986
void hci_inquiry_cancel()
Definition: BTD.cpp:1065
uint8_t my_bdaddr[6]
Definition: BTD.h:449
void attachOnInit(void(*funcOnInit)(void))
Definition: BTD.h:587
uint8_t Poll()
Definition: BTD.cpp:384
static const uint8_t BTD_CONTROL_PIPE
Definition: BTD.h:515
BTD * pBtd
Definition: BTD.h:608
#define BULK_MAXPKTSIZE
Definition: BTD.h:34
void disconnect()
Definition: BTD.cpp:396
uint8_t disc_bdaddr[6]
Definition: BTD.h:453
bool l2capConnectionClaimed
Definition: BTD.h:437
EpInfo epInfo[BTD_MAX_ENDPOINTS]
Definition: BTD.h:505
#define IOGEAR_GBU521_VID
Definition: BTD.h:30
#define PS3_PID
Definition: BTD.h:26
#define BTD_MAX_ENDPOINTS
Definition: BTD.h:187
#define PS3NAVIGATION_PID
Definition: BTD.h:27
void l2cap_information_response(uint16_t handle, uint8_t rxid, uint8_t infoTypeLow, uint8_t infoTypeHigh)
Definition: BTD.cpp:1341
BluetoothService(BTD *p)
Definition: BTD.h:567
void hci_write_class_of_device()
Definition: BTD.cpp:1185
uint16_t hci_handle
Definition: BTD.h:611
void hci_pin_code_negative_request_reply()
Definition: BTD.cpp:1135
virtual bool DEVCLASSOK(uint8_t klass)
Definition: BTD.h:255
uint32_t l2cap_event_flag
Definition: BTD.h:614
#define HCI_CHECK_DEVICE_SERVICE
Definition: BTD.h:46
Definition: UsbCore.h:197
uint8_t bConfNum
Definition: BTD.h:508
void hci_link_key_request_negative_reply()
Definition: BTD.cpp:1149
void pairWithWiimote()
Definition: BTD.h:464
virtual bool isReady()
Definition: BTD.h:246
void L2CAP_Command(uint16_t handle, uint8_t *data, uint8_t nbytes, uint8_t channelLow=0x01, uint8_t channelHigh=0x00)
Definition: BTD.cpp:1221
void l2cap_config_response(uint16_t handle, uint8_t rxid, uint8_t *scid)
Definition: BTD.cpp:1296
void l2cap_config_request(uint16_t handle, uint8_t rxid, uint8_t *dcid)
Definition: BTD.cpp:1279
void hci_pin_code_request_reply()
Definition: BTD.cpp:1099
USB * pUsb
Definition: BTD.h:497
void hci_authentication_request()
Definition: BTD.cpp:1163
void hci_read_local_version_information()
Definition: BTD.cpp:995
void hci_accept_connection()
Definition: BTD.cpp:1004
bool checkHciHandle(uint8_t *buf, uint16_t handle)
Definition: BTD.h:600
void HCI_Command(uint8_t *data, uint16_t nbytes)
Definition: BTD.cpp:950