pcmcia_resource.c 28.6 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
/*
 * PCMCIA 16-bit resource management functions
 *
 * The initial developer of the original code is David A. Hinds
 * <dahinds@users.sourceforge.net>.  Portions created by David A. Hinds
 * are Copyright (C) 1999 David A. Hinds.  All Rights Reserved.
 *
 * Copyright (C) 1999	     David A. Hinds
 * Copyright (C) 2004-2005   Dominik Brodowski
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 */

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/interrupt.h>
#include <linux/delay.h>
#include <linux/pci.h>
#include <linux/device.h>
23
#include <linux/netdevice.h>
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40

#include <pcmcia/cs_types.h>
#include <pcmcia/ss.h>
#include <pcmcia/cs.h>
#include <pcmcia/cistpl.h>
#include <pcmcia/cisreg.h>
#include <pcmcia/ds.h>

#include "cs_internal.h"


/* Access speed for IO windows */
static int io_speed = 0;
module_param(io_speed, int, 0444);


#ifdef CONFIG_PCMCIA_PROBE
41
#include <asm/irq.h>
42 43 44 45 46 47 48 49 50 51
/* mask of IRQs already reserved by other cards, we should avoid using them */
static u8 pcmcia_used_irq[NR_IRQS];
#endif


/** alloc_io_space
 *
 * Special stuff for managing IO windows, because they are scarce
 */

52 53
static int alloc_io_space(struct pcmcia_socket *s, u_int attr,
			  unsigned int *base, unsigned int num, u_int lines)
54 55
{
	int i;
56
	unsigned int try, align;
57 58 59 60

	align = (*base) ? (lines ? 1<<lines : 0) : 1;
	if (align && (align < num)) {
		if (*base) {
61
			dev_dbg(&s->dev, "odd IO request: num %#x align %#x\n",
62 63 64 65 66 67
			       num, align);
			align = 0;
		} else
			while (align && (align < num)) align <<= 1;
	}
	if (*base & ~(align-1)) {
68
		dev_dbg(&s->dev, "odd IO request: base %#x align %#x\n",
69 70 71 72 73 74 75 76 77 78 79 80
		       *base, align);
		align = 0;
	}
	if ((s->features & SS_CAP_STATIC_MAP) && s->io_offset) {
		*base = s->io_offset | (*base & 0x0fff);
		return 0;
	}
	/* Check for an already-allocated window that must conflict with
	 * what was asked for.  It is a hack because it does not catch all
	 * potential conflicts, just the most obvious ones.
	 */
	for (i = 0; i < MAX_IO_WIN; i++)
81
		if ((s->io[i].res) && *base &&
82
		    ((s->io[i].res->start & (align-1)) == *base))
83 84
			return 1;
	for (i = 0; i < MAX_IO_WIN; i++) {
85
		if (!s->io[i].res) {
86 87
			s->io[i].res = pcmcia_find_io_region(*base, num, align, s);
			if (s->io[i].res) {
88 89 90
				*base = s->io[i].res->start;
				s->io[i].res->flags = (s->io[i].res->flags & ~IORESOURCE_BITS) | (attr & IORESOURCE_BITS);
				s->io[i].InUse = num;
91 92 93
				break;
			} else
				return 1;
94
		} else if ((s->io[i].res->flags & IORESOURCE_BITS) != (attr & IORESOURCE_BITS))
95 96
			continue;
		/* Try to extend top of window */
97
		try = s->io[i].res->end + 1;
98 99 100 101 102 103 104 105
		if ((*base == 0) || (*base == try))
			if (pcmcia_adjust_io_region(s->io[i].res, s->io[i].res->start,
						    s->io[i].res->end + num, s) == 0) {
				*base = try;
				s->io[i].InUse += num;
				break;
			}
		/* Try to extend bottom of window */
106
		try = s->io[i].res->start - num;
107 108 109
		if ((*base == 0) || (*base == try))
			if (pcmcia_adjust_io_region(s->io[i].res, s->io[i].res->start - num,
						    s->io[i].res->end, s) == 0) {
110
				*base = try;
111 112 113 114 115 116 117 118
				s->io[i].InUse += num;
				break;
			}
	}
	return (i == MAX_IO_WIN);
} /* alloc_io_space */


119 120
static void release_io_space(struct pcmcia_socket *s, unsigned int base,
			     unsigned int num)
121 122 123 124
{
	int i;

	for (i = 0; i < MAX_IO_WIN; i++) {
125 126 127 128
		if (!s->io[i].res)
			continue;
		if ((s->io[i].res->start <= base) &&
		    (s->io[i].res->end >= base+num-1)) {
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
			s->io[i].InUse -= num;
			/* Free the window if no one else is using it */
			if (s->io[i].InUse == 0) {
				release_resource(s->io[i].res);
				kfree(s->io[i].res);
				s->io[i].res = NULL;
			}
		}
	}
} /* release_io_space */


/** pccard_access_configuration_register
 *
 * Access_configuration_register() reads and writes configuration
 * registers in attribute memory.  Memory window 0 is reserved for
 * this and the tuple reading services.
 */

