2 * arch/arm/plat-spear/pl080.c
4 * DMAC pl080 definitions for SPEAr platform
6 * Copyright (C) 2012 ST Microelectronics
7 * Viresh Kumar <vireshk@kernel.org>
9 * This file is licensed under the terms of the GNU General Public
10 * License version 2. This program is licensed "as is" without any
11 * warranty of any kind, whether express or implied.
14 #include <linux/amba/pl08x.h>
15 #include <linux/amba/bus.h>
16 #include <linux/bug.h>
17 #include <linux/err.h>
19 #include <linux/spinlock_types.h>
20 #include <mach/spear.h>
21 #include <mach/misc_regs.h>
23 static spinlock_t lock = __SPIN_LOCK_UNLOCKED(x);
28 } signals[16] = {{0, 0}, };
30 int pl080_get_signal(const struct pl08x_channel_data *cd)
32 unsigned int signal = cd->min_signal, val;
35 spin_lock_irqsave(&lock, flags);
37 /* Return if signal is already acquired by somebody else */
38 if (signals[signal].busy &&
39 (signals[signal].val != cd->muxval)) {
40 spin_unlock_irqrestore(&lock, flags);
44 /* If acquiring for the first time, configure it */
45 if (!signals[signal].busy) {
46 val = readl(DMA_CHN_CFG);
49 * Each request line has two bits in DMA_CHN_CFG register. To
50 * goto the bits of current request line, do left shift of
51 * value by 2 * signal number.
53 val &= ~(0x3 << (signal * 2));
54 val |= cd->muxval << (signal * 2);
55 writel(val, DMA_CHN_CFG);
58 signals[signal].busy++;
59 signals[signal].val = cd->muxval;
60 spin_unlock_irqrestore(&lock, flags);
65 void pl080_put_signal(const struct pl08x_channel_data *cd, int signal)
69 spin_lock_irqsave(&lock, flags);
71 /* if signal is not used */
72 if (!signals[signal].busy)
75 signals[signal].busy--;
77 spin_unlock_irqrestore(&lock, flags);