]> git.proxmox.com Git - mirror_ubuntu-kernels.git/blame - arch/m68k/atari/stram.c
Merge branches 'for-5.1/upstream-fixes', 'for-5.2/core', 'for-5.2/ish', 'for-5.2...
[mirror_ubuntu-kernels.git] / arch / m68k / atari / stram.c
CommitLineData
1da177e4 1/*
217bbd81 2 * Functions for ST-RAM allocations
1da177e4
LT
3 *
4 * Copyright 1994-97 Roman Hodek <Roman.Hodek@informatik.uni-erlangen.de>
5 *
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file COPYING in the main directory of this archive
8 * for more details.
9 */
10
1da177e4
LT
11#include <linux/types.h>
12#include <linux/kernel.h>
13#include <linux/mm.h>
14#include <linux/kdev_t.h>
15#include <linux/major.h>
16#include <linux/init.h>
1da177e4
LT
17#include <linux/slab.h>
18#include <linux/vmalloc.h>
19#include <linux/pagemap.h>
57c8a661 20#include <linux/memblock.h>
1da177e4
LT
21#include <linux/mount.h>
22#include <linux/blkdev.h>
a3b2004a 23#include <linux/module.h>
9aa59cac 24#include <linux/ioport.h>
1da177e4
LT
25
26#include <asm/setup.h>
27#include <asm/machdep.h>
28#include <asm/page.h>
29#include <asm/pgtable.h>
30#include <asm/atarihw.h>
31#include <asm/atari_stram.h>
32#include <asm/io.h>
1da177e4 33
1da177e4 34
f9c98d02 35/*
217bbd81
MS
36 * The ST-RAM allocator allocates memory from a pool of reserved ST-RAM of
37 * configurable size, set aside on ST-RAM init.
38 * As long as this pool is not exhausted, allocation of real ST-RAM can be
39 * guaranteed.
1da177e4
LT
40 */
41
1da177e4
LT
42/* set if kernel is in ST-RAM */
43static int kernel_in_stram;
44
217bbd81
MS
45static struct resource stram_pool = {
46 .name = "ST-RAM Pool"
47};
1da177e4 48
217bbd81 49static unsigned long pool_size = 1024*1024;
1da177e4 50
fded332b 51static unsigned long stram_virt_offset;
1da177e4 52
217bbd81
MS
53static int __init atari_stram_setup(char *arg)
54{
55 if (!MACH_IS_ATARI)
56 return 0;
1da177e4 57
217bbd81
MS
58 pool_size = memparse(arg, NULL);
59 return 0;
60}
1da177e4 61
217bbd81 62early_param("stram_pool", atari_stram_setup);
1da177e4 63
1da177e4
LT
64
65/*
66 * This init function is called very early by atari/config.c
67 * It initializes some internal variables needed for stram_alloc()
68 */
69void __init atari_stram_init(void)
70{
71 int i;
72
217bbd81
MS
73 /*
74 * determine whether kernel code resides in ST-RAM
75 * (then ST-RAM is the first memory block at virtual 0x0)
76 */
fded332b 77 kernel_in_stram = (m68k_memory[0].addr == 0);
1da177e4 78
217bbd81 79 for (i = 0; i < m68k_num_memory; ++i) {
1da177e4 80 if (m68k_memory[i].addr == 0) {
1da177e4
LT
81 return;
82 }
83 }
217bbd81 84
1da177e4 85 /* Should never come here! (There is always ST-Ram!) */
217bbd81 86 panic("atari_stram_init: no ST-RAM found!");
1da177e4
LT
87}
88
89
90/*
91 * This function is called from setup_arch() to reserve the pages needed for
fded332b 92 * ST-RAM management, if the kernel resides in ST-RAM.
1da177e4
LT
93 */
94void __init atari_stram_reserve_pages(void *start_mem)
95{
fded332b
MS
96 if (kernel_in_stram) {
97 pr_debug("atari_stram pool: kernel in ST-RAM, using alloc_bootmem!\n");
e8625dce
MR
98 stram_pool.start = (resource_size_t)memblock_alloc_low(pool_size,
99 PAGE_SIZE);
8a7f97b9
MR
100 if (!stram_pool.start)
101 panic("%s: Failed to allocate %lu bytes align=%lx\n",
102 __func__, pool_size, PAGE_SIZE);
103
fded332b
MS
104 stram_pool.end = stram_pool.start + pool_size - 1;
105 request_resource(&iomem_resource, &stram_pool);
106 stram_virt_offset = 0;
107 pr_debug("atari_stram pool: size = %lu bytes, resource = %pR\n",
108 pool_size, &stram_pool);
109 pr_debug("atari_stram pool: stram_virt_offset = %lx\n",
110 stram_virt_offset);
111 }
112}
1da177e4 113
1da177e4 114
fded332b
MS
115/*
116 * This function is called as arch initcall to reserve the pages needed for
117 * ST-RAM management, if the kernel does not reside in ST-RAM.
118 */
119int __init atari_stram_map_pages(void)
120{
121 if (!kernel_in_stram) {
122 /*
123 * Skip page 0, as the fhe first 2 KiB are supervisor-only!
124 */
125 pr_debug("atari_stram pool: kernel not in ST-RAM, using ioremap!\n");
126 stram_pool.start = PAGE_SIZE;
127 stram_pool.end = stram_pool.start + pool_size - 1;
128 request_resource(&iomem_resource, &stram_pool);
129 stram_virt_offset = (unsigned long) ioremap(stram_pool.start,
130 resource_size(&stram_pool)) - stram_pool.start;
131 pr_debug("atari_stram pool: size = %lu bytes, resource = %pR\n",
132 pool_size, &stram_pool);
133 pr_debug("atari_stram pool: stram_virt_offset = %lx\n",
134 stram_virt_offset);
135 }
136 return 0;
137}
138arch_initcall(atari_stram_map_pages);
139
140
141void *atari_stram_to_virt(unsigned long phys)
142{
143 return (void *)(phys + stram_virt_offset);
144}
145EXPORT_SYMBOL(atari_stram_to_virt);
146
147
148unsigned long atari_stram_to_phys(void *virt)
149{
150 return (unsigned long)(virt - stram_virt_offset);
1da177e4 151}
fded332b 152EXPORT_SYMBOL(atari_stram_to_phys);
1da177e4
LT
153
154
217bbd81 155void *atari_stram_alloc(unsigned long size, const char *owner)
1da177e4 156{
217bbd81
MS
157 struct resource *res;
158 int error;
159
160 pr_debug("atari_stram_alloc: allocate %lu bytes\n", size);
161
162 /* round up */
163 size = PAGE_ALIGN(size);
164
165 res = kzalloc(sizeof(struct resource), GFP_KERNEL);
166 if (!res)
167 return NULL;
168
169 res->name = owner;
170 error = allocate_resource(&stram_pool, res, size, 0, UINT_MAX,
171 PAGE_SIZE, NULL, NULL);
172 if (error < 0) {
173 pr_err("atari_stram_alloc: allocate_resource() failed %d!\n",
174 error);
175 kfree(res);
176 return NULL;
1da177e4
LT
177 }
178
217bbd81 179 pr_debug("atari_stram_alloc: returning %pR\n", res);
fded332b 180 return atari_stram_to_virt(res->start);
1da177e4 181}
a3b2004a 182EXPORT_SYMBOL(atari_stram_alloc);
1da177e4 183
1da177e4 184
217bbd81 185void atari_stram_free(void *addr)
1da177e4 186{
fded332b 187 unsigned long start = atari_stram_to_phys(addr);
217bbd81
MS
188 struct resource *res;
189 unsigned long size;
1da177e4 190
217bbd81
MS
191 res = lookup_resource(&stram_pool, start);
192 if (!res) {
193 pr_err("atari_stram_free: trying to free nonexistent region "
194 "at %p\n", addr);
1da177e4
LT
195 return;
196 }
f9c98d02 197
217bbd81
MS
198 size = resource_size(res);
199 pr_debug("atari_stram_free: free %lu bytes at %p\n", size, addr);
200 release_resource(res);
201 kfree(res);
1da177e4 202}
a3b2004a 203EXPORT_SYMBOL(atari_stram_free);