sclp_sdias.c 6.7 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
M
Michael Holzheu 已提交
2
/*
3
 * SCLP "store data in absolute storage"
M
Michael Holzheu 已提交
4
 *
5
 * Copyright IBM Corp. 2003, 2013
M
Michael Holzheu 已提交
6 7 8
 * Author(s): Michael Holzheu
 */

9 10 11
#define KMSG_COMPONENT "sclp_sdias"
#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt

12
#include <linux/completion.h>
M
Michael Holzheu 已提交
13 14 15 16
#include <linux/sched.h>
#include <asm/sclp.h>
#include <asm/debug.h>
#include <asm/ipl.h>
17

18
#include "sclp_sdias.h"
M
Michael Holzheu 已提交
19 20 21 22 23 24 25 26 27 28
#include "sclp.h"
#include "sclp_rw.h"

#define TRACE(x...) debug_sprintf_event(sdias_dbf, 1, x)

#define SDIAS_RETRIES 300

static struct debug_info *sdias_dbf;

static struct sclp_register sclp_sdias_register = {
29
	.send_mask = EVTYP_SDIAS_MASK,
M
Michael Holzheu 已提交
30 31
};

32
static struct sdias_sccb *sclp_sdias_sccb;
33
static struct sdias_evbuf sdias_evbuf;
M
Michael Holzheu 已提交
34

35 36
static DECLARE_COMPLETION(evbuf_accepted);
static DECLARE_COMPLETION(evbuf_done);
M
Michael Holzheu 已提交
37 38
static DEFINE_MUTEX(sdias_mutex);

39 40 41 42 43 44 45 46 47 48 49 50 51 52
/*
 * Called by SCLP base when read event data has been completed (async mode only)
 */
static void sclp_sdias_receiver_fn(struct evbuf_header *evbuf)
{
	memcpy(&sdias_evbuf, evbuf,
	       min_t(unsigned long, sizeof(sdias_evbuf), evbuf->length));
	complete(&evbuf_done);
	TRACE("sclp_sdias_receiver_fn done\n");
}

/*
 * Called by SCLP base when sdias event has been accepted
 */
M
Michael Holzheu 已提交
53 54
static void sdias_callback(struct sclp_req *request, void *data)
{
55
	complete(&evbuf_accepted);
M
Michael Holzheu 已提交
56 57 58 59 60
	TRACE("callback done\n");
}

static int sdias_sclp_send(struct sclp_req *req)
{
61
	struct sdias_sccb *sccb = sclp_sdias_sccb;
M
Michael Holzheu 已提交
62 63 64 65 66 67 68 69 70 71
	int retries;
	int rc;

	for (retries = SDIAS_RETRIES; retries; retries--) {
		TRACE("add request\n");
		rc = sclp_add_request(req);
		if (rc) {
			/* not initiated, wait some time and retry */
			set_current_state(TASK_INTERRUPTIBLE);
			TRACE("add request failed: rc = %i\n",rc);
72
			schedule_timeout(msecs_to_jiffies(500));
M
Michael Holzheu 已提交
73 74 75
			continue;
		}
		/* initiated, wait for completion of service call */
76
		wait_for_completion(&evbuf_accepted);
M
Michael Holzheu 已提交
77 78 79 80
		if (req->status == SCLP_REQ_FAILED) {
			TRACE("sclp request failed\n");
			continue;
		}
81
		/* if not accepted, retry */
82
		if (!(sccb->evbuf.hdr.flags & 0x80)) {
83
			TRACE("sclp request failed: flags=%x\n",
84
			      sccb->evbuf.hdr.flags);
85 86 87 88 89 90
			continue;
		}
		/*
		 * for the sync interface the response is in the initial sccb
		 */
		if (!sclp_sdias_register.receiver_fn) {
91
			memcpy(&sdias_evbuf, &sccb->evbuf, sizeof(sdias_evbuf));
92 93 94 95 96
			TRACE("sync request done\n");
			return 0;
		}
		/* otherwise we wait for completion */
		wait_for_completion(&evbuf_done);
M
Michael Holzheu 已提交
97
		TRACE("request done\n");
98
		return 0;
M
Michael Holzheu 已提交
99
	}
100
	return -EIO;
M
Michael Holzheu 已提交
101 102 103 104 105 106 107
}

