highlevel.c 17.5 KB
Newer Older
L
Linus Torvalds 已提交
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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
/*
 * IEEE 1394 for Linux
 *
 * Copyright (C) 1999 Andreas E. Bombe
 *
 * This code is licensed under the GPL.  See the file COPYING in the root
 * directory of the kernel sources for details.
 *
 *
 * Contributions:
 *
 * Christian Toegel <christian.toegel@gmx.at>
 *        unregister address space
 *
 * Manfred Weihs <weihs@ict.tuwien.ac.at>
 *        unregister address space
 *
 */

#include <linux/slab.h>
#include <linux/list.h>
#include <linux/bitops.h>

#include "ieee1394.h"
#include "ieee1394_types.h"
#include "hosts.h"
#include "ieee1394_core.h"
#include "highlevel.h"
#include "nodemgr.h"


struct hl_host_info {
	struct list_head list;
	struct hpsb_host *host;
	size_t size;
	unsigned long key;
	void *data;
};


static LIST_HEAD(hl_drivers);
static DECLARE_RWSEM(hl_drivers_sem);

static LIST_HEAD(hl_irqs);
static DEFINE_RWLOCK(hl_irqs_lock);

static DEFINE_RWLOCK(addr_space_lock);

/* addr_space list will have zero and max already included as bounds */
static struct hpsb_address_ops dummy_ops = { NULL, NULL, NULL, NULL };
static struct hpsb_address_serve dummy_zero_addr, dummy_max_addr;


static struct hl_host_info *hl_get_hostinfo(struct hpsb_highlevel *hl,
55
					    struct hpsb_host *host)
L
Linus Torvalds 已提交
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
{
	struct hl_host_info *hi = NULL;

	if (!hl || !host)
		return NULL;

	read_lock(&hl->host_info_lock);
	list_for_each_entry(hi, &hl->host_info_list, list) {
		if (hi->host == host) {
			read_unlock(&hl->host_info_lock);
			return hi;
		}
	}
	read_unlock(&hl->host_info_lock);
	return NULL;
}

73 74 75 76 77 78
/**
 * hpsb_get_hostinfo - retrieve a hostinfo pointer bound to this driver/host
 *
 * Returns a per @host and @hl driver data structure that was previously stored
 * by hpsb_create_hostinfo.
 */
L
Linus Torvalds 已提交
79 80 81 82
void *hpsb_get_hostinfo(struct hpsb_highlevel *hl, struct hpsb_host *host)
{
	struct hl_host_info *hi = hl_get_hostinfo(hl, host);

83
	return hi ? hi->data : NULL;
L
Linus Torvalds 已提交
84 85
}

86 87 88 89 90 91 92
/**
 * hpsb_create_hostinfo - allocate a hostinfo pointer bound to this driver/host
 *
 * Allocate a hostinfo pointer backed by memory with @data_size and bind it to
 * to this @hl driver and @host.  If @data_size is zero, then the return here is
 * only valid for error checking.
 */
L
Linus Torvalds 已提交
93 94 95 96 97 98 99 100 101
void *hpsb_create_hostinfo(struct hpsb_highlevel *hl, struct hpsb_host *host,
			   size_t data_size)
{
	struct hl_host_info *hi;
	void *data;
	unsigned long flags;

	hi = hl_get_hostinfo(hl, host);
	if (hi) {
102 103
		HPSB_ERR("%s called hpsb_create_hostinfo when hostinfo already"
			 " exists", hl->name);
L
Linus Torvalds 已提交
104 105 106
		return NULL;
	}

S
Stefan Richter 已提交
107
	hi = kzalloc(sizeof(*hi) + data_size, GFP_ATOMIC);
L
Linus Torvalds 已提交
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
	if (!hi)
		return NULL;

	if (data_size) {
		data = hi->data = hi + 1;
		hi->size = data_size;
	} else
		data = hi;

	hi->host = host;

	write_lock_irqsave(&hl->host_info_lock, flags);
	list_add_tail(&hi->list, &hl->host_info_list);
	write_unlock_irqrestore(&hl->host_info_lock, flags);

	return data;
}

