edac_pci.c 11.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
/*
 * EDAC PCI component
 *
 * Author: Dave Jiang <djiang@mvista.com>
 *
 * 2007 (c) MontaVista Software, Inc. This file is licensed under
 * the terms of the GNU General Public License version 2. This program
 * is licensed "as is" without any warranty of any kind, whether express
 * or implied.
 *
 */
#include <linux/module.h>
#include <linux/types.h>
#include <linux/smp.h>
#include <linux/init.h>
#include <linux/sysctl.h>
#include <linux/highmem.h>
#include <linux/timer.h>
#include <linux/slab.h>
#include <linux/spinlock.h>
#include <linux/list.h>
#include <linux/ctype.h>
#include <linux/workqueue.h>
#include <asm/uaccess.h>
#include <asm/page.h>

#include "edac_core.h"
#include "edac_module.h"

static DEFINE_MUTEX(edac_pci_ctls_mutex);
31
static LIST_HEAD(edac_pci_list);
H
Harry Ciao 已提交
32
static atomic_t pci_indexes = ATOMIC_INIT(0);
33 34

/*
D
Doug Thompson 已提交
35 36 37 38 39
 * edac_pci_alloc_ctl_info
 *
 *	The alloc() function for the 'edac_pci' control info
 *	structure. The chip driver will allocate one of these for each
 *	edac_pci it is going to control/register with the EDAC CORE.
40
 */
41
struct edac_pci_ctl_info *edac_pci_alloc_ctl_info(unsigned int sz_pvt,
42
						const char *edac_pci_name)
43 44
{
	struct edac_pci_ctl_info *pci;
45
	void *p = NULL, *pvt;
46 47
	unsigned int size;

48
	edac_dbg(1, "\n");
D
Doug Thompson 已提交
49

50 51
	pci = edac_align_ptr(&p, sizeof(*pci), 1);
	pvt = edac_align_ptr(&p, 1, sz_pvt);
52 53
	size = ((unsigned long)pvt) + sz_pvt;

D
Doug Thompson 已提交
54 55 56
	/* Alloc the needed control struct memory */
	pci = kzalloc(size, GFP_KERNEL);
	if (pci  == NULL)
57 58
		return NULL;

D
Doug Thompson 已提交
59
	/* Now much private space */
60 61 62 63 64
	pvt = sz_pvt ? ((char *)pci) + ((unsigned long)pvt) : NULL;

	pci->pvt_info = pvt;
	pci->op_state = OP_ALLOC;

65
	snprintf(pci->name, strlen(edac_pci_name) + 1, "%s", edac_pci_name);
66 67 68 69 70 71 72

	return pci;
}
EXPORT_SYMBOL_GPL(edac_pci_alloc_ctl_info);

/*
 * edac_pci_free_ctl_info()
D
Doug Thompson 已提交
73 74 75
 *
 *	Last action on the pci control structure.
 *
J
Joe Perches 已提交
76
 *	call the remove sysfs information, which will unregister
D
Doug Thompson 已提交
77 78 79
 *	this control struct's kobj. When that kobj's ref count
 *	goes to zero, its release function will be call and then
 *	kfree() the memory.
80 81 82
 */
void edac_pci_free_ctl_info(struct edac_pci_ctl_info *pci)
{
83
	edac_dbg(1, "\n");
84

D
Doug Thompson 已提交
85 86
	edac_pci_remove_sysfs(pci);
}
87 88 89 90 91
EXPORT_SYMBOL_GPL(edac_pci_free_ctl_info);

/*
 * find_edac_pci_by_dev()
 * 	scans the edac_pci list for a specific 'struct device *'
D
Doug Thompson 已提交
92 93
 *
 *	return NULL if not found, or return control struct pointer
94
 */
95
static struct edac_pci_ctl_info *find_edac_pci_by_dev(struct device *dev)
96 97 98 99
{
	struct edac_pci_ctl_info *pci;
	struct list_head *item;

100
	edac_dbg(1, "\n");
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124

	list_for_each(item, &edac_pci_list) {
		pci = list_entry(item, struct edac_pci_ctl_info, link);

		if (pci->dev == dev)
			return pci;
	}

	return NULL;
}

/*
 * add_edac_pci_to_global_list
 * 	Before calling this function, caller must assign a unique value to
 * 	edac_dev->pci_idx.
 * 	Return:
 * 		0 on success
 * 		1 on failure
 */
