blob: 1c7f895a69d2328310b706c3e1845457ff902e7d [file] [log] [blame]
Arnaud Patard (Rtp)a45adf12011-07-26 16:54:25 +02001/*
2 * This program is free software; you can redistribute it and/or modify it under
3 * the terms of the GNU General Public License version 2 as published by the
4 * Free Software Foundation.
5 */
Shawn Guo50f2de62012-09-14 14:14:45 +08006#include "../hardware.h"
Shawn Guoe0557c02012-09-13 15:51:15 +08007#include "devices-common.h"
Arnaud Patard (Rtp)a45adf12011-07-26 16:54:25 +02008
Fabio Estevam236c4e82011-08-23 17:18:06 -03009#define imx_pata_imx_data_entry_single(soc, _size) \
Arnaud Patard (Rtp)a45adf12011-07-26 16:54:25 +020010 { \
11 .iobase = soc ## _ATA_BASE_ADDR, \
Fabio Estevam236c4e82011-08-23 17:18:06 -030012 .iosize = _size, \
13 .irq = soc ## _INT_ATA, \
Arnaud Patard (Rtp)a45adf12011-07-26 16:54:25 +020014 }
15
Fabio Estevam236c4e82011-08-23 17:18:06 -030016#ifdef CONFIG_SOC_IMX27
17const struct imx_pata_imx_data imx27_pata_imx_data __initconst =
18 imx_pata_imx_data_entry_single(MX27, SZ_4K);
19#endif /* ifdef CONFIG_SOC_IMX27 */
20
21#ifdef CONFIG_SOC_IMX31
22const struct imx_pata_imx_data imx31_pata_imx_data __initconst =
23 imx_pata_imx_data_entry_single(MX31, SZ_16K);
24#endif /* ifdef CONFIG_SOC_IMX31 */
25
26#ifdef CONFIG_SOC_IMX35
27const struct imx_pata_imx_data imx35_pata_imx_data __initconst =
28 imx_pata_imx_data_entry_single(MX35, SZ_16K);
29#endif /* ifdef CONFIG_SOC_IMX35 */
30
Arnaud Patard (Rtp)a45adf12011-07-26 16:54:25 +020031struct platform_device *__init imx_add_pata_imx(
32 const struct imx_pata_imx_data *data)
33{
34 struct resource res[] = {
35 {
36 .start = data->iobase,
Arnaud Patard (Rtp)318007e2011-08-27 15:19:00 +020037 .end = data->iobase + data->iosize - 1,
Arnaud Patard (Rtp)a45adf12011-07-26 16:54:25 +020038 .flags = IORESOURCE_MEM,
39 },
40 {
41 .start = data->irq,
42 .end = data->irq,
43 .flags = IORESOURCE_IRQ,
44 },
45 };
46 return imx_add_platform_device("pata_imx", -1,
47 res, ARRAY_SIZE(res), NULL, 0);
48}
49