dsbr100.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:9k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* A driver for the D-Link DSB-R100 USB radio.  The R100 plugs
  2.  into both the USB and an analog audio input, so this thing
  3.  only deals with initialisation and frequency setting, the
  4.  audio data has to be handled by a sound driver.
  5.  Major issue: I can't find out where the device reports the signal
  6.  strength, and indeed the windows software appearantly just looks
  7.  at the stereo indicator as well.  So, scanning will only find
  8.  stereo stations.  Sad, but I can't help it.
  9.  Also, the windows program sends oodles of messages over to the
  10.  device, and I couldn't figure out their meaning.  My suspicion
  11.  is that they don't have any:-)
  12.  You might find some interesting stuff about this module at
  13.  http://unimut.fsk.uni-heidelberg.de/unimut/demi/dsbr
  14.  Copyright (c) 2000 Markus Demleitner <msdemlei@tucana.harvard.edu>
  15.  This program is free software; you can redistribute it and/or modify
  16.  it under the terms of the GNU General Public License as published by
  17.  the Free Software Foundation; either version 2 of the License, or
  18.  (at your option) any later version.
  19.  This program is distributed in the hope that it will be useful,
  20.  but WITHOUT ANY WARRANTY; without even the implied warranty of
  21.  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  22.  GNU General Public License for more details.
  23.  You should have received a copy of the GNU General Public License
  24.  along with this program; if not, write to the Free Software
  25.  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  26.  History:
  27.  Version 0.24:
  28.   Markus: Hope I got these silly VIDEO_TUNER_LOW issues finally
  29. right.  Some minor cleanup, improved standalone compilation
  30.  Version 0.23:
  31.   Markus: Sign extension bug fixed by declaring transfer_buffer unsigned
  32.  Version 0.22:
  33.   Markus: Some (brown bag) cleanup in what VIDIOCSTUNER returns, 
  34. thanks to Mike Cox for pointing the problem out.
  35.  Version 0.21:
  36.   Markus: Minor cleanup, warnings if something goes wrong, lame attempt
  37. to adhere to Documentation/CodingStyle
  38.  Version 0.2: 
  39.   Brad Hards <bradh@dynamite.com.au>: Fixes to make it work as non-module
  40. Markus: Copyright clarification
  41.  Version 0.01: Markus: initial release
  42. */
  43. #include <linux/kernel.h>
  44. #include <linux/module.h>
  45. #include <linux/init.h>
  46. #include <linux/slab.h>
  47. #include <linux/input.h>
  48. #include <linux/videodev.h>
  49. #include <linux/usb.h>
  50. #include <linux/smp_lock.h>
  51. /*
  52.  * Version Information
  53.  */
  54. #define DRIVER_VERSION "v0.24"
  55. #define DRIVER_AUTHOR "Markus Demleitner <msdemlei@tucana.harvard.edu>"
  56. #define DRIVER_DESC "D-Link DSB-R100 USB radio driver"
  57. #define DSB100_VENDOR 0x04b4
  58. #define DSB100_PRODUCT 0x1002
  59. #define TB_LEN 16
  60. static void *usb_dsbr100_probe(struct usb_device *dev, unsigned int ifnum,
  61.  const struct usb_device_id *id);
  62. static void usb_dsbr100_disconnect(struct usb_device *dev, void *ptr);
  63. static int usb_dsbr100_ioctl(struct video_device *dev, unsigned int cmd, 
  64. void *arg);
  65. static int usb_dsbr100_open(struct video_device *dev, int flags);
  66. static void usb_dsbr100_close(struct video_device *dev);
  67. static int radio_nr = -1;
  68. MODULE_PARM(radio_nr, "i");
  69. typedef struct
  70. { struct urb readurb,writeurb;
  71. struct usb_device *dev;
  72. unsigned char transfer_buffer[TB_LEN];
  73. int curfreq;
  74. int stereo;
  75. int ifnum;
  76. } usb_dsbr100;
  77. static struct video_device usb_dsbr100_radio=
  78. {
  79. name: "D-Link DSB R-100 USB radio",
  80. type: VID_TYPE_TUNER,
  81. hardware: VID_HARDWARE_AZTECH,
  82. open: usb_dsbr100_open,
  83. close: usb_dsbr100_close,
  84. ioctl: usb_dsbr100_ioctl,
  85. };
  86. static int users = 0;
  87. static struct usb_device_id usb_dsbr100_table [] = {
  88. { USB_DEVICE(DSB100_VENDOR, DSB100_PRODUCT) },
  89. { } /* Terminating entry */
  90. };
  91. MODULE_DEVICE_TABLE (usb, usb_dsbr100_table);
  92. static struct usb_driver usb_dsbr100_driver = {
  93. name: "dsbr100",
  94. probe: usb_dsbr100_probe,
  95. disconnect: usb_dsbr100_disconnect,
  96. fops: NULL,
  97. minor: 0,
  98. id_table: usb_dsbr100_table,
  99. };
  100. static int dsbr100_start(usb_dsbr100 *radio)
  101. {
  102. if (usb_control_msg(radio->dev, usb_rcvctrlpipe(radio->dev, 0),
  103. 0x00, 0xC0, 0x00, 0xC7, radio->transfer_buffer, 8, 300)<0 ||
  104.     usb_control_msg(radio->dev, usb_rcvctrlpipe(radio->dev, 0),
  105. 0x02, 0xC0, 0x01, 0x00, radio->transfer_buffer, 8, 300)<0)
  106. return -1;
  107. return (radio->transfer_buffer)[0];
  108. }
  109. static int dsbr100_stop(usb_dsbr100 *radio)
  110. {
  111. if (usb_control_msg(radio->dev, usb_rcvctrlpipe(radio->dev, 0),
  112. 0x00, 0xC0, 0x16, 0x1C, radio->transfer_buffer, 8, 300)<0 ||
  113.     usb_control_msg(radio->dev, usb_rcvctrlpipe(radio->dev, 0),
  114. 0x02, 0xC0, 0x00, 0x00, radio->transfer_buffer, 8, 300)<0)
  115. return -1;
  116. return (radio->transfer_buffer)[0];
  117. }
  118. static int dsbr100_setfreq(usb_dsbr100 *radio, int freq)
  119. {
  120. freq = (freq/16*80)/1000+856;
  121. if (usb_control_msg(radio->dev, usb_rcvctrlpipe(radio->dev, 0),
  122. 0x01, 0xC0, (freq>>8)&0x00ff, freq&0xff, 
  123. radio->transfer_buffer, 8, 300)<0 ||
  124.     usb_control_msg(radio->dev, usb_rcvctrlpipe(radio->dev, 0),
  125. 0x00, 0xC0, 0x96, 0xB7, radio->transfer_buffer, 8, 300)<0 ||
  126.     usb_control_msg(radio->dev, usb_rcvctrlpipe(radio->dev, 0),
  127. 0x00, 0xC0, 0x00, 0x24, radio->transfer_buffer, 8, 300)<0) {
  128. radio->stereo = -1;
  129. return -1;
  130. }
  131. radio->stereo = ! ((radio->transfer_buffer)[0]&0x01);
  132. return (radio->transfer_buffer)[0];
  133. }
  134. static void dsbr100_getstat(usb_dsbr100 *radio)
  135. {
  136. if (usb_control_msg(radio->dev, usb_rcvctrlpipe(radio->dev, 0),
  137. 0x00, 0xC0, 0x00 , 0x24, radio->transfer_buffer, 8, 300)<0)
  138. radio->stereo = -1;
  139. else
  140. radio->stereo = ! (radio->transfer_buffer[0]&0x01);
  141. }
  142. static void *usb_dsbr100_probe(struct usb_device *dev, unsigned int ifnum,
  143.  const struct usb_device_id *id)
  144. {
  145. usb_dsbr100 *radio;
  146. if (!(radio = kmalloc(sizeof(usb_dsbr100),GFP_KERNEL)))
  147. return NULL;
  148. usb_dsbr100_radio.priv = radio;
  149. radio->dev = dev;
  150. radio->ifnum = ifnum;
  151. radio->curfreq = 1454000;
  152. return (void*)radio;
  153. }
  154. static void usb_dsbr100_disconnect(struct usb_device *dev, void *ptr)
  155. {
  156. usb_dsbr100 *radio=ptr;
  157. lock_kernel();
  158. if (users) {
  159. unlock_kernel();
  160. return;
  161. }
  162. kfree(radio);
  163. usb_dsbr100_radio.priv = NULL;
  164. unlock_kernel();
  165. }
  166. static int usb_dsbr100_ioctl(struct video_device *dev, unsigned int cmd, 
  167. void *arg)
  168. {
  169. usb_dsbr100 *radio=dev->priv;
  170. if (!radio)
  171. return -EINVAL;
  172. switch(cmd)
  173. {
  174. case VIDIOCGCAP: {
  175. struct video_capability v;
  176. v.type=VID_TYPE_TUNER;
  177. v.channels=1;
  178. v.audios=1;
  179. /* No we don't do pictures */
  180. v.maxwidth=0;
  181. v.maxheight=0;
  182. v.minwidth=0;
  183. v.minheight=0;
  184. strcpy(v.name, "D-Link R-100 USB Radio");
  185. if(copy_to_user(arg,&v,sizeof(v)))
  186. return -EFAULT;
  187. return 0;
  188. }
  189. case VIDIOCGTUNER: {
  190. struct video_tuner v;
  191. dsbr100_getstat(radio);
  192. if(copy_from_user(&v, arg,sizeof(v))!=0) 
  193. return -EFAULT;
  194. if(v.tuner) /* Only 1 tuner */ 
  195. return -EINVAL;
  196. v.rangelow = 87*16000;
  197. v.rangehigh = 108*16000;
  198. v.flags = VIDEO_TUNER_LOW;
  199. v.mode = VIDEO_MODE_AUTO;
  200. v.signal = radio->stereo*0x7000;
  201. /* Don't know how to get signal strength */
  202. v.flags |= VIDEO_TUNER_STEREO_ON*radio->stereo;
  203. strcpy(v.name, "DSB R-100");
  204. if(copy_to_user(arg,&v, sizeof(v)))
  205. return -EFAULT;
  206. return 0;
  207. }
  208. case VIDIOCSTUNER: {
  209. struct video_tuner v;
  210. if(copy_from_user(&v, arg, sizeof(v)))
  211. return -EFAULT;
  212. if(v.tuner!=0)
  213. return -EINVAL;
  214. /* Only 1 tuner so no setting needed ! */
  215. return 0;
  216. }
  217. case VIDIOCGFREQ: 
  218. if (radio->curfreq==-1)
  219. return -EINVAL;
  220. if(copy_to_user(arg, &(radio->curfreq), 
  221. sizeof(radio->curfreq)))
  222. return -EFAULT;
  223. return 0;
  224. case VIDIOCSFREQ:
  225. if(copy_from_user(&(radio->curfreq), arg,
  226. sizeof(radio->curfreq)))
  227. return -EFAULT;
  228. if (dsbr100_setfreq(radio, radio->curfreq)==-1)
  229. warn("set frequency failed");
  230. return 0;
  231. case VIDIOCGAUDIO: {
  232. struct video_audio v;
  233. memset(&v,0, sizeof(v));
  234. v.flags|=VIDEO_AUDIO_MUTABLE;
  235. v.mode=VIDEO_SOUND_STEREO;
  236. v.volume=1;
  237. v.step=1;
  238. strcpy(v.name, "Radio");
  239. if(copy_to_user(arg,&v, sizeof(v)))
  240. return -EFAULT;
  241. return 0;
  242. }
  243. case VIDIOCSAUDIO: {
  244. struct video_audio v;
  245. if(copy_from_user(&v, arg, sizeof(v))) 
  246. return -EFAULT;
  247. if(v.audio) 
  248. return -EINVAL;
  249. if(v.flags&VIDEO_AUDIO_MUTE) {
  250. if (dsbr100_stop(radio)==-1)
  251. warn("radio did not respond properly");
  252. }
  253. else
  254. if (dsbr100_start(radio)==-1)
  255. warn("radio did not respond properly");
  256. return 0;
  257. }
  258. default:
  259. return -ENOIOCTLCMD;
  260. }
  261. }
  262. static int usb_dsbr100_open(struct video_device *dev, int flags)
  263. {
  264. usb_dsbr100 *radio=dev->priv;
  265. if (! radio) {
  266. warn("radio not initialised");
  267. return -EAGAIN;
  268. }
  269. if(users)
  270. {
  271. warn("radio in use");
  272. return -EBUSY;
  273. }
  274. users++;
  275. MOD_INC_USE_COUNT;
  276. if (dsbr100_start(radio)<0)
  277. warn("radio did not start up properly");
  278. dsbr100_setfreq(radio,radio->curfreq);
  279. return 0;
  280. }
  281. static void usb_dsbr100_close(struct video_device *dev)
  282. {
  283. usb_dsbr100 *radio=dev->priv;
  284. if (!radio)
  285. return;
  286. users--;
  287. dsbr100_stop(radio);
  288. MOD_DEC_USE_COUNT;
  289. }
  290. static int __init dsbr100_init(void)
  291. {
  292. usb_dsbr100_radio.priv = NULL;
  293. usb_register(&usb_dsbr100_driver);
  294. if (video_register_device(&usb_dsbr100_radio,VFL_TYPE_RADIO,radio_nr)==-1) {
  295. warn("couldn't register video device");
  296. return -EINVAL;
  297. }
  298. info(DRIVER_VERSION ":" DRIVER_DESC);
  299. return 0;
  300. }
  301. static void __exit dsbr100_exit(void)
  302. {
  303. usb_dsbr100 *radio=usb_dsbr100_radio.priv;
  304. if (radio)
  305. dsbr100_stop(radio);
  306. video_unregister_device(&usb_dsbr100_radio);
  307. usb_deregister(&usb_dsbr100_driver);
  308. }
  309. module_init (dsbr100_init);
  310. module_exit (dsbr100_exit);
  311. MODULE_AUTHOR( DRIVER_AUTHOR );
  312. MODULE_DESCRIPTION( DRIVER_DESC );
  313. MODULE_LICENSE("GPL");
  314. /*
  315. vi: ts=8
  316. Sigh.  Of course, I am one of the ts=2 heretics, but Linus' wish is
  317. my command.
  318. */