static int add_edac_pci_to_global_list(struct edac_pci_ctl_info *pci)
{
	struct list_head *item, *insert_before;
	struct edac_pci_ctl_info *rover;

125
	edac_dbg(1, "\n");
D
Doug Thompson 已提交
126

127 128 129
	insert_before = &edac_pci_list;

	/* Determine if already on the list */
D
Doug Thompson 已提交
130 131
	rover = find_edac_pci_by_dev(pci->dev);
	if (unlikely(rover != NULL))
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
		goto fail0;

	/* Insert in ascending order by 'pci_idx', so find position */
	list_for_each(item, &edac_pci_list) {
		rover = list_entry(item, struct edac_pci_ctl_info, link);

		if (rover->pci_idx >= pci->pci_idx) {
			if (unlikely(rover->pci_idx == pci->pci_idx))
				goto fail1;

			insert_before = item;
			break;
		}
	}

	list_add_tail_rcu(&pci->link, insert_before);
	return 0;

150
fail0:
151
	edac_printk(KERN_WARNING, EDAC_PCI,
152
		"%s (%s) %s %s already assigned %d\n",
153
		dev_name(rover->dev), edac_dev_name(rover),
154
		rover->mod_name, rover->ctl_name, rover->pci_idx);
155 156
	return 1;

157
fail1:
158
	edac_printk(KERN_WARNING, EDAC_PCI,
159 160 161
		"but in low-level driver: attempt to assign\n"
		"\tduplicate pci_idx %d in %s()\n", rover->pci_idx,
		__func__);
162 163 164 165 166
	return 1;
}

/*
 * del_edac_pci_from_global_list
D
Doug Thompson 已提交
167 168
 *
 *	remove the PCI control struct from the global list
169 170 171 172
 */
static void del_edac_pci_from_global_list(struct edac_pci_ctl_info *pci)
{
	list_del_rcu(&pci->link);
173 174 175 176 177 178

	/* these are for safe removal of devices from global list while
	 * NMI handlers may be traversing list
	 */
	synchronize_rcu();
	INIT_LIST_HEAD(&pci->link);
179 180
}

181 182 183
#if 0
/* Older code, but might use in the future */

184 185 186 187 188 189 190 191 192
/*
 * edac_pci_find()
 * 	Search for an edac_pci_ctl_info structure whose index is 'idx'
 *
 * If found, return a pointer to the structure
 * Else return NULL.
 *
 * Caller must hold pci_ctls_mutex.
 */
193
struct edac_pci_ctl_info *edac_pci_find(int idx)
194 195 196 197 198 199 200 201 202 203 204 205
{
	struct list_head *item;
	struct edac_pci_ctl_info *pci;

	/* Iterage over list, looking for exact match of ID */
	list_for_each(item, &edac_pci_list) {
		pci = list_entry(item, struct edac_pci_ctl_info, link);

		if (pci->pci_idx >= idx) {
			if (pci->pci_idx == idx)
				return pci;

206
			/* not on list, so terminate early */
207 208 209 210 211 212 213
			break;
		}
	}

	return NULL;
}
EXPORT_SYMBOL_GPL(edac_pci_find);
214
#endif
215 216 217

/*
 * edac_pci_workq_function()
D
Doug Thompson 已提交
218 219 220
 *
 * 	periodic function that performs the operation
 *	scheduled by a workq request, for a given PCI control struct
221 222 223
 */
static void edac_pci_workq_function(struct work_struct *work_req)
{
J
Jean Delvare 已提交
224
	struct delayed_work *d_work = to_delayed_work(work_req);
225
	struct edac_pci_ctl_info *pci = to_edac_pci_ctl_work(d_work);
D
Doug Thompson 已提交
226 227
	int msec;
	unsigned long delay;
228

229
	edac_dbg(3, "checking\n");
230

D
Doug Thompson 已提交
231
	mutex_lock(&edac_pci_ctls_mutex);
232

D
Doug Thompson 已提交
233 234 235 236 237 238 239 240 241
	if (pci->op_state == OP_RUNNING_POLL) {
		/* we might be in POLL mode, but there may NOT be a poll func
		 */
		if ((pci->edac_check != NULL) && edac_pci_get_check_errors())
			pci->edac_check(pci);

		/* if we are on a one second period, then use round */
		msec = edac_pci_get_poll_msec();
		if (msec == 1000)
242
			delay = round_jiffies_relative(msecs_to_jiffies(msec));
D
Doug Thompson 已提交
243 244 245 246 247 248
		else
			delay = msecs_to_jiffies(msec);

		/* Reschedule only if we are in POLL mode */
		queue_delayed_work(edac_workqueue, &pci->work, delay);
	}
249

D
Doug Thompson 已提交
250
	mutex_unlock(&edac_pci_ctls_mutex);
251 252 253 254 255 256
}

