1b2441318SGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 */
217ed9e31SAneesh Kumar K.V #ifndef _ASM_POWERPC_NOHASH_PGTABLE_H
317ed9e31SAneesh Kumar K.V #define _ASM_POWERPC_NOHASH_PGTABLE_H
417ed9e31SAneesh Kumar K.V 
517ed9e31SAneesh Kumar K.V #if defined(CONFIG_PPC64)
617ed9e31SAneesh Kumar K.V #include <asm/nohash/64/pgtable.h>
717ed9e31SAneesh Kumar K.V #else
817ed9e31SAneesh Kumar K.V #include <asm/nohash/32/pgtable.h>
917ed9e31SAneesh Kumar K.V #endif
1017ed9e31SAneesh Kumar K.V 
116c5d2d3fSChristophe Leroy /* Permission masks used for kernel mappings */
126c5d2d3fSChristophe Leroy #define PAGE_KERNEL	__pgprot(_PAGE_BASE | _PAGE_KERNEL_RW)
136c5d2d3fSChristophe Leroy #define PAGE_KERNEL_NC	__pgprot(_PAGE_BASE_NC | _PAGE_KERNEL_RW | _PAGE_NO_CACHE)
146cc07821SChristophe Leroy #define PAGE_KERNEL_NCG	__pgprot(_PAGE_BASE_NC | _PAGE_KERNEL_RW | _PAGE_NO_CACHE | _PAGE_GUARDED)
156c5d2d3fSChristophe Leroy #define PAGE_KERNEL_X	__pgprot(_PAGE_BASE | _PAGE_KERNEL_RWX)
166c5d2d3fSChristophe Leroy #define PAGE_KERNEL_RO	__pgprot(_PAGE_BASE | _PAGE_KERNEL_RO)
176c5d2d3fSChristophe Leroy #define PAGE_KERNEL_ROX	__pgprot(_PAGE_BASE | _PAGE_KERNEL_ROX)
186c5d2d3fSChristophe Leroy 
1917ed9e31SAneesh Kumar K.V #ifndef __ASSEMBLY__
2017ed9e31SAneesh Kumar K.V 
2117ed9e31SAneesh Kumar K.V /* Generic accessors to PTE bits */
22a0da4bc1SChristophe Leroy #ifndef pte_write
pte_write(pte_t pte)2317ed9e31SAneesh Kumar K.V static inline int pte_write(pte_t pte)
2417ed9e31SAneesh Kumar K.V {
25a0da4bc1SChristophe Leroy 	return pte_val(pte) & _PAGE_RW;
2617ed9e31SAneesh Kumar K.V }
27a0da4bc1SChristophe Leroy #endif
28*5d9cea8aSChristophe Leroy #ifndef pte_read
pte_read(pte_t pte)29ca8afd40SChristophe Leroy static inline int pte_read(pte_t pte)		{ return 1; }
30*5d9cea8aSChristophe Leroy #endif
pte_dirty(pte_t pte)3117ed9e31SAneesh Kumar K.V static inline int pte_dirty(pte_t pte)		{ return pte_val(pte) & _PAGE_DIRTY; }
pte_special(pte_t pte)3217ed9e31SAneesh Kumar K.V static inline int pte_special(pte_t pte)	{ return pte_val(pte) & _PAGE_SPECIAL; }
pte_none(pte_t pte)3317ed9e31SAneesh Kumar K.V static inline int pte_none(pte_t pte)		{ return (pte_val(pte) & ~_PTE_NONE_MASK) == 0; }
pte_hashpte(pte_t pte)34daba7902SChristophe Leroy static inline bool pte_hashpte(pte_t pte)	{ return false; }
pte_ci(pte_t pte)35daba7902SChristophe Leroy static inline bool pte_ci(pte_t pte)		{ return pte_val(pte) & _PAGE_NO_CACHE; }
pte_exec(pte_t pte)36daba7902SChristophe Leroy static inline bool pte_exec(pte_t pte)		{ return pte_val(pte) & _PAGE_EXEC; }
3717ed9e31SAneesh Kumar K.V 
3817ed9e31SAneesh Kumar K.V #ifdef CONFIG_NUMA_BALANCING
3917ed9e31SAneesh Kumar K.V /*
4017ed9e31SAneesh Kumar K.V  * These work without NUMA balancing but the kernel does not care. See the
41ca5999fdSMike Rapoport  * comment in include/linux/pgtable.h . On powerpc, this will only
4217ed9e31SAneesh Kumar K.V  * work for user pages and always return true for kernel pages.
4317ed9e31SAneesh Kumar K.V  */
pte_protnone(pte_t pte)4417ed9e31SAneesh Kumar K.V static inline int pte_protnone(pte_t pte)
4517ed9e31SAneesh Kumar K.V {
4626973fa5SChristophe Leroy 	return pte_present(pte) && !pte_user(pte);
4717ed9e31SAneesh Kumar K.V }
4817ed9e31SAneesh Kumar K.V 
pmd_protnone(pmd_t pmd)4917ed9e31SAneesh Kumar K.V static inline int pmd_protnone(pmd_t pmd)
5017ed9e31SAneesh Kumar K.V {
5117ed9e31SAneesh Kumar K.V 	return pte_protnone(pmd_pte(pmd));
5217ed9e31SAneesh Kumar K.V }
5317ed9e31SAneesh Kumar K.V #endif /* CONFIG_NUMA_BALANCING */
5417ed9e31SAneesh Kumar K.V 
pte_present(pte_t pte)5517ed9e31SAneesh Kumar K.V static inline int pte_present(pte_t pte)
5617ed9e31SAneesh Kumar K.V {
5717ed9e31SAneesh Kumar K.V 	return pte_val(pte) & _PAGE_PRESENT;
5817ed9e31SAneesh Kumar K.V }
5917ed9e31SAneesh Kumar K.V 
pte_hw_valid(pte_t pte)60daba7902SChristophe Leroy static inline bool pte_hw_valid(pte_t pte)
61daba7902SChristophe Leroy {
62daba7902SChristophe Leroy 	return pte_val(pte) & _PAGE_PRESENT;
63daba7902SChristophe Leroy }
64daba7902SChristophe Leroy 
655769beafSAneesh Kumar K.V /*
66e0f57031SChristophe Leroy  * Don't just check for any non zero bits in __PAGE_USER, since for book3e
67e0f57031SChristophe Leroy  * and PTE_64BIT, PAGE_KERNEL_X contains _PAGE_BAP_SR which is also in
68e0f57031SChristophe Leroy  * _PAGE_USER.  Need to explicitly match _PAGE_BAP_UR bit in that case too.
69e0f57031SChristophe Leroy  */
70a0da4bc1SChristophe Leroy #ifndef pte_user
pte_user(pte_t pte)71e0f57031SChristophe Leroy static inline bool pte_user(pte_t pte)
72e0f57031SChristophe Leroy {
73a0da4bc1SChristophe Leroy 	return (pte_val(pte) & _PAGE_USER) == _PAGE_USER;
74e0f57031SChristophe Leroy }
75a0da4bc1SChristophe Leroy #endif
76e0f57031SChristophe Leroy 
77e0f57031SChristophe Leroy /*
785769beafSAneesh Kumar K.V  * We only find page table entry in the last level
795769beafSAneesh Kumar K.V  * Hence no need for other accessors
805769beafSAneesh Kumar K.V  */
815769beafSAneesh Kumar K.V #define pte_access_permitted pte_access_permitted
pte_access_permitted(pte_t pte,bool write)825769beafSAneesh Kumar K.V static inline bool pte_access_permitted(pte_t pte, bool write)
835769beafSAneesh Kumar K.V {
845769beafSAneesh Kumar K.V 	/*
855769beafSAneesh Kumar K.V 	 * A read-only access is controlled by _PAGE_USER bit.
865769beafSAneesh Kumar K.V 	 * We have _PAGE_READ set for WRITE and EXECUTE
875769beafSAneesh Kumar K.V 	 */
88810e9f86SChristophe Leroy 	if (!pte_present(pte) || !pte_user(pte) || !pte_read(pte))
89810e9f86SChristophe Leroy 		return false;
905769beafSAneesh Kumar K.V 
91810e9f86SChristophe Leroy 	if (write && !pte_write(pte))
925769beafSAneesh Kumar K.V 		return false;
935769beafSAneesh Kumar K.V 
945769beafSAneesh Kumar K.V 	return true;
955769beafSAneesh Kumar K.V }
965769beafSAneesh Kumar K.V 
9717ed9e31SAneesh Kumar K.V /* Conversion functions: convert a page and protection to a page entry,
9817ed9e31SAneesh Kumar K.V  * and a page entry and page directory to the page they refer to.
9917ed9e31SAneesh Kumar K.V  *
10017ed9e31SAneesh Kumar K.V  * Even if PTEs can be unsigned long long, a PFN is always an unsigned
10117ed9e31SAneesh Kumar K.V  * long for now.
10217ed9e31SAneesh Kumar K.V  */
pfn_pte(unsigned long pfn,pgprot_t pgprot)10317ed9e31SAneesh Kumar K.V static inline pte_t pfn_pte(unsigned long pfn, pgprot_t pgprot) {
10417ed9e31SAneesh Kumar K.V 	return __pte(((pte_basic_t)(pfn) << PTE_RPN_SHIFT) |
10517ed9e31SAneesh Kumar K.V 		     pgprot_val(pgprot)); }
10617ed9e31SAneesh Kumar K.V 
10717ed9e31SAneesh Kumar K.V /* Generic modifiers for PTE bits */
pte_exprotect(pte_t pte)108daba7902SChristophe Leroy static inline pte_t pte_exprotect(pte_t pte)
109daba7902SChristophe Leroy {
110daba7902SChristophe Leroy 	return __pte(pte_val(pte) & ~_PAGE_EXEC);
111daba7902SChristophe Leroy }
112daba7902SChristophe Leroy 
pte_mkclean(pte_t pte)11317ed9e31SAneesh Kumar K.V static inline pte_t pte_mkclean(pte_t pte)
11417ed9e31SAneesh Kumar K.V {
115a0da4bc1SChristophe Leroy 	return __pte(pte_val(pte) & ~_PAGE_DIRTY);
11617ed9e31SAneesh Kumar K.V }
11717ed9e31SAneesh Kumar K.V 
pte_mkold(pte_t pte)11817ed9e31SAneesh Kumar K.V static inline pte_t pte_mkold(pte_t pte)
11917ed9e31SAneesh Kumar K.V {
12017ed9e31SAneesh Kumar K.V 	return __pte(pte_val(pte) & ~_PAGE_ACCESSED);
12117ed9e31SAneesh Kumar K.V }
12217ed9e31SAneesh Kumar K.V 
pte_mkspecial(pte_t pte)12317ed9e31SAneesh Kumar K.V static inline pte_t pte_mkspecial(pte_t pte)
12417ed9e31SAneesh Kumar K.V {
12517ed9e31SAneesh Kumar K.V 	return __pte(pte_val(pte) | _PAGE_SPECIAL);
12617ed9e31SAneesh Kumar K.V }
12717ed9e31SAneesh Kumar K.V 
128a0da4bc1SChristophe Leroy #ifndef pte_mkhuge
pte_mkhuge(pte_t pte)12917ed9e31SAneesh Kumar K.V static inline pte_t pte_mkhuge(pte_t pte)
13017ed9e31SAneesh Kumar K.V {
131a0da4bc1SChristophe Leroy 	return __pte(pte_val(pte));
13217ed9e31SAneesh Kumar K.V }
133a0da4bc1SChristophe Leroy #endif
13417ed9e31SAneesh Kumar K.V 
135a0da4bc1SChristophe Leroy #ifndef pte_mkprivileged
pte_mkprivileged(pte_t pte)136daba7902SChristophe Leroy static inline pte_t pte_mkprivileged(pte_t pte)
137daba7902SChristophe Leroy {
138a0da4bc1SChristophe Leroy 	return __pte(pte_val(pte) & ~_PAGE_USER);
139daba7902SChristophe Leroy }
140a0da4bc1SChristophe Leroy #endif
141daba7902SChristophe Leroy 
142a0da4bc1SChristophe Leroy #ifndef pte_mkuser
pte_mkuser(pte_t pte)143daba7902SChristophe Leroy static inline pte_t pte_mkuser(pte_t pte)
144daba7902SChristophe Leroy {
145a0da4bc1SChristophe Leroy 	return __pte(pte_val(pte) | _PAGE_USER);
146daba7902SChristophe Leroy }
147a0da4bc1SChristophe Leroy #endif
148daba7902SChristophe Leroy 
pte_modify(pte_t pte,pgprot_t newprot)14917ed9e31SAneesh Kumar K.V static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
15017ed9e31SAneesh Kumar K.V {
15117ed9e31SAneesh Kumar K.V 	return __pte((pte_val(pte) & _PAGE_CHG_MASK) | pgprot_val(newprot));
15217ed9e31SAneesh Kumar K.V }
15317ed9e31SAneesh Kumar K.V 
pte_swp_exclusive(pte_t pte)1542bba2ffbSDavid Hildenbrand static inline int pte_swp_exclusive(pte_t pte)
1552bba2ffbSDavid Hildenbrand {
1562bba2ffbSDavid Hildenbrand 	return pte_val(pte) & _PAGE_SWP_EXCLUSIVE;
1572bba2ffbSDavid Hildenbrand }
1582bba2ffbSDavid Hildenbrand 
pte_swp_mkexclusive(pte_t pte)1592bba2ffbSDavid Hildenbrand static inline pte_t pte_swp_mkexclusive(pte_t pte)
1602bba2ffbSDavid Hildenbrand {
1612bba2ffbSDavid Hildenbrand 	return __pte(pte_val(pte) | _PAGE_SWP_EXCLUSIVE);
1622bba2ffbSDavid Hildenbrand }
1632bba2ffbSDavid Hildenbrand 
pte_swp_clear_exclusive(pte_t pte)1642bba2ffbSDavid Hildenbrand static inline pte_t pte_swp_clear_exclusive(pte_t pte)
1652bba2ffbSDavid Hildenbrand {
1662bba2ffbSDavid Hildenbrand 	return __pte(pte_val(pte) & ~_PAGE_SWP_EXCLUSIVE);
1672bba2ffbSDavid Hildenbrand }
1682bba2ffbSDavid Hildenbrand 
16917ed9e31SAneesh Kumar K.V /* This low level function performs the actual PTE insertion
17017ed9e31SAneesh Kumar K.V  * Setting the PTE depends on the MMU type and other factors. It's
17117ed9e31SAneesh Kumar K.V  * an horrible mess that I'm not going to try to clean up now but
17217ed9e31SAneesh Kumar K.V  * I'm keeping it in one place rather than spread around
17317ed9e31SAneesh Kumar K.V  */
__set_pte_at(struct mm_struct * mm,unsigned long addr,pte_t * ptep,pte_t pte,int percpu)17417ed9e31SAneesh Kumar K.V static inline void __set_pte_at(struct mm_struct *mm, unsigned long addr,
17517ed9e31SAneesh Kumar K.V 				pte_t *ptep, pte_t pte, int percpu)
17617ed9e31SAneesh Kumar K.V {
17717ed9e31SAneesh Kumar K.V 	/* Second case is 32-bit with 64-bit PTE.  In this case, we
17817ed9e31SAneesh Kumar K.V 	 * can just store as long as we do the two halves in the right order
17945201c87SChristophe Leroy 	 * with a barrier in between.
18045201c87SChristophe Leroy 	 * In the percpu case, we also fallback to the simple update
18117ed9e31SAneesh Kumar K.V 	 */
182d5808ffaSChristophe Leroy 	if (IS_ENABLED(CONFIG_PPC32) && IS_ENABLED(CONFIG_PTE_64BIT) && !percpu) {
18317ed9e31SAneesh Kumar K.V 		__asm__ __volatile__("\
184d85be8a4SMathieu Desnoyers 			stw%X0 %2,%0\n\
1852255411dSChristophe Leroy 			mbar\n\
186d85be8a4SMathieu Desnoyers 			stw%X1 %L2,%1"
18717ed9e31SAneesh Kumar K.V 		: "=m" (*ptep), "=m" (*((unsigned char *)ptep+4))
18817ed9e31SAneesh Kumar K.V 		: "r" (pte) : "memory");
189d5808ffaSChristophe Leroy 		return;
190d5808ffaSChristophe Leroy 	}
19117ed9e31SAneesh Kumar K.V 	/* Anything else just stores the PTE normally. That covers all 64-bit
19217ed9e31SAneesh Kumar K.V 	 * cases, and 32-bit non-hash with 32-bit PTEs.
19317ed9e31SAneesh Kumar K.V 	 */
19455c8fc3fSChristophe Leroy #if defined(CONFIG_PPC_8xx) && defined(CONFIG_PPC_16K_PAGES)
1950b472181SChristophe Leroy 	ptep->pte3 = ptep->pte2 = ptep->pte1 = ptep->pte = pte_val(pte);
19655c8fc3fSChristophe Leroy #else
19717ed9e31SAneesh Kumar K.V 	*ptep = pte;
19855c8fc3fSChristophe Leroy #endif
19917ed9e31SAneesh Kumar K.V 
20017ed9e31SAneesh Kumar K.V 	/*
20117ed9e31SAneesh Kumar K.V 	 * With hardware tablewalk, a sync is needed to ensure that
20217ed9e31SAneesh Kumar K.V 	 * subsequent accesses see the PTE we just wrote.  Unlike userspace
20317ed9e31SAneesh Kumar K.V 	 * mappings, we can't tolerate spurious faults, so make sure
20417ed9e31SAneesh Kumar K.V 	 * the new PTE will be seen the first time.
20517ed9e31SAneesh Kumar K.V 	 */
206d5808ffaSChristophe Leroy 	if (IS_ENABLED(CONFIG_PPC_BOOK3E_64) && is_kernel_addr(addr))
20717ed9e31SAneesh Kumar K.V 		mb();
20817ed9e31SAneesh Kumar K.V }
20917ed9e31SAneesh Kumar K.V 
21017ed9e31SAneesh Kumar K.V 
21117ed9e31SAneesh Kumar K.V #define __HAVE_ARCH_PTEP_SET_ACCESS_FLAGS
21217ed9e31SAneesh Kumar K.V extern int ptep_set_access_flags(struct vm_area_struct *vma, unsigned long address,
21317ed9e31SAneesh Kumar K.V 				 pte_t *ptep, pte_t entry, int dirty);
21417ed9e31SAneesh Kumar K.V 
21517ed9e31SAneesh Kumar K.V /*
21617ed9e31SAneesh Kumar K.V  * Macro to mark a page protection value as "uncacheable".
21717ed9e31SAneesh Kumar K.V  */
21817ed9e31SAneesh Kumar K.V 
21917ed9e31SAneesh Kumar K.V #define _PAGE_CACHE_CTL	(_PAGE_COHERENT | _PAGE_GUARDED | _PAGE_NO_CACHE | \
22017ed9e31SAneesh Kumar K.V 			 _PAGE_WRITETHRU)
22117ed9e31SAneesh Kumar K.V 
22217ed9e31SAneesh Kumar K.V #define pgprot_noncached(prot)	  (__pgprot((pgprot_val(prot) & ~_PAGE_CACHE_CTL) | \
22317ed9e31SAneesh Kumar K.V 				            _PAGE_NO_CACHE | _PAGE_GUARDED))
22417ed9e31SAneesh Kumar K.V 
22517ed9e31SAneesh Kumar K.V #define pgprot_noncached_wc(prot) (__pgprot((pgprot_val(prot) & ~_PAGE_CACHE_CTL) | \
22617ed9e31SAneesh Kumar K.V 				            _PAGE_NO_CACHE))
22717ed9e31SAneesh Kumar K.V 
22817ed9e31SAneesh Kumar K.V #define pgprot_cached(prot)       (__pgprot((pgprot_val(prot) & ~_PAGE_CACHE_CTL) | \
22917ed9e31SAneesh Kumar K.V 				            _PAGE_COHERENT))
23017ed9e31SAneesh Kumar K.V 
2315f356497SChristophe Leroy #if _PAGE_WRITETHRU != 0
23217ed9e31SAneesh Kumar K.V #define pgprot_cached_wthru(prot) (__pgprot((pgprot_val(prot) & ~_PAGE_CACHE_CTL) | \
23317ed9e31SAneesh Kumar K.V 				            _PAGE_COHERENT | _PAGE_WRITETHRU))
23456f3c141SChristophe Leroy #else
23556f3c141SChristophe Leroy #define pgprot_cached_wthru(prot)	pgprot_noncached(prot)
2365f356497SChristophe Leroy #endif
23717ed9e31SAneesh Kumar K.V 
23817ed9e31SAneesh Kumar K.V #define pgprot_cached_noncoherent(prot) \
23917ed9e31SAneesh Kumar K.V 		(__pgprot(pgprot_val(prot) & ~_PAGE_CACHE_CTL))
24017ed9e31SAneesh Kumar K.V 
24117ed9e31SAneesh Kumar K.V #define pgprot_writecombine pgprot_noncached_wc
24217ed9e31SAneesh Kumar K.V 
24317ed9e31SAneesh Kumar K.V struct file;
24417ed9e31SAneesh Kumar K.V extern pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
24517ed9e31SAneesh Kumar K.V 				     unsigned long size, pgprot_t vma_prot);
24617ed9e31SAneesh Kumar K.V #define __HAVE_PHYS_MEM_ACCESS_PROT
24717ed9e31SAneesh Kumar K.V 
24826a344aeSAneesh Kumar K.V #ifdef CONFIG_HUGETLB_PAGE
hugepd_ok(hugepd_t hpd)24926a344aeSAneesh Kumar K.V static inline int hugepd_ok(hugepd_t hpd)
25026a344aeSAneesh Kumar K.V {
2514b914286SChristophe Leroy #ifdef CONFIG_PPC_8xx
252b250c8c0SChristophe Leroy 	return ((hpd_val(hpd) & _PMD_PAGE_MASK) == _PMD_PAGE_8M);
2534b914286SChristophe Leroy #else
25420717e1fSAneesh Kumar K.V 	/* We clear the top bit to indicate hugepd */
2553fb66a70SLaurentiu Tudor 	return (hpd_val(hpd) && (hpd_val(hpd) & PD_HUGE) == 0);
2564b914286SChristophe Leroy #endif
25726a344aeSAneesh Kumar K.V }
25826a344aeSAneesh Kumar K.V 
pmd_huge(pmd_t pmd)25926a344aeSAneesh Kumar K.V static inline int pmd_huge(pmd_t pmd)
26026a344aeSAneesh Kumar K.V {
26126a344aeSAneesh Kumar K.V 	return 0;
26226a344aeSAneesh Kumar K.V }
26326a344aeSAneesh Kumar K.V 
pud_huge(pud_t pud)26426a344aeSAneesh Kumar K.V static inline int pud_huge(pud_t pud)
26526a344aeSAneesh Kumar K.V {
26626a344aeSAneesh Kumar K.V 	return 0;
26726a344aeSAneesh Kumar K.V }
26826a344aeSAneesh Kumar K.V 
26926a344aeSAneesh Kumar K.V #define is_hugepd(hpd)		(hugepd_ok(hpd))
27026a344aeSAneesh Kumar K.V #endif
27126a344aeSAneesh Kumar K.V 
272d9642117SChristophe Leroy /*
273d9642117SChristophe Leroy  * This gets called at the end of handling a page fault, when
274d9642117SChristophe Leroy  * the kernel has put a new PTE into the page table for the process.
275d9642117SChristophe Leroy  * We use it to ensure coherency between the i-cache and d-cache
276d9642117SChristophe Leroy  * for the page which has just been mapped in.
277d9642117SChristophe Leroy  */
2783e731858SChristophe Leroy #if defined(CONFIG_PPC_E500) && defined(CONFIG_HUGETLB_PAGE)
2799fee28baSMatthew Wilcox (Oracle) void update_mmu_cache_range(struct vm_fault *vmf, struct vm_area_struct *vma,
2809fee28baSMatthew Wilcox (Oracle) 		unsigned long address, pte_t *ptep, unsigned int nr);
281d9642117SChristophe Leroy #else
update_mmu_cache_range(struct vm_fault * vmf,struct vm_area_struct * vma,unsigned long address,pte_t * ptep,unsigned int nr)2829fee28baSMatthew Wilcox (Oracle) static inline void update_mmu_cache_range(struct vm_fault *vmf,
2839fee28baSMatthew Wilcox (Oracle) 		struct vm_area_struct *vma, unsigned long address,
2849fee28baSMatthew Wilcox (Oracle) 		pte_t *ptep, unsigned int nr) {}
285d9642117SChristophe Leroy #endif
286d9642117SChristophe Leroy 
28717ed9e31SAneesh Kumar K.V #endif /* __ASSEMBLY__ */
28817ed9e31SAneesh Kumar K.V #endif
289