2010-08-27 04:56:54 +00:00
|
|
|
/* linux/arch/arm/plat-s5p/dev-onenand.c
|
|
|
|
*
|
|
|
|
* Copyright 2010 Samsung Electronics Co., Ltd.
|
|
|
|
* http://www.samsung.com
|
2010-05-20 06:59:05 +00:00
|
|
|
*
|
|
|
|
* Copyright (c) 2008-2010 Samsung Electronics
|
|
|
|
* Kyungmin Park <kyungmin.park@samsung.com>
|
|
|
|
*
|
2010-08-27 04:56:54 +00:00
|
|
|
* S5P series device definition for OneNAND devices
|
2010-05-20 06:59:05 +00:00
|
|
|
*
|
|
|
|
* 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/kernel.h>
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <linux/mtd/mtd.h>
|
|
|
|
#include <linux/mtd/onenand.h>
|
|
|
|
|
|
|
|
#include <mach/irqs.h>
|
|
|
|
#include <mach/map.h>
|
|
|
|
|
2010-08-27 04:56:54 +00:00
|
|
|
static struct resource s5p_onenand_resources[] = {
|
2010-05-20 06:59:05 +00:00
|
|
|
[0] = {
|
2010-08-27 04:56:54 +00:00
|
|
|
.start = S5P_PA_ONENAND,
|
|
|
|
.end = S5P_PA_ONENAND + SZ_128K - 1,
|
2010-05-20 06:59:05 +00:00
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
},
|
|
|
|
[1] = {
|
2010-08-27 04:56:54 +00:00
|
|
|
.start = S5P_PA_ONENAND_DMA,
|
|
|
|
.end = S5P_PA_ONENAND_DMA + SZ_8K - 1,
|
2010-05-20 06:59:05 +00:00
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
},
|
2010-08-05 09:24:36 +00:00
|
|
|
[2] = {
|
|
|
|
.start = IRQ_ONENAND_AUDI,
|
|
|
|
.end = IRQ_ONENAND_AUDI,
|
|
|
|
.flags = IORESOURCE_IRQ,
|
|
|
|
},
|
2010-05-20 06:59:05 +00:00
|
|
|
};
|
|
|
|
|
2010-08-27 04:56:54 +00:00
|
|
|
struct platform_device s5p_device_onenand = {
|
2010-05-20 06:59:05 +00:00
|
|
|
.name = "s5pc110-onenand",
|
|
|
|
.id = -1,
|
2010-08-27 04:56:54 +00:00
|
|
|
.num_resources = ARRAY_SIZE(s5p_onenand_resources),
|
|
|
|
.resource = s5p_onenand_resources,
|
2010-05-20 06:59:05 +00:00
|
|
|
};
|
|
|
|
|
2010-08-27 04:56:54 +00:00
|
|
|
void s5p_onenand_set_platdata(struct onenand_platform_data *pdata)
|
2010-05-20 06:59:05 +00:00
|
|
|
{
|
|
|
|
struct onenand_platform_data *pd;
|
|
|
|
|
|
|
|
pd = kmemdup(pdata, sizeof(struct onenand_platform_data), GFP_KERNEL);
|
|
|
|
if (!pd)
|
|
|
|
printk(KERN_ERR "%s: no memory for platform data\n", __func__);
|
2010-08-27 04:56:54 +00:00
|
|
|
s5p_device_onenand.dev.platform_data = pd;
|
2010-05-20 06:59:05 +00:00
|
|
|
}
|