diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2013-05-08 04:55:48 -0400 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2013-05-14 00:53:57 -0400 |
commit | ee8209fd026b074bb8eb75bece516a338a281b1b (patch) | |
tree | 2ab58c3517488dd4faeafaafb598ec891cce81f8 /include/linux | |
parent | f722406faae2d073cc1d01063d1123c35425939e (diff) |
dma: acpi-dma: parse CSRT to extract additional resources
Since we have CSRT only to get additional DMA controller resources, let's get
rid of drivers/acpi/csrt.c and move its logic inside ACPI DMA helpers code.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/acpi_dma.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/acpi_dma.h b/include/linux/acpi_dma.h index d09deabc7bf6..fb0298082916 100644 --- a/include/linux/acpi_dma.h +++ b/include/linux/acpi_dma.h | |||
@@ -37,6 +37,8 @@ struct acpi_dma_spec { | |||
37 | * @dev: struct device of this controller | 37 | * @dev: struct device of this controller |
38 | * @acpi_dma_xlate: callback function to find a suitable channel | 38 | * @acpi_dma_xlate: callback function to find a suitable channel |
39 | * @data: private data used by a callback function | 39 | * @data: private data used by a callback function |
40 | * @base_request_line: first supported request line (CSRT) | ||
41 | * @end_request_line: last supported request line (CSRT) | ||
40 | */ | 42 | */ |
41 | struct acpi_dma { | 43 | struct acpi_dma { |
42 | struct list_head dma_controllers; | 44 | struct list_head dma_controllers; |
@@ -44,6 +46,8 @@ struct acpi_dma { | |||
44 | struct dma_chan *(*acpi_dma_xlate) | 46 | struct dma_chan *(*acpi_dma_xlate) |
45 | (struct acpi_dma_spec *, struct acpi_dma *); | 47 | (struct acpi_dma_spec *, struct acpi_dma *); |
46 | void *data; | 48 | void *data; |
49 | unsigned short base_request_line; | ||
50 | unsigned short end_request_line; | ||
47 | }; | 51 | }; |
48 | 52 | ||
49 | /* Used with acpi_dma_simple_xlate() */ | 53 | /* Used with acpi_dma_simple_xlate() */ |