diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2021-07-07 02:38:38 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2021-07-07 02:38:38 +0000 |
commit | 6bb755fb0b3a86e74bddf872d0909f8eef2deee2 (patch) | |
tree | ea54a9ba30a55d109031a0f8ddcb0ae3bee8d8d3 /sys/arch/powerpc64 | |
parent | bfdb1948a72bd623dc923468f3b840fa4643707f (diff) |
update drm to linux 5.10.47
hardware support changes include
inteldrm: better support for tiger lake
amdgpu: support for navi12, navi21 "sienna_cichlid", arcturus
amdgpu: support for cezanne "green sardine" ryzen 5000 apu
Thanks to the OpenBSD Foundation for sponsoring this work,
patrick@ for helping adapt rockchip drm, kettenis@ and mpi@
for uvm discussions and various testers.
Diffstat (limited to 'sys/arch/powerpc64')
-rw-r--r-- | sys/arch/powerpc64/conf/Makefile.powerpc64 | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/sys/arch/powerpc64/conf/Makefile.powerpc64 b/sys/arch/powerpc64/conf/Makefile.powerpc64 index d8143dff423..d8489d804cf 100644 --- a/sys/arch/powerpc64/conf/Makefile.powerpc64 +++ b/sys/arch/powerpc64/conf/Makefile.powerpc64 @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.powerpc64,v 1.9 2021/01/28 17:39:03 deraadt Exp $ +# $OpenBSD: Makefile.powerpc64,v 1.10 2021/07/07 02:38:21 jsg Exp $ # For instructions on building kernels consult the config(8) and options(4) # manual pages. @@ -31,9 +31,13 @@ INCLUDES= -nostdinc -I$S -I${.OBJDIR} -I$S/arch \ -I$S/dev/pci/drm/amd/display/include \ -I$S/dev/pci/drm/amd/display/dc \ -I$S/dev/pci/drm/amd/display/amdgpu_dm \ - -I$S/dev/pci/drm/amd/powerplay/inc \ - -I$S/dev/pci/drm/amd/powerplay/smumgr \ - -I$S/dev/pci/drm/amd/powerplay/hwmgr \ + -I$S/dev/pci/drm/amd/pm/inc \ + -I$S/dev/pci/drm/amd/pm/swsmu \ + -I$S/dev/pci/drm/amd/pm/swsmu/smu11 \ + -I$S/dev/pci/drm/amd/pm/swsmu/smu12 \ + -I$S/dev/pci/drm/amd/pm/powerplay \ + -I$S/dev/pci/drm/amd/pm/powerplay/hwmgr \ + -I$S/dev/pci/drm/amd/pm/powerplay/smumgr \ -I$S/dev/pci/drm/amd/display/dc/inc \ -I$S/dev/pci/drm/amd/display/dc/inc/hw \ -I$S/dev/pci/drm/amd/display/dc/clk_mgr \ |