blob: 0185ecdae1352d53f073d398b239c543c4d367d5 [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
Christoph Hellwiga254e562016-09-19 11:24:49 +100010struct iomap_ops;
Dan Williams6568b082017-01-24 18:44:18 -080011struct dax_device;
12struct 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 Williams5d61e432017-06-27 13:06:22 -070020 /* copy_from_iter: required operation for fs-dax direct-i/o */
Dan Williams0aed55a2017-05-29 12:22:50 -070021 size_t (*copy_from_iter)(struct dax_device *, pgoff_t, void *, size_t,
22 struct iov_iter *);
Dan Williams6568b082017-01-24 18:44:18 -080023};
Christoph Hellwiga254e562016-09-19 11:24:49 +100024
Dan Williams6e0c90d2017-06-26 21:28:41 -070025extern struct attribute_group dax_attribute_group;
26
Dan Williamsef5104242017-05-08 10:55:27 -070027#if IS_ENABLED(CONFIG_DAX)
28struct dax_device *dax_get_by_host(const char *host);
29void put_dax(struct dax_device *dax_dev);
30#else
31static inline struct dax_device *dax_get_by_host(const char *host)
32{
33 return NULL;
34}
35
36static inline void put_dax(struct dax_device *dax_dev)
37{
38}
39#endif
40
Dan Williamsf5705aa8c2017-05-13 16:31:05 -070041int bdev_dax_pgoff(struct block_device *, sector_t, size_t, pgoff_t *pgoff);
42#if IS_ENABLED(CONFIG_FS_DAX)
43int __bdev_dax_supported(struct super_block *sb, int blocksize);
44static inline int bdev_dax_supported(struct super_block *sb, int blocksize)
45{
46 return __bdev_dax_supported(sb, blocksize);
47}
48
49static inline struct dax_device *fs_dax_get_by_host(const char *host)
50{
51 return dax_get_by_host(host);
52}
53
54static inline void fs_put_dax(struct dax_device *dax_dev)
55{
56 put_dax(dax_dev);
57}
58
Dan Williams78f35472017-08-30 09:16:38 -070059struct dax_device *fs_dax_get_by_bdev(struct block_device *bdev);
Dan Williamsf5705aa8c2017-05-13 16:31:05 -070060#else
61static inline int bdev_dax_supported(struct super_block *sb, int blocksize)
62{
63 return -EOPNOTSUPP;
64}
65
66static inline struct dax_device *fs_dax_get_by_host(const char *host)
67{
68 return NULL;
69}
70
71static inline void fs_put_dax(struct dax_device *dax_dev)
72{
73}
Dan Williams78f35472017-08-30 09:16:38 -070074
75static inline struct dax_device *fs_dax_get_by_bdev(struct block_device *bdev)
76{
77 return NULL;
78}
Dan Williamsf5705aa8c2017-05-13 16:31:05 -070079#endif
80
Dan Williams7b6be842017-04-11 09:49:49 -070081int dax_read_lock(void);
82void dax_read_unlock(int id);
Dan Williamsc1d6e822017-01-24 23:02:09 -080083struct dax_device *alloc_dax(void *private, const char *host,
84 const struct dax_operations *ops);
Dan Williamsc1d6e822017-01-24 23:02:09 -080085bool dax_alive(struct dax_device *dax_dev);
86void kill_dax(struct dax_device *dax_dev);
87void *dax_get_private(struct dax_device *dax_dev);
Dan Williamsb0686262017-01-26 20:37:35 -080088long dax_direct_access(struct dax_device *dax_dev, pgoff_t pgoff, long nr_pages,
89 void **kaddr, pfn_t *pfn);
Dan Williams7e026c82017-05-29 12:57:56 -070090size_t dax_copy_from_iter(struct dax_device *dax_dev, pgoff_t pgoff, void *addr,
91 size_t bytes, struct iov_iter *i);
Mikulas Patockac3ca0152017-08-31 21:47:43 -040092void dax_flush(struct dax_device *dax_dev, void *addr, size_t size);
Dan Williams6e0c90d2017-06-26 21:28:41 -070093void dax_write_cache(struct dax_device *dax_dev, bool wc);
Vivek Goyal273752c2017-07-26 09:35:09 -040094bool dax_write_cache_enabled(struct dax_device *dax_dev);
Dan Williams7b6be842017-04-11 09:49:49 -070095
Ross Zwisler11c59c92016-11-08 11:32:46 +110096ssize_t dax_iomap_rw(struct kiocb *iocb, struct iov_iter *iter,
Christoph Hellwig8ff6daa2017-01-27 23:20:26 -080097 const struct iomap_ops *ops);
Dave Jiangc791ace2017-02-24 14:57:08 -080098int dax_iomap_fault(struct vm_fault *vmf, enum page_entry_size pe_size,
Jan Karac0b24622018-01-07 16:38:43 -050099 pfn_t *pfnp, int *errp, const struct iomap_ops *ops);
Jan Kara71eab6d2017-11-01 16:36:43 +0100100int dax_finish_sync_fault(struct vm_fault *vmf, enum page_entry_size pe_size,
101 pfn_t pfn);
Jan Karaac401cc2016-05-12 18:29:18 +0200102int dax_delete_mapping_entry(struct address_space *mapping, pgoff_t index);
Jan Karac6dcf522016-08-10 17:22:44 +0200103int dax_invalidate_mapping_entry_sync(struct address_space *mapping,
104 pgoff_t index);
Dan Williamsd1a5f2b42016-01-28 20:25:31 -0800105
106#ifdef CONFIG_FS_DAX
Dan Williamscccbce62017-01-27 13:31:42 -0800107int __dax_zero_page_range(struct block_device *bdev,
108 struct dax_device *dax_dev, sector_t sector,
Christoph Hellwig679c8bd2016-05-09 10:47:04 +0200109 unsigned int offset, unsigned int length);
Dan Williamsd1a5f2b42016-01-28 20:25:31 -0800110#else
Christoph Hellwig679c8bd2016-05-09 10:47:04 +0200111static inline int __dax_zero_page_range(struct block_device *bdev,
Dan Williamscccbce62017-01-27 13:31:42 -0800112 struct dax_device *dax_dev, sector_t sector,
113 unsigned int offset, unsigned int length)
Christoph Hellwig679c8bd2016-05-09 10:47:04 +0200114{
115 return -ENXIO;
116}
Dan Williamsd1a5f2b42016-01-28 20:25:31 -0800117#endif
118
Ross Zwislerf9fe48b2016-01-22 15:10:40 -0800119static inline bool dax_mapping(struct address_space *mapping)
120{
121 return mapping->host && IS_DAX(mapping->host);
122}
Ross Zwisler7f6d5b52016-02-26 15:19:55 -0800123
124struct writeback_control;
125int dax_writeback_mapping_range(struct address_space *mapping,
126 struct block_device *bdev, struct writeback_control *wbc);
Matthew Wilcoxc94c2ac2015-09-08 14:58:40 -0700127#endif