All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC 1/2] android/hal-audio-hsp: Add audio HAL for HSP handling
@ 2014-03-31 11:44 Andrei Emeltchenko
  2014-03-31 11:44 ` [RFC 2/2] android/hal-audio: Make code readable Andrei Emeltchenko
  2014-03-31 16:31 ` [RFC 1/2] android/hal-audio-hsp: Add audio HAL for HSP handling Marcel Holtmann
  0 siblings, 2 replies; 5+ messages in thread
From: Andrei Emeltchenko @ 2014-03-31 11:44 UTC (permalink / raw)
  To: linux-bluetooth

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

This adds audio HAL for handling SCO. Following needs to be added to
audio_policy.conf:

  hsp {
    outputs {
      hsp {
        ...
        devices AUDIO_DEVICE_OUT_ALL_SCO
        ...
      }
    }
---
 android/Android.mk      |  23 ++++++
 android/Makefile.am     |  15 ++++
 android/hal-audio-hsp.c | 211 ++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 249 insertions(+)
 create mode 100644 android/hal-audio-hsp.c

diff --git a/android/Android.mk b/android/Android.mk
index 3a62485..630d928 100644
--- a/android/Android.mk
+++ b/android/Android.mk
@@ -273,6 +273,29 @@ LOCAL_MODULE := audio.a2dp.default
 include $(BUILD_SHARED_LIBRARY)
 
 #
+# HSP audio
+#
+
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES := bluez/android/hal-audio-hsp.c
+
+LOCAL_C_INCLUDES = \
+	$(call include-path-for, system-core) \
+	$(call include-path-for, libhardware) \
+
+LOCAL_SHARED_LIBRARIES := \
+	libcutils \
+
+LOCAL_CFLAGS := $(BLUEZ_COMMON_CFLAGS)
+
+LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/hw
+LOCAL_MODULE_TAGS := optional
+LOCAL_MODULE := audio.hsp.default
+
+include $(BUILD_SHARED_LIBRARY)
+
+#
 # l2cap-test
 #
 
diff --git a/android/Makefile.am b/android/Makefile.am
index 58ee3c9..19db75c 100644
--- a/android/Makefile.am
+++ b/android/Makefile.am
@@ -166,6 +166,21 @@ android_audio_a2dp_default_la_SOURCES = android/audio-msg.h \
 					android/hardware/hardware.h \
 					android/system/audio.h
 
+android_audio_hsp_default_la_SOURCES = android/audio-msg.h \
+					android/hal-msg.h \
+					android/hal-audio-hsp.c \
+					android/hardware/audio.h \
+					android/hardware/audio_effect.h \
+					android/hardware/hardware.h \
+					android/system/audio.h
+
+android_audio_hsp_default_la_CFLAGS = $(AM_CFLAGS) -I$(srcdir)/android
+
+android_audio_hsp_default_la_LDFLAGS = $(AM_LDFLAGS) -module -avoid-version \
+					-no-undefined -lrt
+
+plugin_LTLIBRARIES += android/audio.hsp.default.la
+
 unit_tests += android/test-ipc
 
 android_test_ipc_SOURCES = android/test-ipc.c \
diff --git a/android/hal-audio-hsp.c b/android/hal-audio-hsp.c
new file mode 100644
index 0000000..2ad46f2
--- /dev/null
+++ b/android/hal-audio-hsp.c
@@ -0,0 +1,211 @@
+/*
+ * Copyright (C) 2013 Intel Corporation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+#include <errno.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include <hardware/audio.h>
+#include <hardware/hardware.h>
+
+#include "hal-log.h"
+
+struct hsp_audio_dev {
+	struct audio_hw_device dev;
+	struct a2dp_stream_out *out;
+};
+
+static int audio_open_output_stream(struct audio_hw_device *dev,
+					audio_io_handle_t handle,
+					audio_devices_t devices,
+					audio_output_flags_t flags,
+					struct audio_config *config,
+					struct audio_stream_out **stream_out)
+
+{
+	DBG("");
+
+	return -EINVAL;
+}
+
+static void audio_close_output_stream(struct audio_hw_device *dev,
+					struct audio_stream_out *stream_out)
+{
+	DBG("");
+
+	free(stream_out);
+}
+
+static int audio_set_parameters(struct audio_hw_device *dev,
+							const char *kvpairs)
+{
+	DBG("");
+
+	return 0;
+}
+
+static char *audio_get_parameters(const struct audio_hw_device *dev,
+							const char *keys)
+{
+	DBG("");
+
+	return strdup("");
+}
+
+static int audio_init_check(const struct audio_hw_device *dev)
+{
+	DBG("");
+
+	return 0;
+}
+
+static int audio_set_voice_volume(struct audio_hw_device *dev, float volume)
+{
+	DBG("");
+
+	return -ENOSYS;
+}
+
+static int audio_set_master_volume(struct audio_hw_device *dev, float volume)
+{
+	DBG("");
+
+	return -ENOSYS;
+}
+
+static int audio_set_mode(struct audio_hw_device *dev, int mode)
+{
+	DBG("");
+
+	return -ENOSYS;
+}
+
+static int audio_set_mic_mute(struct audio_hw_device *dev, bool state)
+{
+	DBG("");
+
+	return -ENOSYS;
+}
+
+static int audio_get_mic_mute(const struct audio_hw_device *dev, bool *state)
+{
+	DBG("");
+
+	return -ENOSYS;
+}
+
+static size_t audio_get_input_buffer_size(const struct audio_hw_device *dev,
+					const struct audio_config *config)
+{
+	DBG("");
+
+	return -ENOSYS;
+}
+
+static int audio_open_input_stream(struct audio_hw_device *dev,
+					audio_io_handle_t handle,
+					audio_devices_t devices,
+					struct audio_config *config,
+					struct audio_stream_in **stream_in)
+{
+	DBG("");
+
+	return 0;
+}
+
+static void audio_close_input_stream(struct audio_hw_device *dev,
+					struct audio_stream_in *stream_in)
+{
+	DBG("");
+
+	free(stream_in);
+}
+
+static int audio_dump(const audio_hw_device_t *device, int fd)
+{
+	DBG("");
+
+	return 0;
+}
+
+static int audio_close(hw_device_t *device)
+{
+	DBG("");
+
+	free(device);
+
+	return 0;
+}
+
+static int audio_open(const hw_module_t *module, const char *name,
+							hw_device_t **device)
+{
+	struct hsp_audio_dev *adev;
+
+	DBG("");
+
+	if (strcmp(name, AUDIO_HARDWARE_INTERFACE)) {
+		error("audio: interface %s not matching [%s]", name,
+						AUDIO_HARDWARE_INTERFACE);
+		return -EINVAL;
+	}
+
+	adev = calloc(1, sizeof(struct hsp_audio_dev));
+	if (!adev)
+		return -ENOMEM;
+
+	adev->dev.common.tag = HARDWARE_DEVICE_TAG;
+	adev->dev.common.version = AUDIO_DEVICE_API_VERSION_CURRENT;
+	adev->dev.common.module = (struct hw_module_t *) module;
+	adev->dev.common.close = audio_close;
+
+	adev->dev.init_check = audio_init_check;
+	adev->dev.set_voice_volume = audio_set_voice_volume;
+	adev->dev.set_master_volume = audio_set_master_volume;
+	adev->dev.set_mode = audio_set_mode;
+	adev->dev.set_mic_mute = audio_set_mic_mute;
+	adev->dev.get_mic_mute = audio_get_mic_mute;
+	adev->dev.set_parameters = audio_set_parameters;
+	adev->dev.get_parameters = audio_get_parameters;
+	adev->dev.get_input_buffer_size = audio_get_input_buffer_size;
+	adev->dev.open_output_stream = audio_open_output_stream;
+	adev->dev.close_output_stream = audio_close_output_stream;
+	adev->dev.open_input_stream = audio_open_input_stream;
+	adev->dev.close_input_stream = audio_close_input_stream;
+	adev->dev.dump = audio_dump;
+
+	*device = &adev->dev.common;
+
+	return 0;
+}
+
+static struct hw_module_methods_t hal_module_methods = {
+	.open = audio_open,
+};
+
+struct audio_module HAL_MODULE_INFO_SYM = {
+	.common = {
+		.tag = HARDWARE_MODULE_TAG,
+		.version_major = 1,
+		.version_minor = 0,
+		.id = AUDIO_HARDWARE_MODULE_ID,
+		.name = "HSP Audio HW HAL",
+		.author = "Intel Corporation",
+		.methods = &hal_module_methods,
+	},
+};
-- 
1.8.3.2


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [RFC 2/2] android/hal-audio: Make code readable
  2014-03-31 11:44 [RFC 1/2] android/hal-audio-hsp: Add audio HAL for HSP handling Andrei Emeltchenko
@ 2014-03-31 11:44 ` Andrei Emeltchenko
  2014-03-31 16:31 ` [RFC 1/2] android/hal-audio-hsp: Add audio HAL for HSP handling Marcel Holtmann
  1 sibling, 0 replies; 5+ messages in thread
From: Andrei Emeltchenko @ 2014-03-31 11:44 UTC (permalink / raw)
  To: linux-bluetooth

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

---
 android/hal-audio.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/android/hal-audio.c b/android/hal-audio.c
index 00dde49..c145533 100644
--- a/android/hal-audio.c
+++ b/android/hal-audio.c
@@ -1732,12 +1732,12 @@ static struct hw_module_methods_t hal_module_methods = {
 
 struct audio_module HAL_MODULE_INFO_SYM = {
 	.common = {
-	.tag = HARDWARE_MODULE_TAG,
-	.version_major = 1,
-	.version_minor = 0,
-	.id = AUDIO_HARDWARE_MODULE_ID,
-	.name = "A2DP Bluez HW HAL",
-	.author = "Intel Corporation",
-	.methods = &hal_module_methods,
+		.tag = HARDWARE_MODULE_TAG,
+		.version_major = 1,
+		.version_minor = 0,
+		.id = AUDIO_HARDWARE_MODULE_ID,
+		.name = "A2DP Bluez HW HAL",
+		.author = "Intel Corporation",
+		.methods = &hal_module_methods,
 	},
 };
-- 
1.8.3.2


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [RFC 1/2] android/hal-audio-hsp: Add audio HAL for HSP handling
  2014-03-31 11:44 [RFC 1/2] android/hal-audio-hsp: Add audio HAL for HSP handling Andrei Emeltchenko
  2014-03-31 11:44 ` [RFC 2/2] android/hal-audio: Make code readable Andrei Emeltchenko
@ 2014-03-31 16:31 ` Marcel Holtmann
  2014-04-01  8:30   ` Andrei Emeltchenko
  1 sibling, 1 reply; 5+ messages in thread
From: Marcel Holtmann @ 2014-03-31 16:31 UTC (permalink / raw)
  To: Andrei Emeltchenko; +Cc: linux-bluetooth

Hi Andrei,

> From: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
> 
> This adds audio HAL for handling SCO. Following needs to be added to
> audio_policy.conf:
> 
>  hsp {
>    outputs {
>      hsp {
>        ...
>        devices AUDIO_DEVICE_OUT_ALL_SCO
>        ...
>      }
>    }

if we need modifications to /etc/audio_policy.conf, we should have this part of android/README or some other documentation. I also wonder if this not also needs an inputs { } section since HSP is actually full-duplex.

Also for the A2DP part, has something checked what happens if we provide additional settings.

  a2dp {
    outputs {
      a2dp {
        sampling_rates 44100
        channel_masks AUDIO_CHANNEL_OUT_STEREO
        formats AUDIO_FORMAT_PCM_16_BIT
        devices AUDIO_DEVICE_OUT_ALL_A2DP
      }
    }
  }

So something like actually telling it about all 4 sampling rates or MP3 format?

Regards

Marcel


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [RFC 1/2] android/hal-audio-hsp: Add audio HAL for HSP handling
  2014-03-31 16:31 ` [RFC 1/2] android/hal-audio-hsp: Add audio HAL for HSP handling Marcel Holtmann
@ 2014-04-01  8:30   ` Andrei Emeltchenko
  2014-04-01 14:26     ` Marcel Holtmann
  0 siblings, 1 reply; 5+ messages in thread
From: Andrei Emeltchenko @ 2014-04-01  8:30 UTC (permalink / raw)
  To: Marcel Holtmann; +Cc: linux-bluetooth

Hi Marcel,

On Mon, Mar 31, 2014 at 09:31:57AM -0700, Marcel Holtmann wrote:
> Hi Andrei,
> 
> > From: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
> > 
> > This adds audio HAL for handling SCO. Following needs to be added to
> > audio_policy.conf:
> > 
> >  hsp {
> >    outputs {
> >      hsp {
> >        ...
> >        devices AUDIO_DEVICE_OUT_ALL_SCO
> >        ...
> >      }
> >    }
> 
> if we need modifications to /etc/audio_policy.conf, we should have this
> part of android/README or some other documentation. I also wonder if
> this not also needs an inputs { } section since HSP is actually
> full-duplex.

Yes we need input section as well, this was just example, the complete
sections would look like (copied from real device):

...
  hsp {
    outputs {
      hsp {
        sampling_rates 44100
        channel_masks AUDIO_CHANNEL_OUT_STEREO
        formats AUDIO_FORMAT_PCM_16_BIT
        devices AUDIO_DEVICE_OUT_ALL_SCO
      }
    }
    inputs {
      hsp {
        sampling_rates 44100
        channel_masks AUDIO_CHANNEL_IN_MONO
        formats AUDIO_FORMAT_PCM_16_BIT
        devices AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET
      }
    }
  }
...

> Also for the A2DP part, has something checked what happens if we provide
> additional settings.
> 
>   a2dp {
>     outputs {
>       a2dp {
>         sampling_rates 44100
>         channel_masks AUDIO_CHANNEL_OUT_STEREO
>         formats AUDIO_FORMAT_PCM_16_BIT
>         devices AUDIO_DEVICE_OUT_ALL_A2DP
>       }
>     }
>   }

This looks like default configuration for Intel devices.

Best regards 
Andrei Emeltchenko 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [RFC 1/2] android/hal-audio-hsp: Add audio HAL for HSP handling
  2014-04-01  8:30   ` Andrei Emeltchenko
@ 2014-04-01 14:26     ` Marcel Holtmann
  0 siblings, 0 replies; 5+ messages in thread
From: Marcel Holtmann @ 2014-04-01 14:26 UTC (permalink / raw)
  To: Andrei Emeltchenko; +Cc: linux-bluetooth

Hi Andrei,

>>> This adds audio HAL for handling SCO. Following needs to be added to
>>> audio_policy.conf:
>>> 
>>> hsp {
>>>   outputs {
>>>     hsp {
>>>       ...
>>>       devices AUDIO_DEVICE_OUT_ALL_SCO
>>>       ...
>>>     }
>>>   }
>> 
>> if we need modifications to /etc/audio_policy.conf, we should have this
>> part of android/README or some other documentation. I also wonder if
>> this not also needs an inputs { } section since HSP is actually
>> full-duplex.
> 
> Yes we need input section as well, this was just example, the complete
> sections would look like (copied from real device):
> 
> ...
>  hsp {
>    outputs {
>      hsp {
>        sampling_rates 44100
>        channel_masks AUDIO_CHANNEL_OUT_STEREO
>        formats AUDIO_FORMAT_PCM_16_BIT
>        devices AUDIO_DEVICE_OUT_ALL_SCO
>      }
>    }
>    inputs {
>      hsp {
>        sampling_rates 44100
>        channel_masks AUDIO_CHANNEL_IN_MONO
>        formats AUDIO_FORMAT_PCM_16_BIT
>        devices AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET
>      }
>    }
>  }
> …

how does sampling_rates of 44100 work here? Standard SCO/eSCO is 8000. And then we have Wideband speech as well.

Regards

Marcel


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-04-01 14:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-31 11:44 [RFC 1/2] android/hal-audio-hsp: Add audio HAL for HSP handling Andrei Emeltchenko
2014-03-31 11:44 ` [RFC 2/2] android/hal-audio: Make code readable Andrei Emeltchenko
2014-03-31 16:31 ` [RFC 1/2] android/hal-audio-hsp: Add audio HAL for HSP handling Marcel Holtmann
2014-04-01  8:30   ` Andrei Emeltchenko
2014-04-01 14:26     ` Marcel Holtmann

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.