Merge tag 'pm+acpi-3.17-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael...
[deliverable/linux.git] / arch / arm / mach-imx / devices / platform-imx-dma.c
CommitLineData
8a8d2060
UKK
1/*
2 * Copyright (C) 2010 Pengutronix
3 * Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de>
4 *
5 * This program is free software; you can redistribute it and/or modify it under
6 * the terms of the GNU General Public License version 2 as published by the
7 * Free Software Foundation.
8 */
e0557c0d 9#include "devices-common.h"
8a8d2060 10
e51d0f0a 11struct platform_device __init __maybe_unused *imx_add_imx_dma(char *name,
73930eb3 12 resource_size_t iobase, int irq, int irq_err)
36223604 13{
73930eb3
SG
14 struct resource res[] = {
15 {
16 .start = iobase,
17 .end = iobase + SZ_4K - 1,
18 .flags = IORESOURCE_MEM,
19 }, {
20 .start = irq,
21 .end = irq,
22 .flags = IORESOURCE_IRQ,
23 }, {
24 .start = irq_err,
25 .end = irq_err,
26 .flags = IORESOURCE_IRQ,
27 },
28 };
29
36223604 30 return platform_device_register_resndata(&mxc_ahb_bus,
e51d0f0a 31 name, -1, res, ARRAY_SIZE(res), NULL, 0);
36223604 32}
931de392 33
62550cd7 34struct platform_device __init __maybe_unused *imx_add_imx_sdma(char *name,
36223604 35 resource_size_t iobase, int irq, struct sdma_platform_data *pdata)
8a8d2060
UKK
36{
37 struct resource res[] = {
38 {
36223604
SG
39 .start = iobase,
40 .end = iobase + SZ_16K - 1,
8a8d2060
UKK
41 .flags = IORESOURCE_MEM,
42 }, {
36223604
SG
43 .start = irq,
44 .end = irq,
8a8d2060
UKK
45 .flags = IORESOURCE_IRQ,
46 },
47 };
48
62550cd7 49 return platform_device_register_resndata(&mxc_ahb_bus, name,
36223604 50 -1, res, ARRAY_SIZE(res), pdata, sizeof(*pdata));
8a8d2060 51}
This page took 0.300417 seconds and 5 git commands to generate.