2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 2008 Maxime Bizon <mbizon@freebox.fr>
9 #include <linux/init.h>
10 #include <linux/kernel.h>
11 #include <linux/platform_device.h>
12 #include <bcm63xx_cpu.h>
13 #include <bcm63xx_dev_usb_ohci.h>
15 static struct resource ohci_resources
[] = {
17 .start
= -1, /* filled at runtime */
18 .end
= -1, /* filled at runtime */
19 .flags
= IORESOURCE_MEM
,
22 .start
= -1, /* filled at runtime */
23 .flags
= IORESOURCE_IRQ
,
27 static u64 ohci_dmamask
= ~(u32
)0;
29 static struct platform_device bcm63xx_ohci_device
= {
30 .name
= "bcm63xx_ohci",
32 .num_resources
= ARRAY_SIZE(ohci_resources
),
33 .resource
= ohci_resources
,
35 .dma_mask
= &ohci_dmamask
,
36 .coherent_dma_mask
= 0xffffffff,
40 int __init
bcm63xx_ohci_register(void)
42 if (!BCMCPU_IS_6348() && !BCMCPU_IS_6358())
45 ohci_resources
[0].start
= bcm63xx_regset_address(RSET_OHCI0
);
46 ohci_resources
[0].end
= ohci_resources
[0].start
;
47 ohci_resources
[0].end
+= RSET_OHCI_SIZE
- 1;
48 ohci_resources
[1].start
= bcm63xx_get_irq_number(IRQ_OHCI0
);
49 return platform_device_register(&bcm63xx_ohci_device
);