blob: da73aeaa70080f1fa553013f6e425e00fc9423b0 [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;
Jan Beulichc654d602006-03-25 03:07:31 -0800573 if (__get_user(c, tmp)) {
574 if (tmp > buf)
575 break;
Andrew Mortond7d4d842010-03-10 15:21:52 -0800576 return -EFAULT;
Jan Beulichc654d602006-03-25 03:07:31 -0800577 }
Andrew Mortond7d4d842010-03-10 15:21:52 -0800578 outb(c, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 i++;
580 tmp++;
581 }
582 *ppos = i;
583 return tmp-buf;
584}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Andrew Mortond7d4d842010-03-10 15:21:52 -0800586static ssize_t read_null(struct file *file, char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 size_t count, loff_t *ppos)
588{
589 return 0;
590}
591
Andrew Mortond7d4d842010-03-10 15:21:52 -0800592static ssize_t write_null(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 size_t count, loff_t *ppos)
594{
595 return count;
596}
597
Zach Brown162934d2013-05-07 16:18:27 -0700598static ssize_t aio_read_null(struct kiocb *iocb, const struct iovec *iov,
599 unsigned long nr_segs, loff_t pos)
600{
601 return 0;
602}
603
604static ssize_t aio_write_null(struct kiocb *iocb, const struct iovec *iov,
605 unsigned long nr_segs, loff_t pos)
606{
607 return iov_length(iov, nr_segs);
608}
609
Jens Axboe1ebd32f2006-04-26 14:40:08 +0200610static int pipe_to_null(struct pipe_inode_info *info, struct pipe_buffer *buf,
611 struct splice_desc *sd)
612{
613 return sd->len;
614}
615
Andrew Mortond7d4d842010-03-10 15:21:52 -0800616static ssize_t splice_write_null(struct pipe_inode_info *pipe, struct file *out,
Jens Axboe1ebd32f2006-04-26 14:40:08 +0200617 loff_t *ppos, size_t len, unsigned int flags)
618{
619 return splice_from_pipe(pipe, out, ppos, len, flags, pipe_to_null);
620}
621
Al Viro13ba33e2014-08-18 10:04:12 -0400622static ssize_t read_iter_zero(struct kiocb *iocb, struct iov_iter *iter)
Zach Brown162934d2013-05-07 16:18:27 -0700623{
624 size_t written = 0;
Zach Brown162934d2013-05-07 16:18:27 -0700625
Al Viro13ba33e2014-08-18 10:04:12 -0400626 while (iov_iter_count(iter)) {
627 size_t chunk = iov_iter_count(iter), n;
628 if (chunk > PAGE_SIZE)
629 chunk = PAGE_SIZE; /* Just for latency reasons */
630 n = iov_iter_zero(chunk, iter);
631 if (!n && iov_iter_count(iter))
632 return written ? written : -EFAULT;
633 written += n;
634 if (signal_pending(current))
635 return written ? written : -ERESTARTSYS;
636 cond_resched();
Zach Brown162934d2013-05-07 16:18:27 -0700637 }
Al Viro13ba33e2014-08-18 10:04:12 -0400638 return written;
Zach Brown162934d2013-05-07 16:18:27 -0700639}
640
Andrew Mortond7d4d842010-03-10 15:21:52 -0800641static int mmap_zero(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
Nick Piggin557ed1f2007-10-16 01:24:40 -0700643#ifndef CONFIG_MMU
644 return -ENOSYS;
645#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 if (vma->vm_flags & VM_SHARED)
647 return shmem_zero_setup(vma);
Nick Piggin557ed1f2007-10-16 01:24:40 -0700648 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Andrew Mortond7d4d842010-03-10 15:21:52 -0800651static ssize_t write_full(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 size_t count, loff_t *ppos)
653{
654 return -ENOSPC;
655}
656
657/*
658 * Special lseek() function for /dev/null and /dev/zero. Most notably, you
659 * can fopen() both devices with "a" now. This was previously impossible.
660 * -- SRB.
661 */
Andrew Mortond7d4d842010-03-10 15:21:52 -0800662static loff_t null_lseek(struct file *file, loff_t offset, int orig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663{
664 return file->f_pos = 0;
665}
666
667/*
668 * The memory devices use the full 32/64 bits of the offset, and so we cannot
669 * check against negative addresses: they are ok. The return value is weird,
670 * though, in that case (0).
671 *
672 * also note that seeking relative to the "end of file" isn't supported:
673 * it has no meaning, so it returns -EINVAL.
674 */
Andrew Mortond7d4d842010-03-10 15:21:52 -0800675static loff_t memory_lseek(struct file *file, loff_t offset, int orig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
677 loff_t ret;
678
Al Viro496ad9a2013-01-23 17:07:38 -0500679 mutex_lock(&file_inode(file)->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 switch (orig) {
Andrew Mortond7d4d842010-03-10 15:21:52 -0800681 case SEEK_CUR:
682 offset += file->f_pos;
Andrew Mortond7d4d842010-03-10 15:21:52 -0800683 case SEEK_SET:
684 /* to avoid userland mistaking f_pos=-9 as -EBADF=-9 */
Rasmus Villemoes71811f32013-06-05 17:09:39 +0000685 if (IS_ERR_VALUE((unsigned long long)offset)) {
Andrew Mortond7d4d842010-03-10 15:21:52 -0800686 ret = -EOVERFLOW;
687 break;
688 }
689 file->f_pos = offset;
690 ret = file->f_pos;
691 force_successful_syscall_return();
692 break;
693 default:
694 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 }
Al Viro496ad9a2013-01-23 17:07:38 -0500696 mutex_unlock(&file_inode(file)->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 return ret;
698}
699
Hans Grob890537b2013-02-06 11:37:20 +0100700static int open_port(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
702 return capable(CAP_SYS_RAWIO) ? 0 : -EPERM;
703}
704
705#define zero_lseek null_lseek
706#define full_lseek null_lseek
707#define write_zero write_null
Zach Brown162934d2013-05-07 16:18:27 -0700708#define aio_write_zero aio_write_null
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709#define open_mem open_port
710#define open_kmem open_mem
711
Rob Ward73f07182014-12-07 15:40:33 +0000712static const struct file_operations __maybe_unused mem_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 .llseek = memory_lseek,
714 .read = read_mem,
715 .write = write_mem,
716 .mmap = mmap_mem,
717 .open = open_mem,
David Howells5da61852006-09-27 01:50:16 -0700718 .get_unmapped_area = get_unmapped_area_mem,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719};
720
Rob Warda8c91252014-12-07 15:40:34 +0000721static const struct file_operations __maybe_unused kmem_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 .llseek = memory_lseek,
723 .read = read_kmem,
724 .write = write_kmem,
725 .mmap = mmap_kmem,
726 .open = open_kmem,
David Howells5da61852006-09-27 01:50:16 -0700727 .get_unmapped_area = get_unmapped_area_mem,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728};
729
Arjan van de Ven62322d22006-07-03 00:24:21 -0700730static const struct file_operations null_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 .llseek = null_lseek,
732 .read = read_null,
733 .write = write_null,
Zach Brown162934d2013-05-07 16:18:27 -0700734 .aio_read = aio_read_null,
735 .aio_write = aio_write_null,
Jens Axboe1ebd32f2006-04-26 14:40:08 +0200736 .splice_write = splice_write_null,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737};
738
Rob Ward3a4bc2f2014-12-07 15:40:35 +0000739static const struct file_operations __maybe_unused port_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 .llseek = memory_lseek,
741 .read = read_port,
742 .write = write_port,
743 .open = open_port,
744};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Arjan van de Ven62322d22006-07-03 00:24:21 -0700746static const struct file_operations zero_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 .llseek = zero_lseek,
Al Viro13ba33e2014-08-18 10:04:12 -0400748 .read = new_sync_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 .write = write_zero,
Al Viro13ba33e2014-08-18 10:04:12 -0400750 .read_iter = read_iter_zero,
Zach Brown162934d2013-05-07 16:18:27 -0700751 .aio_write = aio_write_zero,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 .mmap = mmap_zero,
753};
754
David Howells5da61852006-09-27 01:50:16 -0700755/*
756 * capabilities for /dev/zero
757 * - permits private mappings, "copies" are taken of the source of zeros
Jan Kara371d2172010-09-21 11:49:01 +0200758 * - no writeback happens
David Howells5da61852006-09-27 01:50:16 -0700759 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760static struct backing_dev_info zero_bdi = {
Jens Axboed9938312009-06-12 14:45:52 +0200761 .name = "char/mem",
Jan Kara371d2172010-09-21 11:49:01 +0200762 .capabilities = BDI_CAP_MAP_COPY | BDI_CAP_NO_ACCT_AND_WRITEBACK,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763};
764
Arjan van de Ven62322d22006-07-03 00:24:21 -0700765static const struct file_operations full_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 .llseek = full_lseek,
Al Viro13ba33e2014-08-18 10:04:12 -0400767 .read = new_sync_read,
768 .read_iter = read_iter_zero,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 .write = write_full,
770};
771
Kay Sievers389e0cb2009-07-04 16:51:29 +0200772static const struct memdev {
773 const char *name;
Al Viro2c9ede52011-07-23 20:24:48 -0400774 umode_t mode;
Kay Sievers389e0cb2009-07-04 16:51:29 +0200775 const struct file_operations *fops;
776 struct backing_dev_info *dev_info;
777} devlist[] = {
Rob Ward73f07182014-12-07 15:40:33 +0000778#ifdef CONFIG_DEVMEM
Kay Sieverse454cea2009-09-18 23:01:12 +0200779 [1] = { "mem", 0, &mem_fops, &directly_mappable_cdev_bdi },
Rob Ward73f07182014-12-07 15:40:33 +0000780#endif
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700781#ifdef CONFIG_DEVKMEM
Kay Sieverse454cea2009-09-18 23:01:12 +0200782 [2] = { "kmem", 0, &kmem_fops, &directly_mappable_cdev_bdi },
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700783#endif
Kay Sieverse454cea2009-09-18 23:01:12 +0200784 [3] = { "null", 0666, &null_fops, NULL },
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700785#ifdef CONFIG_DEVPORT
Kay Sieverse454cea2009-09-18 23:01:12 +0200786 [4] = { "port", 0, &port_fops, NULL },
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700787#endif
Kay Sieverse454cea2009-09-18 23:01:12 +0200788 [5] = { "zero", 0666, &zero_fops, &zero_bdi },
789 [7] = { "full", 0666, &full_fops, NULL },
790 [8] = { "random", 0666, &random_fops, NULL },
791 [9] = { "urandom", 0666, &urandom_fops, NULL },
Kay Sievers7f3a7812012-05-09 01:37:51 +0200792#ifdef CONFIG_PRINTK
Kay Sieverse11fea92012-05-03 02:29:41 +0200793 [11] = { "kmsg", 0644, &kmsg_fops, NULL },
Kay Sievers7f3a7812012-05-09 01:37:51 +0200794#endif
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700795};
796
797static int memory_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798{
Kay Sievers389e0cb2009-07-04 16:51:29 +0200799 int minor;
800 const struct memdev *dev;
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700801
Kay Sievers389e0cb2009-07-04 16:51:29 +0200802 minor = iminor(inode);
803 if (minor >= ARRAY_SIZE(devlist))
Frederic Weisbecker205153a2009-10-09 20:31:02 +0200804 return -ENXIO;
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700805
Kay Sievers389e0cb2009-07-04 16:51:29 +0200806 dev = &devlist[minor];
807 if (!dev->fops)
Frederic Weisbecker205153a2009-10-09 20:31:02 +0200808 return -ENXIO;
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700809
Kay Sievers389e0cb2009-07-04 16:51:29 +0200810 filp->f_op = dev->fops;
811 if (dev->dev_info)
812 filp->f_mapping->backing_dev_info = dev->dev_info;
813
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -0700814 /* Is /dev/mem or /dev/kmem ? */
815 if (dev->dev_info == &directly_mappable_cdev_bdi)
816 filp->f_mode |= FMODE_UNSIGNED_OFFSET;
817
Kay Sievers389e0cb2009-07-04 16:51:29 +0200818 if (dev->fops->open)
Frederic Weisbecker205153a2009-10-09 20:31:02 +0200819 return dev->fops->open(inode, filp);
820
821 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822}
823
Arjan van de Ven62322d22006-07-03 00:24:21 -0700824static const struct file_operations memory_fops = {
Andrew Mortond7d4d842010-03-10 15:21:52 -0800825 .open = memory_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200826 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827};
828
Al Viro2c9ede52011-07-23 20:24:48 -0400829static char *mem_devnode(struct device *dev, umode_t *mode)
Kay Sieverse454cea2009-09-18 23:01:12 +0200830{
831 if (mode && devlist[MINOR(dev->devt)].mode)
832 *mode = devlist[MINOR(dev->devt)].mode;
833 return NULL;
834}
835
gregkh@suse.deca8eca62005-03-23 09:53:09 -0800836static struct class *mem_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838static int __init chr_dev_init(void)
839{
Kay Sievers389e0cb2009-07-04 16:51:29 +0200840 int minor;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700841 int err;
842
843 err = bdi_init(&zero_bdi);
844 if (err)
845 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Andrew Mortond7d4d842010-03-10 15:21:52 -0800847 if (register_chrdev(MEM_MAJOR, "mem", &memory_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 printk("unable to get major %d for memory devs\n", MEM_MAJOR);
849
gregkh@suse.deca8eca62005-03-23 09:53:09 -0800850 mem_class = class_create(THIS_MODULE, "mem");
Anton Blanchard6e191f72010-04-06 14:34:55 -0700851 if (IS_ERR(mem_class))
852 return PTR_ERR(mem_class);
853
Kay Sieverse454cea2009-09-18 23:01:12 +0200854 mem_class->devnode = mem_devnode;
Kay Sievers389e0cb2009-07-04 16:51:29 +0200855 for (minor = 1; minor < ARRAY_SIZE(devlist); minor++) {
856 if (!devlist[minor].name)
857 continue;
Haren Mynenie1612de2012-07-11 15:18:44 +1000858
859 /*
Hans Grob890537b2013-02-06 11:37:20 +0100860 * Create /dev/port?
Haren Mynenie1612de2012-07-11 15:18:44 +1000861 */
862 if ((minor == DEVPORT_MINOR) && !arch_has_dev_port())
863 continue;
864
Kay Sievers389e0cb2009-07-04 16:51:29 +0200865 device_create(mem_class, NULL, MKDEV(MEM_MAJOR, minor),
866 NULL, devlist[minor].name);
867 }
Greg Kroah-Hartmanebf644c2006-07-25 17:13:31 -0700868
David Howells31d1d482010-08-06 16:34:43 +0100869 return tty_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870}
871
872fs_initcall(chr_dev_init);