blob: 0dd316a74a295132ea6b6c04f914356c5c4064d6 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Matthew Wilcoxc94c2ac2015-09-08 14:58:40 -07002#ifndef _LINUX_DAX_H
3#define _LINUX_DAX_H
4
5#include <linux/fs.h>
6#include <linux/mm.h>
Jan Kara4f622932016-05-12 18:29:17 +02007#include <linux/radix-tree.h>
Matthew Wilcoxc94c2ac2015-09-08 14:58:40 -07008#include <asm/pgtable.h>
9
Matthew Wilcox27359fd2018-11-30 11:05:06 -050010typedef unsigned long dax_entry_t;
11
Christoph Hellwiga254e562016-09-19 11:24:49 +100012struct iomap_ops;
Dan Williams6568b082017-01-24 18:44:18 -080013struct dax_device;
14struct dax_operations {
15 /*
16 * direct_access: translate a device-relative
17 * logical-page-offset into an absolute physical pfn. Return the
18 * number of pages available for DAX at that pfn.
19 */
20 long (*direct_access)(struct dax_device *, pgoff_t, long,
21 void **, pfn_t *);
Dan Williams5d61e432017-06-27 13:06:22 -070022 /* copy_from_iter: required operation for fs-dax direct-i/o */
Dan Williams0aed55a2017-05-29 12:22:50 -070023 size_t (*copy_from_iter)(struct dax_device *, pgoff_t, void *, size_t,
24 struct iov_iter *);
Dan Williamsb3a9a0c2018-05-02 06:46:33 -070025 /* copy_to_iter: required operation for fs-dax direct-i/o */
26 size_t (*copy_to_iter)(struct dax_device *, pgoff_t, void *, size_t,
27 struct iov_iter *);
Dan Williams6568b082017-01-24 18:44:18 -080028};
Christoph Hellwiga254e562016-09-19 11:24:49 +100029
Dan Williams6e0c90d2017-06-26 21:28:41 -070030extern struct attribute_group dax_attribute_group;
31
Dan Williamsef510422017-05-08 10:55:27 -070032#if IS_ENABLED(CONFIG_DAX)
33struct dax_device *dax_get_by_host(const char *host);
Dan Williams976431b2018-03-29 17:22:13 -070034struct dax_device *alloc_dax(void *private, const char *host,
35 const struct dax_operations *ops);
Dan Williamsef510422017-05-08 10:55:27 -070036void put_dax(struct dax_device *dax_dev);
Dan Williams976431b2018-03-29 17:22:13 -070037void kill_dax(struct dax_device *dax_dev);
38void dax_write_cache(struct dax_device *dax_dev, bool wc);
39bool dax_write_cache_enabled(struct dax_device *dax_dev);
Dan Williamsef510422017-05-08 10:55:27 -070040#else
41static inline struct dax_device *dax_get_by_host(const char *host)
42{
43 return NULL;
44}
Dan Williams976431b2018-03-29 17:22:13 -070045static inline struct dax_device *alloc_dax(void *private, const char *host,
46 const struct dax_operations *ops)
47{
48 /*
49 * Callers should check IS_ENABLED(CONFIG_DAX) to know if this
50 * NULL is an error or expected.
51 */
52 return NULL;
53}
Dan Williamsef510422017-05-08 10:55:27 -070054static inline void put_dax(struct dax_device *dax_dev)
55{
56}
Dan Williams976431b2018-03-29 17:22:13 -070057static inline void kill_dax(struct dax_device *dax_dev)
58{
59}
60static inline void dax_write_cache(struct dax_device *dax_dev, bool wc)
61{
62}
63static inline bool dax_write_cache_enabled(struct dax_device *dax_dev)
64{
65 return false;
66}
Dan Williamsef510422017-05-08 10:55:27 -070067#endif
68
Dan Williamsf44c7762018-03-07 15:26:44 -080069struct writeback_control;
Dan Williamsf5705aa8c2017-05-13 16:31:05 -070070int bdev_dax_pgoff(struct block_device *, sector_t, size_t, pgoff_t *pgoff);
71#if IS_ENABLED(CONFIG_FS_DAX)
Dave Jiang80660f22018-05-30 13:03:46 -070072bool __bdev_dax_supported(struct block_device *bdev, int blocksize);
73static inline bool bdev_dax_supported(struct block_device *bdev, int blocksize)
Dan Williamsf5705aa8c2017-05-13 16:31:05 -070074{
Darrick J. Wongba23cba2018-05-30 13:03:45 -070075 return __bdev_dax_supported(bdev, blocksize);
Dan Williamsf5705aa8c2017-05-13 16:31:05 -070076}
77
78static inline struct dax_device *fs_dax_get_by_host(const char *host)
79{
80 return dax_get_by_host(host);
81}
82
83static inline void fs_put_dax(struct dax_device *dax_dev)
84{
85 put_dax(dax_dev);
86}
87
Dan Williams78f35472017-08-30 09:16:38 -070088struct dax_device *fs_dax_get_by_bdev(struct block_device *bdev);
Dan Williamsf44c7762018-03-07 15:26:44 -080089int dax_writeback_mapping_range(struct address_space *mapping,
90 struct block_device *bdev, struct writeback_control *wbc);
Dan Williams5fac7402018-03-09 17:44:31 -080091
92struct page *dax_layout_busy_page(struct address_space *mapping);
Matthew Wilcox27359fd2018-11-30 11:05:06 -050093dax_entry_t dax_lock_page(struct page *page);
94void dax_unlock_page(struct page *page, dax_entry_t cookie);
Dan Williamsf5705aa8c2017-05-13 16:31:05 -070095#else
Dave Jiang80660f22018-05-30 13:03:46 -070096static inline bool bdev_dax_supported(struct block_device *bdev,
Darrick J. Wongba23cba2018-05-30 13:03:45 -070097 int blocksize)
Dan Williamsf5705aa8c2017-05-13 16:31:05 -070098{
Dave Jiang80660f22018-05-30 13:03:46 -070099 return false;
Dan Williamsf5705aa8c2017-05-13 16:31:05 -0700100}
101
102static inline struct dax_device *fs_dax_get_by_host(const char *host)
103{
104 return NULL;
105}
106
107static inline void fs_put_dax(struct dax_device *dax_dev)
108{
109}
Dan Williams78f35472017-08-30 09:16:38 -0700110
111static inline struct dax_device *fs_dax_get_by_bdev(struct block_device *bdev)
112{
113 return NULL;
114}
Dan Williamsf44c7762018-03-07 15:26:44 -0800115
Dan Williams5fac7402018-03-09 17:44:31 -0800116static inline struct page *dax_layout_busy_page(struct address_space *mapping)
117{
118 return NULL;
119}
120
Dan Williamsf44c7762018-03-07 15:26:44 -0800121static inline int dax_writeback_mapping_range(struct address_space *mapping,
122 struct block_device *bdev, struct writeback_control *wbc)
123{
124 return -EOPNOTSUPP;
125}
Dan Williamsc2a7d2a2018-07-13 21:50:16 -0700126
Matthew Wilcox27359fd2018-11-30 11:05:06 -0500127static inline dax_entry_t dax_lock_page(struct page *page)
Dan Williamsc2a7d2a2018-07-13 21:50:16 -0700128{
129 if (IS_DAX(page->mapping->host))
Matthew Wilcox27359fd2018-11-30 11:05:06 -0500130 return ~0UL;
131 return 0;
Dan Williamsc2a7d2a2018-07-13 21:50:16 -0700132}
133
Matthew Wilcox27359fd2018-11-30 11:05:06 -0500134static inline void dax_unlock_page(struct page *page, dax_entry_t cookie)
Dan Williamsc2a7d2a2018-07-13 21:50:16 -0700135{
136}
Dan Williamsf5705aa8c2017-05-13 16:31:05 -0700137#endif
138
Dan Williams7b6be842017-04-11 09:49:49 -0700139int dax_read_lock(void);
140void dax_read_unlock(int id);
Dan Williamsc1d6e822017-01-24 23:02:09 -0800141bool dax_alive(struct dax_device *dax_dev);
Dan Williamsc1d6e822017-01-24 23:02:09 -0800142void *dax_get_private(struct dax_device *dax_dev);
Dan Williamsb0686262017-01-26 20:37:35 -0800143long dax_direct_access(struct dax_device *dax_dev, pgoff_t pgoff, long nr_pages,
144 void **kaddr, pfn_t *pfn);
Dan Williams7e026c82017-05-29 12:57:56 -0700145size_t dax_copy_from_iter(struct dax_device *dax_dev, pgoff_t pgoff, void *addr,
146 size_t bytes, struct iov_iter *i);
Dan Williamsb3a9a0c2018-05-02 06:46:33 -0700147size_t dax_copy_to_iter(struct dax_device *dax_dev, pgoff_t pgoff, void *addr,
148 size_t bytes, struct iov_iter *i);
Mikulas Patockac3ca0152017-08-31 21:47:43 -0400149void dax_flush(struct dax_device *dax_dev, void *addr, size_t size);
Dan Williams7b6be842017-04-11 09:49:49 -0700150
Ross Zwisler11c59c92016-11-08 11:32:46 +1100151ssize_t dax_iomap_rw(struct kiocb *iocb, struct iov_iter *iter,
Christoph Hellwig8ff6daa2017-01-27 23:20:26 -0800152 const struct iomap_ops *ops);
Souptick Joarderf77bc3a2018-06-27 23:26:17 -0700153vm_fault_t dax_iomap_fault(struct vm_fault *vmf, enum page_entry_size pe_size,
Jan Karac0b24622018-01-07 16:38:43 -0500154 pfn_t *pfnp, int *errp, const struct iomap_ops *ops);
Souptick Joarderab77dab2018-06-07 17:04:29 -0700155vm_fault_t dax_finish_sync_fault(struct vm_fault *vmf,
156 enum page_entry_size pe_size, pfn_t pfn);
Jan Karaac401cc2016-05-12 18:29:18 +0200157int dax_delete_mapping_entry(struct address_space *mapping, pgoff_t index);
Jan Karac6dcf522016-08-10 17:22:44 +0200158int dax_invalidate_mapping_entry_sync(struct address_space *mapping,
159 pgoff_t index);
Dan Williamsd1a5f2b42016-01-28 20:25:31 -0800160
161#ifdef CONFIG_FS_DAX
Dan Williamscccbce62017-01-27 13:31:42 -0800162int __dax_zero_page_range(struct block_device *bdev,
163 struct dax_device *dax_dev, sector_t sector,
Christoph Hellwig679c8bd2016-05-09 10:47:04 +0200164 unsigned int offset, unsigned int length);
Dan Williamsd1a5f2b42016-01-28 20:25:31 -0800165#else
Christoph Hellwig679c8bd2016-05-09 10:47:04 +0200166static inline int __dax_zero_page_range(struct block_device *bdev,
Dan Williamscccbce62017-01-27 13:31:42 -0800167 struct dax_device *dax_dev, sector_t sector,
168 unsigned int offset, unsigned int length)
Christoph Hellwig679c8bd2016-05-09 10:47:04 +0200169{
170 return -ENXIO;
171}
Dan Williamsd1a5f2b42016-01-28 20:25:31 -0800172#endif
173
Ross Zwislerf9fe48b2016-01-22 15:10:40 -0800174static inline bool dax_mapping(struct address_space *mapping)
175{
176 return mapping->host && IS_DAX(mapping->host);
177}
Ross Zwisler7f6d5b52016-02-26 15:19:55 -0800178
Matthew Wilcoxc94c2ac2015-09-08 14:58:40 -0700179#endif