From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753291AbdJMRkN (ORCPT ); Fri, 13 Oct 2017 13:40:13 -0400 Received: from mx0b-001b2d01.pphosted.com ([148.163.158.5]:40134 "EHLO mx0a-001b2d01.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1753230AbdJMRkJ (ORCPT ); Fri, 13 Oct 2017 13:40:09 -0400 From: Tony Krowiak To: linux-s390@vger.kernel.org, linux-kernel@vger.kernel.org, kvm@vger.kernel.org Cc: freude@de.ibm.com, schwidefsky@de.ibm.com, heiko.carstens@de.ibm.com, borntraeger@de.ibm.com, cohuck@redhat.com, kwankhede@nvidia.com, bjsdjshi@linux.vnet.ibm.com, pbonzini@redhat.com, alex.williamson@redhat.com, pmorel@linux.vnet.ibm.com, alifm@linux.vnet.ibm.com, mjrosato@linux.vnet.ibm.com, qemu-s390x@nongnu.org, jjherne@linux.vnet.ibm.com, thuth@redhat.com, pasic@linux.vnet.ibm.com, Tony Krowiak Subject: [RFC 12/19] s390/zcrypt: sysfs support for control domain assignment Date: Fri, 13 Oct 2017 13:38:57 -0400 X-Mailer: git-send-email 1.7.1 In-Reply-To: <1507916344-3896-1-git-send-email-akrowiak@linux.vnet.ibm.com> References: <1507916344-3896-1-git-send-email-akrowiak@linux.vnet.ibm.com> X-TM-AS-GCONF: 00 x-cbid: 17101317-0024-0000-0000-000002E290FE X-IBM-SpamModules-Scores: X-IBM-SpamModules-Versions: BY=3.00007892; HX=3.00000241; KW=3.00000007; PH=3.00000004; SC=3.00000236; SDB=6.00930643; UDB=6.00468500; IPR=6.00710909; BA=6.00005636; NDR=6.00000001; ZLA=6.00000005; ZF=6.00000009; ZB=6.00000000; ZP=6.00000000; ZH=6.00000000; ZU=6.00000002; MB=3.00017529; XFM=3.00000015; UTC=2017-10-13 17:40:05 X-IBM-AV-DETECTION: SAVI=unused REMOTE=unused XFE=unused x-cbparentid: 17101317-0025-0000-0000-000045B86C8F Message-Id: <1507916344-3896-13-git-send-email-akrowiak@linux.vnet.ibm.com> X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2017-10-13_07:,, signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 spamscore=0 suspectscore=0 malwarescore=0 phishscore=0 adultscore=0 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1707230000 definitions=main-1710130244 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Provides the sysfs interfaces for assigning an AP control domain to and unassigning a control domain from a mediated matrix device. The relevant sysfs structures are: /sys/devices/ap_matrix ... [matrix] ...... [mdev_supported_types] ......... [ap_matrix-passthrough] ............ [devices] ...............[$uuid] .................. assign_control_domain .................. unassign_control_domain .................. control_domains To assign a control domain to the $uuid mediated matrix device, write its domain ID (hex value) to the assign_control_domain file. To unassign a control domain, write its domain ID to the unassign_control_domain file. To display the list of control domains assigned, print the domains file. For example, to assign control domain 0xff to the $uuid mediated matrix device: echo ff > assign_control_domain To see the list of control domains assigned: cat control_domains To unassign control domain 0xff: echo ff > unassign_control_domain Signed-off-by: Tony Krowiak --- drivers/s390/crypto/vfio_ap_matrix_ops.c | 82 ++++++++++++++++++++++++++++++ 1 files changed, 82 insertions(+), 0 deletions(-) diff --git a/drivers/s390/crypto/vfio_ap_matrix_ops.c b/drivers/s390/crypto/vfio_ap_matrix_ops.c index 74d7feb..2387916 100644 --- a/drivers/s390/crypto/vfio_ap_matrix_ops.c +++ b/drivers/s390/crypto/vfio_ap_matrix_ops.c @@ -469,6 +469,85 @@ static ssize_t ap_matrix_domains_show(struct device *dev, static DEVICE_ATTR(domains, 0644, ap_matrix_domains_show, NULL); +static ssize_t ap_matrix_control_domain_assign(struct device *dev, + struct device_attribute *attr, + const char *buf, size_t count) +{ + int ret; + unsigned int id; + struct mdev_device *mdev = mdev_from_dev(dev); + struct ap_matrix_mdev *matrix_mdev = mdev_get_drvdata(mdev); + + ret = ap_matrix_parse_id(buf, &id); + if (ret) + return ret; + + set_bit_inv((unsigned long)id, + (unsigned long *)matrix_mdev->masks.adm); + + return count; +} +static DEVICE_ATTR(assign_control_domain, 0644, NULL, + ap_matrix_control_domain_assign); + +static ssize_t ap_matrix_control_domain_unassign(struct device *dev, + struct device_attribute *attr, + const char *buf, size_t count) +{ + int ret; + unsigned int id; + struct mdev_device *mdev = mdev_from_dev(dev); + struct ap_matrix_mdev *matrix_mdev = mdev_get_drvdata(mdev); + + ret = ap_matrix_parse_id(buf, &id); + if (ret) + return ret; + + clear_bit_inv((unsigned long)id, + (unsigned long *)matrix_mdev->masks.adm); + + return count; +} +static DEVICE_ATTR(unassign_control_domain, 0644, NULL, + ap_matrix_control_domain_unassign); + +static ssize_t ap_matrix_control_domains_show(struct device *dev, + struct device_attribute *attr, + char *buf) +{ + struct mdev_device *mdev = mdev_from_dev(dev); + struct ap_matrix_mdev *matrix_mdev = mdev_get_drvdata(mdev); + unsigned long *adm = (unsigned long *)matrix_mdev->masks.adm; + unsigned long id; + unsigned long nbits = 256; + char *bufpos = buf; + int nchars = 0; + int n; + + id = find_first_bit_inv(adm, nbits); + while (id < nbits) { + if (nchars) { + n = sprintf(bufpos, ","); + bufpos += n; + nchars += n; + } + + n = sprintf(bufpos, "%04lx", id); + bufpos += n; + nchars += n; + id = find_next_bit_inv(adm, nbits, id + 1); + } + + n = sprintf(bufpos, "\n"); + bufpos += n; + nchars += n; + + return nchars; +} + +static DEVICE_ATTR(control_domains, 0644, ap_matrix_control_domains_show, + NULL); + static struct attribute *ap_matrix_mdev_attrs[] = { &dev_attr_assign_adapter.attr, &dev_attr_unassign_adapter.attr, @@ -476,6 +555,9 @@ static DEVICE_ATTR(domains, 0644, ap_matrix_domains_show, &dev_attr_assign_domain.attr, &dev_attr_unassign_domain.attr, &dev_attr_domains.attr, + &dev_attr_assign_control_domain.attr, + &dev_attr_unassign_control_domain.attr, + &dev_attr_control_domains.attr, NULL }; -- 1.7.1