aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-mxs/devices/platform-mxs-saif.c
blob: f6e3a60b4201f1efc379a76c89e03e072cb81ac0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
 * Copyright 2011 Freescale Semiconductor, Inc. All Rights Reserved.
 *
 * 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.
 */
#include <linux/compiler.h>
#include <linux/err.h>
#include <linux/init.h>

#include <mach/mx23.h>
#include <mach/mx28.h>
#include <mach/devices-common.h>

#define mxs_saif_data_entry_single(soc, _id)				\
	{								\
		.id = _id,						\
		.iobase = soc ## _SAIF ## _id ## _BASE_ADDR,		\
		.irq = soc ## _INT_SAIF ## _id,				\
		.dma = soc ## _DMA_SAIF ## _id,				\
		.dmairq = soc ## _INT_SAIF ## _id ##_DMA,		\
	}

#define mxs_saif_data_entry(soc, _id)					\
	[_id] = mxs_saif_data_entry_single(soc, _id)

#ifdef CONFIG_SOC_IMX28
const struct mxs_saif_data mx28_saif_data[] __initconst = {
	mxs_saif_data_entry(MX28, 0),
	mxs_saif_data_entry(MX28, 1),
};
#endif

struct platform_device *__init mxs_add_saif(const struct mxs_saif_data *data,
				const struct mxs_saif_platform_data *pdata)
{
	struct resource res[] = {
		{
			.start = data->iobase,
			.end = data->iobase + SZ_4K - 1,
			.flags = IORESOURCE_MEM,
		}, {
			.start = data->irq,
			.end = data->irq,
			.flags = IORESOURCE_IRQ,
		}, {
			.start = data->dma,
			.end = data->dma,
			.flags = IORESOURCE_DMA,
		}, {
			.start = data->dmairq,
			.end = data->dmairq,
			.flags = IORESOURCE_IRQ,
		},

	};

	return mxs_add_platform_device("mxs-saif", data->id, res,
				ARRAY_SIZE(res), pdata, sizeof(*pdata));
}