1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/arch/arm/mach-pxa/icontrol.c
5 * Support for the iControl and SafeTcam platforms from TMT Services
6 * using the Embedian MXM-8x10 Computer on Module
8 * Copyright (C) 2009 TMT Services & Supplies (Pty) Ltd.
10 * 2010-01-21 Hennie van der Merve <hvdmerwe@tmtservies.co.za>
13 #include <linux/irq.h>
14 #include <linux/platform_device.h>
15 #include <linux/gpio.h>
17 #include <asm/mach-types.h>
18 #include <asm/mach/arch.h>
23 #include <linux/spi/spi.h>
24 #include <linux/spi/pxa2xx_spi.h>
25 #include <linux/can/platform/mcp251x.h>
26 #include <linux/regulator/machine.h>
30 #define ICONTROL_MCP251x_nCS1 (15)
31 #define ICONTROL_MCP251x_nCS2 (16)
32 #define ICONTROL_MCP251x_nCS3 (17)
33 #define ICONTROL_MCP251x_nCS4 (24)
35 #define ICONTROL_MCP251x_nIRQ1 (74)
36 #define ICONTROL_MCP251x_nIRQ2 (75)
37 #define ICONTROL_MCP251x_nIRQ3 (76)
38 #define ICONTROL_MCP251x_nIRQ4 (77)
40 static struct pxa2xx_spi_chip mcp251x_chip_info1
= {
45 .gpio_cs
= ICONTROL_MCP251x_nCS1
48 static struct pxa2xx_spi_chip mcp251x_chip_info2
= {
53 .gpio_cs
= ICONTROL_MCP251x_nCS2
56 static struct pxa2xx_spi_chip mcp251x_chip_info3
= {
61 .gpio_cs
= ICONTROL_MCP251x_nCS3
64 static struct pxa2xx_spi_chip mcp251x_chip_info4
= {
69 .gpio_cs
= ICONTROL_MCP251x_nCS4
72 static struct mcp251x_platform_data mcp251x_info
= {
73 .oscillator_frequency
= 16E6
,
76 static struct spi_board_info mcp251x_board_info
[] = {
78 .modalias
= "mcp2515",
79 .max_speed_hz
= 6500000,
82 .platform_data
= &mcp251x_info
,
83 .controller_data
= &mcp251x_chip_info1
,
84 .irq
= PXA_GPIO_TO_IRQ(ICONTROL_MCP251x_nIRQ1
)
87 .modalias
= "mcp2515",
88 .max_speed_hz
= 6500000,
91 .platform_data
= &mcp251x_info
,
92 .controller_data
= &mcp251x_chip_info2
,
93 .irq
= PXA_GPIO_TO_IRQ(ICONTROL_MCP251x_nIRQ2
)
96 .modalias
= "mcp2515",
97 .max_speed_hz
= 6500000,
100 .platform_data
= &mcp251x_info
,
101 .controller_data
= &mcp251x_chip_info3
,
102 .irq
= PXA_GPIO_TO_IRQ(ICONTROL_MCP251x_nIRQ3
)
105 .modalias
= "mcp2515",
106 .max_speed_hz
= 6500000,
109 .platform_data
= &mcp251x_info
,
110 .controller_data
= &mcp251x_chip_info4
,
111 .irq
= PXA_GPIO_TO_IRQ(ICONTROL_MCP251x_nIRQ4
)
115 static struct pxa2xx_spi_controller pxa_ssp3_spi_master_info
= {
120 static struct pxa2xx_spi_controller pxa_ssp4_spi_master_info
= {
125 struct platform_device pxa_spi_ssp3
= {
126 .name
= "pxa2xx-spi",
129 .platform_data
= &pxa_ssp3_spi_master_info
,
133 struct platform_device pxa_spi_ssp4
= {
134 .name
= "pxa2xx-spi",
137 .platform_data
= &pxa_ssp4_spi_master_info
,
141 static struct platform_device
*icontrol_spi_devices
[] __initdata
= {
146 static mfp_cfg_t mfp_can_cfg
[] __initdata
= {
153 /* SPI (SSP3) lines */
158 /* SPI (SSP4) lines */
164 GPIO74_GPIO
| MFP_LPM_EDGE_RISE
,
165 GPIO75_GPIO
| MFP_LPM_EDGE_RISE
,
166 GPIO76_GPIO
| MFP_LPM_EDGE_RISE
,
167 GPIO77_GPIO
| MFP_LPM_EDGE_RISE
170 static void __init
icontrol_can_init(void)
172 pxa3xx_mfp_config(ARRAY_AND_SIZE(mfp_can_cfg
));
173 platform_add_devices(ARRAY_AND_SIZE(icontrol_spi_devices
));
174 spi_register_board_info(ARRAY_AND_SIZE(mcp251x_board_info
));
177 static void __init
icontrol_init(void)
179 mxm_8x10_barebones_init();
180 mxm_8x10_usb_host_init();
185 regulator_has_full_constraints();
188 MACHINE_START(ICONTROL
, "iControl/SafeTcam boards using Embedian MXM-8x10 CoM")
189 .atag_offset
= 0x100,
190 .map_io
= pxa3xx_map_io
,
191 .nr_irqs
= PXA_NR_IRQS
,
192 .init_irq
= pxa3xx_init_irq
,
193 .handle_irq
= pxa3xx_handle_irq
,
194 .init_time
= pxa_timer_init
,
195 .init_machine
= icontrol_init
,
196 .restart
= pxa_restart
,