Blame view

arch/ia64/xen/xencomm.c 2.72 KB
11d437789   Isaku Yamahata   ia64/xen: impleme...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  /*
   * Copyright (C) 2006 Hollis Blanchard <hollisb@us.ibm.com>, IBM Corporation
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License as published by
   * the Free Software Foundation; either version 2 of the License, or
   * (at your option) any later version.
   *
   * This program is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   * GNU General Public License for more details.
   *
   * You should have received a copy of the GNU General Public License
   * along with this program; if not, write to the Free Software
   * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
   */
  
  #include <linux/mm.h>
  
  static unsigned long kernel_virtual_offset;
f021c8b33   Isaku Yamahata   ia64/xen: xencomm...
22
23
24
25
26
27
28
29
30
31
  static int is_xencomm_initialized;
  
  /* for xen early printk. It uses console io hypercall which uses xencomm.
   * However early printk may use it before xencomm initialization.
   */
  int
  xencomm_is_initialized(void)
  {
  	return is_xencomm_initialized;
  }
11d437789   Isaku Yamahata   ia64/xen: impleme...
32
33
34
35
36
  
  void
  xencomm_initialize(void)
  {
  	kernel_virtual_offset = KERNEL_START - ia64_tpa(KERNEL_START);
f021c8b33   Isaku Yamahata   ia64/xen: xencomm...
37
  	is_xencomm_initialized = 1;
11d437789   Isaku Yamahata   ia64/xen: impleme...
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
  }
  
  /* Translate virtual address to physical address.  */
  unsigned long
  xencomm_vtop(unsigned long vaddr)
  {
  	struct page *page;
  	struct vm_area_struct *vma;
  
  	if (vaddr == 0)
  		return 0UL;
  
  	if (REGION_NUMBER(vaddr) == 5) {
  		pgd_t *pgd;
  		pud_t *pud;
  		pmd_t *pmd;
  		pte_t *ptep;
  
  		/* On ia64, TASK_SIZE refers to current.  It is not initialized
  		   during boot.
  		   Furthermore the kernel is relocatable and __pa() doesn't
  		   work on  addresses.  */
  		if (vaddr >= KERNEL_START
  		    && vaddr < (KERNEL_START + KERNEL_TR_PAGE_SIZE))
  			return vaddr - kernel_virtual_offset;
  
  		/* In kernel area -- virtually mapped.  */
  		pgd = pgd_offset_k(vaddr);
  		if (pgd_none(*pgd) || pgd_bad(*pgd))
  			return ~0UL;
  
  		pud = pud_offset(pgd, vaddr);
  		if (pud_none(*pud) || pud_bad(*pud))
  			return ~0UL;
  
  		pmd = pmd_offset(pud, vaddr);
  		if (pmd_none(*pmd) || pmd_bad(*pmd))
  			return ~0UL;
  
  		ptep = pte_offset_kernel(pmd, vaddr);
  		if (!ptep)
  			return ~0UL;
  
  		return (pte_val(*ptep) & _PFN_MASK) | (vaddr & ~PAGE_MASK);
  	}
  
  	if (vaddr > TASK_SIZE) {
  		/* percpu variables */
  		if (REGION_NUMBER(vaddr) == 7 &&
  		    REGION_OFFSET(vaddr) >= (1ULL << IA64_MAX_PHYS_BITS))
  			ia64_tpa(vaddr);
  
  		/* kernel address */
  		return __pa(vaddr);
  	}
  
  	/* XXX double-check (lack of) locking */
  	vma = find_extend_vma(current->mm, vaddr);
  	if (!vma)
  		return ~0UL;
  
  	/* We assume the page is modified.  */
  	page = follow_page(vma, vaddr, FOLL_WRITE | FOLL_TOUCH);
  	if (!page)
  		return ~0UL;
  
  	return (page_to_pfn(page) << PAGE_SHIFT) | (vaddr & ~PAGE_MASK);
  }