-
-
Notifications
You must be signed in to change notification settings - Fork 744
feat: add kernel switching for Microsoft Surface devices #1443
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Mic92
merged 9 commits into
NixOS:master
from
8bitbuddhist:surface/kernel-multiple-versions
Apr 24, 2025
Merged
Changes from 7 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
8141742
microsoft/surface: add kernel switching for LTS and latest kernels
8bitbuddhist 9726adf
microsoft/surface: add kernel source hash logic
8bitbuddhist bb295c0
microsoft/surface: remove repos.nix file and update README
8bitbuddhist dab2104
microsoft/surface: switch back to using sha256 instead of hash due to…
8bitbuddhist 2034c5d
microsoft/surface: rename 'lts' and 'latest' to 'longterm' and 'stable'
8bitbuddhist 33aa2d8
microsoft/surface: decouple kernel source and linux-surface package v…
8bitbuddhist 0012cff
microsoft/surface: update stable linux-surface to 6.14.2
8bitbuddhist 34f02c3
Apply suggestions from code review - option name
8bitbuddhist 306ff6c
surface: revert longterm kernel to 6.12.19
8bitbuddhist File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,89 @@ | ||
{ lib, ... }: | ||
{ config, lib, pkgs, ... }: | ||
|
||
let | ||
inherit (lib) mkDefault; | ||
inherit (lib) mkDefault mkOption types versions; | ||
|
||
# Set the version and hash for the kernel sources | ||
srcVersion = with config.microsoft-surface; | ||
if kernelVersion == "longterm" then | ||
"6.12.22" | ||
else if kernelVersion == "stable" then | ||
"6.14.2" | ||
else | ||
abort "Invalid kernel version: ${kernelVersion}"; | ||
|
||
srcHash = with config.microsoft-surface; | ||
if kernelVersion == "longterm" then | ||
"sha256-q0iACrSZhaeNIxiuisXyj9PhI+oXNX7yFJgQWlMzczY=" | ||
else if kernelVersion == "stable" then | ||
"sha256-xcaCo1TqMZATk1elfTSnnlw3IhrOgjqTjhARa1d6Lhs=" | ||
else | ||
abort "Invalid kernel version: ${kernelVersion}"; | ||
|
||
# Set the version and hash for the linux-surface releases | ||
pkgVersion = with config.microsoft-surface; | ||
if kernelVersion == "longterm" then | ||
"6.12.7" | ||
else if kernelVersion == "stable" then | ||
"6.14.2" | ||
else | ||
abort "Invalid kernel version: ${kernelVersion}"; | ||
|
||
pkgHash = with config.microsoft-surface; | ||
if kernelVersion == "longterm" then | ||
"sha256-Pv7O8D8ma+MPLhYP3HSGQki+Yczp8b7d63qMb6l4+mY=" | ||
else if kernelVersion == "stable" then | ||
"sha256-Pzn+C52TtDcqDVepM5z2cVNCsnRDy0Wwn+FLwgsuicQ=" | ||
else | ||
abort "Invalid kernel version: ${kernelVersion}"; | ||
|
||
# Fetch the linux-surface package | ||
repos = pkgs.callPackage ({ fetchFromGitHub, rev, hash }: { | ||
linux-surface = fetchFromGitHub { | ||
owner = "linux-surface"; | ||
repo = "linux-surface"; | ||
rev = rev; | ||
hash = hash; | ||
}; | ||
}) { hash = pkgHash; rev = "arch-${pkgVersion}-1"; }; | ||
|
||
# Fetch and build the kernel package | ||
inherit (pkgs.callPackage ./kernel/linux-package.nix { inherit repos; }) linuxPackage surfacePatches; | ||
kernelPatches = surfacePatches { | ||
version = pkgVersion; | ||
patchFn = ./kernel/${versions.majorMinor pkgVersion}/patches.nix; | ||
}; | ||
kernelPackages = linuxPackage { | ||
inherit kernelPatches; version = srcVersion; | ||
sha256 = srcHash; | ||
ignoreConfigErrors=true; | ||
}; | ||
|
||
in { | ||
imports = [ | ||
./kernel | ||
]; | ||
options.microsoft-surface.kernelVersion = mkOption { | ||
8bitbuddhist marked this conversation as resolved.
Show resolved
Hide resolved
|
||
description = "Kernel Version to use (patched for MS Surface)"; | ||
type = types.enum [ | ||
"longterm" | ||
"stable" | ||
]; | ||
default = "longterm"; | ||
}; | ||
|
||
microsoft-surface.kernelVersion = mkDefault "6.12"; | ||
config = { | ||
boot = { | ||
inherit kernelPackages; | ||
|
||
# Seems to be required to properly enable S0ix "Modern Standby": | ||
boot.kernelParams = mkDefault [ "mem_sleep_default=deep" ]; | ||
# Seems to be required to properly enable S0ix "Modern Standby": | ||
kernelParams = mkDefault [ "mem_sleep_default=deep" ]; | ||
}; | ||
|
||
# NOTE: Check the README before enabling TLP: | ||
services.tlp.enable = mkDefault false; | ||
# NOTE: Check the README before enabling TLP: | ||
services.tlp.enable = mkDefault false; | ||
|
||
# i.e. needed for wifi firmware, see https://github.com/NixOS/nixos-hardware/issues/364 | ||
hardware.enableRedistributableFirmware = mkDefault true; | ||
hardware.sensor.iio.enable = mkDefault true; | ||
# Needed for wifi firmware, see https://github.com/NixOS/nixos-hardware/issues/364 | ||
hardware = { | ||
enableRedistributableFirmware = mkDefault true; | ||
sensor.iio.enable = mkDefault true; | ||
}; | ||
}; | ||
} |
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,158 @@ | ||
{ lib, | ||
kernel ? lib.kernel, | ||
patchSrc, | ||
version, | ||
}: | ||
|
||
[ | ||
{ | ||
name = "microsoft-surface-patches-linux-${version}"; | ||
patch = null; | ||
extraStructuredConfig = with kernel; { | ||
STAGING_MEDIA = yes; | ||
## | ||
## Surface Aggregator Module | ||
## | ||
CONFIG_SURFACE_AGGREGATOR = module; | ||
# CONFIG_SURFACE_AGGREGATOR_ERROR_INJECTION is not set | ||
CONFIG_SURFACE_AGGREGATOR_BUS = yes; | ||
CONFIG_SURFACE_AGGREGATOR_CDEV = module; | ||
CONFIG_SURFACE_AGGREGATOR_HUB = module; | ||
CONFIG_SURFACE_AGGREGATOR_REGISTRY = module; | ||
CONFIG_SURFACE_AGGREGATOR_TABLET_SWITCH = module; | ||
|
||
CONFIG_SURFACE_ACPI_NOTIFY = module; | ||
CONFIG_SURFACE_DTX = module; | ||
CONFIG_SURFACE_PLATFORM_PROFILE = module; | ||
|
||
CONFIG_SURFACE_HID = module; | ||
CONFIG_SURFACE_KBD = module; | ||
|
||
CONFIG_BATTERY_SURFACE = module; | ||
CONFIG_CHARGER_SURFACE = module; | ||
|
||
CONFIG_SENSORS_SURFACE_TEMP = module; | ||
CONFIG_SENSORS_SURFACE_FAN = module; | ||
|
||
CONFIG_RTC_DRV_SURFACE = module; | ||
|
||
## | ||
## Surface Hotplug | ||
## | ||
CONFIG_SURFACE_HOTPLUG = module; | ||
|
||
## | ||
## IPTS and ITHC touchscreen | ||
## | ||
## This only enables the user interface for IPTS/ITHC data. | ||
## For the touchscreen to work, you need to install iptsd. | ||
## | ||
CONFIG_HID_IPTS = module; | ||
CONFIG_HID_ITHC = module; | ||
|
||
## | ||
## Cameras: IPU3 | ||
## | ||
CONFIG_VIDEO_DW9719 = module; | ||
CONFIG_VIDEO_IPU3_IMGU = module; | ||
CONFIG_VIDEO_IPU3_CIO2 = module; | ||
CONFIG_IPU_BRIDGE = module; | ||
CONFIG_INTEL_SKL_INT3472 = module; | ||
CONFIG_REGULATOR_TPS68470 = module; | ||
CONFIG_COMMON_CLK_TPS68470 = module; | ||
CONFIG_LEDS_TPS68470 = module; | ||
|
||
## | ||
## Cameras: Sensor drivers | ||
## | ||
CONFIG_VIDEO_OV5693 = module; | ||
CONFIG_VIDEO_OV7251 = module; | ||
CONFIG_VIDEO_OV8865 = module; | ||
|
||
## | ||
## Surface 3: atomisp causes problems (see issue #1095). Disable it for now. | ||
## | ||
# CONFIG_INTEL_ATOMISP is not set | ||
|
||
## | ||
## ALS Sensor for Surface Book 3, Surface Laptop 3, Surface Pro 7 | ||
## | ||
CONFIG_APDS9960 = module; | ||
|
||
## | ||
## Build-in UFS support (required for some Surface Go devices) | ||
## | ||
CONFIG_SCSI_UFSHCD = module; | ||
CONFIG_SCSI_UFSHCD_PCI = module; | ||
|
||
## | ||
## Other Drivers | ||
## | ||
CONFIG_INPUT_SOC_BUTTON_ARRAY = module; | ||
CONFIG_SURFACE_3_POWER_OPREGION = module; | ||
CONFIG_SURFACE_PRO3_BUTTON = module; | ||
CONFIG_SURFACE_GPE = module; | ||
CONFIG_SURFACE_BOOK1_DGPU_SWITCH = module; | ||
}; | ||
} | ||
{ | ||
name = "ms-surface/0001-secureboot"; | ||
patch = patchSrc + "/0001-secureboot.patch"; | ||
} | ||
{ | ||
name = "ms-surface/0002-surface3"; | ||
patch = patchSrc + "/0002-surface3.patch"; | ||
} | ||
{ | ||
name = "ms-surface/0003-mwifiex"; | ||
patch = patchSrc + "/0003-mwifiex.patch"; | ||
} | ||
{ | ||
name = "ms-surface/0004-ath10k"; | ||
patch = patchSrc + "/0004-ath10k.patch"; | ||
} | ||
{ | ||
name = "ms-surface/0005-ipts"; | ||
patch = patchSrc + "/0005-ipts.patch"; | ||
} | ||
{ | ||
name = "ms-surface/0006-ithc"; | ||
patch = patchSrc + "/0006-ithc.patch"; | ||
} | ||
{ | ||
name = "ms-surface/0007-surface-sam"; | ||
patch = patchSrc + "/0007-surface-sam.patch"; | ||
} | ||
{ | ||
name = "ms-surface/0008-surface-sam-over-hid"; | ||
patch = patchSrc + "/0008-surface-sam-over-hid.patch"; | ||
} | ||
{ | ||
name = "ms-surface/0009-surface-button"; | ||
patch = patchSrc + "/0009-surface-button.patch"; | ||
} | ||
{ | ||
name = "ms-surface/0010-surface-typecover"; | ||
patch = patchSrc + "/0010-surface-typecover.patch"; | ||
} | ||
{ | ||
name = "ms-surface/0011-surface-shutdown"; | ||
patch = patchSrc + "/0011-surface-shutdown.patch"; | ||
} | ||
{ | ||
name = "ms-surface/0012-surface-gpe"; | ||
patch = patchSrc + "/0012-surface-gpe.patch"; | ||
} | ||
{ | ||
name = "ms-surface/0013-cameras"; | ||
patch = patchSrc + "/0013-cameras.patch"; | ||
} | ||
{ | ||
name = "ms-surface/0014-amd-gpio"; | ||
patch = patchSrc + "/0014-amd-gpio.patch"; | ||
} | ||
{ | ||
name = "ms-surface/0015-rtc"; | ||
patch = patchSrc + "/0015-rtc.patch"; | ||
} | ||
] |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.