From: suraj <suraj@atheros.com>
To: <linux-bluetooth@vger.kernel.org>
Cc: <marcel@holtmann.org>, <Luis.Rodriguez@Atheros.com>,
<Jothikumar.Mothilal@Atheros.com>
Subject: use of hci_recv_fragment in HCI UART transport driver
Date: Fri, 21 May 2010 10:07:46 +0530 [thread overview]
Message-ID: <1274416666.28388.29.camel@atheros013-desktop> (raw)
Hi,
The function "hci_recv_fragment()" was designed to avoid messy Bluetooth Rx packet reassembly on the HCI transport driver.
It does work well for HCI USB transport driver but it becomes a bit redundant when used on HCI UART transport driver.
This is basically due to the fact that the function require the caller to provide the HCI Packet type as input parameter.
This is pretty straight forward for a BT USB transport driver as both ACL data and HCI events are received through different callbacks.
Which means you will have 2 calls of hci_recv_fragment(). One with HCI_EVENT_PKT as packet type and other with HCI_ACLDATA_PKT, with packet type hard coded.
As far as HCI UART transport driver is concerned, it does not have this luxury. Both event and data are received through the same callback.
So, if the driver has to provide the packet type as input to hci_recv_fragment(), it will have to parse the HCI Rx data to get it in the first place.
This means driver will have to do everything hci_recv_fragment() does minus the memcpy, implementing the same messy code.
I know that we should be able to work around it by checking whether which reassembly buffer is not null and so on. But this is just a hack not a solution.
The second reason is, hci_recv_fragment() implements a certain policy on the driver i.e
" Whenever HCI Rx data is reassembled it directly has to be sent to host, without the driver interfering".
This robs the driver a chance have a look at the HCI event and do some housekeeping (it is entirely up to the driver what he wants to do then).
This is the one reason why someone would write a custom HCI transport driver protocol.
Other ways he could have used the standard H4 implementation if he just wanted to transfer packets to and from Host.
Please provide your comments.
Regards
Suraj
next reply other threads:[~2010-05-21 4:37 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-05-21 4:37 suraj [this message]
2010-05-21 7:33 ` use of hci_recv_fragment in HCI UART transport driver Marcel Holtmann
2010-05-21 8:16 ` Suraj Sumangala
2010-05-21 8:34 ` Marcel Holtmann
2010-05-21 8:49 ` Suraj Sumangala
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1274416666.28388.29.camel@atheros013-desktop \
--to=suraj@atheros.com \
--cc=Jothikumar.Mothilal@Atheros.com \
--cc=Luis.Rodriguez@Atheros.com \
--cc=linux-bluetooth@vger.kernel.org \
--cc=marcel@holtmann.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).