Blame view

kernel/linux-rt-4.4.41/arch/ia64/mm/ioremap.c 3.1 KB
5113f6f70   김현기   kernel add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
  /*
   * (c) Copyright 2006, 2007 Hewlett-Packard Development Company, L.P.
   *	Bjorn Helgaas <bjorn.helgaas@hp.com>
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License version 2 as
   * published by the Free Software Foundation.
   */
  
  #include <linux/compiler.h>
  #include <linux/module.h>
  #include <linux/efi.h>
  #include <linux/io.h>
  #include <linux/vmalloc.h>
  #include <asm/io.h>
  #include <asm/meminit.h>
  
  static inline void __iomem *
  __ioremap_uc(unsigned long phys_addr)
  {
  	return (void __iomem *) (__IA64_UNCACHED_OFFSET | phys_addr);
  }
  
  void __iomem *
  early_ioremap (unsigned long phys_addr, unsigned long size)
  {
  	u64 attr;
  	attr = kern_mem_attribute(phys_addr, size);
  	if (attr & EFI_MEMORY_WB)
  		return (void __iomem *) phys_to_virt(phys_addr);
  	return __ioremap_uc(phys_addr);
  }
  
  void __iomem *
  ioremap (unsigned long phys_addr, unsigned long size)
  {
  	void __iomem *addr;
  	struct vm_struct *area;
  	unsigned long offset;
  	pgprot_t prot;
  	u64 attr;
  	unsigned long gran_base, gran_size;
  	unsigned long page_base;
  
  	/*
  	 * For things in kern_memmap, we must use the same attribute
  	 * as the rest of the kernel.  For more details, see
  	 * Documentation/ia64/aliasing.txt.
  	 */
  	attr = kern_mem_attribute(phys_addr, size);
  	if (attr & EFI_MEMORY_WB)
  		return (void __iomem *) phys_to_virt(phys_addr);
  	else if (attr & EFI_MEMORY_UC)
  		return __ioremap_uc(phys_addr);
  
  	/*
  	 * Some chipsets don't support UC access to memory.  If
  	 * WB is supported for the whole granule, we prefer that.
  	 */
  	gran_base = GRANULEROUNDDOWN(phys_addr);
  	gran_size = GRANULEROUNDUP(phys_addr + size) - gran_base;
  	if (efi_mem_attribute(gran_base, gran_size) & EFI_MEMORY_WB)
  		return (void __iomem *) phys_to_virt(phys_addr);
  
  	/*
  	 * WB is not supported for the whole granule, so we can't use
  	 * the region 7 identity mapping.  If we can safely cover the
  	 * area with kernel page table mappings, we can use those
  	 * instead.
  	 */
  	page_base = phys_addr & PAGE_MASK;
  	size = PAGE_ALIGN(phys_addr + size) - page_base;
  	if (efi_mem_attribute(page_base, size) & EFI_MEMORY_WB) {
  		prot = PAGE_KERNEL;
  
  		/*
  		 * Mappings have to be page-aligned
  		 */
  		offset = phys_addr & ~PAGE_MASK;
  		phys_addr &= PAGE_MASK;
  
  		/*
  		 * Ok, go for it..
  		 */
  		area = get_vm_area(size, VM_IOREMAP);
  		if (!area)
  			return NULL;
  
  		area->phys_addr = phys_addr;
  		addr = (void __iomem *) area->addr;
  		if (ioremap_page_range((unsigned long) addr,
  				(unsigned long) addr + size, phys_addr, prot)) {
  			vunmap((void __force *) addr);
  			return NULL;
  		}
  
  		return (void __iomem *) (offset + (char __iomem *)addr);
  	}
  
  	return __ioremap_uc(phys_addr);
  }
  EXPORT_SYMBOL(ioremap);
  
  void __iomem *
  ioremap_nocache (unsigned long phys_addr, unsigned long size)
  {
  	if (kern_mem_attribute(phys_addr, size) & EFI_MEMORY_WB)
  		return NULL;
  
  	return __ioremap_uc(phys_addr);
  }
  EXPORT_SYMBOL(ioremap_nocache);
  
  void
  early_iounmap (volatile void __iomem *addr, unsigned long size)
  {
  }
  
  void
  iounmap (volatile void __iomem *addr)
  {
  	if (REGION_NUMBER(addr) == RGN_GATE)
  		vunmap((void *) ((unsigned long) addr & PAGE_MASK));
  }
  EXPORT_SYMBOL(iounmap);