mach-mx27_3ds.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /*
  2. * Copyright 2009 Freescale Semiconductor, Inc. All Rights Reserved.
  3. *
  4. * Author: Fabio Estevam <fabio.estevam@freescale.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. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. */
  20. /*
  21. * This machine is known as:
  22. * - i.MX27 3-Stack Development System
  23. * - i.MX27 Platform Development Kit (i.MX27 PDK)
  24. */
  25. #include <linux/platform_device.h>
  26. #include <linux/gpio.h>
  27. #include <asm/mach-types.h>
  28. #include <asm/mach/arch.h>
  29. #include <asm/mach/time.h>
  30. #include <mach/hardware.h>
  31. #include <mach/common.h>
  32. #include <mach/imx-uart.h>
  33. #include <mach/iomux-mx27.h>
  34. #include "devices.h"
  35. static unsigned int mx27pdk_pins[] = {
  36. /* UART1 */
  37. PE12_PF_UART1_TXD,
  38. PE13_PF_UART1_RXD,
  39. PE14_PF_UART1_CTS,
  40. PE15_PF_UART1_RTS,
  41. /* FEC */
  42. PD0_AIN_FEC_TXD0,
  43. PD1_AIN_FEC_TXD1,
  44. PD2_AIN_FEC_TXD2,
  45. PD3_AIN_FEC_TXD3,
  46. PD4_AOUT_FEC_RX_ER,
  47. PD5_AOUT_FEC_RXD1,
  48. PD6_AOUT_FEC_RXD2,
  49. PD7_AOUT_FEC_RXD3,
  50. PD8_AF_FEC_MDIO,
  51. PD9_AIN_FEC_MDC,
  52. PD10_AOUT_FEC_CRS,
  53. PD11_AOUT_FEC_TX_CLK,
  54. PD12_AOUT_FEC_RXD0,
  55. PD13_AOUT_FEC_RX_DV,
  56. PD14_AOUT_FEC_RX_CLK,
  57. PD15_AOUT_FEC_COL,
  58. PD16_AIN_FEC_TX_ER,
  59. PF23_AIN_FEC_TX_EN,
  60. };
  61. static struct imxuart_platform_data uart_pdata = {
  62. .flags = IMXUART_HAVE_RTSCTS,
  63. };
  64. static struct platform_device *platform_devices[] __initdata = {
  65. &mxc_fec_device,
  66. };
  67. static void __init mx27pdk_init(void)
  68. {
  69. mxc_gpio_setup_multiple_pins(mx27pdk_pins, ARRAY_SIZE(mx27pdk_pins),
  70. "mx27pdk");
  71. mxc_register_device(&mxc_uart_device0, &uart_pdata);
  72. platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices));
  73. }
  74. static void __init mx27pdk_timer_init(void)
  75. {
  76. mx27_clocks_init(26000000);
  77. }
  78. static struct sys_timer mx27pdk_timer = {
  79. .init = mx27pdk_timer_init,
  80. };
  81. MACHINE_START(MX27_3DS, "Freescale MX27PDK")
  82. /* maintainer: Freescale Semiconductor, Inc. */
  83. .phys_io = MX27_AIPI_BASE_ADDR,
  84. .io_pg_offst = ((MX27_AIPI_BASE_ADDR_VIRT) >> 18) & 0xfffc,
  85. .boot_params = MX27_PHYS_OFFSET + 0x100,
  86. .map_io = mx27_map_io,
  87. .init_irq = mx27_init_irq,
  88. .init_machine = mx27pdk_init,
  89. .timer = &mx27pdk_timer,
  90. MACHINE_END