Ben Dooks | eca8655 | 2009-03-06 19:49:48 +0000 | [diff] [blame] | 1 | /* linux/arch/arm/plat-s3c/dev-usb.c |
| 2 | * |
| 3 | * Copyright 2008 Simtec Electronics |
| 4 | * Ben Dooks <ben@simtec.co.uk> |
| 5 | * http://armlinux.simtec.co.uk/ |
| 6 | * |
| 7 | * S3C series device definition for USB host |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License version 2 as |
| 11 | * published by the Free Software Foundation. |
| 12 | */ |
| 13 | |
| 14 | #include <linux/kernel.h> |
| 15 | #include <linux/string.h> |
| 16 | #include <linux/platform_device.h> |
| 17 | |
| 18 | #include <mach/irqs.h> |
| 19 | #include <mach/map.h> |
| 20 | |
| 21 | #include <plat/devs.h> |
Ben Dooks | f126752 | 2010-01-13 14:59:46 +0900 | [diff] [blame] | 22 | #include <plat/usb-control.h> |
Ben Dooks | eca8655 | 2009-03-06 19:49:48 +0000 | [diff] [blame] | 23 | |
| 24 | static struct resource s3c_usb_resource[] = { |
| 25 | [0] = { |
Ben Dooks | e6a2a9c | 2009-03-06 19:51:50 +0000 | [diff] [blame] | 26 | .start = S3C_PA_USBHOST, |
| 27 | .end = S3C_PA_USBHOST + 0x100 - 1, |
Ben Dooks | eca8655 | 2009-03-06 19:49:48 +0000 | [diff] [blame] | 28 | .flags = IORESOURCE_MEM, |
| 29 | }, |
| 30 | [1] = { |
| 31 | .start = IRQ_USBH, |
| 32 | .end = IRQ_USBH, |
| 33 | .flags = IORESOURCE_IRQ, |
| 34 | } |
| 35 | }; |
| 36 | |
| 37 | static u64 s3c_device_usb_dmamask = 0xffffffffUL; |
| 38 | |
Ben Dooks | b813248 | 2009-11-23 00:13:39 +0000 | [diff] [blame] | 39 | struct platform_device s3c_device_ohci = { |
Ben Dooks | eca8655 | 2009-03-06 19:49:48 +0000 | [diff] [blame] | 40 | .name = "s3c2410-ohci", |
| 41 | .id = -1, |
| 42 | .num_resources = ARRAY_SIZE(s3c_usb_resource), |
| 43 | .resource = s3c_usb_resource, |
| 44 | .dev = { |
| 45 | .dma_mask = &s3c_device_usb_dmamask, |
| 46 | .coherent_dma_mask = 0xffffffffUL |
| 47 | } |
| 48 | }; |
| 49 | |
Ben Dooks | b813248 | 2009-11-23 00:13:39 +0000 | [diff] [blame] | 50 | EXPORT_SYMBOL(s3c_device_ohci); |
Ben Dooks | f126752 | 2010-01-13 14:59:46 +0900 | [diff] [blame] | 51 | |
| 52 | /** |
| 53 | * s3c_ohci_set_platdata - initialise OHCI device platform data |
| 54 | * @info: The platform data. |
| 55 | * |
| 56 | * This call copies the @info passed in and sets the device .platform_data |
| 57 | * field to that copy. The @info is copied so that the original can be marked |
| 58 | * __initdata. |
| 59 | */ |
| 60 | void __init s3c_ohci_set_platdata(struct s3c2410_hcd_info *info) |
| 61 | { |
| 62 | struct s3c2410_hcd_info *npd; |
| 63 | |
| 64 | npd = kmemdup(info, sizeof(struct s3c2410_hcd_info), GFP_KERNEL); |
| 65 | if (!npd) |
| 66 | printk(KERN_ERR "%s: no memory for platform data\n", __func__); |
| 67 | |
| 68 | s3c_device_ohci.dev.platform_data = npd; |
| 69 | } |