diff options
Diffstat (limited to 'arch/sh/boards/mach-highlander/setup.c')
-rw-r--r-- | arch/sh/boards/mach-highlander/setup.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/sh/boards/mach-highlander/setup.c b/arch/sh/boards/mach-highlander/setup.c index 1639f8915000..566e69d8d729 100644 --- a/arch/sh/boards/mach-highlander/setup.c +++ b/arch/sh/boards/mach-highlander/setup.c | |||
@@ -22,6 +22,7 @@ | |||
22 | #include <linux/irq.h> | 22 | #include <linux/irq.h> |
23 | #include <linux/interrupt.h> | 23 | #include <linux/interrupt.h> |
24 | #include <linux/usb/r8a66597.h> | 24 | #include <linux/usb/r8a66597.h> |
25 | #include <linux/usb/m66592.h> | ||
25 | #include <net/ax88796.h> | 26 | #include <net/ax88796.h> |
26 | #include <asm/machvec.h> | 27 | #include <asm/machvec.h> |
27 | #include <mach/highlander.h> | 28 | #include <mach/highlander.h> |
@@ -60,6 +61,11 @@ static struct platform_device r8a66597_usb_host_device = { | |||
60 | .resource = r8a66597_usb_host_resources, | 61 | .resource = r8a66597_usb_host_resources, |
61 | }; | 62 | }; |
62 | 63 | ||
64 | static struct m66592_platdata usbf_platdata = { | ||
65 | .xtal = M66592_PLATDATA_XTAL_24MHZ, | ||
66 | .vif = 1, | ||
67 | }; | ||
68 | |||
63 | static struct resource m66592_usb_peripheral_resources[] = { | 69 | static struct resource m66592_usb_peripheral_resources[] = { |
64 | [0] = { | 70 | [0] = { |
65 | .name = "m66592_udc", | 71 | .name = "m66592_udc", |
@@ -81,6 +87,7 @@ static struct platform_device m66592_usb_peripheral_device = { | |||
81 | .dev = { | 87 | .dev = { |
82 | .dma_mask = NULL, /* don't use dma */ | 88 | .dma_mask = NULL, /* don't use dma */ |
83 | .coherent_dma_mask = 0xffffffff, | 89 | .coherent_dma_mask = 0xffffffff, |
90 | .platform_data = &usbf_platdata, | ||
84 | }, | 91 | }, |
85 | .num_resources = ARRAY_SIZE(m66592_usb_peripheral_resources), | 92 | .num_resources = ARRAY_SIZE(m66592_usb_peripheral_resources), |
86 | .resource = m66592_usb_peripheral_resources, | 93 | .resource = m66592_usb_peripheral_resources, |