mx27pdk.c 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. #include <linux/platform_device.h>
  21. #include <linux/gpio.h>
  22. #include <asm/mach-types.h>
  23. #include <asm/mach/arch.h>
  24. #include <asm/mach/time.h>
  25. #include <mach/hardware.h>
  26. #include <mach/common.h>
  27. #include <mach/imx-uart.h>
  28. #include <mach/iomux.h>
  29. #include <mach/board-mx27pdk.h>
  30. #include "devices.h"
  31. static unsigned int mx27pdk_pins[] = {
  32. /* UART1 */
  33. PE12_PF_UART1_TXD,
  34. PE13_PF_UART1_RXD,
  35. PE14_PF_UART1_CTS,
  36. PE15_PF_UART1_RTS,
  37. /* FEC */
  38. PD0_AIN_FEC_TXD0,
  39. PD1_AIN_FEC_TXD1,
  40. PD2_AIN_FEC_TXD2,
  41. PD3_AIN_FEC_TXD3,
  42. PD4_AOUT_FEC_RX_ER,
  43. PD5_AOUT_FEC_RXD1,
  44. PD6_AOUT_FEC_RXD2,
  45. PD7_AOUT_FEC_RXD3,
  46. PD8_AF_FEC_MDIO,
  47. PD9_AIN_FEC_MDC,
  48. PD10_AOUT_FEC_CRS,
  49. PD11_AOUT_FEC_TX_CLK,
  50. PD12_AOUT_FEC_RXD0,
  51. PD13_AOUT_FEC_RX_DV,
  52. PD14_AOUT_FEC_RX_CLK,
  53. PD15_AOUT_FEC_COL,
  54. PD16_AIN_FEC_TX_ER,
  55. PF23_AIN_FEC_TX_EN,
  56. };
  57. static struct imxuart_platform_data uart_pdata = {
  58. .flags = IMXUART_HAVE_RTSCTS,
  59. };
  60. static struct platform_device *platform_devices[] __initdata = {
  61. &mxc_fec_device,
  62. };
  63. static void __init mx27pdk_init(void)
  64. {
  65. mxc_gpio_setup_multiple_pins(mx27pdk_pins, ARRAY_SIZE(mx27pdk_pins),
  66. "mx27pdk");
  67. mxc_register_device(&mxc_uart_device0, &uart_pdata);
  68. platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices));
  69. }
  70. static void __init mx27pdk_timer_init(void)
  71. {
  72. mx27_clocks_init(26000000);
  73. }
  74. static struct sys_timer mx27pdk_timer = {
  75. .init = mx27pdk_timer_init,
  76. };
  77. MACHINE_START(MX27_3DS, "Freescale MX27PDK")
  78. /* maintainer: Freescale Semiconductor, Inc. */
  79. .phys_io = AIPI_BASE_ADDR,
  80. .io_pg_offst = ((AIPI_BASE_ADDR_VIRT) >> 18) & 0xfffc,
  81. .boot_params = PHYS_OFFSET + 0x100,
  82. .map_io = mx27_map_io,
  83. .init_irq = mx27_init_irq,
  84. .init_machine = mx27pdk_init,
  85. .timer = &mx27pdk_timer,
  86. MACHINE_END