2 * Bluetooth serial HCI transport.
3 * CSR41814 HCI with H4p vendor extensions.
5 * Copyright (C) 2008 Andrzej Zaborowski <balrog@zabor.org>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 or
10 * (at your option) version 3 of the License.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #include "qemu-common.h"
23 #include "qemu-char.h"
24 #include "qemu-timer.h"
40 uint8_t outfifo
[FIFO_LEN
* 2];
41 uint8_t inpkt
[FIFO_LEN
];
52 /* H4+ packet types */
62 /* CSR41814 negotiation start magic packet */
63 static const uint8_t csrhci_neg_packet
[] = {
65 0x00, 0xa0, 0x01, 0x00, 0x00,
66 0x4c, 0x00, 0x96, 0x00, 0x00,
69 /* CSR41814 vendor-specific command OCFs */
71 OCF_CSR_SEND_FIRMWARE
= 0x000,
74 static inline void csrhci_fifo_wake(struct csrhci_s
*s
)
76 if (!s
->enable
|| !s
->out_len
)
79 /* XXX: Should wait for s->modem_state & CHR_TIOCM_RTS? */
80 if (s
->chr
.chr_can_read
&& s
->chr
.chr_can_read(s
->chr
.handler_opaque
) &&
82 s
->chr
.chr_read(s
->chr
.handler_opaque
,
83 s
->outfifo
+ s
->out_start
++, 1);
85 if (s
->out_start
>= s
->out_size
) {
87 s
->out_size
= FIFO_LEN
;
92 qemu_mod_timer(s
->out_tm
, qemu_get_clock(vm_clock
) + s
->baud_delay
);
95 #define csrhci_out_packetz(s, len) memset(csrhci_out_packet(s, len), 0, len)
96 static uint8_t *csrhci_out_packet(struct csrhci_s
*s
, int len
)
98 int off
= s
->out_start
+ s
->out_len
;
100 /* TODO: do the padding here, i.e. align len */
103 if (off
< FIFO_LEN
) {
104 if (off
+ len
> FIFO_LEN
&& (s
->out_size
= off
+ len
) > FIFO_LEN
* 2) {
105 fprintf(stderr
, "%s: can't alloc %i bytes\n", __FUNCTION__
, len
);
108 return s
->outfifo
+ off
;
111 if (s
->out_len
> s
->out_size
) {
112 fprintf(stderr
, "%s: can't alloc %i bytes\n", __FUNCTION__
, len
);
116 return s
->outfifo
+ off
- s
->out_size
;
119 static inline uint8_t *csrhci_out_packet_csr(struct csrhci_s
*s
,
122 uint8_t *ret
= csrhci_out_packetz(s
, len
+ 2);
130 static inline uint8_t *csrhci_out_packet_event(struct csrhci_s
*s
,
133 uint8_t *ret
= csrhci_out_packetz(s
,
134 len
+ 1 + sizeof(struct hci_event_hdr
));
136 *ret
++ = H4_EVT_PKT
;
137 ((struct hci_event_hdr
*) ret
)->evt
= evt
;
138 ((struct hci_event_hdr
*) ret
)->plen
= len
;
140 return ret
+ sizeof(struct hci_event_hdr
);
143 static void csrhci_in_packet_vendor(struct csrhci_s
*s
, int ocf
,
144 uint8_t *data
, int len
)
150 case OCF_CSR_SEND_FIRMWARE
:
151 /* Check if this is the bd_address packet */
152 if (len
>= 18 + 8 && data
[12] == 0x01 && data
[13] == 0x00) {
154 s
->bd_addr
.b
[0] = data
[offset
+ 7]; /* Beyond cmd packet end(!?) */
155 s
->bd_addr
.b
[1] = data
[offset
+ 6];
156 s
->bd_addr
.b
[2] = data
[offset
+ 4];
157 s
->bd_addr
.b
[3] = data
[offset
+ 0];
158 s
->bd_addr
.b
[4] = data
[offset
+ 3];
159 s
->bd_addr
.b
[5] = data
[offset
+ 2];
161 s
->hci
->bdaddr_set(s
->hci
, s
->bd_addr
.b
);
162 fprintf(stderr
, "%s: bd_address loaded from firmware: "
163 "%02x:%02x:%02x:%02x:%02x:%02x\n", __FUNCTION__
,
164 s
->bd_addr
.b
[0], s
->bd_addr
.b
[1], s
->bd_addr
.b
[2],
165 s
->bd_addr
.b
[3], s
->bd_addr
.b
[4], s
->bd_addr
.b
[5]);
168 rpkt
= csrhci_out_packet_event(s
, EVT_VENDOR
, 11);
169 /* Status bytes: no error */
175 fprintf(stderr
, "%s: got a bad CMD packet\n", __FUNCTION__
);
182 static void csrhci_in_packet(struct csrhci_s
*s
, uint8_t *pkt
)
189 opc
= le16_to_cpu(((struct hci_command_hdr
*) pkt
)->opcode
);
190 if (cmd_opcode_ogf(opc
) == OGF_VENDOR_CMD
) {
191 csrhci_in_packet_vendor(s
, cmd_opcode_ocf(opc
),
192 pkt
+ sizeof(struct hci_command_hdr
),
193 s
->in_len
- sizeof(struct hci_command_hdr
) - 1);
197 /* TODO: if the command is OCF_READ_LOCAL_COMMANDS or the likes,
198 * we need to send it to the HCI layer and then add our supported
199 * commands to the returned mask (such as OGF_VENDOR_CMD). With
200 * bt-hci.c we could just have hooks for this kind of commands but
201 * we can't with bt-host.c. */
203 s
->hci
->cmd_send(s
->hci
, pkt
, s
->in_len
- 1);
210 s
->hci
->acl_send(s
->hci
, pkt
, s
->in_len
- 1);
214 s
->hci
->sco_send(s
->hci
, pkt
, s
->in_len
- 1);
218 if (s
->in_hdr
!= sizeof(csrhci_neg_packet
) ||
219 memcmp(pkt
- 1, csrhci_neg_packet
, s
->in_hdr
)) {
220 fprintf(stderr
, "%s: got a bad NEG packet\n", __FUNCTION__
);
225 rpkt
= csrhci_out_packet_csr(s
, H4_NEG_PKT
, 10);
227 *rpkt
++ = 0x20; /* Operational settings negotation Ok */
228 memcpy(rpkt
, pkt
, 7); rpkt
+= 7;
234 if (s
->in_hdr
!= 4 || pkt
[1] != 0x55 || pkt
[2] != 0x00) {
235 fprintf(stderr
, "%s: got a bad ALIVE packet\n", __FUNCTION__
);
239 rpkt
= csrhci_out_packet_csr(s
, H4_ALIVE_PKT
, 2);
247 /* TODO: error out */
248 fprintf(stderr
, "%s: got a bad packet\n", __FUNCTION__
);
255 static int csrhci_header_len(const uint8_t *pkt
)
259 return HCI_COMMAND_HDR_SIZE
;
261 return HCI_EVENT_HDR_SIZE
;
263 return HCI_ACL_HDR_SIZE
;
265 return HCI_SCO_HDR_SIZE
;
275 static int csrhci_data_len(const uint8_t *pkt
)
279 /* It seems that vendor-specific command packets for H4+ are all
280 * one byte longer than indicated in the standard header. */
281 if (le16_to_cpu(((struct hci_command_hdr
*) pkt
)->opcode
) == 0xfc00)
282 return (((struct hci_command_hdr
*) pkt
)->plen
+ 1) & ~1;
284 return ((struct hci_command_hdr
*) pkt
)->plen
;
286 return ((struct hci_event_hdr
*) pkt
)->plen
;
288 return le16_to_cpu(((struct hci_acl_hdr
*) pkt
)->dlen
);
290 return ((struct hci_sco_hdr
*) pkt
)->dlen
;
299 static int csrhci_write(struct CharDriverState
*chr
,
300 const uint8_t *buf
, int len
)
302 struct csrhci_s
*s
= (struct csrhci_s
*) chr
->opaque
;
303 int plen
= s
->in_len
;
309 memcpy(s
->inpkt
+ plen
, buf
, len
);
312 if (s
->in_len
>= 2 && plen
< 2)
313 s
->in_hdr
= csrhci_header_len(s
->inpkt
) + 1;
315 if (s
->in_len
>= s
->in_hdr
&& plen
< s
->in_hdr
)
316 s
->in_data
= csrhci_data_len(s
->inpkt
) + s
->in_hdr
;
318 if (s
->in_len
>= s
->in_data
) {
319 csrhci_in_packet(s
, s
->inpkt
);
321 memmove(s
->inpkt
, s
->inpkt
+ s
->in_len
, s
->in_len
- s
->in_data
);
322 s
->in_len
-= s
->in_data
;
324 s
->in_data
= INT_MAX
;
333 static void csrhci_out_hci_packet_event(void *opaque
,
334 const uint8_t *data
, int len
)
336 struct csrhci_s
*s
= (struct csrhci_s
*) opaque
;
337 uint8_t *pkt
= csrhci_out_packet(s
, (len
+ 2) & ~1); /* Align */
339 *pkt
++ = H4_EVT_PKT
;
340 memcpy(pkt
, data
, len
);
345 static void csrhci_out_hci_packet_acl(void *opaque
,
346 const uint8_t *data
, int len
)
348 struct csrhci_s
*s
= (struct csrhci_s
*) opaque
;
349 uint8_t *pkt
= csrhci_out_packet(s
, (len
+ 2) & ~1); /* Align */
351 *pkt
++ = H4_ACL_PKT
;
353 memcpy(pkt
, data
, len
);
358 static int csrhci_ioctl(struct CharDriverState
*chr
, int cmd
, void *arg
)
360 QEMUSerialSetParams
*ssp
;
361 struct csrhci_s
*s
= (struct csrhci_s
*) chr
->opaque
;
362 int prev_state
= s
->modem_state
;
365 case CHR_IOCTL_SERIAL_SET_PARAMS
:
366 ssp
= (QEMUSerialSetParams
*) arg
;
367 s
->baud_delay
= ticks_per_sec
/ ssp
->speed
;
368 /* Moments later... (but shorter than 100ms) */
369 s
->modem_state
|= CHR_TIOCM_CTS
;
372 case CHR_IOCTL_SERIAL_GET_TIOCM
:
373 *(int *) arg
= s
->modem_state
;
376 case CHR_IOCTL_SERIAL_SET_TIOCM
:
377 s
->modem_state
= *(int *) arg
;
378 if (~s
->modem_state
& prev_state
& CHR_TIOCM_RTS
)
379 s
->modem_state
&= ~CHR_TIOCM_CTS
;
388 static void csrhci_reset(struct csrhci_s
*s
)
391 s
->out_size
= FIFO_LEN
;
393 s
->baud_delay
= ticks_per_sec
;
396 s
->in_data
= INT_MAX
;
399 /* After a while... (but sooner than 10ms) */
400 s
->modem_state
|= CHR_TIOCM_CTS
;
402 memset(&s
->bd_addr
, 0, sizeof(bdaddr_t
));
405 static void csrhci_out_tick(void *opaque
)
407 csrhci_fifo_wake((struct csrhci_s
*) opaque
);
410 static void csrhci_pins(void *opaque
, int line
, int level
)
412 struct csrhci_s
*s
= (struct csrhci_s
*) opaque
;
413 int state
= s
->pin_state
;
415 s
->pin_state
&= ~(1 << line
);
416 s
->pin_state
|= (!!level
) << line
;
418 if ((state
& ~s
->pin_state
) & (1 << csrhci_pin_reset
)) {
419 /* TODO: Disappear from lower layers */
423 if (s
->pin_state
== 3 && state
!= 3) {
425 /* TODO: Wake lower layers up */
429 qemu_irq
*csrhci_pins_get(CharDriverState
*chr
)
431 struct csrhci_s
*s
= (struct csrhci_s
*) chr
->opaque
;
436 CharDriverState
*uart_hci_init(qemu_irq wakeup
)
438 struct csrhci_s
*s
= (struct csrhci_s
*)
439 qemu_mallocz(sizeof(struct csrhci_s
));
442 s
->chr
.chr_write
= csrhci_write
;
443 s
->chr
.chr_ioctl
= csrhci_ioctl
;
445 s
->hci
= qemu_next_hci();
447 s
->hci
->evt_recv
= csrhci_out_hci_packet_event
;
448 s
->hci
->acl_recv
= csrhci_out_hci_packet_acl
;
450 s
->out_tm
= qemu_new_timer(vm_clock
, csrhci_out_tick
, s
);
451 s
->pins
= qemu_allocate_irqs(csrhci_pins
, s
, __csrhci_pins
);