mirror of
https://github.com/torvalds/linux.git
synced 2024-11-18 10:01:43 +00:00
sh: add platform_device for RSPI in setup-sh7757
Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
parent
bfc906d885
commit
10a068f27a
@ -680,6 +680,25 @@ static struct platform_device spi1_device = {
|
|||||||
.resource = spi1_resources,
|
.resource = spi1_resources,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static struct resource rspi_resources[] = {
|
||||||
|
{
|
||||||
|
.start = 0xfe480000,
|
||||||
|
.end = 0xfe4800ff,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = 220,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device rspi_device = {
|
||||||
|
.name = "rspi",
|
||||||
|
.id = 2,
|
||||||
|
.num_resources = ARRAY_SIZE(rspi_resources),
|
||||||
|
.resource = rspi_resources,
|
||||||
|
};
|
||||||
|
|
||||||
static struct resource usb_ehci_resources[] = {
|
static struct resource usb_ehci_resources[] = {
|
||||||
[0] = {
|
[0] = {
|
||||||
.start = 0xfe4f1000,
|
.start = 0xfe4f1000,
|
||||||
@ -740,6 +759,7 @@ static struct platform_device *sh7757_devices[] __initdata = {
|
|||||||
&dma3_device,
|
&dma3_device,
|
||||||
&spi0_device,
|
&spi0_device,
|
||||||
&spi1_device,
|
&spi1_device,
|
||||||
|
&rspi_device,
|
||||||
&usb_ehci_device,
|
&usb_ehci_device,
|
||||||
&usb_ohci_device,
|
&usb_ohci_device,
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user