blob: 6ef1335b2858a54bb17707579453f091a1f9d976 [file] [log] [blame]
Mike Iselyd8554972006-06-26 20:58:46 -03001/*
2 *
Mike Iselyd8554972006-06-26 20:58:46 -03003 *
4 * Copyright (C) 2005 Mike Isely <isely@pobox.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 *
19 */
20
Mike Iselyd8554972006-06-26 20:58:46 -030021#include <linux/string.h>
22#include <linux/slab.h>
Mike Iselyd8554972006-06-26 20:58:46 -030023#include "pvrusb2-sysfs.h"
24#include "pvrusb2-hdw.h"
25#include "pvrusb2-debug.h"
26#ifdef CONFIG_VIDEO_PVRUSB2_DEBUGIFC
27#include "pvrusb2-debugifc.h"
28#endif /* CONFIG_VIDEO_PVRUSB2_DEBUGIFC */
29
30#define pvr2_sysfs_trace(...) pvr2_trace(PVR2_TRACE_SYSFS,__VA_ARGS__)
31
32struct pvr2_sysfs {
33 struct pvr2_channel channel;
Kay Sievers54bd5b62007-10-08 16:26:13 -030034 struct device *class_dev;
Mike Iselyd8554972006-06-26 20:58:46 -030035#ifdef CONFIG_VIDEO_PVRUSB2_DEBUGIFC
36 struct pvr2_sysfs_debugifc *debugifc;
37#endif /* CONFIG_VIDEO_PVRUSB2_DEBUGIFC */
38 struct pvr2_sysfs_ctl_item *item_first;
39 struct pvr2_sysfs_ctl_item *item_last;
Kay Sievers54bd5b62007-10-08 16:26:13 -030040 struct device_attribute attr_v4l_minor_number;
41 struct device_attribute attr_v4l_radio_minor_number;
42 struct device_attribute attr_unit_number;
43 struct device_attribute attr_bus_info;
Mike Isely78a47102007-11-26 01:58:20 -030044 struct device_attribute attr_hdw_name;
45 struct device_attribute attr_hdw_desc;
Mike Isely08d41802006-07-22 21:26:30 -030046 int v4l_minor_number_created_ok;
Pantelis Koukousoulas2fdf3d92006-12-27 23:07:58 -030047 int v4l_radio_minor_number_created_ok;
Mike Isely08d41802006-07-22 21:26:30 -030048 int unit_number_created_ok;
Mike Isely31a18542007-04-08 01:11:47 -030049 int bus_info_created_ok;
Mike Isely78a47102007-11-26 01:58:20 -030050 int hdw_name_created_ok;
51 int hdw_desc_created_ok;
Mike Iselyd8554972006-06-26 20:58:46 -030052};
53
54#ifdef CONFIG_VIDEO_PVRUSB2_DEBUGIFC
55struct pvr2_sysfs_debugifc {
Kay Sievers54bd5b62007-10-08 16:26:13 -030056 struct device_attribute attr_debugcmd;
57 struct device_attribute attr_debuginfo;
Mike Isely08d41802006-07-22 21:26:30 -030058 int debugcmd_created_ok;
59 int debuginfo_created_ok;
Mike Iselyd8554972006-06-26 20:58:46 -030060};
61#endif /* CONFIG_VIDEO_PVRUSB2_DEBUGIFC */
62
63struct pvr2_sysfs_ctl_item {
Kay Sievers54bd5b62007-10-08 16:26:13 -030064 struct device_attribute attr_name;
65 struct device_attribute attr_type;
66 struct device_attribute attr_min;
67 struct device_attribute attr_max;
Mike Isely0b7c2c92008-08-31 20:57:54 -030068 struct device_attribute attr_def;
Kay Sievers54bd5b62007-10-08 16:26:13 -030069 struct device_attribute attr_enum;
70 struct device_attribute attr_bits;
71 struct device_attribute attr_val;
72 struct device_attribute attr_custom;
Mike Iselyd8554972006-06-26 20:58:46 -030073 struct pvr2_ctrl *cptr;
Mike Iselyf90fe7a2008-05-26 06:00:47 -030074 int ctl_id;
Mike Iselyd8554972006-06-26 20:58:46 -030075 struct pvr2_sysfs *chptr;
76 struct pvr2_sysfs_ctl_item *item_next;
Mike Isely7a6ac342010-05-15 00:28:44 -030077 struct attribute *attr_gen[8];
Mike Iselyd8554972006-06-26 20:58:46 -030078 struct attribute_group grp;
Mike Isely08d41802006-07-22 21:26:30 -030079 int created_ok;
Mike Iselyd8554972006-06-26 20:58:46 -030080 char name[80];
81};
82
83struct pvr2_sysfs_class {
84 struct class class;
85};
86
Mike Iselyf90fe7a2008-05-26 06:00:47 -030087static ssize_t show_name(struct device *class_dev,
88 struct device_attribute *attr,
89 char *buf)
Mike Iselyd8554972006-06-26 20:58:46 -030090{
Mike Iselyf90fe7a2008-05-26 06:00:47 -030091 struct pvr2_sysfs_ctl_item *cip;
Mike Iselyd8554972006-06-26 20:58:46 -030092 const char *name;
Mike Iselyf90fe7a2008-05-26 06:00:47 -030093 cip = container_of(attr, struct pvr2_sysfs_ctl_item, attr_name);
94 name = pvr2_ctrl_get_desc(cip->cptr);
95 pvr2_sysfs_trace("pvr2_sysfs(%p) show_name(cid=%d) is %s",
96 cip->chptr, cip->ctl_id, name);
Mike Iselyd8554972006-06-26 20:58:46 -030097 if (!name) return -EINVAL;
Mike Iselyf90fe7a2008-05-26 06:00:47 -030098 return scnprintf(buf, PAGE_SIZE, "%s\n", name);
Mike Iselyd8554972006-06-26 20:58:46 -030099}
100
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300101static ssize_t show_type(struct device *class_dev,
102 struct device_attribute *attr,
103 char *buf)
Mike Isely33213962006-06-25 20:04:40 -0300104{
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300105 struct pvr2_sysfs_ctl_item *cip;
Mike Isely33213962006-06-25 20:04:40 -0300106 const char *name;
107 enum pvr2_ctl_type tp;
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300108 cip = container_of(attr, struct pvr2_sysfs_ctl_item, attr_type);
109 tp = pvr2_ctrl_get_type(cip->cptr);
Mike Isely33213962006-06-25 20:04:40 -0300110 switch (tp) {
111 case pvr2_ctl_int: name = "integer"; break;
112 case pvr2_ctl_enum: name = "enum"; break;
113 case pvr2_ctl_bitmask: name = "bitmask"; break;
114 case pvr2_ctl_bool: name = "boolean"; break;
115 default: name = "?"; break;
116 }
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300117 pvr2_sysfs_trace("pvr2_sysfs(%p) show_type(cid=%d) is %s",
118 cip->chptr, cip->ctl_id, name);
Mike Isely33213962006-06-25 20:04:40 -0300119 if (!name) return -EINVAL;
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300120 return scnprintf(buf, PAGE_SIZE, "%s\n", name);
Mike Isely33213962006-06-25 20:04:40 -0300121}
122
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300123static ssize_t show_min(struct device *class_dev,
124 struct device_attribute *attr,
125 char *buf)
Mike Iselyd8554972006-06-26 20:58:46 -0300126{
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300127 struct pvr2_sysfs_ctl_item *cip;
Mike Iselyd8554972006-06-26 20:58:46 -0300128 long val;
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300129 cip = container_of(attr, struct pvr2_sysfs_ctl_item, attr_min);
130 val = pvr2_ctrl_get_min(cip->cptr);
131 pvr2_sysfs_trace("pvr2_sysfs(%p) show_min(cid=%d) is %ld",
132 cip->chptr, cip->ctl_id, val);
133 return scnprintf(buf, PAGE_SIZE, "%ld\n", val);
Mike Iselyd8554972006-06-26 20:58:46 -0300134}
135
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300136static ssize_t show_max(struct device *class_dev,
137 struct device_attribute *attr,
138 char *buf)
Mike Iselyd8554972006-06-26 20:58:46 -0300139{
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300140 struct pvr2_sysfs_ctl_item *cip;
Mike Iselyd8554972006-06-26 20:58:46 -0300141 long val;
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300142 cip = container_of(attr, struct pvr2_sysfs_ctl_item, attr_max);
143 val = pvr2_ctrl_get_max(cip->cptr);
144 pvr2_sysfs_trace("pvr2_sysfs(%p) show_max(cid=%d) is %ld",
145 cip->chptr, cip->ctl_id, val);
146 return scnprintf(buf, PAGE_SIZE, "%ld\n", val);
Mike Iselyd8554972006-06-26 20:58:46 -0300147}
148
Mike Isely0b7c2c92008-08-31 20:57:54 -0300149static ssize_t show_def(struct device *class_dev,
150 struct device_attribute *attr,
151 char *buf)
152{
153 struct pvr2_sysfs_ctl_item *cip;
154 int val;
155 int ret;
Mike Isely7bf56f92009-04-01 01:51:53 -0300156 unsigned int cnt = 0;
Mike Isely0b7c2c92008-08-31 20:57:54 -0300157 cip = container_of(attr, struct pvr2_sysfs_ctl_item, attr_def);
158 ret = pvr2_ctrl_get_def(cip->cptr, &val);
Mike Isely7bf56f92009-04-01 01:51:53 -0300159 if (ret < 0) return ret;
160 ret = pvr2_ctrl_value_to_sym(cip->cptr, ~0, val,
161 buf, PAGE_SIZE - 1, &cnt);
162 pvr2_sysfs_trace("pvr2_sysfs(%p) show_def(cid=%d) is %.*s (%d)",
163 cip->chptr, cip->ctl_id, cnt, buf, val);
164 buf[cnt] = '\n';
165 return cnt + 1;
Mike Isely0b7c2c92008-08-31 20:57:54 -0300166}
167
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300168static ssize_t show_val_norm(struct device *class_dev,
169 struct device_attribute *attr,
170 char *buf)
Mike Iselyd8554972006-06-26 20:58:46 -0300171{
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300172 struct pvr2_sysfs_ctl_item *cip;
173 int val;
174 int ret;
Mike Iselyd8554972006-06-26 20:58:46 -0300175 unsigned int cnt = 0;
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300176 cip = container_of(attr, struct pvr2_sysfs_ctl_item, attr_val);
177 ret = pvr2_ctrl_get_value(cip->cptr, &val);
Mike Iselyd8554972006-06-26 20:58:46 -0300178 if (ret < 0) return ret;
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300179 ret = pvr2_ctrl_value_to_sym(cip->cptr, ~0, val,
180 buf, PAGE_SIZE - 1, &cnt);
Mike Iselyd8554972006-06-26 20:58:46 -0300181 pvr2_sysfs_trace("pvr2_sysfs(%p) show_val_norm(cid=%d) is %.*s (%d)",
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300182 cip->chptr, cip->ctl_id, cnt, buf, val);
Mike Iselyd8554972006-06-26 20:58:46 -0300183 buf[cnt] = '\n';
184 return cnt+1;
185}
186
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300187static ssize_t show_val_custom(struct device *class_dev,
188 struct device_attribute *attr,
189 char *buf)
Mike Iselyd8554972006-06-26 20:58:46 -0300190{
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300191 struct pvr2_sysfs_ctl_item *cip;
192 int val;
193 int ret;
Mike Iselyd8554972006-06-26 20:58:46 -0300194 unsigned int cnt = 0;
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300195 cip = container_of(attr, struct pvr2_sysfs_ctl_item, attr_custom);
196 ret = pvr2_ctrl_get_value(cip->cptr, &val);
Mike Iselyd8554972006-06-26 20:58:46 -0300197 if (ret < 0) return ret;
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300198 ret = pvr2_ctrl_custom_value_to_sym(cip->cptr, ~0, val,
199 buf, PAGE_SIZE - 1, &cnt);
Mike Iselyd8554972006-06-26 20:58:46 -0300200 pvr2_sysfs_trace("pvr2_sysfs(%p) show_val_custom(cid=%d) is %.*s (%d)",
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300201 cip->chptr, cip->ctl_id, cnt, buf, val);
Mike Iselyd8554972006-06-26 20:58:46 -0300202 buf[cnt] = '\n';
203 return cnt+1;
204}
205
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300206static ssize_t show_enum(struct device *class_dev,
207 struct device_attribute *attr,
208 char *buf)
Mike Iselyd8554972006-06-26 20:58:46 -0300209{
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300210 struct pvr2_sysfs_ctl_item *cip;
Mike Iselyd8554972006-06-26 20:58:46 -0300211 long val;
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300212 unsigned int bcnt, ccnt, ecnt;
213 cip = container_of(attr, struct pvr2_sysfs_ctl_item, attr_enum);
214 ecnt = pvr2_ctrl_get_cnt(cip->cptr);
Mike Iselyd8554972006-06-26 20:58:46 -0300215 bcnt = 0;
216 for (val = 0; val < ecnt; val++) {
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300217 pvr2_ctrl_get_valname(cip->cptr, val, buf + bcnt,
218 PAGE_SIZE - bcnt, &ccnt);
Mike Isely45886772006-06-25 20:04:13 -0300219 if (!ccnt) continue;
Mike Iselyd8554972006-06-26 20:58:46 -0300220 bcnt += ccnt;
221 if (bcnt >= PAGE_SIZE) break;
222 buf[bcnt] = '\n';
223 bcnt++;
224 }
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300225 pvr2_sysfs_trace("pvr2_sysfs(%p) show_enum(cid=%d)",
226 cip->chptr, cip->ctl_id);
Mike Iselyd8554972006-06-26 20:58:46 -0300227 return bcnt;
228}
229
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300230static ssize_t show_bits(struct device *class_dev,
231 struct device_attribute *attr,
232 char *buf)
Mike Iselyd8554972006-06-26 20:58:46 -0300233{
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300234 struct pvr2_sysfs_ctl_item *cip;
235 int valid_bits, msk;
236 unsigned int bcnt, ccnt;
237 cip = container_of(attr, struct pvr2_sysfs_ctl_item, attr_bits);
238 valid_bits = pvr2_ctrl_get_mask(cip->cptr);
Mike Iselyd8554972006-06-26 20:58:46 -0300239 bcnt = 0;
240 for (msk = 1; valid_bits; msk <<= 1) {
241 if (!(msk & valid_bits)) continue;
242 valid_bits &= ~msk;
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300243 pvr2_ctrl_get_valname(cip->cptr, msk, buf + bcnt,
244 PAGE_SIZE - bcnt, &ccnt);
Mike Iselyd8554972006-06-26 20:58:46 -0300245 bcnt += ccnt;
246 if (bcnt >= PAGE_SIZE) break;
247 buf[bcnt] = '\n';
248 bcnt++;
249 }
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300250 pvr2_sysfs_trace("pvr2_sysfs(%p) show_bits(cid=%d)",
251 cip->chptr, cip->ctl_id);
Mike Iselyd8554972006-06-26 20:58:46 -0300252 return bcnt;
253}
254
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300255static int store_val_any(struct pvr2_sysfs_ctl_item *cip, int customfl,
Mike Iselyd8554972006-06-26 20:58:46 -0300256 const char *buf,unsigned int count)
257{
Mike Iselyd8554972006-06-26 20:58:46 -0300258 int ret;
259 int mask,val;
Mike Iselyd8554972006-06-26 20:58:46 -0300260 if (customfl) {
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300261 ret = pvr2_ctrl_custom_sym_to_value(cip->cptr, buf, count,
262 &mask, &val);
Mike Iselyd8554972006-06-26 20:58:46 -0300263 } else {
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300264 ret = pvr2_ctrl_sym_to_value(cip->cptr, buf, count,
265 &mask, &val);
Mike Iselyd8554972006-06-26 20:58:46 -0300266 }
267 if (ret < 0) return ret;
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300268 ret = pvr2_ctrl_set_mask_value(cip->cptr, mask, val);
269 pvr2_hdw_commit_ctl(cip->chptr->channel.hdw);
Mike Iselyd8554972006-06-26 20:58:46 -0300270 return ret;
271}
272
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300273static ssize_t store_val_norm(struct device *class_dev,
274 struct device_attribute *attr,
275 const char *buf, size_t count)
Mike Iselyd8554972006-06-26 20:58:46 -0300276{
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300277 struct pvr2_sysfs_ctl_item *cip;
Mike Iselyd8554972006-06-26 20:58:46 -0300278 int ret;
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300279 cip = container_of(attr, struct pvr2_sysfs_ctl_item, attr_val);
Mike Iselybedbbf82008-04-22 14:45:38 -0300280 pvr2_sysfs_trace("pvr2_sysfs(%p) store_val_norm(cid=%d) \"%.*s\"",
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300281 cip->chptr, cip->ctl_id, (int)count, buf);
282 ret = store_val_any(cip, 0, buf, count);
Mike Iselyd8554972006-06-26 20:58:46 -0300283 if (!ret) ret = count;
284 return ret;
285}
286
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300287static ssize_t store_val_custom(struct device *class_dev,
288 struct device_attribute *attr,
289 const char *buf, size_t count)
Mike Iselyd8554972006-06-26 20:58:46 -0300290{
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300291 struct pvr2_sysfs_ctl_item *cip;
Mike Iselyd8554972006-06-26 20:58:46 -0300292 int ret;
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300293 cip = container_of(attr, struct pvr2_sysfs_ctl_item, attr_custom);
Mike Iselybedbbf82008-04-22 14:45:38 -0300294 pvr2_sysfs_trace("pvr2_sysfs(%p) store_val_custom(cid=%d) \"%.*s\"",
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300295 cip->chptr, cip->ctl_id, (int)count, buf);
296 ret = store_val_any(cip, 1, buf, count);
Mike Iselyd8554972006-06-26 20:58:46 -0300297 if (!ret) ret = count;
298 return ret;
299}
300
Mike Iselyd8554972006-06-26 20:58:46 -0300301static void pvr2_sysfs_add_control(struct pvr2_sysfs *sfp,int ctl_id)
302{
303 struct pvr2_sysfs_ctl_item *cip;
Mike Iselyd8554972006-06-26 20:58:46 -0300304 struct pvr2_ctrl *cptr;
305 unsigned int cnt,acnt;
Mike Isely08d41802006-07-22 21:26:30 -0300306 int ret;
Mike Iselyd8554972006-06-26 20:58:46 -0300307
Mike Iselyd8554972006-06-26 20:58:46 -0300308 cptr = pvr2_hdw_get_ctrl_by_index(sfp->channel.hdw,ctl_id);
309 if (!cptr) return;
310
Mike Iselyca545f72007-01-20 00:37:11 -0300311 cip = kzalloc(sizeof(*cip),GFP_KERNEL);
Mike Iselyd8554972006-06-26 20:58:46 -0300312 if (!cip) return;
Mike Iselyd8554972006-06-26 20:58:46 -0300313 pvr2_sysfs_trace("Creating pvr2_sysfs_ctl_item id=%p",cip);
314
315 cip->cptr = cptr;
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300316 cip->ctl_id = ctl_id;
Mike Iselyd8554972006-06-26 20:58:46 -0300317
318 cip->chptr = sfp;
Mike Iselya0fd1cb2006-06-30 11:35:28 -0300319 cip->item_next = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -0300320 if (sfp->item_last) {
321 sfp->item_last->item_next = cip;
322 } else {
323 sfp->item_first = cip;
324 }
325 sfp->item_last = cip;
326
Mike Isely19a0a292011-02-13 17:57:19 -0300327 sysfs_attr_init(&cip->attr_name.attr);
Mike Iselyd8554972006-06-26 20:58:46 -0300328 cip->attr_name.attr.name = "name";
329 cip->attr_name.attr.mode = S_IRUGO;
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300330 cip->attr_name.show = show_name;
Mike Iselyd8554972006-06-26 20:58:46 -0300331
Mike Isely19a0a292011-02-13 17:57:19 -0300332 sysfs_attr_init(&cip->attr_type.attr);
Mike Isely33213962006-06-25 20:04:40 -0300333 cip->attr_type.attr.name = "type";
334 cip->attr_type.attr.mode = S_IRUGO;
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300335 cip->attr_type.show = show_type;
Mike Isely33213962006-06-25 20:04:40 -0300336
Mike Isely19a0a292011-02-13 17:57:19 -0300337 sysfs_attr_init(&cip->attr_min.attr);
Mike Iselyd8554972006-06-26 20:58:46 -0300338 cip->attr_min.attr.name = "min_val";
339 cip->attr_min.attr.mode = S_IRUGO;
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300340 cip->attr_min.show = show_min;
Mike Iselyd8554972006-06-26 20:58:46 -0300341
Mike Isely19a0a292011-02-13 17:57:19 -0300342 sysfs_attr_init(&cip->attr_max.attr);
Mike Iselyd8554972006-06-26 20:58:46 -0300343 cip->attr_max.attr.name = "max_val";
344 cip->attr_max.attr.mode = S_IRUGO;
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300345 cip->attr_max.show = show_max;
Mike Iselyd8554972006-06-26 20:58:46 -0300346
Mike Isely19a0a292011-02-13 17:57:19 -0300347 sysfs_attr_init(&cip->attr_def.attr);
Mike Isely0b7c2c92008-08-31 20:57:54 -0300348 cip->attr_def.attr.name = "def_val";
349 cip->attr_def.attr.mode = S_IRUGO;
350 cip->attr_def.show = show_def;
351
Mike Isely19a0a292011-02-13 17:57:19 -0300352 sysfs_attr_init(&cip->attr_val.attr);
Mike Iselyd8554972006-06-26 20:58:46 -0300353 cip->attr_val.attr.name = "cur_val";
354 cip->attr_val.attr.mode = S_IRUGO;
355
Mike Isely19a0a292011-02-13 17:57:19 -0300356 sysfs_attr_init(&cip->attr_custom.attr);
Mike Iselyd8554972006-06-26 20:58:46 -0300357 cip->attr_custom.attr.name = "custom_val";
358 cip->attr_custom.attr.mode = S_IRUGO;
359
Mike Isely19a0a292011-02-13 17:57:19 -0300360 sysfs_attr_init(&cip->attr_enum.attr);
Mike Iselyd8554972006-06-26 20:58:46 -0300361 cip->attr_enum.attr.name = "enum_val";
362 cip->attr_enum.attr.mode = S_IRUGO;
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300363 cip->attr_enum.show = show_enum;
Mike Iselyd8554972006-06-26 20:58:46 -0300364
Mike Isely19a0a292011-02-13 17:57:19 -0300365 sysfs_attr_init(&cip->attr_bits.attr);
Mike Iselyd8554972006-06-26 20:58:46 -0300366 cip->attr_bits.attr.name = "bit_val";
367 cip->attr_bits.attr.mode = S_IRUGO;
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300368 cip->attr_bits.show = show_bits;
Mike Iselyd8554972006-06-26 20:58:46 -0300369
370 if (pvr2_ctrl_is_writable(cptr)) {
371 cip->attr_val.attr.mode |= S_IWUSR|S_IWGRP;
372 cip->attr_custom.attr.mode |= S_IWUSR|S_IWGRP;
373 }
374
375 acnt = 0;
376 cip->attr_gen[acnt++] = &cip->attr_name.attr;
Mike Isely33213962006-06-25 20:04:40 -0300377 cip->attr_gen[acnt++] = &cip->attr_type.attr;
Mike Iselyd8554972006-06-26 20:58:46 -0300378 cip->attr_gen[acnt++] = &cip->attr_val.attr;
Mike Isely0b7c2c92008-08-31 20:57:54 -0300379 cip->attr_gen[acnt++] = &cip->attr_def.attr;
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300380 cip->attr_val.show = show_val_norm;
381 cip->attr_val.store = store_val_norm;
Mike Iselyd8554972006-06-26 20:58:46 -0300382 if (pvr2_ctrl_has_custom_symbols(cptr)) {
383 cip->attr_gen[acnt++] = &cip->attr_custom.attr;
Mike Iselyf90fe7a2008-05-26 06:00:47 -0300384 cip->attr_custom.show = show_val_custom;
385 cip->attr_custom.store = store_val_custom;
Mike Iselyd8554972006-06-26 20:58:46 -0300386 }
387 switch (pvr2_ctrl_get_type(cptr)) {
388 case pvr2_ctl_enum:
389 // Control is an enumeration
390 cip->attr_gen[acnt++] = &cip->attr_enum.attr;
391 break;
392 case pvr2_ctl_int:
393 // Control is an integer
394 cip->attr_gen[acnt++] = &cip->attr_min.attr;
395 cip->attr_gen[acnt++] = &cip->attr_max.attr;
396 break;
397 case pvr2_ctl_bitmask:
398 // Control is an bitmask
399 cip->attr_gen[acnt++] = &cip->attr_bits.attr;
400 break;
401 default: break;
402 }
403
404 cnt = scnprintf(cip->name,sizeof(cip->name)-1,"ctl_%s",
405 pvr2_ctrl_get_name(cptr));
406 cip->name[cnt] = 0;
407 cip->grp.name = cip->name;
408 cip->grp.attrs = cip->attr_gen;
409
Mike Isely08d41802006-07-22 21:26:30 -0300410 ret = sysfs_create_group(&sfp->class_dev->kobj,&cip->grp);
411 if (ret) {
Mike Isely49844c22008-04-09 05:44:57 -0300412 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
413 "sysfs_create_group error: %d",
414 ret);
Mike Isely08d41802006-07-22 21:26:30 -0300415 return;
416 }
417 cip->created_ok = !0;
Mike Iselyd8554972006-06-26 20:58:46 -0300418}
419
420#ifdef CONFIG_VIDEO_PVRUSB2_DEBUGIFC
Trent Piephoc726b652007-10-08 19:05:28 -0300421static ssize_t debuginfo_show(struct device *, struct device_attribute *,
422 char *);
423static ssize_t debugcmd_show(struct device *, struct device_attribute *,
424 char *);
425static ssize_t debugcmd_store(struct device *, struct device_attribute *,
426 const char *, size_t count);
Mike Iselyd8554972006-06-26 20:58:46 -0300427
428static void pvr2_sysfs_add_debugifc(struct pvr2_sysfs *sfp)
429{
430 struct pvr2_sysfs_debugifc *dip;
Michael Krufky3117bee2006-07-19 13:23:38 -0300431 int ret;
432
Mike Iselyca545f72007-01-20 00:37:11 -0300433 dip = kzalloc(sizeof(*dip),GFP_KERNEL);
Mike Iselyd8554972006-06-26 20:58:46 -0300434 if (!dip) return;
Wolfram Sang12765512010-04-06 14:34:52 -0700435 sysfs_attr_init(&dip->attr_debugcmd.attr);
Mike Iselyd8554972006-06-26 20:58:46 -0300436 dip->attr_debugcmd.attr.name = "debugcmd";
437 dip->attr_debugcmd.attr.mode = S_IRUGO|S_IWUSR|S_IWGRP;
438 dip->attr_debugcmd.show = debugcmd_show;
439 dip->attr_debugcmd.store = debugcmd_store;
Wolfram Sang12765512010-04-06 14:34:52 -0700440 sysfs_attr_init(&dip->attr_debuginfo.attr);
Mike Iselyd8554972006-06-26 20:58:46 -0300441 dip->attr_debuginfo.attr.name = "debuginfo";
442 dip->attr_debuginfo.attr.mode = S_IRUGO;
443 dip->attr_debuginfo.show = debuginfo_show;
444 sfp->debugifc = dip;
Kay Sievers54bd5b62007-10-08 16:26:13 -0300445 ret = device_create_file(sfp->class_dev,&dip->attr_debugcmd);
Mike Isely08d41802006-07-22 21:26:30 -0300446 if (ret < 0) {
Mike Isely49844c22008-04-09 05:44:57 -0300447 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
448 "device_create_file error: %d",
449 ret);
Mike Isely08d41802006-07-22 21:26:30 -0300450 } else {
451 dip->debugcmd_created_ok = !0;
452 }
Kay Sievers54bd5b62007-10-08 16:26:13 -0300453 ret = device_create_file(sfp->class_dev,&dip->attr_debuginfo);
Mike Isely08d41802006-07-22 21:26:30 -0300454 if (ret < 0) {
Mike Isely49844c22008-04-09 05:44:57 -0300455 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
456 "device_create_file error: %d",
457 ret);
Mike Isely08d41802006-07-22 21:26:30 -0300458 } else {
459 dip->debuginfo_created_ok = !0;
460 }
Mike Iselyd8554972006-06-26 20:58:46 -0300461}
462
463
464static void pvr2_sysfs_tear_down_debugifc(struct pvr2_sysfs *sfp)
465{
466 if (!sfp->debugifc) return;
Mike Isely08d41802006-07-22 21:26:30 -0300467 if (sfp->debugifc->debuginfo_created_ok) {
Kay Sievers54bd5b62007-10-08 16:26:13 -0300468 device_remove_file(sfp->class_dev,
Mike Isely08d41802006-07-22 21:26:30 -0300469 &sfp->debugifc->attr_debuginfo);
470 }
471 if (sfp->debugifc->debugcmd_created_ok) {
Kay Sievers54bd5b62007-10-08 16:26:13 -0300472 device_remove_file(sfp->class_dev,
Mike Isely08d41802006-07-22 21:26:30 -0300473 &sfp->debugifc->attr_debugcmd);
474 }
Mike Iselyd8554972006-06-26 20:58:46 -0300475 kfree(sfp->debugifc);
Mike Iselya0fd1cb2006-06-30 11:35:28 -0300476 sfp->debugifc = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -0300477}
478#endif /* CONFIG_VIDEO_PVRUSB2_DEBUGIFC */
479
480
481static void pvr2_sysfs_add_controls(struct pvr2_sysfs *sfp)
482{
483 unsigned int idx,cnt;
484 cnt = pvr2_hdw_get_ctrl_count(sfp->channel.hdw);
485 for (idx = 0; idx < cnt; idx++) {
486 pvr2_sysfs_add_control(sfp,idx);
487 }
488}
489
490
491static void pvr2_sysfs_tear_down_controls(struct pvr2_sysfs *sfp)
492{
493 struct pvr2_sysfs_ctl_item *cip1,*cip2;
494 for (cip1 = sfp->item_first; cip1; cip1 = cip2) {
495 cip2 = cip1->item_next;
Mike Isely08d41802006-07-22 21:26:30 -0300496 if (cip1->created_ok) {
497 sysfs_remove_group(&sfp->class_dev->kobj,&cip1->grp);
498 }
Mike Iselyd8554972006-06-26 20:58:46 -0300499 pvr2_sysfs_trace("Destroying pvr2_sysfs_ctl_item id=%p",cip1);
500 kfree(cip1);
501 }
502}
503
504
505static void pvr2_sysfs_class_release(struct class *class)
506{
507 struct pvr2_sysfs_class *clp;
508 clp = container_of(class,struct pvr2_sysfs_class,class);
509 pvr2_sysfs_trace("Destroying pvr2_sysfs_class id=%p",clp);
510 kfree(clp);
511}
512
513
Kay Sievers54bd5b62007-10-08 16:26:13 -0300514static void pvr2_sysfs_release(struct device *class_dev)
Mike Iselyd8554972006-06-26 20:58:46 -0300515{
516 pvr2_sysfs_trace("Releasing class_dev id=%p",class_dev);
517 kfree(class_dev);
518}
519
520
521static void class_dev_destroy(struct pvr2_sysfs *sfp)
522{
Mike Isely28c4a5e2010-05-15 00:23:46 -0300523 struct device *dev;
Mike Iselyd8554972006-06-26 20:58:46 -0300524 if (!sfp->class_dev) return;
525#ifdef CONFIG_VIDEO_PVRUSB2_DEBUGIFC
526 pvr2_sysfs_tear_down_debugifc(sfp);
527#endif /* CONFIG_VIDEO_PVRUSB2_DEBUGIFC */
528 pvr2_sysfs_tear_down_controls(sfp);
Mike Isely78a47102007-11-26 01:58:20 -0300529 if (sfp->hdw_desc_created_ok) {
530 device_remove_file(sfp->class_dev,
531 &sfp->attr_hdw_desc);
532 }
533 if (sfp->hdw_name_created_ok) {
534 device_remove_file(sfp->class_dev,
535 &sfp->attr_hdw_name);
536 }
Mike Isely31a18542007-04-08 01:11:47 -0300537 if (sfp->bus_info_created_ok) {
Kay Sievers54bd5b62007-10-08 16:26:13 -0300538 device_remove_file(sfp->class_dev,
Mike Isely31a18542007-04-08 01:11:47 -0300539 &sfp->attr_bus_info);
540 }
Mike Isely08d41802006-07-22 21:26:30 -0300541 if (sfp->v4l_minor_number_created_ok) {
Kay Sievers54bd5b62007-10-08 16:26:13 -0300542 device_remove_file(sfp->class_dev,
Mike Isely08d41802006-07-22 21:26:30 -0300543 &sfp->attr_v4l_minor_number);
544 }
Pantelis Koukousoulas2fdf3d92006-12-27 23:07:58 -0300545 if (sfp->v4l_radio_minor_number_created_ok) {
Kay Sievers54bd5b62007-10-08 16:26:13 -0300546 device_remove_file(sfp->class_dev,
Pantelis Koukousoulas2fdf3d92006-12-27 23:07:58 -0300547 &sfp->attr_v4l_radio_minor_number);
548 }
Mike Isely08d41802006-07-22 21:26:30 -0300549 if (sfp->unit_number_created_ok) {
Kay Sievers54bd5b62007-10-08 16:26:13 -0300550 device_remove_file(sfp->class_dev,
Mike Isely08d41802006-07-22 21:26:30 -0300551 &sfp->attr_unit_number);
552 }
Mike Iselyd8554972006-06-26 20:58:46 -0300553 pvr2_sysfs_trace("Destroying class_dev id=%p",sfp->class_dev);
Greg Kroah-Hartman79510cd2009-04-30 14:43:31 -0700554 dev_set_drvdata(sfp->class_dev, NULL);
Mike Isely28c4a5e2010-05-15 00:23:46 -0300555 dev = sfp->class_dev->parent;
556 sfp->class_dev->parent = NULL;
557 put_device(dev);
Kay Sievers54bd5b62007-10-08 16:26:13 -0300558 device_unregister(sfp->class_dev);
Mike Iselya0fd1cb2006-06-30 11:35:28 -0300559 sfp->class_dev = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -0300560}
561
562
Kay Sievers54bd5b62007-10-08 16:26:13 -0300563static ssize_t v4l_minor_number_show(struct device *class_dev,
564 struct device_attribute *attr, char *buf)
Mike Iselyd8554972006-06-26 20:58:46 -0300565{
566 struct pvr2_sysfs *sfp;
Greg Kroah-Hartman79510cd2009-04-30 14:43:31 -0700567 sfp = dev_get_drvdata(class_dev);
Mike Iselyd8554972006-06-26 20:58:46 -0300568 if (!sfp) return -EINVAL;
569 return scnprintf(buf,PAGE_SIZE,"%d\n",
Mike Iselyfd5a75f2006-12-27 23:11:22 -0300570 pvr2_hdw_v4l_get_minor_number(sfp->channel.hdw,
Mike Isely80793842006-12-27 23:12:28 -0300571 pvr2_v4l_type_video));
Pantelis Koukousoulas2fdf3d92006-12-27 23:07:58 -0300572}
573
574
Kay Sievers54bd5b62007-10-08 16:26:13 -0300575static ssize_t bus_info_show(struct device *class_dev,
576 struct device_attribute *attr, char *buf)
Mike Isely31a18542007-04-08 01:11:47 -0300577{
578 struct pvr2_sysfs *sfp;
Greg Kroah-Hartman79510cd2009-04-30 14:43:31 -0700579 sfp = dev_get_drvdata(class_dev);
Mike Isely31a18542007-04-08 01:11:47 -0300580 if (!sfp) return -EINVAL;
581 return scnprintf(buf,PAGE_SIZE,"%s\n",
582 pvr2_hdw_get_bus_info(sfp->channel.hdw));
583}
584
585
Mike Isely78a47102007-11-26 01:58:20 -0300586static ssize_t hdw_name_show(struct device *class_dev,
587 struct device_attribute *attr, char *buf)
588{
589 struct pvr2_sysfs *sfp;
Greg Kroah-Hartman79510cd2009-04-30 14:43:31 -0700590 sfp = dev_get_drvdata(class_dev);
Mike Isely78a47102007-11-26 01:58:20 -0300591 if (!sfp) return -EINVAL;
592 return scnprintf(buf,PAGE_SIZE,"%s\n",
593 pvr2_hdw_get_type(sfp->channel.hdw));
594}
595
596
597static ssize_t hdw_desc_show(struct device *class_dev,
598 struct device_attribute *attr, char *buf)
599{
600 struct pvr2_sysfs *sfp;
Greg Kroah-Hartman79510cd2009-04-30 14:43:31 -0700601 sfp = dev_get_drvdata(class_dev);
Mike Isely78a47102007-11-26 01:58:20 -0300602 if (!sfp) return -EINVAL;
603 return scnprintf(buf,PAGE_SIZE,"%s\n",
604 pvr2_hdw_get_desc(sfp->channel.hdw));
605}
606
607
Kay Sievers54bd5b62007-10-08 16:26:13 -0300608static ssize_t v4l_radio_minor_number_show(struct device *class_dev,
609 struct device_attribute *attr,
Pantelis Koukousoulas2fdf3d92006-12-27 23:07:58 -0300610 char *buf)
611{
612 struct pvr2_sysfs *sfp;
Greg Kroah-Hartman79510cd2009-04-30 14:43:31 -0700613 sfp = dev_get_drvdata(class_dev);
Pantelis Koukousoulas2fdf3d92006-12-27 23:07:58 -0300614 if (!sfp) return -EINVAL;
615 return scnprintf(buf,PAGE_SIZE,"%d\n",
Mike Iselyfd5a75f2006-12-27 23:11:22 -0300616 pvr2_hdw_v4l_get_minor_number(sfp->channel.hdw,
Mike Isely80793842006-12-27 23:12:28 -0300617 pvr2_v4l_type_radio));
Mike Iselyd8554972006-06-26 20:58:46 -0300618}
619
620
Kay Sievers54bd5b62007-10-08 16:26:13 -0300621static ssize_t unit_number_show(struct device *class_dev,
622 struct device_attribute *attr, char *buf)
Mike Iselyd8554972006-06-26 20:58:46 -0300623{
624 struct pvr2_sysfs *sfp;
Greg Kroah-Hartman79510cd2009-04-30 14:43:31 -0700625 sfp = dev_get_drvdata(class_dev);
Mike Iselyd8554972006-06-26 20:58:46 -0300626 if (!sfp) return -EINVAL;
627 return scnprintf(buf,PAGE_SIZE,"%d\n",
628 pvr2_hdw_get_unit_number(sfp->channel.hdw));
629}
630
631
632static void class_dev_create(struct pvr2_sysfs *sfp,
633 struct pvr2_sysfs_class *class_ptr)
634{
635 struct usb_device *usb_dev;
Kay Sievers54bd5b62007-10-08 16:26:13 -0300636 struct device *class_dev;
Michael Krufky3117bee2006-07-19 13:23:38 -0300637 int ret;
638
Mike Iselyd8554972006-06-26 20:58:46 -0300639 usb_dev = pvr2_hdw_get_dev(sfp->channel.hdw);
640 if (!usb_dev) return;
Mike Iselyca545f72007-01-20 00:37:11 -0300641 class_dev = kzalloc(sizeof(*class_dev),GFP_KERNEL);
Mike Iselyd8554972006-06-26 20:58:46 -0300642 if (!class_dev) return;
Mike Iselyd8554972006-06-26 20:58:46 -0300643
644 pvr2_sysfs_trace("Creating class_dev id=%p",class_dev);
645
646 class_dev->class = &class_ptr->class;
Mike Isely28c4a5e2010-05-15 00:23:46 -0300647
Mike Isely730e92c2009-01-14 04:24:20 -0300648 dev_set_name(class_dev, "%s",
649 pvr2_hdw_get_device_identifier(sfp->channel.hdw));
Mike Iselyd8554972006-06-26 20:58:46 -0300650
Mike Isely28c4a5e2010-05-15 00:23:46 -0300651 class_dev->parent = get_device(&usb_dev->dev);
Mike Iselyd8554972006-06-26 20:58:46 -0300652
653 sfp->class_dev = class_dev;
Greg Kroah-Hartman79510cd2009-04-30 14:43:31 -0700654 dev_set_drvdata(class_dev, sfp);
Kay Sievers54bd5b62007-10-08 16:26:13 -0300655 ret = device_register(class_dev);
Michael Krufky3117bee2006-07-19 13:23:38 -0300656 if (ret) {
Mike Isely49844c22008-04-09 05:44:57 -0300657 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
658 "device_register failed");
Vasiliy Kulikova519d70e2010-11-19 15:41:49 -0300659 put_device(class_dev);
Michael Krufky3117bee2006-07-19 13:23:38 -0300660 return;
661 }
Mike Iselyd8554972006-06-26 20:58:46 -0300662
Wolfram Sang12765512010-04-06 14:34:52 -0700663 sysfs_attr_init(&sfp->attr_v4l_minor_number.attr);
Mike Iselyd8554972006-06-26 20:58:46 -0300664 sfp->attr_v4l_minor_number.attr.name = "v4l_minor_number";
665 sfp->attr_v4l_minor_number.attr.mode = S_IRUGO;
666 sfp->attr_v4l_minor_number.show = v4l_minor_number_show;
Mike Iselya0fd1cb2006-06-30 11:35:28 -0300667 sfp->attr_v4l_minor_number.store = NULL;
Kay Sievers54bd5b62007-10-08 16:26:13 -0300668 ret = device_create_file(sfp->class_dev,
Mike Isely08d41802006-07-22 21:26:30 -0300669 &sfp->attr_v4l_minor_number);
670 if (ret < 0) {
Mike Isely49844c22008-04-09 05:44:57 -0300671 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
672 "device_create_file error: %d",
673 ret);
Mike Isely08d41802006-07-22 21:26:30 -0300674 } else {
675 sfp->v4l_minor_number_created_ok = !0;
676 }
Michael Krufky3117bee2006-07-19 13:23:38 -0300677
Wolfram Sang12765512010-04-06 14:34:52 -0700678 sysfs_attr_init(&sfp->attr_v4l_radio_minor_number.attr);
Pantelis Koukousoulas2fdf3d92006-12-27 23:07:58 -0300679 sfp->attr_v4l_radio_minor_number.attr.name = "v4l_radio_minor_number";
680 sfp->attr_v4l_radio_minor_number.attr.mode = S_IRUGO;
681 sfp->attr_v4l_radio_minor_number.show = v4l_radio_minor_number_show;
682 sfp->attr_v4l_radio_minor_number.store = NULL;
Kay Sievers54bd5b62007-10-08 16:26:13 -0300683 ret = device_create_file(sfp->class_dev,
Pantelis Koukousoulas2fdf3d92006-12-27 23:07:58 -0300684 &sfp->attr_v4l_radio_minor_number);
685 if (ret < 0) {
Mike Isely49844c22008-04-09 05:44:57 -0300686 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
687 "device_create_file error: %d",
688 ret);
Pantelis Koukousoulas2fdf3d92006-12-27 23:07:58 -0300689 } else {
690 sfp->v4l_radio_minor_number_created_ok = !0;
691 }
692
Wolfram Sang12765512010-04-06 14:34:52 -0700693 sysfs_attr_init(&sfp->attr_unit_number.attr);
Mike Iselyd8554972006-06-26 20:58:46 -0300694 sfp->attr_unit_number.attr.name = "unit_number";
695 sfp->attr_unit_number.attr.mode = S_IRUGO;
696 sfp->attr_unit_number.show = unit_number_show;
Mike Iselya0fd1cb2006-06-30 11:35:28 -0300697 sfp->attr_unit_number.store = NULL;
Kay Sievers54bd5b62007-10-08 16:26:13 -0300698 ret = device_create_file(sfp->class_dev,&sfp->attr_unit_number);
Mike Isely08d41802006-07-22 21:26:30 -0300699 if (ret < 0) {
Mike Isely49844c22008-04-09 05:44:57 -0300700 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
701 "device_create_file error: %d",
702 ret);
Mike Isely08d41802006-07-22 21:26:30 -0300703 } else {
704 sfp->unit_number_created_ok = !0;
705 }
Mike Iselyd8554972006-06-26 20:58:46 -0300706
Wolfram Sang12765512010-04-06 14:34:52 -0700707 sysfs_attr_init(&sfp->attr_bus_info.attr);
Mike Isely31a18542007-04-08 01:11:47 -0300708 sfp->attr_bus_info.attr.name = "bus_info_str";
709 sfp->attr_bus_info.attr.mode = S_IRUGO;
710 sfp->attr_bus_info.show = bus_info_show;
711 sfp->attr_bus_info.store = NULL;
Kay Sievers54bd5b62007-10-08 16:26:13 -0300712 ret = device_create_file(sfp->class_dev,
Mike Isely31a18542007-04-08 01:11:47 -0300713 &sfp->attr_bus_info);
714 if (ret < 0) {
Mike Isely49844c22008-04-09 05:44:57 -0300715 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
716 "device_create_file error: %d",
717 ret);
Mike Isely31a18542007-04-08 01:11:47 -0300718 } else {
719 sfp->bus_info_created_ok = !0;
720 }
721
Wolfram Sang12765512010-04-06 14:34:52 -0700722 sysfs_attr_init(&sfp->attr_hdw_name.attr);
Mike Isely78a47102007-11-26 01:58:20 -0300723 sfp->attr_hdw_name.attr.name = "device_hardware_type";
724 sfp->attr_hdw_name.attr.mode = S_IRUGO;
725 sfp->attr_hdw_name.show = hdw_name_show;
726 sfp->attr_hdw_name.store = NULL;
727 ret = device_create_file(sfp->class_dev,
728 &sfp->attr_hdw_name);
729 if (ret < 0) {
Mike Isely49844c22008-04-09 05:44:57 -0300730 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
731 "device_create_file error: %d",
732 ret);
Mike Isely78a47102007-11-26 01:58:20 -0300733 } else {
734 sfp->hdw_name_created_ok = !0;
735 }
736
Wolfram Sang12765512010-04-06 14:34:52 -0700737 sysfs_attr_init(&sfp->attr_hdw_desc.attr);
Mike Isely78a47102007-11-26 01:58:20 -0300738 sfp->attr_hdw_desc.attr.name = "device_hardware_description";
739 sfp->attr_hdw_desc.attr.mode = S_IRUGO;
740 sfp->attr_hdw_desc.show = hdw_desc_show;
741 sfp->attr_hdw_desc.store = NULL;
742 ret = device_create_file(sfp->class_dev,
743 &sfp->attr_hdw_desc);
744 if (ret < 0) {
Mike Isely49844c22008-04-09 05:44:57 -0300745 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
746 "device_create_file error: %d",
747 ret);
Mike Isely78a47102007-11-26 01:58:20 -0300748 } else {
749 sfp->hdw_desc_created_ok = !0;
750 }
751
Mike Iselyd8554972006-06-26 20:58:46 -0300752 pvr2_sysfs_add_controls(sfp);
753#ifdef CONFIG_VIDEO_PVRUSB2_DEBUGIFC
754 pvr2_sysfs_add_debugifc(sfp);
755#endif /* CONFIG_VIDEO_PVRUSB2_DEBUGIFC */
756}
757
758
759static void pvr2_sysfs_internal_check(struct pvr2_channel *chp)
760{
761 struct pvr2_sysfs *sfp;
762 sfp = container_of(chp,struct pvr2_sysfs,channel);
763 if (!sfp->channel.mc_head->disconnect_flag) return;
764 pvr2_trace(PVR2_TRACE_STRUCT,"Destroying pvr2_sysfs id=%p",sfp);
765 class_dev_destroy(sfp);
766 pvr2_channel_done(&sfp->channel);
767 kfree(sfp);
768}
769
770
771struct pvr2_sysfs *pvr2_sysfs_create(struct pvr2_context *mp,
772 struct pvr2_sysfs_class *class_ptr)
773{
774 struct pvr2_sysfs *sfp;
Mike Iselyca545f72007-01-20 00:37:11 -0300775 sfp = kzalloc(sizeof(*sfp),GFP_KERNEL);
Mike Iselyd8554972006-06-26 20:58:46 -0300776 if (!sfp) return sfp;
Mike Iselyd8554972006-06-26 20:58:46 -0300777 pvr2_trace(PVR2_TRACE_STRUCT,"Creating pvr2_sysfs id=%p",sfp);
778 pvr2_channel_init(&sfp->channel,mp);
779 sfp->channel.check_func = pvr2_sysfs_internal_check;
780
781 class_dev_create(sfp,class_ptr);
782 return sfp;
783}
784
785
Mike Iselyd8554972006-06-26 20:58:46 -0300786
787struct pvr2_sysfs_class *pvr2_sysfs_class_create(void)
788{
789 struct pvr2_sysfs_class *clp;
Mike Iselyca545f72007-01-20 00:37:11 -0300790 clp = kzalloc(sizeof(*clp),GFP_KERNEL);
Mike Iselyd8554972006-06-26 20:58:46 -0300791 if (!clp) return clp;
Mike Isely28c4a5e2010-05-15 00:23:46 -0300792 pvr2_sysfs_trace("Creating and registering pvr2_sysfs_class id=%p",
793 clp);
Mike Iselyd8554972006-06-26 20:58:46 -0300794 clp->class.name = "pvrusb2";
795 clp->class.class_release = pvr2_sysfs_class_release;
Kay Sievers54bd5b62007-10-08 16:26:13 -0300796 clp->class.dev_release = pvr2_sysfs_release;
Mike Iselyd8554972006-06-26 20:58:46 -0300797 if (class_register(&clp->class)) {
798 pvr2_sysfs_trace(
799 "Registration failed for pvr2_sysfs_class id=%p",clp);
800 kfree(clp);
Mike Iselya0fd1cb2006-06-30 11:35:28 -0300801 clp = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -0300802 }
803 return clp;
804}
805
806
807void pvr2_sysfs_class_destroy(struct pvr2_sysfs_class *clp)
808{
Mike Isely28c4a5e2010-05-15 00:23:46 -0300809 pvr2_sysfs_trace("Unregistering pvr2_sysfs_class id=%p", clp);
Mike Iselyd8554972006-06-26 20:58:46 -0300810 class_unregister(&clp->class);
811}
812
813
814#ifdef CONFIG_VIDEO_PVRUSB2_DEBUGIFC
Trent Piephoc726b652007-10-08 19:05:28 -0300815static ssize_t debuginfo_show(struct device *class_dev,
816 struct device_attribute *attr, char *buf)
Mike Iselyd8554972006-06-26 20:58:46 -0300817{
818 struct pvr2_sysfs *sfp;
Greg Kroah-Hartman79510cd2009-04-30 14:43:31 -0700819 sfp = dev_get_drvdata(class_dev);
Mike Iselyd8554972006-06-26 20:58:46 -0300820 if (!sfp) return -EINVAL;
821 pvr2_hdw_trigger_module_log(sfp->channel.hdw);
822 return pvr2_debugifc_print_info(sfp->channel.hdw,buf,PAGE_SIZE);
823}
824
825
Trent Piephoc726b652007-10-08 19:05:28 -0300826static ssize_t debugcmd_show(struct device *class_dev,
827 struct device_attribute *attr, char *buf)
Mike Iselyd8554972006-06-26 20:58:46 -0300828{
829 struct pvr2_sysfs *sfp;
Greg Kroah-Hartman79510cd2009-04-30 14:43:31 -0700830 sfp = dev_get_drvdata(class_dev);
Mike Iselyd8554972006-06-26 20:58:46 -0300831 if (!sfp) return -EINVAL;
832 return pvr2_debugifc_print_status(sfp->channel.hdw,buf,PAGE_SIZE);
833}
834
835
Kay Sievers54bd5b62007-10-08 16:26:13 -0300836static ssize_t debugcmd_store(struct device *class_dev,
Trent Piephoc726b652007-10-08 19:05:28 -0300837 struct device_attribute *attr,
Kay Sievers54bd5b62007-10-08 16:26:13 -0300838 const char *buf, size_t count)
Mike Iselyd8554972006-06-26 20:58:46 -0300839{
840 struct pvr2_sysfs *sfp;
841 int ret;
842
Greg Kroah-Hartman79510cd2009-04-30 14:43:31 -0700843 sfp = dev_get_drvdata(class_dev);
Mike Iselyd8554972006-06-26 20:58:46 -0300844 if (!sfp) return -EINVAL;
845
846 ret = pvr2_debugifc_docmd(sfp->channel.hdw,buf,count);
847 if (ret < 0) return ret;
848 return count;
849}
850#endif /* CONFIG_VIDEO_PVRUSB2_DEBUGIFC */
851
852
853/*
854 Stuff for Emacs to see, in order to encourage consistent editing style:
855 *** Local Variables: ***
856 *** mode: c ***
857 *** fill-column: 75 ***
858 *** tab-width: 8 ***
859 *** c-basic-offset: 8 ***
860 *** End: ***
861 */