blob: 4651e2376a71af7bbd241596c858fa834665c1a6 [file] [log] [blame]
Daniel Mack9a4cd7a2008-07-05 10:02:53 +02001/*
2 * Copyright (C) 2000 Deep Blue Solutions Ltd
3 * Copyright (C) 2002 Shane Nay (shane@minirl.com)
4 * Copyright 2005-2007 Freescale Semiconductor, Inc. All Rights Reserved.
Daniel Mack84677d12009-11-19 12:02:08 +01005 * Copyright (C) 2009 Daniel Mack <daniel@caiaq.de>
Daniel Mack9a4cd7a2008-07-05 10:02:53 +02006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
22#include <linux/types.h>
23#include <linux/init.h>
24#include <linux/kernel.h>
25#include <linux/memory.h>
Magnus Lilja32117052009-04-14 22:00:07 +020026#include <linux/platform_device.h>
27#include <linux/gpio.h>
28#include <linux/smsc911x.h>
Daniel Mack84677d12009-11-19 12:02:08 +010029#include <linux/mfd/mc13783.h>
30#include <linux/spi/spi.h>
Daniel Macka050c8e2009-11-19 12:02:09 +010031#include <linux/usb/otg.h>
32#include <linux/usb/ulpi.h>
Daniel Mack9a4cd7a2008-07-05 10:02:53 +020033
Daniel Mack9a4cd7a2008-07-05 10:02:53 +020034#include <asm/mach-types.h>
35#include <asm/mach/arch.h>
Juergen Beisert9e8a30d2008-07-05 10:02:53 +020036#include <asm/mach/time.h>
Daniel Mack9a4cd7a2008-07-05 10:02:53 +020037#include <asm/mach/map.h>
Daniel Mack9a4cd7a2008-07-05 10:02:53 +020038#include <asm/page.h>
39#include <asm/setup.h>
Daniel Mack84677d12009-11-19 12:02:08 +010040
41#include <mach/hardware.h>
42#include <mach/common.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010043#include <mach/board-mx31lite.h>
Magnus Liljaa854b8a2009-04-14 22:00:03 +020044#include <mach/imx-uart.h>
45#include <mach/iomux-mx3.h>
Magnus Lilja32117052009-04-14 22:00:07 +020046#include <mach/irqs.h>
Magnus Lilja183c7ff2009-05-04 22:18:09 +020047#include <mach/mxc_nand.h>
Daniel Mack84677d12009-11-19 12:02:08 +010048#include <mach/spi.h>
Daniel Macka050c8e2009-11-19 12:02:09 +010049#include <mach/mxc_ehci.h>
50#include <mach/ulpi.h>
Daniel Mack84677d12009-11-19 12:02:08 +010051
Magnus Liljaa854b8a2009-04-14 22:00:03 +020052#include "devices.h"
Daniel Mack9a4cd7a2008-07-05 10:02:53 +020053
54/*
Daniel Mackb7d91a62009-11-19 12:02:06 +010055 * This file contains the module-specific initialization routines.
Daniel Mack9a4cd7a2008-07-05 10:02:53 +020056 */
57
Magnus Liljaa854b8a2009-04-14 22:00:03 +020058static unsigned int mx31lite_pins[] = {
Magnus Lilja32117052009-04-14 22:00:07 +020059 /* LAN9117 IRQ pin */
60 IOMUX_MODE(MX31_PIN_SFS6, IOMUX_CONFIG_GPIO),
Daniel Mack84677d12009-11-19 12:02:08 +010061 /* SPI 1 */
62 MX31_PIN_CSPI2_SCLK__SCLK,
63 MX31_PIN_CSPI2_MOSI__MOSI,
64 MX31_PIN_CSPI2_MISO__MISO,
65 MX31_PIN_CSPI2_SPI_RDY__SPI_RDY,
66 MX31_PIN_CSPI2_SS0__SS0,
67 MX31_PIN_CSPI2_SS1__SS1,
68 MX31_PIN_CSPI2_SS2__SS2,
Magnus Liljaa854b8a2009-04-14 22:00:03 +020069};
70
Magnus Lilja183c7ff2009-05-04 22:18:09 +020071static struct mxc_nand_platform_data mx31lite_nand_board_info = {
72 .width = 1,
73 .hw_ecc = 1,
74};
75
Magnus Lilja32117052009-04-14 22:00:07 +020076static struct smsc911x_platform_config smsc911x_config = {
77 .irq_polarity = SMSC911X_IRQ_POLARITY_ACTIVE_LOW,
78 .irq_type = SMSC911X_IRQ_TYPE_PUSH_PULL,
79 .flags = SMSC911X_USE_16BIT,
80};
81
82static struct resource smsc911x_resources[] = {
Sascha Hauer3f4f54b2009-06-23 12:12:00 +020083 {
Magnus Lilja32117052009-04-14 22:00:07 +020084 .start = CS4_BASE_ADDR,
85 .end = CS4_BASE_ADDR + 0x100,
86 .flags = IORESOURCE_MEM,
Sascha Hauer3f4f54b2009-06-23 12:12:00 +020087 }, {
Magnus Lilja32117052009-04-14 22:00:07 +020088 .start = IOMUX_TO_IRQ(MX31_PIN_SFS6),
89 .end = IOMUX_TO_IRQ(MX31_PIN_SFS6),
90 .flags = IORESOURCE_IRQ,
91 },
92};
93
94static struct platform_device smsc911x_device = {
95 .name = "smsc911x",
96 .id = -1,
97 .num_resources = ARRAY_SIZE(smsc911x_resources),
98 .resource = smsc911x_resources,
99 .dev = {
100 .platform_data = &smsc911x_config,
101 },
102};
103
Daniel Mack9a4cd7a2008-07-05 10:02:53 +0200104/*
Daniel Mack84677d12009-11-19 12:02:08 +0100105 * SPI
106 *
107 * The MC13783 is the only hard-wired SPI device on the module.
108 */
109
110static int spi_internal_chipselect[] = {
111 MXC_SPI_CS(0),
112};
113
114static struct spi_imx_master spi1_pdata = {
115 .chipselect = spi_internal_chipselect,
116 .num_chipselect = ARRAY_SIZE(spi_internal_chipselect),
117};
118
119static struct mc13783_platform_data mc13783_pdata __initdata = {
120 .flags = MC13783_USE_RTC |
121 MC13783_USE_REGULATOR,
122};
123
124static struct spi_board_info mc13783_spi_dev __initdata = {
125 .modalias = "mc13783",
126 .max_speed_hz = 1000000,
127 .bus_num = 1,
128 .chip_select = 0,
129 .platform_data = &mc13783_pdata,
130 .irq = IOMUX_TO_IRQ(MX31_PIN_GPIO1_3),
131};
132
133/*
Daniel Macka050c8e2009-11-19 12:02:09 +0100134 * USB
135 */
136
137#define USB_PAD_CFG (PAD_CTL_DRV_MAX | PAD_CTL_SRE_FAST | PAD_CTL_HYS_CMOS | \
138 PAD_CTL_ODE_CMOS | PAD_CTL_100K_PU)
139
140static int usbh2_init(struct platform_device *pdev)
141{
142 int pins[] = {
143 MX31_PIN_USBH2_DATA0__USBH2_DATA0,
144 MX31_PIN_USBH2_DATA1__USBH2_DATA1,
145 MX31_PIN_USBH2_CLK__USBH2_CLK,
146 MX31_PIN_USBH2_DIR__USBH2_DIR,
147 MX31_PIN_USBH2_NXT__USBH2_NXT,
148 MX31_PIN_USBH2_STP__USBH2_STP,
149 };
150
151 mxc_iomux_setup_multiple_pins(pins, ARRAY_SIZE(pins), "USB H2");
152
153 mxc_iomux_set_pad(MX31_PIN_USBH2_CLK, USB_PAD_CFG);
154 mxc_iomux_set_pad(MX31_PIN_USBH2_DIR, USB_PAD_CFG);
155 mxc_iomux_set_pad(MX31_PIN_USBH2_NXT, USB_PAD_CFG);
156 mxc_iomux_set_pad(MX31_PIN_USBH2_STP, USB_PAD_CFG);
157 mxc_iomux_set_pad(MX31_PIN_USBH2_DATA0, USB_PAD_CFG);
158 mxc_iomux_set_pad(MX31_PIN_USBH2_DATA1, USB_PAD_CFG);
159 mxc_iomux_set_pad(MX31_PIN_SRXD6, USB_PAD_CFG);
160 mxc_iomux_set_pad(MX31_PIN_STXD6, USB_PAD_CFG);
161 mxc_iomux_set_pad(MX31_PIN_SFS3, USB_PAD_CFG);
162 mxc_iomux_set_pad(MX31_PIN_SCK3, USB_PAD_CFG);
163 mxc_iomux_set_pad(MX31_PIN_SRXD3, USB_PAD_CFG);
164 mxc_iomux_set_pad(MX31_PIN_STXD3, USB_PAD_CFG);
165
166 mxc_iomux_set_gpr(MUX_PGP_UH2, true);
167
168 /* chip select */
169 mxc_iomux_alloc_pin(IOMUX_MODE(MX31_PIN_DTR_DCE1, IOMUX_CONFIG_GPIO),
170 "USBH2_CS");
171 gpio_request(IOMUX_TO_GPIO(MX31_PIN_DTR_DCE1), "USBH2 CS");
172 gpio_direction_output(IOMUX_TO_GPIO(MX31_PIN_DTR_DCE1), 0);
173
174 return 0;
175}
176
177static struct mxc_usbh_platform_data usbh2_pdata = {
178 .init = usbh2_init,
179 .portsc = MXC_EHCI_MODE_ULPI | MXC_EHCI_UTMI_8BIT,
180 .flags = MXC_EHCI_POWER_PINS_ENABLED,
181};
182
183/*
Daniel Mack9a4cd7a2008-07-05 10:02:53 +0200184 * This structure defines the MX31 memory map.
185 */
186static struct map_desc mx31lite_io_desc[] __initdata = {
187 {
Daniel Mack9a4cd7a2008-07-05 10:02:53 +0200188 .virtual = SPBA0_BASE_ADDR_VIRT,
189 .pfn = __phys_to_pfn(SPBA0_BASE_ADDR),
190 .length = SPBA0_SIZE,
Russell King9b727ab2008-09-07 12:45:01 +0100191 .type = MT_DEVICE_NONSHARED
Daniel Mack9a4cd7a2008-07-05 10:02:53 +0200192 }, {
Daniel Mack9a4cd7a2008-07-05 10:02:53 +0200193 .virtual = CS4_BASE_ADDR_VIRT,
194 .pfn = __phys_to_pfn(CS4_BASE_ADDR),
195 .length = CS4_SIZE,
196 .type = MT_DEVICE
197 }
198};
199
200/*
201 * Set up static virtual mappings.
202 */
203void __init mx31lite_map_io(void)
204{
Sascha Hauercd4a05f2009-04-02 22:32:10 +0200205 mx31_map_io();
Daniel Mack9a4cd7a2008-07-05 10:02:53 +0200206 iotable_init(mx31lite_io_desc, ARRAY_SIZE(mx31lite_io_desc));
207}
208
Daniel Mackb7d91a62009-11-19 12:02:06 +0100209static int mx31lite_baseboard;
210core_param(mx31lite_baseboard, mx31lite_baseboard, int, 0444);
211
Daniel Mack9a4cd7a2008-07-05 10:02:53 +0200212static void __init mxc_board_init(void)
213{
Sascha Hauer4f163eb2009-05-06 12:55:50 +0200214 int ret;
215
Daniel Mackb7d91a62009-11-19 12:02:06 +0100216 switch (mx31lite_baseboard) {
217 case MX31LITE_NOBOARD:
218 break;
219 case MX31LITE_DB:
220 mx31lite_db_init();
221 break;
222 default:
223 printk(KERN_ERR "Illegal mx31lite_baseboard type %d\n",
224 mx31lite_baseboard);
225 }
226
Magnus Liljaa854b8a2009-04-14 22:00:03 +0200227 mxc_iomux_setup_multiple_pins(mx31lite_pins, ARRAY_SIZE(mx31lite_pins),
228 "mx31lite");
229
Magnus Lilja183c7ff2009-05-04 22:18:09 +0200230 mxc_register_device(&mxc_nand_device, &mx31lite_nand_board_info);
Daniel Mack84677d12009-11-19 12:02:08 +0100231 mxc_register_device(&mxc_spi_device1, &spi1_pdata);
232 spi_register_board_info(&mc13783_spi_dev, 1);
Magnus Lilja32117052009-04-14 22:00:07 +0200233
Daniel Macka050c8e2009-11-19 12:02:09 +0100234 /* USB */
235 usbh2_pdata.otg = otg_ulpi_create(&mxc_ulpi_access_ops,
236 USB_OTG_DRV_VBUS | USB_OTG_DRV_VBUS_EXT);
237
238 mxc_register_device(&mxc_usbh2, &usbh2_pdata);
239
Magnus Lilja32117052009-04-14 22:00:07 +0200240 /* SMSC9117 IRQ pin */
Sascha Hauer4f163eb2009-05-06 12:55:50 +0200241 ret = gpio_request(IOMUX_TO_GPIO(MX31_PIN_SFS6), "sms9117-irq");
242 if (ret)
243 pr_warning("could not get LAN irq gpio\n");
244 else {
245 gpio_direction_input(IOMUX_TO_GPIO(MX31_PIN_SFS6));
246 platform_device_register(&smsc911x_device);
247 }
Daniel Mack9a4cd7a2008-07-05 10:02:53 +0200248}
249
Juergen Beisert9e8a30d2008-07-05 10:02:53 +0200250static void __init mx31lite_timer_init(void)
251{
Sascha Hauer30c730f2009-02-16 14:36:49 +0100252 mx31_clocks_init(26000000);
Juergen Beisert9e8a30d2008-07-05 10:02:53 +0200253}
254
255struct sys_timer mx31lite_timer = {
256 .init = mx31lite_timer_init,
257};
258
Daniel Mackb7d91a62009-11-19 12:02:06 +0100259MACHINE_START(MX31LITE, "LogicPD i.MX31 SOM")
Daniel Mack9a4cd7a2008-07-05 10:02:53 +0200260 /* Maintainer: Freescale Semiconductor, Inc. */
261 .phys_io = AIPS1_BASE_ADDR,
262 .io_pg_offst = ((AIPS1_BASE_ADDR_VIRT) >> 18) & 0xfffc,
263 .boot_params = PHYS_OFFSET + 0x100,
264 .map_io = mx31lite_map_io,
Sascha Hauerc5aa0ad2009-05-25 17:36:19 +0200265 .init_irq = mx31_init_irq,
Daniel Mack9a4cd7a2008-07-05 10:02:53 +0200266 .init_machine = mxc_board_init,
Juergen Beisert9e8a30d2008-07-05 10:02:53 +0200267 .timer = &mx31lite_timer,
Daniel Mack9a4cd7a2008-07-05 10:02:53 +0200268MACHINE_END