avctp.h
20.6 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
/****************************************************************************
*
* File:
* $Workfile:avctp.h$ for XTNDAccess Blue SDK, Version 2.0
* $Revision:13$
*
* Description: This file contains public definitions for the Audio/Video
* Remote Control Transport Protocol (AVCTP).
*
* Created: Nov 19, 2003
*
* Copyright 2003 - 2005 Extended Systems, Inc. ALL RIGHTS RESERVED.
*
* Unpublished Confidential Information of Extended Systems, Inc.
* Do Not Disclose.
*
* No part of this work may be used or reproduced in any form or by any means,
* or stored in a database or retrieval system, without prior written
* permission of Extended Systems, Inc.
*
* Use of this work is governed by a license granted by Extended Systems, Inc.
* This work contains confidential and proprietary information of Extended
* Systems, Inc. which is protected by copyright, trade secret, trademark and
* other intellectual property rights.
*
****************************************************************************/
#ifndef __AVCTP_H_
#define __AVCTP_H_
#include "BtConfig.h"
#include "sys/avtp.h"
#include "sys/avctpcon.h"
#include "config.h"
#include "xatypes.h"
#include "utils.h"
#include "bttypes.h"
#include "me_adp.h"
/*---------------------------------------------------------------------------
* AVCTP API layer
*
* The Audio/Video Remote Control Transport Protocol (AVCTP) defines
* procedures for exchanging 1394 Trade Association AV/C commands between
* Bluetooth enabled Audio/Video devices.
*
* This API is designed to support AV remote control applications using
* the XTNDAccess Blue SDK core protocol stack. It provides an API
* for connection management and message handling.
*/
/****************************************************************************
*
* Constants
*
****************************************************************************/
#ifndef AVRCP_APP
#define AVRCP_APP XA_ENABLED
#endif
/*---------------------------------------------------------------------------
* AVCTP_RTX_TIMEOUT constant
* This response timeout value is used to terminate when the
* remote device becomes unresponsive. Default value is 10000ms.
*/
#ifndef AVCTP_RTX_TIMEOUT
#define AVCTP_RTX_TIMEOUT 10000
#endif
/* Message handler Transmit States */
#define AVCTP_MSG_TXSTATE_IDLE 0
#define AVCTP_MSG_TXSTATE_WAIT_RSP 1
/* Message handler Receive States */
#define AVCTP_MSG_RXSTATE_BEGIN 0
#define AVCTP_MSG_RXSTATE_CONTINUE 1
#define AVCTP_MSG_RXSTATE_IGNORE 2
/****************************************************************************
*
* Types
*
****************************************************************************/
/*---------------------------------------------------------------------------
* AvctpEvent type
*
*/
typedef U8 AvctpEvent;
/** The transport layer is connected and commands/responses can now
* be exchanged.
*
* During this callback, the 'p.remDev' parameter is valid.
*/
#define AVCTP_EVENT_CONNECT 1
/** A remote device is attempting to connect the transport layer.
* Only the acceptor of the connection is notified. The acceptor must
* call AVCTP_ConnectRsp() to either accept or reject the connection.
*
* During this callback, the 'p.remDev' parameter is valid.
*/
#define AVCTP_EVENT_CONNECT_IND 2
/** The transport layer been disconnected.
*
* During this callback, the 'p.remDev' parameter is valid.
*/
#define AVCTP_EVENT_DISCONNECT 3
/** A command was received from the remote AVCTP device (controller).
*
* During this callback, the 'p.cmdFrame' parameter is valid. It contains the
* the AVCTP command header information, including operands. If the "more"
* value is TRUE then this event only signals the first part of the operands.
* Subsequent AVCTP_EVENT_OPERANDS events will follow this event with
* additional operand data.
*/
#define AVCTP_EVENT_COMMAND 4
/** A response was received from the remote AVCTP device (target).
*
* During this callback, the 'p.rspFrame' parameter is valid. It contains the
* the AVCTP response header information, including operands. If the "more"
* value is TRUE then this event only signals the first part of the operands.
* Subsequent AVCTP_EVENT_OPERANDS events will follow this event with
* additional operand data.
*/
#define AVCTP_EVENT_RESPONSE 5
/** The remote device (target) rejected the AVCTP command.
*
* During this callback, the 'p.rspFrame' parameter is valid. It contains the
* the AVCTP reject header information, including operands. If the "more"
* value is TRUE then this event only signals the first part of the operands.
* Subsequent AVCTP_EVENT_OPERANDS events will follow this event with
* additional operand data.
*/
#define AVCTP_EVENT_REJECT 6
/** A command (see AVCTP_SendCommand) or response (see AVCTP_SendResponse)
* has been sent. Memory allocated for the operation can be freed or reused
* after receiving this event.
*
* During this callback, the 'p.cmdFrame' or 'p.rspFrame' parameter associated
* with the sent command or response is valid. In addition, "status" will be
* set to indicate "BT_STATUS_SUCCESS" or "BT_STATUS_FAILED" to indicate
* whether the event was properly delivered.
*/
#define AVCTP_EVENT_TX_DONE 7
/** Additional operand data has been received for the previous
* AVCTP_EVENT_COMMAND or AVCTP_EVENT_RESPONSE.
*
* During this callback, the 'p.cmdFrame' or 'p.rspFrame' parameter associated
* with the received command or response is valid. The "operands" and
* "operandLen" fields indicate the chunk of operands being received for
* the command or response. If the "more" field is set to TRUE, the full
* operand buffer will be received in multiple _OPERANDS events and the
* last operand buffer indicated with the "more" field set to FALSE.
*/
#define AVCTP_EVENT_OPERANDS 8
/* End of AvctpEvent */
#define AVCTP_EVENT_LAST 8
/*---------------------------------------------------------------------------
* AvctpChannelState type
*
* This type defines the state of the channel.
*/
typedef U8 AvctpChannelState;
/** The channel is idle and not configured.
*/
#define AVCTP_CHAN_STATE_IDLE 0
/** The channel is open and configured.
*/
#define AVCTP_CHAN_STATE_OPEN 1
/** The channel received a command and must respond.
*/
#define AVCTP_CHAN_STATE_COMMAND 2
/** The channel is in the process of closing.
*/
#define AVCTP_CHAN_STATE_CLOSING 3
/* End of AvctpChannelState */
/*---------------------------------------------------------------------------
* AvctpCtype type
*
* This type defines the AV/C ctype (command type) codes.
*/
typedef U8 AvctpCtype;
#define AVCTP_CTYPE_CONTROL 0x00
#define AVCTP_CTYPE_STATUS 0x01
#define AVCTP_CTYPE_SPECIFIC_INQUIRY 0x02
#define AVCTP_CTYPE_NOTIFY 0x03
#define AVCTP_CTYPE_GENERAL_INQUIRY 0x04
/* End of AvctpCtype */
/*---------------------------------------------------------------------------
* AvctpResponse type
*
* This type defines the AV/C response codes.
*/
typedef U8 AvctpResponse;
#define AVCTP_RESPONSE_NOT_IMPLEMENTED 0x08
#define AVCTP_RESPONSE_ACCEPTED 0x09
#define AVCTP_RESPONSE_REJECTED 0x0A
#define AVCTP_RESPONSE_IN_TRANSITION 0x0B
#define AVCTP_RESPONSE_IMPLEMENTED_STABLE 0x0C
#define AVCTP_RESPONSE_CHANGED 0x0D
#define AVCTP_RESPONSE_INTERIM 0x0F
/* End of AvctpResponse */
/*---------------------------------------------------------------------------
* AvctpOpcode type
*
* This type defines the AV/C Opcodes.
*/
typedef U8 AvctpOpcode;
#define AVCTP_OPCODE_VENDOR_DEPENDENT 0x00
#define AVCTP_OPCODE_UNIT_INFO 0x30
#define AVCTP_OPCODE_SUBUNIT_INFO 0x31
#define AVCTP_OPCODE_PASS_THROUGH 0x7C
/* End of AvctpOpcode */
/* Forward references */
typedef struct _AvctpCallbackParms AvctpCallbackParms;
typedef struct _AvctpChannel AvctpChannel;
typedef struct _AvctpCmdFrame AvctpCmdFrame;
typedef struct _AvctpRspFrame AvctpRspFrame;
typedef struct _AvctpRawFrame AvctpRawFrame;
/*---------------------------------------------------------------------------
* AvctpCallback type
*
* A function of this type is called to indicate events to the application.
*/
typedef void (*AvctpCallback) (AvctpChannel *chnl, AvctpCallbackParms *Parms);
/* End of AvctpCallback */
/****************************************************************************
*
* Data Structures
*
****************************************************************************/
/*---------------------------------------------------------------------------
* AvctpCmdFrame structure
*
* Defines the parameters required for an AVCTP command.
*/
struct _AvctpCmdFrame
{
AvctpCtype ctype; /* 4 bits */
U8 subunitType; /* 5 bits */
U8 subunitId; /* 3 bits */
AvctpOpcode opcode; /* 8 bits */
U16 operandLen; /* Length of buffer in "operands" */
U8 *operands; /* Buffer containing the command data */
BOOL more; /*
* Indicates whether to expect additional
* frames containing more operand data.
*/
};
/*---------------------------------------------------------------------------
* AvctpRspFrame structure
*
* Defines the parameters required for an AVCTP response.
*/
struct _AvctpRspFrame
{
AvctpResponse response; /* 4 bits */
U8 subunitType; /* 5 bits */
U8 subunitId; /* 3 bits */
AvctpOpcode opcode; /* 8 bits */
U16 operandLen; /* Length of buffer in "operands" */
U8 *operands; /* Buffer containing the response data */
BOOL more; /*
* Indicates whether to expect additional
* frames containing more operand data.
*/
#ifdef __BT_AVRCP_V13__
U8 transId; /* AV13 User could assign the response's transId */
#endif
};
struct _AvctpRawFrame
{
U8 transaction_id;
U8 type;
U16 pid;
U8 *data;
U16 length;
};
/*---------------------------------------------------------------------------
* AvctpChannel structure
*
* Defines the AVCTP channel.
*/
struct _AvctpChannel
{
/* === Internal use only === */
ListEntry node;
/* Connection Handle */
AvctpConn conn;
/* Channel Handle */
AvtpChannel avtpChnl;
/* Current Transmitting Frame */
void *curFrame;
/* Rx Frame */
union
{
AvctpCmdFrame cmdFrame;
AvctpRspFrame rspFrame;
} rx;
/* Packets */
AvtpPacket cmdPacket;
AvtpPacket rspPacket;
/* Channel State */
AvctpChannelState state;
/* Receive State */
U8 rxState;
/* Transmit State */
U8 txState;
#ifdef __AVCTP_TESTER_
U8 *rxRawData;
U16 rxRawLength;
U8 rxRawType;
#endif /* __AVCTP_TESTER_ */
/* Application callback function */
AvctpCallback callback;
};
/*---------------------------------------------------------------------------
* AvctpCallbackParms structure
*
* Contains information for the application callback event.
*
*/
struct _AvctpCallbackParms
{
/* AVCTP event */
AvctpEvent event;
/* AVCTP channel associated with the event */
AvctpChannel *channel;
/* Status of event (valid only for certain events) */
BtStatus status;
/* Callback parameter object, depending on "event" */
union
{
/* Remote device associated with the event */
BtRemoteDevice *remDev;
/* Command frame associated with the event */
AvctpCmdFrame *cmdFrame;
/* Response frame associated with the event */
AvctpRspFrame *rspFrame;
} p;
};
/****************************************************************************
*
* Function Reference
*
****************************************************************************/
/*---------------------------------------------------------------------------
* AVCTP_Init()
*
* Initialize the AVCTP SDK. This function should only be called
* once, normally at initialization time. The calling of this function
* can be specified in overide.h using the XA_LOAD_LIST macro
* (i.e. #define XA_LOAD_LIST XA_MODULE(AVCTP) ... ).
*
* Returns:
* TRUE - Initialization was successful
*
* FALSE - Initialization failed.
*/
BOOL AVCTP_Init(void);
#if L2CAP_DEREGISTER_FUNC == XA_ENABLED
/*---------------------------------------------------------------------------
* AVCTP_Deinit()
*
* Deinitializes the AVCTP module. AVCTP_Init() must later be called
* again to use any AVCTP function call. This function does no
* error checking so do NOT call when AVCTP is in use.
*
* Requires:
* L2CAP_DEREGISTER_FUNC set to XA_ENABLED
*/
void AVCTP_Deinit(void);
#endif /* L2CAP_DEREGISTER_FUNC == XA_ENABLED */
/*---------------------------------------------------------------------------
* AVCTP_Register()
*
* Registers an application callback to receive AVCTP events. This
* function must be called before any other AVCTP functions.
*
* Parameters:
*
* chnl - Channel structure that receives or initiates connections.
*
* callback - Identifies the application function that will be called
* with AVCTP events.
*
* Returns:
* BT_STATUS_SUCCESS - The AVCTP application callback Function was
* successfully registered.
*
* BT_STATUS_IN_USE - The specified channel is already in use.
*
* BT_STATUS_INVALID_PARM - The chnl or Callback parameter does not contain
* a valid pointer. (XA_ERROR_CHECK only).
*/
BtStatus AVCTP_Register(AvctpChannel *chnl, AvctpCallback callback);
/*---------------------------------------------------------------------------
* AVCTP_Deregister()
*
* De-registers the AVCTP callback. After making this call
* successfully, the callback specified in AVCTP_Register will
* receive no further events.
*
* Parameters:
*
* chnl - Channel structure that receives or initiates connections.
*
* Returns:
* BT_STATUS_SUCCESS - The AVCTP callback was successfully deregistered.
*
* BT_STATUS_IN_USE - The specified channel is still in use.
*
* BT_STATUS_NOT_FOUND - An AVCTP callback was not previously registered.
*
* BT_STATUS_INVALID_PARM - The chnl parameter does not contain a valid
* pointer. (XA_ERROR_CHECK only).
*/
BtStatus AVCTP_Deregister(AvctpChannel *chnl);
/*---------------------------------------------------------------------------
* AVCTP_Connect()
*
* Initiates a connection to a remote AVCTP device. This function is
* used to establish the lower layer connection (L2CAP), which allows
* sending messages
*
* If the connection attempt is successful, the AVCTP_EVENT_CONNECT event
* will be received. If the connection attempt is unsuccessful, the
* AVCTP_EVENT_DISCONNECT event will be received.
*
* Parameters:
*
* chnl - Channel structure that receives or initiates connections.
*
* remDev - A connected remote device.
*
* Returns:
*
* BT_STATUS_PENDING - The connection process has been successfully
* started. When the connection process is complete, the
* application callback will receive either the AVCTP_EVENT_CONNECT or
* AVCTP_EVENT_DISCONNECT event.
*
* BT_STATUS_SUCCESS - The connection already exists.
*
* BT_STATUS_INVALID_PARM - The chnl or addr parameter does not contain a
* valid pointer. (XA_ERROR_CHECK only).
*
* BT_STATUS_NOT_FOUND - The specified device was not found in the device
* selector database. The device must be discovered, paired, or added
* manually using DS_AddDevice();
*
* Other - It is possible to receive other error codes, depending on the
* lower layer service in use (L2CAP or Management Entity).
*/
BtStatus AVCTP_Connect(AvctpChannel *chnl, BtRemoteDevice *RemDev);
/*---------------------------------------------------------------------------
* AVCTP_ConnectRsp()
*
* Responds to a connection request from the remote AVCTP device. This
* function is used to establish the lower layer connection (L2CAP),
* which allows sending signaling messages, such as discover,
* configuration, and stream management.
*
* Parameters:
*
* Chnl - A registered and open AVCTP channel.
*
* Accept - TRUE accepts the connect or FALSE rejects the connection.
*
* Returns:
*
* BT_STATUS_PENDING - The connection responses has been successfully
* sent. When the connection process is complete, the application
* callback will receive the AVCTP_EVENT_CONNECT event.
*
* BT_STATUS_BUSY - The connection is already connected.
*
* BT_STATUS_INVALID_PARM - The Chnl parameter does not contain a
* valid pointer. (XA_ERROR_CHECK only).
*
* BT_STATUS_NOT_FOUND - The specified device was not found in the device
* selector database. The device must be discovered, paired, or added
* manually using DS_AddDevice();
*
* Other - It is possible to receive other error codes, depending on the
* lower layer service in use (L2CAP or Management Entity).
*/
BtStatus AVCTP_ConnectRsp(AvctpChannel *Chnl, BOOL Accept);
/*---------------------------------------------------------------------------
* AVCTP_Disconnect()
*
* Terminates a connection with a remote AVCTP device. The lower layer
* connection (L2CAP) is disconnected.
*
* Parameters:
*
* chnl - A registered and open AVCTP channel.
*
* Returns:
*
* BT_STATUS_PENDING - The disconnect process has been successfully
* started. When the disconnect process is complete, the
* application callback will receive the AVCTP_EVENT_DISCONNECT event.
*
* BT_STATUS_INVALID_PARM - The chnl parameter does not contain a valid
* pointer. (XA_ERROR_CHECK only).
*
* BT_STATUS_NO_CONNECTION - No connection exists on the specified channel.
*
* BT_STATUS_NOT_FOUND - The specified device was not found in the device
* selector database. The device must be discovered, paired, or added
* manually using DS_AddDevice();
*
* It is possible to receive other error codes, depending on the lower
* layer service in use (L2CAP or Management Entity).
*/
BtStatus AVCTP_Disconnect(AvctpChannel *chnl);
/*---------------------------------------------------------------------------
* AVCTP_SendCommand()
*
* Sends an AVCTP command on the specified channel. The channel must be
* connected and in the open state. The "cmdFrame" parameter must be
* set with valid AVCTP command parameters.
*
* Parameters:
*
* cmdFrame - An AvctpCmdFrame structure initialized with valid
* AVCTP command parameters.
*
* Returns:
*
* BT_STATUS_PENDING - The send command operation has been started
* successfully. When the associated packet has been sent,
* the application callback will receive the AVCTP_EVENT_TX_DONE
* event.
*
* BT_STATUS_INVALID_PARM - The chnl parameter does not contain a valid
* pointer. (XA_ERROR_CHECK only).
*
* BT_STATUS_NOT_FOUND - The specified channel is not registered.
*/
BtStatus AVCTP_SendCommand(AvctpChannel *chnl, AvctpCmdFrame *cmdFrame);
/*---------------------------------------------------------------------------
* AVCTP_SendResponse()
*
* Sends an AVCTP response on the specified channel. The channel must be
* connected and in the open state. The "rspFrame" parameter must be
* set with valid AVCTP response parameters.
*
* Parameters:
*
* rspFrame - An AvctpRspFrame structure initialized with valid
* AVCTP response parameters.
*
* Returns:
*
* BT_STATUS_PENDING - The send response operation has been started
* successfully. When the associated packet has been sent,
* the application callback will receive the AVCTP_EVENT_TX_DONE
* event.
*
* BT_STATUS_INVALID_PARM - The chnl parameter does not contain a valid
* pointer. (XA_ERROR_CHECK only).
*
* BT_STATUS_NOT_FOUND - The specified channel is not registered.
*/
BtStatus AVCTP_SendResponse(AvctpChannel *chnl, AvctpRspFrame *rspFrame);
/*---------------------------------------------------------------------------
* AVCTP_GetRemoteDevice()
*
* Returns a pointer to the current remote device.
*
* Parameters:
*
* chnl - An AVCTP channel.
*
* Returns:
*
* A pointer to a remote device.
*/
BtRemoteDevice *AVCTP_RemoteDevice(AvctpChannel *chnl);
BtStatus AVCTP_DeregisterAllChnl(void);
BtStatus AVCTP_SendRawMessage(AvctpChannel *chnl, AvctpRawFrame *rawFrame);
#endif /* __AVCTP_H_ */