mach-imx27lite.c 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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.
  15. */
  16. #include <linux/platform_device.h>
  17. #include <linux/gpio.h>
  18. #include <asm/mach-types.h>
  19. #include <asm/mach/arch.h>
  20. #include <asm/mach/time.h>
  21. #include <asm/mach/map.h>
  22. #include <mach/hardware.h>
  23. #include <mach/common.h>
  24. #include <mach/iomux-mx27.h>
  25. #include "devices-imx27.h"
  26. static const int mx27lite_pins[] __initconst = {
  27. /* UART1 */
  28. PE12_PF_UART1_TXD,
  29. PE13_PF_UART1_RXD,
  30. PE14_PF_UART1_CTS,
  31. PE15_PF_UART1_RTS,
  32. /* FEC */
  33. PD0_AIN_FEC_TXD0,
  34. PD1_AIN_FEC_TXD1,
  35. PD2_AIN_FEC_TXD2,
  36. PD3_AIN_FEC_TXD3,
  37. PD4_AOUT_FEC_RX_ER,
  38. PD5_AOUT_FEC_RXD1,
  39. PD6_AOUT_FEC_RXD2,
  40. PD7_AOUT_FEC_RXD3,
  41. PD8_AF_FEC_MDIO,
  42. PD9_AIN_FEC_MDC,
  43. PD10_AOUT_FEC_CRS,
  44. PD11_AOUT_FEC_TX_CLK,
  45. PD12_AOUT_FEC_RXD0,
  46. PD13_AOUT_FEC_RX_DV,
  47. PD14_AOUT_FEC_RX_CLK,
  48. PD15_AOUT_FEC_COL,
  49. PD16_AIN_FEC_TX_ER,
  50. PF23_AIN_FEC_TX_EN,
  51. };
  52. static const struct imxuart_platform_data uart_pdata __initconst = {
  53. .flags = IMXUART_HAVE_RTSCTS,
  54. };
  55. static void __init mx27lite_init(void)
  56. {
  57. imx27_soc_init();
  58. mxc_gpio_setup_multiple_pins(mx27lite_pins, ARRAY_SIZE(mx27lite_pins),
  59. "imx27lite");
  60. imx27_add_imx_uart0(&uart_pdata);
  61. imx27_add_fec(NULL);
  62. }
  63. static void __init mx27lite_timer_init(void)
  64. {
  65. mx27_clocks_init(26000000);
  66. }
  67. static struct sys_timer mx27lite_timer = {
  68. .init = mx27lite_timer_init,
  69. };
  70. MACHINE_START(IMX27LITE, "LogicPD i.MX27LITE")
  71. .atag_offset = 0x100,
  72. .map_io = mx27_map_io,
  73. .init_early = imx27_init_early,
  74. .init_irq = mx27_init_irq,
  75. .handle_irq = imx27_handle_irq,
  76. .timer = &mx27lite_timer,
  77. .init_machine = mx27lite_init,
  78. .restart = mxc_restart,
  79. MACHINE_END