/*
 * Get number of blocks (4K) available in the HSA
 */
int sclp_sdias_blk_count(void)
{
108
	struct sdias_sccb *sccb = sclp_sdias_sccb;
M
Michael Holzheu 已提交
109 110 111 112 113
	struct sclp_req request;
	int rc;

	mutex_lock(&sdias_mutex);

114
	memset(sccb, 0, sizeof(*sccb));
M
Michael Holzheu 已提交
115 116
	memset(&request, 0, sizeof(request));

117 118 119 120 121 122 123
	sccb->hdr.length = sizeof(*sccb);
	sccb->evbuf.hdr.length = sizeof(struct sdias_evbuf);
	sccb->evbuf.hdr.type = EVTYP_SDIAS;
	sccb->evbuf.event_qual = SDIAS_EQ_SIZE;
	sccb->evbuf.data_id = SDIAS_DI_FCP_DUMP;
	sccb->evbuf.event_id = 4712;
	sccb->evbuf.dbs = 1;
M
Michael Holzheu 已提交
124

125
	request.sccb = sccb;
M
Michael Holzheu 已提交
126 127 128 129 130 131
	request.command = SCLP_CMDW_WRITE_EVENT_DATA;
	request.status = SCLP_REQ_FILLED;
	request.callback = sdias_callback;

	rc = sdias_sclp_send(&request);
	if (rc) {
132
		pr_err("sclp_send failed for get_nr_blocks\n");
M
Michael Holzheu 已提交
133 134
		goto out;
	}
135 136
	if (sccb->hdr.response_code != 0x0020) {
		TRACE("send failed: %x\n", sccb->hdr.response_code);
M
Michael Holzheu 已提交
137 138 139 140
		rc = -EIO;
		goto out;
	}

141
	switch (sdias_evbuf.event_status) {
M
Michael Holzheu 已提交
142
		case 0:
143
			rc = sdias_evbuf.blk_cnt;
M
Michael Holzheu 已提交
144 145
			break;
		default:
146
			pr_err("SCLP error: %x\n", sdias_evbuf.event_status);
M
Michael Holzheu 已提交
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
			rc = -EIO;
			goto out;
	}
	TRACE("%i blocks\n", rc);
out:
	mutex_unlock(&sdias_mutex);
	return rc;
}

/*
 * Copy from HSA to absolute storage (not reentrant):
 *
 * @dest     : Address of buffer where data should be copied
 * @start_blk: Start Block (beginning with 1)
 * @nr_blks  : Number of 4K blocks to copy
 *
 * Return Value: 0 : Requested 'number' of blocks of data copied
 *		 <0: ERROR - negative event status
 */
