setup.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. /*
  2. * This file is subject to the terms and conditions of the GNU General Public
  3. * License. See the file "COPYING" in the main directory of this archive
  4. * for more details.
  5. *
  6. * arch/sh64/mach-sim/setup.c
  7. *
  8. * ST50 Simulator Platform Support
  9. *
  10. * This file handles the architecture-dependent parts of initialization
  11. *
  12. * Copyright (C) 2000, 2001 Paolo Alberelli
  13. *
  14. * lethal@linux-sh.org: 15th May 2003
  15. * Use the generic procfs cpuinfo interface, just return a valid board name.
  16. */
  17. #include <linux/stddef.h>
  18. #include <linux/init.h>
  19. #include <linux/config.h>
  20. #include <linux/mm.h>
  21. #include <linux/bootmem.h>
  22. #include <linux/delay.h>
  23. #include <linux/kernel.h>
  24. #include <asm/addrspace.h>
  25. #include <asm/processor.h>
  26. #include <asm/platform.h>
  27. #include <asm/io.h>
  28. #include <asm/irq.h>
  29. #include <asm/page.h>
  30. #ifdef CONFIG_BLK_DEV_INITRD
  31. #include "../rootfs/rootfs.h"
  32. #endif
  33. static __init void platform_monitor(void);
  34. static __init void platform_setup(void);
  35. static __init void platform_reserve(void);
  36. #define PHYS_MEMORY CONFIG_MEMORY_SIZE_IN_MB*1024*1024
  37. #if (PHYS_MEMORY < P1SEG_FOOTPRINT_RAM)
  38. #error "Invalid kernel configuration. Physical memory below footprint requirements."
  39. #endif
  40. #define RAM_DISK_START CONFIG_MEMORY_START+P1SEG_INITRD_BLOCK /* Top of 4MB */
  41. #ifdef PLATFORM_ROMFS_SIZE
  42. #define RAM_DISK_SIZE (PAGE_ALIGN(PLATFORM_ROMFS_SIZE)) /* Variable Top */
  43. #if ((RAM_DISK_START + RAM_DISK_SIZE) > (CONFIG_MEMORY_START + PHYS_MEMORY))
  44. #error "Invalid kernel configuration. ROM RootFS exceeding physical memory."
  45. #endif
  46. #else
  47. #define RAM_DISK_SIZE P1SEG_INITRD_BLOCK_SIZE /* Top of 4MB */
  48. #endif
  49. #define RES_COUNT(res) ((sizeof((res))/sizeof(struct resource)))
  50. /*
  51. * Platform Dependent Interrupt Priorities.
  52. */
  53. /* Using defaults defined in irq.h */
  54. #define RES NO_PRIORITY /* Disabled */
  55. #define IR0 IRL0_PRIORITY /* IRLs */
  56. #define IR1 IRL1_PRIORITY
  57. #define IR2 IRL2_PRIORITY
  58. #define IR3 IRL3_PRIORITY
  59. #define PCA INTA_PRIORITY /* PCI Ints */
  60. #define PCB INTB_PRIORITY
  61. #define PCC INTC_PRIORITY
  62. #define PCD INTD_PRIORITY
  63. #define SER TOP_PRIORITY
  64. #define ERR TOP_PRIORITY
  65. #define PW0 TOP_PRIORITY
  66. #define PW1 TOP_PRIORITY
  67. #define PW2 TOP_PRIORITY
  68. #define PW3 TOP_PRIORITY
  69. #define DM0 NO_PRIORITY /* DMA Ints */
  70. #define DM1 NO_PRIORITY
  71. #define DM2 NO_PRIORITY
  72. #define DM3 NO_PRIORITY
  73. #define DAE NO_PRIORITY
  74. #define TU0 TIMER_PRIORITY /* TMU Ints */
  75. #define TU1 NO_PRIORITY
  76. #define TU2 NO_PRIORITY
  77. #define TI2 NO_PRIORITY
  78. #define ATI NO_PRIORITY /* RTC Ints */
  79. #define PRI NO_PRIORITY
  80. #define CUI RTC_PRIORITY
  81. #define ERI SCIF_PRIORITY /* SCIF Ints */
  82. #define RXI SCIF_PRIORITY
  83. #define BRI SCIF_PRIORITY
  84. #define TXI SCIF_PRIORITY
  85. #define ITI TOP_PRIORITY /* WDT Ints */
  86. /*
  87. * Platform dependent structures: maps and parms block.
  88. */
  89. struct resource io_resources[] = {
  90. /* Nothing yet .. */
  91. };
  92. struct resource kram_resources[] = {
  93. { "Kernel code", 0, 0 }, /* These must be last in the array */
  94. { "Kernel data", 0, 0 } /* These must be last in the array */
  95. };
  96. struct resource xram_resources[] = {
  97. /* Nothing yet .. */
  98. };
  99. struct resource rom_resources[] = {
  100. /* Nothing yet .. */
  101. };
  102. struct sh64_platform platform_parms = {
  103. .readonly_rootfs = 1,
  104. .initial_root_dev = 0x0100,
  105. .loader_type = 1,
  106. .initrd_start = RAM_DISK_START,
  107. .initrd_size = RAM_DISK_SIZE,
  108. .io_res_p = io_resources,
  109. .io_res_count = RES_COUNT(io_resources),
  110. .kram_res_p = kram_resources,
  111. .kram_res_count = RES_COUNT(kram_resources),
  112. .xram_res_p = xram_resources,
  113. .xram_res_count = RES_COUNT(xram_resources),
  114. .rom_res_p = rom_resources,
  115. .rom_res_count = RES_COUNT(rom_resources),
  116. };
  117. int platform_int_priority[NR_IRQS] = {
  118. IR0, IR1, IR2, IR3, PCA, PCB, PCC, PCD, /* IRQ 0- 7 */
  119. RES, RES, RES, RES, SER, ERR, PW3, PW2, /* IRQ 8-15 */
  120. PW1, PW0, DM0, DM1, DM2, DM3, DAE, RES, /* IRQ 16-23 */
  121. RES, RES, RES, RES, RES, RES, RES, RES, /* IRQ 24-31 */
  122. TU0, TU1, TU2, TI2, ATI, PRI, CUI, ERI, /* IRQ 32-39 */
  123. RXI, BRI, TXI, RES, RES, RES, RES, RES, /* IRQ 40-47 */
  124. RES, RES, RES, RES, RES, RES, RES, RES, /* IRQ 48-55 */
  125. RES, RES, RES, RES, RES, RES, RES, ITI, /* IRQ 56-63 */
  126. };
  127. void __init platform_setup(void)
  128. {
  129. /* Simulator platform leaves the decision to head.S */
  130. platform_parms.fpu_flags = fpu_in_use;
  131. }
  132. void __init platform_monitor(void)
  133. {
  134. /* Nothing yet .. */
  135. }
  136. void __init platform_reserve(void)
  137. {
  138. /* Nothing yet .. */
  139. }
  140. const char *get_system_type(void)
  141. {
  142. return "SH-5 Simulator";
  143. }