| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | *  linux/arch/arm/kernel/dma-ebsa285.c | 
|  | 3 | * | 
|  | 4 | *  Copyright (C) 1998 Phil Blundell | 
|  | 5 | * | 
|  | 6 | * DMA functions specific to EBSA-285/CATS architectures | 
|  | 7 | * | 
|  | 8 | *  Changelog: | 
|  | 9 | *   09-Nov-1998 RMK	Split out ISA DMA functions to dma-isa.c | 
|  | 10 | *   17-Mar-1999 RMK	Allow any EBSA285-like architecture to have | 
|  | 11 | *			ISA DMA controllers. | 
|  | 12 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/init.h> | 
| Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 14 | #include <linux/io.h> | 
| Russell King | 70d13e0 | 2008-12-06 08:25:16 +0000 | [diff] [blame] | 15 | #include <linux/spinlock.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 |  | 
|  | 17 | #include <asm/dma.h> | 
| Russell King | 78ff18a | 2006-01-03 17:39:34 +0000 | [diff] [blame] | 18 | #include <asm/scatterlist.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 |  | 
|  | 20 | #include <asm/mach/dma.h> | 
|  | 21 | #include <asm/hardware/dec21285.h> | 
|  | 22 |  | 
|  | 23 | #if 0 | 
| Russell King | 1df8130 | 2008-12-08 15:58:50 +0000 | [diff] [blame] | 24 | static int fb_dma_request(unsigned int chan, dma_t *dma) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | { | 
|  | 26 | return -EINVAL; | 
|  | 27 | } | 
|  | 28 |  | 
| Russell King | 1df8130 | 2008-12-08 15:58:50 +0000 | [diff] [blame] | 29 | static void fb_dma_enable(unsigned int chan, dma_t *dma) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | { | 
|  | 31 | } | 
|  | 32 |  | 
| Russell King | 1df8130 | 2008-12-08 15:58:50 +0000 | [diff] [blame] | 33 | static void fb_dma_disable(unsigned int chan, dma_t *dma) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | { | 
|  | 35 | } | 
|  | 36 |  | 
|  | 37 | static struct dma_ops fb_dma_ops = { | 
|  | 38 | .type		= "fb", | 
|  | 39 | .request	= fb_dma_request, | 
|  | 40 | .enable		= fb_dma_enable, | 
|  | 41 | .disable	= fb_dma_disable, | 
|  | 42 | }; | 
|  | 43 | #endif | 
|  | 44 |  | 
| Russell King | 2f757f2 | 2008-12-08 16:33:30 +0000 | [diff] [blame] | 45 | static int __init fb_dma_init(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | { | 
|  | 47 | #if 0 | 
|  | 48 | dma[_DC21285_DMA(0)].d_ops = &fb_dma_ops; | 
|  | 49 | dma[_DC21285_DMA(1)].d_ops = &fb_dma_ops; | 
|  | 50 | #endif | 
|  | 51 | #ifdef CONFIG_ISA_DMA | 
|  | 52 | if (footbridge_cfn_mode()) | 
| Russell King | 2f757f2 | 2008-12-08 16:33:30 +0000 | [diff] [blame] | 53 | isa_init_dma(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | #endif | 
| Russell King | 2f757f2 | 2008-12-08 16:33:30 +0000 | [diff] [blame] | 55 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | } | 
| Russell King | 2f757f2 | 2008-12-08 16:33:30 +0000 | [diff] [blame] | 57 | core_initcall(fb_dma_init); |