126 127 128 129 130
/**
 * hpsb_set_hostinfo - set the hostinfo pointer to something useful
 *
 * Usually follows a call to hpsb_create_hostinfo, where the size is 0.
 */
L
Linus Torvalds 已提交
131 132 133 134 135 136 137 138 139 140 141
int hpsb_set_hostinfo(struct hpsb_highlevel *hl, struct hpsb_host *host,
		      void *data)
{
	struct hl_host_info *hi;

	hi = hl_get_hostinfo(hl, host);
	if (hi) {
		if (!hi->size && !hi->data) {
			hi->data = data;
			return 0;
		} else
142 143
			HPSB_ERR("%s called hpsb_set_hostinfo when hostinfo "
				 "already has data", hl->name);
L
Linus Torvalds 已提交
144 145 146 147 148 149
	} else
		HPSB_ERR("%s called hpsb_set_hostinfo when no hostinfo exists",
			 hl->name);
	return -EINVAL;
}

150 151 152 153 154
/**
 * hpsb_destroy_hostinfo - free and remove a hostinfo pointer
 *
 * Free and remove the hostinfo pointer bound to this @hl driver and @host.
 */
L
Linus Torvalds 已提交
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
void hpsb_destroy_hostinfo(struct hpsb_highlevel *hl, struct hpsb_host *host)
{
	struct hl_host_info *hi;

	hi = hl_get_hostinfo(hl, host);
	if (hi) {
		unsigned long flags;
		write_lock_irqsave(&hl->host_info_lock, flags);
		list_del(&hi->list);
		write_unlock_irqrestore(&hl->host_info_lock, flags);
		kfree(hi);
	}
	return;
}

170 171 172 173 174 175
/**
 * hpsb_set_hostinfo_key - set an alternate lookup key for an hostinfo
 *
 * Sets an alternate lookup key for the hostinfo bound to this @hl driver and
 * @host.
 */
176 177
void hpsb_set_hostinfo_key(struct hpsb_highlevel *hl, struct hpsb_host *host,
			   unsigned long key)
L
Linus Torvalds 已提交
178 179 180 181 182 183 184 185 186
{
	struct hl_host_info *hi;

	hi = hl_get_hostinfo(hl, host);
	if (hi)
		hi->key = key;
	return;
}

187 188 189
/**
 * hpsb_get_hostinfo_bykey - retrieve a hostinfo pointer by its alternate key
 */
L
Linus Torvalds 已提交
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
void *hpsb_get_hostinfo_bykey(struct hpsb_highlevel *hl, unsigned long key)
{
	struct hl_host_info *hi;
	void *data = NULL;

	if (!hl)
		return NULL;

	read_lock(&hl->host_info_lock);
	list_for_each_entry(hi, &hl->host_info_list, list) {
		if (hi->key == key) {
			data = hi->data;
			break;
		}
	}
	read_unlock(&hl->host_info_lock);
	return data;
}

static int highlevel_for_each_host_reg(struct hpsb_host *host, void *__data)
{
	struct hpsb_highlevel *hl = __data;

	hl->add_host(host);

215 216 217
	if (host->update_config_rom && hpsb_update_config_rom_image(host) < 0)
		HPSB_ERR("Failed to generate Configuration ROM image for host "
			 "%s-%d", hl->name, host->id);
L
Linus Torvalds 已提交
218 219 220
	return 0;
}

221 222 223 224 225 226
/**
 * hpsb_register_highlevel - register highlevel driver
 *
 * The name pointer in @hl has to stay valid at all times because the string is
 * not copied.
 */
