Merge #9094: ati-drivers: 14.12 -> 15.7, fix builds
... with newer kernels up to 4.1 (including).
This commit is contained in:
commit
6cf49480a6
@ -7,8 +7,11 @@ set -x
|
||||
die(){ echo $@; exit 1; }
|
||||
|
||||
# custom unpack:
|
||||
mkdir fglrx
|
||||
cd fglrx
|
||||
unzip $src
|
||||
run_file=$(echo fglrx-*/amd-driver-installer-*)
|
||||
cd ..
|
||||
run_file=$(echo fglrx/amd-driver-installer-*)
|
||||
sh $run_file --extract .
|
||||
|
||||
eval "$patchPhase"
|
||||
|
@ -31,7 +31,7 @@ assert (!libsOnly) -> kernel != null;
|
||||
with stdenv.lib;
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "ati-drivers-14.12" + (optionalString (!libsOnly) "-${kernel.version}");
|
||||
name = "ati-drivers-15.7" + (optionalString (!libsOnly) "-${kernel.version}");
|
||||
|
||||
builder = ./builder.sh;
|
||||
|
||||
@ -39,12 +39,12 @@ stdenv.mkDerivation {
|
||||
gcc = stdenv.cc.cc;
|
||||
|
||||
src = fetchurl {
|
||||
url = http://www2.ati.com/drivers/linux/amd-catalyst-omega-14.12-linux-run-installers.zip;
|
||||
sha256 = "0jd2scrdlyapynxfjdrarnwcdzxjqrk5fg5i10g3bm0ay8v9hrk8";
|
||||
url = "http://www2.ati.com/drivers/linux/amd-driver-installer-15.20.1046-x86.x86_64.zip";
|
||||
sha256 = "ffde64203f49d9288eaa25f4d744187b6f4f14a87a444bab6a001d822b327a9d";
|
||||
curlOpts = "--referer http://support.amd.com/en-us/download/desktop?os=Linux%20x86_64";
|
||||
};
|
||||
|
||||
patchPhase = "patch -p1 < ${./fglrx_3.17rc6-no_hotplug.patch}";
|
||||
patchPhase = "patch -p1 < ${./kernel-api-fixes.patch}";
|
||||
patchPhaseSamples = "patch -p2 < ${./patch-samples.patch}";
|
||||
|
||||
buildInputs =
|
||||
|
@ -1,31 +0,0 @@
|
||||
source: https://aur.archlinux.org/packages/catalyst/
|
||||
|
||||
diff -uNr 14.9/common/lib/modules/fglrx/build_mod/firegl_public.c 14.9/common/lib/modules/fglrx/build_mod/firegl_public.c
|
||||
--- 14.9/common/lib/modules/fglrx/build_mod/firegl_public.c 2014-09-09 16:10:17.000000000 +0200
|
||||
+++ 14.9/common/lib/modules/fglrx/build_mod/firegl_public.c 2014-09-26 19:01:44.000000000 +0200
|
||||
@@ -1093,6 +1093,9 @@
|
||||
// directly here to allow suspend/resume without X server start.
|
||||
firegl_pci_save_state((KCL_PCI_DevHandle)pdev, privdev);
|
||||
pci_disable_device(pdev);
|
||||
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,17,0)
|
||||
+ pci_ignore_hotplug(pdev);
|
||||
+#endif
|
||||
PMSG_EVENT(pdev->dev.power.power_state) = state;
|
||||
}
|
||||
else
|
||||
diff -uNr 14.9/common/lib/modules/fglrx/build_mod/kcl_acpi.c 14.9/common/lib/modules/fglrx/build_mod/kcl_acpi.c
|
||||
--- 14.9/common/lib/modules/fglrx/build_mod/kcl_acpi.c 2014-09-09 16:10:17.000000000 +0200
|
||||
+++ 14.9/common/lib/modules/fglrx/build_mod/kcl_acpi.c 2014-09-26 18:57:27.000000000 +0200
|
||||
@@ -840,10 +840,12 @@
|
||||
if(tdev != NULL)
|
||||
{
|
||||
device = (acpi_device_adr(tdev) >> 16) & 0xffff;
|
||||
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,17,0)
|
||||
if(PCI_SLOT(pdev->devfn) == device)
|
||||
{
|
||||
tdev->flags.no_hotplug = true;
|
||||
}
|
||||
+#endif
|
||||
}
|
||||
#endif
|
||||
return 0;
|
99
pkgs/os-specific/linux/ati-drivers/kernel-api-fixes.patch
Normal file
99
pkgs/os-specific/linux/ati-drivers/kernel-api-fixes.patch
Normal file
@ -0,0 +1,99 @@
|
||||
diff -Nru 15.7/common/lib/modules/fglrx/build_mod/firegl_public.c 15.7.new/common/lib/modules/fglrx/build_mod/firegl_public.c
|
||||
--- 15.7/common/lib/modules/fglrx/build_mod/firegl_public.c 2015-07-04 10:31:23.000000000 -0400
|
||||
+++ 15.7.new/common/lib/modules/fglrx/build_mod/firegl_public.c 2015-08-03 21:21:13.893211082 -0400
|
||||
@@ -242,6 +242,14 @@
|
||||
#endif
|
||||
|
||||
// ============================================================
|
||||
+
|
||||
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,18,0)
|
||||
+#define __read_cr4 read_cr4
|
||||
+#define __write_cr4 write_cr4
|
||||
+#endif
|
||||
+
|
||||
+// ============================================================
|
||||
+
|
||||
/* globals */
|
||||
|
||||
char* firegl = NULL;
|
||||
@@ -3495,10 +3503,12 @@
|
||||
KCL_PUB_InterruptHandlerWrap,
|
||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
|
||||
((useMSI) ? (SA_INTERRUPT) : (SA_SHIRQ)),
|
||||
-#else
|
||||
+#elif LINUX_VERSION_CODE < KERNEL_VERSION(4,1,0)
|
||||
//when MSI enabled. keep irq disabled when calling the action handler,
|
||||
//exclude this IRQ from irq balancing (only on one CPU)
|
||||
((useMSI) ? (IRQF_DISABLED) : (IRQF_SHARED)),
|
||||
+#else
|
||||
+ ((useMSI) ? 0 : IRQF_SHARED),
|
||||
#endif
|
||||
dev_name,
|
||||
context);
|
||||
@@ -4498,8 +4508,8 @@
|
||||
|
||||
if (cpu_has_pge)
|
||||
{
|
||||
- cr4 = read_cr4();
|
||||
- write_cr4(cr4 & ~X86_CR4_PGE);
|
||||
+ cr4 = __read_cr4();
|
||||
+ __write_cr4(cr4 & ~X86_CR4_PGE);
|
||||
}
|
||||
__flush_tlb();
|
||||
|
||||
@@ -4512,7 +4522,7 @@
|
||||
write_cr0(cr0 & 0xbfffffff);
|
||||
if (cpu_has_pge)
|
||||
{
|
||||
- write_cr4(cr4);
|
||||
+ __write_cr4(cr4);
|
||||
}
|
||||
local_irq_restore(flags);
|
||||
|
||||
@@ -4539,8 +4549,8 @@
|
||||
|
||||
if (cpu_has_pge)
|
||||
{
|
||||
- cr4 = read_cr4();
|
||||
- write_cr4(cr4 & ~X86_CR4_PGE);
|
||||
+ cr4 = __read_cr4();
|
||||
+ __write_cr4(cr4 & ~X86_CR4_PGE);
|
||||
}
|
||||
__flush_tlb();
|
||||
|
||||
@@ -4552,7 +4562,7 @@
|
||||
write_cr0(cr0 & 0xbfffffff);
|
||||
if (cpu_has_pge)
|
||||
{
|
||||
- write_cr4(cr4);
|
||||
+ __write_cr4(cr4);
|
||||
}
|
||||
local_irq_restore(flags);
|
||||
|
||||
diff -Nru 15.7/common/lib/modules/fglrx/build_mod/kcl_acpi.c 15.7.new/common/lib/modules/fglrx/build_mod/kcl_acpi.c
|
||||
--- 15.7/common/lib/modules/fglrx/build_mod/kcl_acpi.c 2015-07-04 10:31:23.000000000 -0400
|
||||
+++ 15.7.new/common/lib/modules/fglrx/build_mod/kcl_acpi.c 2015-08-02 19:59:54.797911610 -0400
|
||||
@@ -861,7 +861,10 @@
|
||||
#elif LINUX_VERSION_CODE >= KERNEL_VERSION(3,17,0)
|
||||
if(pdev)
|
||||
{
|
||||
- pci_ignore_hotplug(pdev);
|
||||
+ struct pci_dev *bridge = pdev->bus->self;
|
||||
+
|
||||
+ pdev->ignore_hotplug = 1;
|
||||
+ if(bridge) bridge->ignore_hotplug = 1;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
diff -Nru 15.7/common/lib/modules/fglrx/build_mod/kcl_str.c 15.7.new/common/lib/modules/fglrx/build_mod/kcl_str.c
|
||||
--- 15.7/common/lib/modules/fglrx/build_mod/kcl_str.c 2015-07-04 10:31:23.000000000 -0400
|
||||
+++ 15.7.new/common/lib/modules/fglrx/build_mod/kcl_str.c 2015-08-03 00:35:25.938410435 -0400
|
||||
@@ -169,7 +169,7 @@
|
||||
const char* s2,
|
||||
KCL_TYPE_SizeSigned count)
|
||||
{
|
||||
- return strnicmp(s1, s2, count);
|
||||
+ return strncasecmp(s1, s2, count);
|
||||
}
|
||||
|
||||
/** \brief Locate character in string
|
Loading…
Reference in New Issue
Block a user