Skip to content

Commit

Permalink
amdsmn(4): Add support AMD family F1Ah model 0xh "Turin".
Browse files Browse the repository at this point in the history
  • Loading branch information
msaitoh committed Oct 17, 2024
1 parent 7793af8 commit 00fddab
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions sys/arch/x86/pci/amdsmn.c
Original file line number Diff line number Diff line change
@@ -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 <cem@FreeBSD.org>
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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 *);
Expand Down

0 comments on commit 00fddab

Please sign in to comment.