memory.c 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * linux/arch/h8300/mm/memory.c
  3. *
  4. * Copyright (C) 2002 Yoshinori Sato <ysato@users.sourceforge.jp>,
  5. *
  6. * Based on:
  7. *
  8. * linux/arch/m68knommu/mm/memory.c
  9. *
  10. * Copyright (C) 1998 Kenneth Albanowski <kjahds@kjahds.com>,
  11. * Copyright (C) 1999-2002, Greg Ungerer (gerg@snapgear.com)
  12. *
  13. * Based on:
  14. *
  15. * linux/arch/m68k/mm/memory.c
  16. *
  17. * Copyright (C) 1995 Hamish Macdonald
  18. */
  19. #include <linux/config.h>
  20. #include <linux/mm.h>
  21. #include <linux/kernel.h>
  22. #include <linux/string.h>
  23. #include <linux/types.h>
  24. #include <linux/slab.h>
  25. #include <asm/setup.h>
  26. #include <asm/segment.h>
  27. #include <asm/page.h>
  28. #include <asm/pgtable.h>
  29. #include <asm/system.h>
  30. #include <asm/traps.h>
  31. #include <asm/io.h>
  32. void cache_clear (unsigned long paddr, int len)
  33. {
  34. }
  35. void cache_push (unsigned long paddr, int len)
  36. {
  37. }
  38. void cache_push_v (unsigned long vaddr, int len)
  39. {
  40. }
  41. /* Map some physical address range into the kernel address space. The
  42. * code is copied and adapted from map_chunk().
  43. */
  44. unsigned long kernel_map(unsigned long paddr, unsigned long size,
  45. int nocacheflag, unsigned long *memavailp )
  46. {
  47. return paddr;
  48. }
  49. #ifdef MAGIC_ROM_PTR
  50. int is_in_rom(unsigned long addr)
  51. {
  52. /* Anything not in operational RAM is returned as in rom! */
  53. if (addr < _ramstart || addr >= _ramend)
  54. return 1;
  55. else
  56. return 0;
  57. }
  58. #endif