forked from NixOS/nixos-hardware
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pwm0.nix
50 lines (45 loc) · 1.05 KB
/
pwm0.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
{ config, lib, ... }:
let
cfg = config.hardware.raspberry-pi."4".pwm0;
in
{
options.hardware = {
raspberry-pi."4".pwm0 = {
enable = lib.mkEnableOption ''
Enable support for the hardware pwm0 channel on GPIO_18
'';
};
};
config = lib.mkIf cfg.enable {
hardware.deviceTree = {
overlays = [{
name = "pwm-overlay";
dtsText = ''
/dts-v1/;
/plugin/;
/ {
compatible = "brcm,bcm2711";
fragment@0 {
target = <&gpio>;
__overlay__ {
pwm_pins: pwm_pins {
brcm,pins = <18>;
brcm,function = <2>; /* Alt5 */
};
};
};
fragment@1 {
target = <&pwm>;
__overlay__ {
pinctrl-names = "default";
assigned-clock-rates = <100000000>;
status = "okay";
pinctrl-0 = <&pwm_pins>;
};
};
};
'';
}];
};
};
}