51 lines
		
	
	
	
		
			1.3 KiB
			
		
	
	
	
		
			C
		
	
	
	
	
	
		
		
			
		
	
	
			51 lines
		
	
	
	
		
			1.3 KiB
			
		
	
	
	
		
			C
		
	
	
	
	
	
|   | /*
 | ||
|  |  * linux/arch/arm/mach-s5pv210/dev-onenand.c | ||
|  |  * | ||
|  |  *  Copyright (c) 2008-2010 Samsung Electronics | ||
|  |  *  Kyungmin Park <kyungmin.park@samsung.com> | ||
|  |  * | ||
|  |  * S5PC110 series device definition for OneNAND devices | ||
|  |  * | ||
|  |  * 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>
 | ||
|  | 
 | ||
|  | static struct resource s5pc110_onenand_resources[] = { | ||
|  | 	[0] = { | ||
|  | 		.start	= S5PC110_PA_ONENAND, | ||
|  | 		.end	= S5PC110_PA_ONENAND + SZ_128K - 1, | ||
|  | 		.flags	= IORESOURCE_MEM, | ||
|  | 	}, | ||
|  | 	[1] = { | ||
|  | 		.start	= S5PC110_PA_ONENAND_DMA, | ||
|  | 		.end	= S5PC110_PA_ONENAND_DMA + SZ_2K - 1, | ||
|  | 		.flags	= IORESOURCE_MEM, | ||
|  | 	}, | ||
|  | }; | ||
|  | 
 | ||
|  | struct platform_device s5pc110_device_onenand = { | ||
|  | 	.name		= "s5pc110-onenand", | ||
|  | 	.id		= -1, | ||
|  | 	.num_resources	= ARRAY_SIZE(s5pc110_onenand_resources), | ||
|  | 	.resource	= s5pc110_onenand_resources, | ||
|  | }; | ||
|  | 
 | ||
|  | void s5pc110_onenand_set_platdata(struct onenand_platform_data *pdata) | ||
|  | { | ||
|  | 	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__); | ||
|  | 	s5pc110_device_onenand.dev.platform_data = pd; | ||
|  | } |