L
Linus Torvalds 已提交
227 228
void hpsb_register_highlevel(struct hpsb_highlevel *hl)
{
229 230
	unsigned long flags;

231
	INIT_LIST_HEAD(&hl->addr_list);
L
Linus Torvalds 已提交
232 233 234 235 236
	INIT_LIST_HEAD(&hl->host_info_list);

	rwlock_init(&hl->host_info_lock);

	down_write(&hl_drivers_sem);
237
	list_add_tail(&hl->hl_list, &hl_drivers);
L
Linus Torvalds 已提交
238 239
	up_write(&hl_drivers_sem);

240
	write_lock_irqsave(&hl_irqs_lock, flags);
L
Linus Torvalds 已提交
241
	list_add_tail(&hl->irq_list, &hl_irqs);
242
	write_unlock_irqrestore(&hl_irqs_lock, flags);
L
Linus Torvalds 已提交
243 244 245

	if (hl->add_host)
		nodemgr_for_each_host(hl, highlevel_for_each_host_reg);
246
	return;
L
Linus Torvalds 已提交
247 248 249 250 251 252 253 254 255
}

static void __delete_addr(struct hpsb_address_serve *as)
{
	list_del(&as->host_list);
	list_del(&as->hl_list);
	kfree(as);
}

256 257
static void __unregister_host(struct hpsb_highlevel *hl, struct hpsb_host *host,
			      int update_cr)
L
Linus Torvalds 已提交
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
{
	unsigned long flags;
	struct list_head *lh, *next;
	struct hpsb_address_serve *as;

	/* First, let the highlevel driver unreg */
	if (hl->remove_host)
		hl->remove_host(host);

	/* Remove any addresses that are matched for this highlevel driver
	 * and this particular host. */
	write_lock_irqsave(&addr_space_lock, flags);
	list_for_each_safe (lh, next, &hl->addr_list) {
		as = list_entry(lh, struct hpsb_address_serve, hl_list);
		if (as->host == host)
			__delete_addr(as);
	}
	write_unlock_irqrestore(&addr_space_lock, flags);

	/* Now update the config-rom to reflect anything removed by the
	 * highlevel driver. */
279 280 281 282
	if (update_cr && host->update_config_rom &&
	    hpsb_update_config_rom_image(host) < 0)
		HPSB_ERR("Failed to generate Configuration ROM image for host "
			 "%s-%d", hl->name, host->id);
L
Linus Torvalds 已提交
283

284
	/* Finally remove all the host info associated between these two. */
L
Linus Torvalds 已提交
285 286 287 288 289 290 291 292 293 294 295
	hpsb_destroy_hostinfo(hl, host);
}

static int highlevel_for_each_host_unreg(struct hpsb_host *host, void *__data)
{
	struct hpsb_highlevel *hl = __data;

	__unregister_host(hl, host, 1);
	return 0;
}

296 297 298
/**
 * hpsb_unregister_highlevel - unregister highlevel driver
 */
L
Linus Torvalds 已提交
299 300
void hpsb_unregister_highlevel(struct hpsb_highlevel *hl)
{
301 302 303
	unsigned long flags;

	write_lock_irqsave(&hl_irqs_lock, flags);
L
Linus Torvalds 已提交
304
	list_del(&hl->irq_list);
305
	write_unlock_irqrestore(&hl_irqs_lock, flags);
L
Linus Torvalds 已提交
306 307

	down_write(&hl_drivers_sem);
308
	list_del(&hl->hl_list);
L
Linus Torvalds 已提交
309 310 311 312 313
	up_write(&hl_drivers_sem);

	nodemgr_for_each_host(hl, highlevel_for_each_host_unreg);
}

314 315 316 317 318 319 320 321 322 323 324 325 326
/**
 * hpsb_allocate_and_register_addrspace - alloc' and reg' a host address space
 *
 * @start and @end are 48 bit pointers and have to be quadlet aligned.
 * @end points to the first address behind the handled addresses.  This
 * function can be called multiple times for a single hpsb_highlevel @hl to
 * implement sparse register sets.  The requested region must not overlap any
 * previously allocated region, otherwise registering will fail.
 *
 * It returns true for successful allocation.  Address spaces can be
 * unregistered with hpsb_unregister_addrspace.  All remaining address spaces
 * are automatically deallocated together with the hpsb_highlevel @hl.
 */
