From 10d9eaf1c4ad1c19e50c1f27631119fcdf7c24a7 Mon Sep 17 00:00:00 2001 From: robert jakub Date: Thu, 24 Oct 2024 17:57:11 +0200 Subject: [PATCH] build sd-image for uConsole --- uconsole/sd-image-uConsole.nix | 153 +++++++++++++++++++++++++++++++++ 1 file changed, 153 insertions(+) create mode 100644 uconsole/sd-image-uConsole.nix diff --git a/uconsole/sd-image-uConsole.nix b/uconsole/sd-image-uConsole.nix new file mode 100644 index 0000000..ce4ffae --- /dev/null +++ b/uconsole/sd-image-uConsole.nix @@ -0,0 +1,153 @@ +{ + config, + lib, + pkgs, + ... +}: { + imports = [ + + + "${builtins.fetchGit {url = "https://github.com/NixOS/nixos-hardware.git";}}/raspberry-pi/4" + ./kernel + ../raspberry-pi/overlays + ../raspberry-pi/apply-overlays + ]; + + nixpkgs.overlays = [ + (final: super: { + makeModulesClosure = x: + super.makeModulesClosure (x // {allowMissing = true;}); + }) + ]; + + boot.loader.grub.enable = false; + boot.loader.generic-extlinux-compatible.enable = true; + + boot.consoleLogLevel = lib.mkDefault 7; + + users.users.root.initialPassword = ""; + + console = { + earlySetup = true; + font = "ter-v32n"; + packages = with pkgs; [terminus_font]; + }; + + boot.kernelParams = [ + "8250.nr_uarts=1" + "vc_mem.mem_base=0x3ec00000" + "vc_mem.mem_size=0x20000000" + "console=ttyS0,115200" + "console=tty1" + "plymouth.ignore-serial-consoles" + "snd_bcm2835.enable_hdmi=1" + "snd_bcm2835.enable_headphones=1" + "psi=1" + "iommu=force" + "iomem=relaxed" + "swiotlb=131072" + ]; + + system.stateVersion = "24.11"; + hardware.raspberry-pi."4" = { + xhci.enable = false; + dwc2.enable = true; + dwc2.dr_mode = "host"; + overlays = { + cpu-revision.enable = true; + audremap.enable = true; + vc4-kms-v3d.enable = true; + cpi-disable-pcie.enable = true; + cpi-disable-genet.enable = true; + cpi-uconsole.enable = true; + # cpi-pmu.enable = true; + cpi-i2c1.enable = false; + cpi-spi4.enable = false; + cpi-bluetooth.enable = true; + }; + }; + + hardware.deviceTree = { + enable = true; + filter = "bcm2711-rpi-cm4.dtb"; + overlaysParams = [ + { + name = "bcm2711-rpi-cm4"; + params = { + ant2 = "on"; + audio = "on"; + spi = "off"; + i2c_arm = "on"; + }; + } + { + name = "cpu-revision"; + params = {cm4-8 = "on";}; + } + { + name = "audremap"; + params = {pins_12_13 = "on";}; + } + { + name = "vc4-kms-v3d"; + params = { + cma-384 = "on"; + nohdmi1 = "on"; + }; + } + ]; + }; + + environment.systemPackages = [ + pkgs.wirelesstools + pkgs.iw + pkgs.gitMinimal + ]; + + nix.settings.experimental-features = ["nix-command" "flakes"]; + + sdImage = { + compressImage = false; + populateFirmwareCommands = let + configTxt = pkgs.writeText "config.txt" '' + [pi4] + kernel=u-boot-rpi4.bin + enable_gic=1 + armstub=armstub8-gic.bin + + [all] + arm_64bit=1 + enable_uart=1 + avoid_warnings=1 + gpio=10=ip,np + gpio=11=op + arm_boost=1 + + over_voltage=6 + arm_freq=2000 + gpu_freq=750 + + display_auto_detect=1 + ignore_lcd=1 + disable_fw_kms_setup=1 + disable_audio_dither=1 + pwm_sample_bits=20 + ''; + in '' + (cd ${pkgs.raspberrypifw}/share/raspberrypi/boot && cp bootcode.bin fixup*.dat start*.elf $NIX_BUILD_TOP/firmware/) + + # Add the config + cp ${configTxt} firmware/config.txt + + # Add pi4 specific files + cp ${pkgs.ubootRaspberryPi4_64bit}/u-boot.bin firmware/u-boot-rpi4.bin + cp ${pkgs.raspberrypi-armstubs}/armstub8-gic.bin firmware/armstub8-gic.bin + cp ${pkgs.raspberrypifw}/share/raspberrypi/boot/bcm2711-rpi-cm4.dtb firmware/ + ''; + populateRootCommands = '' + mkdir -p ./files/boot + mkdir -p ./files/boot/firmware + ${config.boot.loader.generic-extlinux-compatible.populateCmd} -c ${config.system.build.toplevel} -d ./files/boot + ''; + }; +}