148
int pcmcia_access_configuration_register(struct pcmcia_device *p_dev,
149 150
					 conf_reg_t *reg)
{
151
	struct pcmcia_socket *s;
152 153 154 155
	config_t *c;
	int addr;
	u_char val;

156
	if (!p_dev || !p_dev->function_config)
D
Dominik Brodowski 已提交
157
		return -EINVAL;
158

159 160
	s = p_dev->socket;
	c = p_dev->function_config;
161

162 163
	if (!(c->state & CONFIG_LOCKED)) {
		dev_dbg(&s->dev, "Configuration isnt't locked\n");
164
		return -EACCES;
165
	}
166 167 168 169 170 171 172 173 174 175 176 177 178

	addr = (c->ConfigBase + reg->Offset) >> 1;

	switch (reg->Action) {
	case CS_READ:
		pcmcia_read_cis_mem(s, 1, addr, 1, &val);
		reg->Value = val;
		break;
	case CS_WRITE:
		val = reg->Value;
		pcmcia_write_cis_mem(s, 1, addr, 1, &val);
		break;
	default:
179
		dev_dbg(&s->dev, "Invalid conf register request\n");
180
		return -EINVAL;
181 182
		break;
	}
D
Dominik Brodowski 已提交
183
	return 0;
184
} /* pcmcia_access_configuration_register */
D
Dominik Brodowski 已提交
185 186
EXPORT_SYMBOL(pcmcia_access_configuration_register);

187

188 189
int pcmcia_map_mem_page(struct pcmcia_device *p_dev, window_handle_t wh,
			memreq_t *req)
190
{
191
	struct pcmcia_socket *s = p_dev->socket;
192

193 194
	wh--;
	if (wh >= MAX_WIN)
195
		return -EINVAL;
196
	if (req->Page != 0) {
197
		dev_dbg(&s->dev, "failure: requested page is zero\n");
198 199
		return -EINVAL;
	}
200 201
	s->win[wh].card_start = req->CardOffset;
	if (s->ops->set_mem_map(s, &s->win[wh]) != 0) {
202
		dev_dbg(&s->dev, "failed to set_mem_map\n");
203 204
		return -EIO;
	}
D
Dominik Brodowski 已提交
205
	return 0;
206 207 208 209 210 211 212 213
} /* pcmcia_map_mem_page */
EXPORT_SYMBOL(pcmcia_map_mem_page);


/** pcmcia_modify_configuration
 *
 * Modify a locked socket configuration
 */
214
int pcmcia_modify_configuration(struct pcmcia_device *p_dev,
215 216 217 218 219
				modconf_t *mod)
{
	struct pcmcia_socket *s;
	config_t *c;

220
	s = p_dev->socket;
221 222
	c = p_dev->function_config;

223 224
	if (!(s->state & SOCKET_PRESENT)) {
		dev_dbg(&s->dev, "No card present\n");
D
Dominik Brodowski 已提交
225
		return -ENODEV;
226 227 228
	}
	if (!(c->state & CONFIG_LOCKED)) {
		dev_dbg(&s->dev, "Configuration isnt't locked\n");
229
		return -EACCES;
230
	}
231 232 233 234 235 236 237 238 239 240 241 242

	if (mod->Attributes & CONF_IRQ_CHANGE_VALID) {
		if (mod->Attributes & CONF_ENABLE_IRQ) {
			c->Attributes |= CONF_ENABLE_IRQ;
			s->socket.io_irq = s->irq.AssignedIRQ;
		} else {
			c->Attributes &= ~CONF_ENABLE_IRQ;
			s->socket.io_irq = 0;
		}
		s->ops->set_socket(s, &s->socket);
	}

243
	if (mod->Attributes & CONF_VCC_CHANGE_VALID) {
244
		dev_dbg(&s->dev, "changing Vcc is not allowed at this time\n");
245 246
		return -EINVAL;
	}
247 248 249 250

	/* We only allow changing Vpp1 and Vpp2 to the same value */
	if ((mod->Attributes & CONF_VPP1_CHANGE_VALID) &&
	    (mod->Attributes & CONF_VPP2_CHANGE_VALID)) {
251
		if (mod->Vpp1 != mod->Vpp2) {
252
			dev_dbg(&s->dev, "Vpp1 and Vpp2 must be the same\n");
253
			return -EINVAL;
254
		}
255
		s->socket.Vpp = mod->Vpp1;
256 257 258 259 260
		if (s->ops->set_socket(s, &s->socket)) {
			dev_printk(KERN_WARNING, &s->dev,
				   "Unable to set VPP\n");
			return -EIO;
		}
261
	} else if ((mod->Attributes & CONF_VPP1_CHANGE_VALID) ||
262
		   (mod->Attributes & CONF_VPP2_CHANGE_VALID)) {
263
		dev_dbg(&s->dev, "changing Vcc is not allowed at this time\n");
264 265
		return -EINVAL;
	}
266

267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
	if (mod->Attributes & CONF_IO_CHANGE_WIDTH) {
		pccard_io_map io_off = { 0, 0, 0, 0, 1 };
		pccard_io_map io_on;
		int i;

		io_on.speed = io_speed;
		for (i = 0; i < MAX_IO_WIN; i++) {
			if (!s->io[i].res)
				continue;
			io_off.map = i;
			io_on.map = i;

			io_on.flags = MAP_ACTIVE | IO_DATA_PATH_WIDTH_8;
			io_on.start = s->io[i].res->start;
			io_on.stop = s->io[i].res->end;

			s->ops->set_io_map(s, &io_off);
			mdelay(40);
			s->ops->set_io_map(s, &io_on);
		}
	}

D
Dominik Brodowski 已提交
289
	return 0;
290 291 292 293
} /* modify_configuration */
EXPORT_SYMBOL(pcmcia_modify_configuration);


