forked from NixOS/nixos-hardware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xhci.nix
40 lines (38 loc) · 801 Bytes
/
xhci.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
{
config,
lib,
...
}: let
cfg = config.hardware.raspberry-pi."4".xhci;
in {
options.hardware = {
raspberry-pi."4".xhci = {
enable = lib.mkEnableOption ''
Enable builtin XHCI controller for USB with otg_mode=1 in config.txt
'';
};
};
config = lib.mkIf cfg.enable {
hardware.deviceTree = {
overlays = [
{
name = "enable-xhci";
dtsText = ''
/dts-v1/;
/plugin/;
/ {
compatible = "brcm,bcm2711";
fragment@0 {
//target-path = "/scb/xhci@7e9c0000";
target = <&xhci>;
__overlay__ {
status = "okay";
};
};
};
'';
}
];
};
};
}