Linux bluetooth development
 help / color / mirror / Atom feed
From: Andrei Emeltchenko <andrei.emeltchenko@gmail.com>
To: linux-bluetooth@vger.kernel.org
Subject: [PATCHv2 2/6] android/avctp: Add UNIT INFO command request
Date: Fri, 21 Feb 2014 17:23:46 +0200	[thread overview]
Message-ID: <1392996230-11789-2-git-send-email-Andrei.Emeltchenko.news@gmail.com> (raw)
In-Reply-To: <1392996230-11789-1-git-send-email-Andrei.Emeltchenko.news@gmail.com>

From: Andrei Emeltchenko <andrei.emeltchenko@intel.com>

---
 android/avctp.c | 13 +++++++++++++
 android/avctp.h |  3 +++
 2 files changed, 16 insertions(+)

diff --git a/android/avctp.c b/android/avctp.c
index 1e414d1..57a8c23 100644
--- a/android/avctp.c
+++ b/android/avctp.c
@@ -1266,6 +1266,19 @@ int avctp_send_vendordep_req(struct avctp *session, uint8_t code,
 						func, user_data);
 }
 
+int avctp_send_unit_info_req(struct avctp *session, avctp_rsp_cb func,
+								void *user_data)
+{
+	uint8_t operands[5];
+
+	memset(operands, 0xFF, sizeof(operands));
+
+	return avctp_send_req(session, AVC_CTYPE_STATUS,
+				AVC_SUBUNIT_UNIT, AVC_OP_UNITINFO,
+				operands, sizeof(operands),
+				func, user_data);
+}
+
 unsigned int avctp_register_passthrough_handler(struct avctp *session,
 						avctp_passthrough_cb cb,
 						void *user_data)
diff --git a/android/avctp.h b/android/avctp.h
index dfa0ca6..7496e53 100644
--- a/android/avctp.h
+++ b/android/avctp.h
@@ -46,6 +46,7 @@
 
 /* subunits of interest */
 #define AVC_SUBUNIT_PANEL		0x09
+#define AVC_SUBUNIT_UNIT		0x1f
 
 /* operands in passthrough commands */
 #define AVC_SELECT			0x00
@@ -170,3 +171,5 @@ int avctp_send_vendordep_req(struct avctp *session, uint8_t code,
 int avctp_send_browsing_req(struct avctp *session,
 				uint8_t *operands, size_t operand_count,
 				avctp_browsing_rsp_cb func, void *user_data);
+int avctp_send_unit_info_req(struct avctp *session, avctp_rsp_cb func,
+							void *user_data);
-- 
1.8.3.2


  reply	other threads:[~2014-02-21 15:23 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-02-21 15:23 [PATCHv2 1/6] unit/avrcp: First unit test for AVRCP profile Andrei Emeltchenko
2014-02-21 15:23 ` Andrei Emeltchenko [this message]
2014-02-23 11:57   ` [PATCHv2 2/6] android/avctp: Add UNIT INFO command request Luiz Augusto von Dentz
2014-02-24  6:54     ` Andrei Emeltchenko
2014-02-24  8:28       ` Luiz Augusto von Dentz
2014-02-21 15:23 ` [PATCHv2 3/6] android/avrcp: Implement avrcp_get_avctp Andrei Emeltchenko
2014-02-23 11:54   ` Luiz Augusto von Dentz
2014-02-21 15:23 ` [PATCHv2 4/6] android/avrcp: Use NULL for zero pointers Andrei Emeltchenko
2014-02-24  6:55   ` Andrei Emeltchenko
2014-02-24 12:31     ` Luiz Augusto von Dentz
2014-02-21 15:23 ` [PATCHv2 5/6] unit/avrcp: Add /TP/ICC/BV-01-I/CT test Andrei Emeltchenko
2014-02-23 12:06   ` Luiz Augusto von Dentz
2014-02-24  7:03     ` Andrei Emeltchenko
2014-02-21 15:23 ` [PATCHv2 6/6] unit/avrcp: Add /TP/ICC/BV-01-I/TG test Andrei Emeltchenko
2014-02-24  7:09 ` [PATCHv2 1/6] unit/avrcp: First unit test for AVRCP profile Andrei Emeltchenko
2014-02-24  8:25   ` Luiz Augusto von Dentz

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=1392996230-11789-2-git-send-email-Andrei.Emeltchenko.news@gmail.com \
    --to=andrei.emeltchenko@gmail.com \
    --cc=linux-bluetooth@vger.kernel.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