blob: ec907d4dbd7a5a82cbf7b103234fb1b2b35e5600 [file] [log] [blame]
Chris Metcalf867e3592010-05-28 23:09:12 -04001/*
2 * Copyright 2010 Tilera Corporation. All Rights Reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation, version 2.
7 *
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
11 * NON INFRINGEMENT. See the GNU General Public License for
12 * more details.
13 *
14 * This file contains the functions and defines necessary to modify and use
15 * the TILE page table tree.
16 */
17
18#ifndef _ASM_TILE_PGTABLE_H
19#define _ASM_TILE_PGTABLE_H
20
21#include <hv/hypervisor.h>
22
23#ifndef __ASSEMBLY__
24
25#include <linux/bitops.h>
26#include <linux/threads.h>
27#include <linux/slab.h>
28#include <linux/list.h>
29#include <linux/spinlock.h>
30#include <asm/processor.h>
31#include <asm/fixmap.h>
Chris Metcalf867e3592010-05-28 23:09:12 -040032
33struct mm_struct;
34struct vm_area_struct;
35
36/*
37 * ZERO_PAGE is a global shared page that is always zero: used
38 * for zero-mapped memory areas etc..
39 */
40extern unsigned long empty_zero_page[PAGE_SIZE/sizeof(unsigned long)];
41#define ZERO_PAGE(vaddr) (virt_to_page(empty_zero_page))
42
43extern pgd_t swapper_pg_dir[];
44extern pgprot_t swapper_pgprot;
45extern struct kmem_cache *pgd_cache;
46extern spinlock_t pgd_lock;
47extern struct list_head pgd_list;
48
49/*
50 * The very last slots in the pgd_t are for addresses unusable by Linux
51 * (pgd_addr_invalid() returns true). So we use them for the list structure.
52 * The x86 code we are modelled on uses the page->private/index fields
53 * (older 2.6 kernels) or the lru list (newer 2.6 kernels), but since
54 * our pgds are so much smaller than a page, it seems a waste to
55 * spend a whole page on each pgd.
56 */
57#define PGD_LIST_OFFSET \
58 ((PTRS_PER_PGD * sizeof(pgd_t)) - sizeof(struct list_head))
59#define pgd_to_list(pgd) \
60 ((struct list_head *)((char *)(pgd) + PGD_LIST_OFFSET))
61#define list_to_pgd(list) \
62 ((pgd_t *)((char *)(list) - PGD_LIST_OFFSET))
63
64extern void pgtable_cache_init(void);
65extern void paging_init(void);
66extern void set_page_homes(void);
67
68#define FIRST_USER_ADDRESS 0
69
70#define _PAGE_PRESENT HV_PTE_PRESENT
71#define _PAGE_HUGE_PAGE HV_PTE_PAGE
72#define _PAGE_READABLE HV_PTE_READABLE
73#define _PAGE_WRITABLE HV_PTE_WRITABLE
74#define _PAGE_EXECUTABLE HV_PTE_EXECUTABLE
75#define _PAGE_ACCESSED HV_PTE_ACCESSED
76#define _PAGE_DIRTY HV_PTE_DIRTY
77#define _PAGE_GLOBAL HV_PTE_GLOBAL
78#define _PAGE_USER HV_PTE_USER
79
80/*
81 * All the "standard" bits. Cache-control bits are managed elsewhere.
82 * This is used to test for valid level-2 page table pointers by checking
83 * all the bits, and to mask away the cache control bits for mprotect.
84 */
85#define _PAGE_ALL (\
86 _PAGE_PRESENT | \
87 _PAGE_HUGE_PAGE | \
88 _PAGE_READABLE | \
89 _PAGE_WRITABLE | \
90 _PAGE_EXECUTABLE | \
91 _PAGE_ACCESSED | \
92 _PAGE_DIRTY | \
93 _PAGE_GLOBAL | \
94 _PAGE_USER \
95)
96
97#define PAGE_NONE \
98 __pgprot(_PAGE_PRESENT | _PAGE_ACCESSED)
99#define PAGE_SHARED \
100 __pgprot(_PAGE_PRESENT | _PAGE_READABLE | _PAGE_WRITABLE | \
101 _PAGE_USER | _PAGE_ACCESSED)
102
103#define PAGE_SHARED_EXEC \
104 __pgprot(_PAGE_PRESENT | _PAGE_READABLE | _PAGE_WRITABLE | \
105 _PAGE_EXECUTABLE | _PAGE_USER | _PAGE_ACCESSED)
106#define PAGE_COPY_NOEXEC \
107 __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_READABLE)
108#define PAGE_COPY_EXEC \
109 __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | \
110 _PAGE_READABLE | _PAGE_EXECUTABLE)
111#define PAGE_COPY \
112 PAGE_COPY_NOEXEC
113#define PAGE_READONLY \
114 __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_READABLE)
115#define PAGE_READONLY_EXEC \
116 __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | \
117 _PAGE_READABLE | _PAGE_EXECUTABLE)
118
119#define _PAGE_KERNEL_RO \
120 (_PAGE_PRESENT | _PAGE_GLOBAL | _PAGE_READABLE | _PAGE_ACCESSED)
121#define _PAGE_KERNEL \
122 (_PAGE_KERNEL_RO | _PAGE_WRITABLE | _PAGE_DIRTY)
123#define _PAGE_KERNEL_EXEC (_PAGE_KERNEL_RO | _PAGE_EXECUTABLE)
124
125#define PAGE_KERNEL __pgprot(_PAGE_KERNEL)
126#define PAGE_KERNEL_RO __pgprot(_PAGE_KERNEL_RO)
127#define PAGE_KERNEL_EXEC __pgprot(_PAGE_KERNEL_EXEC)
128
129#define page_to_kpgprot(p) PAGE_KERNEL
130
131/*
132 * We could tighten these up, but for now writable or executable
133 * implies readable.
134 */
135#define __P000 PAGE_NONE
136#define __P001 PAGE_READONLY
137#define __P010 PAGE_COPY /* this is write-only, which we won't support */
138#define __P011 PAGE_COPY
139#define __P100 PAGE_READONLY_EXEC
140#define __P101 PAGE_READONLY_EXEC
141#define __P110 PAGE_COPY_EXEC
142#define __P111 PAGE_COPY_EXEC
143
144#define __S000 PAGE_NONE
145#define __S001 PAGE_READONLY
146#define __S010 PAGE_SHARED
147#define __S011 PAGE_SHARED
148#define __S100 PAGE_READONLY_EXEC
149#define __S101 PAGE_READONLY_EXEC
150#define __S110 PAGE_SHARED_EXEC
151#define __S111 PAGE_SHARED_EXEC
152
153/*
154 * All the normal _PAGE_ALL bits are ignored for PMDs, except PAGE_PRESENT
155 * and PAGE_HUGE_PAGE, which must be one and zero, respectively.
156 * We set the ignored bits to zero.
157 */
158#define _PAGE_TABLE _PAGE_PRESENT
159
160/* Inherit the caching flags from the old protection bits. */
161#define pgprot_modify(oldprot, newprot) \
162 (pgprot_t) { ((oldprot).val & ~_PAGE_ALL) | (newprot).val }
163
164/* Just setting the PFN to zero suffices. */
165#define pte_pgprot(x) hv_pte_set_pfn((x), 0)
166
167/*
168 * For PTEs and PDEs, we must clear the Present bit first when
169 * clearing a page table entry, so clear the bottom half first and
170 * enforce ordering with a barrier.
171 */
172static inline void __pte_clear(pte_t *ptep)
173{
174#ifdef __tilegx__
175 ptep->val = 0;
176#else
177 u32 *tmp = (u32 *)ptep;
178 tmp[0] = 0;
179 barrier();
180 tmp[1] = 0;
181#endif
182}
183#define pte_clear(mm, addr, ptep) __pte_clear(ptep)
184
185/*
186 * The following only work if pte_present() is true.
187 * Undefined behaviour if not..
188 */
189#define pte_present hv_pte_get_present
Chris Metcalf73636b12012-03-28 13:59:18 -0400190#define pte_mknotpresent hv_pte_clear_present
Chris Metcalf867e3592010-05-28 23:09:12 -0400191#define pte_user hv_pte_get_user
192#define pte_read hv_pte_get_readable
193#define pte_dirty hv_pte_get_dirty
194#define pte_young hv_pte_get_accessed
195#define pte_write hv_pte_get_writable
196#define pte_exec hv_pte_get_executable
197#define pte_huge hv_pte_get_page
198#define pte_rdprotect hv_pte_clear_readable
199#define pte_exprotect hv_pte_clear_executable
200#define pte_mkclean hv_pte_clear_dirty
201#define pte_mkold hv_pte_clear_accessed
202#define pte_wrprotect hv_pte_clear_writable
203#define pte_mksmall hv_pte_clear_page
204#define pte_mkread hv_pte_set_readable
205#define pte_mkexec hv_pte_set_executable
206#define pte_mkdirty hv_pte_set_dirty
207#define pte_mkyoung hv_pte_set_accessed
208#define pte_mkwrite hv_pte_set_writable
209#define pte_mkhuge hv_pte_set_page
210
211#define pte_special(pte) 0
212#define pte_mkspecial(pte) (pte)
213
214/*
215 * Use some spare bits in the PTE for user-caching tags.
216 */
217#define pte_set_forcecache hv_pte_set_client0
218#define pte_get_forcecache hv_pte_get_client0
219#define pte_clear_forcecache hv_pte_clear_client0
220#define pte_set_anyhome hv_pte_set_client1
221#define pte_get_anyhome hv_pte_get_client1
222#define pte_clear_anyhome hv_pte_clear_client1
223
224/*
225 * A migrating PTE has PAGE_PRESENT clear but all the other bits preserved.
226 */
227#define pte_migrating hv_pte_get_migrating
228#define pte_mkmigrate(x) hv_pte_set_migrating(hv_pte_clear_present(x))
229#define pte_donemigrate(x) hv_pte_set_present(hv_pte_clear_migrating(x))
230
231#define pte_ERROR(e) \
Chris Metcalf0707ad32010-06-25 17:04:17 -0400232 pr_err("%s:%d: bad pte 0x%016llx.\n", __FILE__, __LINE__, pte_val(e))
Chris Metcalf867e3592010-05-28 23:09:12 -0400233#define pgd_ERROR(e) \
Chris Metcalf0707ad32010-06-25 17:04:17 -0400234 pr_err("%s:%d: bad pgd 0x%016llx.\n", __FILE__, __LINE__, pgd_val(e))
Chris Metcalf867e3592010-05-28 23:09:12 -0400235
Chris Metcalf76c567f2011-02-28 16:37:34 -0500236/* Return PA and protection info for a given kernel VA. */
237int va_to_cpa_and_pte(void *va, phys_addr_t *cpa, pte_t *pte);
238
Chris Metcalf867e3592010-05-28 23:09:12 -0400239/*
Chris Metcalf76c567f2011-02-28 16:37:34 -0500240 * __set_pte() ensures we write the 64-bit PTE with 32-bit words in
241 * the right order on 32-bit platforms and also allows us to write
242 * hooks to check valid PTEs, etc., if we want.
243 */
244void __set_pte(pte_t *ptep, pte_t pte);
245
246/*
247 * set_pte() sets the given PTE and also sanity-checks the
Chris Metcalf867e3592010-05-28 23:09:12 -0400248 * requested PTE against the page homecaching. Unspecified parts
249 * of the PTE are filled in when it is written to memory, i.e. all
250 * caching attributes if "!forcecache", or the home cpu if "anyhome".
251 */
Chris Metcalf76c567f2011-02-28 16:37:34 -0500252extern void set_pte(pte_t *ptep, pte_t pte);
Chris Metcalf867e3592010-05-28 23:09:12 -0400253#define set_pte_at(mm, addr, ptep, pteval) set_pte(ptep, pteval)
254#define set_pte_atomic(pteptr, pteval) set_pte(pteptr, pteval)
255
256#define pte_page(x) pfn_to_page(pte_pfn(x))
257
258static inline int pte_none(pte_t pte)
259{
260 return !pte.val;
261}
262
263static inline unsigned long pte_pfn(pte_t pte)
264{
265 return hv_pte_get_pfn(pte);
266}
267
268/* Set or get the remote cache cpu in a pgprot with remote caching. */
269extern pgprot_t set_remote_cache_cpu(pgprot_t prot, int cpu);
270extern int get_remote_cache_cpu(pgprot_t prot);
271
272static inline pte_t pfn_pte(unsigned long pfn, pgprot_t prot)
273{
274 return hv_pte_set_pfn(prot, pfn);
275}
276
277/* Support for priority mappings. */
278extern void start_mm_caching(struct mm_struct *mm);
279extern void check_mm_caching(struct mm_struct *prev, struct mm_struct *next);
280
281/*
282 * Support non-linear file mappings (see sys_remap_file_pages).
283 * This is defined by CLIENT1 set but CLIENT0 and _PAGE_PRESENT clear, and the
284 * file offset in the 32 high bits.
285 */
286#define _PAGE_FILE HV_PTE_CLIENT1
287#define PTE_FILE_MAX_BITS 32
288#define pte_file(pte) (hv_pte_get_client1(pte) && !hv_pte_get_client0(pte))
289#define pte_to_pgoff(pte) ((pte).val >> 32)
290#define pgoff_to_pte(off) ((pte_t) { (((long long)(off)) << 32) | _PAGE_FILE })
291
292/*
293 * Encode and de-code a swap entry (see <linux/swapops.h>).
294 * We put the swap file type+offset in the 32 high bits;
295 * I believe we can just leave the low bits clear.
296 */
297#define __swp_type(swp) ((swp).val & 0x1f)
298#define __swp_offset(swp) ((swp).val >> 5)
299#define __swp_entry(type, off) ((swp_entry_t) { (type) | ((off) << 5) })
300#define __pte_to_swp_entry(pte) ((swp_entry_t) { (pte).val >> 32 })
301#define __swp_entry_to_pte(swp) ((pte_t) { (((long long) ((swp).val)) << 32) })
302
303/*
Chris Metcalf867e3592010-05-28 23:09:12 -0400304 * Conversion functions: convert a page and protection to a page entry,
305 * and a page entry and page directory to the page they refer to.
306 */
307
308#define mk_pte(page, pgprot) pfn_pte(page_to_pfn(page), (pgprot))
309
310/*
311 * If we are doing an mprotect(), just accept the new vma->vm_page_prot
312 * value and combine it with the PFN from the old PTE to get a new PTE.
313 */
314static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
315{
Chris Metcalf73636b12012-03-28 13:59:18 -0400316 return pfn_pte(pte_pfn(pte), newprot);
Chris Metcalf867e3592010-05-28 23:09:12 -0400317}
318
319/*
320 * The pgd page can be thought of an array like this: pgd_t[PTRS_PER_PGD]
321 *
322 * This macro returns the index of the entry in the pgd page which would
323 * control the given virtual address.
324 */
325#define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD - 1))
326
327/*
328 * pgd_offset() returns a (pgd_t *)
329 * pgd_index() is used get the offset into the pgd page's array of pgd_t's.
330 */
331#define pgd_offset(mm, address) ((mm)->pgd + pgd_index(address))
332
333/*
334 * A shortcut which implies the use of the kernel's pgd, instead
335 * of a process's.
336 */
337#define pgd_offset_k(address) pgd_offset(&init_mm, address)
338
339#if defined(CONFIG_HIGHPTE)
Chris Metcalf38a6f422010-11-01 15:21:35 -0400340extern pte_t *pte_offset_map(pmd_t *, unsigned long address);
341#define pte_unmap(pte) kunmap_atomic(pte)
Chris Metcalf867e3592010-05-28 23:09:12 -0400342#else
343#define pte_offset_map(dir, address) pte_offset_kernel(dir, address)
Chris Metcalf867e3592010-05-28 23:09:12 -0400344#define pte_unmap(pte) do { } while (0)
Chris Metcalf867e3592010-05-28 23:09:12 -0400345#endif
346
347/* Clear a non-executable kernel PTE and flush it from the TLB. */
348#define kpte_clear_flush(ptep, vaddr) \
349do { \
350 pte_clear(&init_mm, (vaddr), (ptep)); \
351 local_flush_tlb_page(FLUSH_NONEXEC, (vaddr), PAGE_SIZE); \
352} while (0)
353
354/*
355 * The kernel page tables contain what we need, and we flush when we
356 * change specific page table entries.
357 */
358#define update_mmu_cache(vma, address, pte) do { } while (0)
359
360#ifdef CONFIG_FLATMEM
361#define kern_addr_valid(addr) (1)
362#endif /* CONFIG_FLATMEM */
363
364#define io_remap_pfn_range(vma, vaddr, pfn, size, prot) \
365 remap_pfn_range(vma, vaddr, pfn, size, prot)
366
367extern void vmalloc_sync_all(void);
368
369#endif /* !__ASSEMBLY__ */
370
371#ifdef __tilegx__
372#include <asm/pgtable_64.h>
373#else
374#include <asm/pgtable_32.h>
375#endif
376
377#ifndef __ASSEMBLY__
378
379static inline int pmd_none(pmd_t pmd)
380{
381 /*
382 * Only check low word on 32-bit platforms, since it might be
383 * out of sync with upper half.
384 */
385 return (unsigned long)pmd_val(pmd) == 0;
386}
387
388static inline int pmd_present(pmd_t pmd)
389{
390 return pmd_val(pmd) & _PAGE_PRESENT;
391}
392
393static inline int pmd_bad(pmd_t pmd)
394{
395 return ((pmd_val(pmd) & _PAGE_ALL) != _PAGE_TABLE);
396}
397
398static inline unsigned long pages_to_mb(unsigned long npg)
399{
400 return npg >> (20 - PAGE_SHIFT);
401}
402
403/*
404 * The pmd can be thought of an array like this: pmd_t[PTRS_PER_PMD]
405 *
406 * This function returns the index of the entry in the pmd which would
407 * control the given virtual address.
408 */
409static inline unsigned long pmd_index(unsigned long address)
410{
411 return (address >> PMD_SHIFT) & (PTRS_PER_PMD - 1);
412}
413
Chris Metcalf73636b12012-03-28 13:59:18 -0400414#define __HAVE_ARCH_PMDP_TEST_AND_CLEAR_YOUNG
415static inline int pmdp_test_and_clear_young(struct vm_area_struct *vma,
416 unsigned long address,
417 pmd_t *pmdp)
418{
419 return ptep_test_and_clear_young(vma, address, pmdp_ptep(pmdp));
420}
421
422#define __HAVE_ARCH_PMDP_SET_WRPROTECT
423static inline void pmdp_set_wrprotect(struct mm_struct *mm,
424 unsigned long address, pmd_t *pmdp)
425{
426 ptep_set_wrprotect(mm, address, pmdp_ptep(pmdp));
427}
428
429
430#define __HAVE_ARCH_PMDP_GET_AND_CLEAR
431static inline pmd_t pmdp_get_and_clear(struct mm_struct *mm,
432 unsigned long address,
433 pmd_t *pmdp)
434{
435 return pte_pmd(ptep_get_and_clear(mm, address, pmdp_ptep(pmdp)));
436}
437
438static inline void __set_pmd(pmd_t *pmdp, pmd_t pmdval)
439{
440 set_pte(pmdp_ptep(pmdp), pmd_pte(pmdval));
441}
442
443#define set_pmd_at(mm, addr, pmdp, pmdval) __set_pmd(pmdp, pmdval)
444
445/* Create a pmd from a PTFN. */
446static inline pmd_t ptfn_pmd(unsigned long ptfn, pgprot_t prot)
447{
448 return pte_pmd(hv_pte_set_ptfn(prot, ptfn));
449}
450
451/* Return the page-table frame number (ptfn) that a pmd_t points at. */
452#define pmd_ptfn(pmd) hv_pte_get_ptfn(pmd_pte(pmd))
453
Chris Metcalf867e3592010-05-28 23:09:12 -0400454/*
455 * A given kernel pmd_t maps to a specific virtual address (either a
456 * kernel huge page or a kernel pte_t table). Since kernel pte_t
457 * tables can be aligned at sub-page granularity, this function can
458 * return non-page-aligned pointers, despite its name.
459 */
460static inline unsigned long pmd_page_vaddr(pmd_t pmd)
461{
462 phys_addr_t pa =
463 (phys_addr_t)pmd_ptfn(pmd) << HV_LOG2_PAGE_TABLE_ALIGN;
464 return (unsigned long)__va(pa);
465}
466
467/*
468 * A pmd_t points to the base of a huge page or to a pte_t array.
469 * If a pte_t array, since we can have multiple per page, we don't
470 * have a one-to-one mapping of pmd_t's to pages. However, this is
471 * OK for pte_lockptr(), since we just end up with potentially one
472 * lock being used for several pte_t arrays.
473 */
474#define pmd_page(pmd) pfn_to_page(HV_PTFN_TO_PFN(pmd_ptfn(pmd)))
475
Chris Metcalf73636b12012-03-28 13:59:18 -0400476static inline void pmd_clear(pmd_t *pmdp)
477{
478 __pte_clear(pmdp_ptep(pmdp));
479}
480
481#define pmd_mknotpresent(pmd) pte_pmd(pte_mknotpresent(pmd_pte(pmd)))
482#define pmd_young(pmd) pte_young(pmd_pte(pmd))
483#define pmd_mkyoung(pmd) pte_pmd(pte_mkyoung(pmd_pte(pmd)))
484#define pmd_mkold(pmd) pte_pmd(pte_mkold(pmd_pte(pmd)))
485#define pmd_mkwrite(pmd) pte_pmd(pte_mkwrite(pmd_pte(pmd)))
486#define pmd_write(pmd) pte_write(pmd_pte(pmd))
487#define pmd_wrprotect(pmd) pte_pmd(pte_wrprotect(pmd_pte(pmd)))
488#define pmd_mkdirty(pmd) pte_pmd(pte_mkdirty(pmd_pte(pmd)))
489#define pmd_huge_page(pmd) pte_huge(pmd_pte(pmd))
490#define pmd_mkhuge(pmd) pte_pmd(pte_mkhuge(pmd_pte(pmd)))
491#define __HAVE_ARCH_PMD_WRITE
492
493#define pfn_pmd(pfn, pgprot) pte_pmd(pfn_pte((pfn), (pgprot)))
494#define pmd_pfn(pmd) pte_pfn(pmd_pte(pmd))
495#define mk_pmd(page, pgprot) pfn_pmd(page_to_pfn(page), (pgprot))
496
497static inline pmd_t pmd_modify(pmd_t pmd, pgprot_t newprot)
498{
499 return pfn_pmd(pmd_pfn(pmd), newprot);
500}
501
502#ifdef CONFIG_TRANSPARENT_HUGEPAGE
503#define has_transparent_hugepage() 1
504#define pmd_trans_huge pmd_huge_page
505
506static inline pmd_t pmd_mksplitting(pmd_t pmd)
507{
508 return pte_pmd(hv_pte_set_client2(pmd_pte(pmd)));
509}
510
511static inline int pmd_trans_splitting(pmd_t pmd)
512{
513 return hv_pte_get_client2(pmd_pte(pmd));
514}
515#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
516
Chris Metcalf867e3592010-05-28 23:09:12 -0400517/*
518 * The pte page can be thought of an array like this: pte_t[PTRS_PER_PTE]
519 *
520 * This macro returns the index of the entry in the pte page which would
521 * control the given virtual address.
522 */
523static inline unsigned long pte_index(unsigned long address)
524{
525 return (address >> PAGE_SHIFT) & (PTRS_PER_PTE - 1);
526}
527
528static inline pte_t *pte_offset_kernel(pmd_t *pmd, unsigned long address)
529{
530 return (pte_t *)pmd_page_vaddr(*pmd) + pte_index(address);
531}
532
Chris Metcalf867e3592010-05-28 23:09:12 -0400533#include <asm-generic/pgtable.h>
534
Chris Metcalf0707ad32010-06-25 17:04:17 -0400535/* Support /proc/NN/pgtable API. */
536struct seq_file;
537int arch_proc_pgtable_show(struct seq_file *m, struct mm_struct *mm,
538 unsigned long vaddr, pte_t *ptep, void **datap);
539
Chris Metcalf867e3592010-05-28 23:09:12 -0400540#endif /* !__ASSEMBLY__ */
541
542#endif /* _ASM_TILE_PGTABLE_H */