mach-mx35_3ds.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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. /*
  17. * This machine is known as:
  18. * - i.MX35 3-Stack Development System
  19. * - i.MX35 Platform Development Kit (i.MX35 PDK)
  20. */
  21. #include <linux/types.h>
  22. #include <linux/init.h>
  23. #include <linux/platform_device.h>
  24. #include <linux/memory.h>
  25. #include <linux/gpio.h>
  26. #include <linux/fsl_devices.h>
  27. #include <asm/mach-types.h>
  28. #include <asm/mach/arch.h>
  29. #include <asm/mach/time.h>
  30. #include <asm/mach/map.h>
  31. #include <mach/hardware.h>
  32. #include <mach/common.h>
  33. #include <mach/iomux-mx35.h>
  34. #include "devices-imx35.h"
  35. #include "devices.h"
  36. static const struct imxuart_platform_data uart_pdata __initconst = {
  37. .flags = IMXUART_HAVE_RTSCTS,
  38. };
  39. static struct platform_device *devices[] __initdata = {
  40. &mxc_fec_device,
  41. };
  42. static struct pad_desc mx35pdk_pads[] = {
  43. /* UART1 */
  44. MX35_PAD_CTS1__UART1_CTS,
  45. MX35_PAD_RTS1__UART1_RTS,
  46. MX35_PAD_TXD1__UART1_TXD_MUX,
  47. MX35_PAD_RXD1__UART1_RXD_MUX,
  48. /* FEC */
  49. MX35_PAD_FEC_TX_CLK__FEC_TX_CLK,
  50. MX35_PAD_FEC_RX_CLK__FEC_RX_CLK,
  51. MX35_PAD_FEC_RX_DV__FEC_RX_DV,
  52. MX35_PAD_FEC_COL__FEC_COL,
  53. MX35_PAD_FEC_RDATA0__FEC_RDATA_0,
  54. MX35_PAD_FEC_TDATA0__FEC_TDATA_0,
  55. MX35_PAD_FEC_TX_EN__FEC_TX_EN,
  56. MX35_PAD_FEC_MDC__FEC_MDC,
  57. MX35_PAD_FEC_MDIO__FEC_MDIO,
  58. MX35_PAD_FEC_TX_ERR__FEC_TX_ERR,
  59. MX35_PAD_FEC_RX_ERR__FEC_RX_ERR,
  60. MX35_PAD_FEC_CRS__FEC_CRS,
  61. MX35_PAD_FEC_RDATA1__FEC_RDATA_1,
  62. MX35_PAD_FEC_TDATA1__FEC_TDATA_1,
  63. MX35_PAD_FEC_RDATA2__FEC_RDATA_2,
  64. MX35_PAD_FEC_TDATA2__FEC_TDATA_2,
  65. MX35_PAD_FEC_RDATA3__FEC_RDATA_3,
  66. MX35_PAD_FEC_TDATA3__FEC_TDATA_3,
  67. /* USBOTG */
  68. MX35_PAD_USBOTG_PWR__USB_TOP_USBOTG_PWR,
  69. MX35_PAD_USBOTG_OC__USB_TOP_USBOTG_OC,
  70. };
  71. /* OTG config */
  72. static struct fsl_usb2_platform_data usb_pdata = {
  73. .operating_mode = FSL_USB2_DR_DEVICE,
  74. .phy_mode = FSL_USB2_PHY_UTMI_WIDE,
  75. };
  76. /*
  77. * Board specific initialization.
  78. */
  79. static void __init mxc_board_init(void)
  80. {
  81. mxc_iomux_v3_setup_multiple_pads(mx35pdk_pads, ARRAY_SIZE(mx35pdk_pads));
  82. platform_add_devices(devices, ARRAY_SIZE(devices));
  83. imx35_add_imx_uart0(&uart_pdata);
  84. mxc_register_device(&mxc_otg_udc_device, &usb_pdata);
  85. }
  86. static void __init mx35pdk_timer_init(void)
  87. {
  88. mx35_clocks_init();
  89. }
  90. struct sys_timer mx35pdk_timer = {
  91. .init = mx35pdk_timer_init,
  92. };
  93. MACHINE_START(MX35_3DS, "Freescale MX35PDK")
  94. /* Maintainer: Freescale Semiconductor, Inc */
  95. .phys_io = MX35_AIPS1_BASE_ADDR,
  96. .io_pg_offst = ((MX35_AIPS1_BASE_ADDR_VIRT) >> 18) & 0xfffc,
  97. .boot_params = MX3x_PHYS_OFFSET + 0x100,
  98. .map_io = mx35_map_io,
  99. .init_irq = mx35_init_irq,
  100. .init_machine = mxc_board_init,
  101. .timer = &mx35pdk_timer,
  102. MACHINE_END