Michael S. Tsirkin | 2d7ce0e | 2014-12-15 23:47:07 +0200 | [diff] [blame] | 1 | #include <linux/virtio_byteorder.h> |
| 2 | #include <linux/virtio.h> |
| 3 | #include <uapi/linux/virtio_config.h> |
| 4 | |
| 5 | /* |
| 6 | * __virtio_test_bit - helper to test feature bits. For use by transports. |
| 7 | * Devices should normally use virtio_has_feature, |
| 8 | * which includes more checks. |
| 9 | * @vdev: the device |
| 10 | * @fbit: the feature bit |
| 11 | */ |
| 12 | static inline bool __virtio_test_bit(const struct virtio_device *vdev, |
| 13 | unsigned int fbit) |
| 14 | { |
| 15 | return vdev->features & (1ULL << fbit); |
| 16 | } |
| 17 | |
| 18 | /** |
| 19 | * __virtio_set_bit - helper to set feature bits. For use by transports. |
| 20 | * @vdev: the device |
| 21 | * @fbit: the feature bit |
| 22 | */ |
| 23 | static inline void __virtio_set_bit(struct virtio_device *vdev, |
| 24 | unsigned int fbit) |
| 25 | { |
| 26 | vdev->features |= (1ULL << fbit); |
| 27 | } |
| 28 | |
| 29 | /** |
| 30 | * __virtio_clear_bit - helper to clear feature bits. For use by transports. |
| 31 | * @vdev: the device |
| 32 | * @fbit: the feature bit |
| 33 | */ |
| 34 | static inline void __virtio_clear_bit(struct virtio_device *vdev, |
| 35 | unsigned int fbit) |
| 36 | { |
| 37 | vdev->features &= ~(1ULL << fbit); |
| 38 | } |
Rusty Russell | 61d0b5a4 | 2013-03-18 13:22:19 +1030 | [diff] [blame] | 39 | |
| 40 | #define virtio_has_feature(dev, feature) \ |
Michael S. Tsirkin | e16e12b | 2014-10-07 16:39:42 +0200 | [diff] [blame] | 41 | (__virtio_test_bit((dev), feature)) |
Rusty Russell | 61d0b5a4 | 2013-03-18 13:22:19 +1030 | [diff] [blame] | 42 | |
Michael S. Tsirkin | 55564a0 | 2015-11-29 13:03:23 +0200 | [diff] [blame] | 43 | static inline bool virtio_is_little_endian(struct virtio_device *vdev) |
| 44 | { |
| 45 | return virtio_has_feature(vdev, VIRTIO_F_VERSION_1) || |
| 46 | virtio_legacy_is_little_endian(); |
| 47 | } |
| 48 | |
| 49 | /* Memory accessors */ |
Michael S. Tsirkin | 2d7ce0e | 2014-12-15 23:47:07 +0200 | [diff] [blame] | 50 | static inline u16 virtio16_to_cpu(struct virtio_device *vdev, __virtio16 val) |
| 51 | { |
Michael S. Tsirkin | 55564a0 | 2015-11-29 13:03:23 +0200 | [diff] [blame] | 52 | return __virtio16_to_cpu(virtio_is_little_endian(vdev), val); |
Michael S. Tsirkin | 2d7ce0e | 2014-12-15 23:47:07 +0200 | [diff] [blame] | 53 | } |
| 54 | |
| 55 | static inline __virtio16 cpu_to_virtio16(struct virtio_device *vdev, u16 val) |
| 56 | { |
Michael S. Tsirkin | 55564a0 | 2015-11-29 13:03:23 +0200 | [diff] [blame] | 57 | return __cpu_to_virtio16(virtio_is_little_endian(vdev), val); |
Michael S. Tsirkin | 2d7ce0e | 2014-12-15 23:47:07 +0200 | [diff] [blame] | 58 | } |
| 59 | |
| 60 | static inline u32 virtio32_to_cpu(struct virtio_device *vdev, __virtio32 val) |
| 61 | { |
Michael S. Tsirkin | 55564a0 | 2015-11-29 13:03:23 +0200 | [diff] [blame] | 62 | return __virtio32_to_cpu(virtio_is_little_endian(vdev), val); |
Michael S. Tsirkin | 2d7ce0e | 2014-12-15 23:47:07 +0200 | [diff] [blame] | 63 | } |
| 64 | |
| 65 | static inline __virtio32 cpu_to_virtio32(struct virtio_device *vdev, u32 val) |
| 66 | { |
Michael S. Tsirkin | 55564a0 | 2015-11-29 13:03:23 +0200 | [diff] [blame] | 67 | return __cpu_to_virtio32(virtio_is_little_endian(vdev), val); |
Michael S. Tsirkin | 2d7ce0e | 2014-12-15 23:47:07 +0200 | [diff] [blame] | 68 | } |
| 69 | |
| 70 | static inline u64 virtio64_to_cpu(struct virtio_device *vdev, __virtio64 val) |
| 71 | { |
Michael S. Tsirkin | 55564a0 | 2015-11-29 13:03:23 +0200 | [diff] [blame] | 72 | return __virtio64_to_cpu(virtio_is_little_endian(vdev), val); |
Michael S. Tsirkin | 2d7ce0e | 2014-12-15 23:47:07 +0200 | [diff] [blame] | 73 | } |
| 74 | |
| 75 | static inline __virtio64 cpu_to_virtio64(struct virtio_device *vdev, u64 val) |
| 76 | { |
Michael S. Tsirkin | 55564a0 | 2015-11-29 13:03:23 +0200 | [diff] [blame] | 77 | return __cpu_to_virtio64(virtio_is_little_endian(vdev), val); |
Michael S. Tsirkin | 2d7ce0e | 2014-12-15 23:47:07 +0200 | [diff] [blame] | 78 | } |