aboutsummaryrefslogtreecommitdiff
path: root/arch/sh/mm/pg-dma.c
blob: bb23679369d67d7c6d44ac2a74adf9c37061674d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*
 * arch/sh/mm/pg-dma.c
 *
 * Fast clear_page()/copy_page() implementation using the SH DMAC
 *
 * Copyright (C) 2003  Paul Mundt
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 */
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <asm/semaphore.h>
#include <asm/mmu_context.h>
#include <asm/addrspace.h>
#include <asm/atomic.h>
#include <asm/page.h>
#include <asm/dma.h>
#include <asm/io.h>

/* Channel to use for page ops, must be dual-address mode capable. */
static int dma_channel = CONFIG_DMA_PAGE_OPS_CHANNEL;

static void copy_page_dma(void *to, void *from)
{
	/* 
	 * This doesn't seem to get triggered until further along in the
	 * boot process, at which point the DMAC is already initialized.
	 * Fix this in the same fashion as clear_page_dma() in the event
	 * that this crashes due to the DMAC not being initialized.
	 */

	flush_icache_range((unsigned long)from, PAGE_SIZE);
	dma_write_page(dma_channel, (unsigned long)from, (unsigned long)to);
	dma_wait_for_completion(dma_channel);
}

static void clear_page_dma(void *to)
{
	/*
	 * We get invoked quite early on, if the DMAC hasn't been initialized
	 * yet, fall back on the slow manual implementation.
	 */
	if (dma_info[dma_channel].chan != dma_channel) {
		clear_page_slow(to);
		return;
	}

	dma_write_page(dma_channel, (unsigned long)empty_zero_page,
				    (unsigned long)to);

	/*
	 * FIXME: Something is a bit racy here, if we poll the counter right
	 * away, we seem to lock. flushing the page from the dcache doesn't
	 * seem to make a difference one way or the other, though either a full
	 * icache or dcache flush does.
	 *
	 * The location of this is important as well, and must happen prior to
	 * the completion loop but after the transfer was initiated.
	 *
	 * Oddly enough, this doesn't appear to be an issue for copy_page()..
	 */
	flush_icache_range((unsigned long)to, PAGE_SIZE);

	dma_wait_for_completion(dma_channel);
}

static int __init pg_dma_init(void)
{
	int ret;
	
	ret = request_dma(dma_channel, "page ops");
	if (ret != 0)
		return ret;

	copy_page = copy_page_dma;
	clear_page = clear_page_dma;

	return ret;
}

static void __exit pg_dma_exit(void)
{
	free_dma(dma_channel);
}

module_init(pg_dma_init);
module_exit(pg_dma_exit);

MODULE_AUTHOR("Paul Mundt <lethal@linux-sh.org>");
MODULE_DESCRIPTION("Optimized page copy/clear routines using a dual-address mode capable DMAC channel");
MODULE_LICENSE("GPL");