blob: e5d779eed181dc0c2ab8969f2a96eae279c13d38 [file] [log] [blame]
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001/*
2 * Declarations of procedures and variables shared between files
3 * in arch/ppc/mm/.
4 *
5 * Derived from arch/ppc/mm/init.c:
6 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
7 *
8 * Modifications by Paul Mackerras (PowerMac) (paulus@cs.anu.edu.au)
9 * and Cort Dougan (PReP) (cort@cs.nmt.edu)
10 * Copyright (C) 1996 Paul Mackerras
Paul Mackerras14cf11a2005-09-26 16:04:21 +100011 *
12 * Derived from "arch/i386/mm/init.c"
13 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version
18 * 2 of the License, or (at your option) any later version.
19 *
20 */
David Gibson62102302007-04-24 13:09:12 +100021#include <linux/mm.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100022#include <asm/mmu.h>
23
Benjamin Herrenschmidt2a4aca112008-12-18 19:13:42 +000024#ifdef CONFIG_PPC_MMU_NOHASH
25
26/*
27 * On 40x and 8xx, we directly inline tlbia and tlbivax
28 */
Christophe Leroy968159c2017-08-08 13:58:54 +020029#if defined(CONFIG_40x) || defined(CONFIG_PPC_8xx)
Benjamin Herrenschmidt2a4aca112008-12-18 19:13:42 +000030static inline void _tlbil_all(void)
31{
Benjamin Herrenschmidt4a082682009-01-06 17:56:51 +000032 asm volatile ("sync; tlbia; isync" : : : "memory");
Benjamin Herrenschmidt2a4aca112008-12-18 19:13:42 +000033}
34static inline void _tlbil_pid(unsigned int pid)
35{
Benjamin Herrenschmidt4a082682009-01-06 17:56:51 +000036 asm volatile ("sync; tlbia; isync" : : : "memory");
Benjamin Herrenschmidt2a4aca112008-12-18 19:13:42 +000037}
Benjamin Herrenschmidtd4e167d2009-07-23 23:15:24 +000038#define _tlbil_pid_noind(pid) _tlbil_pid(pid)
39
Christophe Leroy968159c2017-08-08 13:58:54 +020040#else /* CONFIG_40x || CONFIG_PPC_8xx */
Benjamin Herrenschmidt2a4aca112008-12-18 19:13:42 +000041extern void _tlbil_all(void);
42extern void _tlbil_pid(unsigned int pid);
Benjamin Herrenschmidt25d21ad2009-07-23 23:15:47 +000043#ifdef CONFIG_PPC_BOOK3E
44extern void _tlbil_pid_noind(unsigned int pid);
45#else
Benjamin Herrenschmidtd4e167d2009-07-23 23:15:24 +000046#define _tlbil_pid_noind(pid) _tlbil_pid(pid)
Benjamin Herrenschmidt25d21ad2009-07-23 23:15:47 +000047#endif
Christophe Leroy968159c2017-08-08 13:58:54 +020048#endif /* !(CONFIG_40x || CONFIG_PPC_8xx) */
Benjamin Herrenschmidt2a4aca112008-12-18 19:13:42 +000049
50/*
51 * On 8xx, we directly inline tlbie, on others, it's extern
52 */
Christophe Leroy968159c2017-08-08 13:58:54 +020053#ifdef CONFIG_PPC_8xx
Benjamin Herrenschmidtd4e167d2009-07-23 23:15:24 +000054static inline void _tlbil_va(unsigned long address, unsigned int pid,
55 unsigned int tsize, unsigned int ind)
Benjamin Herrenschmidt2a4aca112008-12-18 19:13:42 +000056{
Benjamin Herrenschmidt4a082682009-01-06 17:56:51 +000057 asm volatile ("tlbie %0; sync" : : "r" (address) : "memory");
Benjamin Herrenschmidt2a4aca112008-12-18 19:13:42 +000058}
Benjamin Herrenschmidt25d21ad2009-07-23 23:15:47 +000059#elif defined(CONFIG_PPC_BOOK3E)
60extern void _tlbil_va(unsigned long address, unsigned int pid,
61 unsigned int tsize, unsigned int ind);
62#else
Benjamin Herrenschmidtd4e167d2009-07-23 23:15:24 +000063extern void __tlbil_va(unsigned long address, unsigned int pid);
64static inline void _tlbil_va(unsigned long address, unsigned int pid,
65 unsigned int tsize, unsigned int ind)
66{
67 __tlbil_va(address, pid);
68}
Christophe Leroy968159c2017-08-08 13:58:54 +020069#endif /* CONFIG_PPC_8xx */
Benjamin Herrenschmidt2a4aca112008-12-18 19:13:42 +000070
Dave Kleikampe7f75ad2010-03-05 10:43:12 +000071#if defined(CONFIG_PPC_BOOK3E) || defined(CONFIG_PPC_47x)
Benjamin Herrenschmidt25d21ad2009-07-23 23:15:47 +000072extern void _tlbivax_bcast(unsigned long address, unsigned int pid,
73 unsigned int tsize, unsigned int ind);
74#else
Benjamin Herrenschmidtd4e167d2009-07-23 23:15:24 +000075static inline void _tlbivax_bcast(unsigned long address, unsigned int pid,
76 unsigned int tsize, unsigned int ind)
Benjamin Herrenschmidt2a4aca112008-12-18 19:13:42 +000077{
78 BUG();
79}
Benjamin Herrenschmidt25d21ad2009-07-23 23:15:47 +000080#endif
Benjamin Herrenschmidt2a4aca112008-12-18 19:13:42 +000081
82#else /* CONFIG_PPC_MMU_NOHASH */
83
Benjamin Herrenschmidtee4f2ea2007-04-12 15:30:22 +100084extern void hash_preload(struct mm_struct *mm, unsigned long ea,
85 unsigned long access, unsigned long trap);
86
87
Benjamin Herrenschmidt2a4aca112008-12-18 19:13:42 +000088extern void _tlbie(unsigned long address);
89extern void _tlbia(void);
90
91#endif /* CONFIG_PPC_MMU_NOHASH */
92
Paul Mackerrasab1f9da2005-10-10 21:58:35 +100093#ifdef CONFIG_PPC32
Trent Piepho19f54652008-12-08 19:34:55 -080094
Paul Mackerras14cf11a2005-09-26 16:04:21 +100095extern void mapin_ram(void);
Becky Bruce7c5c4322008-06-14 09:41:42 +100096extern void setbat(int index, unsigned long virt, phys_addr_t phys,
Michael Ellerman5dd4e4f2015-03-25 20:11:55 +110097 unsigned int size, pgprot_t prot);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100098
99extern int __map_without_bats;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000100extern unsigned int rtas_data, rtas_size;
101
David Gibson8e561e72007-06-13 14:52:56 +1000102struct hash_pte;
103extern struct hash_pte *Hash, *Hash_end;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000104extern unsigned long Hash_size, Hash_mask;
Benjamin Herrenschmidt32a74942009-07-23 23:15:58 +0000105
106#endif /* CONFIG_PPC32 */
107
David Gibson800fc3e2005-11-16 15:43:48 +1100108extern unsigned long ioremap_bot;
Paul Mackerrasab1f9da2005-10-10 21:58:35 +1000109extern unsigned long __max_low_memory;
Kumar Gala09b5e632008-04-16 05:52:25 +1000110extern phys_addr_t __initial_memory_limit_addr;
Stefan Roese2bf30162008-07-10 01:09:23 +1000111extern phys_addr_t total_memory;
112extern phys_addr_t total_lowmem;
Kumar Gala99c62dd72008-04-16 05:52:21 +1000113extern phys_addr_t memstart_addr;
Kumar Galad7917ba2008-04-16 05:52:22 +1000114extern phys_addr_t lowmem_end_addr;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000115
Albert Herranzde324002009-12-12 06:31:53 +0000116#ifdef CONFIG_WII
117extern unsigned long wii_hole_start;
118extern unsigned long wii_hole_size;
119
120extern unsigned long wii_mmu_mapin_mem2(unsigned long top);
121extern void wii_memory_fixups(void);
122#endif
123
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000124/* ...and now those things that may be slightly different between processor
125 * architectures. -- Dan
126 */
Christophe Leroya372acf2016-02-09 17:07:50 +0100127#ifdef CONFIG_PPC32
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000128extern void MMU_init_hw(void);
Stephen Rothwellae4cec42009-12-14 09:04:24 -0700129extern unsigned long mmu_mapin_ram(unsigned long top);
Christophe Leroya372acf2016-02-09 17:07:50 +0100130#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000131
Christophe Leroya372acf2016-02-09 17:07:50 +0100132#ifdef CONFIG_PPC_FSL_BOOK3E
Scott Woodeba5de82015-10-06 22:48:10 -0500133extern unsigned long map_mem_in_cams(unsigned long ram, int max_cam_idx,
134 bool dryrun);
Kumar Gala1dc91c32011-09-16 10:39:59 -0500135extern unsigned long calc_cam_sz(unsigned long ram, unsigned long virt,
136 phys_addr_t phys);
Kumar Gala55fd7662009-10-16 18:48:40 -0500137#ifdef CONFIG_PPC32
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000138extern void adjust_total_lowmem(void);
Kevin Hao78a235e2013-12-24 15:12:07 +0800139extern int switch_to_as1(void);
Kevin Hao0be7d969b2013-12-24 15:12:11 +0800140extern void restore_to_as0(int esel, int offset, void *dt_ptr, int bootcpu);
Kumar Gala55fd7662009-10-16 18:48:40 -0500141#endif
Kumar Gala78f62232010-05-13 14:38:21 -0500142extern void loadcam_entry(unsigned int index);
Scott Woodd9e18312015-10-06 22:48:09 -0500143extern void loadcam_multi(int first_idx, int num, int tmp_idx);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000144
Kumar Gala78f62232010-05-13 14:38:21 -0500145struct tlbcam {
146 u32 MAS0;
147 u32 MAS1;
148 unsigned long MAS2;
149 u32 MAS3;
150 u32 MAS7;
151};
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000152#endif
Christophe Leroy3084cdb2016-02-09 17:07:58 +0100153
Christophe Leroy4badd432016-05-17 09:02:45 +0200154#if defined(CONFIG_6xx) || defined(CONFIG_FSL_BOOKE) || defined(CONFIG_PPC_8xx)
Christophe Leroy3084cdb2016-02-09 17:07:58 +0100155/* 6xx have BATS */
156/* FSL_BOOKE have TLBCAM */
Christophe Leroy4badd432016-05-17 09:02:45 +0200157/* 8xx have LTLB */
Christophe Leroy3084cdb2016-02-09 17:07:58 +0100158phys_addr_t v_block_mapped(unsigned long va);
159unsigned long p_block_mapped(phys_addr_t pa);
160#else
161static inline phys_addr_t v_block_mapped(unsigned long va) { return 0; }
162static inline unsigned long p_block_mapped(phys_addr_t pa) { return 0; }
163#endif