mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-04 21:29:43 +02:00
ramips: rt305x: add dwc_otg platform device
Signed-off-by: Alexander Gordeev <lasaine@lvk.cs.msu.su> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27995 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
5658753ca9
commit
5f106959f5
@ -242,3 +242,29 @@ void __init rt305x_register_spi(struct spi_board_info *info, int n)
|
|||||||
spi_register_board_info(info, n);
|
spi_register_board_info(info, n);
|
||||||
platform_device_register(&rt305x_spi_device);
|
platform_device_register(&rt305x_spi_device);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static struct resource rt305x_usb_resources[] = {
|
||||||
|
{
|
||||||
|
.start = RT305X_OTG_BASE,
|
||||||
|
.end = RT305X_OTG_BASE + 0x3FFFF,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
}, {
|
||||||
|
.start = RT305X_INTC_IRQ_OTG,
|
||||||
|
.end = RT305X_INTC_IRQ_OTG,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device rt305x_usb_device = {
|
||||||
|
.name = "dwc_otg",
|
||||||
|
.resource = rt305x_usb_resources,
|
||||||
|
.num_resources = ARRAY_SIZE(rt305x_usb_resources),
|
||||||
|
.dev = {
|
||||||
|
.platform_data = NULL,
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
void __init rt305x_register_usb(void)
|
||||||
|
{
|
||||||
|
platform_device_register(&rt305x_usb_device);
|
||||||
|
}
|
||||||
|
@ -23,6 +23,7 @@ void rt305x_register_ethernet(void);
|
|||||||
void rt305x_register_wifi(void);
|
void rt305x_register_wifi(void);
|
||||||
void rt305x_register_wdt(void);
|
void rt305x_register_wdt(void);
|
||||||
void rt305x_register_spi(struct spi_board_info *info, int n);
|
void rt305x_register_spi(struct spi_board_info *info, int n);
|
||||||
|
void rt305x_register_usb(void);
|
||||||
|
|
||||||
#endif /* __RT305X_DEVICES_H */
|
#endif /* __RT305X_DEVICES_H */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user