mpc8560_ads.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. /*
  2. * arch/ppc/platforms/85xx/mpc8560_ads.c
  3. *
  4. * MPC8560ADS board specific routines
  5. *
  6. * Maintainer: Kumar Gala <galak@kernel.crashing.org>
  7. *
  8. * Copyright 2004 Freescale Semiconductor Inc.
  9. *
  10. * This program is free software; you can redistribute it and/or modify it
  11. * under the terms of the GNU General Public License as published by the
  12. * Free Software Foundation; either version 2 of the License, or (at your
  13. * option) any later version.
  14. */
  15. #include <linux/config.h>
  16. #include <linux/stddef.h>
  17. #include <linux/kernel.h>
  18. #include <linux/init.h>
  19. #include <linux/errno.h>
  20. #include <linux/reboot.h>
  21. #include <linux/pci.h>
  22. #include <linux/kdev_t.h>
  23. #include <linux/major.h>
  24. #include <linux/console.h>
  25. #include <linux/delay.h>
  26. #include <linux/seq_file.h>
  27. #include <linux/root_dev.h>
  28. #include <linux/serial.h>
  29. #include <linux/tty.h> /* for linux/serial_core.h */
  30. #include <linux/serial_core.h>
  31. #include <linux/initrd.h>
  32. #include <linux/module.h>
  33. #include <linux/fsl_devices.h>
  34. #include <asm/system.h>
  35. #include <asm/pgtable.h>
  36. #include <asm/page.h>
  37. #include <asm/atomic.h>
  38. #include <asm/time.h>
  39. #include <asm/io.h>
  40. #include <asm/machdep.h>
  41. #include <asm/open_pic.h>
  42. #include <asm/bootinfo.h>
  43. #include <asm/pci-bridge.h>
  44. #include <asm/mpc85xx.h>
  45. #include <asm/irq.h>
  46. #include <asm/immap_85xx.h>
  47. #include <asm/kgdb.h>
  48. #include <asm/ppc_sys.h>
  49. #include <asm/cpm2.h>
  50. #include <mm/mmu_decl.h>
  51. #include <syslib/cpm2_pic.h>
  52. #include <syslib/ppc85xx_common.h>
  53. #include <syslib/ppc85xx_setup.h>
  54. static const char *GFAR_PHY_0 = "phy0:0";
  55. static const char *GFAR_PHY_1 = "phy0:1";
  56. static const char *GFAR_PHY_3 = "phy0:3";
  57. /* ************************************************************************
  58. *
  59. * Setup the architecture
  60. *
  61. */
  62. static void __init
  63. mpc8560ads_setup_arch(void)
  64. {
  65. bd_t *binfo = (bd_t *) __res;
  66. unsigned int freq;
  67. struct gianfar_platform_data *pdata;
  68. struct gianfar_mdio_data *mdata;
  69. cpm2_reset();
  70. /* get the core frequency */
  71. freq = binfo->bi_intfreq;
  72. if (ppc_md.progress)
  73. ppc_md.progress("mpc8560ads_setup_arch()", 0);
  74. /* Set loops_per_jiffy to a half-way reasonable value,
  75. for use until calibrate_delay gets called. */
  76. loops_per_jiffy = freq / HZ;
  77. #ifdef CONFIG_PCI
  78. /* setup PCI host bridges */
  79. mpc85xx_setup_hose();
  80. #endif
  81. /* setup the board related info for the MDIO bus */
  82. mdata = (struct gianfar_mdio_data *) ppc_sys_get_pdata(MPC85xx_MDIO);
  83. mdata->irq[0] = MPC85xx_IRQ_EXT5;
  84. mdata->irq[1] = MPC85xx_IRQ_EXT5;
  85. mdata->irq[2] = -1;
  86. mdata->irq[3] = MPC85xx_IRQ_EXT5;
  87. mdata->irq[31] = -1;
  88. mdata->paddr += binfo->bi_immr_base;
  89. /* setup the board related information for the enet controllers */
  90. pdata = (struct gianfar_platform_data *) ppc_sys_get_pdata(MPC85xx_TSEC1);
  91. if (pdata) {
  92. pdata->board_flags = FSL_GIANFAR_BRD_HAS_PHY_INTR;
  93. pdata->bus_id = GFAR_PHY_0;
  94. memcpy(pdata->mac_addr, binfo->bi_enetaddr, 6);
  95. }
  96. pdata = (struct gianfar_platform_data *) ppc_sys_get_pdata(MPC85xx_TSEC2);
  97. if (pdata) {
  98. pdata->board_flags = FSL_GIANFAR_BRD_HAS_PHY_INTR;
  99. pdata->bus_id = GFAR_PHY_1;
  100. memcpy(pdata->mac_addr, binfo->bi_enet1addr, 6);
  101. }
  102. #ifdef CONFIG_BLK_DEV_INITRD
  103. if (initrd_start)
  104. ROOT_DEV = Root_RAM0;
  105. else
  106. #endif
  107. #ifdef CONFIG_ROOT_NFS
  108. ROOT_DEV = Root_NFS;
  109. #else
  110. ROOT_DEV = Root_HDA1;
  111. #endif
  112. }
  113. static irqreturn_t cpm2_cascade(int irq, void *dev_id, struct pt_regs *regs)
  114. {
  115. while ((irq = cpm2_get_irq(regs)) >= 0)
  116. __do_IRQ(irq, regs);
  117. return IRQ_HANDLED;
  118. }
  119. static struct irqaction cpm2_irqaction = {
  120. .handler = cpm2_cascade,
  121. .flags = SA_INTERRUPT,
  122. .mask = CPU_MASK_NONE,
  123. .name = "cpm2_cascade",
  124. };
  125. static void __init
  126. mpc8560_ads_init_IRQ(void)
  127. {
  128. /* Setup OpenPIC */
  129. mpc85xx_ads_init_IRQ();
  130. /* Setup CPM2 PIC */
  131. cpm2_init_IRQ();
  132. setup_irq(MPC85xx_IRQ_CPM, &cpm2_irqaction);
  133. return;
  134. }
  135. /* ************************************************************************ */
  136. void __init
  137. platform_init(unsigned long r3, unsigned long r4, unsigned long r5,
  138. unsigned long r6, unsigned long r7)
  139. {
  140. /* parse_bootinfo must always be called first */
  141. parse_bootinfo(find_bootinfo());
  142. /*
  143. * If we were passed in a board information, copy it into the
  144. * residual data area.
  145. */
  146. if (r3) {
  147. memcpy((void *) __res, (void *) (r3 + KERNELBASE),
  148. sizeof (bd_t));
  149. }
  150. #if defined(CONFIG_BLK_DEV_INITRD)
  151. /*
  152. * If the init RAM disk has been configured in, and there's a valid
  153. * starting address for it, set it up.
  154. */
  155. if (r4) {
  156. initrd_start = r4 + KERNELBASE;
  157. initrd_end = r5 + KERNELBASE;
  158. }
  159. #endif /* CONFIG_BLK_DEV_INITRD */
  160. /* Copy the kernel command line arguments to a safe place. */
  161. if (r6) {
  162. *(char *) (r7 + KERNELBASE) = 0;
  163. strcpy(cmd_line, (char *) (r6 + KERNELBASE));
  164. }
  165. identify_ppc_sys_by_id(mfspr(SPRN_SVR));
  166. /* setup the PowerPC module struct */
  167. ppc_md.setup_arch = mpc8560ads_setup_arch;
  168. ppc_md.show_cpuinfo = mpc85xx_ads_show_cpuinfo;
  169. ppc_md.init_IRQ = mpc8560_ads_init_IRQ;
  170. ppc_md.get_irq = openpic_get_irq;
  171. ppc_md.restart = mpc85xx_restart;
  172. ppc_md.power_off = mpc85xx_power_off;
  173. ppc_md.halt = mpc85xx_halt;
  174. ppc_md.find_end_of_memory = mpc85xx_find_end_of_memory;
  175. ppc_md.time_init = NULL;
  176. ppc_md.set_rtc_time = NULL;
  177. ppc_md.get_rtc_time = NULL;
  178. ppc_md.calibrate_decr = mpc85xx_calibrate_decr;
  179. if (ppc_md.progress)
  180. ppc_md.progress("mpc8560ads_init(): exit", 0);
  181. return;
  182. }