294
int pcmcia_release_configuration(struct pcmcia_device *p_dev)
295 296
{
	pccard_io_map io = { 0, 0, 0, 0, 1 };
297
	struct pcmcia_socket *s = p_dev->socket;
298
	config_t *c = p_dev->function_config;
299 300
	int i;

301 302
	if (p_dev->_locked) {
		p_dev->_locked = 0;
303 304 305 306 307 308
		if (--(s->lock_count) == 0) {
			s->socket.flags = SS_OUTPUT_ENA;   /* Is this correct? */
			s->socket.Vpp = 0;
			s->socket.io_irq = 0;
			s->ops->set_socket(s, &s->socket);
		}
309 310 311
	}
	if (c->state & CONFIG_LOCKED) {
		c->state &= ~CONFIG_LOCKED;
312 313
		if (c->state & CONFIG_IO_REQ)
			for (i = 0; i < MAX_IO_WIN; i++) {
314
				if (!s->io[i].res)
315 316 317 318 319 320 321 322 323
					continue;
				s->io[i].Config--;
				if (s->io[i].Config != 0)
					continue;
				io.map = i;
				s->ops->set_io_map(s, &io);
			}
	}

D
Dominik Brodowski 已提交
324
	return 0;
325 326 327 328 329 330 331 332 333 334 335
} /* pcmcia_release_configuration */


/** pcmcia_release_io
 *
 * Release_io() releases the I/O ranges allocated by a client.  This
 * may be invoked some time after a card ejection has already dumped
 * the actual socket configuration, so if the client is "stale", we
 * don't bother checking the port ranges against the current socket
 * values.
 */
336
static int pcmcia_release_io(struct pcmcia_device *p_dev, io_req_t *req)
337
{
338
	struct pcmcia_socket *s = p_dev->socket;
339
	config_t *c = p_dev->function_config;
340

341
	if (!p_dev->_io )
342
		return -EINVAL;
343

344
	p_dev->_io = 0;
345

346 347 348 349
	if ((c->io.BasePort1 != req->BasePort1) ||
	    (c->io.NumPorts1 != req->NumPorts1) ||
	    (c->io.BasePort2 != req->BasePort2) ||
	    (c->io.NumPorts2 != req->NumPorts2))
350
		return -EINVAL;
351 352

	c->state &= ~CONFIG_IO_REQ;
353 354 355 356 357

	release_io_space(s, req->BasePort1, req->NumPorts1);
	if (req->NumPorts2)
		release_io_space(s, req->BasePort2, req->NumPorts2);

D
Dominik Brodowski 已提交
358
	return 0;
359 360 361
} /* pcmcia_release_io */


362
static int pcmcia_release_irq(struct pcmcia_device *p_dev, irq_req_t *req)
363
{
364
	struct pcmcia_socket *s = p_dev->socket;
365 366
	config_t *c= p_dev->function_config;

367
	if (!p_dev->_irq)
368
		return -EINVAL;
369
	p_dev->_irq = 0;
370

371
	if (c->state & CONFIG_LOCKED)
372
		return -EACCES;
373
	if (c->irq.Attributes != req->Attributes) {
374
		dev_dbg(&s->dev, "IRQ attributes must match assigned ones\n");
375 376
		return -EINVAL;
	}
377
	if (s->irq.AssignedIRQ != req->AssignedIRQ) {
378
		dev_dbg(&s->dev, "IRQ must match assigned one\n");
379 380
		return -EINVAL;
	}
381 382 383
	if (--s->irq.Config == 0) {
		c->state &= ~CONFIG_IRQ_REQ;
		s->irq.AssignedIRQ = 0;
384 385 386 387 388 389 390 391 392 393
	}

	if (req->Attributes & IRQ_HANDLE_PRESENT) {
		free_irq(req->AssignedIRQ, req->Instance);
	}

#ifdef CONFIG_PCMCIA_PROBE
	pcmcia_used_irq[req->AssignedIRQ]--;
#endif

D
Dominik Brodowski 已提交
394
	return 0;
395 396 397
} /* pcmcia_release_irq */


398
int pcmcia_release_window(struct pcmcia_device *p_dev, window_handle_t wh)
399
{
400
	struct pcmcia_socket *s = p_dev->socket;
401
	pccard_mem_map *win;
402

403 404
	wh--;
	if (wh >= MAX_WIN)
405
		return -EINVAL;
406 407 408 409

	win = &s->win[wh];

	if (!(p_dev->_win & CLIENT_WIN_REQ(wh))) {
410
		dev_dbg(&s->dev, "not releasing unknown window\n");
411
		return -EINVAL;
412
	}
413 414

	/* Shut down memory window */
415 416
	win->flags &= ~MAP_ACTIVE;
	s->ops->set_mem_map(s, win);
417
	s->state &= ~SOCKET_WIN_REQ(wh);
418 419

	/* Release system memory */
420 421 422 423
	if (win->res) {
		release_resource(win->res);
		kfree(win->res);
		win->res = NULL;
424
	}
425
	p_dev->_win &= ~CLIENT_WIN_REQ(wh);
426

D
Dominik Brodowski 已提交
427
	return 0;
428 429 430 431
} /* pcmcia_release_window */
EXPORT_SYMBOL(pcmcia_release_window);