/*
 * edac_pci_workq_setup()
 * 	initialize a workq item for this edac_pci instance
 * 	passing in the new delay period in msec
D
Doug Thompson 已提交
257 258 259
 *
 *	locking model:
 *		called when 'edac_pci_ctls_mutex' is locked
260 261
 */
static void edac_pci_workq_setup(struct edac_pci_ctl_info *pci,
262
				 unsigned int msec)
263
{
264
	edac_dbg(0, "\n");
265 266

	INIT_DELAYED_WORK(&pci->work, edac_pci_workq_function);
D
Dave Jiang 已提交
267
	queue_delayed_work(edac_workqueue, &pci->work,
268
			msecs_to_jiffies(edac_pci_get_poll_msec()));
269 270 271 272 273 274 275 276 277 278
}

/*
 * edac_pci_workq_teardown()
 * 	stop the workq processing on this edac_pci instance
 */
static void edac_pci_workq_teardown(struct edac_pci_ctl_info *pci)
{
	int status;

279
	edac_dbg(0, "\n");
D
Doug Thompson 已提交
280

281 282 283 284 285 286 287
	status = cancel_delayed_work(&pci->work);
	if (status == 0)
		flush_workqueue(edac_workqueue);
}

/*
 * edac_pci_reset_delay_period
D
Doug Thompson 已提交
288 289 290 291
 *
 *	called with a new period value for the workq period
 *	a) stop current workq timer
 *	b) restart workq timer with new value
292 293
 */
void edac_pci_reset_delay_period(struct edac_pci_ctl_info *pci,
294
				 unsigned long value)
295
{
296
	edac_dbg(0, "\n");
297 298 299

	edac_pci_workq_teardown(pci);

D
Doug Thompson 已提交
300 301 302
	/* need to lock for the setup */
	mutex_lock(&edac_pci_ctls_mutex);

303 304
	edac_pci_workq_setup(pci, value);

D
Doug Thompson 已提交
305
	mutex_unlock(&edac_pci_ctls_mutex);
306 307 308
}
EXPORT_SYMBOL_GPL(edac_pci_reset_delay_period);

H
Harry Ciao 已提交
309 310 311 312 313 314 315 316 317 318 319 320 321
/*
 * edac_pci_alloc_index: Allocate a unique PCI index number
 *
 * Return:
 *      allocated index number
 *
 */
int edac_pci_alloc_index(void)
{
	return atomic_inc_return(&pci_indexes) - 1;
}
EXPORT_SYMBOL_GPL(edac_pci_alloc_index);

322 323 324 325 326 327 328 329 330 331 332 333 334 335
/*
 * edac_pci_add_device: Insert the 'edac_dev' structure into the
 * edac_pci global list and create sysfs entries associated with
 * edac_pci structure.
 * @pci: pointer to the edac_device structure to be added to the list
 * @edac_idx: A unique numeric identifier to be assigned to the
 * 'edac_pci' structure.
 *
 * Return:
 *      0       Success
 *      !0      Failure
 */
int edac_pci_add_device(struct edac_pci_ctl_info *pci, int edac_idx)
{
336
	edac_dbg(0, "\n");
337 338

	pci->pci_idx = edac_idx;
D
Doug Thompson 已提交
339
	pci->start_time = jiffies;
340

D
Doug Thompson 已提交
341
	mutex_lock(&edac_pci_ctls_mutex);
342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360

	if (add_edac_pci_to_global_list(pci))
		goto fail0;

	if (edac_pci_create_sysfs(pci)) {
		edac_pci_printk(pci, KERN_WARNING,
				"failed to create sysfs pci\n");
		goto fail1;
	}

	if (pci->edac_check != NULL) {
		pci->op_state = OP_RUNNING_POLL;

		edac_pci_workq_setup(pci, 1000);
	} else {
		pci->op_state = OP_RUNNING_INTERRUPT;
	}

	edac_pci_printk(pci, KERN_INFO,
361 362 363
		"Giving out device to module %s controller %s: DEV %s (%s)\n",
		pci->mod_name, pci->ctl_name, pci->dev_name,
		edac_op_state_to_string(pci->op_state));
364

D
Doug Thompson 已提交
365
	mutex_unlock(&edac_pci_ctls_mutex);
366 367
	return 0;

D
Doug Thompson 已提交
368
	/* error unwind stack */
369
fail1:
370
	del_edac_pci_from_global_list(pci);
371
fail0:
D
Doug Thompson 已提交
372
	mutex_unlock(&edac_pci_ctls_mutex);
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
	return 1;
}
EXPORT_SYMBOL_GPL(edac_pci_add_device);

