platform-imx-dma.c 929 字节
Newer Older
1 2 3 4 5 6 7 8
/*
 * Copyright (C) 2010 Pengutronix
 * Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de>
 *
 * This program is free software; you can redistribute it and/or modify it under
 * the terms of the GNU General Public License version 2 as published by the
 * Free Software Foundation.
 */
9
#include "devices-common.h"
10

11 12 13 14 15
struct platform_device __init __maybe_unused *imx_add_imx_dma(void)
{
	return platform_device_register_resndata(&mxc_ahb_bus,
			"imx-dma", -1, NULL, 0, NULL, 0);
}
16

17
struct platform_device __init __maybe_unused *imx_add_imx_sdma(char *name,
18
	resource_size_t iobase, int irq, struct sdma_platform_data *pdata)
19 20 21
{
	struct resource res[] = {
		{
22 23
			.start = iobase,
			.end = iobase + SZ_16K - 1,
24 25
			.flags = IORESOURCE_MEM,
		}, {
26 27
			.start = irq,
			.end = irq,
28 29 30 31
			.flags = IORESOURCE_IRQ,
		},
	};

32
	return platform_device_register_resndata(&mxc_ahb_bus, name,
33
			-1, res, ARRAY_SIZE(res), pdata, sizeof(*pdata));
34
}