From 50dc4ef9288a6b6ba1536fabe899090a91390945 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Sat, 19 Aug 2023 13:43:22 +0200 Subject: [PATCH] friendlyarm/nanopi-r5s: init config --- README.md | 1 + flake.nix | 1 + friendlyarm/nanopi-r5s/default.nix | 78 ++++++++++++++++++++++++++++++ 3 files changed, 80 insertions(+) create mode 100644 friendlyarm/nanopi-r5s/default.nix diff --git a/README.md b/README.md index da8b1dd..48018e5 100644 --- a/README.md +++ b/README.md @@ -130,6 +130,7 @@ See code for all available configurations. | [Framework 12th Gen Intel Core](framework/12th-gen-intel) | `` | | [Framework 13th Gen Intel Core](framework/13th-gen-intel) | `` | | [FriendlyARM NanoPC-T4](friendlyarm/nanopc-t4) | `` | +| [FriendlyARM NanoPi R5s](friendlyarm/nanopi-r5s) | `` | | [Focus M2 Gen 1](focus/m2/gen1) | `` | | [GPD MicroPC](gpd/micropc) | `` | | [GPD P2 Max](gpd/p2-max) | `` | diff --git a/flake.nix b/flake.nix index 0a876cc..639bf03 100644 --- a/flake.nix +++ b/flake.nix @@ -64,6 +64,7 @@ framework-12th-gen-intel = import ./framework/12th-gen-intel; framework-13th-gen-intel = import ./framework/13th-gen-intel; friendlyarm-nanopc-t4 = import ./friendlyarm/nanopc-t4; + friendlyarm-nanopi-r5s = import ./friendlyarm/nanopi-r5s; focus-m2-gen1 = import ./focus/m2/gen1; google-pixelbook = import ./google/pixelbook; gpd-micropc = import ./gpd/micropc; diff --git a/friendlyarm/nanopi-r5s/default.nix b/friendlyarm/nanopi-r5s/default.nix new file mode 100644 index 0000000..019b5b8 --- /dev/null +++ b/friendlyarm/nanopi-r5s/default.nix @@ -0,0 +1,78 @@ +{ lib +, pkgs +, ... +}: + +{ + boot.loader = { + grub.enable = lib.mkDefault false; + # Enables the generation of /boot/extlinux/extlinux.conf. + generic-extlinux-compatible = { + enable = lib.mkDefault true; + useGenerationDeviceTree = true; + }; + }; + + # This file needs to be at the top of /boot + hardware.deviceTree.name = lib.mkDefault "../../rk3568-nanopi-r5s.dtb"; + + boot.kernelParams = [ + "console=tty1" + "console=ttyS2,1500000" + "earlycon=uart8250,mmio32,0xfe660000" + ]; + boot.kernelPatches = [ + { + name = "rockchip-config.patch"; + patch = null; + extraConfig = '' + PCIE_ROCKCHIP_EP y + PCIE_ROCKCHIP_DW_HOST y + ROCKCHIP_VOP2 y + ''; + } + { + name = "status-leds.patch"; + patch = null; + extraConfig = '' + LED_TRIGGER_PHY y + USB_LED_TRIG y + LEDS_BRIGHTNESS_HW_CHANGED y + LEDS_TRIGGER_MTD y + ''; + } + ]; + + boot.initrd.availableKernelModules = [ + ## Rockchip + ## Storage + "sdhci_of_dwcmshc" + "dw_mmc_rockchip" + + "analogix_dp" + "io-domain" + "rockchip_saradc" + "rockchip_thermal" + "rockchipdrm" + "rockchip-rga" + "pcie_rockchip_host" + "phy-rockchip-pcie" + "phy_rockchip_snps_pcie3" + "phy_rockchip_naneng_combphy" + "phy_rockchip_inno_usb2" + "dwmac_rk" + "dw_wdt" + "dw_hdmi" + "dw_hdmi_cec" + "dw_hdmi_i2s_audio" + "dw_mipi_dsi" + ]; + + # Most Rockchip CPUs (especially with hybrid cores) work best with "schedutil" + powerManagement.cpuFreqGovernor = "schedutil"; + + # Let's blacklist the Rockchips RTC module so that the + # battery-powered HYM8563 (rtc_hym8563 kernel module) will be used + # by default + boot.blacklistedKernelModules = [ "rtc_rk808" ]; +}