2006-03-26 04:38:33 -05:00
|
|
|
/*
|
|
|
|
* Stuff used by all variants of the driver
|
|
|
|
*
|
2006-04-11 01:55:14 -04:00
|
|
|
* Copyright (c) 2001 by Stefan Eilers,
|
2006-03-26 04:38:33 -05:00
|
|
|
* Hansjoerg Lipp <hjlipp@web.de>,
|
|
|
|
* Tilman Schmidt <tilman@imap.cc>.
|
|
|
|
*
|
|
|
|
* =====================================================================
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
* =====================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "gigaset.h"
|
|
|
|
#include <linux/ctype.h>
|
|
|
|
|
2006-04-11 01:55:00 -04:00
|
|
|
static ssize_t show_cidmode(struct device *dev, struct device_attribute *attr,
|
|
|
|
char *buf)
|
2006-03-26 04:38:33 -05:00
|
|
|
{
|
2006-04-11 01:55:07 -04:00
|
|
|
struct cardstate *cs = dev_get_drvdata(dev);
|
2006-04-11 01:55:00 -04:00
|
|
|
return sprintf(buf, "%d\n", atomic_read(&cs->cidmode));
|
2006-03-26 04:38:33 -05:00
|
|
|
}
|
|
|
|
|
2006-04-11 01:55:00 -04:00
|
|
|
static ssize_t set_cidmode(struct device *dev, struct device_attribute *attr,
|
|
|
|
const char *buf, size_t count)
|
2006-03-26 04:38:33 -05:00
|
|
|
{
|
2006-04-11 01:55:07 -04:00
|
|
|
struct cardstate *cs = dev_get_drvdata(dev);
|
2006-03-26 04:38:33 -05:00
|
|
|
long int value;
|
|
|
|
char *end;
|
|
|
|
|
|
|
|
value = simple_strtol(buf, &end, 0);
|
|
|
|
while (*end)
|
|
|
|
if (!isspace(*end++))
|
|
|
|
return -EINVAL;
|
|
|
|
if (value < 0 || value > 1)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2006-04-11 01:55:12 -04:00
|
|
|
if (mutex_lock_interruptible(&cs->mutex))
|
2006-03-26 04:38:33 -05:00
|
|
|
return -ERESTARTSYS; // FIXME -EINTR?
|
|
|
|
|
|
|
|
cs->waiting = 1;
|
|
|
|
if (!gigaset_add_event(cs, &cs->at_state, EV_PROC_CIDMODE,
|
2006-04-11 01:55:04 -04:00
|
|
|
NULL, value, NULL)) {
|
2006-03-26 04:38:33 -05:00
|
|
|
cs->waiting = 0;
|
2006-04-11 01:55:12 -04:00
|
|
|
mutex_unlock(&cs->mutex);
|
2006-03-26 04:38:33 -05:00
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
2006-04-11 01:55:04 -04:00
|
|
|
gig_dbg(DEBUG_CMD, "scheduling PROC_CIDMODE");
|
2006-03-26 04:38:33 -05:00
|
|
|
gigaset_schedule_event(cs);
|
|
|
|
|
|
|
|
wait_event(cs->waitqueue, !cs->waiting);
|
|
|
|
|
2006-04-11 01:55:12 -04:00
|
|
|
mutex_unlock(&cs->mutex);
|
2006-03-26 04:38:33 -05:00
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
static DEVICE_ATTR(cidmode, S_IRUGO|S_IWUSR, show_cidmode, set_cidmode);
|
|
|
|
|
|
|
|
/* free sysfs for device */
|
2006-04-11 01:55:07 -04:00
|
|
|
void gigaset_free_dev_sysfs(struct cardstate *cs)
|
2006-03-26 04:38:33 -05:00
|
|
|
{
|
2006-04-11 01:55:04 -04:00
|
|
|
gig_dbg(DEBUG_INIT, "removing sysfs entries");
|
2006-04-11 01:55:07 -04:00
|
|
|
device_remove_file(cs->dev, &dev_attr_cidmode);
|
2006-03-26 04:38:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* initialize sysfs for device */
|
2006-04-11 01:55:07 -04:00
|
|
|
void gigaset_init_dev_sysfs(struct cardstate *cs)
|
2006-03-26 04:38:33 -05:00
|
|
|
{
|
2006-04-11 01:55:04 -04:00
|
|
|
gig_dbg(DEBUG_INIT, "setting up sysfs");
|
2006-04-11 01:55:07 -04:00
|
|
|
device_create_file(cs->dev, &dev_attr_cidmode);
|
2006-03-26 04:38:33 -05:00
|
|
|
}
|