atari_stram.h 489 B

12345678910111213141516171819
  1. #ifndef _M68K_ATARI_STRAM_H
  2. #define _M68K_ATARI_STRAM_H
  3. /*
  4. * Functions for Atari ST-RAM management
  5. */
  6. /* public interface */
  7. void *atari_stram_alloc(unsigned long size, const char *owner);
  8. void atari_stram_free(void *);
  9. void *atari_stram_to_virt(unsigned long phys);
  10. unsigned long atari_stram_to_phys(void *);
  11. /* functions called internally by other parts of the kernel */
  12. void atari_stram_init(void);
  13. void atari_stram_reserve_pages(void *start_mem);
  14. #endif /*_M68K_ATARI_STRAM_H */