public inbox for linux-bluetooth@vger.kernel.org
 help / color / mirror / Atom feed
From: 卞磊 <mykofzone@gmail.com>
To: Nick Pelly <npelly@google.com>
Cc: linux-bluetooth@vger.kernel.org
Subject: Re: eSCO or SCO link?
Date: Tue, 31 Mar 2009 14:43:39 +0800	[thread overview]
Message-ID: <a172fe730903302343n219bc3e6t2becc00ffdadb947@mail.gmail.com> (raw)
In-Reply-To: <35c90d960903302313y3900c724m285f984ba5eb9ec0@mail.gmail.com>

Hi All,

2009/3/31 Nick Pelly <npelly@google.com>:
> 2009/3/30 卞磊 <mykofzone@gmail.com>:
>> Hi All,
>>  I made a mistake when writing the email, I have not complete my question.
>>
>> 2009/3/31 卞磊 <mykofzone@gmail.com>:
>>> Hi All,
>>>  I have a stlc2500c which is a Bluetooth 1.2 chip. When debuging
>>> function 'hci_connect', i found the hci link type of the arguments was
>>> SCO_LINK, because i enabled 'lmp_esco_capable' in my kernel, it call
>>> 'hci_setup_sync' to setup eSCO link.
>>
>> But when i check connection by 'hcitool con', the hcitool show it was
>> a SCO link. So, is it a SCO link or eSCO link? Thanks.
>
> hcitool con will report eSCO if it is eSCO, so you have a SCO link.
>
> hci_setup_sync can be used for both SCO and eSCO, and the chipset
> and/or the host stack will fall back to SCO if eSCO parameters can not
> be negotiated. An LMP log will show why.


Maybe the function 'hci_sync_conn_complete_evt' matches what you said.

static inline void hci_sync_conn_complete_evt(struct hci_dev *hdev,
struct sk_buff *skb)
{
       ...
	printk("hci_sync_conn_complete_evt, ev->link_type=%d\n",
ev->link_type); ------> ev->link_type=0
	
	conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr);

	printk("hci_sync_conn_complete_evt, conn=%p\n",
conn);-------------------------------> conn=00000000
	
	if (!conn) {
		if (ev->link_type == ESCO_LINK)
			goto unlock;

		conn = hci_conn_hash_lookup_ba(hdev, ESCO_LINK, &ev->bdaddr);
		if (!conn)
			goto unlock;

		conn->type = SCO_LINK;----------------------------------------------------------------------->
fall back to SCO?
	}
        ...
}
>
> Nick
>

LeiBian
BR

      reply	other threads:[~2009-03-31  6:43 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-03-31  5:45 eSCO or SCO link? 卞磊
2009-03-31  5:53 ` 卞磊
2009-03-31  6:13   ` Nick Pelly
2009-03-31  6:43     ` 卞磊 [this message]

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=a172fe730903302343n219bc3e6t2becc00ffdadb947@mail.gmail.com \
    --to=mykofzone@gmail.com \
    --cc=linux-bluetooth@vger.kernel.org \
    --cc=npelly@google.com \
    /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