432
int pcmcia_request_configuration(struct pcmcia_device *p_dev,
433 434 435 436
				 config_req_t *req)
{
	int i;
	u_int base;
437
	struct pcmcia_socket *s = p_dev->socket;
438 439 440 441
	config_t *c;
	pccard_io_map iomap;

	if (!(s->state & SOCKET_PRESENT))
442
		return -ENODEV;
443

444
	if (req->IntType & INT_CARDBUS) {
445
		dev_dbg(&s->dev, "IntType may not be INT_CARDBUS\n");
446 447
		return -EINVAL;
	}
448
	c = p_dev->function_config;
449 450
	if (c->state & CONFIG_LOCKED) {
		dev_dbg(&s->dev, "Configuration is locked\n");
451
		return -EACCES;
452
	}
453 454

	/* Do power control.  We don't allow changes in Vcc. */
455
	s->socket.Vpp = req->Vpp;
456 457 458 459 460
	if (s->ops->set_socket(s, &s->socket)) {
		dev_printk(KERN_WARNING, &s->dev,
			   "Unable to set socket state\n");
		return -EINVAL;
	}
461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481

	/* Pick memory or I/O card, DMA mode, interrupt */
	c->IntType = req->IntType;
	c->Attributes = req->Attributes;
	if (req->IntType & INT_MEMORY_AND_IO)
		s->socket.flags |= SS_IOCARD;
	if (req->IntType & INT_ZOOMED_VIDEO)
		s->socket.flags |= SS_ZVCARD | SS_IOCARD;
	if (req->Attributes & CONF_ENABLE_DMA)
		s->socket.flags |= SS_DMA_MODE;
	if (req->Attributes & CONF_ENABLE_SPKR)
		s->socket.flags |= SS_SPKR_ENA;
	if (req->Attributes & CONF_ENABLE_IRQ)
		s->socket.io_irq = s->irq.AssignedIRQ;
	else
		s->socket.io_irq = 0;
	s->ops->set_socket(s, &s->socket);
	s->lock_count++;

	/* Set up CIS configuration registers */
	base = c->ConfigBase = req->ConfigBase;
482
	c->CardValues = req->Present;
483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
	if (req->Present & PRESENT_COPY) {
		c->Copy = req->Copy;
		pcmcia_write_cis_mem(s, 1, (base + CISREG_SCR)>>1, 1, &c->Copy);
	}
	if (req->Present & PRESENT_OPTION) {
		if (s->functions == 1) {
			c->Option = req->ConfigIndex & COR_CONFIG_MASK;
		} else {
			c->Option = req->ConfigIndex & COR_MFC_CONFIG_MASK;
			c->Option |= COR_FUNC_ENA|COR_IREQ_ENA;
			if (req->Present & PRESENT_IOBASE_0)
				c->Option |= COR_ADDR_DECODE;
		}
		if (c->state & CONFIG_IRQ_REQ)
			if (!(c->irq.Attributes & IRQ_FORCED_PULSE))
				c->Option |= COR_LEVEL_REQ;
		pcmcia_write_cis_mem(s, 1, (base + CISREG_COR)>>1, 1, &c->Option);
		mdelay(40);
	}
	if (req->Present & PRESENT_STATUS) {
		c->Status = req->Status;
		pcmcia_write_cis_mem(s, 1, (base + CISREG_CCSR)>>1, 1, &c->Status);
	}
	if (req->Present & PRESENT_PIN_REPLACE) {
		c->Pin = req->Pin;
		pcmcia_write_cis_mem(s, 1, (base + CISREG_PRR)>>1, 1, &c->Pin);
	}
	if (req->Present & PRESENT_EXT_STATUS) {
		c->ExtStatus = req->ExtStatus;
		pcmcia_write_cis_mem(s, 1, (base + CISREG_ESR)>>1, 1, &c->ExtStatus);
	}
	if (req->Present & PRESENT_IOBASE_0) {
		u_char b = c->io.BasePort1 & 0xff;
		pcmcia_write_cis_mem(s, 1, (base + CISREG_IOBASE_0)>>1, 1, &b);
		b = (c->io.BasePort1 >> 8) & 0xff;
		pcmcia_write_cis_mem(s, 1, (base + CISREG_IOBASE_1)>>1, 1, &b);
	}
	if (req->Present & PRESENT_IOSIZE) {
		u_char b = c->io.NumPorts1 + c->io.NumPorts2 - 1;
		pcmcia_write_cis_mem(s, 1, (base + CISREG_IOSIZE)>>1, 1, &b);
	}

	/* Configure I/O windows */
	if (c->state & CONFIG_IO_REQ) {
		iomap.speed = io_speed;
		for (i = 0; i < MAX_IO_WIN; i++)
529
			if (s->io[i].res) {
530 531
				iomap.map = i;
				iomap.flags = MAP_ACTIVE;
532
				switch (s->io[i].res->flags & IO_DATA_PATH_WIDTH) {
533 534 535 536 537 538 539
				case IO_DATA_PATH_WIDTH_16:
					iomap.flags |= MAP_16BIT; break;
				case IO_DATA_PATH_WIDTH_AUTO:
					iomap.flags |= MAP_AUTOSZ; break;
				default:
					break;
				}
540 541
				iomap.start = s->io[i].res->start;
				iomap.stop = s->io[i].res->end;
542 543 544 545 546 547
				s->ops->set_io_map(s, &iomap);
				s->io[i].Config++;
			}
	}

	c->state |= CONFIG_LOCKED;
548
	p_dev->_locked = 1;
D
Dominik Brodowski 已提交
549
	return 0;
550 551 552 553 554 555 556 557 558
} /* pcmcia_request_configuration */
EXPORT_SYMBOL(pcmcia_request_configuration);


/** pcmcia_request_io
 *
 * Request_io() reserves ranges of port addresses for a socket.
 * I have not implemented range sharing or alias addressing.
 */
