/*1* linux/arch/h8300/mm/memory.c2*3* Copyright (C) 2002 Yoshinori Sato <[email protected]>,4*5* Based on:6*7* linux/arch/m68knommu/mm/memory.c8*9* Copyright (C) 1998 Kenneth Albanowski <[email protected]>,10* Copyright (C) 1999-2002, Greg Ungerer ([email protected])11*12* Based on:13*14* linux/arch/m68k/mm/memory.c15*16* Copyright (C) 1995 Hamish Macdonald17*/1819#include <linux/mm.h>20#include <linux/kernel.h>21#include <linux/string.h>22#include <linux/types.h>2324#include <asm/setup.h>25#include <asm/segment.h>26#include <asm/page.h>27#include <asm/pgtable.h>28#include <asm/system.h>29#include <asm/traps.h>30#include <asm/io.h>3132void cache_clear (unsigned long paddr, int len)33{34}353637void cache_push (unsigned long paddr, int len)38{39}4041void cache_push_v (unsigned long vaddr, int len)42{43}4445/*46* Map some physical address range into the kernel address space.47*/4849unsigned long kernel_map(unsigned long paddr, unsigned long size,50int nocacheflag, unsigned long *memavailp )51{52return paddr;53}54555657