Linux bluetooth development
 help / color / mirror / Atom feed
From: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
To: linux-bluetooth@vger.kernel.org
Subject: [PATCH BlueZ v2 03/10] android/ipc: Add audio_ipc_send_rsp and audio_ipc_send_rsp_full
Date: Thu,  2 Jan 2014 13:58:27 +0200	[thread overview]
Message-ID: <1388663914-25003-3-git-send-email-luiz.dentz@gmail.com> (raw)
In-Reply-To: <1388663914-25003-1-git-send-email-luiz.dentz@gmail.com>

From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

These functions can be used to respond to commands recieved over audio
IPC.
---
 android/ipc.c | 24 ++++++++++++++++++++++++
 android/ipc.h |  4 ++++
 2 files changed, 28 insertions(+)

diff --git a/android/ipc.c b/android/ipc.c
index f18e1eb..a116a20 100644
--- a/android/ipc.c
+++ b/android/ipc.c
@@ -414,6 +414,30 @@ void audio_ipc_cleanup(void)
 	}
 }
 
+void audio_ipc_send_rsp(uint8_t service_id, uint8_t opcode, uint8_t status)
+{
+	struct hal_status s;
+	int sk;
+
+	sk = g_io_channel_unix_get_fd(audio_io);
+
+	if (status == HAL_STATUS_SUCCESS) {
+		ipc_send(sk, service_id, opcode, 0, NULL, -1);
+		return;
+	}
+
+	s.code = status;
+
+	ipc_send(sk, service_id, HAL_OP_STATUS, sizeof(s), &s, -1);
+}
+
+void audio_ipc_send_rsp_full(uint8_t service_id, uint8_t opcode, uint16_t len,
+							void *param, int fd)
+{
+	ipc_send(g_io_channel_unix_get_fd(audio_io), service_id, opcode, len,
+								param, fd);
+}
+
 void audio_ipc_register(uint8_t service, const struct ipc_handler *handlers,
 								uint8_t size)
 {
diff --git a/android/ipc.h b/android/ipc.h
index 44d5a5d..f224367 100644
--- a/android/ipc.h
+++ b/android/ipc.h
@@ -41,6 +41,10 @@ void ipc_unregister(uint8_t service);
 void audio_ipc_init(void);
 void audio_ipc_cleanup(void);
 
+void audio_ipc_send_rsp(uint8_t service_id, uint8_t opcode, uint8_t status);
+void audio_ipc_send_rsp_full(uint8_t service_id, uint8_t opcode, uint16_t len,
+							void *param, int fd);
+
 void audio_ipc_register(uint8_t service, const struct ipc_handler *handlers,
 								uint8_t size);
 void audio_ipc_unregister(uint8_t service);
-- 
1.8.4.2


  parent reply	other threads:[~2014-01-02 11:58 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-01-02 11:58 [PATCH BlueZ v2 01/10] android/ipc: Add initial code for audio IPC Luiz Augusto von Dentz
2014-01-02 11:58 ` [PATCH BlueZ v2 02/10] android/ipc: Add message handling " Luiz Augusto von Dentz
2014-01-02 11:58 ` Luiz Augusto von Dentz [this message]
2014-01-02 11:58 ` [PATCH BlueZ v2 04/10] android/A2DP: Add initial code to handle audio IPC commands Luiz Augusto von Dentz
2014-01-02 11:58 ` [PATCH BlueZ v2 05/10] android/A2DP: Add audio open command/response struct Luiz Augusto von Dentz
2014-01-02 11:58 ` [PATCH BlueZ v2 06/10] android/A2DP: Add audio close " Luiz Augusto von Dentz
2014-01-02 11:58 ` [PATCH BlueZ v2 07/10] android/A2DP: Add stream open " Luiz Augusto von Dentz
2014-01-02 11:58 ` [PATCH BlueZ v2 08/10] android/A2DP: Add stream close " Luiz Augusto von Dentz
2014-01-02 11:58 ` [PATCH BlueZ v2 09/10] android/A2DP: Add stream resume " Luiz Augusto von Dentz
2014-01-02 11:58 ` [PATCH BlueZ v2 10/10] android/A2DP: Add stream suspend " Luiz Augusto von Dentz
2014-01-03 10:56 ` [PATCH BlueZ v2 01/10] android/ipc: Add initial code for audio IPC Andrei Emeltchenko
2014-01-03 11:09   ` Luiz Augusto von Dentz
2014-01-05 17:43 ` Szymon Janc
2014-01-06  9:06   ` 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=1388663914-25003-3-git-send-email-luiz.dentz@gmail.com \
    --to=luiz.dentz@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