blob: f79edcdadf39b5207d5b3150e9dcb0d950f7f73f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/h8300/mm/kmap.c
3 *
4 * Based on
5 * linux/arch/m68knommu/mm/kmap.c
6 *
7 * Copyright (C) 2000 Lineo, <davidm@snapgear.com>
8 * Copyright (C) 2000-2002 David McCullough <davidm@snapgear.com>
9 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/mm.h>
12#include <linux/kernel.h>
13#include <linux/string.h>
14#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/vmalloc.h>
16
17#include <asm/setup.h>
18#include <asm/segment.h>
19#include <asm/page.h>
20#include <asm/pgalloc.h>
21#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23#undef DEBUG
24
Yoshinori Satoc728d6042007-05-06 14:50:35 -070025#define VIRT_OFFSET (0x01000000)
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027/*
28 * Map some physical address range into the kernel address space.
29 */
30void *__ioremap(unsigned long physaddr, unsigned long size, int cacheflag)
31{
Yoshinori Satoc728d6042007-05-06 14:50:35 -070032 return (void *)(physaddr + VIRT_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -070033}
34
35/*
36 * Unmap a ioremap()ed region again.
37 */
38void iounmap(void *addr)
39{
40}
41
42/*
43 * __iounmap unmaps nearly everything, so be careful
44 * it doesn't free currently pointer/page tables anymore but it
45 * wans't used anyway and might be added later.
46 */
47void __iounmap(void *addr, unsigned long size)
48{
49}
50
51/*
52 * Set new cache mode for some kernel address space.
53 * The caller must push data for that range itself, if such data may already
54 * be in the cache.
55 */
56void kernel_set_cachemode(void *addr, unsigned long size, int cmode)
57{
58}