5 * Copyright (C) 2005 Mike Isely <isely@pobox.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <linux/string.h>
23 #include <linux/slab.h>
24 #include "pvrusb2-debugifc.h"
25 #include "pvrusb2-hdw.h"
26 #include "pvrusb2-debug.h"
27 #include "pvrusb2-i2c-core.h"
29 struct debugifc_mask_item
{
35 static unsigned int debugifc_count_whitespace(const char *buf
,
41 for (scnt
= 0; scnt
< count
; scnt
++) {
43 if (ch
== ' ') continue;
44 if (ch
== '\t') continue;
45 if (ch
== '\n') continue;
52 static unsigned int debugifc_count_nonwhitespace(const char *buf
,
58 for (scnt
= 0; scnt
< count
; scnt
++) {
61 if (ch
== '\t') break;
62 if (ch
== '\n') break;
68 static unsigned int debugifc_isolate_word(const char *buf
,unsigned int count
,
70 unsigned int *wlenPtr
)
73 unsigned int consume_cnt
= 0;
79 scnt
= debugifc_count_whitespace(buf
,count
);
80 consume_cnt
+= scnt
; count
-= scnt
; buf
+= scnt
;
81 if (!count
) goto done
;
83 scnt
= debugifc_count_nonwhitespace(buf
,count
);
87 consume_cnt
+= scnt
; count
-= scnt
; buf
+= scnt
;
96 static int debugifc_parse_unsigned_number(const char *buf
,unsigned int count
,
103 if ((count
>= 2) && (buf
[0] == '0') &&
104 ((buf
[1] == 'x') || (buf
[1] == 'X'))) {
108 } else if ((count
>= 1) && (buf
[0] == '0')) {
114 if ((ch
>= '0') && (ch
<= '9')) {
116 } else if ((ch
>= 'a') && (ch
<= 'f')) {
118 } else if ((ch
>= 'A') && (ch
<= 'F')) {
123 if (val
>= radix
) return -EINVAL
;
132 static int debugifc_match_keyword(const char *buf
,unsigned int count
,
136 if (!keyword
) return 0;
137 kl
= strlen(keyword
);
138 if (kl
!= count
) return 0;
139 return !memcmp(buf
,keyword
,kl
);
143 int pvr2_debugifc_print_info(struct pvr2_hdw
*hdw
,char *buf
,unsigned int acnt
)
147 ccnt
= scnprintf(buf
,acnt
,"Driver state info:\n");
148 bcnt
+= ccnt
; acnt
-= ccnt
; buf
+= ccnt
;
149 ccnt
= pvr2_hdw_state_report(hdw
,buf
,acnt
);
150 bcnt
+= ccnt
; acnt
-= ccnt
; buf
+= ccnt
;
151 ccnt
= scnprintf(buf
,acnt
,"Attached I2C modules:\n");
152 bcnt
+= ccnt
; acnt
-= ccnt
; buf
+= ccnt
;
153 ccnt
= pvr2_i2c_report(hdw
,buf
,acnt
);
154 bcnt
+= ccnt
; acnt
-= ccnt
; buf
+= ccnt
;
160 int pvr2_debugifc_print_status(struct pvr2_hdw
*hdw
,
161 char *buf
,unsigned int acnt
)
166 u32 gpio_dir
,gpio_in
,gpio_out
;
168 ret
= pvr2_hdw_is_hsm(hdw
);
169 ccnt
= scnprintf(buf
,acnt
,"USB link speed: %s\n",
170 (ret
< 0 ? "FAIL" : (ret
? "high" : "full")));
171 bcnt
+= ccnt
; acnt
-= ccnt
; buf
+= ccnt
;
173 gpio_dir
= 0; gpio_in
= 0; gpio_out
= 0;
174 pvr2_hdw_gpio_get_dir(hdw
,&gpio_dir
);
175 pvr2_hdw_gpio_get_out(hdw
,&gpio_out
);
176 pvr2_hdw_gpio_get_in(hdw
,&gpio_in
);
177 ccnt
= scnprintf(buf
,acnt
,"GPIO state: dir=0x%x in=0x%x out=0x%x\n",
178 gpio_dir
,gpio_in
,gpio_out
);
179 bcnt
+= ccnt
; acnt
-= ccnt
; buf
+= ccnt
;
181 ccnt
= scnprintf(buf
,acnt
,"Streaming is %s\n",
182 pvr2_hdw_get_streaming(hdw
) ? "on" : "off");
183 bcnt
+= ccnt
; acnt
-= ccnt
; buf
+= ccnt
;
189 static int pvr2_debugifc_do1cmd(struct pvr2_hdw
*hdw
,const char *buf
,
196 scnt
= debugifc_isolate_word(buf
,count
,&wptr
,&wlen
);
198 count
-= scnt
; buf
+= scnt
;
201 pvr2_trace(PVR2_TRACE_DEBUGIFC
,"debugifc cmd: \"%.*s\"",wlen
,wptr
);
202 if (debugifc_match_keyword(wptr
,wlen
,"reset")) {
203 scnt
= debugifc_isolate_word(buf
,count
,&wptr
,&wlen
);
204 if (!scnt
) return -EINVAL
;
205 count
-= scnt
; buf
+= scnt
;
206 if (!wptr
) return -EINVAL
;
207 if (debugifc_match_keyword(wptr
,wlen
,"cpu")) {
208 pvr2_hdw_cpureset_assert(hdw
,!0);
209 pvr2_hdw_cpureset_assert(hdw
,0);
211 } else if (debugifc_match_keyword(wptr
,wlen
,"bus")) {
212 pvr2_hdw_device_reset(hdw
);
213 } else if (debugifc_match_keyword(wptr
,wlen
,"soft")) {
214 return pvr2_hdw_cmd_powerup(hdw
);
215 } else if (debugifc_match_keyword(wptr
,wlen
,"deep")) {
216 return pvr2_hdw_cmd_deep_reset(hdw
);
217 } else if (debugifc_match_keyword(wptr
,wlen
,"firmware")) {
218 return pvr2_upload_firmware2(hdw
);
219 } else if (debugifc_match_keyword(wptr
,wlen
,"decoder")) {
220 return pvr2_hdw_cmd_decoder_reset(hdw
);
221 } else if (debugifc_match_keyword(wptr
,wlen
,"worker")) {
222 return pvr2_hdw_untrip(hdw
);
225 } else if (debugifc_match_keyword(wptr
,wlen
,"cpufw")) {
226 scnt
= debugifc_isolate_word(buf
,count
,&wptr
,&wlen
);
227 if (!scnt
) return -EINVAL
;
228 count
-= scnt
; buf
+= scnt
;
229 if (!wptr
) return -EINVAL
;
230 if (debugifc_match_keyword(wptr
,wlen
,"fetch")) {
231 scnt
= debugifc_isolate_word(buf
,count
,&wptr
,&wlen
);
233 count
-= scnt
; buf
+= scnt
;
234 if (debugifc_match_keyword(wptr
,wlen
,"prom")) {
235 pvr2_hdw_cpufw_set_enabled(hdw
,!0,!0);
236 } else if (debugifc_match_keyword(wptr
,wlen
,
238 pvr2_hdw_cpufw_set_enabled(hdw
,0,!0);
243 pvr2_hdw_cpufw_set_enabled(hdw
,0,!0);
245 } else if (debugifc_match_keyword(wptr
,wlen
,"done")) {
246 pvr2_hdw_cpufw_set_enabled(hdw
,0,0);
251 } else if (debugifc_match_keyword(wptr
,wlen
,"gpio")) {
255 scnt
= debugifc_isolate_word(buf
,count
,&wptr
,&wlen
);
256 if (!scnt
) return -EINVAL
;
257 count
-= scnt
; buf
+= scnt
;
258 if (!wptr
) return -EINVAL
;
259 if (debugifc_match_keyword(wptr
,wlen
,"dir")) {
261 } else if (!debugifc_match_keyword(wptr
,wlen
,"out")) {
264 scnt
= debugifc_isolate_word(buf
,count
,&wptr
,&wlen
);
265 if (!scnt
) return -EINVAL
;
266 count
-= scnt
; buf
+= scnt
;
267 if (!wptr
) return -EINVAL
;
268 ret
= debugifc_parse_unsigned_number(wptr
,wlen
,&msk
);
270 scnt
= debugifc_isolate_word(buf
,count
,&wptr
,&wlen
);
272 ret
= debugifc_parse_unsigned_number(wptr
,wlen
,&val
);
279 ret
= pvr2_hdw_gpio_chg_dir(hdw
,msk
,val
);
281 ret
= pvr2_hdw_gpio_chg_out(hdw
,msk
,val
);
285 pvr2_trace(PVR2_TRACE_DEBUGIFC
,
286 "debugifc failed to recognize cmd: \"%.*s\"",wlen
,wptr
);
291 int pvr2_debugifc_docmd(struct pvr2_hdw
*hdw
,const char *buf
,
294 unsigned int bcnt
= 0;
298 for (bcnt
= 0; bcnt
< count
; bcnt
++) {
299 if (buf
[bcnt
] == '\n') break;
302 ret
= pvr2_debugifc_do1cmd(hdw
,buf
,bcnt
);
303 if (ret
< 0) return ret
;
304 if (bcnt
< count
) bcnt
++;
314 Stuff for Emacs to see, in order to encourage consistent editing style:
315 *** Local Variables: ***
317 *** fill-column: 75 ***
319 *** c-basic-offset: 8 ***