2 * Author: Armin Kuster <akuster@mvista.com>
4 * 2000-2001 (c) MontaVista, Software, Inc. This file is licensed under
5 * the terms of the GNU General Public License version 2. This program
6 * is licensed "as is" without any warranty of any kind, whether express
10 #include <linux/init.h>
11 #include <linux/platform_device.h>
13 #include <asm/ppc4xx_pic.h>
14 #include <platforms/4xx/ibmstb4.h>
16 static struct ocp_func_iic_data ibmstb4_iic0_def
= {
17 .fast_mode
= 0, /* Use standad mode (100Khz) */
20 static struct ocp_func_iic_data ibmstb4_iic1_def
= {
21 .fast_mode
= 0, /* Use standad mode (100Khz) */
25 struct ocp_def core_ocp
[] __initdata
= {
26 { .vendor
= OCP_VENDOR_IBM
,
27 .function
= OCP_FUNC_16550
,
29 .paddr
= UART0_IO_BASE
,
33 { .vendor
= OCP_VENDOR_IBM
,
34 .function
= OCP_FUNC_16550
,
36 .paddr
= UART1_IO_BASE
,
40 { .vendor
= OCP_VENDOR_IBM
,
41 .function
= OCP_FUNC_16550
,
43 .paddr
= UART2_IO_BASE
,
47 { .vendor
= OCP_VENDOR_IBM
,
48 .function
= OCP_FUNC_IIC
,
52 .additions
= &ibmstb4_iic0_def
,
53 .show
= &ocp_show_iic_data
55 { .vendor
= OCP_VENDOR_IBM
,
56 .function
= OCP_FUNC_IIC
,
60 .additions
= &ibmstb4_iic1_def
,
61 .show
= &ocp_show_iic_data
63 { .vendor
= OCP_VENDOR_IBM
,
64 .function
= OCP_FUNC_GPIO
,
69 { .vendor
= OCP_VENDOR_IBM
,
70 .function
= OCP_FUNC_IDE
,
75 { .vendor
= OCP_VENDOR_INVALID
,
79 /* Polarity and triggering settings for internal interrupt sources */
80 struct ppc4xx_uic_settings ppc4xx_core_uic_cfg
[] __initdata
= {
81 { .polarity
= 0x7fffff01,
82 .triggering
= 0x00000000,
83 .ext_irq_mask
= 0x0000007e, /* IRQ0 - IRQ5 */
87 static struct resource ohci_usb_resources
[] = {
90 .end
= USB0_BASE
+ USB0_SIZE
- 1,
91 .flags
= IORESOURCE_MEM
,
96 .flags
= IORESOURCE_IRQ
,
100 static u64 dma_mask
= 0xffffffffULL
;
102 static struct platform_device ohci_usb_device
= {
103 .name
= "ppc-soc-ohci",
105 .num_resources
= ARRAY_SIZE(ohci_usb_resources
),
106 .resource
= ohci_usb_resources
,
108 .dma_mask
= &dma_mask
,
109 .coherent_dma_mask
= 0xffffffffULL
,
113 static struct platform_device
*ibmstb4_devs
[] __initdata
= {
118 ibmstb4_platform_add_devices(void)
120 return platform_add_devices(ibmstb4_devs
, ARRAY_SIZE(ibmstb4_devs
));
122 arch_initcall(ibmstb4_platform_add_devices
);