mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
Merge pull request #345 from miangraham/rpi4-i2c1
raspberry-pi/4: Add option to turn on the ARM I2C bus (i2c1).
This commit is contained in:
commit
324414d2fb
2 changed files with 48 additions and 0 deletions
|
@ -4,6 +4,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
./audio.nix
|
./audio.nix
|
||||||
./dwc2.nix
|
./dwc2.nix
|
||||||
|
./i2c.nix
|
||||||
./modesetting.nix
|
./modesetting.nix
|
||||||
./poe-hat.nix
|
./poe-hat.nix
|
||||||
./tc358743.nix
|
./tc358743.nix
|
||||||
|
|
47
raspberry-pi/4/i2c.nix
Normal file
47
raspberry-pi/4/i2c.nix
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
cfg = config.hardware.raspberry-pi."4";
|
||||||
|
simple-overlay = { target, status }: {
|
||||||
|
name = "${target}-${status}-overlay";
|
||||||
|
dtsText = ''
|
||||||
|
/dts-v1/;
|
||||||
|
/plugin/;
|
||||||
|
/ {
|
||||||
|
compatible = "brcm,bcm2711";
|
||||||
|
fragment@0 {
|
||||||
|
target = <&${target}>;
|
||||||
|
__overlay__ {
|
||||||
|
status = "${status}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.hardware.raspberry-pi."4" = {
|
||||||
|
i2c0.enable = lib.mkEnableOption ''
|
||||||
|
Turn on the VideoCore I2C bus (maps to /dev/i2c-22) and enable access from the i2c group.
|
||||||
|
After a reboot, i2c-tools (e.g. i2cdetect -F 22) should work for root or any user in i2c.
|
||||||
|
'';
|
||||||
|
i2c1.enable = lib.mkEnableOption ''
|
||||||
|
Turn on the ARM I2C bus (/dev/i2c-1 on GPIO pins 3 and 5) and enable access from the i2c group.
|
||||||
|
After a reboot, i2c-tools (e.g. i2cdetect -F 1) should work for root or any user in i2c.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
config.hardware = lib.mkMerge [
|
||||||
|
(lib.mkIf cfg.i2c0.enable {
|
||||||
|
i2c.enable = lib.mkDefault true;
|
||||||
|
deviceTree = {
|
||||||
|
overlays = [ (simple-overlay { target = "i2c0if"; status = "okay"; }) ];
|
||||||
|
};
|
||||||
|
})
|
||||||
|
(lib.mkIf cfg.i2c1.enable {
|
||||||
|
i2c.enable = lib.mkDefault true;
|
||||||
|
deviceTree = {
|
||||||
|
overlays = [ (simple-overlay { target = "i2c1"; status = "okay"; }) ];
|
||||||
|
};
|
||||||
|
})
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue