diff options
| author | Russell King <rmk+kernel@arm.linux.org.uk> | 2012-01-13 15:00:22 +0000 | 
|---|---|---|
| committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2012-01-13 15:00:22 +0000 | 
| commit | 4de3a8e101150feaefa1139611a50ff37467f33e (patch) | |
| tree | daada742542518b02d7db7c5d32e715eaa5f166d /arch/sh/boards/board-sh7757lcr.c | |
| parent | 294064f58953f9964e5945424b09c51800330a83 (diff) | |
| parent | 099469502f62fbe0d7e4f0b83a2f22538367f734 (diff) | |
| download | olio-linux-3.10-4de3a8e101150feaefa1139611a50ff37467f33e.tar.xz olio-linux-3.10-4de3a8e101150feaefa1139611a50ff37467f33e.zip  | |
Merge branch 'master' into fixes
Diffstat (limited to 'arch/sh/boards/board-sh7757lcr.c')
| -rw-r--r-- | arch/sh/boards/board-sh7757lcr.c | 39 | 
1 files changed, 39 insertions, 0 deletions
diff --git a/arch/sh/boards/board-sh7757lcr.c b/arch/sh/boards/board-sh7757lcr.c index 895e337c79b..0838154dd21 100644 --- a/arch/sh/boards/board-sh7757lcr.c +++ b/arch/sh/boards/board-sh7757lcr.c @@ -19,6 +19,7 @@  #include <linux/mmc/sh_mmcif.h>  #include <linux/mmc/sh_mobile_sdhi.h>  #include <linux/sh_eth.h> +#include <linux/usb/renesas_usbhs.h>  #include <cpu/sh7757.h>  #include <asm/heartbeat.h> @@ -264,6 +265,43 @@ static struct platform_device sdhi_device = {  	},  }; +static int usbhs0_get_id(struct platform_device *pdev) +{ +	return USBHS_GADGET; +} + +static struct renesas_usbhs_platform_info usb0_data = { +	.platform_callback = { +		.get_id = usbhs0_get_id, +	}, +	.driver_param = { +		.buswait_bwait = 5, +	} +}; + +static struct resource usb0_resources[] = { +	[0] = { +		.start	= 0xfe450000, +		.end	= 0xfe4501ff, +		.flags	= IORESOURCE_MEM, +	}, +	[1] = { +		.start	= 50, +		.end	= 50, +		.flags	= IORESOURCE_IRQ, +	}, +}; + +static struct platform_device usb0_device = { +	.name		= "renesas_usbhs", +	.id		= 0, +	.dev = { +		.platform_data		= &usb0_data, +	}, +	.num_resources	= ARRAY_SIZE(usb0_resources), +	.resource	= usb0_resources, +}; +  static struct platform_device *sh7757lcr_devices[] __initdata = {  	&heartbeat_device,  	&sh7757_eth0_device, @@ -272,6 +310,7 @@ static struct platform_device *sh7757lcr_devices[] __initdata = {  	&sh7757_eth_giga1_device,  	&sh_mmcif_device,  	&sdhi_device, +	&usb0_device,  };  static struct flash_platform_data spi_flash_data = {  |