1 /* linux/arch/arm/plat-s5p/dev-onenand.c
3 * Copyright 2010 Samsung Electronics Co., Ltd.
4 * http://www.samsung.com
6 * Copyright (c) 2008-2010 Samsung Electronics
7 * Kyungmin Park <kyungmin.park@samsung.com>
9 * S5P series device definition for OneNAND devices
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
16 #include <linux/kernel.h>
17 #include <linux/platform_device.h>
19 #include <mach/irqs.h>
22 static struct resource s5p_onenand_resources
[] = {
24 .start
= S5P_PA_ONENAND
,
25 .end
= S5P_PA_ONENAND
+ SZ_128K
- 1,
26 .flags
= IORESOURCE_MEM
,
29 .start
= S5P_PA_ONENAND_DMA
,
30 .end
= S5P_PA_ONENAND_DMA
+ SZ_8K
- 1,
31 .flags
= IORESOURCE_MEM
,
34 .start
= IRQ_ONENAND_AUDI
,
35 .end
= IRQ_ONENAND_AUDI
,
36 .flags
= IORESOURCE_IRQ
,
40 struct platform_device s5p_device_onenand
= {
41 .name
= "s5pc110-onenand",
43 .num_resources
= ARRAY_SIZE(s5p_onenand_resources
),
44 .resource
= s5p_onenand_resources
,