capc7117.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. /*
  2. * linux/arch/arm/mach-pxa/capc7117.c
  3. *
  4. * Support for the Embedian CAPC-7117 Evaluation Kit
  5. * based on the Embedian MXM-8x10 Computer on Module
  6. *
  7. * Copyright (C) 2009 Embedian Inc.
  8. * Copyright (C) 2009 TMT Services & Supplies (Pty) Ltd.
  9. *
  10. * 2007-09-04: eric miao <eric.y.miao@gmail.com>
  11. * rewrite to align with latest kernel
  12. *
  13. * 2010-01-09: Edwin Peer <epeer@tmtservices.co.za>
  14. * Hennie van der Merwe <hvdmerwe@tmtservices.co.za>
  15. * rework for upstream merge
  16. *
  17. * This program is free software; you can redistribute it and/or modify
  18. * it under the terms of the GNU General Public License version 2 as
  19. * published by the Free Software Foundation.
  20. */
  21. #include <linux/irq.h>
  22. #include <linux/platform_device.h>
  23. #include <linux/ata_platform.h>
  24. #include <linux/serial_8250.h>
  25. #include <linux/gpio.h>
  26. #include <asm/mach-types.h>
  27. #include <asm/mach/arch.h>
  28. #include <mach/pxa320.h>
  29. #include <mach/mxm8x10.h>
  30. #include "generic.h"
  31. /* IDE (PATA) Support */
  32. static struct pata_platform_info pata_platform_data = {
  33. .ioport_shift = 1
  34. };
  35. static struct resource capc7117_ide_resources[] = {
  36. [0] = {
  37. .start = 0x11000020,
  38. .end = 0x1100003f,
  39. .flags = IORESOURCE_MEM
  40. },
  41. [1] = {
  42. .start = 0x1100001c,
  43. .end = 0x1100001c,
  44. .flags = IORESOURCE_MEM
  45. },
  46. [2] = {
  47. .start = PXA_GPIO_TO_IRQ(mfp_to_gpio(MFP_PIN_GPIO76)),
  48. .end = PXA_GPIO_TO_IRQ(mfp_to_gpio(MFP_PIN_GPIO76)),
  49. .flags = IORESOURCE_IRQ | IRQF_TRIGGER_RISING
  50. }
  51. };
  52. static struct platform_device capc7117_ide_device = {
  53. .name = "pata_platform",
  54. .num_resources = ARRAY_SIZE(capc7117_ide_resources),
  55. .resource = capc7117_ide_resources,
  56. .dev = {
  57. .platform_data = &pata_platform_data,
  58. .coherent_dma_mask = ~0 /* grumble */
  59. }
  60. };
  61. static void __init capc7117_ide_init(void)
  62. {
  63. platform_device_register(&capc7117_ide_device);
  64. }
  65. /* TI16C752 UART support */
  66. #define TI16C752_FLAGS (UPF_BOOT_AUTOCONF | \
  67. UPF_IOREMAP | \
  68. UPF_BUGGY_UART | \
  69. UPF_SKIP_TEST)
  70. #define TI16C752_UARTCLK (22118400)
  71. static struct plat_serial8250_port ti16c752_platform_data[] = {
  72. [0] = {
  73. .mapbase = 0x14000000,
  74. .irq = PXA_GPIO_TO_IRQ(mfp_to_gpio(MFP_PIN_GPIO78)),
  75. .irqflags = IRQF_TRIGGER_RISING,
  76. .flags = TI16C752_FLAGS,
  77. .iotype = UPIO_MEM,
  78. .regshift = 1,
  79. .uartclk = TI16C752_UARTCLK
  80. },
  81. [1] = {
  82. .mapbase = 0x14000040,
  83. .irq = PXA_GPIO_TO_IRQ(mfp_to_gpio(MFP_PIN_GPIO79)),
  84. .irqflags = IRQF_TRIGGER_RISING,
  85. .flags = TI16C752_FLAGS,
  86. .iotype = UPIO_MEM,
  87. .regshift = 1,
  88. .uartclk = TI16C752_UARTCLK
  89. },
  90. [2] = {
  91. .mapbase = 0x14000080,
  92. .irq = PXA_GPIO_TO_IRQ(mfp_to_gpio(MFP_PIN_GPIO80)),
  93. .irqflags = IRQF_TRIGGER_RISING,
  94. .flags = TI16C752_FLAGS,
  95. .iotype = UPIO_MEM,
  96. .regshift = 1,
  97. .uartclk = TI16C752_UARTCLK
  98. },
  99. [3] = {
  100. .mapbase = 0x140000c0,
  101. .irq = PXA_GPIO_TO_IRQ(mfp_to_gpio(MFP_PIN_GPIO81)),
  102. .irqflags = IRQF_TRIGGER_RISING,
  103. .flags = TI16C752_FLAGS,
  104. .iotype = UPIO_MEM,
  105. .regshift = 1,
  106. .uartclk = TI16C752_UARTCLK
  107. },
  108. [4] = {
  109. /* end of array */
  110. }
  111. };
  112. static struct platform_device ti16c752_device = {
  113. .name = "serial8250",
  114. .id = PLAT8250_DEV_PLATFORM,
  115. .dev = {
  116. .platform_data = ti16c752_platform_data
  117. }
  118. };
  119. static void __init capc7117_uarts_init(void)
  120. {
  121. platform_device_register(&ti16c752_device);
  122. }
  123. static void __init capc7117_init(void)
  124. {
  125. /* Init CoM */
  126. mxm_8x10_barebones_init();
  127. /* Init evaluation board peripherals */
  128. mxm_8x10_ac97_init();
  129. mxm_8x10_usb_host_init();
  130. mxm_8x10_mmc_init();
  131. capc7117_uarts_init();
  132. capc7117_ide_init();
  133. }
  134. MACHINE_START(CAPC7117,
  135. "Embedian CAPC-7117 evaluation kit based on the MXM-8x10 CoM")
  136. .atag_offset = 0x100,
  137. .map_io = pxa3xx_map_io,
  138. .nr_irqs = PXA_NR_IRQS,
  139. .init_irq = pxa3xx_init_irq,
  140. .handle_irq = pxa3xx_handle_irq,
  141. .timer = &pxa_timer,
  142. .init_machine = capc7117_init,
  143. .restart = pxa_restart,
  144. MACHINE_END