aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Aillet <jonathan.aillet@iot.bzh>2018-09-12 20:42:56 +0200
committerJonathan Aillet <jonathan.aillet@iot.bzh>2018-10-08 15:57:27 +0200
commit2c3af29312e021dfcd599fde8cd419dae4223a1c (patch)
tree4dcea0fb05a797ecaa4a42e38647d197b3b7fdb2
parent2828b18b33dee47cebd72c4f7800e99d7ceb2149 (diff)
Add hal json with bluetooth for reference boards
Add hal json configuration files with bluetooth plugin specified for reference boards. Change-Id: I16055c45b5f59aa192b5948cece1ff8a73edf5a8 Signed-off-by: Jonathan Aillet <jonathan.aillet@iot.bzh>
-rw-r--r--4a-hal-cfg-reference/hal-4a-intel-minnow-bt.json206
-rw-r--r--4a-hal-cfg-reference/hal-4a-intel-qemu-bt.json220
-rw-r--r--4a-hal-cfg-reference/hal-4a-rcar-m3kf-bt.json231
3 files changed, 657 insertions, 0 deletions
diff --git a/4a-hal-cfg-reference/hal-4a-intel-minnow-bt.json b/4a-hal-cfg-reference/hal-4a-intel-minnow-bt.json
new file mode 100644
index 0000000..250fba6
--- /dev/null
+++ b/4a-hal-cfg-reference/hal-4a-intel-minnow-bt.json
@@ -0,0 +1,206 @@
+{
+ "$schema": "http://iot.bzh/download/public/schema/json/ctl-schema.json",
+ "metadata": {
+ "uid": "/dev/snd/by-path/pci-0000:00:1b.0",
+ "version": "0.9",
+ "api": "4a-hal-intel-minnow-bt",
+ "require": [ "alsacore", "smixer" ],
+ "info": "4a hal for Intel Minnow device",
+ "author": "Jonathan Aillet",
+ "date": "2018-06-13"
+ },
+ "resources": [
+ {
+ "uid": "hal-bt",
+ "info": "Bluetooth hal plugin to get selected bluetooth device as an input by tweaking softmixer configuration",
+ "libs": ["hal-bt.ctlso"]
+ }
+ ],
+ "onload": [
+ {
+ "uid": "init-bt-plugin",
+ "info": "Init Bluetooth hal plugin",
+ "action": "plugin://hal-bt#init"
+ }
+ ],
+ "controls": [
+ {
+ "uid": "ping",
+ "info": "Ping hal",
+ "action": "api://4a-hal-manager#ping"
+ }
+ ],
+ "events": [
+ {
+ "uid": "Bluetooth-Manager/device_updated",
+ "action": "plugin://hal-bt#events"
+ }
+ ],
+ "halmap": [
+ {
+ "uid": "agl-master-playback-volume",
+ "alsa": {
+ "name": "IEC958 Playback Default",
+ "value": 100
+ }
+ },
+ {
+ "uid": "agl-pcm-playback-switch",
+ "alsa": {
+ "name": "IEC958 Playback Switch",
+ "value": 1
+ }
+ }
+ ],
+ "halmixer": {
+ "uid": "intel-minnow",
+ "mixerapi": "smixer",
+ "prefix": "intel-minnow",
+ "ramps": [
+ {
+ "uid": "ramp-very-fast",
+ "delay": 50,
+ "up": 6,
+ "down": 10
+ },
+ {
+ "uid": "ramp-fast",
+ "delay": 50,
+ "up": 2,
+ "down": 10
+ },
+ {
+ "uid": "ramp-normal",
+ "delay": 50,
+ "up": 2,
+ "down": 4
+ },
+ {
+ "uid": "ramp-slow",
+ "delay": 50,
+ "up": 2,
+ "down": 2
+ },
+ {
+ "uid": "ramp-very-slow",
+ "delay": 100,
+ "up": 1,
+ "down": 1
+ }
+ ],
+ "playbacks" : {
+ "uid": "INTEL-MINNOW",
+ "cardid": "hw:PCH",
+ "device": 3,
+ "params": {
+ "rate": 48000
+ },
+ "sink": {
+ "channels": [
+ {
+ "uid": "front-right",
+ "port": 0
+ },
+ {
+ "uid": "front-left",
+ "port": 1
+ }
+ ]
+ }
+ },
+ "captures": [
+ {
+ "uid": "bluetooth",
+ "pcmplug_params": "bluealsa_proxy",
+ "params": {
+ "channels": 2
+ },
+ "source": {
+ "channels": [
+ {
+ "uid": "bluetooth-right",
+ "port": 0
+ },
+ {
+ "uid": "bluetooth-left",
+ "port": 1
+ }
+ ]
+ }
+ }
+ ],
+ "zones": [
+ {
+ "uid": "full-stereo",
+ "sink": [
+ {
+ "target": "front-right",
+ "channel": 0
+ },
+ {
+ "target": "front-left",
+ "channel": 1
+ }
+ ]
+ },
+ {
+ "uid": "front-seats",
+ "sink": [
+ {
+ "target": "front-right",
+ "channel": 0
+ },
+ {
+ "target": "front-left",
+ "channel": 1
+ }
+ ]
+ }
+ ],
+ "streams": [
+ {
+ "uid": "multimedia",
+ "verb": "multimedia",
+ "zone": "full-stereo",
+ "volume": 60,
+ "mute": false,
+ "params": {
+ "rate": 48000
+ }
+ },
+ {
+ "uid": "navigation",
+ "verb": "navigation",
+ "zone": "front-seats",
+ "volume": 70,
+ "mute": false,
+ "params": {
+ "rate": 48000
+ }
+ },
+ {
+ "uid": "emergency",
+ "verb": "emergency",
+ "zone": "front-seats",
+ "volume": 60,
+ "mute": false,
+ "params": {
+ "rate": 48000
+ }
+ },
+ {
+ "uid": "bluetooth_stream",
+ "verb": "bluetooth_stream",
+ "zone": "front-seats",
+ "source" : "bluetooth",
+ "volume": 85,
+ "mute": false,
+ "params": {
+ "rate" : 48000,
+ "format": "S16_LE",
+ "channels": 2
+ }
+ }
+ ]
+ }
+}
diff --git a/4a-hal-cfg-reference/hal-4a-intel-qemu-bt.json b/4a-hal-cfg-reference/hal-4a-intel-qemu-bt.json
new file mode 100644
index 0000000..e40993e
--- /dev/null
+++ b/4a-hal-cfg-reference/hal-4a-intel-qemu-bt.json
@@ -0,0 +1,220 @@
+{
+ "$schema": "http://iot.bzh/download/public/schema/json/ctl-schema.json",
+ "metadata": {
+ "uid": "/dev/snd/by-path/pci-0000:00:03.0",
+ "version": "0.9",
+ "api": "4a-hal-intel-qemu-bt",
+ "require": [ "alsacore", "smixer" ],
+ "info": "4a hal for QEMU Intel device",
+ "author": "Jonathan Aillet",
+ "date": "2018-07-10"
+ },
+ "resources": [
+ {
+ "uid": "hal-bt",
+ "info": "Bluetooth hal plugin to get selected bluetooth device as an input by tweaking softmixer configuration",
+ "libs": ["hal-bt.ctlso"]
+ }
+ ],
+ "onload": [
+ {
+ "uid": "init-bt-plugin",
+ "info": "Init Bluetooth hal plugin",
+ "action": "plugin://hal-bt#init"
+ }
+ ],
+ "controls": [
+ {
+ "uid": "ping",
+ "info": "Ping hal",
+ "action": "api://4a-hal-manager#ping"
+ }
+ ],
+ "events": [
+ {
+ "uid": "Bluetooth-Manager/device_updated",
+ "action": "plugin://hal-bt#events"
+ }
+ ],
+ "halmap": [
+ {
+ "uid": "agl-master-playback-volume",
+ "alsa": {
+ "name": "Master Playback Volume",
+ "value": 100
+ }
+ },
+ {
+ "uid": "agl-master-playback-switch",
+ "alsa": {
+ "name": "Master Playback Switch",
+ "value": 1
+ }
+ },
+ {
+ "uid": "agl-capture-volume",
+ "alsa": {
+ "name": "Capture Volume"
+ }
+ }
+ ],
+ "halmixer": {
+ "uid": "intel",
+ "mixerapi": "smixer",
+ "prefix": "intel-qemu",
+ "ramps": [
+ {
+ "uid": "ramp-very-fast",
+ "delay": 50,
+ "up": 6,
+ "down": 10
+ },
+ {
+ "uid": "ramp-fast",
+ "delay": 50,
+ "up": 2,
+ "down": 10
+ },
+ {
+ "uid": "ramp-normal",
+ "delay": 50,
+ "up": 2,
+ "down": 4
+ },
+ {
+ "uid": "ramp-slow",
+ "delay": 50,
+ "up": 2,
+ "down": 2
+ },
+ {
+ "uid": "ramp-very-slow",
+ "delay": 100,
+ "up": 1,
+ "down": 1
+ }
+ ],
+ "playbacks" : {
+ "uid": "INTEL-QEMU",
+ "path": "/dev/snd/by-path/pci-0000:00:03.0",
+ "params": {
+ "rate": 48000
+ },
+ "sink": {
+ "controls": {
+ "volume": {
+ "name": "Master Playback Volume",
+ "value": 80
+ },
+ "mute": {
+ "name": "Master Playback Switch"
+ }
+ },
+ "channels": [
+ {
+ "uid": "front-right",
+ "port": 0
+ },
+ {
+ "uid": "front-left",
+ "port": 1
+ }
+ ]
+ }
+ },
+ "captures": [
+ {
+ "uid": "bluetooth",
+ "pcmplug_params": "bluealsa_proxy",
+ "params": {
+ "channels": 2
+ },
+ "source": {
+ "channels": [
+ {
+ "uid": "bluetooth-right",
+ "port": 0
+ },
+ {
+ "uid": "bluetooth-left",
+ "port": 1
+ }
+ ]
+ }
+ }
+ ],
+ "zones": [
+ {
+ "uid": "full-stereo",
+ "sink": [
+ {
+ "target": "front-right",
+ "channel": 0
+ },
+ {
+ "target": "front-left",
+ "channel": 1
+ }
+ ]
+ },
+ {
+ "uid": "front-seats",
+ "sink": [
+ {
+ "target": "front-right",
+ "channel": 0
+ },
+ {
+ "target": "front-left",
+ "channel": 1
+ }
+ ]
+ }
+ ],
+ "streams": [
+ {
+ "uid": "multimedia",
+ "verb": "multimedia",
+ "zone": "full-stereo",
+ "volume": 60,
+ "mute": false,
+ "params": {
+ "rate": 48000
+ }
+ },
+ {
+ "uid": "navigation",
+ "verb": "navigation",
+ "zone": "front-seats",
+ "volume": 70,
+ "mute": false,
+ "params": {
+ "rate": 48000
+ }
+ },
+ {
+ "uid": "emergency",
+ "verb": "emergency",
+ "zone": "front-seats",
+ "volume": 60,
+ "mute": false,
+ "params": {
+ "rate": 48000
+ }
+ },
+ {
+ "uid": "bluetooth_stream",
+ "verb": "bluetooth_stream",
+ "zone": "front-seats",
+ "source" : "bluetooth",
+ "volume": 85,
+ "mute": false,
+ "params": {
+ "rate" : 48000,
+ "format": "S16_LE",
+ "channels": 2
+ }
+ }
+ ]
+ }
+}
diff --git a/4a-hal-cfg-reference/hal-4a-rcar-m3kf-bt.json b/4a-hal-cfg-reference/hal-4a-rcar-m3kf-bt.json
new file mode 100644
index 0000000..89988ad
--- /dev/null
+++ b/4a-hal-cfg-reference/hal-4a-rcar-m3kf-bt.json
@@ -0,0 +1,231 @@
+{
+ "$schema": "http://iot.bzh/download/public/schema/json/ctl-schema.json",
+ "metadata": {
+ "uid": "/dev/snd/by-path/platform-sound@1",
+ "version": "0.9",
+ "api": "4a-hal-rcar-m3kf-bt",
+ "require": [ "alsacore", "smixer" ],
+ "info": "4a hal for Rcar M3 device when plugged on Kingfisher board",
+ "author": "Jonathan Aillet, Stephane Desneux",
+ "date": "2018-06-15"
+ },
+ "resources": [
+ {
+ "uid": "hal-bt",
+ "info": "Bluetooth hal plugin to get selected bluetooth device as an input by tweaking softmixer configuration",
+ "libs": ["hal-bt.ctlso"]
+ }
+ ],
+ "onload": [
+ {
+ "uid": "init-bt-plugin",
+ "info": "Init Bluetooth hal plugin",
+ "action": "plugin://hal-bt#init"
+ }
+ ],
+ "controls": [
+ {
+ "uid": "ping",
+ "info": "Ping hal",
+ "action": "api://4a-hal-manager#ping"
+ }
+ ],
+ "events": [
+ {
+ "uid": "Bluetooth-Manager/device_updated",
+ "action": "plugin://hal-bt#events"
+ }
+ ],
+ "halmap": [
+ {
+ "uid": "agl-master-playback-volume",
+ "alsa": {
+ "name": "DVC Out Playback Volume",
+ "value": 80
+ }
+ },
+ {
+ "uid": "agl-pcm-playback-volume",
+ "alsa": {
+ "name": "DVC Out Playback Volume",
+ "value": 80
+ }
+ },
+ {
+ "uid": "agl-pcm-playback-switch",
+ "alsa": {
+ "name": "SRC Out Rate Switch",
+ "value": 1
+ }
+ },
+ {
+ "uid": "agl-capture-volume",
+ "alsa": {
+ "name": "DVC In Capture Volume"
+ }
+ }
+ ],
+ "halmixer": {
+ "uid": "rcar-m3",
+ "mixerapi": "smixer",
+ "prefix": "m3kf",
+ "ramps": [
+ {
+ "uid": "ramp-very-fast",
+ "delay": 50,
+ "up": 6,
+ "down": 10
+ },
+ {
+ "uid": "ramp-fast",
+ "delay": 50,
+ "up": 2,
+ "down": 10
+ },
+ {
+ "uid": "ramp-normal",
+ "delay": 50,
+ "up": 2,
+ "down": 4
+ },
+ {
+ "uid": "ramp-slow",
+ "delay": 50,
+ "up": 2,
+ "down": 2
+ },
+ {
+ "uid": "ramp-very-slow",
+ "delay": 100,
+ "up": 1,
+ "down": 1
+ }
+ ],
+ "playbacks" : {
+ "uid": "RCAR-M3",
+ "path": "/dev/snd/by-path/platform-sound@1",
+ "params": {
+ "rate": 48000,
+ "format": "S24_LE"
+ },
+ "sink": {
+ "controls": {
+ "volume": {
+ "name": "DVC Out Playback Volume",
+ "value": 80
+ },
+ "mute": {
+ "name": "SRC Out Rate Switch"
+ }
+ },
+ "channels": [
+ {
+ "uid": "front-right",
+ "port": 0
+ },
+ {
+ "uid": "front-left",
+ "port": 1
+ }
+ ]
+ }
+ },
+ "captures": [
+ {
+ "uid": "bluetooth",
+ "pcmplug_params": "bluealsa_proxy",
+ "params": {
+ "channels": 2
+ },
+ "source": {
+ "channels": [
+ {
+ "uid": "bluetooth-right",
+ "port": 0
+ },
+ {
+ "uid": "bluetooth-left",
+ "port": 1
+ }
+ ]
+ }
+ }
+ ],
+ "zones": [
+ {
+ "uid": "full-stereo",
+ "sink": [
+ {
+ "target": "front-right",
+ "channel": 0
+ },
+ {
+ "target": "front-left",
+ "channel": 1
+ }
+ ]
+ },
+ {
+ "uid": "front-seats",
+ "sink": [
+ {
+ "target": "front-right",
+ "channel": 0
+ },
+ {
+ "target": "front-left",
+ "channel": 1
+ }
+ ]
+ }
+ ],
+ "streams": [
+ {
+ "uid": "multimedia",
+ "verb": "multimedia",
+ "zone": "full-stereo",
+ "volume": 60,
+ "mute": false,
+ "params": {
+ "rate": 48000,
+ "format": "S16_LE"
+ }
+ },
+ {
+ "uid": "navigation",
+ "verb": "navigation",
+ "zone": "front-seats",
+ "volume": 70,
+ "mute": false,
+ "params": {
+ "rate": 48000,
+ "format": "S16_LE"
+ }
+ },
+ {
+ "uid": "emergency",
+ "verb": "emergency",
+ "zone": "front-seats",
+ "volume": 60,
+ "mute": false,
+ "params": {
+ "rate": 48000,
+ "format": "S16_LE"
+ }
+ },
+ {
+ "uid": "bluetooth_stream",
+ "verb": "bluetooth_stream",
+ "zone": "front-seats",
+ "source" : "bluetooth",
+ "volume": 85,
+ "mute": false,
+ "params": {
+ "rate" : 48000,
+ "format": "S16_LE",
+ "channels": 2
+ }
+ }
+ ]
+ }
+}