blob: edcdfc149311b0145ca223be6b6da49b66212d09 [file] [log] [blame]
Thomas Gleixner25763b32019-05-28 10:10:09 -07001// SPDX-License-Identifier: GPL-2.0-only
Jes Sorensenf14f75b2005-06-21 17:15:02 -07002/*
Dean Nelsone4a064d2008-04-25 15:22:19 -05003 * Copyright (C) 2001-2008 Silicon Graphics, Inc. All rights reserved.
Jes Sorensenf14f75b2005-06-21 17:15:02 -07004 *
Jes Sorensenf14f75b2005-06-21 17:15:02 -07005 * A simple uncached page allocator using the generic allocator. This
6 * allocator first utilizes the spare (spill) pages found in the EFI
7 * memmap and will then start converting cached pages to uncached ones
8 * at a granule at a time. Node awareness is implemented by having a
9 * pool of pages per node.
10 */
11
12#include <linux/types.h>
13#include <linux/kernel.h>
14#include <linux/module.h>
15#include <linux/init.h>
16#include <linux/errno.h>
17#include <linux/string.h>
Jes Sorensenf14f75b2005-06-21 17:15:02 -070018#include <linux/efi.h>
Ingo Molnar38b8d202017-02-08 18:51:31 +010019#include <linux/nmi.h>
Jes Sorensenf14f75b2005-06-21 17:15:02 -070020#include <linux/genalloc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/gfp.h>
Jes Sorensenf14f75b2005-06-21 17:15:02 -070022#include <asm/page.h>
23#include <asm/pal.h>
Jes Sorensenf14f75b2005-06-21 17:15:02 -070024#include <asm/pgtable.h>
Arun Sharma600634972011-07-26 16:09:06 -070025#include <linux/atomic.h>
Jes Sorensenf14f75b2005-06-21 17:15:02 -070026#include <asm/tlbflush.h>
27#include <asm/sn/arch.h>
28
Jes Sorensenf14f75b2005-06-21 17:15:02 -070029
Dean Nelson929f9722006-06-23 02:03:21 -070030extern void __init efi_memmap_walk_uc(efi_freemem_callback_t, void *);
Jes Sorensenf14f75b2005-06-21 17:15:02 -070031
Dean Nelsoneca7994f2006-06-28 13:50:09 -050032struct uncached_pool {
33 struct gen_pool *pool;
34 struct mutex add_chunk_mutex; /* serialize adding a converted chunk */
35 int nchunks_added; /* #of converted chunks added to pool */
36 atomic_t status; /* smp called function's return status*/
37};
Jes Sorensenf14f75b2005-06-21 17:15:02 -070038
Dean Nelsoneca7994f2006-06-28 13:50:09 -050039#define MAX_CONVERTED_CHUNKS_PER_NODE 2
40
41struct uncached_pool uncached_pools[MAX_NUMNODES];
Jes Sorensenf14f75b2005-06-21 17:15:02 -070042
43
44static void uncached_ipi_visibility(void *data)
45{
46 int status;
Dean Nelsoneca7994f2006-06-28 13:50:09 -050047 struct uncached_pool *uc_pool = (struct uncached_pool *)data;
Jes Sorensenf14f75b2005-06-21 17:15:02 -070048
49 status = ia64_pal_prefetch_visibility(PAL_VISIBILITY_PHYSICAL);
50 if ((status != PAL_VISIBILITY_OK) &&
51 (status != PAL_VISIBILITY_OK_REMOTE_NEEDED))
Dean Nelsoneca7994f2006-06-28 13:50:09 -050052 atomic_inc(&uc_pool->status);
Jes Sorensenf14f75b2005-06-21 17:15:02 -070053}
54
55
56static void uncached_ipi_mc_drain(void *data)
57{
58 int status;
Dean Nelsoneca7994f2006-06-28 13:50:09 -050059 struct uncached_pool *uc_pool = (struct uncached_pool *)data;
Dean Nelson929f9722006-06-23 02:03:21 -070060
Jes Sorensenf14f75b2005-06-21 17:15:02 -070061 status = ia64_pal_mc_drain();
Dean Nelsoneca7994f2006-06-28 13:50:09 -050062 if (status != PAL_STATUS_SUCCESS)
63 atomic_inc(&uc_pool->status);
Jes Sorensenf14f75b2005-06-21 17:15:02 -070064}
65
66
Dean Nelson929f9722006-06-23 02:03:21 -070067/*
68 * Add a new chunk of uncached memory pages to the specified pool.
69 *
70 * @pool: pool to add new chunk of uncached memory to
71 * @nid: node id of node to allocate memory from, or -1
72 *
73 * This is accomplished by first allocating a granule of cached memory pages
74 * and then converting them to uncached memory pages.
75 */
Dean Nelsoneca7994f2006-06-28 13:50:09 -050076static int uncached_add_chunk(struct uncached_pool *uc_pool, int nid)
Jes Sorensenf14f75b2005-06-21 17:15:02 -070077{
78 struct page *page;
Dean Nelsoneca7994f2006-06-28 13:50:09 -050079 int status, i, nchunks_added = uc_pool->nchunks_added;
Dean Nelson929f9722006-06-23 02:03:21 -070080 unsigned long c_addr, uc_addr;
Jes Sorensenf14f75b2005-06-21 17:15:02 -070081
Dean Nelsoneca7994f2006-06-28 13:50:09 -050082 if (mutex_lock_interruptible(&uc_pool->add_chunk_mutex) != 0)
83 return -1; /* interrupted by a signal */
84
85 if (uc_pool->nchunks_added > nchunks_added) {
86 /* someone added a new chunk while we were waiting */
87 mutex_unlock(&uc_pool->add_chunk_mutex);
88 return 0;
89 }
90
91 if (uc_pool->nchunks_added >= MAX_CONVERTED_CHUNKS_PER_NODE) {
92 mutex_unlock(&uc_pool->add_chunk_mutex);
Dean Nelson929f9722006-06-23 02:03:21 -070093 return -1;
Dean Nelsoneca7994f2006-06-28 13:50:09 -050094 }
Jes Sorensenf14f75b2005-06-21 17:15:02 -070095
Dean Nelson929f9722006-06-23 02:03:21 -070096 /* attempt to allocate a granule's worth of cached memory pages */
97
Vlastimil Babka96db8002015-09-08 15:03:50 -070098 page = __alloc_pages_node(nid,
Johannes Weinere97ca8e52014-03-10 15:49:43 -070099 GFP_KERNEL | __GFP_ZERO | __GFP_THISNODE,
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700100 IA64_GRANULE_SHIFT-PAGE_SHIFT);
Dean Nelsoneca7994f2006-06-28 13:50:09 -0500101 if (!page) {
102 mutex_unlock(&uc_pool->add_chunk_mutex);
Dean Nelson929f9722006-06-23 02:03:21 -0700103 return -1;
Dean Nelsoneca7994f2006-06-28 13:50:09 -0500104 }
Dean Nelson929f9722006-06-23 02:03:21 -0700105
106 /* convert the memory pages from cached to uncached */
107
108 c_addr = (unsigned long)page_address(page);
109 uc_addr = c_addr - PAGE_OFFSET + __IA64_UNCACHED_OFFSET;
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700110
111 /*
112 * There's a small race here where it's possible for someone to
113 * access the page through /dev/mem halfway through the conversion
114 * to uncached - not sure it's really worth bothering about
115 */
116 for (i = 0; i < (IA64_GRANULE_SIZE / PAGE_SIZE); i++)
117 SetPageUncached(&page[i]);
118
Jan Beulich285fbd62007-12-19 12:30:30 -0800119 flush_tlb_kernel_range(uc_addr, uc_addr + IA64_GRANULE_SIZE);
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700120
121 status = ia64_pal_prefetch_visibility(PAL_VISIBILITY_PHYSICAL);
Dean Nelsoneca7994f2006-06-28 13:50:09 -0500122 if (status == PAL_VISIBILITY_OK_REMOTE_NEEDED) {
123 atomic_set(&uc_pool->status, 0);
Jens Axboe8691e5a2008-06-06 11:18:06 +0200124 status = smp_call_function(uncached_ipi_visibility, uc_pool, 1);
Dean Nelsoneca7994f2006-06-28 13:50:09 -0500125 if (status || atomic_read(&uc_pool->status))
Dean Nelson929f9722006-06-23 02:03:21 -0700126 goto failed;
Dean Nelsoneca7994f2006-06-28 13:50:09 -0500127 } else if (status != PAL_VISIBILITY_OK)
128 goto failed;
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700129
Dean Nelson929f9722006-06-23 02:03:21 -0700130 preempt_disable();
131
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700132 if (ia64_platform_is("sn2"))
Dean Nelson929f9722006-06-23 02:03:21 -0700133 sn_flush_all_caches(uc_addr, IA64_GRANULE_SIZE);
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700134 else
Dean Nelson929f9722006-06-23 02:03:21 -0700135 flush_icache_range(uc_addr, uc_addr + IA64_GRANULE_SIZE);
136
137 /* flush the just introduced uncached translation from the TLB */
138 local_flush_tlb_all();
139
140 preempt_enable();
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700141
Dean Nelsoneca7994f2006-06-28 13:50:09 -0500142 status = ia64_pal_mc_drain();
143 if (status != PAL_STATUS_SUCCESS)
144 goto failed;
145 atomic_set(&uc_pool->status, 0);
Jens Axboe8691e5a2008-06-06 11:18:06 +0200146 status = smp_call_function(uncached_ipi_mc_drain, uc_pool, 1);
Dean Nelsoneca7994f2006-06-28 13:50:09 -0500147 if (status || atomic_read(&uc_pool->status))
Dean Nelson929f9722006-06-23 02:03:21 -0700148 goto failed;
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700149
Dean Nelson929f9722006-06-23 02:03:21 -0700150 /*
151 * The chunk of memory pages has been converted to uncached so now we
152 * can add it to the pool.
153 */
Dean Nelsoneca7994f2006-06-28 13:50:09 -0500154 status = gen_pool_add(uc_pool->pool, uc_addr, IA64_GRANULE_SIZE, nid);
Dean Nelson929f9722006-06-23 02:03:21 -0700155 if (status)
156 goto failed;
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700157
Dean Nelsoneca7994f2006-06-28 13:50:09 -0500158 uc_pool->nchunks_added++;
159 mutex_unlock(&uc_pool->add_chunk_mutex);
Dean Nelson929f9722006-06-23 02:03:21 -0700160 return 0;
161
162 /* failed to convert or add the chunk so give it back to the kernel */
163failed:
164 for (i = 0; i < (IA64_GRANULE_SIZE / PAGE_SIZE); i++)
165 ClearPageUncached(&page[i]);
166
167 free_pages(c_addr, IA64_GRANULE_SHIFT-PAGE_SHIFT);
Dean Nelsoneca7994f2006-06-28 13:50:09 -0500168 mutex_unlock(&uc_pool->add_chunk_mutex);
Dean Nelson929f9722006-06-23 02:03:21 -0700169 return -1;
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700170}
171
172
173/*
174 * uncached_alloc_page
175 *
Dean Nelson929f9722006-06-23 02:03:21 -0700176 * @starting_nid: node id of node to start with, or -1
Dean Nelsone4a064d2008-04-25 15:22:19 -0500177 * @n_pages: number of contiguous pages to allocate
Dean Nelson929f9722006-06-23 02:03:21 -0700178 *
Dean Nelsone4a064d2008-04-25 15:22:19 -0500179 * Allocate the specified number of contiguous uncached pages on the
180 * the requested node. If not enough contiguous uncached pages are available
181 * on the requested node, roundrobin starting with the next higher node.
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700182 */
Dean Nelsone4a064d2008-04-25 15:22:19 -0500183unsigned long uncached_alloc_page(int starting_nid, int n_pages)
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700184{
Dean Nelson929f9722006-06-23 02:03:21 -0700185 unsigned long uc_addr;
Dean Nelsoneca7994f2006-06-28 13:50:09 -0500186 struct uncached_pool *uc_pool;
Dean Nelson929f9722006-06-23 02:03:21 -0700187 int nid;
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700188
Dean Nelson929f9722006-06-23 02:03:21 -0700189 if (unlikely(starting_nid >= MAX_NUMNODES))
190 return 0;
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700191
Dean Nelson929f9722006-06-23 02:03:21 -0700192 if (starting_nid < 0)
193 starting_nid = numa_node_id();
194 nid = starting_nid;
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700195
Dean Nelson929f9722006-06-23 02:03:21 -0700196 do {
Christoph Lameter2dca53a2007-10-16 01:25:33 -0700197 if (!node_state(nid, N_HIGH_MEMORY))
Dean Nelson929f9722006-06-23 02:03:21 -0700198 continue;
Dean Nelsoneca7994f2006-06-28 13:50:09 -0500199 uc_pool = &uncached_pools[nid];
200 if (uc_pool->pool == NULL)
Dean Nelson929f9722006-06-23 02:03:21 -0700201 continue;
202 do {
Dean Nelsone4a064d2008-04-25 15:22:19 -0500203 uc_addr = gen_pool_alloc(uc_pool->pool,
204 n_pages * PAGE_SIZE);
Dean Nelson929f9722006-06-23 02:03:21 -0700205 if (uc_addr != 0)
206 return uc_addr;
Dean Nelsoneca7994f2006-06-28 13:50:09 -0500207 } while (uncached_add_chunk(uc_pool, nid) == 0);
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700208
Dean Nelson929f9722006-06-23 02:03:21 -0700209 } while ((nid = (nid + 1) % MAX_NUMNODES) != starting_nid);
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700210
Dean Nelson929f9722006-06-23 02:03:21 -0700211 return 0;
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700212}
213EXPORT_SYMBOL(uncached_alloc_page);
214
215
216/*
217 * uncached_free_page
218 *
Dean Nelsone4a064d2008-04-25 15:22:19 -0500219 * @uc_addr: uncached address of first page to free
220 * @n_pages: number of contiguous pages to free
Dean Nelson929f9722006-06-23 02:03:21 -0700221 *
Dean Nelsone4a064d2008-04-25 15:22:19 -0500222 * Free the specified number of uncached pages.
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700223 */
Dean Nelsone4a064d2008-04-25 15:22:19 -0500224void uncached_free_page(unsigned long uc_addr, int n_pages)
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700225{
Dean Nelson929f9722006-06-23 02:03:21 -0700226 int nid = paddr_to_nid(uc_addr - __IA64_UNCACHED_OFFSET);
Dean Nelsoneca7994f2006-06-28 13:50:09 -0500227 struct gen_pool *pool = uncached_pools[nid].pool;
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700228
Dean Nelson929f9722006-06-23 02:03:21 -0700229 if (unlikely(pool == NULL))
230 return;
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700231
Dean Nelson929f9722006-06-23 02:03:21 -0700232 if ((uc_addr & (0XFUL << 60)) != __IA64_UNCACHED_OFFSET)
233 panic("uncached_free_page invalid address %lx\n", uc_addr);
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700234
Dean Nelsone4a064d2008-04-25 15:22:19 -0500235 gen_pool_free(pool, uc_addr, n_pages * PAGE_SIZE);
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700236}
237EXPORT_SYMBOL(uncached_free_page);
238
239
240/*
241 * uncached_build_memmap,
242 *
Dean Nelson929f9722006-06-23 02:03:21 -0700243 * @uc_start: uncached starting address of a chunk of uncached memory
244 * @uc_end: uncached ending address of a chunk of uncached memory
245 * @arg: ignored, (NULL argument passed in on call to efi_memmap_walk_uc())
246 *
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700247 * Called at boot time to build a map of pages that can be used for
248 * memory special operations.
249 */
Matthew Wilcoxe088a4a2009-05-22 13:49:49 -0700250static int __init uncached_build_memmap(u64 uc_start, u64 uc_end, void *arg)
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700251{
Dean Nelson929f9722006-06-23 02:03:21 -0700252 int nid = paddr_to_nid(uc_start - __IA64_UNCACHED_OFFSET);
Dean Nelsoneca7994f2006-06-28 13:50:09 -0500253 struct gen_pool *pool = uncached_pools[nid].pool;
Dean Nelson929f9722006-06-23 02:03:21 -0700254 size_t size = uc_end - uc_start;
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700255
John Hawkes386d1d52006-01-18 23:46:53 -0800256 touch_softlockup_watchdog();
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700257
Dean Nelson929f9722006-06-23 02:03:21 -0700258 if (pool != NULL) {
259 memset((char *)uc_start, 0, size);
260 (void) gen_pool_add(pool, uc_start, size, nid);
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700261 }
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700262 return 0;
263}
264
265
Dean Nelson929f9722006-06-23 02:03:21 -0700266static int __init uncached_init(void)
267{
268 int nid;
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700269
Christoph Lameter2dca53a2007-10-16 01:25:33 -0700270 for_each_node_state(nid, N_ONLINE) {
Dean Nelsoneca7994f2006-06-28 13:50:09 -0500271 uncached_pools[nid].pool = gen_pool_create(PAGE_SHIFT, nid);
272 mutex_init(&uncached_pools[nid].add_chunk_mutex);
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700273 }
274
Dean Nelson929f9722006-06-23 02:03:21 -0700275 efi_memmap_walk_uc(uncached_build_memmap, NULL);
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700276 return 0;
277}
278
279__initcall(uncached_init);