Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux...
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / ieee1394 / highlevel.c
blob272543a42a43b0478caf4879c3664782790bafc2
1 /*
2 * IEEE 1394 for Linux
4 * Copyright (C) 1999 Andreas E. Bombe
6 * This code is licensed under the GPL. See the file COPYING in the root
7 * directory of the kernel sources for details.
10 * Contributions:
12 * Christian Toegel <christian.toegel@gmx.at>
13 * unregister address space
15 * Manfred Weihs <weihs@ict.tuwien.ac.at>
16 * unregister address space
20 #include <linux/slab.h>
21 #include <linux/list.h>
22 #include <linux/bitops.h>
24 #include "ieee1394.h"
25 #include "ieee1394_types.h"
26 #include "hosts.h"
27 #include "ieee1394_core.h"
28 #include "highlevel.h"
29 #include "nodemgr.h"
32 struct hl_host_info {
33 struct list_head list;
34 struct hpsb_host *host;
35 size_t size;
36 unsigned long key;
37 void *data;
41 static LIST_HEAD(hl_drivers);
42 static DECLARE_RWSEM(hl_drivers_sem);
44 static LIST_HEAD(hl_irqs);
45 static DEFINE_RWLOCK(hl_irqs_lock);
47 static DEFINE_RWLOCK(addr_space_lock);
50 static struct hl_host_info *hl_get_hostinfo(struct hpsb_highlevel *hl,
51 struct hpsb_host *host)
53 struct hl_host_info *hi = NULL;
55 if (!hl || !host)
56 return NULL;
58 read_lock(&hl->host_info_lock);
59 list_for_each_entry(hi, &hl->host_info_list, list) {
60 if (hi->host == host) {
61 read_unlock(&hl->host_info_lock);
62 return hi;
65 read_unlock(&hl->host_info_lock);
66 return NULL;
69 /**
70 * hpsb_get_hostinfo - retrieve a hostinfo pointer bound to this driver/host
72 * Returns a per @host and @hl driver data structure that was previously stored
73 * by hpsb_create_hostinfo.
75 void *hpsb_get_hostinfo(struct hpsb_highlevel *hl, struct hpsb_host *host)
77 struct hl_host_info *hi = hl_get_hostinfo(hl, host);
79 return hi ? hi->data : NULL;
82 /**
83 * hpsb_create_hostinfo - allocate a hostinfo pointer bound to this driver/host
85 * Allocate a hostinfo pointer backed by memory with @data_size and bind it to
86 * to this @hl driver and @host. If @data_size is zero, then the return here is
87 * only valid for error checking.
89 void *hpsb_create_hostinfo(struct hpsb_highlevel *hl, struct hpsb_host *host,
90 size_t data_size)
92 struct hl_host_info *hi;
93 void *data;
94 unsigned long flags;
96 hi = hl_get_hostinfo(hl, host);
97 if (hi) {
98 HPSB_ERR("%s called hpsb_create_hostinfo when hostinfo already"
99 " exists", hl->name);
100 return NULL;
103 hi = kzalloc(sizeof(*hi) + data_size, GFP_ATOMIC);
104 if (!hi)
105 return NULL;
107 if (data_size) {
108 data = hi->data = hi + 1;
109 hi->size = data_size;
110 } else
111 data = hi;
113 hi->host = host;
115 write_lock_irqsave(&hl->host_info_lock, flags);
116 list_add_tail(&hi->list, &hl->host_info_list);
117 write_unlock_irqrestore(&hl->host_info_lock, flags);
119 return data;
123 * hpsb_set_hostinfo - set the hostinfo pointer to something useful
125 * Usually follows a call to hpsb_create_hostinfo, where the size is 0.
127 int hpsb_set_hostinfo(struct hpsb_highlevel *hl, struct hpsb_host *host,
128 void *data)
130 struct hl_host_info *hi;
132 hi = hl_get_hostinfo(hl, host);
133 if (hi) {
134 if (!hi->size && !hi->data) {
135 hi->data = data;
136 return 0;
137 } else
138 HPSB_ERR("%s called hpsb_set_hostinfo when hostinfo "
139 "already has data", hl->name);
140 } else
141 HPSB_ERR("%s called hpsb_set_hostinfo when no hostinfo exists",
142 hl->name);
143 return -EINVAL;
147 * hpsb_destroy_hostinfo - free and remove a hostinfo pointer
149 * Free and remove the hostinfo pointer bound to this @hl driver and @host.
151 void hpsb_destroy_hostinfo(struct hpsb_highlevel *hl, struct hpsb_host *host)
153 struct hl_host_info *hi;
155 hi = hl_get_hostinfo(hl, host);
156 if (hi) {
157 unsigned long flags;
158 write_lock_irqsave(&hl->host_info_lock, flags);
159 list_del(&hi->list);
160 write_unlock_irqrestore(&hl->host_info_lock, flags);
161 kfree(hi);
163 return;
167 * hpsb_set_hostinfo_key - set an alternate lookup key for an hostinfo
169 * Sets an alternate lookup key for the hostinfo bound to this @hl driver and
170 * @host.
172 void hpsb_set_hostinfo_key(struct hpsb_highlevel *hl, struct hpsb_host *host,
173 unsigned long key)
175 struct hl_host_info *hi;
177 hi = hl_get_hostinfo(hl, host);
178 if (hi)
179 hi->key = key;
180 return;
184 * hpsb_get_hostinfo_bykey - retrieve a hostinfo pointer by its alternate key
186 void *hpsb_get_hostinfo_bykey(struct hpsb_highlevel *hl, unsigned long key)
188 struct hl_host_info *hi;
189 void *data = NULL;
191 if (!hl)
192 return NULL;
194 read_lock(&hl->host_info_lock);
195 list_for_each_entry(hi, &hl->host_info_list, list) {
196 if (hi->key == key) {
197 data = hi->data;
198 break;
201 read_unlock(&hl->host_info_lock);
202 return data;
205 static int highlevel_for_each_host_reg(struct hpsb_host *host, void *__data)
207 struct hpsb_highlevel *hl = __data;
209 hl->add_host(host);
211 if (host->update_config_rom && hpsb_update_config_rom_image(host) < 0)
212 HPSB_ERR("Failed to generate Configuration ROM image for host "
213 "%s-%d", hl->name, host->id);
214 return 0;
218 * hpsb_register_highlevel - register highlevel driver
220 * The name pointer in @hl has to stay valid at all times because the string is
221 * not copied.
223 void hpsb_register_highlevel(struct hpsb_highlevel *hl)
225 unsigned long flags;
227 hpsb_init_highlevel(hl);
228 INIT_LIST_HEAD(&hl->addr_list);
230 down_write(&hl_drivers_sem);
231 list_add_tail(&hl->hl_list, &hl_drivers);
232 up_write(&hl_drivers_sem);
234 write_lock_irqsave(&hl_irqs_lock, flags);
235 list_add_tail(&hl->irq_list, &hl_irqs);
236 write_unlock_irqrestore(&hl_irqs_lock, flags);
238 if (hl->add_host)
239 nodemgr_for_each_host(hl, highlevel_for_each_host_reg);
240 return;
243 static void __delete_addr(struct hpsb_address_serve *as)
245 list_del(&as->host_list);
246 list_del(&as->hl_list);
247 kfree(as);
250 static void __unregister_host(struct hpsb_highlevel *hl, struct hpsb_host *host,
251 int update_cr)
253 unsigned long flags;
254 struct list_head *lh, *next;
255 struct hpsb_address_serve *as;
257 /* First, let the highlevel driver unreg */
258 if (hl->remove_host)
259 hl->remove_host(host);
261 /* Remove any addresses that are matched for this highlevel driver
262 * and this particular host. */
263 write_lock_irqsave(&addr_space_lock, flags);
264 list_for_each_safe (lh, next, &hl->addr_list) {
265 as = list_entry(lh, struct hpsb_address_serve, hl_list);
266 if (as->host == host)
267 __delete_addr(as);
269 write_unlock_irqrestore(&addr_space_lock, flags);
271 /* Now update the config-rom to reflect anything removed by the
272 * highlevel driver. */
273 if (update_cr && host->update_config_rom &&
274 hpsb_update_config_rom_image(host) < 0)
275 HPSB_ERR("Failed to generate Configuration ROM image for host "
276 "%s-%d", hl->name, host->id);
278 /* Finally remove all the host info associated between these two. */
279 hpsb_destroy_hostinfo(hl, host);
282 static int highlevel_for_each_host_unreg(struct hpsb_host *host, void *__data)
284 struct hpsb_highlevel *hl = __data;
286 __unregister_host(hl, host, 1);
287 return 0;
291 * hpsb_unregister_highlevel - unregister highlevel driver
293 void hpsb_unregister_highlevel(struct hpsb_highlevel *hl)
295 unsigned long flags;
297 write_lock_irqsave(&hl_irqs_lock, flags);
298 list_del(&hl->irq_list);
299 write_unlock_irqrestore(&hl_irqs_lock, flags);
301 down_write(&hl_drivers_sem);
302 list_del(&hl->hl_list);
303 up_write(&hl_drivers_sem);
305 nodemgr_for_each_host(hl, highlevel_for_each_host_unreg);
309 * hpsb_allocate_and_register_addrspace - alloc' and reg' a host address space
311 * @start and @end are 48 bit pointers and have to be quadlet aligned.
312 * @end points to the first address behind the handled addresses. This
313 * function can be called multiple times for a single hpsb_highlevel @hl to
314 * implement sparse register sets. The requested region must not overlap any
315 * previously allocated region, otherwise registering will fail.
317 * It returns true for successful allocation. Address spaces can be
318 * unregistered with hpsb_unregister_addrspace. All remaining address spaces
319 * are automatically deallocated together with the hpsb_highlevel @hl.
321 u64 hpsb_allocate_and_register_addrspace(struct hpsb_highlevel *hl,
322 struct hpsb_host *host,
323 struct hpsb_address_ops *ops,
324 u64 size, u64 alignment,
325 u64 start, u64 end)
327 struct hpsb_address_serve *as, *a1, *a2;
328 struct list_head *entry;
329 u64 retval = CSR1212_INVALID_ADDR_SPACE;
330 unsigned long flags;
331 u64 align_mask = ~(alignment - 1);
333 if ((alignment & 3) || (alignment > 0x800000000000ULL) ||
334 (hweight64(alignment) != 1)) {
335 HPSB_ERR("%s called with invalid alignment: 0x%048llx",
336 __func__, (unsigned long long)alignment);
337 return retval;
340 /* default range,
341 * avoids controller's posted write area (see OHCI 1.1 clause 1.5) */
342 if (start == CSR1212_INVALID_ADDR_SPACE &&
343 end == CSR1212_INVALID_ADDR_SPACE) {
344 start = host->middle_addr_space;
345 end = CSR1212_ALL_SPACE_END;
348 if (((start|end) & ~align_mask) || (start >= end) ||
349 (end > CSR1212_ALL_SPACE_END)) {
350 HPSB_ERR("%s called with invalid addresses "
351 "(start = %012Lx end = %012Lx)", __func__,
352 (unsigned long long)start,(unsigned long long)end);
353 return retval;
356 as = kmalloc(sizeof(*as), GFP_KERNEL);
357 if (!as)
358 return retval;
360 INIT_LIST_HEAD(&as->host_list);
361 INIT_LIST_HEAD(&as->hl_list);
362 as->op = ops;
363 as->host = host;
365 write_lock_irqsave(&addr_space_lock, flags);
366 list_for_each(entry, &host->addr_space) {
367 u64 a1sa, a1ea;
368 u64 a2sa, a2ea;
370 a1 = list_entry(entry, struct hpsb_address_serve, host_list);
371 a2 = list_entry(entry->next, struct hpsb_address_serve,
372 host_list);
374 a1sa = a1->start & align_mask;
375 a1ea = (a1->end + alignment -1) & align_mask;
376 a2sa = a2->start & align_mask;
377 a2ea = (a2->end + alignment -1) & align_mask;
379 if ((a2sa - a1ea >= size) && (a2sa - start >= size) &&
380 (a2sa > start)) {
381 as->start = max(start, a1ea);
382 as->end = as->start + size;
383 list_add(&as->host_list, entry);
384 list_add_tail(&as->hl_list, &hl->addr_list);
385 retval = as->start;
386 break;
389 write_unlock_irqrestore(&addr_space_lock, flags);
391 if (retval == CSR1212_INVALID_ADDR_SPACE)
392 kfree(as);
393 return retval;
397 * hpsb_register_addrspace - register a host address space
399 * @start and @end are 48 bit pointers and have to be quadlet aligned.
400 * @end points to the first address behind the handled addresses. This
401 * function can be called multiple times for a single hpsb_highlevel @hl to
402 * implement sparse register sets. The requested region must not overlap any
403 * previously allocated region, otherwise registering will fail.
405 * It returns true for successful allocation. Address spaces can be
406 * unregistered with hpsb_unregister_addrspace. All remaining address spaces
407 * are automatically deallocated together with the hpsb_highlevel @hl.
409 int hpsb_register_addrspace(struct hpsb_highlevel *hl, struct hpsb_host *host,
410 struct hpsb_address_ops *ops, u64 start, u64 end)
412 struct hpsb_address_serve *as;
413 struct list_head *lh;
414 int retval = 0;
415 unsigned long flags;
417 if (((start|end) & 3) || (start >= end) ||
418 (end > CSR1212_ALL_SPACE_END)) {
419 HPSB_ERR("%s called with invalid addresses", __func__);
420 return 0;
423 as = kmalloc(sizeof(*as), GFP_ATOMIC);
424 if (!as)
425 return 0;
427 INIT_LIST_HEAD(&as->host_list);
428 INIT_LIST_HEAD(&as->hl_list);
429 as->op = ops;
430 as->start = start;
431 as->end = end;
432 as->host = host;
434 write_lock_irqsave(&addr_space_lock, flags);
435 list_for_each(lh, &host->addr_space) {
436 struct hpsb_address_serve *as_this =
437 list_entry(lh, struct hpsb_address_serve, host_list);
438 struct hpsb_address_serve *as_next =
439 list_entry(lh->next, struct hpsb_address_serve,
440 host_list);
442 if (as_this->end > as->start)
443 break;
445 if (as_next->start >= as->end) {
446 list_add(&as->host_list, lh);
447 list_add_tail(&as->hl_list, &hl->addr_list);
448 retval = 1;
449 break;
452 write_unlock_irqrestore(&addr_space_lock, flags);
454 if (retval == 0)
455 kfree(as);
456 return retval;
459 int hpsb_unregister_addrspace(struct hpsb_highlevel *hl, struct hpsb_host *host,
460 u64 start)
462 int retval = 0;
463 struct hpsb_address_serve *as;
464 struct list_head *lh, *next;
465 unsigned long flags;
467 write_lock_irqsave(&addr_space_lock, flags);
468 list_for_each_safe (lh, next, &hl->addr_list) {
469 as = list_entry(lh, struct hpsb_address_serve, hl_list);
470 if (as->start == start && as->host == host) {
471 __delete_addr(as);
472 retval = 1;
473 break;
476 write_unlock_irqrestore(&addr_space_lock, flags);
477 return retval;
480 static struct hpsb_address_ops dummy_ops;
482 /* dummy address spaces as lower and upper bounds of the host's a.s. list */
483 static void init_hpsb_highlevel(struct hpsb_host *host)
485 INIT_LIST_HEAD(&host->dummy_zero_addr.host_list);
486 INIT_LIST_HEAD(&host->dummy_zero_addr.hl_list);
487 INIT_LIST_HEAD(&host->dummy_max_addr.host_list);
488 INIT_LIST_HEAD(&host->dummy_max_addr.hl_list);
490 host->dummy_zero_addr.op = host->dummy_max_addr.op = &dummy_ops;
492 host->dummy_zero_addr.start = host->dummy_zero_addr.end = 0;
493 host->dummy_max_addr.start = host->dummy_max_addr.end = ((u64) 1) << 48;
495 list_add_tail(&host->dummy_zero_addr.host_list, &host->addr_space);
496 list_add_tail(&host->dummy_max_addr.host_list, &host->addr_space);
499 void highlevel_add_host(struct hpsb_host *host)
501 struct hpsb_highlevel *hl;
503 init_hpsb_highlevel(host);
505 down_read(&hl_drivers_sem);
506 list_for_each_entry(hl, &hl_drivers, hl_list) {
507 if (hl->add_host)
508 hl->add_host(host);
510 up_read(&hl_drivers_sem);
511 if (host->update_config_rom && hpsb_update_config_rom_image(host) < 0)
512 HPSB_ERR("Failed to generate Configuration ROM image for host "
513 "%s-%d", hl->name, host->id);
516 void highlevel_remove_host(struct hpsb_host *host)
518 struct hpsb_highlevel *hl;
520 down_read(&hl_drivers_sem);
521 list_for_each_entry(hl, &hl_drivers, hl_list)
522 __unregister_host(hl, host, 0);
523 up_read(&hl_drivers_sem);
526 void highlevel_host_reset(struct hpsb_host *host)
528 unsigned long flags;
529 struct hpsb_highlevel *hl;
531 read_lock_irqsave(&hl_irqs_lock, flags);
532 list_for_each_entry(hl, &hl_irqs, irq_list) {
533 if (hl->host_reset)
534 hl->host_reset(host);
536 read_unlock_irqrestore(&hl_irqs_lock, flags);
539 void highlevel_fcp_request(struct hpsb_host *host, int nodeid, int direction,
540 void *data, size_t length)
542 unsigned long flags;
543 struct hpsb_highlevel *hl;
544 int cts = ((quadlet_t *)data)[0] >> 4;
546 read_lock_irqsave(&hl_irqs_lock, flags);
547 list_for_each_entry(hl, &hl_irqs, irq_list) {
548 if (hl->fcp_request)
549 hl->fcp_request(host, nodeid, direction, cts, data,
550 length);
552 read_unlock_irqrestore(&hl_irqs_lock, flags);
556 * highlevel_read, highlevel_write, highlevel_lock, highlevel_lock64:
558 * These functions are called to handle transactions. They are called when a
559 * packet arrives. The flags argument contains the second word of the first
560 * header quadlet of the incoming packet (containing transaction label, retry
561 * code, transaction code and priority). These functions either return a
562 * response code or a negative number. In the first case a response will be
563 * generated. In the latter case, no response will be sent and the driver which
564 * handled the request will send the response itself.
566 int highlevel_read(struct hpsb_host *host, int nodeid, void *data, u64 addr,
567 unsigned int length, u16 flags)
569 struct hpsb_address_serve *as;
570 unsigned int partlength;
571 int rcode = RCODE_ADDRESS_ERROR;
573 read_lock(&addr_space_lock);
574 list_for_each_entry(as, &host->addr_space, host_list) {
575 if (as->start > addr)
576 break;
578 if (as->end > addr) {
579 partlength = min(as->end - addr, (u64) length);
581 if (as->op->read)
582 rcode = as->op->read(host, nodeid, data,
583 addr, partlength, flags);
584 else
585 rcode = RCODE_TYPE_ERROR;
587 data += partlength;
588 length -= partlength;
589 addr += partlength;
591 if ((rcode != RCODE_COMPLETE) || !length)
592 break;
595 read_unlock(&addr_space_lock);
597 if (length && (rcode == RCODE_COMPLETE))
598 rcode = RCODE_ADDRESS_ERROR;
599 return rcode;
602 int highlevel_write(struct hpsb_host *host, int nodeid, int destid, void *data,
603 u64 addr, unsigned int length, u16 flags)
605 struct hpsb_address_serve *as;
606 unsigned int partlength;
607 int rcode = RCODE_ADDRESS_ERROR;
609 read_lock(&addr_space_lock);
610 list_for_each_entry(as, &host->addr_space, host_list) {
611 if (as->start > addr)
612 break;
614 if (as->end > addr) {
615 partlength = min(as->end - addr, (u64) length);
617 if (as->op->write)
618 rcode = as->op->write(host, nodeid, destid,
619 data, addr, partlength,
620 flags);
621 else
622 rcode = RCODE_TYPE_ERROR;
624 data += partlength;
625 length -= partlength;
626 addr += partlength;
628 if ((rcode != RCODE_COMPLETE) || !length)
629 break;
632 read_unlock(&addr_space_lock);
634 if (length && (rcode == RCODE_COMPLETE))
635 rcode = RCODE_ADDRESS_ERROR;
636 return rcode;
639 int highlevel_lock(struct hpsb_host *host, int nodeid, quadlet_t *store,
640 u64 addr, quadlet_t data, quadlet_t arg, int ext_tcode,
641 u16 flags)
643 struct hpsb_address_serve *as;
644 int rcode = RCODE_ADDRESS_ERROR;
646 read_lock(&addr_space_lock);
647 list_for_each_entry(as, &host->addr_space, host_list) {
648 if (as->start > addr)
649 break;
651 if (as->end > addr) {
652 if (as->op->lock)
653 rcode = as->op->lock(host, nodeid, store, addr,
654 data, arg, ext_tcode,
655 flags);
656 else
657 rcode = RCODE_TYPE_ERROR;
658 break;
661 read_unlock(&addr_space_lock);
662 return rcode;
665 int highlevel_lock64(struct hpsb_host *host, int nodeid, octlet_t *store,
666 u64 addr, octlet_t data, octlet_t arg, int ext_tcode,
667 u16 flags)
669 struct hpsb_address_serve *as;
670 int rcode = RCODE_ADDRESS_ERROR;
672 read_lock(&addr_space_lock);
674 list_for_each_entry(as, &host->addr_space, host_list) {
675 if (as->start > addr)
676 break;
678 if (as->end > addr) {
679 if (as->op->lock64)
680 rcode = as->op->lock64(host, nodeid, store,
681 addr, data, arg,
682 ext_tcode, flags);
683 else
684 rcode = RCODE_TYPE_ERROR;
685 break;
688 read_unlock(&addr_space_lock);
689 return rcode;