m8260_setup.c 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  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. identify_ppc_sys_by_name_and_id(BOARD_CHIP_NAME,
  58. in_be32(CPM_MAP_ADDR + CPM_IMMR_OFFSET));
  59. m82xx_board_setup();
  60. }
  61. /* The decrementer counts at the system (internal) clock frequency
  62. * divided by four.
  63. */
  64. static void __init
  65. m8260_calibrate_decr(void)
  66. {
  67. bd_t *binfo = (bd_t *)__res;
  68. int freq, divisor;
  69. freq = binfo->bi_busfreq;
  70. divisor = 4;
  71. tb_ticks_per_jiffy = freq / HZ / divisor;
  72. tb_to_us = mulhwu_scale_factor(freq / divisor, 1000000);
  73. }
  74. /* The 8260 has an internal 1-second timer update register that
  75. * we should use for this purpose.
  76. */
  77. static uint rtc_time;
  78. static int
  79. m8260_set_rtc_time(unsigned long time)
  80. {
  81. rtc_time = time;
  82. return(0);
  83. }
  84. static unsigned long
  85. m8260_get_rtc_time(void)
  86. {
  87. /* Get time from the RTC.
  88. */
  89. return((unsigned long)rtc_time);
  90. }
  91. #ifndef BOOTROM_RESTART_ADDR
  92. #warning "Using default BOOTROM_RESTART_ADDR!"
  93. #define BOOTROM_RESTART_ADDR 0xff000104
  94. #endif
  95. static void
  96. m8260_restart(char *cmd)
  97. {
  98. extern void m8260_gorom(bd_t *bi, uint addr);
  99. uint startaddr;
  100. /* Most boot roms have a warmstart as the second instruction
  101. * of the reset vector. If that doesn't work for you, change this
  102. * or the reboot program to send a proper address.
  103. */
  104. startaddr = BOOTROM_RESTART_ADDR;
  105. if (cmd != NULL) {
  106. if (!strncmp(cmd, "startaddr=", 10))
  107. startaddr = simple_strtoul(&cmd[10], NULL, 0);
  108. }
  109. m8260_gorom((void*)__pa(__res), startaddr);
  110. }
  111. static void
  112. m8260_halt(void)
  113. {
  114. local_irq_disable();
  115. while (1);
  116. }
  117. static void
  118. m8260_power_off(void)
  119. {
  120. m8260_halt();
  121. }
  122. static int
  123. m8260_show_cpuinfo(struct seq_file *m)
  124. {
  125. bd_t *bp = (bd_t *)__res;
  126. seq_printf(m, "vendor\t\t: %s\n"
  127. "machine\t\t: %s\n"
  128. "\n"
  129. "mem size\t\t: 0x%08x\n"
  130. "console baud\t\t: %d\n"
  131. "\n"
  132. "core clock\t: %u MHz\n"
  133. "CPM clock\t: %u MHz\n"
  134. "bus clock\t: %u MHz\n",
  135. CPUINFO_VENDOR, CPUINFO_MACHINE, bp->bi_memsize,
  136. bp->bi_baudrate, bp->bi_intfreq / 1000000,
  137. bp->bi_cpmfreq / 1000000, bp->bi_busfreq / 1000000);
  138. return 0;
  139. }
  140. /* Initialize the internal interrupt controller. The number of
  141. * interrupts supported can vary with the processor type, and the
  142. * 8260 family can have up to 64.
  143. * External interrupts can be either edge or level triggered, and
  144. * need to be initialized by the appropriate driver.
  145. */
  146. static void __init
  147. m8260_init_IRQ(void)
  148. {
  149. cpm2_init_IRQ();
  150. /* Initialize the default interrupt mapping priorities,
  151. * in case the boot rom changed something on us.
  152. */
  153. cpm2_immr->im_intctl.ic_siprr = 0x05309770;
  154. #if defined(CONFIG_PCI) && (defined(CONFIG_ADS8272) || defined(CONFIG_PQ2FADS))
  155. /* Initialize stuff for the 82xx CPLD IC and install demux */
  156. pq2pci_init_irq();
  157. #endif
  158. }
  159. /*
  160. * Same hack as 8xx
  161. */
  162. static unsigned long __init
  163. m8260_find_end_of_memory(void)
  164. {
  165. bd_t *binfo = (bd_t *)__res;
  166. return binfo->bi_memsize;
  167. }
  168. /* Map the IMMR, plus anything else we can cover
  169. * in that upper space according to the memory controller
  170. * chip select mapping. Grab another bunch of space
  171. * below that for stuff we can't cover in the upper.
  172. */
  173. static void __init
  174. m8260_map_io(void)
  175. {
  176. uint addr;
  177. /* Map IMMR region to a 256MB BAT */
  178. addr = (cpm2_immr != NULL) ? (uint)cpm2_immr : CPM_MAP_ADDR;
  179. io_block_mapping(addr, addr, 0x10000000, _PAGE_IO);
  180. /* Map I/O region to a 256MB BAT */
  181. io_block_mapping(IO_VIRT_ADDR, IO_PHYS_ADDR, 0x10000000, _PAGE_IO);
  182. }
  183. /* Place-holder for board-specific ppc_md hooking */
  184. void __attribute__ ((weak)) __init
  185. m82xx_board_init(void)
  186. {
  187. }
  188. /* Inputs:
  189. * r3 - Optional pointer to a board information structure.
  190. * r4 - Optional pointer to the physical starting address of the init RAM
  191. * disk.
  192. * r5 - Optional pointer to the physical ending address of the init RAM
  193. * disk.
  194. * r6 - Optional pointer to the physical starting address of any kernel
  195. * command-line parameters.
  196. * r7 - Optional pointer to the physical ending address of any kernel
  197. * command-line parameters.
  198. */
  199. void __init
  200. platform_init(unsigned long r3, unsigned long r4, unsigned long r5,
  201. unsigned long r6, unsigned long r7)
  202. {
  203. parse_bootinfo(find_bootinfo());
  204. if ( r3 )
  205. memcpy( (void *)__res,(void *)(r3+KERNELBASE), sizeof(bd_t) );
  206. #ifdef CONFIG_BLK_DEV_INITRD
  207. /* take care of initrd if we have one */
  208. if ( r4 ) {
  209. initrd_start = r4 + KERNELBASE;
  210. initrd_end = r5 + KERNELBASE;
  211. }
  212. #endif /* CONFIG_BLK_DEV_INITRD */
  213. /* take care of cmd line */
  214. if ( r6 ) {
  215. *(char *)(r7+KERNELBASE) = 0;
  216. strcpy(cmd_line, (char *)(r6+KERNELBASE));
  217. }
  218. ppc_md.setup_arch = m8260_setup_arch;
  219. ppc_md.show_cpuinfo = m8260_show_cpuinfo;
  220. ppc_md.init_IRQ = m8260_init_IRQ;
  221. ppc_md.get_irq = cpm2_get_irq;
  222. ppc_md.restart = m8260_restart;
  223. ppc_md.power_off = m8260_power_off;
  224. ppc_md.halt = m8260_halt;
  225. ppc_md.set_rtc_time = m8260_set_rtc_time;
  226. ppc_md.get_rtc_time = m8260_get_rtc_time;
  227. ppc_md.calibrate_decr = m8260_calibrate_decr;
  228. ppc_md.find_end_of_memory = m8260_find_end_of_memory;
  229. ppc_md.setup_io_mappings = m8260_map_io;
  230. /* Call back for board-specific settings and overrides. */
  231. m82xx_board_init();
  232. }