📄 hosts.c
字号:
/** IEEE 1394 for Linux** Low level (host adapter) management.** Copyright (C) 1999 Andreas E. Bombe* Copyright (C) 1999 Emanuel Pirker** This code is licensed under the GPL. See the file COPYING in the root* directory of the kernel sources for details.*/#include <linux/config.h>#include <linux/types.h>#include <linux/list.h>#include <linux/init.h>#include <linux/slab.h>#include "ieee1394_types.h"#include "hosts.h"#include "ieee1394_core.h"#include "highlevel.h"LIST_HEAD(hpsb_hosts);DECLARE_MUTEX(hpsb_hosts_lock);static int dummy_transmit_packet(struct hpsb_host *h, struct hpsb_packet *p){ return 0;}static int dummy_devctl(struct hpsb_host *h, enum devctl_cmd c, int arg){ return -1;}static int dummy_isoctl(struct hpsb_iso *iso, enum isoctl_cmd command, unsigned long arg){ return -1;}static struct hpsb_host_driver dummy_driver = { .transmit_packet = dummy_transmit_packet, .devctl = dummy_devctl, .isoctl = dummy_isoctl};/*** hpsb_ref_host - increase reference count for host controller.* @host: the host controller** Increase the reference count for the specified host controller.* When holding a reference to a host, the memory allocated for the* host struct will not be freed and the host is guaranteed to be in a* consistent state. The driver may be unloaded or the controller may* be removed (PCMCIA), but the host struct will remain valid.*/int hpsb_ref_host(struct hpsb_host *host){ struct list_head *lh; int retval = 0; down(&hpsb_hosts_lock); list_for_each(lh, &hpsb_hosts) { if (host == list_entry(lh, struct hpsb_host, host_list)) { host->driver->devctl(host, MODIFY_USAGE, 1); host->refcount++; retval = 1; break; } } up(&hpsb_hosts_lock); return retval;}/*** hpsb_unref_host - decrease reference count for host controller.* @host: the host controller** Decrease the reference count for the specified host controller.* When the reference count reaches zero, the memory allocated for the* &hpsb_host will be freed.*/void hpsb_unref_host(struct hpsb_host *host){ host->driver->devctl(host, MODIFY_USAGE, 0); down(&hpsb_hosts_lock); host->refcount--; if (!host->refcount && host->is_shutdown) kfree(host); up(&hpsb_hosts_lock);}/*** hpsb_alloc_host - allocate a new host controller.* @drv: the driver that will manage the host controller* @extra: number of extra bytes to allocate for the driver** Allocate a &hpsb_host and initialize the general subsystem specific* fields. If the driver needs to store per host data, as drivers* usually do, the amount of memory required can be specified by the* @extra parameter. Once allocated, the driver should initialize the* driver specific parts, enable the controller and make it available* to the general subsystem using hpsb_add_host().** The &hpsb_host is allocated with an single initial reference* belonging to the driver. Once the driver is done with the struct,* for example, when the driver is unloaded, it should release this* reference using hpsb_unref_host().** Return Value: a pointer to the &hpsb_host if succesful, %NULL if* no memory was available.*/struct hpsb_host *hpsb_alloc_host(struct hpsb_host_driver *drv, size_t extra){ struct hpsb_host *h; int i; h = kmalloc(sizeof(struct hpsb_host) + extra, SLAB_KERNEL); if (!h) return NULL; memset(h, 0, sizeof(struct hpsb_host) + extra); h->hostdata = h + 1; h->driver = drv; h->refcount = 1; INIT_LIST_HEAD(&h->pending_packets); spin_lock_init(&h->pending_pkt_lock); for (i = 0; i < ARRAY_SIZE(h->tpool); i++) HPSB_TPOOL_INIT(&h->tpool[i]); atomic_set(&h->generation, 0); init_timer(&h->timeout); h->timeout.data = (unsigned long) h; h->timeout.function = abort_timedouts; h->timeout_interval = HZ / 20; // 50ms by default h->topology_map = h->csr.topology_map + 3; h->speed_map = (u8 *)(h->csr.speed_map + 2); return h;}static int alloc_hostnum(void){ int hostnum = 0; while (1) { struct list_head *lh; int found = 0; list_for_each(lh, &hpsb_hosts) { struct hpsb_host *host = list_entry(lh, struct hpsb_host, host_list); if (host->id == hostnum) { found = 1; break; } } if (!found) return hostnum; hostnum++; } return 0;}//struct hpsb_host: see hosts.hvoid hpsb_add_host(struct hpsb_host *host){ down(&hpsb_hosts_lock); host->id = alloc_hostnum(); list_add_tail(&host->host_list, &hpsb_hosts); up(&hpsb_hosts_lock); highlevel_add_host(host); host->driver->devctl(host, RESET_BUS, LONG_RESET);}void hpsb_remove_host(struct hpsb_host *host){ down(&hpsb_hosts_lock); host->is_shutdown = 1; host->driver = &dummy_driver; list_del(&host->host_list); up(&hpsb_hosts_lock); highlevel_remove_host(host);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -