2 * arch/ppc64/kernel/proc_ppc64.c
4 * Copyright (C) 2001 Mike Corrigan & Dave Engebretsen IBM Corporation
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include <linux/config.h>
22 #include <linux/init.h>
24 #include <linux/proc_fs.h>
25 #include <linux/slab.h>
26 #include <linux/kernel.h>
28 #include <asm/systemcfg.h>
30 #include <asm/uaccess.h>
33 static loff_t
page_map_seek( struct file
*file
, loff_t off
, int whence
);
34 static ssize_t
page_map_read( struct file
*file
, char __user
*buf
, size_t nbytes
,
36 static int page_map_mmap( struct file
*file
, struct vm_area_struct
*vma
);
38 static struct file_operations page_map_fops
= {
39 .llseek
= page_map_seek
,
40 .read
= page_map_read
,
45 * Create the ppc64 and ppc64/rtas directories early. This allows us to
46 * assume that they have been previously created in drivers.
48 static int __init
proc_ppc64_create(void)
50 struct proc_dir_entry
*root
;
52 root
= proc_mkdir("ppc64", NULL
);
56 if (!(systemcfg
->platform
& PLATFORM_PSERIES
))
59 if (!proc_mkdir("rtas", root
))
62 if (!proc_symlink("rtas", NULL
, "ppc64/rtas"))
67 core_initcall(proc_ppc64_create
);
69 static int __init
proc_ppc64_init(void)
71 struct proc_dir_entry
*pde
;
73 pde
= create_proc_entry("ppc64/systemcfg", S_IFREG
|S_IRUGO
, NULL
);
77 pde
->data
= systemcfg
;
78 pde
->size
= PAGE_SIZE
;
79 pde
->proc_fops
= &page_map_fops
;
83 __initcall(proc_ppc64_init
);
85 static loff_t
page_map_seek( struct file
*file
, loff_t off
, int whence
)
88 struct proc_dir_entry
*dp
= PDE(file
->f_dentry
->d_inode
);
95 new = file
->f_pos
+ off
;
103 if ( new < 0 || new > dp
->size
)
105 return (file
->f_pos
= new);
108 static ssize_t
page_map_read( struct file
*file
, char __user
*buf
, size_t nbytes
,
111 struct proc_dir_entry
*dp
= PDE(file
->f_dentry
->d_inode
);
112 return simple_read_from_buffer(buf
, nbytes
, ppos
, dp
->data
, dp
->size
);
115 static int page_map_mmap( struct file
*file
, struct vm_area_struct
*vma
)
117 struct proc_dir_entry
*dp
= PDE(file
->f_dentry
->d_inode
);
119 vma
->vm_flags
|= VM_SHM
| VM_LOCKED
;
121 if ((vma
->vm_end
- vma
->vm_start
) > dp
->size
)
124 remap_pfn_range(vma
, vma
->vm_start
, __pa(dp
->data
) >> PAGE_SHIFT
,
125 dp
->size
, vma
->vm_page_prot
);