setup.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  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. .orig_video_cols = 160,
  69. .orig_video_lines = 64,
  70. .orig_video_points = 16,
  71. };
  72. #endif
  73. add_preferred_console("ttyS", 0, "9600");
  74. }
  75. #ifdef CONFIG_OLIVETTI_M700
  76. #define UART_CLK 1843200
  77. #else
  78. /* Some Jazz machines seem to have an 8MHz crystal clock but I don't know
  79. exactly which ones ... XXX */
  80. #define UART_CLK (8000000 / 16) /* ( 3072000 / 16) */
  81. #endif
  82. #define MEMPORT(_base, _irq) \
  83. { \
  84. .mapbase = (_base), \
  85. .membase = (void *)(_base), \
  86. .irq = (_irq), \
  87. .uartclk = UART_CLK, \
  88. .iotype = UPIO_MEM, \
  89. .flags = UPF_BOOT_AUTOCONF, \
  90. }
  91. static struct plat_serial8250_port jazz_serial_data[] = {
  92. MEMPORT(JAZZ_SERIAL1_BASE, JAZZ_SERIAL1_IRQ),
  93. MEMPORT(JAZZ_SERIAL2_BASE, JAZZ_SERIAL2_IRQ),
  94. { },
  95. };
  96. static struct platform_device jazz_serial8250_device = {
  97. .name = "serial8250",
  98. .id = PLAT8250_DEV_PLATFORM,
  99. .dev = {
  100. .platform_data = jazz_serial_data,
  101. },
  102. };
  103. static struct resource jazz_esp_rsrc[] = {
  104. {
  105. .start = JAZZ_SCSI_BASE,
  106. .end = JAZZ_SCSI_BASE + 31,
  107. .flags = IORESOURCE_MEM
  108. },
  109. {
  110. .start = JAZZ_SCSI_DMA,
  111. .end = JAZZ_SCSI_DMA,
  112. .flags = IORESOURCE_MEM
  113. },
  114. {
  115. .start = JAZZ_SCSI_IRQ,
  116. .end = JAZZ_SCSI_IRQ,
  117. .flags = IORESOURCE_IRQ
  118. }
  119. };
  120. static struct platform_device jazz_esp_pdev = {
  121. .name = "jazz_esp",
  122. .num_resources = ARRAY_SIZE(jazz_esp_rsrc),
  123. .resource = jazz_esp_rsrc
  124. };
  125. static struct resource jazz_sonic_rsrc[] = {
  126. {
  127. .start = JAZZ_ETHERNET_BASE,
  128. .end = JAZZ_ETHERNET_BASE + 0xff,
  129. .flags = IORESOURCE_MEM
  130. },
  131. {
  132. .start = JAZZ_ETHERNET_IRQ,
  133. .end = JAZZ_ETHERNET_IRQ,
  134. .flags = IORESOURCE_IRQ
  135. }
  136. };
  137. static struct platform_device jazz_sonic_pdev = {
  138. .name = "jazzsonic",
  139. .num_resources = ARRAY_SIZE(jazz_sonic_rsrc),
  140. .resource = jazz_sonic_rsrc
  141. };
  142. static struct resource jazz_cmos_rsrc[] = {
  143. {
  144. .start = 0x70,
  145. .end = 0x71,
  146. .flags = IORESOURCE_IO
  147. },
  148. {
  149. .start = 8,
  150. .end = 8,
  151. .flags = IORESOURCE_IRQ
  152. }
  153. };
  154. static struct platform_device jazz_cmos_pdev = {
  155. .name = "rtc_cmos",
  156. .num_resources = ARRAY_SIZE(jazz_cmos_rsrc),
  157. .resource = jazz_cmos_rsrc
  158. };
  159. static struct platform_device pcspeaker_pdev = {
  160. .name = "pcspkr",
  161. .id = -1,
  162. };
  163. static int __init jazz_setup_devinit(void)
  164. {
  165. platform_device_register(&jazz_serial8250_device);
  166. platform_device_register(&jazz_esp_pdev);
  167. platform_device_register(&jazz_sonic_pdev);
  168. platform_device_register(&jazz_cmos_pdev);
  169. platform_device_register(&pcspeaker_pdev);
  170. return 0;
  171. }
  172. device_initcall(jazz_setup_devinit);