mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 09:17:14 +08:00 
			
		
		
		
	Add rpi4 pwm0 support
This commit is contained in:
		@@ -8,6 +8,7 @@
 | 
			
		||||
    ./modesetting.nix
 | 
			
		||||
    ./poe-hat.nix
 | 
			
		||||
    ./tc358743.nix
 | 
			
		||||
    ./pwm0.nix
 | 
			
		||||
  ];
 | 
			
		||||
 | 
			
		||||
  boot = {
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										50
									
								
								raspberry-pi/4/pwm0.nix
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										50
									
								
								raspberry-pi/4/pwm0.nix
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,50 @@
 | 
			
		||||
{ config, lib, pkgs, ... }:
 | 
			
		||||
 | 
			
		||||
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>;
 | 
			
		||||
              };
 | 
			
		||||
            };
 | 
			
		||||
 | 
			
		||||
          };
 | 
			
		||||
        '';
 | 
			
		||||
      }];
 | 
			
		||||
    };
 | 
			
		||||
  };
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user