559
int pcmcia_request_io(struct pcmcia_device *p_dev, io_req_t *req)
560
{
561
	struct pcmcia_socket *s = p_dev->socket;
562 563
	config_t *c;

564 565
	if (!(s->state & SOCKET_PRESENT)) {
		dev_dbg(&s->dev, "No card present\n");
D
Dominik Brodowski 已提交
566
		return -ENODEV;
567
	}
568 569

	if (!req)
570
		return -EINVAL;
571
	c = p_dev->function_config;
572 573
	if (c->state & CONFIG_LOCKED) {
		dev_dbg(&s->dev, "Configuration is locked\n");
574
		return -EACCES;
575
	}
D
Dominik Brodowski 已提交
576
	if (c->state & CONFIG_IO_REQ) {
577
		dev_dbg(&s->dev, "IO already configured\n");
D
Dominik Brodowski 已提交
578 579
		return -EBUSY;
	}
580
	if (req->Attributes1 & (IO_SHARED | IO_FORCE_ALIAS_ACCESS)) {
581
		dev_dbg(&s->dev, "bad attribute setting for IO region 1\n");
582 583
		return -EINVAL;
	}
584
	if ((req->NumPorts2 > 0) &&
585
	    (req->Attributes2 & (IO_SHARED | IO_FORCE_ALIAS_ACCESS))) {
586
		dev_dbg(&s->dev, "bad attribute setting for IO region 2\n");
587 588
		return -EINVAL;
	}
589

590
	dev_dbg(&s->dev, "trying to allocate resource 1\n");
591
	if (alloc_io_space(s, req->Attributes1, &req->BasePort1,
D
Dominik Brodowski 已提交
592
			   req->NumPorts1, req->IOAddrLines)) {
593
		dev_dbg(&s->dev, "allocation of resource 1 failed\n");
D
Dominik Brodowski 已提交
594 595
		return -EBUSY;
	}
596 597

	if (req->NumPorts2) {
598
		dev_dbg(&s->dev, "trying to allocate resource 2\n");
599 600
		if (alloc_io_space(s, req->Attributes2, &req->BasePort2,
				   req->NumPorts2, req->IOAddrLines)) {
601
			dev_dbg(&s->dev, "allocation of resource 2 failed\n");
602
			release_io_space(s, req->BasePort1, req->NumPorts1);
D
Dominik Brodowski 已提交
603
			return -EBUSY;
604 605 606 607 608
		}
	}

	c->io = *req;
	c->state |= CONFIG_IO_REQ;
609
	p_dev->_io = 1;
D
Dominik Brodowski 已提交
610
	return 0;
611 612 613 614 615 616 617 618 619 620 621 622 623 624 625
} /* pcmcia_request_io */
EXPORT_SYMBOL(pcmcia_request_io);


/** pcmcia_request_irq
 *
 * Request_irq() reserves an irq for this client.
 *
 * Also, since Linux only reserves irq's when they are actually
 * hooked, we don't guarantee that an irq will still be available
 * when the configuration is locked.  Now that I think about it,
 * there might be a way to fix this using a dummy handler.
 */

#ifdef CONFIG_PCMCIA_PROBE
626
static irqreturn_t test_action(int cpl, void *dev_id)
627 628 629 630 631
{
	return IRQ_NONE;
}
#endif

