1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
5 * Misc memory accessors
8 #include <linux/export.h>
10 #include <linux/uaccess.h>
11 #include <sound/core.h>
12 #include <sound/pcm.h>
15 * copy_to_user_fromio - copy data from mmio-space to user-space
16 * @dst: the destination pointer on user-space
17 * @src: the source pointer on mmio
18 * @count: the data size to copy in bytes
20 * Copies the data from mmio-space to user-space.
22 * Return: Zero if successful, or non-zero on failure.
24 int copy_to_user_fromio(void __user *dst, const volatile void __iomem *src, size_t count)
28 if (import_ubuf(ITER_DEST, dst, count, &iter))
30 return copy_to_iter_fromio(&iter, (const void __iomem *)src, count);
32 EXPORT_SYMBOL(copy_to_user_fromio);
35 * copy_to_iter_fromio - copy data from mmio-space to iov_iter
36 * @dst: the destination iov_iter
37 * @src: the source pointer on mmio
38 * @count: the data size to copy in bytes
40 * Copies the data from mmio-space to iov_iter.
42 * Return: Zero if successful, or non-zero on failure.
44 int copy_to_iter_fromio(struct iov_iter *dst, const void __iomem *src,
47 #if defined(__i386__) || defined(CONFIG_SPARC32)
48 return copy_to_iter((const void __force *)src, count, dst) == count ? 0 : -EFAULT;
55 memcpy_fromio(buf, (void __iomem *)src, c);
56 if (copy_to_iter(buf, c, dst) != c)
64 EXPORT_SYMBOL(copy_to_iter_fromio);
67 * copy_from_user_toio - copy data from user-space to mmio-space
68 * @dst: the destination pointer on mmio-space
69 * @src: the source pointer on user-space
70 * @count: the data size to copy in bytes
72 * Copies the data from user-space to mmio-space.
74 * Return: Zero if successful, or non-zero on failure.
76 int copy_from_user_toio(volatile void __iomem *dst, const void __user *src, size_t count)
80 if (import_ubuf(ITER_SOURCE, (void __user *)src, count, &iter))
82 return copy_from_iter_toio((void __iomem *)dst, &iter, count);
84 EXPORT_SYMBOL(copy_from_user_toio);
87 * copy_from_iter_toio - copy data from iov_iter to mmio-space
88 * @dst: the destination pointer on mmio-space
89 * @src: the source iov_iter
90 * @count: the data size to copy in bytes
92 * Copies the data from iov_iter to mmio-space.
94 * Return: Zero if successful, or non-zero on failure.
96 int copy_from_iter_toio(void __iomem *dst, struct iov_iter *src, size_t count)
98 #if defined(__i386__) || defined(CONFIG_SPARC32)
99 return copy_from_iter((void __force *)dst, count, src) == count ? 0 : -EFAULT;
106 if (copy_from_iter(buf, c, src) != c)
108 memcpy_toio(dst, buf, c);
115 EXPORT_SYMBOL(copy_from_iter_toio);