L
Linus Torvalds 已提交
327 328 329 330 331 332 333 334
u64 hpsb_allocate_and_register_addrspace(struct hpsb_highlevel *hl,
					 struct hpsb_host *host,
					 struct hpsb_address_ops *ops,
					 u64 size, u64 alignment,
					 u64 start, u64 end)
{
	struct hpsb_address_serve *as, *a1, *a2;
	struct list_head *entry;
335
	u64 retval = CSR1212_INVALID_ADDR_SPACE;
L
Linus Torvalds 已提交
336 337 338 339
	unsigned long flags;
	u64 align_mask = ~(alignment - 1);

	if ((alignment & 3) || (alignment > 0x800000000000ULL) ||
340
	    (hweight64(alignment) != 1)) {
L
Linus Torvalds 已提交
341 342 343 344 345
		HPSB_ERR("%s called with invalid alignment: 0x%048llx",
			 __FUNCTION__, (unsigned long long)alignment);
		return retval;
	}

346 347
	/* default range,
	 * avoids controller's posted write area (see OHCI 1.1 clause 1.5) */
348 349
	if (start == CSR1212_INVALID_ADDR_SPACE &&
	    end   == CSR1212_INVALID_ADDR_SPACE) {
350
		start = host->middle_addr_space;
351
		end   = CSR1212_ALL_SPACE_END;
L
Linus Torvalds 已提交
352 353
	}

354 355 356 357 358
	if (((start|end) & ~align_mask) || (start >= end) ||
	    (end > CSR1212_ALL_SPACE_END)) {
		HPSB_ERR("%s called with invalid addresses "
			 "(start = %012Lx  end = %012Lx)", __FUNCTION__,
			 (unsigned long long)start,(unsigned long long)end);
L
Linus Torvalds 已提交
359 360 361
		return retval;
	}

S
Stefan Richter 已提交
362 363
	as = kmalloc(sizeof(*as), GFP_KERNEL);
	if (!as)
L
Linus Torvalds 已提交
364 365 366 367 368 369 370 371 372 373 374 375 376
		return retval;

	INIT_LIST_HEAD(&as->host_list);
	INIT_LIST_HEAD(&as->hl_list);
	as->op = ops;
	as->host = host;

	write_lock_irqsave(&addr_space_lock, flags);
	list_for_each(entry, &host->addr_space) {
		u64 a1sa, a1ea;
		u64 a2sa, a2ea;

		a1 = list_entry(entry, struct hpsb_address_serve, host_list);
377 378
		a2 = list_entry(entry->next, struct hpsb_address_serve,
				host_list);
L
Linus Torvalds 已提交
379 380 381 382 383 384

		a1sa = a1->start & align_mask;
		a1ea = (a1->end + alignment -1) & align_mask;
		a2sa = a2->start & align_mask;
		a2ea = (a2->end + alignment -1) & align_mask;

385 386
		if ((a2sa - a1ea >= size) && (a2sa - start >= size) &&
		    (a2sa > start)) {
L
Linus Torvalds 已提交
387 388 389 390 391 392 393 394 395 396
			as->start = max(start, a1ea);
			as->end = as->start + size;
			list_add(&as->host_list, entry);
			list_add_tail(&as->hl_list, &hl->addr_list);
			retval = as->start;
			break;
		}
	}
	write_unlock_irqrestore(&addr_space_lock, flags);

397
	if (retval == CSR1212_INVALID_ADDR_SPACE)
L
Linus Torvalds 已提交
398 399 400 401
		kfree(as);
	return retval;
}

402 403 404 405 406 407 408 409 410 411 412 413 414
/**
 * hpsb_register_addrspace - register a host address space
 *
 * @start and @end are 48 bit pointers and have to be quadlet aligned.
 * @end points to the first address behind the handled addresses.  This
 * function can be called multiple times for a single hpsb_highlevel @hl to
 * implement sparse register sets.  The requested region must not overlap any
 * previously allocated region, otherwise registering will fail.
 *
 * It returns true for successful allocation.  Address spaces can be
 * unregistered with hpsb_unregister_addrspace.  All remaining address spaces
 * are automatically deallocated together with the hpsb_highlevel @hl.
 */
