Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 330896
b: refs/heads/master
c: 06bae12
h: refs/heads/master
v: v3
  • Loading branch information
Antti Palosaari authored and Mauro Carvalho Chehab committed Aug 15, 2012
1 parent 0ec0753 commit 93c5604
Show file tree
Hide file tree
Showing 5 changed files with 67 additions and 54 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0898b95409489abd7219f5f7ca675c84656fb94f
refs/heads/master: 06bae1227aadf51d047f7a75834ed446e56ebae2
47 changes: 38 additions & 9 deletions trunk/drivers/media/dvb-core/dvb_frontend.c
Original file line number Diff line number Diff line change
Expand Up @@ -307,15 +307,6 @@ void dvb_frontend_reinitialise(struct dvb_frontend *fe)
}
EXPORT_SYMBOL(dvb_frontend_reinitialise);

void dvb_frontend_retune(struct dvb_frontend *fe)
{
struct dvb_frontend_private *fepriv = fe->frontend_priv;

fepriv->state = FESTATE_RETUNE;
dvb_frontend_wakeup(fe);
}
EXPORT_SYMBOL(dvb_frontend_retune);

static void dvb_frontend_swzigzag_update_delay(struct dvb_frontend_private *fepriv, int locked)
{
int q2;
Expand Down Expand Up @@ -2448,6 +2439,44 @@ static const struct file_operations dvb_frontend_fops = {
.llseek = noop_llseek,
};

int dvb_frontend_suspend(struct dvb_frontend *fe)
{
int ret = 0;

dev_dbg(fe->dvb->device, "%s: adap=%d fe=%d\n", __func__, fe->dvb->num,
fe->id);

if (fe->ops.tuner_ops.sleep)
ret = fe->ops.tuner_ops.sleep(fe);

if (fe->ops.sleep)
ret = fe->ops.sleep(fe);

return ret;
}
EXPORT_SYMBOL(dvb_frontend_suspend);

int dvb_frontend_resume(struct dvb_frontend *fe)
{
struct dvb_frontend_private *fepriv = fe->frontend_priv;
int ret = 0;

dev_dbg(fe->dvb->device, "%s: adap=%d fe=%d\n", __func__, fe->dvb->num,
fe->id);

if (fe->ops.init)
ret = fe->ops.init(fe);

if (fe->ops.tuner_ops.init)
ret = fe->ops.tuner_ops.init(fe);

fepriv->state = FESTATE_RETUNE;
dvb_frontend_wakeup(fe);

return ret;
}
EXPORT_SYMBOL(dvb_frontend_resume);

int dvb_register_frontend(struct dvb_adapter* dvb,
struct dvb_frontend* fe)
{
Expand Down
3 changes: 2 additions & 1 deletion trunk/drivers/media/dvb-core/dvb_frontend.h
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,8 @@ extern int dvb_unregister_frontend(struct dvb_frontend *fe);
extern void dvb_frontend_detach(struct dvb_frontend *fe);

extern void dvb_frontend_reinitialise(struct dvb_frontend *fe);
extern void dvb_frontend_retune(struct dvb_frontend *fe);
extern int dvb_frontend_suspend(struct dvb_frontend *fe);
extern int dvb_frontend_resume(struct dvb_frontend *fe);

extern void dvb_frontend_sleep_until(struct timeval *waketime, u32 add_usec);
extern s32 timeval_usec_diff(struct timeval lasttime, struct timeval curtime);
Expand Down
3 changes: 3 additions & 0 deletions trunk/drivers/media/usb/dvb-usb-v2/dvb_usb.h
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,7 @@ struct usb_data_stream {
* @stream: adapter the usb data stream
* @id: index of this adapter (starting with 0)
* @ts_type: transport stream, input stream, type
* @suspend_resume_active: set when there is ongoing suspend / resume
* @pid_filtering: is hardware pid_filtering used or not
* @feed_count: current feed count
* @max_feed_count: maimum feed count device can handle
Expand All @@ -312,6 +313,7 @@ struct dvb_usb_adapter {
struct usb_data_stream stream;
u8 id;
u8 ts_type;
bool suspend_resume_active;
bool pid_filtering;
u8 feed_count;
u8 max_feed_count;
Expand Down Expand Up @@ -381,6 +383,7 @@ extern int dvb_usbv2_probe(struct usb_interface *,
extern void dvb_usbv2_disconnect(struct usb_interface *);
extern int dvb_usbv2_suspend(struct usb_interface *, pm_message_t);
extern int dvb_usbv2_resume(struct usb_interface *);
#define dvb_usbv2_reset_resume dvb_usbv2_resume

/* the generic read/write method for device control */
extern int dvb_usbv2_generic_rw(struct dvb_usb_device *, u8 *, u16, u8 *, u16);
Expand Down
66 changes: 23 additions & 43 deletions trunk/drivers/media/usb/dvb-usb-v2/dvb_usb_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -489,6 +489,11 @@ static int dvb_usb_fe_init(struct dvb_frontend *fe)
dev_dbg(&d->udev->dev, "%s: adap=%d fe=%d\n", __func__, adap->id,
fe->id);

if (!adap->suspend_resume_active) {
adap->active_fe = fe->id;
mutex_lock(&adap->sync_mutex);
}

ret = dvb_usbv2_device_power_ctrl(d, 1);
if (ret < 0)
goto err;
Expand All @@ -504,23 +509,11 @@ static int dvb_usb_fe_init(struct dvb_frontend *fe)
if (ret < 0)
goto err;
}

return 0;
err:
dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
return ret;
}

static int dvb_usb_fe_init_lock(struct dvb_frontend *fe)
{
int ret;
struct dvb_usb_adapter *adap = fe->dvb->priv;
mutex_lock(&adap->sync_mutex);

ret = dvb_usb_fe_init(fe);
adap->active_fe = fe->id;
if (!adap->suspend_resume_active)
mutex_unlock(&adap->sync_mutex);

mutex_unlock(&adap->sync_mutex);
dev_dbg(&d->udev->dev, "%s: ret=%d\n", __func__, ret);
return ret;
}

Expand All @@ -532,6 +525,9 @@ static int dvb_usb_fe_sleep(struct dvb_frontend *fe)
dev_dbg(&d->udev->dev, "%s: adap=%d fe=%d\n", __func__, adap->id,
fe->id);

if (!adap->suspend_resume_active)
mutex_lock(&adap->sync_mutex);

if (adap->fe_sleep[fe->id]) {
ret = adap->fe_sleep[fe->id](fe);
if (ret < 0)
Expand All @@ -547,23 +543,13 @@ static int dvb_usb_fe_sleep(struct dvb_frontend *fe)
ret = dvb_usbv2_device_power_ctrl(d, 0);
if (ret < 0)
goto err;

return 0;
err:
dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
return ret;
}

static int dvb_usb_fe_sleep_lock(struct dvb_frontend *fe)
{
int ret;
struct dvb_usb_adapter *adap = fe->dvb->priv;
mutex_lock(&adap->sync_mutex);

ret = dvb_usb_fe_sleep(fe);
adap->active_fe = -1;
if (!adap->suspend_resume_active) {
adap->active_fe = -1;
mutex_unlock(&adap->sync_mutex);
}

mutex_unlock(&adap->sync_mutex);
dev_dbg(&d->udev->dev, "%s: ret=%d\n", __func__, ret);
return ret;
}

Expand Down Expand Up @@ -594,9 +580,9 @@ int dvb_usbv2_adapter_frontend_init(struct dvb_usb_adapter *adap)
adap->fe[i]->id = i;
/* re-assign sleep and wakeup functions */
adap->fe_init[i] = adap->fe[i]->ops.init;
adap->fe[i]->ops.init = dvb_usb_fe_init_lock;
adap->fe[i]->ops.init = dvb_usb_fe_init;
adap->fe_sleep[i] = adap->fe[i]->ops.sleep;
adap->fe[i]->ops.sleep = dvb_usb_fe_sleep_lock;
adap->fe[i]->ops.sleep = dvb_usb_fe_sleep;

ret = dvb_register_frontend(&adap->dvb_adap, adap->fe[i]);
if (ret < 0) {
Expand Down Expand Up @@ -978,17 +964,15 @@ int dvb_usbv2_suspend(struct usb_interface *intf, pm_message_t msg)
active_fe = d->adapter[i].active_fe;
if (d->adapter[i].dvb_adap.priv && active_fe != -1) {
fe = d->adapter[i].fe[active_fe];
d->adapter[i].suspend_resume_active = true;

if (d->props->streaming_ctrl)
d->props->streaming_ctrl(fe, 0);

/* stop usb streaming */
usb_urb_killv2(&d->adapter[i].stream);

if (fe->ops.tuner_ops.sleep)
fe->ops.tuner_ops.sleep(fe);

dvb_usb_fe_sleep(fe);
dvb_frontend_suspend(fe);
}
}

Expand All @@ -1008,19 +992,15 @@ int dvb_usbv2_resume(struct usb_interface *intf)
if (d->adapter[i].dvb_adap.priv && active_fe != -1) {
fe = d->adapter[i].fe[active_fe];

dvb_usb_fe_init(fe);

if (fe->ops.tuner_ops.init)
fe->ops.tuner_ops.init(fe);

/* acquire dvb-core perform retune */
dvb_frontend_retune(fe);
dvb_frontend_resume(fe);

/* resume usb streaming */
usb_urb_submitv2(&d->adapter[i].stream, NULL);

if (d->props->streaming_ctrl)
d->props->streaming_ctrl(fe, 1);

d->adapter[i].suspend_resume_active = false;
}
}

Expand Down

0 comments on commit 93c5604

Please sign in to comment.