Skip to content

Commit

Permalink
dw_dmac: add support for Lynxpoint DMA controllers
Browse files Browse the repository at this point in the history
Intel Lynxpoint PCH Low Power Subsystem has DMA controller to support general
purpose serial buses like SPI, I2C, and HSUART. This controller is enumerated
from ACPI namespace with ACPI ID INTL9C60.

Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
  • Loading branch information
Mika Westerberg authored and Vinod Koul committed Feb 12, 2013
1 parent 4702d52 commit cfdf5b6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions drivers/dma/dw_dmac.c
Original file line number Diff line number Diff line change
Expand Up @@ -1899,6 +1899,11 @@ static const struct of_device_id dw_dma_id_table[] = {
MODULE_DEVICE_TABLE(of, dw_dma_id_table);
#endif

static const struct platform_device_id dw_dma_ids[] = {
{ "INTL9C60", 0 },
{ }
};

static struct platform_driver dw_driver = {
.probe = dw_probe,
.remove = dw_remove,
Expand All @@ -1908,6 +1913,7 @@ static struct platform_driver dw_driver = {
.pm = &dw_dev_pm_ops,
.of_match_table = of_match_ptr(dw_dma_id_table),
},
.id_table = dw_dma_ids,
};

static int __init dw_init(void)
Expand Down

0 comments on commit cfdf5b6

Please sign in to comment.