mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-03 00:54:09 +08:00
e31cf2f4ca
Patch series "mm: consolidate definitions of page table accessors", v2. The low level page table accessors (pXY_index(), pXY_offset()) are duplicated across all architectures and sometimes more than once. For instance, we have 31 definition of pgd_offset() for 25 supported architectures. Most of these definitions are actually identical and typically it boils down to, e.g. static inline unsigned long pmd_index(unsigned long address) { return (address >> PMD_SHIFT) & (PTRS_PER_PMD - 1); } static inline pmd_t *pmd_offset(pud_t *pud, unsigned long address) { return (pmd_t *)pud_page_vaddr(*pud) + pmd_index(address); } These definitions can be shared among 90% of the arches provided XYZ_SHIFT, PTRS_PER_XYZ and xyz_page_vaddr() are defined. For architectures that really need a custom version there is always possibility to override the generic version with the usual ifdefs magic. These patches introduce include/linux/pgtable.h that replaces include/asm-generic/pgtable.h and add the definitions of the page table accessors to the new header. This patch (of 12): The linux/mm.h header includes <asm/pgtable.h> to allow inlining of the functions involving page table manipulations, e.g. pte_alloc() and pmd_alloc(). So, there is no point to explicitly include <asm/pgtable.h> in the files that include <linux/mm.h>. The include statements in such cases are remove with a simple loop: for f in $(git grep -l "include <linux/mm.h>") ; do sed -i -e '/include <asm\/pgtable.h>/ d' $f done Signed-off-by: Mike Rapoport <rppt@linux.ibm.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Cc: Arnd Bergmann <arnd@arndb.de> Cc: Borislav Petkov <bp@alien8.de> Cc: Brian Cain <bcain@codeaurora.org> Cc: Catalin Marinas <catalin.marinas@arm.com> Cc: Chris Zankel <chris@zankel.net> Cc: "David S. Miller" <davem@davemloft.net> Cc: Geert Uytterhoeven <geert@linux-m68k.org> Cc: Greentime Hu <green.hu@gmail.com> Cc: Greg Ungerer <gerg@linux-m68k.org> Cc: Guan Xuetao <gxt@pku.edu.cn> Cc: Guo Ren <guoren@kernel.org> Cc: Heiko Carstens <heiko.carstens@de.ibm.com> Cc: Helge Deller <deller@gmx.de> Cc: Ingo Molnar <mingo@redhat.com> Cc: Ley Foon Tan <ley.foon.tan@intel.com> Cc: Mark Salter <msalter@redhat.com> Cc: Matthew Wilcox <willy@infradead.org> Cc: Matt Turner <mattst88@gmail.com> Cc: Max Filippov <jcmvbkbc@gmail.com> Cc: Michael Ellerman <mpe@ellerman.id.au> Cc: Michal Simek <monstr@monstr.eu> Cc: Mike Rapoport <rppt@kernel.org> Cc: Nick Hu <nickhu@andestech.com> Cc: Paul Walmsley <paul.walmsley@sifive.com> Cc: Richard Weinberger <richard@nod.at> Cc: Rich Felker <dalias@libc.org> Cc: Russell King <linux@armlinux.org.uk> Cc: Stafford Horne <shorne@gmail.com> Cc: Thomas Bogendoerfer <tsbogend@alpha.franken.de> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Tony Luck <tony.luck@intel.com> Cc: Vincent Chen <deanbo422@gmail.com> Cc: Vineet Gupta <vgupta@synopsys.com> Cc: Will Deacon <will@kernel.org> Cc: Yoshinori Sato <ysato@users.sourceforge.jp> Link: http://lkml.kernel.org/r/20200514170327.31389-1-rppt@kernel.org Link: http://lkml.kernel.org/r/20200514170327.31389-2-rppt@kernel.org Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
217 lines
4.7 KiB
C
217 lines
4.7 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/* flash.c: Allow mmap access to the OBP Flash, for OBP updates.
|
|
*
|
|
* Copyright (C) 1997 Eddie C. Dost (ecd@skynet.be)
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/types.h>
|
|
#include <linux/errno.h>
|
|
#include <linux/miscdevice.h>
|
|
#include <linux/fcntl.h>
|
|
#include <linux/poll.h>
|
|
#include <linux/mutex.h>
|
|
#include <linux/spinlock.h>
|
|
#include <linux/mm.h>
|
|
#include <linux/of.h>
|
|
#include <linux/of_device.h>
|
|
|
|
#include <linux/uaccess.h>
|
|
#include <asm/io.h>
|
|
#include <asm/upa.h>
|
|
|
|
static DEFINE_MUTEX(flash_mutex);
|
|
static DEFINE_SPINLOCK(flash_lock);
|
|
static struct {
|
|
unsigned long read_base; /* Physical read address */
|
|
unsigned long write_base; /* Physical write address */
|
|
unsigned long read_size; /* Size of read area */
|
|
unsigned long write_size; /* Size of write area */
|
|
unsigned long busy; /* In use? */
|
|
} flash;
|
|
|
|
static int
|
|
flash_mmap(struct file *file, struct vm_area_struct *vma)
|
|
{
|
|
unsigned long addr;
|
|
unsigned long size;
|
|
|
|
spin_lock(&flash_lock);
|
|
if (flash.read_base == flash.write_base) {
|
|
addr = flash.read_base;
|
|
size = flash.read_size;
|
|
} else {
|
|
if ((vma->vm_flags & VM_READ) &&
|
|
(vma->vm_flags & VM_WRITE)) {
|
|
spin_unlock(&flash_lock);
|
|
return -EINVAL;
|
|
}
|
|
if (vma->vm_flags & VM_READ) {
|
|
addr = flash.read_base;
|
|
size = flash.read_size;
|
|
} else if (vma->vm_flags & VM_WRITE) {
|
|
addr = flash.write_base;
|
|
size = flash.write_size;
|
|
} else {
|
|
spin_unlock(&flash_lock);
|
|
return -ENXIO;
|
|
}
|
|
}
|
|
spin_unlock(&flash_lock);
|
|
|
|
if ((vma->vm_pgoff << PAGE_SHIFT) > size)
|
|
return -ENXIO;
|
|
addr = vma->vm_pgoff + (addr >> PAGE_SHIFT);
|
|
|
|
if (vma->vm_end - (vma->vm_start + (vma->vm_pgoff << PAGE_SHIFT)) > size)
|
|
size = vma->vm_end - (vma->vm_start + (vma->vm_pgoff << PAGE_SHIFT));
|
|
|
|
vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
|
|
|
|
if (io_remap_pfn_range(vma, vma->vm_start, addr, size, vma->vm_page_prot))
|
|
return -EAGAIN;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static long long
|
|
flash_llseek(struct file *file, long long offset, int origin)
|
|
{
|
|
mutex_lock(&flash_mutex);
|
|
switch (origin) {
|
|
case 0:
|
|
file->f_pos = offset;
|
|
break;
|
|
case 1:
|
|
file->f_pos += offset;
|
|
if (file->f_pos > flash.read_size)
|
|
file->f_pos = flash.read_size;
|
|
break;
|
|
case 2:
|
|
file->f_pos = flash.read_size;
|
|
break;
|
|
default:
|
|
mutex_unlock(&flash_mutex);
|
|
return -EINVAL;
|
|
}
|
|
mutex_unlock(&flash_mutex);
|
|
return file->f_pos;
|
|
}
|
|
|
|
static ssize_t
|
|
flash_read(struct file * file, char __user * buf,
|
|
size_t count, loff_t *ppos)
|
|
{
|
|
loff_t p = *ppos;
|
|
int i;
|
|
|
|
if (count > flash.read_size - p)
|
|
count = flash.read_size - p;
|
|
|
|
for (i = 0; i < count; i++) {
|
|
u8 data = upa_readb(flash.read_base + p + i);
|
|
if (put_user(data, buf))
|
|
return -EFAULT;
|
|
buf++;
|
|
}
|
|
|
|
*ppos += count;
|
|
return count;
|
|
}
|
|
|
|
static int
|
|
flash_open(struct inode *inode, struct file *file)
|
|
{
|
|
mutex_lock(&flash_mutex);
|
|
if (test_and_set_bit(0, (void *)&flash.busy) != 0) {
|
|
mutex_unlock(&flash_mutex);
|
|
return -EBUSY;
|
|
}
|
|
|
|
mutex_unlock(&flash_mutex);
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
flash_release(struct inode *inode, struct file *file)
|
|
{
|
|
spin_lock(&flash_lock);
|
|
flash.busy = 0;
|
|
spin_unlock(&flash_lock);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const struct file_operations flash_fops = {
|
|
/* no write to the Flash, use mmap
|
|
* and play flash dependent tricks.
|
|
*/
|
|
.owner = THIS_MODULE,
|
|
.llseek = flash_llseek,
|
|
.read = flash_read,
|
|
.mmap = flash_mmap,
|
|
.open = flash_open,
|
|
.release = flash_release,
|
|
};
|
|
|
|
static struct miscdevice flash_dev = { SBUS_FLASH_MINOR, "flash", &flash_fops };
|
|
|
|
static int flash_probe(struct platform_device *op)
|
|
{
|
|
struct device_node *dp = op->dev.of_node;
|
|
struct device_node *parent;
|
|
|
|
parent = dp->parent;
|
|
|
|
if (!of_node_name_eq(parent, "sbus") &&
|
|
!of_node_name_eq(parent, "sbi") &&
|
|
!of_node_name_eq(parent, "ebus"))
|
|
return -ENODEV;
|
|
|
|
flash.read_base = op->resource[0].start;
|
|
flash.read_size = resource_size(&op->resource[0]);
|
|
if (op->resource[1].flags) {
|
|
flash.write_base = op->resource[1].start;
|
|
flash.write_size = resource_size(&op->resource[1]);
|
|
} else {
|
|
flash.write_base = op->resource[0].start;
|
|
flash.write_size = resource_size(&op->resource[0]);
|
|
}
|
|
flash.busy = 0;
|
|
|
|
printk(KERN_INFO "%pOF: OBP Flash, RD %lx[%lx] WR %lx[%lx]\n",
|
|
op->dev.of_node,
|
|
flash.read_base, flash.read_size,
|
|
flash.write_base, flash.write_size);
|
|
|
|
return misc_register(&flash_dev);
|
|
}
|
|
|
|
static int flash_remove(struct platform_device *op)
|
|
{
|
|
misc_deregister(&flash_dev);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const struct of_device_id flash_match[] = {
|
|
{
|
|
.name = "flashprom",
|
|
},
|
|
{},
|
|
};
|
|
MODULE_DEVICE_TABLE(of, flash_match);
|
|
|
|
static struct platform_driver flash_driver = {
|
|
.driver = {
|
|
.name = "flash",
|
|
.of_match_table = flash_match,
|
|
},
|
|
.probe = flash_probe,
|
|
.remove = flash_remove,
|
|
};
|
|
|
|
module_platform_driver(flash_driver);
|
|
|
|
MODULE_LICENSE("GPL");
|