blob: 1ee8e82ba7102639cf7e109e3c2fe8e6297ec6b1 [file] [log] [blame]
Jack Steinera24e5e12009-04-02 16:59:06 -07001/*
2 * GRU KERNEL MCS INSTRUCTIONS
3 *
4 * Copyright (c) 2008 Silicon Graphics, Inc. All Rights Reserved.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
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
21#include <linux/kernel.h>
22#include "gru.h"
23#include "grulib.h"
24#include "grutables.h"
25
26/* 10 sec */
27#ifdef CONFIG_IA64
28#include <asm/processor.h>
29#define GRU_OPERATION_TIMEOUT (((cycles_t) local_cpu_data->itc_freq)*10)
Jack Steiner563447d2009-12-15 16:48:12 -080030#define CLKS2NSEC(c) ((c) *1000000000 / local_cpu_data->itc_freq)
Jack Steinera24e5e12009-04-02 16:59:06 -070031#else
32#include <asm/tsc.h>
33#define GRU_OPERATION_TIMEOUT ((cycles_t) tsc_khz*10*1000)
Jack Steiner563447d2009-12-15 16:48:12 -080034#define CLKS2NSEC(c) ((c) * 1000000 / tsc_khz)
Jack Steinera24e5e12009-04-02 16:59:06 -070035#endif
36
37/* Extract the status field from a kernel handle */
38#define GET_MSEG_HANDLE_STATUS(h) (((*(unsigned long *)(h)) >> 16) & 3)
39
Jack Steinere56484d2009-04-02 16:59:06 -070040struct mcs_op_statistic mcs_op_statistics[mcsop_last];
41
42static void update_mcs_stats(enum mcs_op op, unsigned long clks)
43{
Jack Steiner563447d2009-12-15 16:48:12 -080044 unsigned long nsec;
45
46 nsec = CLKS2NSEC(clks);
Jack Steinere56484d2009-04-02 16:59:06 -070047 atomic_long_inc(&mcs_op_statistics[op].count);
Jack Steiner563447d2009-12-15 16:48:12 -080048 atomic_long_add(nsec, &mcs_op_statistics[op].total);
49 if (mcs_op_statistics[op].max < nsec)
50 mcs_op_statistics[op].max = nsec;
Jack Steinere56484d2009-04-02 16:59:06 -070051}
52
Jack Steinera24e5e12009-04-02 16:59:06 -070053static void start_instruction(void *h)
54{
55 unsigned long *w0 = h;
56
Jack Steiner57ebb032009-12-15 16:48:12 -080057 wmb(); /* setting CMD/STATUS bits must be last */
58 *w0 = *w0 | 0x20001;
Jack Steinera24e5e12009-04-02 16:59:06 -070059 gru_flush_cache(h);
60}
61
Jack Steiner648eb8e2009-12-15 16:48:07 -080062static void report_instruction_timeout(void *h)
63{
64 unsigned long goff = GSEGPOFF((unsigned long)h);
65 char *id = "???";
66
67 if (TYPE_IS(CCH, goff))
68 id = "CCH";
69 else if (TYPE_IS(TGH, goff))
70 id = "TGH";
71 else if (TYPE_IS(TFH, goff))
72 id = "TFH";
73
74 panic(KERN_ALERT "GRU %p (%s) is malfunctioning\n", h, id);
75}
76
Jack Steinera24e5e12009-04-02 16:59:06 -070077static int wait_instruction_complete(void *h, enum mcs_op opc)
78{
79 int status;
Jack Steiner836ce672009-06-17 16:28:22 -070080 unsigned long start_time = get_cycles();
Jack Steinera24e5e12009-04-02 16:59:06 -070081
82 while (1) {
83 cpu_relax();
84 status = GET_MSEG_HANDLE_STATUS(h);
85 if (status != CCHSTATUS_ACTIVE)
86 break;
Jack Steiner648eb8e2009-12-15 16:48:07 -080087 if (GRU_OPERATION_TIMEOUT < (get_cycles() - start_time)) {
88 report_instruction_timeout(h);
89 start_time = get_cycles();
90 }
Jack Steinera24e5e12009-04-02 16:59:06 -070091 }
Jack Steinere56484d2009-04-02 16:59:06 -070092 if (gru_options & OPT_STATS)
93 update_mcs_stats(opc, get_cycles() - start_time);
Jack Steinera24e5e12009-04-02 16:59:06 -070094 return status;
95}
96
Jack Steiner6e910072009-06-17 16:28:21 -070097int cch_allocate(struct gru_context_configuration_handle *cch)
Jack Steinera24e5e12009-04-02 16:59:06 -070098{
Jack Steiner67bf04a2009-12-15 16:48:11 -080099 int ret;
100
Jack Steinera24e5e12009-04-02 16:59:06 -0700101 cch->opc = CCHOP_ALLOCATE;
102 start_instruction(cch);
Jack Steiner67bf04a2009-12-15 16:48:11 -0800103 ret = wait_instruction_complete(cch, cchop_allocate);
104
105 /*
106 * Stop speculation into the GSEG being mapped by the previous ALLOCATE.
107 * The GSEG memory does not exist until the ALLOCATE completes.
108 */
109 sync_core();
110 return ret;
Jack Steinera24e5e12009-04-02 16:59:06 -0700111}
112
113int cch_start(struct gru_context_configuration_handle *cch)
114{
115 cch->opc = CCHOP_START;
116 start_instruction(cch);
117 return wait_instruction_complete(cch, cchop_start);
118}
119
120int cch_interrupt(struct gru_context_configuration_handle *cch)
121{
122 cch->opc = CCHOP_INTERRUPT;
123 start_instruction(cch);
124 return wait_instruction_complete(cch, cchop_interrupt);
125}
126
127int cch_deallocate(struct gru_context_configuration_handle *cch)
128{
Jack Steiner67bf04a2009-12-15 16:48:11 -0800129 int ret;
130
Jack Steinera24e5e12009-04-02 16:59:06 -0700131 cch->opc = CCHOP_DEALLOCATE;
132 start_instruction(cch);
Jack Steiner67bf04a2009-12-15 16:48:11 -0800133 ret = wait_instruction_complete(cch, cchop_deallocate);
134
135 /*
136 * Stop speculation into the GSEG being unmapped by the previous
137 * DEALLOCATE.
138 */
139 sync_core();
140 return ret;
Jack Steinera24e5e12009-04-02 16:59:06 -0700141}
142
143int cch_interrupt_sync(struct gru_context_configuration_handle
144 *cch)
145{
146 cch->opc = CCHOP_INTERRUPT_SYNC;
147 start_instruction(cch);
148 return wait_instruction_complete(cch, cchop_interrupt_sync);
149}
150
151int tgh_invalidate(struct gru_tlb_global_handle *tgh,
152 unsigned long vaddr, unsigned long vaddrmask,
153 int asid, int pagesize, int global, int n,
154 unsigned short ctxbitmap)
155{
156 tgh->vaddr = vaddr;
157 tgh->asid = asid;
158 tgh->pagesize = pagesize;
159 tgh->n = n;
160 tgh->global = global;
161 tgh->vaddrmask = vaddrmask;
162 tgh->ctxbitmap = ctxbitmap;
163 tgh->opc = TGHOP_TLBINV;
164 start_instruction(tgh);
165 return wait_instruction_complete(tgh, tghop_invalidate);
166}
167
Jack Steinerc5502222009-12-15 16:48:13 -0800168int tfh_write_only(struct gru_tlb_fault_handle *tfh,
169 unsigned long paddr, int gaa,
170 unsigned long vaddr, int asid, int dirty,
171 int pagesize)
Jack Steinera24e5e12009-04-02 16:59:06 -0700172{
173 tfh->fillasid = asid;
174 tfh->fillvaddr = vaddr;
Jack Steinerc5502222009-12-15 16:48:13 -0800175 tfh->pfn = paddr >> GRU_PADDR_SHIFT;
176 tfh->gaa = gaa;
Jack Steinera24e5e12009-04-02 16:59:06 -0700177 tfh->dirty = dirty;
178 tfh->pagesize = pagesize;
179 tfh->opc = TFHOP_WRITE_ONLY;
180 start_instruction(tfh);
Jack Steinerc5502222009-12-15 16:48:13 -0800181 return wait_instruction_complete(tfh, tfhop_write_only);
Jack Steinera24e5e12009-04-02 16:59:06 -0700182}
183
184void tfh_write_restart(struct gru_tlb_fault_handle *tfh,
185 unsigned long paddr, int gaa,
186 unsigned long vaddr, int asid, int dirty,
187 int pagesize)
188{
189 tfh->fillasid = asid;
190 tfh->fillvaddr = vaddr;
191 tfh->pfn = paddr >> GRU_PADDR_SHIFT;
192 tfh->gaa = gaa;
193 tfh->dirty = dirty;
194 tfh->pagesize = pagesize;
195 tfh->opc = TFHOP_WRITE_RESTART;
196 start_instruction(tfh);
197}
198
Jack Steinera24e5e12009-04-02 16:59:06 -0700199void tfh_user_polling_mode(struct gru_tlb_fault_handle *tfh)
200{
201 tfh->opc = TFHOP_USER_POLLING_MODE;
202 start_instruction(tfh);
203}
204
205void tfh_exception(struct gru_tlb_fault_handle *tfh)
206{
207 tfh->opc = TFHOP_EXCEPTION;
208 start_instruction(tfh);
209}
210