blob: 080273287c48842ab95b1d84f1c55bf13f0ae327 [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
Rob Ward35b6c7e2014-12-20 18:28:35 +000031#include <linux/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 Gaocfaf3462011-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
Andrew Mortond7d4d842010-03-10 15:21:52 -0800344static int mmap_kmem(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Linus Torvalds4bb82552005-08-13 14:22:59 -0700346 unsigned long pfn;
347
Linus Torvalds6d3154c2007-01-22 08:53:24 -0800348 /* Turn a kernel-virtual address into a physical page frame */
349 pfn = __pa((u64)vma->vm_pgoff << PAGE_SHIFT) >> PAGE_SHIFT;
Linus Torvalds4bb82552005-08-13 14:22:59 -0700350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 /*
Andrew Mortond7d4d842010-03-10 15:21:52 -0800352 * RED-PEN: on some architectures there is more mapped memory than
353 * available in mem_map which pfn_valid checks for. Perhaps should add a
354 * new macro here.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 *
356 * RED-PEN: vmalloc is not supported right now.
357 */
Linus Torvalds4bb82552005-08-13 14:22:59 -0700358 if (!pfn_valid(pfn))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return -EIO;
Linus Torvalds4bb82552005-08-13 14:22:59 -0700360
361 vma->vm_pgoff = pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 return mmap_mem(file, vma);
363}
364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365/*
366 * This function reads the *virtual* memory as seen by the kernel.
367 */
Andrew Mortond7d4d842010-03-10 15:21:52 -0800368static ssize_t read_kmem(struct file *file, char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 size_t count, loff_t *ppos)
370{
371 unsigned long p = *ppos;
372 ssize_t low_count, read, sz;
Hans Grob890537b2013-02-06 11:37:20 +0100373 char *kbuf; /* k-addr because vread() takes vmlist_lock rwlock */
KAMEZAWA Hiroyuki325fda72010-02-02 13:44:05 -0800374 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
376 read = 0;
377 if (p < (unsigned long) high_memory) {
378 low_count = count;
Andrew Mortond7d4d842010-03-10 15:21:52 -0800379 if (count > (unsigned long)high_memory - p)
380 low_count = (unsigned long)high_memory - p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382#ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
383 /* we don't have page 0 mapped on sparc and m68k.. */
384 if (p < PAGE_SIZE && low_count > 0) {
Wu Fengguang7fabadd2009-12-14 17:58:09 -0800385 sz = size_inside_page(p, low_count);
386 if (clear_user(buf, sz))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 return -EFAULT;
Wu Fengguang7fabadd2009-12-14 17:58:09 -0800388 buf += sz;
389 p += sz;
390 read += sz;
391 low_count -= sz;
392 count -= sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 }
394#endif
395 while (low_count > 0) {
Wu Fengguangf2223182009-12-14 17:58:07 -0800396 sz = size_inside_page(p, low_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 /*
399 * On ia64 if a page has been mapped somewhere as
400 * uncached, then it must also be accessed uncached
401 * by the kernel or data corruption may occur
402 */
Thierry Reding4707a342014-07-28 17:20:33 +0200403 kbuf = xlate_dev_kmem_ptr((void *)p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405 if (copy_to_user(buf, kbuf, sz))
406 return -EFAULT;
407 buf += sz;
408 p += sz;
409 read += sz;
410 low_count -= sz;
411 count -= sz;
412 }
413 }
414
415 if (count > 0) {
416 kbuf = (char *)__get_free_page(GFP_KERNEL);
417 if (!kbuf)
418 return -ENOMEM;
419 while (count > 0) {
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800420 sz = size_inside_page(p, count);
KAMEZAWA Hiroyuki325fda72010-02-02 13:44:05 -0800421 if (!is_vmalloc_or_module_addr((void *)p)) {
422 err = -ENXIO;
423 break;
424 }
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800425 sz = vread(kbuf, (char *)p, sz);
426 if (!sz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 break;
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800428 if (copy_to_user(buf, kbuf, sz)) {
KAMEZAWA Hiroyuki325fda72010-02-02 13:44:05 -0800429 err = -EFAULT;
430 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800432 count -= sz;
433 buf += sz;
434 read += sz;
435 p += sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 }
437 free_page((unsigned long)kbuf);
438 }
KAMEZAWA Hiroyuki325fda72010-02-02 13:44:05 -0800439 *ppos = p;
440 return read ? read : err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
442
443
Andrew Mortond7d4d842010-03-10 15:21:52 -0800444static ssize_t do_write_kmem(unsigned long p, const char __user *buf,
445 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446{
447 ssize_t written, sz;
448 unsigned long copied;
449
450 written = 0;
451#ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
452 /* we don't have page 0 mapped on sparc and m68k.. */
Wu Fengguangee323982009-12-14 17:58:10 -0800453 if (p < PAGE_SIZE) {
454 sz = size_inside_page(p, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 /* Hmm. Do something? */
456 buf += sz;
457 p += sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 count -= sz;
459 written += sz;
460 }
461#endif
462
463 while (count > 0) {
Thierry Reding4707a342014-07-28 17:20:33 +0200464 void *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Wu Fengguangee323982009-12-14 17:58:10 -0800466 sz = size_inside_page(p, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468 /*
Andrew Mortond7d4d842010-03-10 15:21:52 -0800469 * On ia64 if a page has been mapped somewhere as uncached, then
470 * it must also be accessed uncached by the kernel or data
471 * corruption may occur.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 */
Thierry Reding4707a342014-07-28 17:20:33 +0200473 ptr = xlate_dev_kmem_ptr((void *)p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475 copied = copy_from_user(ptr, buf, sz);
476 if (copied) {
Jan Beulichc654d602006-03-25 03:07:31 -0800477 written += sz - copied;
478 if (written)
479 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 return -EFAULT;
481 }
482 buf += sz;
483 p += sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 count -= sz;
485 written += sz;
486 }
487
488 *ppos += written;
489 return written;
490}
491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492/*
493 * This function writes to the *virtual* memory as seen by the kernel.
494 */
Andrew Mortond7d4d842010-03-10 15:21:52 -0800495static ssize_t write_kmem(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 size_t count, loff_t *ppos)
497{
498 unsigned long p = *ppos;
499 ssize_t wrote = 0;
500 ssize_t virtr = 0;
Hans Grob890537b2013-02-06 11:37:20 +0100501 char *kbuf; /* k-addr because vwrite() takes vmlist_lock rwlock */
KAMEZAWA Hiroyuki325fda72010-02-02 13:44:05 -0800502 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 if (p < (unsigned long) high_memory) {
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800505 unsigned long to_write = min_t(unsigned long, count,
506 (unsigned long)high_memory - p);
Wu Fengguangee323982009-12-14 17:58:10 -0800507 wrote = do_write_kmem(p, buf, to_write, ppos);
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800508 if (wrote != to_write)
509 return wrote;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 p += wrote;
511 buf += wrote;
512 count -= wrote;
513 }
514
515 if (count > 0) {
516 kbuf = (char *)__get_free_page(GFP_KERNEL);
517 if (!kbuf)
518 return wrote ? wrote : -ENOMEM;
519 while (count > 0) {
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800520 unsigned long sz = size_inside_page(p, count);
521 unsigned long n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
KAMEZAWA Hiroyuki325fda72010-02-02 13:44:05 -0800523 if (!is_vmalloc_or_module_addr((void *)p)) {
524 err = -ENXIO;
525 break;
526 }
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800527 n = copy_from_user(kbuf, buf, sz);
528 if (n) {
KAMEZAWA Hiroyuki325fda72010-02-02 13:44:05 -0800529 err = -EFAULT;
530 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 }
Wu Fengguangc85e9a92010-02-02 13:44:06 -0800532 vwrite(kbuf, (char *)p, sz);
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800533 count -= sz;
534 buf += sz;
535 virtr += sz;
536 p += sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 }
538 free_page((unsigned long)kbuf);
539 }
540
KAMEZAWA Hiroyuki325fda72010-02-02 13:44:05 -0800541 *ppos = p;
542 return virtr + wrote ? : err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
544
Andrew Mortond7d4d842010-03-10 15:21:52 -0800545static ssize_t read_port(struct file *file, char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 size_t count, loff_t *ppos)
547{
548 unsigned long i = *ppos;
549 char __user *tmp = buf;
550
551 if (!access_ok(VERIFY_WRITE, buf, count))
Andrew Mortond7d4d842010-03-10 15:21:52 -0800552 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 while (count-- > 0 && i < 65536) {
Andrew Mortond7d4d842010-03-10 15:21:52 -0800554 if (__put_user(inb(i), tmp) < 0)
555 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 i++;
557 tmp++;
558 }
559 *ppos = i;
560 return tmp-buf;
561}
562
Andrew Mortond7d4d842010-03-10 15:21:52 -0800563static ssize_t write_port(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 size_t count, loff_t *ppos)
565{
566 unsigned long i = *ppos;
Hans Grob890537b2013-02-06 11:37:20 +0100567 const char __user *tmp = buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Andrew Mortond7d4d842010-03-10 15:21:52 -0800569 if (!access_ok(VERIFY_READ, buf, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 return -EFAULT;
571 while (count-- > 0 && i < 65536) {
572 char c;
Rob Ward6a0061b2014-12-20 18:28:36 +0000573
Jan Beulichc654d602006-03-25 03:07:31 -0800574 if (__get_user(c, tmp)) {
575 if (tmp > buf)
576 break;
Andrew Mortond7d4d842010-03-10 15:21:52 -0800577 return -EFAULT;
Jan Beulichc654d602006-03-25 03:07:31 -0800578 }
Andrew Mortond7d4d842010-03-10 15:21:52 -0800579 outb(c, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 i++;
581 tmp++;
582 }
583 *ppos = i;
584 return tmp-buf;
585}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Andrew Mortond7d4d842010-03-10 15:21:52 -0800587static ssize_t read_null(struct file *file, char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 size_t count, loff_t *ppos)
589{
590 return 0;
591}
592
Andrew Mortond7d4d842010-03-10 15:21:52 -0800593static ssize_t write_null(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 size_t count, loff_t *ppos)
595{
596 return count;
597}
598
Zach Brown162934d2013-05-07 16:18:27 -0700599static ssize_t aio_read_null(struct kiocb *iocb, const struct iovec *iov,
600 unsigned long nr_segs, loff_t pos)
601{
602 return 0;
603}
604
605static ssize_t aio_write_null(struct kiocb *iocb, const struct iovec *iov,
606 unsigned long nr_segs, loff_t pos)
607{
608 return iov_length(iov, nr_segs);
609}
610
Jens Axboe1ebd32f2006-04-26 14:40:08 +0200611static int pipe_to_null(struct pipe_inode_info *info, struct pipe_buffer *buf,
612 struct splice_desc *sd)
613{
614 return sd->len;
615}
616
Andrew Mortond7d4d842010-03-10 15:21:52 -0800617static ssize_t splice_write_null(struct pipe_inode_info *pipe, struct file *out,
Jens Axboe1ebd32f2006-04-26 14:40:08 +0200618 loff_t *ppos, size_t len, unsigned int flags)
619{
620 return splice_from_pipe(pipe, out, ppos, len, flags, pipe_to_null);
621}
622
Al Viro13ba33e2014-08-18 10:04:12 -0400623static ssize_t read_iter_zero(struct kiocb *iocb, struct iov_iter *iter)
Zach Brown162934d2013-05-07 16:18:27 -0700624{
625 size_t written = 0;
Zach Brown162934d2013-05-07 16:18:27 -0700626
Al Viro13ba33e2014-08-18 10:04:12 -0400627 while (iov_iter_count(iter)) {
628 size_t chunk = iov_iter_count(iter), n;
Rob Ward6a0061b2014-12-20 18:28:36 +0000629
Al Viro13ba33e2014-08-18 10:04:12 -0400630 if (chunk > PAGE_SIZE)
631 chunk = PAGE_SIZE; /* Just for latency reasons */
632 n = iov_iter_zero(chunk, iter);
633 if (!n && iov_iter_count(iter))
634 return written ? written : -EFAULT;
635 written += n;
636 if (signal_pending(current))
637 return written ? written : -ERESTARTSYS;
638 cond_resched();
Zach Brown162934d2013-05-07 16:18:27 -0700639 }
Al Viro13ba33e2014-08-18 10:04:12 -0400640 return written;
Zach Brown162934d2013-05-07 16:18:27 -0700641}
642
Andrew Mortond7d4d842010-03-10 15:21:52 -0800643static int mmap_zero(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
Nick Piggin557ed1f2007-10-16 01:24:40 -0700645#ifndef CONFIG_MMU
646 return -ENOSYS;
647#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 if (vma->vm_flags & VM_SHARED)
649 return shmem_zero_setup(vma);
Nick Piggin557ed1f2007-10-16 01:24:40 -0700650 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Andrew Mortond7d4d842010-03-10 15:21:52 -0800653static ssize_t write_full(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 size_t count, loff_t *ppos)
655{
656 return -ENOSPC;
657}
658
659/*
660 * Special lseek() function for /dev/null and /dev/zero. Most notably, you
661 * can fopen() both devices with "a" now. This was previously impossible.
662 * -- SRB.
663 */
Andrew Mortond7d4d842010-03-10 15:21:52 -0800664static loff_t null_lseek(struct file *file, loff_t offset, int orig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
666 return file->f_pos = 0;
667}
668
669/*
670 * The memory devices use the full 32/64 bits of the offset, and so we cannot
671 * check against negative addresses: they are ok. The return value is weird,
672 * though, in that case (0).
673 *
674 * also note that seeking relative to the "end of file" isn't supported:
675 * it has no meaning, so it returns -EINVAL.
676 */
Andrew Mortond7d4d842010-03-10 15:21:52 -0800677static loff_t memory_lseek(struct file *file, loff_t offset, int orig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
679 loff_t ret;
680
Al Viro496ad9a2013-01-23 17:07:38 -0500681 mutex_lock(&file_inode(file)->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 switch (orig) {
Andrew Mortond7d4d842010-03-10 15:21:52 -0800683 case SEEK_CUR:
684 offset += file->f_pos;
Andrew Mortond7d4d842010-03-10 15:21:52 -0800685 case SEEK_SET:
686 /* to avoid userland mistaking f_pos=-9 as -EBADF=-9 */
Rasmus Villemoes71811f32013-06-05 17:09:39 +0000687 if (IS_ERR_VALUE((unsigned long long)offset)) {
Andrew Mortond7d4d842010-03-10 15:21:52 -0800688 ret = -EOVERFLOW;
689 break;
690 }
691 file->f_pos = offset;
692 ret = file->f_pos;
693 force_successful_syscall_return();
694 break;
695 default:
696 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 }
Al Viro496ad9a2013-01-23 17:07:38 -0500698 mutex_unlock(&file_inode(file)->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 return ret;
700}
701
Hans Grob890537b2013-02-06 11:37:20 +0100702static int open_port(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
704 return capable(CAP_SYS_RAWIO) ? 0 : -EPERM;
705}
706
707#define zero_lseek null_lseek
708#define full_lseek null_lseek
709#define write_zero write_null
Zach Brown162934d2013-05-07 16:18:27 -0700710#define aio_write_zero aio_write_null
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711#define open_mem open_port
712#define open_kmem open_mem
713
Rob Ward73f07182014-12-07 15:40:33 +0000714static const struct file_operations __maybe_unused mem_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 .llseek = memory_lseek,
716 .read = read_mem,
717 .write = write_mem,
718 .mmap = mmap_mem,
719 .open = open_mem,
David Howells5da61852006-09-27 01:50:16 -0700720 .get_unmapped_area = get_unmapped_area_mem,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721};
722
Rob Warda8c91252014-12-07 15:40:34 +0000723static const struct file_operations __maybe_unused kmem_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 .llseek = memory_lseek,
725 .read = read_kmem,
726 .write = write_kmem,
727 .mmap = mmap_kmem,
728 .open = open_kmem,
David Howells5da61852006-09-27 01:50:16 -0700729 .get_unmapped_area = get_unmapped_area_mem,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730};
731
Arjan van de Ven62322d22006-07-03 00:24:21 -0700732static const struct file_operations null_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 .llseek = null_lseek,
734 .read = read_null,
735 .write = write_null,
Zach Brown162934d2013-05-07 16:18:27 -0700736 .aio_read = aio_read_null,
737 .aio_write = aio_write_null,
Jens Axboe1ebd32f2006-04-26 14:40:08 +0200738 .splice_write = splice_write_null,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739};
740
Rob Ward3a4bc2f2014-12-07 15:40:35 +0000741static const struct file_operations __maybe_unused port_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 .llseek = memory_lseek,
743 .read = read_port,
744 .write = write_port,
745 .open = open_port,
746};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Arjan van de Ven62322d22006-07-03 00:24:21 -0700748static const struct file_operations zero_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 .llseek = zero_lseek,
Al Viro13ba33e2014-08-18 10:04:12 -0400750 .read = new_sync_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 .write = write_zero,
Al Viro13ba33e2014-08-18 10:04:12 -0400752 .read_iter = read_iter_zero,
Zach Brown162934d2013-05-07 16:18:27 -0700753 .aio_write = aio_write_zero,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 .mmap = mmap_zero,
755};
756
David Howells5da61852006-09-27 01:50:16 -0700757/*
758 * capabilities for /dev/zero
759 * - permits private mappings, "copies" are taken of the source of zeros
Jan Kara371d2172010-09-21 11:49:01 +0200760 * - no writeback happens
David Howells5da61852006-09-27 01:50:16 -0700761 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762static struct backing_dev_info zero_bdi = {
Jens Axboed9938312009-06-12 14:45:52 +0200763 .name = "char/mem",
Jan Kara371d2172010-09-21 11:49:01 +0200764 .capabilities = BDI_CAP_MAP_COPY | BDI_CAP_NO_ACCT_AND_WRITEBACK,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765};
766
Arjan van de Ven62322d22006-07-03 00:24:21 -0700767static const struct file_operations full_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 .llseek = full_lseek,
Al Viro13ba33e2014-08-18 10:04:12 -0400769 .read = new_sync_read,
770 .read_iter = read_iter_zero,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 .write = write_full,
772};
773
Kay Sievers389e0cb2009-07-04 16:51:29 +0200774static const struct memdev {
775 const char *name;
Al Viro2c9ede52011-07-23 20:24:48 -0400776 umode_t mode;
Kay Sievers389e0cb2009-07-04 16:51:29 +0200777 const struct file_operations *fops;
778 struct backing_dev_info *dev_info;
779} devlist[] = {
Rob Ward73f07182014-12-07 15:40:33 +0000780#ifdef CONFIG_DEVMEM
Kay Sieverse454cea2009-09-18 23:01:12 +0200781 [1] = { "mem", 0, &mem_fops, &directly_mappable_cdev_bdi },
Rob Ward73f07182014-12-07 15:40:33 +0000782#endif
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700783#ifdef CONFIG_DEVKMEM
Kay Sieverse454cea2009-09-18 23:01:12 +0200784 [2] = { "kmem", 0, &kmem_fops, &directly_mappable_cdev_bdi },
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700785#endif
Kay Sieverse454cea2009-09-18 23:01:12 +0200786 [3] = { "null", 0666, &null_fops, NULL },
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700787#ifdef CONFIG_DEVPORT
Kay Sieverse454cea2009-09-18 23:01:12 +0200788 [4] = { "port", 0, &port_fops, NULL },
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700789#endif
Kay Sieverse454cea2009-09-18 23:01:12 +0200790 [5] = { "zero", 0666, &zero_fops, &zero_bdi },
791 [7] = { "full", 0666, &full_fops, NULL },
792 [8] = { "random", 0666, &random_fops, NULL },
793 [9] = { "urandom", 0666, &urandom_fops, NULL },
Kay Sievers7f3a7812012-05-09 01:37:51 +0200794#ifdef CONFIG_PRINTK
Kay Sieverse11fea92012-05-03 02:29:41 +0200795 [11] = { "kmsg", 0644, &kmsg_fops, NULL },
Kay Sievers7f3a7812012-05-09 01:37:51 +0200796#endif
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700797};
798
799static int memory_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800{
Kay Sievers389e0cb2009-07-04 16:51:29 +0200801 int minor;
802 const struct memdev *dev;
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700803
Kay Sievers389e0cb2009-07-04 16:51:29 +0200804 minor = iminor(inode);
805 if (minor >= ARRAY_SIZE(devlist))
Frederic Weisbecker205153a2009-10-09 20:31:02 +0200806 return -ENXIO;
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700807
Kay Sievers389e0cb2009-07-04 16:51:29 +0200808 dev = &devlist[minor];
809 if (!dev->fops)
Frederic Weisbecker205153a2009-10-09 20:31:02 +0200810 return -ENXIO;
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700811
Kay Sievers389e0cb2009-07-04 16:51:29 +0200812 filp->f_op = dev->fops;
813 if (dev->dev_info)
814 filp->f_mapping->backing_dev_info = dev->dev_info;
815
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -0700816 /* Is /dev/mem or /dev/kmem ? */
817 if (dev->dev_info == &directly_mappable_cdev_bdi)
818 filp->f_mode |= FMODE_UNSIGNED_OFFSET;
819
Kay Sievers389e0cb2009-07-04 16:51:29 +0200820 if (dev->fops->open)
Frederic Weisbecker205153a2009-10-09 20:31:02 +0200821 return dev->fops->open(inode, filp);
822
823 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
Arjan van de Ven62322d22006-07-03 00:24:21 -0700826static const struct file_operations memory_fops = {
Andrew Mortond7d4d842010-03-10 15:21:52 -0800827 .open = memory_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200828 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829};
830
Al Viro2c9ede52011-07-23 20:24:48 -0400831static char *mem_devnode(struct device *dev, umode_t *mode)
Kay Sieverse454cea2009-09-18 23:01:12 +0200832{
833 if (mode && devlist[MINOR(dev->devt)].mode)
834 *mode = devlist[MINOR(dev->devt)].mode;
835 return NULL;
836}
837
gregkh@suse.deca8eca62005-03-23 09:53:09 -0800838static struct class *mem_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840static int __init chr_dev_init(void)
841{
Kay Sievers389e0cb2009-07-04 16:51:29 +0200842 int minor;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700843 int err;
844
845 err = bdi_init(&zero_bdi);
846 if (err)
847 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Andrew Mortond7d4d842010-03-10 15:21:52 -0800849 if (register_chrdev(MEM_MAJOR, "mem", &memory_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 printk("unable to get major %d for memory devs\n", MEM_MAJOR);
851
gregkh@suse.deca8eca62005-03-23 09:53:09 -0800852 mem_class = class_create(THIS_MODULE, "mem");
Anton Blanchard6e191f72010-04-06 14:34:55 -0700853 if (IS_ERR(mem_class))
854 return PTR_ERR(mem_class);
855
Kay Sieverse454cea2009-09-18 23:01:12 +0200856 mem_class->devnode = mem_devnode;
Kay Sievers389e0cb2009-07-04 16:51:29 +0200857 for (minor = 1; minor < ARRAY_SIZE(devlist); minor++) {
858 if (!devlist[minor].name)
859 continue;
Haren Mynenie1612de2012-07-11 15:18:44 +1000860
861 /*
Hans Grob890537b2013-02-06 11:37:20 +0100862 * Create /dev/port?
Haren Mynenie1612de2012-07-11 15:18:44 +1000863 */
864 if ((minor == DEVPORT_MINOR) && !arch_has_dev_port())
865 continue;
866
Kay Sievers389e0cb2009-07-04 16:51:29 +0200867 device_create(mem_class, NULL, MKDEV(MEM_MAJOR, minor),
868 NULL, devlist[minor].name);
869 }
Greg Kroah-Hartmanebf644c2006-07-25 17:13:31 -0700870
David Howells31d1d482010-08-06 16:34:43 +0100871 return tty_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872}
873
874fs_initcall(chr_dev_init);