2 ** linux/amiga/chipram.c
4 ** Modified 03-May-94 by Geert Uytterhoeven <geert@linux-m68k.org>
5 ** - 64-bit aligned allocations for full AGA compatibility
7 ** Rewritten 15/9/2000 by Geert to use resource management
10 #include <linux/config.h>
11 #include <linux/types.h>
12 #include <linux/kernel.h>
13 #include <linux/init.h>
14 #include <linux/ioport.h>
15 #include <linux/slab.h>
16 #include <linux/string.h>
18 #include <asm/amigahw.h>
20 unsigned long amiga_chip_size
;
22 static struct resource chipram_res
= {
23 .name
= "Chip RAM", .start
= CHIP_PHYSADDR
25 static unsigned long chipavail
;
28 void __init
amiga_chip_init(void)
30 if (!AMIGAHW_PRESENT(CHIP_RAM
))
33 #ifndef CONFIG_APUS_FAST_EXCEPT
35 * Remove the first 4 pages where PPC exception handlers will be located
37 amiga_chip_size
-= 0x4000;
39 chipram_res
.end
= amiga_chip_size
-1;
40 request_resource(&iomem_resource
, &chipram_res
);
42 chipavail
= amiga_chip_size
;
46 void *amiga_chip_alloc(unsigned long size
, const char *name
)
51 size
= PAGE_ALIGN(size
);
54 printk("amiga_chip_alloc: allocate %ld bytes\n", size
);
56 res
= kmalloc(sizeof(struct resource
), GFP_KERNEL
);
59 memset(res
, 0, sizeof(struct resource
));
62 if (allocate_resource(&chipram_res
, res
, size
, 0, UINT_MAX
, PAGE_SIZE
, NULL
, NULL
) < 0) {
68 printk("amiga_chip_alloc: returning %lx\n", res
->start
);
70 return (void *)ZTWO_VADDR(res
->start
);
76 * amiga_chip_alloc_res is meant only for drivers that need to allocate
77 * Chip RAM before kmalloc() is functional. As a consequence, those
78 * drivers must not free that Chip RAM afterwards.
81 void * __init
amiga_chip_alloc_res(unsigned long size
, struct resource
*res
)
86 size
= PAGE_ALIGN(size
);
87 /* dmesg into chipmem prefers memory at the safe end */
88 start
= CHIP_PHYSADDR
+ chipavail
- size
;
91 printk("amiga_chip_alloc_res: allocate %ld bytes\n", size
);
93 if (allocate_resource(&chipram_res
, res
, size
, start
, UINT_MAX
, PAGE_SIZE
, NULL
, NULL
) < 0) {
94 printk("amiga_chip_alloc_res: first alloc failed!\n");
95 if (allocate_resource(&chipram_res
, res
, size
, 0, UINT_MAX
, PAGE_SIZE
, NULL
, NULL
) < 0)
100 printk("amiga_chip_alloc_res: returning %lx\n", res
->start
);
102 return (void *)ZTWO_VADDR(res
->start
);
105 void amiga_chip_free(void *ptr
)
107 unsigned long start
= ZTWO_PADDR(ptr
);
108 struct resource
**p
, *res
;
111 for (p
= &chipram_res
.child
; (res
= *p
); p
= &res
->sibling
) {
112 if (res
->start
!= start
)
115 size
= res
->end
-start
;
117 printk("amiga_chip_free: free %ld bytes at %p\n", size
, ptr
);
123 printk("amiga_chip_free: trying to free nonexistent region at %p\n", ptr
);
127 unsigned long amiga_chip_avail(void)
130 printk("amiga_chip_avail : %ld bytes\n", chipavail
);