ngene-cards.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558
  1. /*
  2. * ngene-cards.c: nGene PCIe bridge driver - card specific info
  3. *
  4. * Copyright (C) 2005-2007 Micronas
  5. *
  6. * Copyright (C) 2008-2009 Ralph Metzler <rjkm@metzlerbros.de>
  7. * Modifications for new nGene firmware,
  8. * support for EEPROM-copying,
  9. * support for new dual DVB-S2 card prototype
  10. *
  11. *
  12. * This program is free software; you can redistribute it and/or
  13. * modify it under the terms of the GNU General Public License
  14. * version 2 only, as published by the Free Software Foundation.
  15. *
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. *
  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., 51 Franklin Street, Fifth Floor, Boston, MA
  26. * 02110-1301, USA
  27. * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
  28. */
  29. #include <linux/module.h>
  30. #include <linux/init.h>
  31. #include <linux/pci.h>
  32. #include <linux/pci_ids.h>
  33. #include "ngene.h"
  34. /* demods/tuners */
  35. #include "stv6110x.h"
  36. #include "stv090x.h"
  37. #include "lnbh24.h"
  38. #include "lgdt330x.h"
  39. #include "mt2131.h"
  40. #include "tda18271c2dd.h"
  41. #include "drxk.h"
  42. /****************************************************************************/
  43. /* Demod/tuner attachment ***************************************************/
  44. /****************************************************************************/
  45. static int tuner_attach_stv6110(struct ngene_channel *chan)
  46. {
  47. struct i2c_adapter *i2c;
  48. struct stv090x_config *feconf = (struct stv090x_config *)
  49. chan->dev->card_info->fe_config[chan->number];
  50. struct stv6110x_config *tunerconf = (struct stv6110x_config *)
  51. chan->dev->card_info->tuner_config[chan->number];
  52. struct stv6110x_devctl *ctl;
  53. /* tuner 1+2: i2c adapter #0, tuner 3+4: i2c adapter #1 */
  54. if (chan->number < 2)
  55. i2c = &chan->dev->channel[0].i2c_adapter;
  56. else
  57. i2c = &chan->dev->channel[1].i2c_adapter;
  58. ctl = dvb_attach(stv6110x_attach, chan->fe, tunerconf, i2c);
  59. if (ctl == NULL) {
  60. printk(KERN_ERR DEVICE_NAME ": No STV6110X found!\n");
  61. return -ENODEV;
  62. }
  63. feconf->tuner_init = ctl->tuner_init;
  64. feconf->tuner_sleep = ctl->tuner_sleep;
  65. feconf->tuner_set_mode = ctl->tuner_set_mode;
  66. feconf->tuner_set_frequency = ctl->tuner_set_frequency;
  67. feconf->tuner_get_frequency = ctl->tuner_get_frequency;
  68. feconf->tuner_set_bandwidth = ctl->tuner_set_bandwidth;
  69. feconf->tuner_get_bandwidth = ctl->tuner_get_bandwidth;
  70. feconf->tuner_set_bbgain = ctl->tuner_set_bbgain;
  71. feconf->tuner_get_bbgain = ctl->tuner_get_bbgain;
  72. feconf->tuner_set_refclk = ctl->tuner_set_refclk;
  73. feconf->tuner_get_status = ctl->tuner_get_status;
  74. return 0;
  75. }
  76. static int drxk_gate_ctrl(struct dvb_frontend *fe, int enable)
  77. {
  78. struct ngene_channel *chan = fe->sec_priv;
  79. int status;
  80. if (enable) {
  81. down(&chan->dev->pll_mutex);
  82. status = chan->gate_ctrl(fe, 1);
  83. } else {
  84. status = chan->gate_ctrl(fe, 0);
  85. up(&chan->dev->pll_mutex);
  86. }
  87. return status;
  88. }
  89. static int tuner_attach_tda18271(struct ngene_channel *chan)
  90. {
  91. struct i2c_adapter *i2c;
  92. struct dvb_frontend *fe;
  93. i2c = &chan->dev->channel[0].i2c_adapter;
  94. if (chan->fe->ops.i2c_gate_ctrl)
  95. chan->fe->ops.i2c_gate_ctrl(chan->fe, 1);
  96. fe = dvb_attach(tda18271c2dd_attach, chan->fe, i2c, 0x60);
  97. if (chan->fe->ops.i2c_gate_ctrl)
  98. chan->fe->ops.i2c_gate_ctrl(chan->fe, 0);
  99. if (!fe) {
  100. printk(KERN_ERR "No TDA18271 found!\n");
  101. return -ENODEV;
  102. }
  103. return 0;
  104. }
  105. static int tuner_attach_probe(struct ngene_channel *chan)
  106. {
  107. if (chan->demod_type == 0)
  108. return tuner_attach_stv6110(chan);
  109. if (chan->demod_type == 1)
  110. return tuner_attach_tda18271(chan);
  111. return -EINVAL;
  112. }
  113. static int demod_attach_stv0900(struct ngene_channel *chan)
  114. {
  115. struct i2c_adapter *i2c;
  116. struct stv090x_config *feconf = (struct stv090x_config *)
  117. chan->dev->card_info->fe_config[chan->number];
  118. /* tuner 1+2: i2c adapter #0, tuner 3+4: i2c adapter #1 */
  119. /* Note: Both adapters share the same i2c bus, but the demod */
  120. /* driver requires that each demod has its own i2c adapter */
  121. if (chan->number < 2)
  122. i2c = &chan->dev->channel[0].i2c_adapter;
  123. else
  124. i2c = &chan->dev->channel[1].i2c_adapter;
  125. chan->fe = dvb_attach(stv090x_attach, feconf, i2c,
  126. (chan->number & 1) == 0 ? STV090x_DEMODULATOR_0
  127. : STV090x_DEMODULATOR_1);
  128. if (chan->fe == NULL) {
  129. printk(KERN_ERR DEVICE_NAME ": No STV0900 found!\n");
  130. return -ENODEV;
  131. }
  132. /* store channel info */
  133. if (feconf->tuner_i2c_lock)
  134. chan->fe->analog_demod_priv = chan;
  135. if (!dvb_attach(lnbh24_attach, chan->fe, i2c, 0,
  136. 0, chan->dev->card_info->lnb[chan->number])) {
  137. printk(KERN_ERR DEVICE_NAME ": No LNBH24 found!\n");
  138. dvb_frontend_detach(chan->fe);
  139. chan->fe = NULL;
  140. return -ENODEV;
  141. }
  142. return 0;
  143. }
  144. static void cineS2_tuner_i2c_lock(struct dvb_frontend *fe, int lock)
  145. {
  146. struct ngene_channel *chan = fe->analog_demod_priv;
  147. if (lock)
  148. down(&chan->dev->pll_mutex);
  149. else
  150. up(&chan->dev->pll_mutex);
  151. }
  152. static int i2c_read(struct i2c_adapter *adapter, u8 adr, u8 *val)
  153. {
  154. struct i2c_msg msgs[1] = {{.addr = adr, .flags = I2C_M_RD,
  155. .buf = val, .len = 1 } };
  156. return (i2c_transfer(adapter, msgs, 1) == 1) ? 0 : -1;
  157. }
  158. static int i2c_read_reg16(struct i2c_adapter *adapter, u8 adr,
  159. u16 reg, u8 *val)
  160. {
  161. u8 msg[2] = {reg>>8, reg&0xff};
  162. struct i2c_msg msgs[2] = {{.addr = adr, .flags = 0,
  163. .buf = msg, .len = 2},
  164. {.addr = adr, .flags = I2C_M_RD,
  165. .buf = val, .len = 1} };
  166. return (i2c_transfer(adapter, msgs, 2) == 2) ? 0 : -1;
  167. }
  168. static int port_has_stv0900(struct i2c_adapter *i2c, int port)
  169. {
  170. u8 val;
  171. if (i2c_read_reg16(i2c, 0x68+port/2, 0xf100, &val) < 0)
  172. return 0;
  173. return 1;
  174. }
  175. static int port_has_drxk(struct i2c_adapter *i2c, int port)
  176. {
  177. u8 val;
  178. if (i2c_read(i2c, 0x29+port, &val) < 0)
  179. return 0;
  180. return 1;
  181. }
  182. static int demod_attach_drxk(struct ngene_channel *chan,
  183. struct i2c_adapter *i2c)
  184. {
  185. struct drxk_config config;
  186. memset(&config, 0, sizeof(config));
  187. config.adr = 0x29 + (chan->number ^ 2);
  188. chan->fe = dvb_attach(drxk_attach, &config, i2c);
  189. if (!chan->fe) {
  190. printk(KERN_ERR "No DRXK found!\n");
  191. return -ENODEV;
  192. }
  193. chan->fe->sec_priv = chan;
  194. chan->gate_ctrl = chan->fe->ops.i2c_gate_ctrl;
  195. chan->fe->ops.i2c_gate_ctrl = drxk_gate_ctrl;
  196. return 0;
  197. }
  198. static int cineS2_probe(struct ngene_channel *chan)
  199. {
  200. struct i2c_adapter *i2c;
  201. struct stv090x_config *fe_conf;
  202. u8 buf[3];
  203. struct i2c_msg i2c_msg = { .flags = 0, .buf = buf };
  204. int rc;
  205. /* tuner 1+2: i2c adapter #0, tuner 3+4: i2c adapter #1 */
  206. if (chan->number < 2)
  207. i2c = &chan->dev->channel[0].i2c_adapter;
  208. else
  209. i2c = &chan->dev->channel[1].i2c_adapter;
  210. if (port_has_stv0900(i2c, chan->number)) {
  211. chan->demod_type = 0;
  212. fe_conf = chan->dev->card_info->fe_config[chan->number];
  213. /* demod found, attach it */
  214. rc = demod_attach_stv0900(chan);
  215. if (rc < 0 || chan->number < 2)
  216. return rc;
  217. /* demod #2: reprogram outputs DPN1 & DPN2 */
  218. i2c_msg.addr = fe_conf->address;
  219. i2c_msg.len = 3;
  220. buf[0] = 0xf1;
  221. switch (chan->number) {
  222. case 2:
  223. buf[1] = 0x5c;
  224. buf[2] = 0xc2;
  225. break;
  226. case 3:
  227. buf[1] = 0x61;
  228. buf[2] = 0xcc;
  229. break;
  230. default:
  231. return -ENODEV;
  232. }
  233. rc = i2c_transfer(i2c, &i2c_msg, 1);
  234. if (rc != 1) {
  235. printk(KERN_ERR DEVICE_NAME ": could not setup DPNx\n");
  236. return -EIO;
  237. }
  238. } else if (port_has_drxk(i2c, chan->number^2)) {
  239. chan->demod_type = 1;
  240. demod_attach_drxk(chan, i2c);
  241. } else {
  242. printk(KERN_ERR "No demod found on chan %d\n", chan->number);
  243. return -ENODEV;
  244. }
  245. return 0;
  246. }
  247. static struct lgdt330x_config aver_m780 = {
  248. .demod_address = 0xb2 >> 1,
  249. .demod_chip = LGDT3303,
  250. .serial_mpeg = 0x00, /* PARALLEL */
  251. .clock_polarity_flip = 1,
  252. };
  253. static struct mt2131_config m780_tunerconfig = {
  254. 0xc0 >> 1
  255. };
  256. /* A single func to attach the demo and tuner, rather than
  257. * use two sep funcs like the current design mandates.
  258. */
  259. static int demod_attach_lg330x(struct ngene_channel *chan)
  260. {
  261. chan->fe = dvb_attach(lgdt330x_attach, &aver_m780, &chan->i2c_adapter);
  262. if (chan->fe == NULL) {
  263. printk(KERN_ERR DEVICE_NAME ": No LGDT330x found!\n");
  264. return -ENODEV;
  265. }
  266. dvb_attach(mt2131_attach, chan->fe, &chan->i2c_adapter,
  267. &m780_tunerconfig, 0);
  268. return (chan->fe) ? 0 : -ENODEV;
  269. }
  270. /****************************************************************************/
  271. /* Switch control (I2C gates, etc.) *****************************************/
  272. /****************************************************************************/
  273. static struct stv090x_config fe_cineS2 = {
  274. .device = STV0900,
  275. .demod_mode = STV090x_DUAL,
  276. .clk_mode = STV090x_CLK_EXT,
  277. .xtal = 27000000,
  278. .address = 0x68,
  279. .ts1_mode = STV090x_TSMODE_SERIAL_PUNCTURED,
  280. .ts2_mode = STV090x_TSMODE_SERIAL_PUNCTURED,
  281. .repeater_level = STV090x_RPTLEVEL_16,
  282. .adc1_range = STV090x_ADC_1Vpp,
  283. .adc2_range = STV090x_ADC_1Vpp,
  284. .diseqc_envelope_mode = true,
  285. .tuner_i2c_lock = cineS2_tuner_i2c_lock,
  286. };
  287. static struct stv090x_config fe_cineS2_2 = {
  288. .device = STV0900,
  289. .demod_mode = STV090x_DUAL,
  290. .clk_mode = STV090x_CLK_EXT,
  291. .xtal = 27000000,
  292. .address = 0x69,
  293. .ts1_mode = STV090x_TSMODE_SERIAL_PUNCTURED,
  294. .ts2_mode = STV090x_TSMODE_SERIAL_PUNCTURED,
  295. .repeater_level = STV090x_RPTLEVEL_16,
  296. .adc1_range = STV090x_ADC_1Vpp,
  297. .adc2_range = STV090x_ADC_1Vpp,
  298. .diseqc_envelope_mode = true,
  299. .tuner_i2c_lock = cineS2_tuner_i2c_lock,
  300. };
  301. static struct stv6110x_config tuner_cineS2_0 = {
  302. .addr = 0x60,
  303. .refclk = 27000000,
  304. .clk_div = 1,
  305. };
  306. static struct stv6110x_config tuner_cineS2_1 = {
  307. .addr = 0x63,
  308. .refclk = 27000000,
  309. .clk_div = 1,
  310. };
  311. static struct ngene_info ngene_info_cineS2 = {
  312. .type = NGENE_SIDEWINDER,
  313. .name = "Linux4Media cineS2 DVB-S2 Twin Tuner",
  314. .io_type = {NGENE_IO_TSIN, NGENE_IO_TSIN},
  315. .demod_attach = {demod_attach_stv0900, demod_attach_stv0900},
  316. .tuner_attach = {tuner_attach_stv6110, tuner_attach_stv6110},
  317. .fe_config = {&fe_cineS2, &fe_cineS2},
  318. .tuner_config = {&tuner_cineS2_0, &tuner_cineS2_1},
  319. .lnb = {0x0b, 0x08},
  320. .tsf = {3, 3},
  321. .fw_version = 18,
  322. .msi_supported = true,
  323. };
  324. static struct ngene_info ngene_info_satixS2 = {
  325. .type = NGENE_SIDEWINDER,
  326. .name = "Mystique SaTiX-S2 Dual",
  327. .io_type = {NGENE_IO_TSIN, NGENE_IO_TSIN},
  328. .demod_attach = {demod_attach_stv0900, demod_attach_stv0900},
  329. .tuner_attach = {tuner_attach_stv6110, tuner_attach_stv6110},
  330. .fe_config = {&fe_cineS2, &fe_cineS2},
  331. .tuner_config = {&tuner_cineS2_0, &tuner_cineS2_1},
  332. .lnb = {0x0b, 0x08},
  333. .tsf = {3, 3},
  334. .fw_version = 18,
  335. .msi_supported = true,
  336. };
  337. static struct ngene_info ngene_info_satixS2v2 = {
  338. .type = NGENE_SIDEWINDER,
  339. .name = "Mystique SaTiX-S2 Dual (v2)",
  340. .io_type = {NGENE_IO_TSIN, NGENE_IO_TSIN, NGENE_IO_TSIN, NGENE_IO_TSIN,
  341. NGENE_IO_TSOUT},
  342. .demod_attach = {demod_attach_stv0900, demod_attach_stv0900, cineS2_probe, cineS2_probe},
  343. .tuner_attach = {tuner_attach_stv6110, tuner_attach_stv6110, tuner_attach_probe, tuner_attach_probe},
  344. .fe_config = {&fe_cineS2, &fe_cineS2, &fe_cineS2_2, &fe_cineS2_2},
  345. .tuner_config = {&tuner_cineS2_0, &tuner_cineS2_1, &tuner_cineS2_0, &tuner_cineS2_1},
  346. .lnb = {0x0a, 0x08, 0x0b, 0x09},
  347. .tsf = {3, 3},
  348. .fw_version = 18,
  349. .msi_supported = true,
  350. };
  351. static struct ngene_info ngene_info_cineS2v5 = {
  352. .type = NGENE_SIDEWINDER,
  353. .name = "Linux4Media cineS2 DVB-S2 Twin Tuner (v5)",
  354. .io_type = {NGENE_IO_TSIN, NGENE_IO_TSIN, NGENE_IO_TSIN, NGENE_IO_TSIN,
  355. NGENE_IO_TSOUT},
  356. .demod_attach = {demod_attach_stv0900, demod_attach_stv0900, cineS2_probe, cineS2_probe},
  357. .tuner_attach = {tuner_attach_stv6110, tuner_attach_stv6110, tuner_attach_probe, tuner_attach_probe},
  358. .fe_config = {&fe_cineS2, &fe_cineS2, &fe_cineS2_2, &fe_cineS2_2},
  359. .tuner_config = {&tuner_cineS2_0, &tuner_cineS2_1, &tuner_cineS2_0, &tuner_cineS2_1},
  360. .lnb = {0x0a, 0x08, 0x0b, 0x09},
  361. .tsf = {3, 3},
  362. .fw_version = 18,
  363. .msi_supported = true,
  364. };
  365. static struct ngene_info ngene_info_duoFlex = {
  366. .type = NGENE_SIDEWINDER,
  367. .name = "Digital Devices DuoFlex PCIe or miniPCIe",
  368. .io_type = {NGENE_IO_TSIN, NGENE_IO_TSIN, NGENE_IO_TSIN, NGENE_IO_TSIN,
  369. NGENE_IO_TSOUT},
  370. .demod_attach = {cineS2_probe, cineS2_probe, cineS2_probe, cineS2_probe},
  371. .tuner_attach = {tuner_attach_probe, tuner_attach_probe, tuner_attach_probe, tuner_attach_probe},
  372. .fe_config = {&fe_cineS2, &fe_cineS2, &fe_cineS2_2, &fe_cineS2_2},
  373. .tuner_config = {&tuner_cineS2_0, &tuner_cineS2_1, &tuner_cineS2_0, &tuner_cineS2_1},
  374. .lnb = {0x0a, 0x08, 0x0b, 0x09},
  375. .tsf = {3, 3},
  376. .fw_version = 18,
  377. .msi_supported = true,
  378. };
  379. static struct ngene_info ngene_info_m780 = {
  380. .type = NGENE_APP,
  381. .name = "Aver M780 ATSC/QAM-B",
  382. /* Channel 0 is analog, which is currently unsupported */
  383. .io_type = { NGENE_IO_NONE, NGENE_IO_TSIN },
  384. .demod_attach = { NULL, demod_attach_lg330x },
  385. /* Ensure these are NULL else the frame will call them (as funcs) */
  386. .tuner_attach = { 0, 0, 0, 0 },
  387. .fe_config = { NULL, &aver_m780 },
  388. .avf = { 0 },
  389. /* A custom electrical interface config for the demod to bridge */
  390. .tsf = { 4, 4 },
  391. .fw_version = 15,
  392. };
  393. /****************************************************************************/
  394. /****************************************************************************/
  395. /* PCI Subsystem ID *********************************************************/
  396. /****************************************************************************/
  397. #define NGENE_ID(_subvend, _subdev, _driverdata) { \
  398. .vendor = NGENE_VID, .device = NGENE_PID, \
  399. .subvendor = _subvend, .subdevice = _subdev, \
  400. .driver_data = (unsigned long) &_driverdata }
  401. /****************************************************************************/
  402. static const struct pci_device_id ngene_id_tbl[] __devinitdata = {
  403. NGENE_ID(0x18c3, 0xabc3, ngene_info_cineS2),
  404. NGENE_ID(0x18c3, 0xabc4, ngene_info_cineS2),
  405. NGENE_ID(0x18c3, 0xdb01, ngene_info_satixS2),
  406. NGENE_ID(0x18c3, 0xdb02, ngene_info_satixS2v2),
  407. NGENE_ID(0x18c3, 0xdd00, ngene_info_cineS2v5),
  408. NGENE_ID(0x18c3, 0xdd10, ngene_info_duoFlex),
  409. NGENE_ID(0x18c3, 0xdd20, ngene_info_duoFlex),
  410. NGENE_ID(0x1461, 0x062e, ngene_info_m780),
  411. {0}
  412. };
  413. MODULE_DEVICE_TABLE(pci, ngene_id_tbl);
  414. /****************************************************************************/
  415. /* Init/Exit ****************************************************************/
  416. /****************************************************************************/
  417. static pci_ers_result_t ngene_error_detected(struct pci_dev *dev,
  418. enum pci_channel_state state)
  419. {
  420. printk(KERN_ERR DEVICE_NAME ": PCI error\n");
  421. if (state == pci_channel_io_perm_failure)
  422. return PCI_ERS_RESULT_DISCONNECT;
  423. if (state == pci_channel_io_frozen)
  424. return PCI_ERS_RESULT_NEED_RESET;
  425. return PCI_ERS_RESULT_CAN_RECOVER;
  426. }
  427. static pci_ers_result_t ngene_link_reset(struct pci_dev *dev)
  428. {
  429. printk(KERN_INFO DEVICE_NAME ": link reset\n");
  430. return 0;
  431. }
  432. static pci_ers_result_t ngene_slot_reset(struct pci_dev *dev)
  433. {
  434. printk(KERN_INFO DEVICE_NAME ": slot reset\n");
  435. return 0;
  436. }
  437. static void ngene_resume(struct pci_dev *dev)
  438. {
  439. printk(KERN_INFO DEVICE_NAME ": resume\n");
  440. }
  441. static struct pci_error_handlers ngene_errors = {
  442. .error_detected = ngene_error_detected,
  443. .link_reset = ngene_link_reset,
  444. .slot_reset = ngene_slot_reset,
  445. .resume = ngene_resume,
  446. };
  447. static struct pci_driver ngene_pci_driver = {
  448. .name = "ngene",
  449. .id_table = ngene_id_tbl,
  450. .probe = ngene_probe,
  451. .remove = __devexit_p(ngene_remove),
  452. .err_handler = &ngene_errors,
  453. .shutdown = ngene_shutdown,
  454. };
  455. static __init int module_init_ngene(void)
  456. {
  457. printk(KERN_INFO
  458. "nGene PCIE bridge driver, Copyright (C) 2005-2007 Micronas\n");
  459. return pci_register_driver(&ngene_pci_driver);
  460. }
  461. static __exit void module_exit_ngene(void)
  462. {
  463. pci_unregister_driver(&ngene_pci_driver);
  464. }
  465. module_init(module_init_ngene);
  466. module_exit(module_exit_ngene);
  467. MODULE_DESCRIPTION("nGene");
  468. MODULE_AUTHOR("Micronas, Ralph Metzler, Manfred Voelkel");
  469. MODULE_LICENSE("GPL");