632
int pcmcia_request_irq(struct pcmcia_device *p_dev, irq_req_t *req)
633
{
634
	struct pcmcia_socket *s = p_dev->socket;
635
	config_t *c;
D
Dominik Brodowski 已提交
636
	int ret = -EINVAL, irq = 0;
637
	int type;
638

639 640
	if (!(s->state & SOCKET_PRESENT)) {
		dev_dbg(&s->dev, "No card present\n");
D
Dominik Brodowski 已提交
641
		return -ENODEV;
642
	}
643
	c = p_dev->function_config;
644 645
	if (c->state & CONFIG_LOCKED) {
		dev_dbg(&s->dev, "Configuration is locked\n");
646
		return -EACCES;
647
	}
D
Dominik Brodowski 已提交
648
	if (c->state & CONFIG_IRQ_REQ) {
649
		dev_dbg(&s->dev, "IRQ already configured\n");
D
Dominik Brodowski 已提交
650 651
		return -EBUSY;
	}
652

653 654 655
	/* Decide what type of interrupt we are registering */
	type = 0;
	if (s->functions > 1)		/* All of this ought to be handled higher up */
656
		type = IRQF_SHARED;
657
	else if (req->Attributes & IRQ_TYPE_DYNAMIC_SHARING)
658
		type = IRQF_SHARED;
659
	else printk(KERN_WARNING "pcmcia: Driver needs updating to support IRQ sharing.\n");
660

661
#ifdef CONFIG_PCMCIA_PROBE
662 663 664 665 666 667 668 669 670

#ifdef IRQ_NOAUTOEN
	/* if the underlying IRQ infrastructure allows for it, only allocate
	 * the IRQ, but do not enable it
	 */
	if (!(req->Attributes & IRQ_HANDLE_PRESENT))
		type |= IRQ_NOAUTOEN;
#endif /* IRQ_NOAUTOEN */

671 672 673 674 675 676
	if (s->irq.AssignedIRQ != 0) {
		/* If the interrupt is already assigned, it must be the same */
		irq = s->irq.AssignedIRQ;
	} else {
		int try;
		u32 mask = s->irq_mask;
677
		void *data = &p_dev->dev.driver; /* something unique to this device */
678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694

		for (try = 0; try < 64; try++) {
			irq = try % 32;

			/* marked as available by driver, and not blocked by userspace? */
			if (!((mask >> irq) & 1))
				continue;

			/* avoid an IRQ which is already used by a PCMCIA card */
			if ((try < 32) && pcmcia_used_irq[irq])
				continue;

			/* register the correct driver, if possible, of check whether
			 * registering a dummy handle works, i.e. if the IRQ isn't
			 * marked as used by the kernel resource management core */
			ret = request_irq(irq,
					  (req->Attributes & IRQ_HANDLE_PRESENT) ? req->Handler : test_action,
695
					  type,
696
					  p_dev->devname,
697 698 699 700 701 702 703 704 705
					  (req->Attributes & IRQ_HANDLE_PRESENT) ? req->Instance : data);
			if (!ret) {
				if (!(req->Attributes & IRQ_HANDLE_PRESENT))
					free_irq(irq, data);
				break;
			}
		}
	}
#endif
706 707
	/* only assign PCI irq if no IRQ already assigned */
	if (ret && !s->irq.AssignedIRQ) {
708 709
		if (!s->pci_irq) {
			dev_printk(KERN_INFO, &s->dev, "no IRQ found\n");
710
			return ret;
711
		}
712
		type = IRQF_SHARED;
713 714 715
		irq = s->pci_irq;
	}

716
	if (ret && (req->Attributes & IRQ_HANDLE_PRESENT)) {
D
Dominik Brodowski 已提交
717 718
		ret = request_irq(irq, req->Handler, type,
				  p_dev->devname, req->Instance);
719 720 721
		if (ret) {
			dev_printk(KERN_INFO, &s->dev,
				"request_irq() failed\n");
D
Dominik Brodowski 已提交
722
			return ret;
723
		}
724 725
	}

726
	/* Make sure the fact the request type was overridden is passed back */
727
	if (type == IRQF_SHARED && !(req->Attributes & IRQ_TYPE_DYNAMIC_SHARING)) {
728
		req->Attributes |= IRQ_TYPE_DYNAMIC_SHARING;
729 730 731 732
		dev_printk(KERN_WARNING, &p_dev->dev, "pcmcia: "
			"request for exclusive IRQ could not be fulfilled.\n");
		dev_printk(KERN_WARNING, &p_dev->dev, "pcmcia: the driver "
			"needs updating to supported shared IRQ lines.\n");
733
	}
734 735 736 737 738
	c->irq.Attributes = req->Attributes;
	s->irq.AssignedIRQ = req->AssignedIRQ = irq;
	s->irq.Config++;

	c->state |= CONFIG_IRQ_REQ;
739
	p_dev->_irq = 1;
740 741 742 743 744

#ifdef CONFIG_PCMCIA_PROBE
	pcmcia_used_irq[irq]++;
#endif

D
Dominik Brodowski 已提交
745
	return 0;
746 747 748 749 750 751 752 753 754
} /* pcmcia_request_irq */
EXPORT_SYMBOL(pcmcia_request_irq);


/** pcmcia_request_window
 *
 * Request_window() establishes a mapping between card memory space
 * and system memory space.
 */
755
int pcmcia_request_window(struct pcmcia_device *p_dev, win_req_t *req, window_handle_t *wh)
756
{
757
	struct pcmcia_socket *s = p_dev->socket;
758
	pccard_mem_map *win;
759 760 761
	u_long align;
	int w;

762 763
	if (!(s->state & SOCKET_PRESENT)) {
		dev_dbg(&s->dev, "No card present\n");
D
Dominik Brodowski 已提交
764
		return -ENODEV;
765
	}
766
	if (req->Attributes & (WIN_PAGED | WIN_SHARED)) {
767
		dev_dbg(&s->dev, "bad attribute setting for iomem region\n");
768 769
		return -EINVAL;
	}
770 771 772 773 774 775 776

	/* Window size defaults to smallest available */
	if (req->Size == 0)
		req->Size = s->map_size;
	align = (((s->features & SS_CAP_MEM_ALIGN) ||
		  (req->Attributes & WIN_STRICT_ALIGN)) ?
		 req->Size : s->map_size);
777
	if (req->Size & (s->map_size-1)) {
778
		dev_dbg(&s->dev, "invalid map size\n");
779 780
		return -EINVAL;
	}
781
	if ((req->Base && (s->features & SS_CAP_STATIC_MAP)) ||
782
	    (req->Base & (align-1))) {
783
		dev_dbg(&s->dev, "invalid base address\n");
784 785
		return -EINVAL;
	}
786 787 788 789 790 791
	if (req->Base)
		align = 0;

	/* Allocate system memory window */
	for (w = 0; w < MAX_WIN; w++)
		if (!(s->state & SOCKET_WIN_REQ(w))) break;
D
Dominik Brodowski 已提交
792
	if (w == MAX_WIN) {
793
		dev_dbg(&s->dev, "all windows are used already\n");
D
Dominik Brodowski 已提交
794 795
		return -EINVAL;
	}
796 797 798 799

	win = &s->win[w];

	if (!(s->features & SS_CAP_STATIC_MAP)) {
800
		win->res = pcmcia_find_mem_region(req->Base, req->Size, align,
801
						      (req->Attributes & WIN_MAP_BELOW_1MB), s);
802
		if (!win->res) {
803
			dev_dbg(&s->dev, "allocating mem region failed\n");
D
Dominik Brodowski 已提交
804 805
			return -EINVAL;
		}
806
	}
807
	p_dev->_win |= CLIENT_WIN_REQ(w);
808 809

	/* Configure the socket controller */
810 811 812
	win->map = w+1;
	win->flags = 0;
	win->speed = req->AccessSpeed;
813
	if (req->Attributes & WIN_MEMORY_TYPE)
814
		win->flags |= MAP_ATTRIB;
815
	if (req->Attributes & WIN_ENABLE)
816
		win->flags |= MAP_ACTIVE;
817
	if (req->Attributes & WIN_DATA_WIDTH_16)
818
		win->flags |= MAP_16BIT;
819
	if (req->Attributes & WIN_USE_WAIT)
820 821 822
		win->flags |= MAP_USE_WAIT;
	win->card_start = 0;
	if (s->ops->set_mem_map(s, win) != 0) {
823
		dev_dbg(&s->dev, "failed to set memory mapping\n");
824 825
		return -EIO;
	}
826 827 828 829
	s->state |= SOCKET_WIN_REQ(w);

	/* Return window handle */
	if (s->features & SS_CAP_STATIC_MAP) {
830
		req->Base = win->static_start;
831
	} else {
832
		req->Base = win->res->start;
833
	}
834
	*wh = w + 1;
835

D
Dominik Brodowski 已提交
836
	return 0;
837 838
} /* pcmcia_request_window */
EXPORT_SYMBOL(pcmcia_request_window);
839 840 841

