Matthew Wilcox | c94c2ac | 2015-09-08 14:58:40 -0700 | [diff] [blame] | 1 | #ifndef _LINUX_DAX_H |
| 2 | #define _LINUX_DAX_H |
| 3 | |
| 4 | #include <linux/fs.h> |
| 5 | #include <linux/mm.h> |
Jan Kara | 4f62293 | 2016-05-12 18:29:17 +0200 | [diff] [blame] | 6 | #include <linux/radix-tree.h> |
Matthew Wilcox | c94c2ac | 2015-09-08 14:58:40 -0700 | [diff] [blame] | 7 | #include <asm/pgtable.h> |
| 8 | |
Christoph Hellwig | a254e56 | 2016-09-19 11:24:49 +1000 | [diff] [blame] | 9 | struct iomap_ops; |
Dan Williams | 6568b08 | 2017-01-24 18:44:18 -0800 | [diff] [blame] | 10 | struct dax_device; |
| 11 | struct dax_operations { |
| 12 | /* |
| 13 | * direct_access: translate a device-relative |
| 14 | * logical-page-offset into an absolute physical pfn. Return the |
| 15 | * number of pages available for DAX at that pfn. |
| 16 | */ |
| 17 | long (*direct_access)(struct dax_device *, pgoff_t, long, |
| 18 | void **, pfn_t *); |
Dan Williams | 5d61e43 | 2017-06-27 13:06:22 -0700 | [diff] [blame] | 19 | /* copy_from_iter: required operation for fs-dax direct-i/o */ |
Dan Williams | 0aed55a | 2017-05-29 12:22:50 -0700 | [diff] [blame] | 20 | size_t (*copy_from_iter)(struct dax_device *, pgoff_t, void *, size_t, |
| 21 | struct iov_iter *); |
Dan Williams | 3c1cebf | 2017-05-29 12:58:19 -0700 | [diff] [blame] | 22 | /* flush: optional driver-specific cache management after writes */ |
| 23 | void (*flush)(struct dax_device *, pgoff_t, void *, size_t); |
Dan Williams | 6568b08 | 2017-01-24 18:44:18 -0800 | [diff] [blame] | 24 | }; |
Christoph Hellwig | a254e56 | 2016-09-19 11:24:49 +1000 | [diff] [blame] | 25 | |
Dan Williams | 6e0c90d | 2017-06-26 21:28:41 -0700 | [diff] [blame] | 26 | extern struct attribute_group dax_attribute_group; |
| 27 | |
Dan Williams | ef51042 | 2017-05-08 10:55:27 -0700 | [diff] [blame] | 28 | #if IS_ENABLED(CONFIG_DAX) |
| 29 | struct dax_device *dax_get_by_host(const char *host); |
| 30 | void put_dax(struct dax_device *dax_dev); |
| 31 | #else |
| 32 | static inline struct dax_device *dax_get_by_host(const char *host) |
| 33 | { |
| 34 | return NULL; |
| 35 | } |
| 36 | |
| 37 | static inline void put_dax(struct dax_device *dax_dev) |
| 38 | { |
| 39 | } |
| 40 | #endif |
| 41 | |
Dan Williams | f5705aa8c | 2017-05-13 16:31:05 -0700 | [diff] [blame] | 42 | int bdev_dax_pgoff(struct block_device *, sector_t, size_t, pgoff_t *pgoff); |
| 43 | #if IS_ENABLED(CONFIG_FS_DAX) |
| 44 | int __bdev_dax_supported(struct super_block *sb, int blocksize); |
| 45 | static inline int bdev_dax_supported(struct super_block *sb, int blocksize) |
| 46 | { |
| 47 | return __bdev_dax_supported(sb, blocksize); |
| 48 | } |
| 49 | |
| 50 | static inline struct dax_device *fs_dax_get_by_host(const char *host) |
| 51 | { |
| 52 | return dax_get_by_host(host); |
| 53 | } |
| 54 | |
| 55 | static inline void fs_put_dax(struct dax_device *dax_dev) |
| 56 | { |
| 57 | put_dax(dax_dev); |
| 58 | } |
| 59 | |
Dan Williams | 78f3547 | 2017-08-30 09:16:38 -0700 | [diff] [blame] | 60 | struct dax_device *fs_dax_get_by_bdev(struct block_device *bdev); |
Dan Williams | f5705aa8c | 2017-05-13 16:31:05 -0700 | [diff] [blame] | 61 | #else |
| 62 | static inline int bdev_dax_supported(struct super_block *sb, int blocksize) |
| 63 | { |
| 64 | return -EOPNOTSUPP; |
| 65 | } |
| 66 | |
| 67 | static inline struct dax_device *fs_dax_get_by_host(const char *host) |
| 68 | { |
| 69 | return NULL; |
| 70 | } |
| 71 | |
| 72 | static inline void fs_put_dax(struct dax_device *dax_dev) |
| 73 | { |
| 74 | } |
Dan Williams | 78f3547 | 2017-08-30 09:16:38 -0700 | [diff] [blame] | 75 | |
| 76 | static inline struct dax_device *fs_dax_get_by_bdev(struct block_device *bdev) |
| 77 | { |
| 78 | return NULL; |
| 79 | } |
Dan Williams | f5705aa8c | 2017-05-13 16:31:05 -0700 | [diff] [blame] | 80 | #endif |
| 81 | |
Dan Williams | 7b6be84 | 2017-04-11 09:49:49 -0700 | [diff] [blame] | 82 | int dax_read_lock(void); |
| 83 | void dax_read_unlock(int id); |
Dan Williams | c1d6e82 | 2017-01-24 23:02:09 -0800 | [diff] [blame] | 84 | struct dax_device *alloc_dax(void *private, const char *host, |
| 85 | const struct dax_operations *ops); |
Dan Williams | c1d6e82 | 2017-01-24 23:02:09 -0800 | [diff] [blame] | 86 | bool dax_alive(struct dax_device *dax_dev); |
| 87 | void kill_dax(struct dax_device *dax_dev); |
| 88 | void *dax_get_private(struct dax_device *dax_dev); |
Dan Williams | b068626 | 2017-01-26 20:37:35 -0800 | [diff] [blame] | 89 | long dax_direct_access(struct dax_device *dax_dev, pgoff_t pgoff, long nr_pages, |
| 90 | void **kaddr, pfn_t *pfn); |
Dan Williams | 7e026c8 | 2017-05-29 12:57:56 -0700 | [diff] [blame] | 91 | size_t dax_copy_from_iter(struct dax_device *dax_dev, pgoff_t pgoff, void *addr, |
| 92 | size_t bytes, struct iov_iter *i); |
Dan Williams | abebfbe | 2017-05-29 13:02:52 -0700 | [diff] [blame] | 93 | void dax_flush(struct dax_device *dax_dev, pgoff_t pgoff, void *addr, |
| 94 | size_t size); |
Dan Williams | 6e0c90d | 2017-06-26 21:28:41 -0700 | [diff] [blame] | 95 | void dax_write_cache(struct dax_device *dax_dev, bool wc); |
Vivek Goyal | 273752c | 2017-07-26 09:35:09 -0400 | [diff] [blame] | 96 | bool dax_write_cache_enabled(struct dax_device *dax_dev); |
Dan Williams | 7b6be84 | 2017-04-11 09:49:49 -0700 | [diff] [blame] | 97 | |
Ross Zwisler | 11c59c9 | 2016-11-08 11:32:46 +1100 | [diff] [blame] | 98 | ssize_t dax_iomap_rw(struct kiocb *iocb, struct iov_iter *iter, |
Christoph Hellwig | 8ff6daa | 2017-01-27 23:20:26 -0800 | [diff] [blame] | 99 | const struct iomap_ops *ops); |
Dave Jiang | c791ace | 2017-02-24 14:57:08 -0800 | [diff] [blame] | 100 | int dax_iomap_fault(struct vm_fault *vmf, enum page_entry_size pe_size, |
| 101 | const struct iomap_ops *ops); |
Jan Kara | ac401cc | 2016-05-12 18:29:18 +0200 | [diff] [blame] | 102 | int dax_delete_mapping_entry(struct address_space *mapping, pgoff_t index); |
Jan Kara | c6dcf52 | 2016-08-10 17:22:44 +0200 | [diff] [blame] | 103 | int dax_invalidate_mapping_entry_sync(struct address_space *mapping, |
| 104 | pgoff_t index); |
Dan Williams | d1a5f2b4 | 2016-01-28 20:25:31 -0800 | [diff] [blame] | 105 | |
| 106 | #ifdef CONFIG_FS_DAX |
Dan Williams | cccbce6 | 2017-01-27 13:31:42 -0800 | [diff] [blame] | 107 | int __dax_zero_page_range(struct block_device *bdev, |
| 108 | struct dax_device *dax_dev, sector_t sector, |
Christoph Hellwig | 679c8bd | 2016-05-09 10:47:04 +0200 | [diff] [blame] | 109 | unsigned int offset, unsigned int length); |
Dan Williams | d1a5f2b4 | 2016-01-28 20:25:31 -0800 | [diff] [blame] | 110 | #else |
Christoph Hellwig | 679c8bd | 2016-05-09 10:47:04 +0200 | [diff] [blame] | 111 | static inline int __dax_zero_page_range(struct block_device *bdev, |
Dan Williams | cccbce6 | 2017-01-27 13:31:42 -0800 | [diff] [blame] | 112 | struct dax_device *dax_dev, sector_t sector, |
| 113 | unsigned int offset, unsigned int length) |
Christoph Hellwig | 679c8bd | 2016-05-09 10:47:04 +0200 | [diff] [blame] | 114 | { |
| 115 | return -ENXIO; |
| 116 | } |
Dan Williams | d1a5f2b4 | 2016-01-28 20:25:31 -0800 | [diff] [blame] | 117 | #endif |
| 118 | |
Ross Zwisler | f9fe48b | 2016-01-22 15:10:40 -0800 | [diff] [blame] | 119 | static inline bool dax_mapping(struct address_space *mapping) |
| 120 | { |
| 121 | return mapping->host && IS_DAX(mapping->host); |
| 122 | } |
Ross Zwisler | 7f6d5b5 | 2016-02-26 15:19:55 -0800 | [diff] [blame] | 123 | |
| 124 | struct writeback_control; |
| 125 | int dax_writeback_mapping_range(struct address_space *mapping, |
| 126 | struct block_device *bdev, struct writeback_control *wbc); |
Matthew Wilcox | c94c2ac | 2015-09-08 14:58:40 -0700 | [diff] [blame] | 127 | #endif |