blob: 5f8cb5a234d934fdd1f0377dbb62cd8a21475b09 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Michael Schmitz217bbd82010-11-01 19:54:00 +01002 * Functions for ST-RAM allocations
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/slab.h>
18#include <linux/vmalloc.h>
19#include <linux/pagemap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/bootmem.h>
21#include <linux/mount.h>
22#include <linux/blkdev.h>
Adrian Bunka3b20042008-02-04 22:30:26 -080023#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#include <asm/setup.h>
26#include <asm/machdep.h>
27#include <asm/page.h>
28#include <asm/pgtable.h>
29#include <asm/atarihw.h>
30#include <asm/atari_stram.h>
31#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Hugh Dickinsf9c98d02005-10-29 18:16:10 -070034/*
Michael Schmitz217bbd82010-11-01 19:54:00 +010035 * The ST-RAM allocator allocates memory from a pool of reserved ST-RAM of
36 * configurable size, set aside on ST-RAM init.
37 * As long as this pool is not exhausted, allocation of real ST-RAM can be
38 * guaranteed.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 */
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041/* set if kernel is in ST-RAM */
42static int kernel_in_stram;
43
Michael Schmitz217bbd82010-11-01 19:54:00 +010044static struct resource stram_pool = {
45 .name = "ST-RAM Pool"
46};
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Michael Schmitz217bbd82010-11-01 19:54:00 +010048static unsigned long pool_size = 1024*1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Michael Schmitzfded3322014-03-31 21:06:05 +130050static unsigned long stram_virt_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Michael Schmitz217bbd82010-11-01 19:54:00 +010052static int __init atari_stram_setup(char *arg)
53{
54 if (!MACH_IS_ATARI)
55 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Michael Schmitz217bbd82010-11-01 19:54:00 +010057 pool_size = memparse(arg, NULL);
58 return 0;
59}
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Michael Schmitz217bbd82010-11-01 19:54:00 +010061early_param("stram_pool", atari_stram_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64/*
65 * This init function is called very early by atari/config.c
66 * It initializes some internal variables needed for stram_alloc()
67 */
68void __init atari_stram_init(void)
69{
70 int i;
71
Michael Schmitz217bbd82010-11-01 19:54:00 +010072 /*
73 * determine whether kernel code resides in ST-RAM
74 * (then ST-RAM is the first memory block at virtual 0x0)
75 */
Michael Schmitzfded3322014-03-31 21:06:05 +130076 kernel_in_stram = (m68k_memory[0].addr == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Michael Schmitz217bbd82010-11-01 19:54:00 +010078 for (i = 0; i < m68k_num_memory; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 if (m68k_memory[i].addr == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 return;
81 }
82 }
Michael Schmitz217bbd82010-11-01 19:54:00 +010083
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 /* Should never come here! (There is always ST-Ram!) */
Michael Schmitz217bbd82010-11-01 19:54:00 +010085 panic("atari_stram_init: no ST-RAM found!");
Linus Torvalds1da177e2005-04-16 15:20:36 -070086}
87
88
89/*
90 * This function is called from setup_arch() to reserve the pages needed for
Michael Schmitzfded3322014-03-31 21:06:05 +130091 * ST-RAM management, if the kernel resides in ST-RAM.
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 */
93void __init atari_stram_reserve_pages(void *start_mem)
94{
Michael Schmitzfded3322014-03-31 21:06:05 +130095 if (kernel_in_stram) {
96 pr_debug("atari_stram pool: kernel in ST-RAM, using alloc_bootmem!\n");
97 stram_pool.start = (resource_size_t)alloc_bootmem_low_pages(pool_size);
98 stram_pool.end = stram_pool.start + pool_size - 1;
99 request_resource(&iomem_resource, &stram_pool);
100 stram_virt_offset = 0;
101 pr_debug("atari_stram pool: size = %lu bytes, resource = %pR\n",
102 pool_size, &stram_pool);
103 pr_debug("atari_stram pool: stram_virt_offset = %lx\n",
104 stram_virt_offset);
105 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
108
Michael Schmitzfded3322014-03-31 21:06:05 +1300109/*
110 * This function is called as arch initcall to reserve the pages needed for
111 * ST-RAM management, if the kernel does not reside in ST-RAM.
112 */
113int __init atari_stram_map_pages(void)
114{
115 if (!kernel_in_stram) {
116 /*
117 * Skip page 0, as the fhe first 2 KiB are supervisor-only!
118 */
119 pr_debug("atari_stram pool: kernel not in ST-RAM, using ioremap!\n");
120 stram_pool.start = PAGE_SIZE;
121 stram_pool.end = stram_pool.start + pool_size - 1;
122 request_resource(&iomem_resource, &stram_pool);
123 stram_virt_offset = (unsigned long) ioremap(stram_pool.start,
124 resource_size(&stram_pool)) - stram_pool.start;
125 pr_debug("atari_stram pool: size = %lu bytes, resource = %pR\n",
126 pool_size, &stram_pool);
127 pr_debug("atari_stram pool: stram_virt_offset = %lx\n",
128 stram_virt_offset);
129 }
130 return 0;
131}
132arch_initcall(atari_stram_map_pages);
133
134
135void *atari_stram_to_virt(unsigned long phys)
136{
137 return (void *)(phys + stram_virt_offset);
138}
139EXPORT_SYMBOL(atari_stram_to_virt);
140
141
142unsigned long atari_stram_to_phys(void *virt)
143{
144 return (unsigned long)(virt - stram_virt_offset);
145}
146EXPORT_SYMBOL(atari_stram_to_phys);
147
148
Michael Schmitz217bbd82010-11-01 19:54:00 +0100149void *atari_stram_alloc(unsigned long size, const char *owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
Michael Schmitz217bbd82010-11-01 19:54:00 +0100151 struct resource *res;
152 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Michael Schmitz217bbd82010-11-01 19:54:00 +0100154 pr_debug("atari_stram_alloc: allocate %lu bytes\n", size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Michael Schmitz217bbd82010-11-01 19:54:00 +0100156 /* round up */
157 size = PAGE_ALIGN(size);
158
159 res = kzalloc(sizeof(struct resource), GFP_KERNEL);
160 if (!res)
161 return NULL;
162
163 res->name = owner;
164 error = allocate_resource(&stram_pool, res, size, 0, UINT_MAX,
165 PAGE_SIZE, NULL, NULL);
166 if (error < 0) {
167 pr_err("atari_stram_alloc: allocate_resource() failed %d!\n",
168 error);
169 kfree(res);
170 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 }
172
Michael Schmitz217bbd82010-11-01 19:54:00 +0100173 pr_debug("atari_stram_alloc: returning %pR\n", res);
Michael Schmitzfded3322014-03-31 21:06:05 +1300174 return atari_stram_to_virt(res->start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
Adrian Bunka3b20042008-02-04 22:30:26 -0800176EXPORT_SYMBOL(atari_stram_alloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Michael Schmitz217bbd82010-11-01 19:54:00 +0100179void atari_stram_free(void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
Michael Schmitzfded3322014-03-31 21:06:05 +1300181 unsigned long start = atari_stram_to_phys(addr);
Michael Schmitz217bbd82010-11-01 19:54:00 +0100182 struct resource *res;
183 unsigned long size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Michael Schmitz217bbd82010-11-01 19:54:00 +0100185 res = lookup_resource(&stram_pool, start);
186 if (!res) {
187 pr_err("atari_stram_free: trying to free nonexistent region "
188 "at %p\n", addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 return;
190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Michael Schmitz217bbd82010-11-01 19:54:00 +0100192 size = resource_size(res);
193 pr_debug("atari_stram_free: free %lu bytes at %p\n", size, addr);
194 release_resource(res);
195 kfree(res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
Adrian Bunka3b20042008-02-04 22:30:26 -0800197EXPORT_SYMBOL(atari_stram_free);