2019-06-04 16:11:33 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2016-11-17 04:46:13 +08:00
|
|
|
/*
|
|
|
|
* Mediated device definition
|
|
|
|
*
|
|
|
|
* Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
|
|
|
|
* Author: Neo Jia <cjia@nvidia.com>
|
|
|
|
* Kirti Wankhede <kwankhede@nvidia.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MDEV_H
|
|
|
|
#define MDEV_H
|
|
|
|
|
2021-04-07 03:40:28 +08:00
|
|
|
struct mdev_type;
|
|
|
|
|
2021-04-07 03:40:26 +08:00
|
|
|
struct mdev_device {
|
|
|
|
struct device dev;
|
|
|
|
guid_t uuid;
|
|
|
|
struct list_head next;
|
2021-04-07 03:40:28 +08:00
|
|
|
struct mdev_type *type;
|
2021-04-07 03:40:26 +08:00
|
|
|
bool active;
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline struct mdev_device *to_mdev_device(struct device *dev)
|
|
|
|
{
|
|
|
|
return container_of(dev, struct mdev_device, dev);
|
|
|
|
}
|
2016-11-17 04:46:13 +08:00
|
|
|
|
2021-04-07 03:40:34 +08:00
|
|
|
unsigned int mdev_get_type_group_id(struct mdev_device *mdev);
|
vfio/mdev: Correct the function signatures for the mdev_type_attributes
The driver core standard is to pass in the properly typed object, the
properly typed attribute and the buffer data. It stems from the root
kobject method:
ssize_t (*show)(struct kobject *kobj, struct kobj_attribute *attr,..)
Each subclass of kobject should provide their own function with the same
signature but more specific types, eg struct device uses:
ssize_t (*show)(struct device *dev, struct device_attribute *attr,..)
In this case the existing signature is:
ssize_t (*show)(struct kobject *kobj, struct device *dev,..)
Where kobj is a 'struct mdev_type *' and dev is 'mdev_type->parent->dev'.
Change the mdev_type related sysfs attribute functions to:
ssize_t (*show)(struct mdev_type *mtype, struct mdev_type_attribute *attr,..)
In order to restore type safety and match the driver core standard
There are no current users of 'attr', but if it is ever needed it would be
hard to add in retroactively, so do it now.
Reviewed-by: Kevin Tian <kevin.tian@intel.com>
Reviewed-by: Cornelia Huck <cohuck@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
Message-Id: <18-v2-d36939638fc6+d54-vfio2_jgg@nvidia.com>
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
2021-04-07 03:40:41 +08:00
|
|
|
unsigned int mtype_get_type_group_id(struct mdev_type *mtype);
|
|
|
|
struct device *mtype_get_parent_dev(struct mdev_type *mtype);
|
2021-04-07 03:40:34 +08:00
|
|
|
|
2016-11-17 04:46:13 +08:00
|
|
|
/* interface for exporting mdev supported type attributes */
|
|
|
|
struct mdev_type_attribute {
|
|
|
|
struct attribute attr;
|
vfio/mdev: Correct the function signatures for the mdev_type_attributes
The driver core standard is to pass in the properly typed object, the
properly typed attribute and the buffer data. It stems from the root
kobject method:
ssize_t (*show)(struct kobject *kobj, struct kobj_attribute *attr,..)
Each subclass of kobject should provide their own function with the same
signature but more specific types, eg struct device uses:
ssize_t (*show)(struct device *dev, struct device_attribute *attr,..)
In this case the existing signature is:
ssize_t (*show)(struct kobject *kobj, struct device *dev,..)
Where kobj is a 'struct mdev_type *' and dev is 'mdev_type->parent->dev'.
Change the mdev_type related sysfs attribute functions to:
ssize_t (*show)(struct mdev_type *mtype, struct mdev_type_attribute *attr,..)
In order to restore type safety and match the driver core standard
There are no current users of 'attr', but if it is ever needed it would be
hard to add in retroactively, so do it now.
Reviewed-by: Kevin Tian <kevin.tian@intel.com>
Reviewed-by: Cornelia Huck <cohuck@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
Message-Id: <18-v2-d36939638fc6+d54-vfio2_jgg@nvidia.com>
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
2021-04-07 03:40:41 +08:00
|
|
|
ssize_t (*show)(struct mdev_type *mtype,
|
|
|
|
struct mdev_type_attribute *attr, char *buf);
|
|
|
|
ssize_t (*store)(struct mdev_type *mtype,
|
|
|
|
struct mdev_type_attribute *attr, const char *buf,
|
|
|
|
size_t count);
|
2016-11-17 04:46:13 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#define MDEV_TYPE_ATTR(_name, _mode, _show, _store) \
|
|
|
|
struct mdev_type_attribute mdev_type_attr_##_name = \
|
|
|
|
__ATTR(_name, _mode, _show, _store)
|
|
|
|
#define MDEV_TYPE_ATTR_RW(_name) \
|
|
|
|
struct mdev_type_attribute mdev_type_attr_##_name = __ATTR_RW(_name)
|
|
|
|
#define MDEV_TYPE_ATTR_RO(_name) \
|
|
|
|
struct mdev_type_attribute mdev_type_attr_##_name = __ATTR_RO(_name)
|
|
|
|
#define MDEV_TYPE_ATTR_WO(_name) \
|
|
|
|
struct mdev_type_attribute mdev_type_attr_##_name = __ATTR_WO(_name)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* struct mdev_driver - Mediated device driver
|
|
|
|
* @probe: called when new device created
|
|
|
|
* @remove: called when device removed
|
2022-04-11 22:14:01 +08:00
|
|
|
* @supported_type_groups: Attributes to define supported types. It is mandatory
|
|
|
|
* to provide supported types.
|
2016-11-17 04:46:13 +08:00
|
|
|
* @driver: device driver structure
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
struct mdev_driver {
|
2021-04-07 03:40:26 +08:00
|
|
|
int (*probe)(struct mdev_device *dev);
|
|
|
|
void (*remove)(struct mdev_device *dev);
|
2022-04-11 22:14:01 +08:00
|
|
|
struct attribute_group **supported_type_groups;
|
2016-11-17 04:46:13 +08:00
|
|
|
struct device_driver driver;
|
|
|
|
};
|
|
|
|
|
2021-04-07 03:40:26 +08:00
|
|
|
static inline const guid_t *mdev_uuid(struct mdev_device *mdev)
|
|
|
|
{
|
|
|
|
return &mdev->uuid;
|
|
|
|
}
|
2016-11-17 04:46:13 +08:00
|
|
|
|
|
|
|
extern struct bus_type mdev_bus_type;
|
|
|
|
|
2022-04-11 22:14:01 +08:00
|
|
|
int mdev_register_device(struct device *dev, struct mdev_driver *mdev_driver);
|
2019-05-01 06:49:30 +08:00
|
|
|
void mdev_unregister_device(struct device *dev);
|
2016-11-17 04:46:13 +08:00
|
|
|
|
2021-04-07 03:40:27 +08:00
|
|
|
int mdev_register_driver(struct mdev_driver *drv);
|
2019-05-01 06:49:30 +08:00
|
|
|
void mdev_unregister_driver(struct mdev_driver *drv);
|
2016-11-17 04:46:13 +08:00
|
|
|
|
2019-05-01 06:49:30 +08:00
|
|
|
struct device *mdev_parent_dev(struct mdev_device *mdev);
|
2021-04-07 03:40:26 +08:00
|
|
|
static inline struct device *mdev_dev(struct mdev_device *mdev)
|
|
|
|
{
|
|
|
|
return &mdev->dev;
|
|
|
|
}
|
|
|
|
static inline struct mdev_device *mdev_from_dev(struct device *dev)
|
|
|
|
{
|
|
|
|
return dev->bus == &mdev_bus_type ? to_mdev_device(dev) : NULL;
|
|
|
|
}
|
2016-12-30 23:13:41 +08:00
|
|
|
|
2016-11-17 04:46:13 +08:00
|
|
|
#endif /* MDEV_H */
|