m8260_setup.c 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. /*
  2. * arch/ppc/syslib/m8260_setup.c
  3. *
  4. * Copyright (C) 1995 Linus Torvalds
  5. * Adapted from 'alpha' version by Gary Thomas
  6. * Modified by Cort Dougan (cort@cs.nmt.edu)
  7. * Modified for MBX using prep/chrp/pmac functions by Dan (dmalek@jlc.net)
  8. * Further modified for generic 8xx and 8260 by Dan.
  9. */
  10. #include <linux/config.h>
  11. #include <linux/sched.h>
  12. #include <linux/kernel.h>
  13. #include <linux/mm.h>
  14. #include <linux/stddef.h>
  15. #include <linux/slab.h>
  16. #include <linux/init.h>
  17. #include <linux/initrd.h>
  18. #include <linux/root_dev.h>
  19. #include <linux/seq_file.h>
  20. #include <linux/irq.h>
  21. #include <asm/mmu.h>
  22. #include <asm/io.h>
  23. #include <asm/pgtable.h>
  24. #include <asm/mpc8260.h>
  25. #include <asm/cpm2.h>
  26. #include <asm/machdep.h>
  27. #include <asm/bootinfo.h>
  28. #include <asm/time.h>
  29. #include "cpm2_pic.h"
  30. unsigned char __res[sizeof(bd_t)];
  31. extern void pq2_find_bridges(void);
  32. extern void pq2pci_init_irq(void);
  33. extern void idma_pci9_init(void);
  34. /* Place-holder for board-specific init */
  35. void __attribute__ ((weak)) __init
  36. m82xx_board_setup(void)
  37. {
  38. }
  39. static void __init
  40. m8260_setup_arch(void)
  41. {
  42. /* Print out Vendor and Machine info. */
  43. printk(KERN_INFO "%s %s port\n", CPUINFO_VENDOR, CPUINFO_MACHINE);
  44. /* Reset the Communication Processor Module. */
  45. cpm2_reset();
  46. #ifdef CONFIG_8260_PCI9
  47. /* Initialise IDMA for PCI erratum workaround */
  48. idma_pci9_init();
  49. #endif
  50. #ifdef CONFIG_PCI_8260
  51. pq2_find_bridges();
  52. #endif
  53. #ifdef CONFIG_BLK_DEV_INITRD
  54. if (initrd_start)
  55. ROOT_DEV = Root_RAM0;
  56. #endif
  57. m82xx_board_setup();
  58. }
  59. /* The decrementer counts at the system (internal) clock frequency
  60. * divided by four.
  61. */
  62. static void __init
  63. m8260_calibrate_decr(void)
  64. {
  65. bd_t *binfo = (bd_t *)__res;
  66. int freq, divisor;
  67. freq = binfo->bi_busfreq;
  68. divisor = 4;
  69. tb_ticks_per_jiffy = freq / HZ / divisor;
  70. tb_to_us = mulhwu_scale_factor(freq / divisor, 1000000);
  71. }
  72. /* The 8260 has an internal 1-second timer update register that
  73. * we should use for this purpose.
  74. */
  75. static uint rtc_time;
  76. static int
  77. m8260_set_rtc_time(unsigned long time)
  78. {
  79. rtc_time = time;
  80. return(0);
  81. }
  82. static unsigned long
  83. m8260_get_rtc_time(void)
  84. {
  85. /* Get time from the RTC.
  86. */
  87. return((unsigned long)rtc_time);
  88. }
  89. #ifndef BOOTROM_RESTART_ADDR
  90. #warning "Using default BOOTROM_RESTART_ADDR!"
  91. #define BOOTROM_RESTART_ADDR 0xff000104
  92. #endif
  93. static void
  94. m8260_restart(char *cmd)
  95. {
  96. extern void m8260_gorom(bd_t *bi, uint addr);
  97. uint startaddr;
  98. /* Most boot roms have a warmstart as the second instruction
  99. * of the reset vector. If that doesn't work for you, change this
  100. * or the reboot program to send a proper address.
  101. */
  102. startaddr = BOOTROM_RESTART_ADDR;
  103. if (cmd != NULL) {
  104. if (!strncmp(cmd, "startaddr=", 10))
  105. startaddr = simple_strtoul(&cmd[10], NULL, 0);
  106. }
  107. m8260_gorom((void*)__pa(__res), startaddr);
  108. }
  109. static void
  110. m8260_halt(void)
  111. {
  112. local_irq_disable();
  113. while (1);
  114. }
  115. static void
  116. m8260_power_off(void)
  117. {
  118. m8260_halt();
  119. }
  120. static int
  121. m8260_show_cpuinfo(struct seq_file *m)
  122. {
  123. bd_t *bp = (bd_t *)__res;
  124. seq_printf(m, "vendor\t\t: %s\n"
  125. "machine\t\t: %s\n"
  126. "\n"
  127. "mem size\t\t: 0x%08x\n"
  128. "console baud\t\t: %d\n"
  129. "\n"
  130. "core clock\t: %u MHz\n"
  131. "CPM clock\t: %u MHz\n"
  132. "bus clock\t: %u MHz\n",
  133. CPUINFO_VENDOR, CPUINFO_MACHINE, bp->bi_memsize,
  134. bp->bi_baudrate, bp->bi_intfreq / 1000000,
  135. bp->bi_cpmfreq / 1000000, bp->bi_busfreq / 1000000);
  136. return 0;
  137. }
  138. /* Initialize the internal interrupt controller. The number of
  139. * interrupts supported can vary with the processor type, and the
  140. * 8260 family can have up to 64.
  141. * External interrupts can be either edge or level triggered, and
  142. * need to be initialized by the appropriate driver.
  143. */
  144. static void __init
  145. m8260_init_IRQ(void)
  146. {
  147. cpm2_init_IRQ();
  148. /* Initialize the default interrupt mapping priorities,
  149. * in case the boot rom changed something on us.
  150. */
  151. cpm2_immr->im_intctl.ic_siprr = 0x05309770;
  152. #if defined(CONFIG_PCI) && (defined(CONFIG_ADS8272) || defined(CONFIG_PQ2FADS))
  153. /* Initialize stuff for the 82xx CPLD IC and install demux */
  154. pq2pci_init_irq();
  155. #endif
  156. }
  157. /*
  158. * Same hack as 8xx
  159. */
  160. static unsigned long __init
  161. m8260_find_end_of_memory(void)
  162. {
  163. bd_t *binfo = (bd_t *)__res;
  164. return binfo->bi_memsize;
  165. }
  166. /* Map the IMMR, plus anything else we can cover
  167. * in that upper space according to the memory controller
  168. * chip select mapping. Grab another bunch of space
  169. * below that for stuff we can't cover in the upper.
  170. */
  171. static void __init
  172. m8260_map_io(void)
  173. {
  174. uint addr;
  175. /* Map IMMR region to a 256MB BAT */
  176. addr = (cpm2_immr != NULL) ? (uint)cpm2_immr : CPM_MAP_ADDR;
  177. io_block_mapping(addr, addr, 0x10000000, _PAGE_IO);
  178. /* Map I/O region to a 256MB BAT */
  179. io_block_mapping(IO_VIRT_ADDR, IO_PHYS_ADDR, 0x10000000, _PAGE_IO);
  180. }
  181. /* Place-holder for board-specific ppc_md hooking */
  182. void __attribute__ ((weak)) __init
  183. m82xx_board_init(void)
  184. {
  185. }
  186. /* Inputs:
  187. * r3 - Optional pointer to a board information structure.
  188. * r4 - Optional pointer to the physical starting address of the init RAM
  189. * disk.
  190. * r5 - Optional pointer to the physical ending address of the init RAM
  191. * disk.
  192. * r6 - Optional pointer to the physical starting address of any kernel
  193. * command-line parameters.
  194. * r7 - Optional pointer to the physical ending address of any kernel
  195. * command-line parameters.
  196. */
  197. void __init
  198. platform_init(unsigned long r3, unsigned long r4, unsigned long r5,
  199. unsigned long r6, unsigned long r7)
  200. {
  201. parse_bootinfo(find_bootinfo());
  202. if ( r3 )
  203. memcpy( (void *)__res,(void *)(r3+KERNELBASE), sizeof(bd_t) );
  204. #ifdef CONFIG_BLK_DEV_INITRD
  205. /* take care of initrd if we have one */
  206. if ( r4 ) {
  207. initrd_start = r4 + KERNELBASE;
  208. initrd_end = r5 + KERNELBASE;
  209. }
  210. #endif /* CONFIG_BLK_DEV_INITRD */
  211. /* take care of cmd line */
  212. if ( r6 ) {
  213. *(char *)(r7+KERNELBASE) = 0;
  214. strcpy(cmd_line, (char *)(r6+KERNELBASE));
  215. }
  216. ppc_md.setup_arch = m8260_setup_arch;
  217. ppc_md.show_cpuinfo = m8260_show_cpuinfo;
  218. ppc_md.init_IRQ = m8260_init_IRQ;
  219. ppc_md.get_irq = cpm2_get_irq;
  220. ppc_md.restart = m8260_restart;
  221. ppc_md.power_off = m8260_power_off;
  222. ppc_md.halt = m8260_halt;
  223. ppc_md.set_rtc_time = m8260_set_rtc_time;
  224. ppc_md.get_rtc_time = m8260_get_rtc_time;
  225. ppc_md.calibrate_decr = m8260_calibrate_decr;
  226. ppc_md.find_end_of_memory = m8260_find_end_of_memory;
  227. ppc_md.setup_io_mappings = m8260_map_io;
  228. /* Call back for board-specific settings and overrides. */
  229. m82xx_board_init();
  230. }