void pcmcia_disable_device(struct pcmcia_device *p_dev) {
	pcmcia_release_configuration(p_dev);
842 843
	pcmcia_release_io(p_dev, &p_dev->io);
	pcmcia_release_irq(p_dev, &p_dev->irq);
844
	if (p_dev->win)
845
		pcmcia_release_window(p_dev, p_dev->win);
846 847
}
EXPORT_SYMBOL(pcmcia_disable_device);
848 849 850


struct pcmcia_cfg_mem {
851 852 853 854 855 856 857
	struct pcmcia_device *p_dev;
	void *priv_data;
	int (*conf_check) (struct pcmcia_device *p_dev,
			   cistpl_cftable_entry_t *cfg,
			   cistpl_cftable_entry_t *dflt,
			   unsigned int vcc,
			   void *priv_data);
858
	cisparse_t parse;
859
	cistpl_cftable_entry_t dflt;
860 861
};

862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883
/**
 * pcmcia_do_loop_config() - internal helper for pcmcia_loop_config()
 *
 * pcmcia_do_loop_config() is the internal callback for the call from
 * pcmcia_loop_config() to pccard_loop_tuple(). Data is transferred
 * by a struct pcmcia_cfg_mem.
 */
static int pcmcia_do_loop_config(tuple_t *tuple, cisparse_t *parse, void *priv)
{
	cistpl_cftable_entry_t *cfg = &parse->cftable_entry;
	struct pcmcia_cfg_mem *cfg_mem = priv;

	/* default values */
	cfg_mem->p_dev->conf.ConfigIndex = cfg->index;
	if (cfg->flags & CISTPL_CFTABLE_DEFAULT)
		cfg_mem->dflt = *cfg;

	return cfg_mem->conf_check(cfg_mem->p_dev, cfg, &cfg_mem->dflt,
				   cfg_mem->p_dev->socket->socket.Vcc,
				   cfg_mem->priv_data);
}

884 885 886 887 888 889 890 891 892 893 894
/**
 * pcmcia_loop_config() - loop over configuration options
 * @p_dev:	the struct pcmcia_device which we need to loop for.
 * @conf_check:	function to call for each configuration option.
 *		It gets passed the struct pcmcia_device, the CIS data
 *		describing the configuration option, and private data
 *		being passed to pcmcia_loop_config()
 * @priv_data:	private data to be passed to the conf_check function.
 *
 * pcmcia_loop_config() loops over all configuration options, and calls
 * the driver-specific conf_check() for each one, checking whether
895
 * it is a valid one. Returns 0 on success or errorcode otherwise.
896 897 898 899
 */
int pcmcia_loop_config(struct pcmcia_device *p_dev,
		       int	(*conf_check)	(struct pcmcia_device *p_dev,
						 cistpl_cftable_entry_t *cfg,
900
						 cistpl_cftable_entry_t *dflt,
901
						 unsigned int vcc,
902 903 904 905
						 void *priv_data),
		       void *priv_data)
{
	struct pcmcia_cfg_mem *cfg_mem;
906
	int ret;
907 908 909 910 911

	cfg_mem = kzalloc(sizeof(struct pcmcia_cfg_mem), GFP_KERNEL);
	if (cfg_mem == NULL)
		return -ENOMEM;

912 913 914
	cfg_mem->p_dev = p_dev;
	cfg_mem->conf_check = conf_check;
	cfg_mem->priv_data = priv_data;
915

916 917 918
	ret = pccard_loop_tuple(p_dev->socket, p_dev->func,
				CISTPL_CFTABLE_ENTRY, &cfg_mem->parse,
				cfg_mem, pcmcia_do_loop_config);
919

920 921 922 923
	kfree(cfg_mem);
	return ret;
}
EXPORT_SYMBOL(pcmcia_loop_config);
924

925

926 927 928 929 930 931 932
struct pcmcia_loop_mem {
	struct pcmcia_device *p_dev;
	void *priv_data;
	int (*loop_tuple) (struct pcmcia_device *p_dev,
			   tuple_t *tuple,
			   void *priv_data);
};
933

934 935 936 937 938 939 940 941 942 943
/**
 * pcmcia_do_loop_tuple() - internal helper for pcmcia_loop_config()
 *
 * pcmcia_do_loop_tuple() is the internal callback for the call from
 * pcmcia_loop_tuple() to pccard_loop_tuple(). Data is transferred
 * by a struct pcmcia_cfg_mem.
 */
