km83xx.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. /*
  2. * Copyright 2008-2011 DENX Software Engineering GmbH
  3. * Author: Heiko Schocher <hs@denx.de>
  4. *
  5. * Description:
  6. * Keymile 83xx platform specific routines.
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU General Public License as published by the
  10. * Free Software Foundation; either version 2 of the License, or (at your
  11. * option) any later version.
  12. */
  13. #include <linux/stddef.h>
  14. #include <linux/kernel.h>
  15. #include <linux/init.h>
  16. #include <linux/errno.h>
  17. #include <linux/reboot.h>
  18. #include <linux/pci.h>
  19. #include <linux/kdev_t.h>
  20. #include <linux/major.h>
  21. #include <linux/console.h>
  22. #include <linux/delay.h>
  23. #include <linux/seq_file.h>
  24. #include <linux/root_dev.h>
  25. #include <linux/initrd.h>
  26. #include <linux/of_platform.h>
  27. #include <linux/of_device.h>
  28. #include <linux/atomic.h>
  29. #include <asm/time.h>
  30. #include <asm/io.h>
  31. #include <asm/machdep.h>
  32. #include <asm/ipic.h>
  33. #include <asm/irq.h>
  34. #include <asm/prom.h>
  35. #include <asm/udbg.h>
  36. #include <sysdev/fsl_soc.h>
  37. #include <sysdev/fsl_pci.h>
  38. #include <asm/qe.h>
  39. #include <asm/qe_ic.h>
  40. #include "mpc83xx.h"
  41. #define SVR_REV(svr) (((svr) >> 0) & 0xFFFF) /* Revision field */
  42. /* ************************************************************************
  43. *
  44. * Setup the architecture
  45. *
  46. */
  47. static void __init mpc83xx_km_setup_arch(void)
  48. {
  49. #ifdef CONFIG_QUICC_ENGINE
  50. struct device_node *np;
  51. #endif
  52. if (ppc_md.progress)
  53. ppc_md.progress("kmpbec83xx_setup_arch()", 0);
  54. mpc83xx_setup_pci();
  55. #ifdef CONFIG_QUICC_ENGINE
  56. qe_reset();
  57. np = of_find_node_by_name(NULL, "par_io");
  58. if (np != NULL) {
  59. par_io_init(np);
  60. of_node_put(np);
  61. for_each_node_by_name(np, "spi")
  62. par_io_of_config(np);
  63. for_each_node_by_name(np, "ucc")
  64. par_io_of_config(np);
  65. }
  66. np = of_find_compatible_node(NULL, "network", "ucc_geth");
  67. if (np != NULL) {
  68. /*
  69. * handle mpc8360E Erratum QE_ENET10:
  70. * RGMII AC values do not meet the specification
  71. */
  72. uint svid = mfspr(SPRN_SVR);
  73. struct device_node *np_par;
  74. struct resource res;
  75. void __iomem *base;
  76. int ret;
  77. np_par = of_find_node_by_name(NULL, "par_io");
  78. if (np_par == NULL) {
  79. printk(KERN_WARNING "%s couldn;t find par_io node\n",
  80. __func__);
  81. return;
  82. }
  83. /* Map Parallel I/O ports registers */
  84. ret = of_address_to_resource(np_par, 0, &res);
  85. if (ret) {
  86. printk(KERN_WARNING "%s couldn;t map par_io registers\n",
  87. __func__);
  88. return;
  89. }
  90. base = ioremap(res.start, res.end - res.start + 1);
  91. /*
  92. * set output delay adjustments to default values according
  93. * table 5 in Errata Rev. 5, 9/2011:
  94. *
  95. * write 0b01 to UCC1 bits 18:19
  96. * write 0b01 to UCC2 option 1 bits 4:5
  97. * write 0b01 to UCC2 option 2 bits 16:17
  98. */
  99. clrsetbits_be32((base + 0xa8), 0x0c00f000, 0x04005000);
  100. /*
  101. * set output delay adjustments to default values according
  102. * table 3-13 in Reference Manual Rev.3 05/2010:
  103. *
  104. * write 0b01 to UCC2 option 2 bits 16:17
  105. * write 0b0101 to UCC1 bits 20:23
  106. * write 0b0101 to UCC2 option 1 bits 24:27
  107. */
  108. clrsetbits_be32((base + 0xac), 0x0000cff0, 0x00004550);
  109. if (SVR_REV(svid) == 0x0021) {
  110. /*
  111. * UCC2 option 1: write 0b1010 to bits 24:27
  112. * at address IMMRBAR+0x14AC
  113. */
  114. clrsetbits_be32((base + 0xac), 0x000000f0, 0x000000a0);
  115. } else if (SVR_REV(svid) == 0x0020) {
  116. /*
  117. * UCC1: write 0b11 to bits 18:19
  118. * at address IMMRBAR+0x14A8
  119. */
  120. setbits32((base + 0xa8), 0x00003000);
  121. /*
  122. * UCC2 option 1: write 0b11 to bits 4:5
  123. * at address IMMRBAR+0x14A8
  124. */
  125. setbits32((base + 0xa8), 0x0c000000);
  126. /*
  127. * UCC2 option 2: write 0b11 to bits 16:17
  128. * at address IMMRBAR+0x14AC
  129. */
  130. setbits32((base + 0xac), 0x0000c000);
  131. }
  132. iounmap(base);
  133. of_node_put(np_par);
  134. of_node_put(np);
  135. }
  136. #endif /* CONFIG_QUICC_ENGINE */
  137. }
  138. machine_device_initcall(mpc83xx_km, mpc83xx_declare_of_platform_devices);
  139. /* list of the supported boards */
  140. static char *board[] __initdata = {
  141. "Keymile,KMETER1",
  142. "Keymile,kmpbec8321",
  143. NULL
  144. };
  145. /*
  146. * Called very early, MMU is off, device-tree isn't unflattened
  147. */
  148. static int __init mpc83xx_km_probe(void)
  149. {
  150. unsigned long node = of_get_flat_dt_root();
  151. int i = 0;
  152. while (board[i]) {
  153. if (of_flat_dt_is_compatible(node, board[i]))
  154. break;
  155. i++;
  156. }
  157. return (board[i] != NULL);
  158. }
  159. define_machine(mpc83xx_km) {
  160. .name = "mpc83xx-km-platform",
  161. .probe = mpc83xx_km_probe,
  162. .setup_arch = mpc83xx_km_setup_arch,
  163. .init_IRQ = mpc83xx_ipic_and_qe_init_IRQ,
  164. .get_irq = ipic_get_irq,
  165. .restart = mpc83xx_restart,
  166. .time_init = mpc83xx_time_init,
  167. .calibrate_decr = generic_calibrate_decr,
  168. .progress = udbg_progress,
  169. };