-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Khadas VIM3 support Add sound configuration for Khadas VIM3. Currently only HDMI supported. This requires access to device tree in sysfs. * Add Khadas VIM3 specific config * Add ODROID-N2 configuration for newer HAOS releases
- Loading branch information
Showing
3 changed files
with
132 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
# Copyright (C) 2020 Team LibreELEC (https://libreelec.tv) | ||
# Copyright (C) 2020-present Home Assistant (https://home-assistant.io) | ||
|
||
<confdir:pcm/hdmi.conf> | ||
|
||
G12B-KHADAS-VIM3.pcm.hdmi.0 { | ||
@args [ CARD AES0 AES1 AES2 AES3 ] | ||
@args.CARD { type string } | ||
@args.AES0 { type integer } | ||
@args.AES1 { type integer } | ||
@args.AES2 { type integer } | ||
@args.AES3 { type integer } | ||
type hooks | ||
slave.pcm { | ||
type hw | ||
card $CARD | ||
device 0 | ||
subdevice 0 | ||
} | ||
hooks.0 { | ||
type ctl_elems | ||
hook_args [ | ||
{ | ||
interface MIXER | ||
name "IEC958 Playback Default" | ||
lock true | ||
preserve true | ||
optional true | ||
value [ $AES0 $AES1 $AES2 $AES3 ] | ||
} | ||
] | ||
} | ||
hint.device 0 | ||
} | ||
|
||
<confdir:pcm/front.conf> | ||
|
||
G12B-KHADAS-VIM3.pcm.front.0 { | ||
@args [ CARD ] | ||
@args.CARD { type string } | ||
type softvol | ||
slave.pcm { | ||
type hw | ||
card $CARD | ||
device 1 | ||
subdevice 0 | ||
} | ||
control { | ||
name "Onboard DAC output" | ||
card $CARD | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
# Copyright (C) 2020 Team LibreELEC (https://libreelec.tv) | ||
# Copyright (C) 2020-present Home Assistant (https://home-assistant.io) | ||
|
||
<confdir:pcm/hdmi.conf> | ||
|
||
ODROID-N2.pcm.hdmi.0 { | ||
@args [ CARD AES0 AES1 AES2 AES3 ] | ||
@args.CARD { type string } | ||
@args.AES0 { type integer } | ||
@args.AES1 { type integer } | ||
@args.AES2 { type integer } | ||
@args.AES3 { type integer } | ||
type hooks | ||
slave.pcm { | ||
type hw | ||
card $CARD | ||
device 0 | ||
subdevice 0 | ||
} | ||
hooks.0 { | ||
type ctl_elems | ||
hook_args [ | ||
{ | ||
interface MIXER | ||
name "IEC958 Playback Default" | ||
lock true | ||
preserve true | ||
optional true | ||
value [ $AES0 $AES1 $AES2 $AES3 ] | ||
} | ||
] | ||
} | ||
hint.device 0 | ||
} | ||
|
||
<confdir:pcm/front.conf> | ||
|
||
ODROID-N2.pcm.front.0 { | ||
@args [ CARD ] | ||
@args.CARD { type string } | ||
type softvol | ||
slave.pcm { | ||
type hw | ||
card $CARD | ||
device 1 | ||
subdevice 0 | ||
} | ||
control { | ||
name "Onboard DAC output" | ||
card $CARD | ||
} | ||
} |