1 /* linux/arch/arm/plat-samsung/dev-ide.c
3 * Copyright (c) 2010 Samsung Electronics Co., Ltd.
4 * http://www.samsung.com
6 * Samsung CF-ATA device definition.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/kernel.h>
14 #include <linux/interrupt.h>
15 #include <linux/platform_device.h>
19 #include <plat/devs.h>
21 static struct resource s3c_cfcon_resource
[] = {
23 .start
= SAMSUNG_PA_CFCON
,
24 .end
= SAMSUNG_PA_CFCON
+ SZ_16K
- 1,
25 .flags
= IORESOURCE_MEM
,
30 .flags
= IORESOURCE_IRQ
,
34 struct platform_device s3c_device_cfcon
= {
36 .num_resources
= ARRAY_SIZE(s3c_cfcon_resource
),
37 .resource
= s3c_cfcon_resource
,
40 void s3c_ide_set_platdata(struct s3c_ide_platdata
*pdata
)
42 s3c_set_platdata(pdata
, sizeof(struct s3c_ide_platdata
),