int sclp_sdias_copy(void *dest, int start_blk, int nr_blks)
{
168
	struct sdias_sccb *sccb = sclp_sdias_sccb;
M
Michael Holzheu 已提交
169 170 171 172 173
	struct sclp_req request;
	int rc;

	mutex_lock(&sdias_mutex);

174
	memset(sccb, 0, sizeof(*sccb));
M
Michael Holzheu 已提交
175 176
	memset(&request, 0, sizeof(request));

177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
	sccb->hdr.length = sizeof(*sccb);
	sccb->evbuf.hdr.length = sizeof(struct sdias_evbuf);
	sccb->evbuf.hdr.type = EVTYP_SDIAS;
	sccb->evbuf.hdr.flags = 0;
	sccb->evbuf.event_qual = SDIAS_EQ_STORE_DATA;
	sccb->evbuf.data_id = SDIAS_DI_FCP_DUMP;
	sccb->evbuf.event_id = 4712;
	sccb->evbuf.asa_size = SDIAS_ASA_SIZE_64;
	sccb->evbuf.event_status = 0;
	sccb->evbuf.blk_cnt = nr_blks;
	sccb->evbuf.asa = (unsigned long)dest;
	sccb->evbuf.fbn = start_blk;
	sccb->evbuf.lbn = 0;
	sccb->evbuf.dbs = 1;

	request.sccb	 = sccb;
M
Michael Holzheu 已提交
193 194 195 196 197 198
	request.command  = SCLP_CMDW_WRITE_EVENT_DATA;
	request.status	 = SCLP_REQ_FILLED;
	request.callback = sdias_callback;

	rc = sdias_sclp_send(&request);
	if (rc) {
199
		pr_err("sclp_send failed: %x\n", rc);
M
Michael Holzheu 已提交
200 201
		goto out;
	}
202 203
	if (sccb->hdr.response_code != 0x0020) {
		TRACE("copy failed: %x\n", sccb->hdr.response_code);
M
Michael Holzheu 已提交
204 205 206 207
		rc = -EIO;
		goto out;
	}

208
	switch (sdias_evbuf.event_status) {
209 210 211 212 213 214 215 216 217 218 219 220 221
	case SDIAS_EVSTATE_ALL_STORED:
		TRACE("all stored\n");
		break;
	case SDIAS_EVSTATE_PART_STORED:
		TRACE("part stored: %i\n", sdias_evbuf.blk_cnt);
		break;
	case SDIAS_EVSTATE_NO_DATA:
		TRACE("no data\n");
		/* fall through */
	default:
		pr_err("Error from SCLP while copying hsa. Event status = %x\n",
		       sdias_evbuf.event_status);
		rc = -EIO;
M
Michael Holzheu 已提交
222 223 224 225 226 227
	}
out:
	mutex_unlock(&sdias_mutex);
	return rc;
}

228
static int __init sclp_sdias_register_check(void)
M
Michael Holzheu 已提交
229 230 231
{
	int rc;

232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
	rc = sclp_register(&sclp_sdias_register);
	if (rc)
		return rc;
	if (sclp_sdias_blk_count() == 0) {
		sclp_unregister(&sclp_sdias_register);
		return -ENODEV;
	}
	return 0;
}

static int __init sclp_sdias_init_sync(void)
{
	TRACE("Try synchronous mode\n");
	sclp_sdias_register.receive_mask = 0;
	sclp_sdias_register.receiver_fn = NULL;
	return sclp_sdias_register_check();
}

static int __init sclp_sdias_init_async(void)
{
	TRACE("Try asynchronous mode\n");
	sclp_sdias_register.receive_mask = EVTYP_SDIAS_MASK;
	sclp_sdias_register.receiver_fn = sclp_sdias_receiver_fn;
	return sclp_sdias_register_check();
}

int __init sclp_sdias_init(void)
{
M
Michael Holzheu 已提交
260 261
	if (ipl_info.type != IPL_TYPE_FCP_DUMP)
		return 0;
262 263
	sclp_sdias_sccb = (void *) __get_free_page(GFP_KERNEL | GFP_DMA);
	BUG_ON(!sclp_sdias_sccb);
M
Michael Holzheu 已提交
264 265 266
	sdias_dbf = debug_register("dump_sdias", 4, 1, 4 * sizeof(long));
	debug_register_view(sdias_dbf, &debug_sprintf_view);
	debug_set_level(sdias_dbf, 6);
267 268 269 270 271
	if (sclp_sdias_init_sync() == 0)
		goto out;
	if (sclp_sdias_init_async() == 0)
		goto out;
	TRACE("init failed\n");
272
	free_page((unsigned long) sclp_sdias_sccb);
273 274
	return -ENODEV;
out:
M
Michael Holzheu 已提交
275 276 277 278
	TRACE("init done\n");
	return 0;
}

H
Heiko Carstens 已提交
279
void __exit sclp_sdias_exit(void)
M
Michael Holzheu 已提交
280 281 282 283
{
	debug_unregister(sdias_dbf);
	sclp_unregister(&sclp_sdias_register);
}