2 * Copyright (C) 2010 Pengutronix
3 * Sascha Hauer <s.hauer@pengutronix.de>
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.
9 #include <linux/dma-mapping.h>
10 #include <asm/sizes.h>
11 #include <mach/mx23.h>
12 #include <mach/mx28.h>
13 #include <mach/devices-common.h>
15 #define mxs_auart_data_entry_single(soc, _id, hwid) \
18 .iobase = soc ## _AUART ## hwid ## _BASE_ADDR, \
19 .irq = soc ## _INT_AUART ## hwid, \
22 #define mxs_auart_data_entry(soc, _id, hwid) \
23 [_id] = mxs_auart_data_entry_single(soc, _id, hwid)
25 #ifdef CONFIG_SOC_IMX23
26 const struct mxs_auart_data mx23_auart_data
[] __initconst
= {
27 #define mx23_auart_data_entry(_id, hwid) \
28 mxs_auart_data_entry(MX23, _id, hwid)
29 mx23_auart_data_entry(0, 1),
30 mx23_auart_data_entry(1, 2),
34 #ifdef CONFIG_SOC_IMX28
35 const struct mxs_auart_data mx28_auart_data
[] __initconst
= {
36 #define mx28_auart_data_entry(_id) \
37 mxs_auart_data_entry(MX28, _id, _id)
38 mx28_auart_data_entry(0),
39 mx28_auart_data_entry(1),
40 mx28_auart_data_entry(2),
41 mx28_auart_data_entry(3),
42 mx28_auart_data_entry(4),
46 struct platform_device
*__init
mxs_add_auart(
47 const struct mxs_auart_data
*data
)
49 struct resource res
[] = {
51 .start
= data
->iobase
,
52 .end
= data
->iobase
+ SZ_8K
- 1,
53 .flags
= IORESOURCE_MEM
,
57 .flags
= IORESOURCE_IRQ
,
61 return mxs_add_platform_device_dmamask("mxs-auart", data
->id
,
62 res
, ARRAY_SIZE(res
), NULL
, 0,