forked from NixOS/nixos-hardware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
digi-amp-plus.nix
93 lines (83 loc) · 2.72 KB
/
digi-amp-plus.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{ config, lib, ... }:
let
cfg = config.hardware.raspberry-pi."4".digi-amp-plus;
in
{
options.hardware = {
raspberry-pi."4".digi-amp-plus = {
enable = lib.mkEnableOption ''
support for the IQaudIO DigiAMP+ Hat.
'';
unmuteAmp = lib.mkOption {
type = lib.types.bool;
default = false;
description = ''
"one-shot" unmute when kernel module first loads.
'';
};
autoMuteAmp = lib.mkOption {
type = lib.types.bool;
default = true;
description = ''
Unmute the amp when an ALSA device is opened by a client. Mute, with a five-second delay when the ALSA device is closed.
(Reopening the device within the five-second close window will cancel mute.)
'';
};
};
};
config = lib.mkIf cfg.enable {
hardware.raspberry-pi."4".apply-overlays-dtmerge.enable = lib.mkDefault true;
hardware.deviceTree = {
overlays = [
# Adapted from to: https://github.com/raspberrypi/linux/blob/3ed6d34d53e94ecbebc64c8fa3d1b6d3c41db8fb/arch/arm/boot/dts/overlays/iqaudio-dacplus-overlay.dts
# changes:
# - modified top-level "compatible" field from bcm2835 to bcm2711
# - s/i2s_clk_producer/i2s/ (name on bcm2711 platform)
{
name = "iqaudio-digiampplus-overlay";
dtsText = ''
/dts-v1/;
/plugin/;
/ {
compatible = "brcm,bcm2711";
fragment@0 {
target = <&i2s>;
__overlay__ {
status = "okay";
};
};
fragment@1 {
target = <&i2c1>;
__overlay__ {
#address-cells = <1>;
#size-cells = <0>;
status = "okay";
pcm5122@4c {
#sound-dai-cells = <0>;
compatible = "ti,pcm5122";
reg = <0x4c>;
AVDD-supply = <&vdd_3v3_reg>;
DVDD-supply = <&vdd_3v3_reg>;
CPVDD-supply = <&vdd_3v3_reg>;
status = "okay";
};
};
};
fragment@2 {
target = <&sound>;
iqaudio_dac: __overlay__ {
compatible = "iqaudio,iqaudio-dac";
i2s-controller = <&i2s>;
mute-gpios = <&gpio 22 0>;
status = "okay";
${lib.optionalString cfg.unmuteAmp "iqaudio-dac,unmute-amp;"}
${lib.optionalString cfg.autoMuteAmp "iqaudio-dac,auto-mute-amp;"}
};
};
};
'';
}
];
};
};
}