blob: de310326df1ce001598ac89d7a1a851470b86162 [file] [log] [blame]
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +01001/*
2 * Copyright (C) 2008-2009 ST-Ericsson
3 *
4 * Author: Srinidhi KASAGAR <srinidhi.kasagar@stericsson.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2, as
8 * published by the Free Software Foundation.
9 *
10 */
11#include <linux/kernel.h>
12#include <linux/init.h>
13#include <linux/interrupt.h>
14#include <linux/platform_device.h>
15#include <linux/io.h>
Rabin Vincentea05a572010-06-03 07:58:42 +010016#include <linux/gpio.h>
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010017#include <linux/amba/bus.h>
18#include <linux/amba/pl022.h>
19#include <linux/spi/spi.h>
Rabin Vincent39ae7022010-07-26 11:12:15 +010020#include <linux/mfd/ab8500.h>
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010021
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010022#include <asm/mach-types.h>
23#include <asm/mach/arch.h>
24
Rabin Vincentea05a572010-06-03 07:58:42 +010025#include <plat/pincfg.h>
Srinidhi Kasagard48a41c2010-02-03 13:02:48 +010026#include <plat/i2c.h>
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010027
28#include <mach/hardware.h>
29#include <mach/setup.h>
Rabin Vincent9e4e7fe2010-05-03 08:03:52 +010030#include <mach/devices.h>
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010031
Rabin Vincentea05a572010-06-03 07:58:42 +010032#include "pins-db8500.h"
Hanumath Prasad008f8a22010-08-19 12:06:32 +010033#include "board-mop500.h"
Rabin Vincentea05a572010-06-03 07:58:42 +010034
35static pin_cfg_t mop500_pins[] = {
36 /* SSP0 */
37 GPIO143_SSP0_CLK,
38 GPIO144_SSP0_FRM,
39 GPIO145_SSP0_RXD,
40 GPIO146_SSP0_TXD,
41
42 /* I2C */
43 GPIO147_I2C0_SCL,
44 GPIO148_I2C0_SDA,
45 GPIO16_I2C1_SCL,
46 GPIO17_I2C1_SDA,
47 GPIO10_I2C2_SDA,
48 GPIO11_I2C2_SCL,
49 GPIO229_I2C3_SDA,
50 GPIO230_I2C3_SCL,
51};
52
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010053static void ab4500_spi_cs_control(u32 command)
54{
55 /* set the FRM signal, which is CS - TODO */
56}
57
58struct pl022_config_chip ab4500_chip_info = {
59 .lbm = LOOPBACK_DISABLED,
60 .com_mode = INTERRUPT_TRANSFER,
61 .iface = SSP_INTERFACE_MOTOROLA_SPI,
62 /* we can act as master only */
63 .hierarchy = SSP_MASTER,
64 .slave_tx_disable = 0,
65 .endian_rx = SSP_RX_MSB,
66 .endian_tx = SSP_TX_MSB,
67 .data_size = SSP_DATA_BITS_24,
68 .rx_lev_trig = SSP_RX_1_OR_MORE_ELEM,
69 .tx_lev_trig = SSP_TX_1_OR_MORE_EMPTY_LOC,
70 .clk_phase = SSP_CLK_SECOND_EDGE,
71 .clk_pol = SSP_CLK_POL_IDLE_HIGH,
72 .cs_control = ab4500_spi_cs_control,
73};
74
Rabin Vincent39ae7022010-07-26 11:12:15 +010075static struct ab8500_platform_data ab8500_platdata = {
76 .irq_base = MOP500_AB8500_IRQ_BASE,
77};
78
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010079static struct spi_board_info u8500_spi_devices[] = {
80 {
Rabin Vincent62579262010-05-19 11:39:02 +020081 .modalias = "ab8500",
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010082 .controller_data = &ab4500_chip_info,
Rabin Vincent39ae7022010-07-26 11:12:15 +010083 .platform_data = &ab8500_platdata,
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010084 .max_speed_hz = 12000000,
85 .bus_num = 0,
86 .chip_select = 0,
87 .mode = SPI_MODE_0,
Rabin Vincent60559302010-07-26 11:09:27 +010088 .irq = IRQ_DB8500_AB8500,
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010089 },
90};
91
92static struct pl022_ssp_controller ssp0_platform_data = {
93 .bus_id = 0,
94 /* pl022 not yet supports dma */
95 .enable_dma = 0,
96 /* on this platform, gpio 31,142,144,214 &
97 * 224 are connected as chip selects
98 */
99 .num_chipselect = 5,
100};
101
Srinidhi Kasagard48a41c2010-02-03 13:02:48 +0100102#define U8500_I2C_CONTROLLER(id, _slsu, _tft, _rft, clk, _sm) \
Rabin Vincentf9faf232010-05-03 08:24:37 +0100103static struct nmk_i2c_controller u8500_i2c##id##_data = { \
Srinidhi Kasagard48a41c2010-02-03 13:02:48 +0100104 /* \
105 * slave data setup time, which is \
106 * 250 ns,100ns,10ns which is 14,6,2 \
107 * respectively for a 48 Mhz \
108 * i2c clock \
109 */ \
110 .slsu = _slsu, \
111 /* Tx FIFO threshold */ \
112 .tft = _tft, \
113 /* Rx FIFO threshold */ \
114 .rft = _rft, \
115 /* std. mode operation */ \
116 .clk_freq = clk, \
117 .sm = _sm, \
118}
119
120/*
121 * The board uses 4 i2c controllers, initialize all of
122 * them with slave data setup time of 250 ns,
123 * Tx & Rx FIFO threshold values as 1 and standard
124 * mode of operation
125 */
126U8500_I2C_CONTROLLER(0, 0xe, 1, 1, 100000, I2C_FREQ_MODE_STANDARD);
127U8500_I2C_CONTROLLER(1, 0xe, 1, 1, 100000, I2C_FREQ_MODE_STANDARD);
128U8500_I2C_CONTROLLER(2, 0xe, 1, 1, 100000, I2C_FREQ_MODE_STANDARD);
129U8500_I2C_CONTROLLER(3, 0xe, 1, 1, 100000, I2C_FREQ_MODE_STANDARD);
130
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +0100131static struct amba_device *amba_devs[] __initdata = {
Rabin Vincent4b27aa42010-05-03 08:18:38 +0100132 &ux500_uart0_device,
133 &ux500_uart1_device,
134 &ux500_uart2_device,
Rabin Vincent9e4e7fe2010-05-03 08:03:52 +0100135 &u8500_ssp0_device,
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +0100136};
137
Srinidhi Kasagard48a41c2010-02-03 13:02:48 +0100138/* add any platform devices here - TODO */
139static struct platform_device *platform_devs[] __initdata = {
Rabin Vincentf9faf232010-05-03 08:24:37 +0100140 &u8500_i2c0_device,
141 &ux500_i2c1_device,
142 &ux500_i2c2_device,
143 &ux500_i2c3_device,
Srinidhi Kasagard48a41c2010-02-03 13:02:48 +0100144};
145
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +0100146static void __init u8500_init_machine(void)
147{
148 int i;
149
Rabin Vincentea05a572010-06-03 07:58:42 +0100150 u8500_init_devices();
151
152 nmk_config_pins(mop500_pins, ARRAY_SIZE(mop500_pins));
153
Rabin Vincentf9faf232010-05-03 08:24:37 +0100154 u8500_i2c0_device.dev.platform_data = &u8500_i2c0_data;
155 ux500_i2c1_device.dev.platform_data = &u8500_i2c1_data;
156 ux500_i2c2_device.dev.platform_data = &u8500_i2c2_data;
157 ux500_i2c3_device.dev.platform_data = &u8500_i2c3_data;
158
Rabin Vincent9e4e7fe2010-05-03 08:03:52 +0100159 u8500_ssp0_device.dev.platform_data = &ssp0_platform_data;
160
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +0100161 /* Register the active AMBA devices on this board */
162 for (i = 0; i < ARRAY_SIZE(amba_devs); i++)
163 amba_device_register(amba_devs[i], &iomem_resource);
164
Srinidhi Kasagard48a41c2010-02-03 13:02:48 +0100165 platform_add_devices(platform_devs, ARRAY_SIZE(platform_devs));
166
Hanumath Prasad008f8a22010-08-19 12:06:32 +0100167 mop500_sdi_init();
168
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +0100169 spi_register_board_info(u8500_spi_devices,
170 ARRAY_SIZE(u8500_spi_devices));
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +0100171}
172
173MACHINE_START(U8500, "ST-Ericsson MOP500 platform")
174 /* Maintainer: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com> */
175 .phys_io = U8500_UART2_BASE,
176 .io_pg_offst = (IO_ADDRESS(U8500_UART2_BASE) >> 18) & 0xfffc,
177 .boot_params = 0x100,
178 .map_io = u8500_map_io,
Rabin Vincent178980f2010-05-03 07:39:02 +0100179 .init_irq = ux500_init_irq,
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +0100180 /* we re-use nomadik timer here */
Rabin Vincent41ac3292010-05-03 08:28:05 +0100181 .timer = &ux500_timer,
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +0100182 .init_machine = u8500_init_machine,
183MACHINE_END