/*
 * edac_pci_del_device()
 * 	Remove sysfs entries for specified edac_pci structure and
 * 	then remove edac_pci structure from global list
 *
 * @dev:
 * 	Pointer to 'struct device' representing edac_pci structure
 * 	to remove
 *
 * Return:
 * 	Pointer to removed edac_pci structure,
 * 	or NULL if device not found
 */
390
struct edac_pci_ctl_info *edac_pci_del_device(struct device *dev)
391 392 393
{
	struct edac_pci_ctl_info *pci;

394
	edac_dbg(0, "\n");
395

D
Doug Thompson 已提交
396
	mutex_lock(&edac_pci_ctls_mutex);
397

D
Doug Thompson 已提交
398 399 400 401 402 403
	/* ensure the control struct is on the global list
	 * if not, then leave
	 */
	pci = find_edac_pci_by_dev(dev);
	if (pci  == NULL) {
		mutex_unlock(&edac_pci_ctls_mutex);
404 405 406 407 408 409 410
		return NULL;
	}

	pci->op_state = OP_OFFLINE;

	del_edac_pci_from_global_list(pci);

D
Doug Thompson 已提交
411 412 413 414
	mutex_unlock(&edac_pci_ctls_mutex);

	/* stop the workq timer */
	edac_pci_workq_teardown(pci);
415 416

	edac_printk(KERN_INFO, EDAC_PCI,
417
		"Removed device %d for %s %s: DEV %s\n",
418
		pci->pci_idx, pci->mod_name, pci->ctl_name, edac_dev_name(pci));
419 420 421 422 423

	return pci;
}
EXPORT_SYMBOL_GPL(edac_pci_del_device);

D
Doug Thompson 已提交
424 425 426 427 428
/*
 * edac_pci_generic_check
 *
 *	a Generic parity check API
 */
429
static void edac_pci_generic_check(struct edac_pci_ctl_info *pci)
430
{
431
	edac_dbg(4, "\n");
432 433 434
	edac_pci_do_parity_check();
}

D
Doug Thompson 已提交
435
/* free running instance index counter */
436
static int edac_pci_idx;
437 438 439 440 441 442
#define EDAC_PCI_GENCTL_NAME	"EDAC PCI controller"

struct edac_pci_gen_data {
	int edac_idx;
};

D
Doug Thompson 已提交
443 444 445 446 447 448 449 450 451 452 453
/*
 * edac_pci_create_generic_ctl
 *
 *	A generic constructor for a PCI parity polling device
 *	Some systems have more than one domain of PCI busses.
 *	For systems with one domain, then this API will
 *	provide for a generic poller.
 *
 *	This routine calls the edac_pci_alloc_ctl_info() for
 *	the generic device, with default values
 */
454
struct edac_pci_ctl_info *edac_pci_create_generic_ctl(struct device *dev,
455
						const char *mod_name)
456 457 458 459 460 461 462 463 464 465 466 467 468 469 470
{
	struct edac_pci_ctl_info *pci;
	struct edac_pci_gen_data *pdata;

	pci = edac_pci_alloc_ctl_info(sizeof(*pdata), EDAC_PCI_GENCTL_NAME);
	if (!pci)
		return NULL;

	pdata = pci->pvt_info;
	pci->dev = dev;
	dev_set_drvdata(pci->dev, pci);
	pci->dev_name = pci_name(to_pci_dev(dev));

	pci->mod_name = mod_name;
	pci->ctl_name = EDAC_PCI_GENCTL_NAME;
471 472
	if (edac_op_state == EDAC_OPSTATE_POLL)
		pci->edac_check = edac_pci_generic_check;
473 474 475 476

	pdata->edac_idx = edac_pci_idx++;

	if (edac_pci_add_device(pci, pdata->edac_idx) > 0) {
477
		edac_dbg(3, "failed edac_pci_add_device()\n");
478 479 480 481 482 483 484 485
		edac_pci_free_ctl_info(pci);
		return NULL;
	}

	return pci;
}
EXPORT_SYMBOL_GPL(edac_pci_create_generic_ctl);

D
Doug Thompson 已提交
486 487 488 489 490
/*
 * edac_pci_release_generic_ctl
 *
 *	The release function of a generic EDAC PCI polling device
 */
491 492
void edac_pci_release_generic_ctl(struct edac_pci_ctl_info *pci)
{
493
	edac_dbg(0, "pci mod=%s\n", pci->mod_name);
D
Doug Thompson 已提交
494

495 496 497 498
	edac_pci_del_device(pci->dev);
	edac_pci_free_ctl_info(pci);
}
EXPORT_SYMBOL_GPL(edac_pci_release_generic_ctl);