Pierre Ossman | 795312e7 | 2005-09-03 15:56:54 -0700 | [diff] [blame] | 1 | /* |
Dave Jones | 835c34a | 2007-10-12 21:10:53 -0400 | [diff] [blame] | 2 | * 8237A DMA controller suspend functions. |
Pierre Ossman | 795312e7 | 2005-09-03 15:56:54 -0700 | [diff] [blame] | 3 | * |
| 4 | * Written by Pierre Ossman, 2005. |
Pierre Ossman | 643f720 | 2006-09-30 23:27:52 -0700 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or (at |
| 9 | * your option) any later version. |
Pierre Ossman | 795312e7 | 2005-09-03 15:56:54 -0700 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #include <linux/init.h> |
Rafael J. Wysocki | f3c6ea1 | 2011-03-23 22:15:54 +0100 | [diff] [blame] | 13 | #include <linux/syscore_ops.h> |
Pierre Ossman | 795312e7 | 2005-09-03 15:56:54 -0700 | [diff] [blame] | 14 | |
| 15 | #include <asm/dma.h> |
| 16 | |
| 17 | /* |
| 18 | * This module just handles suspend/resume issues with the |
| 19 | * 8237A DMA controller (used for ISA and LPC). |
| 20 | * Allocation is handled in kernel/dma.c and normal usage is |
| 21 | * in asm/dma.h. |
| 22 | */ |
| 23 | |
Rafael J. Wysocki | f3c6ea1 | 2011-03-23 22:15:54 +0100 | [diff] [blame] | 24 | static void i8237A_resume(void) |
Pierre Ossman | 795312e7 | 2005-09-03 15:56:54 -0700 | [diff] [blame] | 25 | { |
| 26 | unsigned long flags; |
| 27 | int i; |
| 28 | |
| 29 | flags = claim_dma_lock(); |
| 30 | |
Clemens Ladisch | b52af40 | 2009-02-10 09:21:07 +0100 | [diff] [blame] | 31 | dma_outb(0, DMA1_RESET_REG); |
| 32 | dma_outb(0, DMA2_RESET_REG); |
Pierre Ossman | 795312e7 | 2005-09-03 15:56:54 -0700 | [diff] [blame] | 33 | |
Clemens Ladisch | b52af40 | 2009-02-10 09:21:07 +0100 | [diff] [blame] | 34 | for (i = 0; i < 8; i++) { |
Pierre Ossman | 795312e7 | 2005-09-03 15:56:54 -0700 | [diff] [blame] | 35 | set_dma_addr(i, 0x000000); |
| 36 | /* DMA count is a bit weird so this is not 0 */ |
| 37 | set_dma_count(i, 1); |
| 38 | } |
| 39 | |
| 40 | /* Enable cascade DMA or channel 0-3 won't work */ |
| 41 | enable_dma(4); |
| 42 | |
| 43 | release_dma_lock(flags); |
Pierre Ossman | 795312e7 | 2005-09-03 15:56:54 -0700 | [diff] [blame] | 44 | } |
| 45 | |
Rafael J. Wysocki | f3c6ea1 | 2011-03-23 22:15:54 +0100 | [diff] [blame] | 46 | static struct syscore_ops i8237_syscore_ops = { |
Clemens Ladisch | b52af40 | 2009-02-10 09:21:07 +0100 | [diff] [blame] | 47 | .resume = i8237A_resume, |
Pierre Ossman | 795312e7 | 2005-09-03 15:56:54 -0700 | [diff] [blame] | 48 | }; |
| 49 | |
Rafael J. Wysocki | f3c6ea1 | 2011-03-23 22:15:54 +0100 | [diff] [blame] | 50 | static int __init i8237A_init_ops(void) |
Pierre Ossman | 795312e7 | 2005-09-03 15:56:54 -0700 | [diff] [blame] | 51 | { |
Rafael J. Wysocki | f3c6ea1 | 2011-03-23 22:15:54 +0100 | [diff] [blame] | 52 | register_syscore_ops(&i8237_syscore_ops); |
| 53 | return 0; |
Pierre Ossman | 795312e7 | 2005-09-03 15:56:54 -0700 | [diff] [blame] | 54 | } |
Rafael J. Wysocki | f3c6ea1 | 2011-03-23 22:15:54 +0100 | [diff] [blame] | 55 | device_initcall(i8237A_init_ops); |