-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sjur Braendeland
authored and
David S. Miller
committed
Mar 31, 2010
1 parent
fbea1d8
commit d8d3ea5
Showing
3 changed files
with
501 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 15c9ac0c80e390df09ce5730a7b08b13e07a8dd5 | ||
refs/heads/master: c72dfae2f77620e5b3fcee1beeee7e536a42b2ad |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
/* | ||
* Copyright (C) ST-Ericsson AB 2010 | ||
* Author: Sjur Brendeland sjur.brandeland@stericsson.com | ||
* License terms: GNU General Public License (GPL) version 2 | ||
*/ | ||
|
||
#include <linux/module.h> | ||
#include <linux/spinlock.h> | ||
#include <net/caif/cfctrl.h> | ||
#include <net/caif/cfcnfg.h> | ||
#include <net/caif/caif_dev.h> | ||
|
||
int connect_req_to_link_param(struct cfcnfg *cnfg, | ||
struct caif_connect_request *s, | ||
struct cfctrl_link_param *l) | ||
{ | ||
struct dev_info *dev_info; | ||
enum cfcnfg_phy_preference pref; | ||
memset(l, 0, sizeof(*l)); | ||
l->priority = s->priority; | ||
|
||
if (s->link_name[0] != '\0') | ||
l->phyid = cfcnfg_get_named(cnfg, s->link_name); | ||
else { | ||
switch (s->link_selector) { | ||
case CAIF_LINK_HIGH_BANDW: | ||
pref = CFPHYPREF_HIGH_BW; | ||
break; | ||
case CAIF_LINK_LOW_LATENCY: | ||
pref = CFPHYPREF_LOW_LAT; | ||
break; | ||
default: | ||
return -EINVAL; | ||
} | ||
dev_info = cfcnfg_get_phyid(cnfg, pref); | ||
if (dev_info == NULL) | ||
return -ENODEV; | ||
l->phyid = dev_info->id; | ||
} | ||
switch (s->protocol) { | ||
case CAIFPROTO_AT: | ||
l->linktype = CFCTRL_SRV_VEI; | ||
if (s->sockaddr.u.at.type == CAIF_ATTYPE_PLAIN) | ||
l->chtype = 0x02; | ||
else | ||
l->chtype = s->sockaddr.u.at.type; | ||
l->endpoint = 0x00; | ||
break; | ||
case CAIFPROTO_DATAGRAM: | ||
l->linktype = CFCTRL_SRV_DATAGRAM; | ||
l->chtype = 0x00; | ||
l->u.datagram.connid = s->sockaddr.u.dgm.connection_id; | ||
break; | ||
case CAIFPROTO_DATAGRAM_LOOP: | ||
l->linktype = CFCTRL_SRV_DATAGRAM; | ||
l->chtype = 0x03; | ||
l->endpoint = 0x00; | ||
l->u.datagram.connid = s->sockaddr.u.dgm.connection_id; | ||
break; | ||
case CAIFPROTO_RFM: | ||
l->linktype = CFCTRL_SRV_RFM; | ||
l->u.datagram.connid = s->sockaddr.u.rfm.connection_id; | ||
strncpy(l->u.rfm.volume, s->sockaddr.u.rfm.volume, | ||
sizeof(l->u.rfm.volume)-1); | ||
l->u.rfm.volume[sizeof(l->u.rfm.volume)-1] = 0; | ||
break; | ||
case CAIFPROTO_UTIL: | ||
l->linktype = CFCTRL_SRV_UTIL; | ||
l->endpoint = 0x00; | ||
l->chtype = 0x00; | ||
strncpy(l->u.utility.name, s->sockaddr.u.util.service, | ||
sizeof(l->u.utility.name)-1); | ||
l->u.utility.name[sizeof(l->u.utility.name)-1] = 0; | ||
caif_assert(sizeof(l->u.utility.name) > 10); | ||
l->u.utility.paramlen = s->param.size; | ||
if (l->u.utility.paramlen > sizeof(l->u.utility.params)) | ||
l->u.utility.paramlen = sizeof(l->u.utility.params); | ||
|
||
memcpy(l->u.utility.params, s->param.data, | ||
l->u.utility.paramlen); | ||
|
||
break; | ||
default: | ||
return -EINVAL; | ||
} | ||
return 0; | ||
} |
Oops, something went wrong.