svn commit: r360248 - head/sys/crypto/ccp

Andriy Gapon avg at FreeBSD.org
Fri Apr 24 10:20:55 UTC 2020


Author: avg
Date: Fri Apr 24 10:20:54 2020
New Revision: 360248
URL: https://svnweb.freebsd.org/changeset/base/360248

Log:
  ccp: add a new hardware ID, found on AMD Ryzen 3 3200U
  
  pciconf reports the device as:
  Family 17h (Models 10h-1fh) Platform Security Processor
  
  dmesg:
  ccp0: <AMD CCP-5a> mem 0xfe500000-0xfe5fffff,0xfe68c000-0xfe68dfff at device 0.2 on pci4
  crypto: assign ccp0 driver id 1, flags 0x1000000
  
  MFC after:	1 week

Modified:
  head/sys/crypto/ccp/ccp.c

Modified: head/sys/crypto/ccp/ccp.c
==============================================================================
--- head/sys/crypto/ccp/ccp.c	Fri Apr 24 10:03:11 2020	(r360247)
+++ head/sys/crypto/ccp/ccp.c	Fri Apr 24 10:20:54 2020	(r360248)
@@ -78,6 +78,7 @@ static struct pciid {
 } ccp_ids[] = {
 	{ 0x14561022, "AMD CCP-5a" },
 	{ 0x14681022, "AMD CCP-5b" },
+	{ 0x15df1022, "AMD CCP-5a" },
 };
 
 static struct random_source random_ccp = {


More information about the svn-src-all mailing list