[PATCH] net: Fix compiler-error on dgrs.c when !CONFIG_PCI
[firewire-audio.git] / drivers / char / mem.c
blob91dd669273e0018aeeb95b02e18b4549e074a661
1 /*
2 * linux/drivers/char/mem.c
4 * Copyright (C) 1991, 1992 Linus Torvalds
6 * Added devfs support.
7 * Jan-11-1998, C. Scott Ananian <cananian@alumni.princeton.edu>
8 * Shared /dev/zero mmaping support, Feb 2000, Kanoj Sarcar <kanoj@sgi.com>
9 */
11 #include <linux/config.h>
12 #include <linux/mm.h>
13 #include <linux/miscdevice.h>
14 #include <linux/slab.h>
15 #include <linux/vmalloc.h>
16 #include <linux/mman.h>
17 #include <linux/random.h>
18 #include <linux/init.h>
19 #include <linux/raw.h>
20 #include <linux/tty.h>
21 #include <linux/capability.h>
22 #include <linux/smp_lock.h>
23 #include <linux/devfs_fs_kernel.h>
24 #include <linux/ptrace.h>
25 #include <linux/device.h>
26 #include <linux/highmem.h>
27 #include <linux/crash_dump.h>
28 #include <linux/backing-dev.h>
29 #include <linux/bootmem.h>
31 #include <asm/uaccess.h>
32 #include <asm/io.h>
34 #ifdef CONFIG_IA64
35 # include <linux/efi.h>
36 #endif
39 * Architectures vary in how they handle caching for addresses
40 * outside of main memory.
43 static inline int uncached_access(struct file *file, unsigned long addr)
45 #if defined(__i386__)
47 * On the PPro and successors, the MTRRs are used to set
48 * memory types for physical addresses outside main memory,
49 * so blindly setting PCD or PWT on those pages is wrong.
50 * For Pentiums and earlier, the surround logic should disable
51 * caching for the high addresses through the KEN pin, but
52 * we maintain the tradition of paranoia in this code.
54 if (file->f_flags & O_SYNC)
55 return 1;
56 return !( test_bit(X86_FEATURE_MTRR, boot_cpu_data.x86_capability) ||
57 test_bit(X86_FEATURE_K6_MTRR, boot_cpu_data.x86_capability) ||
58 test_bit(X86_FEATURE_CYRIX_ARR, boot_cpu_data.x86_capability) ||
59 test_bit(X86_FEATURE_CENTAUR_MCR, boot_cpu_data.x86_capability) )
60 && addr >= __pa(high_memory);
61 #elif defined(__x86_64__)
62 /*
63 * This is broken because it can generate memory type aliases,
64 * which can cause cache corruptions
65 * But it is only available for root and we have to be bug-to-bug
66 * compatible with i386.
68 if (file->f_flags & O_SYNC)
69 return 1;
70 /* same behaviour as i386. PAT always set to cached and MTRRs control the
71 caching behaviour.
72 Hopefully a full PAT implementation will fix that soon. */
73 return 0;
74 #elif defined(CONFIG_IA64)
76 * On ia64, we ignore O_SYNC because we cannot tolerate memory attribute aliases.
78 return !(efi_mem_attributes(addr) & EFI_MEMORY_WB);
79 #else
81 * Accessing memory above the top the kernel knows about or through a file pointer
82 * that was marked O_SYNC will be done non-cached.
84 if (file->f_flags & O_SYNC)
85 return 1;
86 return addr >= __pa(high_memory);
87 #endif
90 #ifndef ARCH_HAS_VALID_PHYS_ADDR_RANGE
91 static inline int valid_phys_addr_range(unsigned long addr, size_t *count)
93 unsigned long end_mem;
95 end_mem = __pa(high_memory);
96 if (addr >= end_mem)
97 return 0;
99 if (*count > end_mem - addr)
100 *count = end_mem - addr;
102 return 1;
104 #endif
107 * This funcion reads the *physical* memory. The f_pos points directly to the
108 * memory location.
110 static ssize_t read_mem(struct file * file, char __user * buf,
111 size_t count, loff_t *ppos)
113 unsigned long p = *ppos;
114 ssize_t read, sz;
115 char *ptr;
117 if (!valid_phys_addr_range(p, &count))
118 return -EFAULT;
119 read = 0;
120 #ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
121 /* we don't have page 0 mapped on sparc and m68k.. */
122 if (p < PAGE_SIZE) {
123 sz = PAGE_SIZE - p;
124 if (sz > count)
125 sz = count;
126 if (sz > 0) {
127 if (clear_user(buf, sz))
128 return -EFAULT;
129 buf += sz;
130 p += sz;
131 count -= sz;
132 read += sz;
135 #endif
137 while (count > 0) {
139 * Handle first page in case it's not aligned
141 if (-p & (PAGE_SIZE - 1))
142 sz = -p & (PAGE_SIZE - 1);
143 else
144 sz = PAGE_SIZE;
146 sz = min_t(unsigned long, sz, count);
149 * On ia64 if a page has been mapped somewhere as
150 * uncached, then it must also be accessed uncached
151 * by the kernel or data corruption may occur
153 ptr = xlate_dev_mem_ptr(p);
155 if (copy_to_user(buf, ptr, sz))
156 return -EFAULT;
157 buf += sz;
158 p += sz;
159 count -= sz;
160 read += sz;
163 *ppos += read;
164 return read;
167 static ssize_t write_mem(struct file * file, const char __user * buf,
168 size_t count, loff_t *ppos)
170 unsigned long p = *ppos;
171 ssize_t written, sz;
172 unsigned long copied;
173 void *ptr;
175 if (!valid_phys_addr_range(p, &count))
176 return -EFAULT;
178 written = 0;
180 #ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
181 /* we don't have page 0 mapped on sparc and m68k.. */
182 if (p < PAGE_SIZE) {
183 unsigned long sz = PAGE_SIZE - p;
184 if (sz > count)
185 sz = count;
186 /* Hmm. Do something? */
187 buf += sz;
188 p += sz;
189 count -= sz;
190 written += sz;
192 #endif
194 while (count > 0) {
196 * Handle first page in case it's not aligned
198 if (-p & (PAGE_SIZE - 1))
199 sz = -p & (PAGE_SIZE - 1);
200 else
201 sz = PAGE_SIZE;
203 sz = min_t(unsigned long, sz, count);
206 * On ia64 if a page has been mapped somewhere as
207 * uncached, then it must also be accessed uncached
208 * by the kernel or data corruption may occur
210 ptr = xlate_dev_mem_ptr(p);
212 copied = copy_from_user(ptr, buf, sz);
213 if (copied) {
214 ssize_t ret;
216 ret = written + (sz - copied);
217 if (ret)
218 return ret;
219 return -EFAULT;
221 buf += sz;
222 p += sz;
223 count -= sz;
224 written += sz;
227 *ppos += written;
228 return written;
231 static int mmap_mem(struct file * file, struct vm_area_struct * vma)
233 #if defined(__HAVE_PHYS_MEM_ACCESS_PROT)
234 vma->vm_page_prot = phys_mem_access_prot(file, vma->vm_pgoff,
235 vma->vm_end - vma->vm_start,
236 vma->vm_page_prot);
237 #elif defined(pgprot_noncached)
238 unsigned long offset = vma->vm_pgoff << PAGE_SHIFT;
239 int uncached;
241 uncached = uncached_access(file, offset);
242 if (uncached)
243 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
244 #endif
246 /* Remap-pfn-range will mark the range VM_IO and VM_RESERVED */
247 if (remap_pfn_range(vma,
248 vma->vm_start,
249 vma->vm_pgoff,
250 vma->vm_end-vma->vm_start,
251 vma->vm_page_prot))
252 return -EAGAIN;
253 return 0;
256 static int mmap_kmem(struct file * file, struct vm_area_struct * vma)
258 unsigned long pfn;
260 /* Turn a kernel-virtual address into a physical page frame */
261 pfn = __pa((u64)vma->vm_pgoff << PAGE_SHIFT) >> PAGE_SHIFT;
264 * RED-PEN: on some architectures there is more mapped memory
265 * than available in mem_map which pfn_valid checks
266 * for. Perhaps should add a new macro here.
268 * RED-PEN: vmalloc is not supported right now.
270 if (!pfn_valid(pfn))
271 return -EIO;
273 vma->vm_pgoff = pfn;
274 return mmap_mem(file, vma);
277 #ifdef CONFIG_CRASH_DUMP
279 * Read memory corresponding to the old kernel.
281 static ssize_t read_oldmem(struct file *file, char __user *buf,
282 size_t count, loff_t *ppos)
284 unsigned long pfn, offset;
285 size_t read = 0, csize;
286 int rc = 0;
288 while (count) {
289 pfn = *ppos / PAGE_SIZE;
290 if (pfn > saved_max_pfn)
291 return read;
293 offset = (unsigned long)(*ppos % PAGE_SIZE);
294 if (count > PAGE_SIZE - offset)
295 csize = PAGE_SIZE - offset;
296 else
297 csize = count;
299 rc = copy_oldmem_page(pfn, buf, csize, offset, 1);
300 if (rc < 0)
301 return rc;
302 buf += csize;
303 *ppos += csize;
304 read += csize;
305 count -= csize;
307 return read;
309 #endif
311 extern long vread(char *buf, char *addr, unsigned long count);
312 extern long vwrite(char *buf, char *addr, unsigned long count);
315 * This function reads the *virtual* memory as seen by the kernel.
317 static ssize_t read_kmem(struct file *file, char __user *buf,
318 size_t count, loff_t *ppos)
320 unsigned long p = *ppos;
321 ssize_t low_count, read, sz;
322 char * kbuf; /* k-addr because vread() takes vmlist_lock rwlock */
324 read = 0;
325 if (p < (unsigned long) high_memory) {
326 low_count = count;
327 if (count > (unsigned long) high_memory - p)
328 low_count = (unsigned long) high_memory - p;
330 #ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
331 /* we don't have page 0 mapped on sparc and m68k.. */
332 if (p < PAGE_SIZE && low_count > 0) {
333 size_t tmp = PAGE_SIZE - p;
334 if (tmp > low_count) tmp = low_count;
335 if (clear_user(buf, tmp))
336 return -EFAULT;
337 buf += tmp;
338 p += tmp;
339 read += tmp;
340 low_count -= tmp;
341 count -= tmp;
343 #endif
344 while (low_count > 0) {
346 * Handle first page in case it's not aligned
348 if (-p & (PAGE_SIZE - 1))
349 sz = -p & (PAGE_SIZE - 1);
350 else
351 sz = PAGE_SIZE;
353 sz = min_t(unsigned long, sz, low_count);
356 * On ia64 if a page has been mapped somewhere as
357 * uncached, then it must also be accessed uncached
358 * by the kernel or data corruption may occur
360 kbuf = xlate_dev_kmem_ptr((char *)p);
362 if (copy_to_user(buf, kbuf, sz))
363 return -EFAULT;
364 buf += sz;
365 p += sz;
366 read += sz;
367 low_count -= sz;
368 count -= sz;
372 if (count > 0) {
373 kbuf = (char *)__get_free_page(GFP_KERNEL);
374 if (!kbuf)
375 return -ENOMEM;
376 while (count > 0) {
377 int len = count;
379 if (len > PAGE_SIZE)
380 len = PAGE_SIZE;
381 len = vread(kbuf, (char *)p, len);
382 if (!len)
383 break;
384 if (copy_to_user(buf, kbuf, len)) {
385 free_page((unsigned long)kbuf);
386 return -EFAULT;
388 count -= len;
389 buf += len;
390 read += len;
391 p += len;
393 free_page((unsigned long)kbuf);
395 *ppos = p;
396 return read;
400 static inline ssize_t
401 do_write_kmem(void *p, unsigned long realp, const char __user * buf,
402 size_t count, loff_t *ppos)
404 ssize_t written, sz;
405 unsigned long copied;
407 written = 0;
408 #ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
409 /* we don't have page 0 mapped on sparc and m68k.. */
410 if (realp < PAGE_SIZE) {
411 unsigned long sz = PAGE_SIZE - realp;
412 if (sz > count)
413 sz = count;
414 /* Hmm. Do something? */
415 buf += sz;
416 p += sz;
417 realp += sz;
418 count -= sz;
419 written += sz;
421 #endif
423 while (count > 0) {
424 char *ptr;
426 * Handle first page in case it's not aligned
428 if (-realp & (PAGE_SIZE - 1))
429 sz = -realp & (PAGE_SIZE - 1);
430 else
431 sz = PAGE_SIZE;
433 sz = min_t(unsigned long, sz, count);
436 * On ia64 if a page has been mapped somewhere as
437 * uncached, then it must also be accessed uncached
438 * by the kernel or data corruption may occur
440 ptr = xlate_dev_kmem_ptr(p);
442 copied = copy_from_user(ptr, buf, sz);
443 if (copied) {
444 ssize_t ret;
446 ret = written + (sz - copied);
447 if (ret)
448 return ret;
449 return -EFAULT;
451 buf += sz;
452 p += sz;
453 realp += sz;
454 count -= sz;
455 written += sz;
458 *ppos += written;
459 return written;
464 * This function writes to the *virtual* memory as seen by the kernel.
466 static ssize_t write_kmem(struct file * file, const char __user * buf,
467 size_t count, loff_t *ppos)
469 unsigned long p = *ppos;
470 ssize_t wrote = 0;
471 ssize_t virtr = 0;
472 ssize_t written;
473 char * kbuf; /* k-addr because vwrite() takes vmlist_lock rwlock */
475 if (p < (unsigned long) high_memory) {
477 wrote = count;
478 if (count > (unsigned long) high_memory - p)
479 wrote = (unsigned long) high_memory - p;
481 written = do_write_kmem((void*)p, p, buf, wrote, ppos);
482 if (written != wrote)
483 return written;
484 wrote = written;
485 p += wrote;
486 buf += wrote;
487 count -= wrote;
490 if (count > 0) {
491 kbuf = (char *)__get_free_page(GFP_KERNEL);
492 if (!kbuf)
493 return wrote ? wrote : -ENOMEM;
494 while (count > 0) {
495 int len = count;
497 if (len > PAGE_SIZE)
498 len = PAGE_SIZE;
499 if (len) {
500 written = copy_from_user(kbuf, buf, len);
501 if (written) {
502 ssize_t ret;
504 free_page((unsigned long)kbuf);
505 ret = wrote + virtr + (len - written);
506 return ret ? ret : -EFAULT;
509 len = vwrite(kbuf, (char *)p, len);
510 count -= len;
511 buf += len;
512 virtr += len;
513 p += len;
515 free_page((unsigned long)kbuf);
518 *ppos = p;
519 return virtr + wrote;
522 #if (defined(CONFIG_ISA) || !defined(__mc68000__)) && (!defined(CONFIG_PPC_ISERIES) || defined(CONFIG_PCI))
523 static ssize_t read_port(struct file * file, char __user * buf,
524 size_t count, loff_t *ppos)
526 unsigned long i = *ppos;
527 char __user *tmp = buf;
529 if (!access_ok(VERIFY_WRITE, buf, count))
530 return -EFAULT;
531 while (count-- > 0 && i < 65536) {
532 if (__put_user(inb(i),tmp) < 0)
533 return -EFAULT;
534 i++;
535 tmp++;
537 *ppos = i;
538 return tmp-buf;
541 static ssize_t write_port(struct file * file, const char __user * buf,
542 size_t count, loff_t *ppos)
544 unsigned long i = *ppos;
545 const char __user * tmp = buf;
547 if (!access_ok(VERIFY_READ,buf,count))
548 return -EFAULT;
549 while (count-- > 0 && i < 65536) {
550 char c;
551 if (__get_user(c, tmp))
552 return -EFAULT;
553 outb(c,i);
554 i++;
555 tmp++;
557 *ppos = i;
558 return tmp-buf;
560 #endif
562 static ssize_t read_null(struct file * file, char __user * buf,
563 size_t count, loff_t *ppos)
565 return 0;
568 static ssize_t write_null(struct file * file, const char __user * buf,
569 size_t count, loff_t *ppos)
571 return count;
574 #ifdef CONFIG_MMU
576 * For fun, we are using the MMU for this.
578 static inline size_t read_zero_pagealigned(char __user * buf, size_t size)
580 struct mm_struct *mm;
581 struct vm_area_struct * vma;
582 unsigned long addr=(unsigned long)buf;
584 mm = current->mm;
585 /* Oops, this was forgotten before. -ben */
586 down_read(&mm->mmap_sem);
588 /* For private mappings, just map in zero pages. */
589 for (vma = find_vma(mm, addr); vma; vma = vma->vm_next) {
590 unsigned long count;
592 if (vma->vm_start > addr || (vma->vm_flags & VM_WRITE) == 0)
593 goto out_up;
594 if (vma->vm_flags & (VM_SHARED | VM_HUGETLB))
595 break;
596 count = vma->vm_end - addr;
597 if (count > size)
598 count = size;
600 zap_page_range(vma, addr, count, NULL);
601 zeromap_page_range(vma, addr, count, PAGE_COPY);
603 size -= count;
604 buf += count;
605 addr += count;
606 if (size == 0)
607 goto out_up;
610 up_read(&mm->mmap_sem);
612 /* The shared case is hard. Let's do the conventional zeroing. */
613 do {
614 unsigned long unwritten = clear_user(buf, PAGE_SIZE);
615 if (unwritten)
616 return size + unwritten - PAGE_SIZE;
617 cond_resched();
618 buf += PAGE_SIZE;
619 size -= PAGE_SIZE;
620 } while (size);
622 return size;
623 out_up:
624 up_read(&mm->mmap_sem);
625 return size;
628 static ssize_t read_zero(struct file * file, char __user * buf,
629 size_t count, loff_t *ppos)
631 unsigned long left, unwritten, written = 0;
633 if (!count)
634 return 0;
636 if (!access_ok(VERIFY_WRITE, buf, count))
637 return -EFAULT;
639 left = count;
641 /* do we want to be clever? Arbitrary cut-off */
642 if (count >= PAGE_SIZE*4) {
643 unsigned long partial;
645 /* How much left of the page? */
646 partial = (PAGE_SIZE-1) & -(unsigned long) buf;
647 unwritten = clear_user(buf, partial);
648 written = partial - unwritten;
649 if (unwritten)
650 goto out;
651 left -= partial;
652 buf += partial;
653 unwritten = read_zero_pagealigned(buf, left & PAGE_MASK);
654 written += (left & PAGE_MASK) - unwritten;
655 if (unwritten)
656 goto out;
657 buf += left & PAGE_MASK;
658 left &= ~PAGE_MASK;
660 unwritten = clear_user(buf, left);
661 written += left - unwritten;
662 out:
663 return written ? written : -EFAULT;
666 static int mmap_zero(struct file * file, struct vm_area_struct * vma)
668 if (vma->vm_flags & VM_SHARED)
669 return shmem_zero_setup(vma);
670 if (zeromap_page_range(vma, vma->vm_start, vma->vm_end - vma->vm_start, vma->vm_page_prot))
671 return -EAGAIN;
672 return 0;
674 #else /* CONFIG_MMU */
675 static ssize_t read_zero(struct file * file, char * buf,
676 size_t count, loff_t *ppos)
678 size_t todo = count;
680 while (todo) {
681 size_t chunk = todo;
683 if (chunk > 4096)
684 chunk = 4096; /* Just for latency reasons */
685 if (clear_user(buf, chunk))
686 return -EFAULT;
687 buf += chunk;
688 todo -= chunk;
689 cond_resched();
691 return count;
694 static int mmap_zero(struct file * file, struct vm_area_struct * vma)
696 return -ENOSYS;
698 #endif /* CONFIG_MMU */
700 static ssize_t write_full(struct file * file, const char __user * buf,
701 size_t count, loff_t *ppos)
703 return -ENOSPC;
707 * Special lseek() function for /dev/null and /dev/zero. Most notably, you
708 * can fopen() both devices with "a" now. This was previously impossible.
709 * -- SRB.
712 static loff_t null_lseek(struct file * file, loff_t offset, int orig)
714 return file->f_pos = 0;
718 * The memory devices use the full 32/64 bits of the offset, and so we cannot
719 * check against negative addresses: they are ok. The return value is weird,
720 * though, in that case (0).
722 * also note that seeking relative to the "end of file" isn't supported:
723 * it has no meaning, so it returns -EINVAL.
725 static loff_t memory_lseek(struct file * file, loff_t offset, int orig)
727 loff_t ret;
729 down(&file->f_dentry->d_inode->i_sem);
730 switch (orig) {
731 case 0:
732 file->f_pos = offset;
733 ret = file->f_pos;
734 force_successful_syscall_return();
735 break;
736 case 1:
737 file->f_pos += offset;
738 ret = file->f_pos;
739 force_successful_syscall_return();
740 break;
741 default:
742 ret = -EINVAL;
744 up(&file->f_dentry->d_inode->i_sem);
745 return ret;
748 static int open_port(struct inode * inode, struct file * filp)
750 return capable(CAP_SYS_RAWIO) ? 0 : -EPERM;
753 #define zero_lseek null_lseek
754 #define full_lseek null_lseek
755 #define write_zero write_null
756 #define read_full read_zero
757 #define open_mem open_port
758 #define open_kmem open_mem
759 #define open_oldmem open_mem
761 static struct file_operations mem_fops = {
762 .llseek = memory_lseek,
763 .read = read_mem,
764 .write = write_mem,
765 .mmap = mmap_mem,
766 .open = open_mem,
769 static struct file_operations kmem_fops = {
770 .llseek = memory_lseek,
771 .read = read_kmem,
772 .write = write_kmem,
773 .mmap = mmap_kmem,
774 .open = open_kmem,
777 static struct file_operations null_fops = {
778 .llseek = null_lseek,
779 .read = read_null,
780 .write = write_null,
783 #if (defined(CONFIG_ISA) || !defined(__mc68000__)) && (!defined(CONFIG_PPC_ISERIES) || defined(CONFIG_PCI))
784 static struct file_operations port_fops = {
785 .llseek = memory_lseek,
786 .read = read_port,
787 .write = write_port,
788 .open = open_port,
790 #endif
792 static struct file_operations zero_fops = {
793 .llseek = zero_lseek,
794 .read = read_zero,
795 .write = write_zero,
796 .mmap = mmap_zero,
799 static struct backing_dev_info zero_bdi = {
800 .capabilities = BDI_CAP_MAP_COPY,
803 static struct file_operations full_fops = {
804 .llseek = full_lseek,
805 .read = read_full,
806 .write = write_full,
809 #ifdef CONFIG_CRASH_DUMP
810 static struct file_operations oldmem_fops = {
811 .read = read_oldmem,
812 .open = open_oldmem,
814 #endif
816 static ssize_t kmsg_write(struct file * file, const char __user * buf,
817 size_t count, loff_t *ppos)
819 char *tmp;
820 int ret;
822 tmp = kmalloc(count + 1, GFP_KERNEL);
823 if (tmp == NULL)
824 return -ENOMEM;
825 ret = -EFAULT;
826 if (!copy_from_user(tmp, buf, count)) {
827 tmp[count] = 0;
828 ret = printk("%s", tmp);
830 kfree(tmp);
831 return ret;
834 static struct file_operations kmsg_fops = {
835 .write = kmsg_write,
838 static int memory_open(struct inode * inode, struct file * filp)
840 switch (iminor(inode)) {
841 case 1:
842 filp->f_op = &mem_fops;
843 break;
844 case 2:
845 filp->f_op = &kmem_fops;
846 break;
847 case 3:
848 filp->f_op = &null_fops;
849 break;
850 #if (defined(CONFIG_ISA) || !defined(__mc68000__)) && (!defined(CONFIG_PPC_ISERIES) || defined(CONFIG_PCI))
851 case 4:
852 filp->f_op = &port_fops;
853 break;
854 #endif
855 case 5:
856 filp->f_mapping->backing_dev_info = &zero_bdi;
857 filp->f_op = &zero_fops;
858 break;
859 case 7:
860 filp->f_op = &full_fops;
861 break;
862 case 8:
863 filp->f_op = &random_fops;
864 break;
865 case 9:
866 filp->f_op = &urandom_fops;
867 break;
868 case 11:
869 filp->f_op = &kmsg_fops;
870 break;
871 #ifdef CONFIG_CRASH_DUMP
872 case 12:
873 filp->f_op = &oldmem_fops;
874 break;
875 #endif
876 default:
877 return -ENXIO;
879 if (filp->f_op && filp->f_op->open)
880 return filp->f_op->open(inode,filp);
881 return 0;
884 static struct file_operations memory_fops = {
885 .open = memory_open, /* just a selector for the real open */
888 static const struct {
889 unsigned int minor;
890 char *name;
891 umode_t mode;
892 struct file_operations *fops;
893 } devlist[] = { /* list of minor devices */
894 {1, "mem", S_IRUSR | S_IWUSR | S_IRGRP, &mem_fops},
895 {2, "kmem", S_IRUSR | S_IWUSR | S_IRGRP, &kmem_fops},
896 {3, "null", S_IRUGO | S_IWUGO, &null_fops},
897 #if (defined(CONFIG_ISA) || !defined(__mc68000__)) && (!defined(CONFIG_PPC_ISERIES) || defined(CONFIG_PCI))
898 {4, "port", S_IRUSR | S_IWUSR | S_IRGRP, &port_fops},
899 #endif
900 {5, "zero", S_IRUGO | S_IWUGO, &zero_fops},
901 {7, "full", S_IRUGO | S_IWUGO, &full_fops},
902 {8, "random", S_IRUGO | S_IWUSR, &random_fops},
903 {9, "urandom", S_IRUGO | S_IWUSR, &urandom_fops},
904 {11,"kmsg", S_IRUGO | S_IWUSR, &kmsg_fops},
905 #ifdef CONFIG_CRASH_DUMP
906 {12,"oldmem", S_IRUSR | S_IWUSR | S_IRGRP, &oldmem_fops},
907 #endif
910 static struct class *mem_class;
912 static int __init chr_dev_init(void)
914 int i;
916 if (register_chrdev(MEM_MAJOR,"mem",&memory_fops))
917 printk("unable to get major %d for memory devs\n", MEM_MAJOR);
919 mem_class = class_create(THIS_MODULE, "mem");
920 for (i = 0; i < ARRAY_SIZE(devlist); i++) {
921 class_device_create(mem_class, NULL,
922 MKDEV(MEM_MAJOR, devlist[i].minor),
923 NULL, devlist[i].name);
924 devfs_mk_cdev(MKDEV(MEM_MAJOR, devlist[i].minor),
925 S_IFCHR | devlist[i].mode, devlist[i].name);
928 return 0;
931 fs_initcall(chr_dev_init);