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