2010-03-30 13:56:23 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) ST-Ericsson AB 2010
|
|
|
|
* Author: Sjur Brendeland/sjur.brandeland@stericsson.com
|
|
|
|
* License terms: GNU General Public License (GPL) version 2
|
|
|
|
*/
|
|
|
|
|
2010-09-05 21:31:11 +00:00
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ":%s(): " fmt, __func__
|
|
|
|
|
2010-03-30 13:56:23 +00:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <net/caif/caif_layer.h>
|
|
|
|
#include <net/caif/cfsrvl.h>
|
|
|
|
#include <net/caif/cfpkt.h>
|
|
|
|
|
|
|
|
#define container_obj(layr) ((struct cfsrvl *) layr)
|
|
|
|
|
|
|
|
static int cfvidl_receive(struct cflayer *layr, struct cfpkt *pkt);
|
|
|
|
static int cfvidl_transmit(struct cflayer *layr, struct cfpkt *pkt);
|
|
|
|
|
|
|
|
struct cflayer *cfvidl_create(u8 channel_id, struct dev_info *dev_info)
|
|
|
|
{
|
2011-08-25 13:22:24 +00:00
|
|
|
struct cfsrvl *vid = kzalloc(sizeof(struct cfsrvl), GFP_ATOMIC);
|
|
|
|
if (!vid)
|
2010-03-30 13:56:23 +00:00
|
|
|
return NULL;
|
|
|
|
caif_assert(offsetof(struct cfsrvl, layer) == 0);
|
|
|
|
|
2010-06-17 06:55:38 +00:00
|
|
|
cfsrvl_init(vid, channel_id, dev_info, false);
|
2010-03-30 13:56:23 +00:00
|
|
|
vid->layer.receive = cfvidl_receive;
|
|
|
|
vid->layer.transmit = cfvidl_transmit;
|
|
|
|
snprintf(vid->layer.name, CAIF_LAYER_NAME_SZ - 1, "vid1");
|
|
|
|
return &vid->layer;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cfvidl_receive(struct cflayer *layr, struct cfpkt *pkt)
|
|
|
|
{
|
|
|
|
u32 videoheader;
|
|
|
|
if (cfpkt_extr_head(pkt, &videoheader, 4) < 0) {
|
2010-09-05 21:31:11 +00:00
|
|
|
pr_err("Packet is erroneous!\n");
|
2010-03-30 13:56:23 +00:00
|
|
|
cfpkt_destroy(pkt);
|
|
|
|
return -EPROTO;
|
|
|
|
}
|
|
|
|
return layr->up->receive(layr->up, pkt);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cfvidl_transmit(struct cflayer *layr, struct cfpkt *pkt)
|
|
|
|
{
|
|
|
|
struct cfsrvl *service = container_obj(layr);
|
|
|
|
struct caif_payload_info *info;
|
|
|
|
u32 videoheader = 0;
|
|
|
|
int ret;
|
2012-03-11 10:28:31 +00:00
|
|
|
|
|
|
|
if (!cfsrvl_ready(service, &ret)) {
|
|
|
|
cfpkt_destroy(pkt);
|
2010-03-30 13:56:23 +00:00
|
|
|
return ret;
|
2012-03-11 10:28:31 +00:00
|
|
|
}
|
|
|
|
|
2010-03-30 13:56:23 +00:00
|
|
|
cfpkt_add_head(pkt, &videoheader, 4);
|
|
|
|
/* Add info for MUX-layer to route the packet out */
|
|
|
|
info = cfpkt_info(pkt);
|
|
|
|
info->channel_id = service->layer.id;
|
|
|
|
info->dev_info = &service->dev_info;
|
2011-04-11 10:43:51 +00:00
|
|
|
return layr->dn->transmit(layr->dn, pkt);
|
2010-03-30 13:56:23 +00:00
|
|
|
}
|