spu_priv1_mmio.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. /*
  2. * spu hypervisor abstraction for direct hardware access.
  3. *
  4. * (C) Copyright IBM Deutschland Entwicklung GmbH 2005
  5. * Copyright 2006 Sony Corp.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; version 2 of the License.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. */
  20. #include <linux/interrupt.h>
  21. #include <linux/list.h>
  22. #include <linux/module.h>
  23. #include <linux/ptrace.h>
  24. #include <linux/wait.h>
  25. #include <linux/mm.h>
  26. #include <linux/io.h>
  27. #include <linux/mutex.h>
  28. #include <linux/device.h>
  29. #include <linux/sched.h>
  30. #include <asm/spu.h>
  31. #include <asm/spu_priv1.h>
  32. #include <asm/firmware.h>
  33. #include <asm/prom.h>
  34. #include "interrupt.h"
  35. #include "spu_priv1_mmio.h"
  36. static void int_mask_and(struct spu *spu, int class, u64 mask)
  37. {
  38. u64 old_mask;
  39. old_mask = in_be64(&spu->priv1->int_mask_RW[class]);
  40. out_be64(&spu->priv1->int_mask_RW[class], old_mask & mask);
  41. }
  42. static void int_mask_or(struct spu *spu, int class, u64 mask)
  43. {
  44. u64 old_mask;
  45. old_mask = in_be64(&spu->priv1->int_mask_RW[class]);
  46. out_be64(&spu->priv1->int_mask_RW[class], old_mask | mask);
  47. }
  48. static void int_mask_set(struct spu *spu, int class, u64 mask)
  49. {
  50. out_be64(&spu->priv1->int_mask_RW[class], mask);
  51. }
  52. static u64 int_mask_get(struct spu *spu, int class)
  53. {
  54. return in_be64(&spu->priv1->int_mask_RW[class]);
  55. }
  56. static void int_stat_clear(struct spu *spu, int class, u64 stat)
  57. {
  58. out_be64(&spu->priv1->int_stat_RW[class], stat);
  59. }
  60. static u64 int_stat_get(struct spu *spu, int class)
  61. {
  62. return in_be64(&spu->priv1->int_stat_RW[class]);
  63. }
  64. static void cpu_affinity_set(struct spu *spu, int cpu)
  65. {
  66. u64 target;
  67. u64 route;
  68. if (nr_cpus_node(spu->node)) {
  69. const struct cpumask *spumask = cpumask_of_node(spu->node),
  70. *cpumask = cpumask_of_node(cpu_to_node(cpu));
  71. if (!cpumask_intersects(spumask, cpumask))
  72. return;
  73. }
  74. target = iic_get_target_id(cpu);
  75. route = target << 48 | target << 32 | target << 16;
  76. out_be64(&spu->priv1->int_route_RW, route);
  77. }
  78. static u64 mfc_dar_get(struct spu *spu)
  79. {
  80. return in_be64(&spu->priv1->mfc_dar_RW);
  81. }
  82. static u64 mfc_dsisr_get(struct spu *spu)
  83. {
  84. return in_be64(&spu->priv1->mfc_dsisr_RW);
  85. }
  86. static void mfc_dsisr_set(struct spu *spu, u64 dsisr)
  87. {
  88. out_be64(&spu->priv1->mfc_dsisr_RW, dsisr);
  89. }
  90. static void mfc_sdr_setup(struct spu *spu)
  91. {
  92. out_be64(&spu->priv1->mfc_sdr_RW, mfspr(SPRN_SDR1));
  93. }
  94. static void mfc_sr1_set(struct spu *spu, u64 sr1)
  95. {
  96. out_be64(&spu->priv1->mfc_sr1_RW, sr1);
  97. }
  98. static u64 mfc_sr1_get(struct spu *spu)
  99. {
  100. return in_be64(&spu->priv1->mfc_sr1_RW);
  101. }
  102. static void mfc_tclass_id_set(struct spu *spu, u64 tclass_id)
  103. {
  104. out_be64(&spu->priv1->mfc_tclass_id_RW, tclass_id);
  105. }
  106. static u64 mfc_tclass_id_get(struct spu *spu)
  107. {
  108. return in_be64(&spu->priv1->mfc_tclass_id_RW);
  109. }
  110. static void tlb_invalidate(struct spu *spu)
  111. {
  112. out_be64(&spu->priv1->tlb_invalidate_entry_W, 0ul);
  113. }
  114. static void resource_allocation_groupID_set(struct spu *spu, u64 id)
  115. {
  116. out_be64(&spu->priv1->resource_allocation_groupID_RW, id);
  117. }
  118. static u64 resource_allocation_groupID_get(struct spu *spu)
  119. {
  120. return in_be64(&spu->priv1->resource_allocation_groupID_RW);
  121. }
  122. static void resource_allocation_enable_set(struct spu *spu, u64 enable)
  123. {
  124. out_be64(&spu->priv1->resource_allocation_enable_RW, enable);
  125. }
  126. static u64 resource_allocation_enable_get(struct spu *spu)
  127. {
  128. return in_be64(&spu->priv1->resource_allocation_enable_RW);
  129. }
  130. const struct spu_priv1_ops spu_priv1_mmio_ops =
  131. {
  132. .int_mask_and = int_mask_and,
  133. .int_mask_or = int_mask_or,
  134. .int_mask_set = int_mask_set,
  135. .int_mask_get = int_mask_get,
  136. .int_stat_clear = int_stat_clear,
  137. .int_stat_get = int_stat_get,
  138. .cpu_affinity_set = cpu_affinity_set,
  139. .mfc_dar_get = mfc_dar_get,
  140. .mfc_dsisr_get = mfc_dsisr_get,
  141. .mfc_dsisr_set = mfc_dsisr_set,
  142. .mfc_sdr_setup = mfc_sdr_setup,
  143. .mfc_sr1_set = mfc_sr1_set,
  144. .mfc_sr1_get = mfc_sr1_get,
  145. .mfc_tclass_id_set = mfc_tclass_id_set,
  146. .mfc_tclass_id_get = mfc_tclass_id_get,
  147. .tlb_invalidate = tlb_invalidate,
  148. .resource_allocation_groupID_set = resource_allocation_groupID_set,
  149. .resource_allocation_groupID_get = resource_allocation_groupID_get,
  150. .resource_allocation_enable_set = resource_allocation_enable_set,
  151. .resource_allocation_enable_get = resource_allocation_enable_get,
  152. };