L
Linus Torvalds 已提交
415
int hpsb_register_addrspace(struct hpsb_highlevel *hl, struct hpsb_host *host,
416
			    struct hpsb_address_ops *ops, u64 start, u64 end)
L
Linus Torvalds 已提交
417
{
418
	struct hpsb_address_serve *as;
L
Linus Torvalds 已提交
419
	struct list_head *lh;
420 421
	int retval = 0;
	unsigned long flags;
L
Linus Torvalds 已提交
422

423 424 425 426 427
	if (((start|end) & 3) || (start >= end) ||
	    (end > CSR1212_ALL_SPACE_END)) {
		HPSB_ERR("%s called with invalid addresses", __FUNCTION__);
		return 0;
	}
L
Linus Torvalds 已提交
428

S
Stefan Richter 已提交
429 430 431
	as = kmalloc(sizeof(*as), GFP_ATOMIC);
	if (!as)
		return 0;
L
Linus Torvalds 已提交
432

433 434 435 436 437
	INIT_LIST_HEAD(&as->host_list);
	INIT_LIST_HEAD(&as->hl_list);
	as->op = ops;
	as->start = start;
	as->end = end;
L
Linus Torvalds 已提交
438 439 440 441 442 443 444
	as->host = host;

	write_lock_irqsave(&addr_space_lock, flags);
	list_for_each(lh, &host->addr_space) {
		struct hpsb_address_serve *as_this =
			list_entry(lh, struct hpsb_address_serve, host_list);
		struct hpsb_address_serve *as_next =
445 446
			list_entry(lh->next, struct hpsb_address_serve,
				   host_list);
L
Linus Torvalds 已提交
447 448 449 450 451 452 453 454 455 456 457 458 459 460 461

		if (as_this->end > as->start)
			break;

		if (as_next->start >= as->end) {
			list_add(&as->host_list, lh);
			list_add_tail(&as->hl_list, &hl->addr_list);
			retval = 1;
			break;
		}
	}
	write_unlock_irqrestore(&addr_space_lock, flags);

	if (retval == 0)
		kfree(as);
462
	return retval;
L
Linus Torvalds 已提交
463 464 465
}

int hpsb_unregister_addrspace(struct hpsb_highlevel *hl, struct hpsb_host *host,
466
			      u64 start)
L
Linus Torvalds 已提交
467
{
468 469 470 471
	int retval = 0;
	struct hpsb_address_serve *as;
	struct list_head *lh, *next;
	unsigned long flags;
L
Linus Torvalds 已提交
472

473
	write_lock_irqsave(&addr_space_lock, flags);
L
Linus Torvalds 已提交
474
	list_for_each_safe (lh, next, &hl->addr_list) {
475 476
		as = list_entry(lh, struct hpsb_address_serve, hl_list);
		if (as->start == start && as->host == host) {
L
Linus Torvalds 已提交
477
			__delete_addr(as);
478 479 480 481 482 483
			retval = 1;
			break;
		}
	}
	write_unlock_irqrestore(&addr_space_lock, flags);
	return retval;
L
Linus Torvalds 已提交
484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503
}

static void init_hpsb_highlevel(struct hpsb_host *host)
{
	INIT_LIST_HEAD(&dummy_zero_addr.host_list);
	INIT_LIST_HEAD(&dummy_zero_addr.hl_list);
	INIT_LIST_HEAD(&dummy_max_addr.host_list);
	INIT_LIST_HEAD(&dummy_max_addr.hl_list);

	dummy_zero_addr.op = dummy_max_addr.op = &dummy_ops;

	dummy_zero_addr.start = dummy_zero_addr.end = 0;
	dummy_max_addr.start = dummy_max_addr.end = ((u64) 1) << 48;

	list_add_tail(&dummy_zero_addr.host_list, &host->addr_space);
	list_add_tail(&dummy_max_addr.host_list, &host->addr_space);
}

