diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2018-04-20 04:37:22 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2018-04-20 04:37:22 +0000 |
commit | a81444beb21996e9e2da43fea54dc17a974a1b8d (patch) | |
tree | bbd634b9c7003096e1eed18789c9550f6e08a55a /sys/dev/pci/files.pci | |
parent | 4981398be1f052f9004563077f088dce600f9b50 (diff) |
add a small driver for AMDs cryptographic co processor.
the hardware provides crypto offload, zlib offload, and an rng.
this code only supports the rng at the moment.
this device is present on their amd seatlle platforms, and very
present on their epyc stuff.
ok kettenis@ jmatthew@
Diffstat (limited to 'sys/dev/pci/files.pci')
-rw-r--r-- | sys/dev/pci/files.pci | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/dev/pci/files.pci b/sys/dev/pci/files.pci index 9d0c00a728a..cbec1fcd7a3 100644 --- a/sys/dev/pci/files.pci +++ b/sys/dev/pci/files.pci @@ -1,4 +1,4 @@ -# $OpenBSD: files.pci,v 1.333 2017/12/24 19:50:56 patrick Exp $ +# $OpenBSD: files.pci,v 1.334 2018/04/20 04:37:21 dlg Exp $ # $NetBSD: files.pci,v 1.20 1996/09/24 17:47:15 christos Exp $ # # Config file and device description for machine-independent PCI code. @@ -819,5 +819,9 @@ file dev/pci/dwiic_pci.c dwiic_pci attach bwfm at pci with bwfm_pci: firmload file dev/pci/if_bwfm_pci.c bwfm_pci +# AMD Cryptographic Co-processor +attach ccp at pci with ccp_pci +file dev/pci/ccp_pci.c ccp_pci + include "dev/pci/files.agp" include "dev/pci/drm/files.drm" |