Fix misspellings of "whether" in comments.
[deliverable/linux.git] / arch / powerpc / platforms / cell / spu_priv1_mmio.c
CommitLineData
f0831acc 1/*
540270d8
GL
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
f0831acc 19 */
540270d8 20
e28b0031
GL
21#include <linux/interrupt.h>
22#include <linux/list.h>
e28b0031 23#include <linux/ptrace.h>
e28b0031
GL
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>
7a214200 29#include <linux/sched.h>
f0831acc 30
f0831acc 31#include <asm/spu.h>
540270d8 32#include <asm/spu_priv1.h>
e28b0031
GL
33#include <asm/firmware.h>
34#include <asm/prom.h>
f0831acc 35
a91942ae 36#include "interrupt.h"
e28b0031
GL
37#include "spu_priv1_mmio.h"
38
540270d8 39static void int_mask_and(struct spu *spu, int class, u64 mask)
f0831acc
AB
40{
41 u64 old_mask;
42
c9868fe0
IK
43 old_mask = in_be64(&spu->priv1->int_mask_RW[class]);
44 out_be64(&spu->priv1->int_mask_RW[class], old_mask & mask);
f0831acc 45}
f0831acc 46
540270d8 47static void int_mask_or(struct spu *spu, int class, u64 mask)
f0831acc
AB
48{
49 u64 old_mask;
50
c9868fe0
IK
51 old_mask = in_be64(&spu->priv1->int_mask_RW[class]);
52 out_be64(&spu->priv1->int_mask_RW[class], old_mask | mask);
f0831acc 53}
f0831acc 54
540270d8 55static void int_mask_set(struct spu *spu, int class, u64 mask)
f0831acc 56{
c9868fe0 57 out_be64(&spu->priv1->int_mask_RW[class], mask);
f0831acc 58}
f0831acc 59
540270d8 60static u64 int_mask_get(struct spu *spu, int class)
f0831acc 61{
c9868fe0 62 return in_be64(&spu->priv1->int_mask_RW[class]);
f0831acc 63}
f0831acc 64
540270d8 65static void int_stat_clear(struct spu *spu, int class, u64 stat)
f0831acc 66{
c9868fe0 67 out_be64(&spu->priv1->int_stat_RW[class], stat);
f0831acc 68}
f0831acc 69
540270d8 70static u64 int_stat_get(struct spu *spu, int class)
f0831acc 71{
c9868fe0 72 return in_be64(&spu->priv1->int_stat_RW[class]);
f0831acc 73}
f0831acc 74
a91942ae 75static void cpu_affinity_set(struct spu *spu, int cpu)
f0831acc 76{
7a214200
LB
77 u64 target;
78 u64 route;
79
80 if (nr_cpus_node(spu->node)) {
86c6f274
RR
81 const struct cpumask *spumask = cpumask_of_node(spu->node),
82 *cpumask = cpumask_of_node(cpu_to_node(cpu));
7a214200 83
86c6f274 84 if (!cpumask_intersects(spumask, cpumask))
7a214200
LB
85 return;
86 }
87
88 target = iic_get_target_id(cpu);
89 route = target << 48 | target << 32 | target << 16;
c9868fe0 90 out_be64(&spu->priv1->int_route_RW, route);
f0831acc 91}
f0831acc 92
540270d8 93static u64 mfc_dar_get(struct spu *spu)
f0831acc 94{
c9868fe0 95 return in_be64(&spu->priv1->mfc_dar_RW);
f0831acc 96}
f0831acc 97
540270d8 98static u64 mfc_dsisr_get(struct spu *spu)
f0831acc 99{
c9868fe0 100 return in_be64(&spu->priv1->mfc_dsisr_RW);
f0831acc 101}
f0831acc 102
540270d8 103static void mfc_dsisr_set(struct spu *spu, u64 dsisr)
f0831acc 104{
c9868fe0 105 out_be64(&spu->priv1->mfc_dsisr_RW, dsisr);
f0831acc 106}
f0831acc 107
24f43b33 108static void mfc_sdr_setup(struct spu *spu)
f0831acc 109{
c9868fe0 110 out_be64(&spu->priv1->mfc_sdr_RW, mfspr(SPRN_SDR1));
f0831acc 111}
f0831acc 112
540270d8 113static void mfc_sr1_set(struct spu *spu, u64 sr1)
f0831acc 114{
c9868fe0 115 out_be64(&spu->priv1->mfc_sr1_RW, sr1);
f0831acc 116}
f0831acc 117
540270d8 118static u64 mfc_sr1_get(struct spu *spu)
f0831acc 119{
c9868fe0 120 return in_be64(&spu->priv1->mfc_sr1_RW);
f0831acc 121}
f0831acc 122
540270d8 123static void mfc_tclass_id_set(struct spu *spu, u64 tclass_id)
f0831acc 124{
c9868fe0 125 out_be64(&spu->priv1->mfc_tclass_id_RW, tclass_id);
f0831acc 126}
f0831acc 127
540270d8 128static u64 mfc_tclass_id_get(struct spu *spu)
f0831acc 129{
c9868fe0 130 return in_be64(&spu->priv1->mfc_tclass_id_RW);
f0831acc 131}
f0831acc 132
540270d8 133static void tlb_invalidate(struct spu *spu)
f0831acc 134{
c9868fe0 135 out_be64(&spu->priv1->tlb_invalidate_entry_W, 0ul);
f0831acc 136}
f0831acc 137
540270d8 138static void resource_allocation_groupID_set(struct spu *spu, u64 id)
f0831acc 139{
c9868fe0 140 out_be64(&spu->priv1->resource_allocation_groupID_RW, id);
f0831acc 141}
f0831acc 142
540270d8 143static u64 resource_allocation_groupID_get(struct spu *spu)
f0831acc 144{
c9868fe0 145 return in_be64(&spu->priv1->resource_allocation_groupID_RW);
f0831acc 146}
f0831acc 147
540270d8 148static void resource_allocation_enable_set(struct spu *spu, u64 enable)
f0831acc 149{
c9868fe0 150 out_be64(&spu->priv1->resource_allocation_enable_RW, enable);
f0831acc 151}
f0831acc 152
540270d8 153static u64 resource_allocation_enable_get(struct spu *spu)
f0831acc 154{
c9868fe0 155 return in_be64(&spu->priv1->resource_allocation_enable_RW);
f0831acc 156}
540270d8
GL
157
158const struct spu_priv1_ops spu_priv1_mmio_ops =
159{
160 .int_mask_and = int_mask_and,
161 .int_mask_or = int_mask_or,
162 .int_mask_set = int_mask_set,
163 .int_mask_get = int_mask_get,
164 .int_stat_clear = int_stat_clear,
165 .int_stat_get = int_stat_get,
a91942ae 166 .cpu_affinity_set = cpu_affinity_set,
540270d8
GL
167 .mfc_dar_get = mfc_dar_get,
168 .mfc_dsisr_get = mfc_dsisr_get,
169 .mfc_dsisr_set = mfc_dsisr_set,
24f43b33 170 .mfc_sdr_setup = mfc_sdr_setup,
540270d8
GL
171 .mfc_sr1_set = mfc_sr1_set,
172 .mfc_sr1_get = mfc_sr1_get,
173 .mfc_tclass_id_set = mfc_tclass_id_set,
174 .mfc_tclass_id_get = mfc_tclass_id_get,
175 .tlb_invalidate = tlb_invalidate,
176 .resource_allocation_groupID_set = resource_allocation_groupID_set,
177 .resource_allocation_groupID_get = resource_allocation_groupID_get,
178 .resource_allocation_enable_set = resource_allocation_enable_set,
179 .resource_allocation_enable_get = resource_allocation_enable_get,
180};
This page took 0.522065 seconds and 5 git commands to generate.