diff options
author | Harald Freudenberger <freude@linux.vnet.ibm.com> | 2017-03-16 20:48:31 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-03-22 07:43:38 -0400 |
commit | e627116c0c35d3d42fb031683606a49ce7d63cc5 (patch) | |
tree | a5b8a93bf2bfc14e16f7c20c4811e4af41559259 | |
parent | 61a153d06ef4ce17bf2a200dc6e7247dc3b56a57 (diff) |
s390/zcrypt: Introduce CEX6 toleration
[ Upstream commit b3e8652bcbfa04807e44708d4d0c8cdad39c9215 ]
Signed-off-by: Harald Freudenberger <freude@linux.vnet.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: Sasha Levin <alexander.levin@verizon.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/s390/crypto/ap_bus.c | 3 | ||||
-rw-r--r-- | drivers/s390/crypto/ap_bus.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/drivers/s390/crypto/ap_bus.c b/drivers/s390/crypto/ap_bus.c index ed92fb09fc8e..76b802cf2f0b 100644 --- a/drivers/s390/crypto/ap_bus.c +++ b/drivers/s390/crypto/ap_bus.c | |||
@@ -1712,6 +1712,9 @@ static void ap_scan_bus(struct work_struct *unused) | |||
1712 | ap_dev->queue_depth = queue_depth; | 1712 | ap_dev->queue_depth = queue_depth; |
1713 | ap_dev->raw_hwtype = device_type; | 1713 | ap_dev->raw_hwtype = device_type; |
1714 | ap_dev->device_type = device_type; | 1714 | ap_dev->device_type = device_type; |
1715 | /* CEX6 toleration: map to CEX5 */ | ||
1716 | if (device_type == AP_DEVICE_TYPE_CEX6) | ||
1717 | ap_dev->device_type = AP_DEVICE_TYPE_CEX5; | ||
1715 | ap_dev->functions = device_functions; | 1718 | ap_dev->functions = device_functions; |
1716 | spin_lock_init(&ap_dev->lock); | 1719 | spin_lock_init(&ap_dev->lock); |
1717 | INIT_LIST_HEAD(&ap_dev->pendingq); | 1720 | INIT_LIST_HEAD(&ap_dev->pendingq); |
diff --git a/drivers/s390/crypto/ap_bus.h b/drivers/s390/crypto/ap_bus.h index d7fdf5c024d7..fd66d2c450d5 100644 --- a/drivers/s390/crypto/ap_bus.h +++ b/drivers/s390/crypto/ap_bus.h | |||
@@ -105,6 +105,7 @@ static inline int ap_test_bit(unsigned int *ptr, unsigned int nr) | |||
105 | #define AP_DEVICE_TYPE_CEX3C 9 | 105 | #define AP_DEVICE_TYPE_CEX3C 9 |
106 | #define AP_DEVICE_TYPE_CEX4 10 | 106 | #define AP_DEVICE_TYPE_CEX4 10 |
107 | #define AP_DEVICE_TYPE_CEX5 11 | 107 | #define AP_DEVICE_TYPE_CEX5 11 |
108 | #define AP_DEVICE_TYPE_CEX6 12 | ||
108 | 109 | ||
109 | /* | 110 | /* |
110 | * Known function facilities | 111 | * Known function facilities |