2 * linux/arch/arm/mach-pxa/icontrol.c
4 * Support for the iControl and SafeTcam platforms from TMT Services
5 * using the Embedian MXM-8x10 Computer on Module
7 * Copyright (C) 2009 TMT Services & Supplies (Pty) Ltd.
9 * 2010-01-21 Hennie van der Merve <hvdmerwe@tmtservies.co.za>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
16 #include <linux/irq.h>
17 #include <linux/platform_device.h>
18 #include <linux/gpio.h>
20 #include <asm/mach-types.h>
21 #include <asm/mach/arch.h>
23 #include <mach/pxa320.h>
24 #include <mach/mxm8x10.h>
26 #include <linux/spi/spi.h>
27 #include <linux/spi/pxa2xx_spi.h>
28 #include <linux/can/platform/mcp251x.h>
29 #include <linux/regulator/machine.h>
33 #define ICONTROL_MCP251x_nCS1 (15)
34 #define ICONTROL_MCP251x_nCS2 (16)
35 #define ICONTROL_MCP251x_nCS3 (17)
36 #define ICONTROL_MCP251x_nCS4 (24)
38 #define ICONTROL_MCP251x_nIRQ1 (74)
39 #define ICONTROL_MCP251x_nIRQ2 (75)
40 #define ICONTROL_MCP251x_nIRQ3 (76)
41 #define ICONTROL_MCP251x_nIRQ4 (77)
43 static struct pxa2xx_spi_chip mcp251x_chip_info1
= {
48 .gpio_cs
= ICONTROL_MCP251x_nCS1
51 static struct pxa2xx_spi_chip mcp251x_chip_info2
= {
56 .gpio_cs
= ICONTROL_MCP251x_nCS2
59 static struct pxa2xx_spi_chip mcp251x_chip_info3
= {
64 .gpio_cs
= ICONTROL_MCP251x_nCS3
67 static struct pxa2xx_spi_chip mcp251x_chip_info4
= {
72 .gpio_cs
= ICONTROL_MCP251x_nCS4
75 static struct mcp251x_platform_data mcp251x_info
= {
76 .oscillator_frequency
= 16E6
,
79 static struct spi_board_info mcp251x_board_info
[] = {
81 .modalias
= "mcp2515",
82 .max_speed_hz
= 6500000,
85 .platform_data
= &mcp251x_info
,
86 .controller_data
= &mcp251x_chip_info1
,
87 .irq
= PXA_GPIO_TO_IRQ(ICONTROL_MCP251x_nIRQ1
)
90 .modalias
= "mcp2515",
91 .max_speed_hz
= 6500000,
94 .platform_data
= &mcp251x_info
,
95 .controller_data
= &mcp251x_chip_info2
,
96 .irq
= PXA_GPIO_TO_IRQ(ICONTROL_MCP251x_nIRQ2
)
99 .modalias
= "mcp2515",
100 .max_speed_hz
= 6500000,
103 .platform_data
= &mcp251x_info
,
104 .controller_data
= &mcp251x_chip_info3
,
105 .irq
= PXA_GPIO_TO_IRQ(ICONTROL_MCP251x_nIRQ3
)
108 .modalias
= "mcp2515",
109 .max_speed_hz
= 6500000,
112 .platform_data
= &mcp251x_info
,
113 .controller_data
= &mcp251x_chip_info4
,
114 .irq
= PXA_GPIO_TO_IRQ(ICONTROL_MCP251x_nIRQ4
)
118 static struct pxa2xx_spi_master pxa_ssp3_spi_master_info
= {
119 .clock_enable
= CKEN_SSP3
,
124 static struct pxa2xx_spi_master pxa_ssp4_spi_master_info
= {
125 .clock_enable
= CKEN_SSP4
,
130 struct platform_device pxa_spi_ssp3
= {
131 .name
= "pxa2xx-spi",
134 .platform_data
= &pxa_ssp3_spi_master_info
,
138 struct platform_device pxa_spi_ssp4
= {
139 .name
= "pxa2xx-spi",
142 .platform_data
= &pxa_ssp4_spi_master_info
,
146 static struct platform_device
*icontrol_spi_devices
[] __initdata
= {
151 static mfp_cfg_t mfp_can_cfg
[] __initdata
= {
158 /* SPI (SSP3) lines */
163 /* SPI (SSP4) lines */
169 GPIO74_GPIO
| MFP_LPM_EDGE_RISE
,
170 GPIO75_GPIO
| MFP_LPM_EDGE_RISE
,
171 GPIO76_GPIO
| MFP_LPM_EDGE_RISE
,
172 GPIO77_GPIO
| MFP_LPM_EDGE_RISE
175 static void __init
icontrol_can_init(void)
177 pxa3xx_mfp_config(ARRAY_AND_SIZE(mfp_can_cfg
));
178 platform_add_devices(ARRAY_AND_SIZE(icontrol_spi_devices
));
179 spi_register_board_info(ARRAY_AND_SIZE(mcp251x_board_info
));
182 static void __init
icontrol_init(void)
184 mxm_8x10_barebones_init();
185 mxm_8x10_usb_host_init();
190 regulator_has_full_constraints();
193 MACHINE_START(ICONTROL
, "iControl/SafeTcam boards using Embedian MXM-8x10 CoM")
194 .atag_offset
= 0x100,
195 .map_io
= pxa3xx_map_io
,
196 .nr_irqs
= PXA_NR_IRQS
,
197 .init_irq
= pxa3xx_init_irq
,
198 .handle_irq
= pxa3xx_handle_irq
,
199 .init_time
= pxa_timer_init
,
200 .init_machine
= icontrol_init
,
201 .restart
= pxa_restart
,