blob: 4c58333b42570d233ccfaa83dac3c67f69e73b49 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/char/mem.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 *
Andrew Mortond7d4d842010-03-10 15:21:52 -08006 * Added devfs support.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Jan-11-1998, C. Scott Ananian <cananian@alumni.princeton.edu>
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02008 * Shared /dev/zero mmapping support, Feb 2000, Kanoj Sarcar <kanoj@sgi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/mm.h>
12#include <linux/miscdevice.h>
13#include <linux/slab.h>
14#include <linux/vmalloc.h>
15#include <linux/mman.h>
16#include <linux/random.h>
17#include <linux/init.h>
18#include <linux/raw.h>
19#include <linux/tty.h>
20#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/ptrace.h>
22#include <linux/device.h>
Vivek Goyal50b1fdb2005-06-25 14:58:23 -070023#include <linux/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/backing-dev.h>
Jens Axboed6b29d72007-06-04 09:59:47 +020025#include <linux/splice.h>
Linus Torvaldsb8a3ad52006-10-13 08:42:10 -070026#include <linux/pfn.h>
Paul Gortmaker66300e62011-07-10 12:14:53 -040027#include <linux/export.h>
Haren Mynenie1612de2012-07-11 15:18:44 +100028#include <linux/io.h>
Kent Overstreeta27bb332013-05-07 16:19:08 -070029#include <linux/aio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#ifdef CONFIG_IA64
34# include <linux/efi.h>
35#endif
36
Haren Mynenie1612de2012-07-11 15:18:44 +100037#define DEVPORT_MINOR 4
38
Wu Fengguangf2223182009-12-14 17:58:07 -080039static inline unsigned long size_inside_page(unsigned long start,
40 unsigned long size)
41{
42 unsigned long sz;
43
Wu Fengguang7fabadd2009-12-14 17:58:09 -080044 sz = PAGE_SIZE - (start & (PAGE_SIZE - 1));
Wu Fengguangf2223182009-12-14 17:58:07 -080045
Wu Fengguang7fabadd2009-12-14 17:58:09 -080046 return min(sz, size);
Wu Fengguangf2223182009-12-14 17:58:07 -080047}
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#ifndef ARCH_HAS_VALID_PHYS_ADDR_RANGE
Cyril Chemparathy7e6735c2012-09-12 14:05:58 -040050static inline int valid_phys_addr_range(phys_addr_t addr, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
Changli Gaocfaf346c2011-03-23 16:42:58 -070052 return addr + count <= __pa(high_memory);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053}
Bjorn Helgaas80851ef2006-01-08 01:04:13 -080054
Lennert Buytenhek06c67be2006-07-10 04:45:27 -070055static inline int valid_mmap_phys_addr_range(unsigned long pfn, size_t size)
Bjorn Helgaas80851ef2006-01-08 01:04:13 -080056{
57 return 1;
58}
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#endif
60
Ingo Molnard0926332008-07-18 00:26:59 +020061#ifdef CONFIG_STRICT_DEVMEM
Venki Pallipadie2beb3e2008-03-06 23:01:47 -080062static inline int range_is_allowed(unsigned long pfn, unsigned long size)
Arjan van de Venae531c22008-04-24 23:40:47 +020063{
Venki Pallipadie2beb3e2008-03-06 23:01:47 -080064 u64 from = ((u64)pfn) << PAGE_SHIFT;
65 u64 to = from + size;
66 u64 cursor = from;
Arjan van de Venae531c22008-04-24 23:40:47 +020067
Venki Pallipadie2beb3e2008-03-06 23:01:47 -080068 while (cursor < to) {
69 if (!devmem_is_allowed(pfn)) {
70 printk(KERN_INFO
71 "Program %s tried to access /dev/mem between %Lx->%Lx.\n",
Arjan van de Venae531c22008-04-24 23:40:47 +020072 current->comm, from, to);
73 return 0;
74 }
Venki Pallipadie2beb3e2008-03-06 23:01:47 -080075 cursor += PAGE_SIZE;
76 pfn++;
Arjan van de Venae531c22008-04-24 23:40:47 +020077 }
78 return 1;
79}
80#else
Venki Pallipadie2beb3e2008-03-06 23:01:47 -080081static inline int range_is_allowed(unsigned long pfn, unsigned long size)
Arjan van de Venae531c22008-04-24 23:40:47 +020082{
83 return 1;
84}
85#endif
86
Thierry Reding4707a342014-07-28 17:20:33 +020087#ifndef unxlate_dev_mem_ptr
88#define unxlate_dev_mem_ptr unxlate_dev_mem_ptr
89void __weak unxlate_dev_mem_ptr(phys_addr_t phys, void *addr)
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -070090{
91}
Thierry Reding4707a342014-07-28 17:20:33 +020092#endif
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -070093
Linus Torvalds1da177e2005-04-16 15:20:36 -070094/*
Andrew Mortond7d4d842010-03-10 15:21:52 -080095 * This funcion reads the *physical* memory. The f_pos points directly to the
96 * memory location.
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 */
Andrew Mortond7d4d842010-03-10 15:21:52 -080098static ssize_t read_mem(struct file *file, char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 size_t count, loff_t *ppos)
100{
Cyril Chemparathy7e6735c2012-09-12 14:05:58 -0400101 phys_addr_t p = *ppos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 ssize_t read, sz;
Thierry Reding4707a342014-07-28 17:20:33 +0200103 void *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Petr Tesarik08d2d002014-01-30 09:48:02 +0100105 if (p != *ppos)
106 return 0;
107
Bjorn Helgaas136939a2006-03-26 01:37:05 -0800108 if (!valid_phys_addr_range(p, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 return -EFAULT;
110 read = 0;
111#ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
112 /* we don't have page 0 mapped on sparc and m68k.. */
113 if (p < PAGE_SIZE) {
Wu Fengguang7fabadd2009-12-14 17:58:09 -0800114 sz = size_inside_page(p, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 if (sz > 0) {
116 if (clear_user(buf, sz))
117 return -EFAULT;
Andrew Mortond7d4d842010-03-10 15:21:52 -0800118 buf += sz;
119 p += sz;
120 count -= sz;
121 read += sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 }
123 }
124#endif
125
126 while (count > 0) {
Wu Fengguangfa29e972009-12-14 17:58:08 -0800127 unsigned long remaining;
128
Wu Fengguangf2223182009-12-14 17:58:07 -0800129 sz = size_inside_page(p, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700131 if (!range_is_allowed(p >> PAGE_SHIFT, count))
132 return -EPERM;
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 /*
Andrew Mortond7d4d842010-03-10 15:21:52 -0800135 * On ia64 if a page has been mapped somewhere as uncached, then
136 * it must also be accessed uncached by the kernel or data
137 * corruption may occur.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 */
139 ptr = xlate_dev_mem_ptr(p);
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700140 if (!ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 return -EFAULT;
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700142
Wu Fengguangfa29e972009-12-14 17:58:08 -0800143 remaining = copy_to_user(buf, ptr, sz);
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700144 unxlate_dev_mem_ptr(p, ptr);
Wu Fengguangfa29e972009-12-14 17:58:08 -0800145 if (remaining)
146 return -EFAULT;
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 buf += sz;
149 p += sz;
150 count -= sz;
151 read += sz;
152 }
153
154 *ppos += read;
155 return read;
156}
157
Andrew Mortond7d4d842010-03-10 15:21:52 -0800158static ssize_t write_mem(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 size_t count, loff_t *ppos)
160{
Cyril Chemparathy7e6735c2012-09-12 14:05:58 -0400161 phys_addr_t p = *ppos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 ssize_t written, sz;
163 unsigned long copied;
164 void *ptr;
165
Petr Tesarik08d2d002014-01-30 09:48:02 +0100166 if (p != *ppos)
167 return -EFBIG;
168
Bjorn Helgaas136939a2006-03-26 01:37:05 -0800169 if (!valid_phys_addr_range(p, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 return -EFAULT;
171
172 written = 0;
173
174#ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
175 /* we don't have page 0 mapped on sparc and m68k.. */
176 if (p < PAGE_SIZE) {
Wu Fengguang7fabadd2009-12-14 17:58:09 -0800177 sz = size_inside_page(p, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 /* Hmm. Do something? */
179 buf += sz;
180 p += sz;
181 count -= sz;
182 written += sz;
183 }
184#endif
185
186 while (count > 0) {
Wu Fengguangf2223182009-12-14 17:58:07 -0800187 sz = size_inside_page(p, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700189 if (!range_is_allowed(p >> PAGE_SHIFT, sz))
190 return -EPERM;
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 /*
Andrew Mortond7d4d842010-03-10 15:21:52 -0800193 * On ia64 if a page has been mapped somewhere as uncached, then
194 * it must also be accessed uncached by the kernel or data
195 * corruption may occur.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 */
197 ptr = xlate_dev_mem_ptr(p);
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700198 if (!ptr) {
Jan Beulichc654d602006-03-25 03:07:31 -0800199 if (written)
200 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 return -EFAULT;
202 }
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700203
204 copied = copy_from_user(ptr, buf, sz);
Wu Fengguangfa29e972009-12-14 17:58:08 -0800205 unxlate_dev_mem_ptr(p, ptr);
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700206 if (copied) {
207 written += sz - copied;
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700208 if (written)
209 break;
210 return -EFAULT;
211 }
212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 buf += sz;
214 p += sz;
215 count -= sz;
216 written += sz;
217 }
218
219 *ppos += written;
220 return written;
221}
222
Andrew Mortond7d4d842010-03-10 15:21:52 -0800223int __weak phys_mem_access_prot_allowed(struct file *file,
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700224 unsigned long pfn, unsigned long size, pgprot_t *vma_prot)
225{
226 return 1;
227}
228
Bjorn Helgaas44ac8412006-01-08 01:04:10 -0800229#ifndef __HAVE_PHYS_MEM_ACCESS_PROT
Andrew Mortond7d4d842010-03-10 15:21:52 -0800230
231/*
232 * Architectures vary in how they handle caching for addresses
233 * outside of main memory.
234 *
235 */
David Howellsea56f412010-04-06 14:35:08 -0700236#ifdef pgprot_noncached
Cyril Chemparathy7e6735c2012-09-12 14:05:58 -0400237static int uncached_access(struct file *file, phys_addr_t addr)
Andrew Mortond7d4d842010-03-10 15:21:52 -0800238{
239#if defined(CONFIG_IA64)
240 /*
241 * On ia64, we ignore O_DSYNC because we cannot tolerate memory
242 * attribute aliases.
243 */
244 return !(efi_mem_attributes(addr) & EFI_MEMORY_WB);
245#elif defined(CONFIG_MIPS)
246 {
247 extern int __uncached_access(struct file *file,
248 unsigned long addr);
249
250 return __uncached_access(file, addr);
251 }
252#else
253 /*
254 * Accessing memory above the top the kernel knows about or through a
255 * file pointer
256 * that was marked O_DSYNC will be done non-cached.
257 */
258 if (file->f_flags & O_DSYNC)
259 return 1;
260 return addr >= __pa(high_memory);
261#endif
262}
David Howellsea56f412010-04-06 14:35:08 -0700263#endif
Andrew Mortond7d4d842010-03-10 15:21:52 -0800264
Bjorn Helgaas44ac8412006-01-08 01:04:10 -0800265static pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
266 unsigned long size, pgprot_t vma_prot)
267{
268#ifdef pgprot_noncached
Cyril Chemparathy7e6735c2012-09-12 14:05:58 -0400269 phys_addr_t offset = pfn << PAGE_SHIFT;
Bjorn Helgaas44ac8412006-01-08 01:04:10 -0800270
271 if (uncached_access(file, offset))
272 return pgprot_noncached(vma_prot);
273#endif
274 return vma_prot;
275}
276#endif
277
David Howells5da61852006-09-27 01:50:16 -0700278#ifndef CONFIG_MMU
279static unsigned long get_unmapped_area_mem(struct file *file,
280 unsigned long addr,
281 unsigned long len,
282 unsigned long pgoff,
283 unsigned long flags)
284{
285 if (!valid_mmap_phys_addr_range(pgoff, len))
286 return (unsigned long) -EINVAL;
Benjamin Herrenschmidt8a932582007-04-16 22:53:16 -0700287 return pgoff << PAGE_SHIFT;
David Howells5da61852006-09-27 01:50:16 -0700288}
289
290/* can't do an in-place private mapping if there's no MMU */
291static inline int private_mapping_ok(struct vm_area_struct *vma)
292{
293 return vma->vm_flags & VM_MAYSHARE;
294}
295#else
296#define get_unmapped_area_mem NULL
297
298static inline int private_mapping_ok(struct vm_area_struct *vma)
299{
300 return 1;
301}
302#endif
303
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +0400304static const struct vm_operations_struct mmap_mem_ops = {
Rik van Riel7ae8ed52008-07-23 21:27:07 -0700305#ifdef CONFIG_HAVE_IOREMAP_PROT
306 .access = generic_access_phys
307#endif
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700308};
309
Andrew Mortond7d4d842010-03-10 15:21:52 -0800310static int mmap_mem(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
Bjorn Helgaas80851ef2006-01-08 01:04:13 -0800312 size_t size = vma->vm_end - vma->vm_start;
313
Lennert Buytenhek06c67be2006-07-10 04:45:27 -0700314 if (!valid_mmap_phys_addr_range(vma->vm_pgoff, size))
Bjorn Helgaas80851ef2006-01-08 01:04:13 -0800315 return -EINVAL;
316
David Howells5da61852006-09-27 01:50:16 -0700317 if (!private_mapping_ok(vma))
318 return -ENOSYS;
319
Venki Pallipadie2beb3e2008-03-06 23:01:47 -0800320 if (!range_is_allowed(vma->vm_pgoff, size))
321 return -EPERM;
322
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700323 if (!phys_mem_access_prot_allowed(file, vma->vm_pgoff, size,
324 &vma->vm_page_prot))
325 return -EINVAL;
326
Roland Dreier8b150472005-10-28 17:46:18 -0700327 vma->vm_page_prot = phys_mem_access_prot(file, vma->vm_pgoff,
Bjorn Helgaas80851ef2006-01-08 01:04:13 -0800328 size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 vma->vm_page_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700331 vma->vm_ops = &mmap_mem_ops;
332
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -0700333 /* Remap-pfn-range will mark the range VM_IO */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 if (remap_pfn_range(vma,
335 vma->vm_start,
336 vma->vm_pgoff,
Bjorn Helgaas80851ef2006-01-08 01:04:13 -0800337 size,
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700338 vma->vm_page_prot)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 return -EAGAIN;
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 return 0;
342}
343
Arjan van de Venb781ecb2008-04-29 00:58:34 -0700344#ifdef CONFIG_DEVKMEM
Andrew Mortond7d4d842010-03-10 15:21:52 -0800345static int mmap_kmem(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
Linus Torvalds4bb82552005-08-13 14:22:59 -0700347 unsigned long pfn;
348
Linus Torvalds6d3154c2007-01-22 08:53:24 -0800349 /* Turn a kernel-virtual address into a physical page frame */
350 pfn = __pa((u64)vma->vm_pgoff << PAGE_SHIFT) >> PAGE_SHIFT;
Linus Torvalds4bb82552005-08-13 14:22:59 -0700351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 /*
Andrew Mortond7d4d842010-03-10 15:21:52 -0800353 * RED-PEN: on some architectures there is more mapped memory than
354 * available in mem_map which pfn_valid checks for. Perhaps should add a
355 * new macro here.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 *
357 * RED-PEN: vmalloc is not supported right now.
358 */
Linus Torvalds4bb82552005-08-13 14:22:59 -0700359 if (!pfn_valid(pfn))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return -EIO;
Linus Torvalds4bb82552005-08-13 14:22:59 -0700361
362 vma->vm_pgoff = pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 return mmap_mem(file, vma);
364}
Arjan van de Venb781ecb2008-04-29 00:58:34 -0700365#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Arjan van de Venb781ecb2008-04-29 00:58:34 -0700367#ifdef CONFIG_DEVKMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368/*
369 * This function reads the *virtual* memory as seen by the kernel.
370 */
Andrew Mortond7d4d842010-03-10 15:21:52 -0800371static ssize_t read_kmem(struct file *file, char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 size_t count, loff_t *ppos)
373{
374 unsigned long p = *ppos;
375 ssize_t low_count, read, sz;
Hans Grob890537b2013-02-06 11:37:20 +0100376 char *kbuf; /* k-addr because vread() takes vmlist_lock rwlock */
KAMEZAWA Hiroyuki325fda72010-02-02 13:44:05 -0800377 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379 read = 0;
380 if (p < (unsigned long) high_memory) {
381 low_count = count;
Andrew Mortond7d4d842010-03-10 15:21:52 -0800382 if (count > (unsigned long)high_memory - p)
383 low_count = (unsigned long)high_memory - p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385#ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
386 /* we don't have page 0 mapped on sparc and m68k.. */
387 if (p < PAGE_SIZE && low_count > 0) {
Wu Fengguang7fabadd2009-12-14 17:58:09 -0800388 sz = size_inside_page(p, low_count);
389 if (clear_user(buf, sz))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 return -EFAULT;
Wu Fengguang7fabadd2009-12-14 17:58:09 -0800391 buf += sz;
392 p += sz;
393 read += sz;
394 low_count -= sz;
395 count -= sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
397#endif
398 while (low_count > 0) {
Wu Fengguangf2223182009-12-14 17:58:07 -0800399 sz = size_inside_page(p, low_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 /*
402 * On ia64 if a page has been mapped somewhere as
403 * uncached, then it must also be accessed uncached
404 * by the kernel or data corruption may occur
405 */
Thierry Reding4707a342014-07-28 17:20:33 +0200406 kbuf = xlate_dev_kmem_ptr((void *)p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408 if (copy_to_user(buf, kbuf, sz))
409 return -EFAULT;
410 buf += sz;
411 p += sz;
412 read += sz;
413 low_count -= sz;
414 count -= sz;
415 }
416 }
417
418 if (count > 0) {
419 kbuf = (char *)__get_free_page(GFP_KERNEL);
420 if (!kbuf)
421 return -ENOMEM;
422 while (count > 0) {
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800423 sz = size_inside_page(p, count);
KAMEZAWA Hiroyuki325fda72010-02-02 13:44:05 -0800424 if (!is_vmalloc_or_module_addr((void *)p)) {
425 err = -ENXIO;
426 break;
427 }
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800428 sz = vread(kbuf, (char *)p, sz);
429 if (!sz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 break;
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800431 if (copy_to_user(buf, kbuf, sz)) {
KAMEZAWA Hiroyuki325fda72010-02-02 13:44:05 -0800432 err = -EFAULT;
433 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 }
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800435 count -= sz;
436 buf += sz;
437 read += sz;
438 p += sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 }
440 free_page((unsigned long)kbuf);
441 }
KAMEZAWA Hiroyuki325fda72010-02-02 13:44:05 -0800442 *ppos = p;
443 return read ? read : err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444}
445
446
Andrew Mortond7d4d842010-03-10 15:21:52 -0800447static ssize_t do_write_kmem(unsigned long p, const char __user *buf,
448 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449{
450 ssize_t written, sz;
451 unsigned long copied;
452
453 written = 0;
454#ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
455 /* we don't have page 0 mapped on sparc and m68k.. */
Wu Fengguangee323982009-12-14 17:58:10 -0800456 if (p < PAGE_SIZE) {
457 sz = size_inside_page(p, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 /* Hmm. Do something? */
459 buf += sz;
460 p += sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 count -= sz;
462 written += sz;
463 }
464#endif
465
466 while (count > 0) {
Thierry Reding4707a342014-07-28 17:20:33 +0200467 void *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Wu Fengguangee323982009-12-14 17:58:10 -0800469 sz = size_inside_page(p, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471 /*
Andrew Mortond7d4d842010-03-10 15:21:52 -0800472 * On ia64 if a page has been mapped somewhere as uncached, then
473 * it must also be accessed uncached by the kernel or data
474 * corruption may occur.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 */
Thierry Reding4707a342014-07-28 17:20:33 +0200476 ptr = xlate_dev_kmem_ptr((void *)p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 copied = copy_from_user(ptr, buf, sz);
479 if (copied) {
Jan Beulichc654d602006-03-25 03:07:31 -0800480 written += sz - copied;
481 if (written)
482 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 return -EFAULT;
484 }
485 buf += sz;
486 p += sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 count -= sz;
488 written += sz;
489 }
490
491 *ppos += written;
492 return written;
493}
494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495/*
496 * This function writes to the *virtual* memory as seen by the kernel.
497 */
Andrew Mortond7d4d842010-03-10 15:21:52 -0800498static ssize_t write_kmem(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 size_t count, loff_t *ppos)
500{
501 unsigned long p = *ppos;
502 ssize_t wrote = 0;
503 ssize_t virtr = 0;
Hans Grob890537b2013-02-06 11:37:20 +0100504 char *kbuf; /* k-addr because vwrite() takes vmlist_lock rwlock */
KAMEZAWA Hiroyuki325fda72010-02-02 13:44:05 -0800505 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 if (p < (unsigned long) high_memory) {
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800508 unsigned long to_write = min_t(unsigned long, count,
509 (unsigned long)high_memory - p);
Wu Fengguangee323982009-12-14 17:58:10 -0800510 wrote = do_write_kmem(p, buf, to_write, ppos);
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800511 if (wrote != to_write)
512 return wrote;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 p += wrote;
514 buf += wrote;
515 count -= wrote;
516 }
517
518 if (count > 0) {
519 kbuf = (char *)__get_free_page(GFP_KERNEL);
520 if (!kbuf)
521 return wrote ? wrote : -ENOMEM;
522 while (count > 0) {
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800523 unsigned long sz = size_inside_page(p, count);
524 unsigned long n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
KAMEZAWA Hiroyuki325fda72010-02-02 13:44:05 -0800526 if (!is_vmalloc_or_module_addr((void *)p)) {
527 err = -ENXIO;
528 break;
529 }
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800530 n = copy_from_user(kbuf, buf, sz);
531 if (n) {
KAMEZAWA Hiroyuki325fda72010-02-02 13:44:05 -0800532 err = -EFAULT;
533 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 }
Wu Fengguangc85e9a92010-02-02 13:44:06 -0800535 vwrite(kbuf, (char *)p, sz);
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800536 count -= sz;
537 buf += sz;
538 virtr += sz;
539 p += sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 }
541 free_page((unsigned long)kbuf);
542 }
543
KAMEZAWA Hiroyuki325fda72010-02-02 13:44:05 -0800544 *ppos = p;
545 return virtr + wrote ? : err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546}
Arjan van de Venb781ecb2008-04-29 00:58:34 -0700547#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Russell King4f911d62007-05-08 00:28:17 -0700549#ifdef CONFIG_DEVPORT
Andrew Mortond7d4d842010-03-10 15:21:52 -0800550static ssize_t read_port(struct file *file, char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 size_t count, loff_t *ppos)
552{
553 unsigned long i = *ppos;
554 char __user *tmp = buf;
555
556 if (!access_ok(VERIFY_WRITE, buf, count))
Andrew Mortond7d4d842010-03-10 15:21:52 -0800557 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 while (count-- > 0 && i < 65536) {
Andrew Mortond7d4d842010-03-10 15:21:52 -0800559 if (__put_user(inb(i), tmp) < 0)
560 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 i++;
562 tmp++;
563 }
564 *ppos = i;
565 return tmp-buf;
566}
567
Andrew Mortond7d4d842010-03-10 15:21:52 -0800568static ssize_t write_port(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 size_t count, loff_t *ppos)
570{
571 unsigned long i = *ppos;
Hans Grob890537b2013-02-06 11:37:20 +0100572 const char __user *tmp = buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Andrew Mortond7d4d842010-03-10 15:21:52 -0800574 if (!access_ok(VERIFY_READ, buf, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 return -EFAULT;
576 while (count-- > 0 && i < 65536) {
577 char c;
Jan Beulichc654d602006-03-25 03:07:31 -0800578 if (__get_user(c, tmp)) {
579 if (tmp > buf)
580 break;
Andrew Mortond7d4d842010-03-10 15:21:52 -0800581 return -EFAULT;
Jan Beulichc654d602006-03-25 03:07:31 -0800582 }
Andrew Mortond7d4d842010-03-10 15:21:52 -0800583 outb(c, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 i++;
585 tmp++;
586 }
587 *ppos = i;
588 return tmp-buf;
589}
590#endif
591
Andrew Mortond7d4d842010-03-10 15:21:52 -0800592static ssize_t read_null(struct file *file, char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 size_t count, loff_t *ppos)
594{
595 return 0;
596}
597
Andrew Mortond7d4d842010-03-10 15:21:52 -0800598static ssize_t write_null(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 size_t count, loff_t *ppos)
600{
601 return count;
602}
603
Zach Brown162934d2013-05-07 16:18:27 -0700604static ssize_t aio_read_null(struct kiocb *iocb, const struct iovec *iov,
605 unsigned long nr_segs, loff_t pos)
606{
607 return 0;
608}
609
610static ssize_t aio_write_null(struct kiocb *iocb, const struct iovec *iov,
611 unsigned long nr_segs, loff_t pos)
612{
613 return iov_length(iov, nr_segs);
614}
615
Jens Axboe1ebd32f2006-04-26 14:40:08 +0200616static int pipe_to_null(struct pipe_inode_info *info, struct pipe_buffer *buf,
617 struct splice_desc *sd)
618{
619 return sd->len;
620}
621
Andrew Mortond7d4d842010-03-10 15:21:52 -0800622static ssize_t splice_write_null(struct pipe_inode_info *pipe, struct file *out,
Jens Axboe1ebd32f2006-04-26 14:40:08 +0200623 loff_t *ppos, size_t len, unsigned int flags)
624{
625 return splice_from_pipe(pipe, out, ppos, len, flags, pipe_to_null);
626}
627
Al Viro13ba33e2014-08-18 10:04:12 -0400628static ssize_t read_iter_zero(struct kiocb *iocb, struct iov_iter *iter)
Zach Brown162934d2013-05-07 16:18:27 -0700629{
630 size_t written = 0;
Zach Brown162934d2013-05-07 16:18:27 -0700631
Al Viro13ba33e2014-08-18 10:04:12 -0400632 while (iov_iter_count(iter)) {
633 size_t chunk = iov_iter_count(iter), n;
634 if (chunk > PAGE_SIZE)
635 chunk = PAGE_SIZE; /* Just for latency reasons */
636 n = iov_iter_zero(chunk, iter);
637 if (!n && iov_iter_count(iter))
638 return written ? written : -EFAULT;
639 written += n;
640 if (signal_pending(current))
641 return written ? written : -ERESTARTSYS;
642 cond_resched();
Zach Brown162934d2013-05-07 16:18:27 -0700643 }
Al Viro13ba33e2014-08-18 10:04:12 -0400644 return written;
Zach Brown162934d2013-05-07 16:18:27 -0700645}
646
Andrew Mortond7d4d842010-03-10 15:21:52 -0800647static int mmap_zero(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
Nick Piggin557ed1f2007-10-16 01:24:40 -0700649#ifndef CONFIG_MMU
650 return -ENOSYS;
651#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 if (vma->vm_flags & VM_SHARED)
653 return shmem_zero_setup(vma);
Nick Piggin557ed1f2007-10-16 01:24:40 -0700654 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Andrew Mortond7d4d842010-03-10 15:21:52 -0800657static ssize_t write_full(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 size_t count, loff_t *ppos)
659{
660 return -ENOSPC;
661}
662
663/*
664 * Special lseek() function for /dev/null and /dev/zero. Most notably, you
665 * can fopen() both devices with "a" now. This was previously impossible.
666 * -- SRB.
667 */
Andrew Mortond7d4d842010-03-10 15:21:52 -0800668static loff_t null_lseek(struct file *file, loff_t offset, int orig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
670 return file->f_pos = 0;
671}
672
673/*
674 * The memory devices use the full 32/64 bits of the offset, and so we cannot
675 * check against negative addresses: they are ok. The return value is weird,
676 * though, in that case (0).
677 *
678 * also note that seeking relative to the "end of file" isn't supported:
679 * it has no meaning, so it returns -EINVAL.
680 */
Andrew Mortond7d4d842010-03-10 15:21:52 -0800681static loff_t memory_lseek(struct file *file, loff_t offset, int orig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
683 loff_t ret;
684
Al Viro496ad9a2013-01-23 17:07:38 -0500685 mutex_lock(&file_inode(file)->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 switch (orig) {
Andrew Mortond7d4d842010-03-10 15:21:52 -0800687 case SEEK_CUR:
688 offset += file->f_pos;
Andrew Mortond7d4d842010-03-10 15:21:52 -0800689 case SEEK_SET:
690 /* to avoid userland mistaking f_pos=-9 as -EBADF=-9 */
Rasmus Villemoes71811f32013-06-05 17:09:39 +0000691 if (IS_ERR_VALUE((unsigned long long)offset)) {
Andrew Mortond7d4d842010-03-10 15:21:52 -0800692 ret = -EOVERFLOW;
693 break;
694 }
695 file->f_pos = offset;
696 ret = file->f_pos;
697 force_successful_syscall_return();
698 break;
699 default:
700 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
Al Viro496ad9a2013-01-23 17:07:38 -0500702 mutex_unlock(&file_inode(file)->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 return ret;
704}
705
Hans Grob890537b2013-02-06 11:37:20 +0100706static int open_port(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
708 return capable(CAP_SYS_RAWIO) ? 0 : -EPERM;
709}
710
711#define zero_lseek null_lseek
712#define full_lseek null_lseek
713#define write_zero write_null
Zach Brown162934d2013-05-07 16:18:27 -0700714#define aio_write_zero aio_write_null
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715#define open_mem open_port
716#define open_kmem open_mem
717
Arjan van de Ven62322d22006-07-03 00:24:21 -0700718static const struct file_operations mem_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 .llseek = memory_lseek,
720 .read = read_mem,
721 .write = write_mem,
722 .mmap = mmap_mem,
723 .open = open_mem,
David Howells5da61852006-09-27 01:50:16 -0700724 .get_unmapped_area = get_unmapped_area_mem,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725};
726
Arjan van de Venb781ecb2008-04-29 00:58:34 -0700727#ifdef CONFIG_DEVKMEM
Arjan van de Ven62322d22006-07-03 00:24:21 -0700728static const struct file_operations kmem_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 .llseek = memory_lseek,
730 .read = read_kmem,
731 .write = write_kmem,
732 .mmap = mmap_kmem,
733 .open = open_kmem,
David Howells5da61852006-09-27 01:50:16 -0700734 .get_unmapped_area = get_unmapped_area_mem,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735};
Arjan van de Venb781ecb2008-04-29 00:58:34 -0700736#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Arjan van de Ven62322d22006-07-03 00:24:21 -0700738static const struct file_operations null_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 .llseek = null_lseek,
740 .read = read_null,
741 .write = write_null,
Zach Brown162934d2013-05-07 16:18:27 -0700742 .aio_read = aio_read_null,
743 .aio_write = aio_write_null,
Jens Axboe1ebd32f2006-04-26 14:40:08 +0200744 .splice_write = splice_write_null,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745};
746
Russell King4f911d62007-05-08 00:28:17 -0700747#ifdef CONFIG_DEVPORT
Arjan van de Ven62322d22006-07-03 00:24:21 -0700748static const struct file_operations port_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 .llseek = memory_lseek,
750 .read = read_port,
751 .write = write_port,
752 .open = open_port,
753};
754#endif
755
Arjan van de Ven62322d22006-07-03 00:24:21 -0700756static const struct file_operations zero_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 .llseek = zero_lseek,
Al Viro13ba33e2014-08-18 10:04:12 -0400758 .read = new_sync_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 .write = write_zero,
Al Viro13ba33e2014-08-18 10:04:12 -0400760 .read_iter = read_iter_zero,
Zach Brown162934d2013-05-07 16:18:27 -0700761 .aio_write = aio_write_zero,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 .mmap = mmap_zero,
763};
764
David Howells5da61852006-09-27 01:50:16 -0700765/*
766 * capabilities for /dev/zero
767 * - permits private mappings, "copies" are taken of the source of zeros
Jan Kara371d2172010-09-21 11:49:01 +0200768 * - no writeback happens
David Howells5da61852006-09-27 01:50:16 -0700769 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770static struct backing_dev_info zero_bdi = {
Jens Axboed9938312009-06-12 14:45:52 +0200771 .name = "char/mem",
Jan Kara371d2172010-09-21 11:49:01 +0200772 .capabilities = BDI_CAP_MAP_COPY | BDI_CAP_NO_ACCT_AND_WRITEBACK,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773};
774
Arjan van de Ven62322d22006-07-03 00:24:21 -0700775static const struct file_operations full_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 .llseek = full_lseek,
Al Viro13ba33e2014-08-18 10:04:12 -0400777 .read = new_sync_read,
778 .read_iter = read_iter_zero,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 .write = write_full,
780};
781
Kay Sievers389e0cb2009-07-04 16:51:29 +0200782static const struct memdev {
783 const char *name;
Al Viro2c9ede52011-07-23 20:24:48 -0400784 umode_t mode;
Kay Sievers389e0cb2009-07-04 16:51:29 +0200785 const struct file_operations *fops;
786 struct backing_dev_info *dev_info;
787} devlist[] = {
Kay Sieverse454cea2009-09-18 23:01:12 +0200788 [1] = { "mem", 0, &mem_fops, &directly_mappable_cdev_bdi },
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700789#ifdef CONFIG_DEVKMEM
Kay Sieverse454cea2009-09-18 23:01:12 +0200790 [2] = { "kmem", 0, &kmem_fops, &directly_mappable_cdev_bdi },
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700791#endif
Kay Sieverse454cea2009-09-18 23:01:12 +0200792 [3] = { "null", 0666, &null_fops, NULL },
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700793#ifdef CONFIG_DEVPORT
Kay Sieverse454cea2009-09-18 23:01:12 +0200794 [4] = { "port", 0, &port_fops, NULL },
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700795#endif
Kay Sieverse454cea2009-09-18 23:01:12 +0200796 [5] = { "zero", 0666, &zero_fops, &zero_bdi },
797 [7] = { "full", 0666, &full_fops, NULL },
798 [8] = { "random", 0666, &random_fops, NULL },
799 [9] = { "urandom", 0666, &urandom_fops, NULL },
Kay Sievers7f3a7812012-05-09 01:37:51 +0200800#ifdef CONFIG_PRINTK
Kay Sieverse11fea92012-05-03 02:29:41 +0200801 [11] = { "kmsg", 0644, &kmsg_fops, NULL },
Kay Sievers7f3a7812012-05-09 01:37:51 +0200802#endif
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700803};
804
805static int memory_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
Kay Sievers389e0cb2009-07-04 16:51:29 +0200807 int minor;
808 const struct memdev *dev;
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700809
Kay Sievers389e0cb2009-07-04 16:51:29 +0200810 minor = iminor(inode);
811 if (minor >= ARRAY_SIZE(devlist))
Frederic Weisbecker205153a2009-10-09 20:31:02 +0200812 return -ENXIO;
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700813
Kay Sievers389e0cb2009-07-04 16:51:29 +0200814 dev = &devlist[minor];
815 if (!dev->fops)
Frederic Weisbecker205153a2009-10-09 20:31:02 +0200816 return -ENXIO;
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700817
Kay Sievers389e0cb2009-07-04 16:51:29 +0200818 filp->f_op = dev->fops;
819 if (dev->dev_info)
820 filp->f_mapping->backing_dev_info = dev->dev_info;
821
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -0700822 /* Is /dev/mem or /dev/kmem ? */
823 if (dev->dev_info == &directly_mappable_cdev_bdi)
824 filp->f_mode |= FMODE_UNSIGNED_OFFSET;
825
Kay Sievers389e0cb2009-07-04 16:51:29 +0200826 if (dev->fops->open)
Frederic Weisbecker205153a2009-10-09 20:31:02 +0200827 return dev->fops->open(inode, filp);
828
829 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830}
831
Arjan van de Ven62322d22006-07-03 00:24:21 -0700832static const struct file_operations memory_fops = {
Andrew Mortond7d4d842010-03-10 15:21:52 -0800833 .open = memory_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200834 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835};
836
Al Viro2c9ede52011-07-23 20:24:48 -0400837static char *mem_devnode(struct device *dev, umode_t *mode)
Kay Sieverse454cea2009-09-18 23:01:12 +0200838{
839 if (mode && devlist[MINOR(dev->devt)].mode)
840 *mode = devlist[MINOR(dev->devt)].mode;
841 return NULL;
842}
843
gregkh@suse.deca8eca62005-03-23 09:53:09 -0800844static struct class *mem_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846static int __init chr_dev_init(void)
847{
Kay Sievers389e0cb2009-07-04 16:51:29 +0200848 int minor;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700849 int err;
850
851 err = bdi_init(&zero_bdi);
852 if (err)
853 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Andrew Mortond7d4d842010-03-10 15:21:52 -0800855 if (register_chrdev(MEM_MAJOR, "mem", &memory_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 printk("unable to get major %d for memory devs\n", MEM_MAJOR);
857
gregkh@suse.deca8eca62005-03-23 09:53:09 -0800858 mem_class = class_create(THIS_MODULE, "mem");
Anton Blanchard6e191f72010-04-06 14:34:55 -0700859 if (IS_ERR(mem_class))
860 return PTR_ERR(mem_class);
861
Kay Sieverse454cea2009-09-18 23:01:12 +0200862 mem_class->devnode = mem_devnode;
Kay Sievers389e0cb2009-07-04 16:51:29 +0200863 for (minor = 1; minor < ARRAY_SIZE(devlist); minor++) {
864 if (!devlist[minor].name)
865 continue;
Haren Mynenie1612de2012-07-11 15:18:44 +1000866
867 /*
Hans Grob890537b2013-02-06 11:37:20 +0100868 * Create /dev/port?
Haren Mynenie1612de2012-07-11 15:18:44 +1000869 */
870 if ((minor == DEVPORT_MINOR) && !arch_has_dev_port())
871 continue;
872
Kay Sievers389e0cb2009-07-04 16:51:29 +0200873 device_create(mem_class, NULL, MKDEV(MEM_MAJOR, minor),
874 NULL, devlist[minor].name);
875 }
Greg Kroah-Hartmanebf644c2006-07-25 17:13:31 -0700876
David Howells31d1d482010-08-06 16:34:43 +0100877 return tty_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878}
879
880fs_initcall(chr_dev_init);