static int pcmcia_do_loop_tuple(tuple_t *tuple, cisparse_t *parse, void *priv)
{
	struct pcmcia_loop_mem *loop = priv;
944

945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974
	return loop->loop_tuple(loop->p_dev, tuple, loop->priv_data);
};

/**
 * pcmcia_loop_tuple() - loop over tuples in the CIS
 * @p_dev:	the struct pcmcia_device which we need to loop for.
 * @code:	which CIS code shall we look for?
 * @priv_data:	private data to be passed to the loop_tuple function.
 * @loop_tuple:	function to call for each CIS entry of type @function. IT
 *		gets passed the raw tuple and @priv_data.
 *
 * pcmcia_loop_tuple() loops over all CIS entries of type @function, and
 * calls the @loop_tuple function for each entry. If the call to @loop_tuple
 * returns 0, the loop exits. Returns 0 on success or errorcode otherwise.
 */
int pcmcia_loop_tuple(struct pcmcia_device *p_dev, cisdata_t code,
		      int (*loop_tuple) (struct pcmcia_device *p_dev,
					 tuple_t *tuple,
					 void *priv_data),
		      void *priv_data)
{
	struct pcmcia_loop_mem loop = {
		.p_dev = p_dev,
		.loop_tuple = loop_tuple,
		.priv_data = priv_data};

	return pccard_loop_tuple(p_dev->socket, p_dev->func, code, NULL,
				 &loop, pcmcia_do_loop_tuple);
};
EXPORT_SYMBOL(pcmcia_loop_tuple);
975

976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999

struct pcmcia_loop_get {
	size_t len;
	cisdata_t **buf;
};

/**
 * pcmcia_do_get_tuple() - internal helper for pcmcia_get_tuple()
 *
 * pcmcia_do_get_tuple() is the internal callback for the call from
 * pcmcia_get_tuple() to pcmcia_loop_tuple(). As we're only interested in
 * the first tuple, return 0 unconditionally. Create a memory buffer large
 * enough to hold the content of the tuple, and fill it with the tuple data.
 * The caller is responsible to free the buffer.
 */
static int pcmcia_do_get_tuple(struct pcmcia_device *p_dev, tuple_t *tuple,
			       void *priv)
{
	struct pcmcia_loop_get *get = priv;

	*get->buf = kzalloc(tuple->TupleDataLen, GFP_KERNEL);
	if (*get->buf) {
		get->len = tuple->TupleDataLen;
		memcpy(*get->buf, tuple->TupleData, tuple->TupleDataLen);
1000 1001
	} else
		dev_dbg(&p_dev->dev, "do_get_tuple: out of memory\n");
1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075
	return 0;
};

/**
 * pcmcia_get_tuple() - get first tuple from CIS
 * @p_dev:	the struct pcmcia_device which we need to loop for.
 * @code:	which CIS code shall we look for?
 * @buf:        pointer to store the buffer to.
 *
 * pcmcia_get_tuple() gets the content of the first CIS entry of type @code.
 * It returns the buffer length (or zero). The caller is responsible to free
 * the buffer passed in @buf.
 */
size_t pcmcia_get_tuple(struct pcmcia_device *p_dev, cisdata_t code,
			unsigned char **buf)
{
	struct pcmcia_loop_get get = {
		.len = 0,
		.buf = buf,
	};

	*get.buf = NULL;
	pcmcia_loop_tuple(p_dev, code, pcmcia_do_get_tuple, &get);

	return get.len;
};
EXPORT_SYMBOL(pcmcia_get_tuple);


/**
 * pcmcia_do_get_mac() - internal helper for pcmcia_get_mac_from_cis()
 *
 * pcmcia_do_get_mac() is the internal callback for the call from
 * pcmcia_get_mac_from_cis() to pcmcia_loop_tuple(). We check whether the
 * tuple contains a proper LAN_NODE_ID of length 6, and copy the data
 * to struct net_device->dev_addr[i].
 */
static int pcmcia_do_get_mac(struct pcmcia_device *p_dev, tuple_t *tuple,
			     void *priv)
{
	struct net_device *dev = priv;
	int i;

	if (tuple->TupleData[0] != CISTPL_FUNCE_LAN_NODE_ID)
		return -EINVAL;
	if (tuple->TupleDataLen < ETH_ALEN + 2) {
		dev_warn(&p_dev->dev, "Invalid CIS tuple length for "
			"LAN_NODE_ID\n");
		return -EINVAL;
	}

	if (tuple->TupleData[1] != ETH_ALEN) {
		dev_warn(&p_dev->dev, "Invalid header for LAN_NODE_ID\n");
		return -EINVAL;
	}
	for (i = 0; i < 6; i++)
		dev->dev_addr[i] = tuple->TupleData[i+2];
	return 0;
};

/**
 * pcmcia_get_mac_from_cis() - read out MAC address from CISTPL_FUNCE
 * @p_dev:	the struct pcmcia_device for which we want the address.
 * @dev:	a properly prepared struct net_device to store the info to.
 *
 * pcmcia_get_mac_from_cis() reads out the hardware MAC address from
 * CISTPL_FUNCE and stores it into struct net_device *dev->dev_addr which
 * must be set up properly by the driver (see examples!).
 */
int pcmcia_get_mac_from_cis(struct pcmcia_device *p_dev, struct net_device *dev)
{
	return pcmcia_loop_tuple(p_dev, CISTPL_FUNCE, pcmcia_do_get_mac, dev);
};
EXPORT_SYMBOL(pcmcia_get_mac_from_cis);
1076