setup.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. /*
  2. * Setup pointers to hardware-dependent routines.
  3. *
  4. * This file is subject to the terms and conditions of the GNU General Public
  5. * License. See the file "COPYING" in the main directory of this archive
  6. * for more details.
  7. *
  8. * Copyright (C) 1996, 1997, 1998, 2001, 07, 08 by Ralf Baechle
  9. * Copyright (C) 2001 MIPS Technologies, Inc.
  10. * Copyright (C) 2007 by Thomas Bogendoerfer
  11. */
  12. #include <linux/eisa.h>
  13. #include <linux/init.h>
  14. #include <linux/ioport.h>
  15. #include <linux/console.h>
  16. #include <linux/screen_info.h>
  17. #include <linux/platform_device.h>
  18. #include <linux/serial_8250.h>
  19. #include <asm/jazz.h>
  20. #include <asm/jazzdma.h>
  21. #include <asm/reboot.h>
  22. #include <asm/pgtable.h>
  23. extern asmlinkage void jazz_handle_int(void);
  24. extern void jazz_machine_restart(char *command);
  25. static struct resource jazz_io_resources[] = {
  26. {
  27. .start = 0x00,
  28. .end = 0x1f,
  29. .name = "dma1",
  30. .flags = IORESOURCE_BUSY
  31. }, {
  32. .start = 0x40,
  33. .end = 0x5f,
  34. .name = "timer",
  35. .flags = IORESOURCE_BUSY
  36. }, {
  37. .start = 0x80,
  38. .end = 0x8f,
  39. .name = "dma page reg",
  40. .flags = IORESOURCE_BUSY
  41. }, {
  42. .start = 0xc0,
  43. .end = 0xdf,
  44. .name = "dma2",
  45. .flags = IORESOURCE_BUSY
  46. }
  47. };
  48. void __init plat_mem_setup(void)
  49. {
  50. int i;
  51. /* Map 0xe0000000 -> 0x0:800005C0, 0xe0010000 -> 0x1:30000580 */
  52. add_wired_entry(0x02000017, 0x03c00017, 0xe0000000, PM_64K);
  53. /* Map 0xe2000000 -> 0x0:900005C0, 0xe3010000 -> 0x0:910005C0 */
  54. add_wired_entry(0x02400017, 0x02440017, 0xe2000000, PM_16M);
  55. /* Map 0xe4000000 -> 0x0:600005C0, 0xe4100000 -> 400005C0 */
  56. add_wired_entry(0x01800017, 0x01000017, 0xe4000000, PM_4M);
  57. set_io_port_base(JAZZ_PORT_BASE);
  58. #ifdef CONFIG_EISA
  59. EISA_bus = 1;
  60. #endif
  61. /* request I/O space for devices used on all i[345]86 PCs */
  62. for (i = 0; i < ARRAY_SIZE(jazz_io_resources); i++)
  63. request_resource(&ioport_resource, jazz_io_resources + i);
  64. /* The RTC is outside the port address space */
  65. _machine_restart = jazz_machine_restart;
  66. #ifdef CONFIG_VT
  67. screen_info = (struct screen_info) {
  68. 0, 0, /* orig-x, orig-y */
  69. 0, /* unused */
  70. 0, /* orig_video_page */
  71. 0, /* orig_video_mode */
  72. 160, /* orig_video_cols */
  73. 0, 0, 0, /* unused, ega_bx, unused */
  74. 64, /* orig_video_lines */
  75. 0, /* orig_video_isVGA */
  76. 16 /* orig_video_points */
  77. };
  78. #endif
  79. add_preferred_console("ttyS", 0, "9600");
  80. }
  81. #ifdef CONFIG_OLIVETTI_M700
  82. #define UART_CLK 1843200
  83. #else
  84. /* Some Jazz machines seem to have an 8MHz crystal clock but I don't know
  85. exactly which ones ... XXX */
  86. #define UART_CLK (8000000 / 16) /* ( 3072000 / 16) */
  87. #endif
  88. #define MEMPORT(_base, _irq) \
  89. { \
  90. .mapbase = (_base), \
  91. .membase = (void *)(_base), \
  92. .irq = (_irq), \
  93. .uartclk = UART_CLK, \
  94. .iotype = UPIO_MEM, \
  95. .flags = UPF_BOOT_AUTOCONF, \
  96. }
  97. static struct plat_serial8250_port jazz_serial_data[] = {
  98. MEMPORT(JAZZ_SERIAL1_BASE, JAZZ_SERIAL1_IRQ),
  99. MEMPORT(JAZZ_SERIAL2_BASE, JAZZ_SERIAL2_IRQ),
  100. { },
  101. };
  102. static struct platform_device jazz_serial8250_device = {
  103. .name = "serial8250",
  104. .id = PLAT8250_DEV_PLATFORM,
  105. .dev = {
  106. .platform_data = jazz_serial_data,
  107. },
  108. };
  109. static struct resource jazz_esp_rsrc[] = {
  110. {
  111. .start = JAZZ_SCSI_BASE,
  112. .end = JAZZ_SCSI_BASE + 31,
  113. .flags = IORESOURCE_MEM
  114. },
  115. {
  116. .start = JAZZ_SCSI_DMA,
  117. .end = JAZZ_SCSI_DMA,
  118. .flags = IORESOURCE_MEM
  119. },
  120. {
  121. .start = JAZZ_SCSI_IRQ,
  122. .end = JAZZ_SCSI_IRQ,
  123. .flags = IORESOURCE_IRQ
  124. }
  125. };
  126. static struct platform_device jazz_esp_pdev = {
  127. .name = "jazz_esp",
  128. .num_resources = ARRAY_SIZE(jazz_esp_rsrc),
  129. .resource = jazz_esp_rsrc
  130. };
  131. static struct resource jazz_sonic_rsrc[] = {
  132. {
  133. .start = JAZZ_ETHERNET_BASE,
  134. .end = JAZZ_ETHERNET_BASE + 0xff,
  135. .flags = IORESOURCE_MEM
  136. },
  137. {
  138. .start = JAZZ_ETHERNET_IRQ,
  139. .end = JAZZ_ETHERNET_IRQ,
  140. .flags = IORESOURCE_IRQ
  141. }
  142. };
  143. static struct platform_device jazz_sonic_pdev = {
  144. .name = "jazzsonic",
  145. .num_resources = ARRAY_SIZE(jazz_sonic_rsrc),
  146. .resource = jazz_sonic_rsrc
  147. };
  148. static struct resource jazz_cmos_rsrc[] = {
  149. {
  150. .start = 0x70,
  151. .end = 0x71,
  152. .flags = IORESOURCE_IO
  153. },
  154. {
  155. .start = 8,
  156. .end = 8,
  157. .flags = IORESOURCE_IRQ
  158. }
  159. };
  160. static struct platform_device jazz_cmos_pdev = {
  161. .name = "rtc_cmos",
  162. .num_resources = ARRAY_SIZE(jazz_cmos_rsrc),
  163. .resource = jazz_cmos_rsrc
  164. };
  165. static struct platform_device pcspeaker_pdev = {
  166. .name = "pcspkr",
  167. .id = -1,
  168. };
  169. static int __init jazz_setup_devinit(void)
  170. {
  171. platform_device_register(&jazz_serial8250_device);
  172. platform_device_register(&jazz_esp_pdev);
  173. platform_device_register(&jazz_sonic_pdev);
  174. platform_device_register(&jazz_cmos_pdev);
  175. platform_device_register(&pcspeaker_pdev);
  176. return 0;
  177. }
  178. device_initcall(jazz_setup_devinit);