void highlevel_add_host(struct hpsb_host *host)
{
504
	struct hpsb_highlevel *hl;
L
Linus Torvalds 已提交
505 506 507 508

	init_hpsb_highlevel(host);

	down_read(&hl_drivers_sem);
509
	list_for_each_entry(hl, &hl_drivers, hl_list) {
L
Linus Torvalds 已提交
510 511 512
		if (hl->add_host)
			hl->add_host(host);
	}
513 514 515 516
	up_read(&hl_drivers_sem);
	if (host->update_config_rom && hpsb_update_config_rom_image(host) < 0)
		HPSB_ERR("Failed to generate Configuration ROM image for host "
			 "%s-%d", hl->name, host->id);
L
Linus Torvalds 已提交
517 518 519 520
}

void highlevel_remove_host(struct hpsb_host *host)
{
521
	struct hpsb_highlevel *hl;
L
Linus Torvalds 已提交
522 523 524 525 526 527 528 529 530

	down_read(&hl_drivers_sem);
	list_for_each_entry(hl, &hl_drivers, hl_list)
		__unregister_host(hl, host, 0);
	up_read(&hl_drivers_sem);
}

void highlevel_host_reset(struct hpsb_host *host)
{
531
	unsigned long flags;
532
	struct hpsb_highlevel *hl;
L
Linus Torvalds 已提交
533

534
	read_lock_irqsave(&hl_irqs_lock, flags);
L
Linus Torvalds 已提交
535
	list_for_each_entry(hl, &hl_irqs, irq_list) {
536 537 538
		if (hl->host_reset)
			hl->host_reset(host);
	}
539
	read_unlock_irqrestore(&hl_irqs_lock, flags);
L
Linus Torvalds 已提交
540 541 542 543 544
}

void highlevel_fcp_request(struct hpsb_host *host, int nodeid, int direction,
			   void *data, size_t length)
{
545
	unsigned long flags;
546 547
	struct hpsb_highlevel *hl;
	int cts = ((quadlet_t *)data)[0] >> 4;
L
Linus Torvalds 已提交
548

549
	read_lock_irqsave(&hl_irqs_lock, flags);
L
Linus Torvalds 已提交
550
	list_for_each_entry(hl, &hl_irqs, irq_list) {
551 552
		if (hl->fcp_request)
			hl->fcp_request(host, nodeid, direction, cts, data,
L
Linus Torvalds 已提交
553
					length);
554 555
	}
	read_unlock_irqrestore(&hl_irqs_lock, flags);
L
Linus Torvalds 已提交
556 557
}

558 559 560 561 562 563 564 565 566 567 568
/*
 * highlevel_read, highlevel_write, highlevel_lock, highlevel_lock64:
 *
 * These functions are called to handle transactions. They are called when a
 * packet arrives.  The flags argument contains the second word of the first
 * header quadlet of the incoming packet (containing transaction label, retry
 * code, transaction code and priority).  These functions either return a
 * response code or a negative number.  In the first case a response will be
 * generated.  In the latter case, no response will be sent and the driver which
 * handled the request will send the response itself.
 */
569 570
int highlevel_read(struct hpsb_host *host, int nodeid, void *data, u64 addr,
		   unsigned int length, u16 flags)
L
Linus Torvalds 已提交
571
{
572 573 574
	struct hpsb_address_serve *as;
	unsigned int partlength;
	int rcode = RCODE_ADDRESS_ERROR;
L
Linus Torvalds 已提交
575

576
	read_lock(&addr_space_lock);
L
Linus Torvalds 已提交
577 578 579 580
	list_for_each_entry(as, &host->addr_space, host_list) {
		if (as->start > addr)
			break;

581 582
		if (as->end > addr) {
			partlength = min(as->end - addr, (u64) length);
L
Linus Torvalds 已提交
583

584 585
			if (as->op->read)
				rcode = as->op->read(host, nodeid, data,
L
Linus Torvalds 已提交
586
						     addr, partlength, flags);
587 588
			else
				rcode = RCODE_TYPE_ERROR;
L
Linus Torvalds 已提交
589 590

			data += partlength;
591 592
			length -= partlength;
			addr += partlength;
L
Linus Torvalds 已提交
593

594 595 596 597 598
			if ((rcode != RCODE_COMPLETE) || !length)
				break;
		}
	}
	read_unlock(&addr_space_lock);
L
Linus Torvalds 已提交
599

600 601 602
	if (length && (rcode == RCODE_COMPLETE))
		rcode = RCODE_ADDRESS_ERROR;
	return rcode;
L
Linus Torvalds 已提交
603 604
}

