mach-mx35_3ds.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /*
  2. * Copyright 2009 Freescale Semiconductor, Inc. All Rights Reserved.
  3. * Copyright (C) 2009 Marc Kleine-Budde, Pengutronix
  4. *
  5. * Author: Fabio Estevam <fabio.estevam@freescale.com>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. */
  17. /*
  18. * This machine is known as:
  19. * - i.MX35 3-Stack Development System
  20. * - i.MX35 Platform Development Kit (i.MX35 PDK)
  21. */
  22. #include <linux/types.h>
  23. #include <linux/init.h>
  24. #include <linux/platform_device.h>
  25. #include <linux/memory.h>
  26. #include <linux/gpio.h>
  27. #include <linux/fsl_devices.h>
  28. #include <linux/mtd/physmap.h>
  29. #include <asm/mach-types.h>
  30. #include <asm/mach/arch.h>
  31. #include <asm/mach/time.h>
  32. #include <asm/mach/map.h>
  33. #include <mach/hardware.h>
  34. #include <mach/common.h>
  35. #include <mach/iomux-mx35.h>
  36. #include "devices-imx35.h"
  37. #include "devices.h"
  38. static const struct imxuart_platform_data uart_pdata __initconst = {
  39. .flags = IMXUART_HAVE_RTSCTS,
  40. };
  41. static struct physmap_flash_data mx35pdk_flash_data = {
  42. .width = 2,
  43. };
  44. static struct resource mx35pdk_flash_resource = {
  45. .start = MX35_CS0_BASE_ADDR,
  46. .end = MX35_CS0_BASE_ADDR + SZ_64M - 1,
  47. .flags = IORESOURCE_MEM,
  48. };
  49. static struct platform_device mx35pdk_flash = {
  50. .name = "physmap-flash",
  51. .id = 0,
  52. .dev = {
  53. .platform_data = &mx35pdk_flash_data,
  54. },
  55. .resource = &mx35pdk_flash_resource,
  56. .num_resources = 1,
  57. };
  58. static struct platform_device *devices[] __initdata = {
  59. &mxc_fec_device,
  60. &mx35pdk_flash,
  61. };
  62. static struct pad_desc mx35pdk_pads[] = {
  63. /* UART1 */
  64. MX35_PAD_CTS1__UART1_CTS,
  65. MX35_PAD_RTS1__UART1_RTS,
  66. MX35_PAD_TXD1__UART1_TXD_MUX,
  67. MX35_PAD_RXD1__UART1_RXD_MUX,
  68. /* FEC */
  69. MX35_PAD_FEC_TX_CLK__FEC_TX_CLK,
  70. MX35_PAD_FEC_RX_CLK__FEC_RX_CLK,
  71. MX35_PAD_FEC_RX_DV__FEC_RX_DV,
  72. MX35_PAD_FEC_COL__FEC_COL,
  73. MX35_PAD_FEC_RDATA0__FEC_RDATA_0,
  74. MX35_PAD_FEC_TDATA0__FEC_TDATA_0,
  75. MX35_PAD_FEC_TX_EN__FEC_TX_EN,
  76. MX35_PAD_FEC_MDC__FEC_MDC,
  77. MX35_PAD_FEC_MDIO__FEC_MDIO,
  78. MX35_PAD_FEC_TX_ERR__FEC_TX_ERR,
  79. MX35_PAD_FEC_RX_ERR__FEC_RX_ERR,
  80. MX35_PAD_FEC_CRS__FEC_CRS,
  81. MX35_PAD_FEC_RDATA1__FEC_RDATA_1,
  82. MX35_PAD_FEC_TDATA1__FEC_TDATA_1,
  83. MX35_PAD_FEC_RDATA2__FEC_RDATA_2,
  84. MX35_PAD_FEC_TDATA2__FEC_TDATA_2,
  85. MX35_PAD_FEC_RDATA3__FEC_RDATA_3,
  86. MX35_PAD_FEC_TDATA3__FEC_TDATA_3,
  87. /* USBOTG */
  88. MX35_PAD_USBOTG_PWR__USB_TOP_USBOTG_PWR,
  89. MX35_PAD_USBOTG_OC__USB_TOP_USBOTG_OC,
  90. };
  91. /* OTG config */
  92. static struct fsl_usb2_platform_data usb_pdata = {
  93. .operating_mode = FSL_USB2_DR_DEVICE,
  94. .phy_mode = FSL_USB2_PHY_UTMI_WIDE,
  95. };
  96. /*
  97. * Board specific initialization.
  98. */
  99. static void __init mxc_board_init(void)
  100. {
  101. mxc_iomux_v3_setup_multiple_pads(mx35pdk_pads, ARRAY_SIZE(mx35pdk_pads));
  102. platform_add_devices(devices, ARRAY_SIZE(devices));
  103. imx35_add_imx_uart0(&uart_pdata);
  104. mxc_register_device(&mxc_otg_udc_device, &usb_pdata);
  105. }
  106. static void __init mx35pdk_timer_init(void)
  107. {
  108. mx35_clocks_init();
  109. }
  110. struct sys_timer mx35pdk_timer = {
  111. .init = mx35pdk_timer_init,
  112. };
  113. MACHINE_START(MX35_3DS, "Freescale MX35PDK")
  114. /* Maintainer: Freescale Semiconductor, Inc */
  115. .phys_io = MX35_AIPS1_BASE_ADDR,
  116. .io_pg_offst = ((MX35_AIPS1_BASE_ADDR_VIRT) >> 18) & 0xfffc,
  117. .boot_params = MX3x_PHYS_OFFSET + 0x100,
  118. .map_io = mx35_map_io,
  119. .init_irq = mx35_init_irq,
  120. .init_machine = mxc_board_init,
  121. .timer = &mx35pdk_timer,
  122. MACHINE_END