chipram.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2. **  linux/amiga/chipram.c
  3. **
  4. **      Modified 03-May-94 by Geert Uytterhoeven <geert@linux-m68k.org>
  5. **          - 64-bit aligned allocations for full AGA compatibility
  6. **
  7. ** Rewritten 15/9/2000 by Geert to use resource management
  8. */
  9. #include <linux/config.h>
  10. #include <linux/types.h>
  11. #include <linux/kernel.h>
  12. #include <linux/init.h>
  13. #include <linux/ioport.h>
  14. #include <linux/slab.h>
  15. #include <asm/amigahw.h>
  16. unsigned long amiga_chip_size;
  17. static struct resource chipram_res = { "Chip RAM", CHIP_PHYSADDR };
  18. static unsigned long chipavail;
  19. void __init amiga_chip_init(void)
  20. {
  21.     if (!AMIGAHW_PRESENT(CHIP_RAM))
  22. return;
  23. #ifndef CONFIG_APUS_FAST_EXCEPT
  24.     /*
  25.      *  Remove the first 4 pages where PPC exception handlers will be located
  26.      */
  27.     amiga_chip_size -= 0x4000;
  28. #endif
  29.     chipram_res.end = amiga_chip_size-1;
  30.     request_resource(&iomem_resource, &chipram_res);
  31.     chipavail = amiga_chip_size;
  32. }
  33.     
  34. void *amiga_chip_alloc(unsigned long size, const char *name)
  35. {
  36.     struct resource *res;
  37.     /* round up */
  38.     size = PAGE_ALIGN(size);
  39. #ifdef DEBUG
  40.     printk("amiga_chip_alloc: allocate %ld bytesn", size);
  41. #endif
  42.     res = kmalloc(sizeof(struct resource), GFP_KERNEL);
  43.     if (!res)
  44. return NULL;
  45.     memset(res, 0, sizeof(struct resource));
  46.     res->name = name;
  47.     if (allocate_resource(&chipram_res, res, size, 0, UINT_MAX, PAGE_SIZE, NULL, NULL) < 0) {
  48. kfree(res);
  49. return NULL;
  50.     }
  51.     chipavail -= size;
  52. #ifdef DEBUG
  53.     printk("amiga_chip_alloc: returning %lxn", res->start);
  54. #endif
  55.     return (void *)ZTWO_VADDR(res->start);
  56. }
  57.     /*
  58.      *  Warning:
  59.      *  amiga_chip_alloc_res is meant only for drivers that need to allocate
  60.      *  Chip RAM before kmalloc() is functional. As a consequence, those
  61.      *  drivers must not free that Chip RAM afterwards.
  62.      */
  63. void * __init amiga_chip_alloc_res(unsigned long size, struct resource *res)
  64. {
  65.     unsigned long start;
  66.     /* round up */
  67.     size = PAGE_ALIGN(size);
  68.     /* dmesg into chipmem prefers memory at the safe end */
  69.     start = CHIP_PHYSADDR + chipavail - size;
  70. #ifdef DEBUG
  71.     printk("amiga_chip_alloc_res: allocate %ld bytesn", size);
  72. #endif
  73.     if (allocate_resource(&chipram_res, res, size, start, UINT_MAX, PAGE_SIZE, NULL, NULL) < 0) {
  74. printk("amiga_chip_alloc_res: first alloc failed!n");
  75. if (allocate_resource(&chipram_res, res, size, 0, UINT_MAX, PAGE_SIZE, NULL, NULL) < 0)
  76.     return NULL;
  77.     }
  78.     chipavail -= size;
  79. #ifdef DEBUG
  80.     printk("amiga_chip_alloc_res: returning %lxn", res->start);
  81. #endif
  82.     return (void *)ZTWO_VADDR(res->start);
  83. }
  84. void amiga_chip_free(void *ptr)
  85. {
  86.     unsigned long start = ZTWO_PADDR(ptr);
  87.     struct resource **p, *res;
  88.     unsigned long size;
  89.     for (p = &chipram_res.child; (res = *p); p = &res->sibling) {
  90. if (res->start != start)
  91.     continue;
  92. *p = res->sibling;
  93. size = res->end-start;
  94. #ifdef DEBUG
  95. printk("amiga_chip_free: free %ld bytes at %pn", size, ptr);
  96. #endif
  97. chipavail += size;
  98. kfree(res);
  99. return;
  100.     }
  101.     printk("amiga_chip_free: trying to free nonexistent region at %pn", ptr);
  102. }
  103. unsigned long amiga_chip_avail(void)
  104. {
  105. #ifdef DEBUG
  106. printk("amiga_chip_avail : %ld bytesn", chipavail);
  107. #endif
  108. return chipavail;
  109. }