Module Name: src Committed By: msaitoh Date: Thu Oct 17 14:02:40 UTC 2024
Modified Files: src/sys/arch/x86/pci: amdsmn.c Log Message: amdsmn(4): Add support AMD family F1Ah model 0xh "Turin". To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 src/sys/arch/x86/pci/amdsmn.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/arch/x86/pci/amdsmn.c diff -u src/sys/arch/x86/pci/amdsmn.c:1.17 src/sys/arch/x86/pci/amdsmn.c:1.18 --- src/sys/arch/x86/pci/amdsmn.c:1.17 Fri Jul 28 02:28:33 2023 +++ src/sys/arch/x86/pci/amdsmn.c Thu Oct 17 14:02:40 2024 @@ -1,4 +1,4 @@ -/* $NetBSD: amdsmn.c,v 1.17 2023/07/28 02:28:33 msaitoh Exp $ */ +/* $NetBSD: amdsmn.c,v 1.18 2024/10/17 14:02:40 msaitoh Exp $ */ /*- * Copyright (c) 2017, 2019 Conrad Meyer <c...@freebsd.org> @@ -29,7 +29,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: amdsmn.c,v 1.17 2023/07/28 02:28:33 msaitoh Exp $ "); +__KERNEL_RCSID(0, "$NetBSD: amdsmn.c,v 1.18 2024/10/17 14:02:40 msaitoh Exp $ "); /* * Driver for the AMD Family 15h (model 60+) and 17h CPU @@ -117,6 +117,11 @@ static const struct pciid { .amdsmn_addr_reg = F17H_SMN_ADDR_REG, .amdsmn_data_reg = F17H_SMN_DATA_REG, }, + { + .amdsmn_deviceid = PCI_PRODUCT_AMD_F1A_0X_RC, + .amdsmn_addr_reg = F17H_SMN_ADDR_REG, + .amdsmn_data_reg = F17H_SMN_DATA_REG, + }, }; static int amdsmn_match(device_t, cfdata_t, void *);