Daniel Schaeffer | 8c032ec | 2009-06-03 17:23:54 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2007 Robert Schwebel <r.schwebel@pengutronix.de>, Pengutronix |
| 3 | * Copyright (C) 2008 Juergen Beisert (kernel@pengutronix.de) |
| 4 | * Copyright 2009 Daniel Schaeffer (daniel.schaeffer@timesys.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 as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
Daniel Schaeffer | 8c032ec | 2009-06-03 17:23:54 -0400 | [diff] [blame] | 15 | */ |
| 16 | |
| 17 | #include <linux/platform_device.h> |
| 18 | #include <linux/gpio.h> |
| 19 | #include <asm/mach-types.h> |
| 20 | #include <asm/mach/arch.h> |
| 21 | #include <asm/mach/time.h> |
| 22 | #include <asm/mach/map.h> |
Daniel Schaeffer | 8c032ec | 2009-06-03 17:23:54 -0400 | [diff] [blame] | 23 | |
Shawn Guo | e337247 | 2012-09-13 21:01:00 +0800 | [diff] [blame] | 24 | #include "common.h" |
Uwe Kleine-König | d5dac4a | 2010-06-23 09:36:01 +0200 | [diff] [blame] | 25 | #include "devices-imx27.h" |
Shawn Guo | 50f2de6 | 2012-09-14 14:14:45 +0800 | [diff] [blame] | 26 | #include "hardware.h" |
Shawn Guo | 267dd34 | 2012-09-13 13:26:00 +0800 | [diff] [blame] | 27 | #include "iomux-mx27.h" |
Daniel Schaeffer | 8c032ec | 2009-06-03 17:23:54 -0400 | [diff] [blame] | 28 | |
Uwe Kleine-König | 6c80ee5 | 2010-09-28 21:53:31 +0200 | [diff] [blame] | 29 | static const int mx27lite_pins[] __initconst = { |
Daniel Schaeffer | 8c032ec | 2009-06-03 17:23:54 -0400 | [diff] [blame] | 30 | /* UART1 */ |
| 31 | PE12_PF_UART1_TXD, |
| 32 | PE13_PF_UART1_RXD, |
| 33 | PE14_PF_UART1_CTS, |
| 34 | PE15_PF_UART1_RTS, |
| 35 | /* FEC */ |
| 36 | PD0_AIN_FEC_TXD0, |
| 37 | PD1_AIN_FEC_TXD1, |
| 38 | PD2_AIN_FEC_TXD2, |
| 39 | PD3_AIN_FEC_TXD3, |
| 40 | PD4_AOUT_FEC_RX_ER, |
| 41 | PD5_AOUT_FEC_RXD1, |
| 42 | PD6_AOUT_FEC_RXD2, |
| 43 | PD7_AOUT_FEC_RXD3, |
| 44 | PD8_AF_FEC_MDIO, |
| 45 | PD9_AIN_FEC_MDC, |
| 46 | PD10_AOUT_FEC_CRS, |
| 47 | PD11_AOUT_FEC_TX_CLK, |
| 48 | PD12_AOUT_FEC_RXD0, |
| 49 | PD13_AOUT_FEC_RX_DV, |
| 50 | PD14_AOUT_FEC_RX_CLK, |
| 51 | PD15_AOUT_FEC_COL, |
| 52 | PD16_AIN_FEC_TX_ER, |
| 53 | PF23_AIN_FEC_TX_EN, |
| 54 | }; |
| 55 | |
Uwe Kleine-König | d5dac4a | 2010-06-23 09:36:01 +0200 | [diff] [blame] | 56 | static const struct imxuart_platform_data uart_pdata __initconst = { |
Daniel Schaeffer | 8c032ec | 2009-06-03 17:23:54 -0400 | [diff] [blame] | 57 | .flags = IMXUART_HAVE_RTSCTS, |
| 58 | }; |
| 59 | |
Daniel Schaeffer | 8c032ec | 2009-06-03 17:23:54 -0400 | [diff] [blame] | 60 | static void __init mx27lite_init(void) |
| 61 | { |
Shawn Guo | b78d8e5 | 2011-06-06 00:07:55 +0800 | [diff] [blame] | 62 | imx27_soc_init(); |
| 63 | |
Daniel Schaeffer | 8c032ec | 2009-06-03 17:23:54 -0400 | [diff] [blame] | 64 | mxc_gpio_setup_multiple_pins(mx27lite_pins, ARRAY_SIZE(mx27lite_pins), |
| 65 | "imx27lite"); |
Uwe Kleine-König | d5dac4a | 2010-06-23 09:36:01 +0200 | [diff] [blame] | 66 | imx27_add_imx_uart0(&uart_pdata); |
Uwe Kleine-König | 6bd96f3 | 2010-10-06 12:00:18 +0200 | [diff] [blame] | 67 | imx27_add_fec(NULL); |
Daniel Schaeffer | 8c032ec | 2009-06-03 17:23:54 -0400 | [diff] [blame] | 68 | } |
| 69 | |
| 70 | static void __init mx27lite_timer_init(void) |
| 71 | { |
| 72 | mx27_clocks_init(26000000); |
| 73 | } |
| 74 | |
Daniel Schaeffer | 8c032ec | 2009-06-03 17:23:54 -0400 | [diff] [blame] | 75 | MACHINE_START(IMX27LITE, "LogicPD i.MX27LITE") |
Nicolas Pitre | dc8f190 | 2011-07-05 22:38:12 -0400 | [diff] [blame] | 76 | .atag_offset = 0x100, |
Uwe Kleine-König | 3dac219 | 2011-02-07 16:35:19 +0100 | [diff] [blame] | 77 | .map_io = mx27_map_io, |
| 78 | .init_early = imx27_init_early, |
| 79 | .init_irq = mx27_init_irq, |
Sascha Hauer | ffa2ea3 | 2011-09-20 14:31:24 +0200 | [diff] [blame] | 80 | .handle_irq = imx27_handle_irq, |
Stephen Warren | 6bb27d7 | 2012-11-08 12:40:59 -0700 | [diff] [blame] | 81 | .init_time = mx27lite_timer_init, |
Uwe Kleine-König | 3dac219 | 2011-02-07 16:35:19 +0100 | [diff] [blame] | 82 | .init_machine = mx27lite_init, |
Russell King | 65ea788 | 2011-11-06 17:12:08 +0000 | [diff] [blame] | 83 | .restart = mxc_restart, |
Daniel Schaeffer | 8c032ec | 2009-06-03 17:23:54 -0400 | [diff] [blame] | 84 | MACHINE_END |