aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@woody.linux-foundation.org>2007-03-01 20:28:31 -0500
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-03-01 20:28:31 -0500
commit132a69c6cc3dfa7fa354a88128acee7e6ee7082b (patch)
treebe77ed97c9c94cbcc9931c58ce1a061e9dc26755
parentfb7d4045669b3ea0e92cf45963839a9808b7650c (diff)
parent74bd7d093b8e87f35eaf3b14459b96a0e20d1d10 (diff)
Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6
* master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6: [SPARC64]: Fix parport_pc build. [SPARC64]: Update defconfig.
-rw-r--r--arch/sparc64/defconfig5
-rw-r--r--include/asm-sparc64/dma.h4
-rw-r--r--include/asm-sparc64/parport.h22
3 files changed, 25 insertions, 6 deletions
diff --git a/arch/sparc64/defconfig b/arch/sparc64/defconfig
index 59eef403c60a..860b8b60526c 100644
--- a/arch/sparc64/defconfig
+++ b/arch/sparc64/defconfig
@@ -1,7 +1,7 @@
1# 1#
2# Automatically generated make config: don't edit 2# Automatically generated make config: don't edit
3# Linux kernel version: 2.6.21-rc1 3# Linux kernel version: 2.6.21-rc2
4# Mon Feb 26 10:45:21 2007 4# Wed Feb 28 09:50:51 2007
5# 5#
6CONFIG_SPARC=y 6CONFIG_SPARC=y
7CONFIG_SPARC64=y 7CONFIG_SPARC64=y
@@ -1219,6 +1219,7 @@ CONFIG_USB_HIDDEV=y
1219# CONFIG_USB_SISUSBVGA is not set 1219# CONFIG_USB_SISUSBVGA is not set
1220# CONFIG_USB_LD is not set 1220# CONFIG_USB_LD is not set
1221# CONFIG_USB_TRANCEVIBRATOR is not set 1221# CONFIG_USB_TRANCEVIBRATOR is not set
1222# CONFIG_USB_IOWARRIOR is not set
1222# CONFIG_USB_TEST is not set 1223# CONFIG_USB_TEST is not set
1223 1224
1224# 1225#
diff --git a/include/asm-sparc64/dma.h b/include/asm-sparc64/dma.h
index 93e5a062df88..1bf4f7a8fbe1 100644
--- a/include/asm-sparc64/dma.h
+++ b/include/asm-sparc64/dma.h
@@ -205,10 +205,6 @@ do { u32 tmp = sbus_readl((__regs) + DMA_CSR); \
205#define for_each_dvma(dma) \ 205#define for_each_dvma(dma) \
206 for((dma) = dma_chain; (dma); (dma) = (dma)->next) 206 for((dma) = dma_chain; (dma); (dma) = (dma)->next)
207 207
208extern int get_dma_list(char *);
209extern int request_dma(unsigned int, __const__ char *);
210extern void free_dma(unsigned int);
211
212/* From PCI */ 208/* From PCI */
213 209
214#ifdef CONFIG_PCI 210#ifdef CONFIG_PCI
diff --git a/include/asm-sparc64/parport.h b/include/asm-sparc64/parport.h
index d3895873e4c7..be9509c8f8c1 100644
--- a/include/asm-sparc64/parport.h
+++ b/include/asm-sparc64/parport.h
@@ -23,8 +23,30 @@ static struct sparc_ebus_info {
23 struct ebus_dma_info info; 23 struct ebus_dma_info info;
24 unsigned int addr; 24 unsigned int addr;
25 unsigned int count; 25 unsigned int count;
26 int lock;
26} sparc_ebus_dmas[PARPORT_PC_MAX_PORTS]; 27} sparc_ebus_dmas[PARPORT_PC_MAX_PORTS];
27 28
29static __inline__ int request_dma(unsigned int dmanr, const char *device_id)
30{
31 if (dmanr >= PARPORT_PC_MAX_PORTS)
32 return -EINVAL;
33 if (xchg(&sparc_ebus_dmas[dmanr].lock, 1) != 0)
34 return -EBUSY;
35 return 0;
36}
37
38static __inline__ void free_dma(unsigned int dmanr)
39{
40 if (dmanr >= PARPORT_PC_MAX_PORTS) {
41 printk(KERN_WARNING "Trying to free DMA%d\n", dmanr);
42 return;
43 }
44 if (xchg(&sparc_ebus_dmas[dmanr].lock, 0) == 0) {
45 printk(KERN_WARNING "Trying to free free DMA%d\n", dmanr);
46 return;
47 }
48}
49
28static __inline__ void enable_dma(unsigned int dmanr) 50static __inline__ void enable_dma(unsigned int dmanr)
29{ 51{
30 ebus_dma_enable(&sparc_ebus_dmas[dmanr].info, 1); 52 ebus_dma_enable(&sparc_ebus_dmas[dmanr].info, 1);