605 606
int highlevel_write(struct hpsb_host *host, int nodeid, int destid, void *data,
		    u64 addr, unsigned int length, u16 flags)
L
Linus Torvalds 已提交
607
{
608 609 610
	struct hpsb_address_serve *as;
	unsigned int partlength;
	int rcode = RCODE_ADDRESS_ERROR;
L
Linus Torvalds 已提交
611

612
	read_lock(&addr_space_lock);
L
Linus Torvalds 已提交
613 614 615 616
	list_for_each_entry(as, &host->addr_space, host_list) {
		if (as->start > addr)
			break;

617 618
		if (as->end > addr) {
			partlength = min(as->end - addr, (u64) length);
L
Linus Torvalds 已提交
619

620 621 622 623 624 625
			if (as->op->write)
				rcode = as->op->write(host, nodeid, destid,
						      data, addr, partlength,
						      flags);
			else
				rcode = RCODE_TYPE_ERROR;
L
Linus Torvalds 已提交
626 627

			data += partlength;
628 629
			length -= partlength;
			addr += partlength;
L
Linus Torvalds 已提交
630

631 632 633 634 635
			if ((rcode != RCODE_COMPLETE) || !length)
				break;
		}
	}
	read_unlock(&addr_space_lock);
L
Linus Torvalds 已提交
636

637 638 639
	if (length && (rcode == RCODE_COMPLETE))
		rcode = RCODE_ADDRESS_ERROR;
	return rcode;
L
Linus Torvalds 已提交
640 641 642
}

int highlevel_lock(struct hpsb_host *host, int nodeid, quadlet_t *store,
643 644
		   u64 addr, quadlet_t data, quadlet_t arg, int ext_tcode,
		   u16 flags)
L
Linus Torvalds 已提交
645
{
646 647
	struct hpsb_address_serve *as;
	int rcode = RCODE_ADDRESS_ERROR;
L
Linus Torvalds 已提交
648

649
	read_lock(&addr_space_lock);
L
Linus Torvalds 已提交
650 651 652 653
	list_for_each_entry(as, &host->addr_space, host_list) {
		if (as->start > addr)
			break;

654 655 656 657 658 659 660 661 662 663 664 665
		if (as->end > addr) {
			if (as->op->lock)
				rcode = as->op->lock(host, nodeid, store, addr,
						     data, arg, ext_tcode,
						     flags);
			else
				rcode = RCODE_TYPE_ERROR;
			break;
		}
	}
	read_unlock(&addr_space_lock);
	return rcode;
L
Linus Torvalds 已提交
666 667 668
}

int highlevel_lock64(struct hpsb_host *host, int nodeid, octlet_t *store,
669 670
		     u64 addr, octlet_t data, octlet_t arg, int ext_tcode,
		     u16 flags)
L
Linus Torvalds 已提交
671
{
672 673
	struct hpsb_address_serve *as;
	int rcode = RCODE_ADDRESS_ERROR;
L
Linus Torvalds 已提交
674

675
	read_lock(&addr_space_lock);
L
Linus Torvalds 已提交
676 677 678 679 680

	list_for_each_entry(as, &host->addr_space, host_list) {
		if (as->start > addr)
			break;

681 682 683 684 685 686 687 688 689 690 691 692
		if (as->end > addr) {
			if (as->op->lock64)
				rcode = as->op->lock64(host, nodeid, store,
						       addr, data, arg,
						       ext_tcode, flags);
			else
				rcode = RCODE_TYPE_ERROR;
			break;
		}
	}
	read_unlock(&addr_space_lock);
	return rcode;
L
Linus Torvalds 已提交
693
}