blob: b8eff235367de7d6203c84254e37d0c113d6e69a [file] [log] [blame]
Johannes Stezenbach2add87a2005-05-16 21:54:10 -07001/*
Uwe Bugla1589a992009-03-29 07:46:58 -03002 * Linux driver for digital TV devices equipped with B2C2 FlexcopII(b)/III
3 * flexcop-misc.c - miscellaneous functions
4 * see flexcop.c for copyright information
Johannes Stezenbach2add87a2005-05-16 21:54:10 -07005 */
6#include "flexcop.h"
7
8void flexcop_determine_revision(struct flexcop_device *fc)
9{
10 flexcop_ibi_value v = fc->read_ibi_reg(fc,misc_204);
11
12 switch (v.misc_204.Rev_N_sig_revision_hi) {
Uwe Bugla1589a992009-03-29 07:46:58 -030013 case 0x2:
14 deb_info("found a FlexCopII.\n");
15 fc->rev = FLEXCOP_II;
16 break;
17 case 0x3:
18 deb_info("found a FlexCopIIb.\n");
19 fc->rev = FLEXCOP_IIB;
20 break;
21 case 0x0:
22 deb_info("found a FlexCopIII.\n");
23 fc->rev = FLEXCOP_III;
24 break;
25 default:
26 err("unknown FlexCop Revision: %x. Please report this to "
27 "linux-dvb@linuxtv.org.",
28 v.misc_204.Rev_N_sig_revision_hi);
29 break;
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070030 }
31
32 if ((fc->has_32_hw_pid_filter = v.misc_204.Rev_N_sig_caps))
Uwe Bugla1589a992009-03-29 07:46:58 -030033 deb_info("this FlexCop has "
34 "the additional 32 hardware pid filter.\n");
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070035 else
Uwe Bugla1589a992009-03-29 07:46:58 -030036 deb_info("this FlexCop has "
37 "the 6 basic main hardware pid filter.\n");
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070038 /* bus parts have to decide if hw pid filtering is used or not. */
39}
40
Adrian Bunka22a68652006-01-23 09:58:17 -020041static const char *flexcop_revision_names[] = {
Uwe Bugla1589a992009-03-29 07:46:58 -030042 "Unknown chip",
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070043 "FlexCopII",
44 "FlexCopIIb",
45 "FlexCopIII",
46};
47
Adrian Bunka22a68652006-01-23 09:58:17 -020048static const char *flexcop_device_names[] = {
Matthias Schwarzott1c905a42009-05-22 07:19:14 -030049 [FC_UNK] = "Unknown device",
50 [FC_CABLE] = "Cable2PC/CableStar 2 DVB-C",
51 [FC_AIR_DVBT] = "Air2PC/AirStar 2 DVB-T",
52 [FC_AIR_ATSC1] = "Air2PC/AirStar 2 ATSC 1st generation",
53 [FC_AIR_ATSC2] = "Air2PC/AirStar 2 ATSC 2nd generation",
54 [FC_AIR_ATSC3] = "Air2PC/AirStar 2 ATSC 3rd generation (HD5000)",
55 [FC_SKY_REV23] = "Sky2PC/SkyStar 2 DVB-S rev 2.3 (old version)",
56 [FC_SKY_REV26] = "Sky2PC/SkyStar 2 DVB-S rev 2.6",
57 [FC_SKY_REV27] = "Sky2PC/SkyStar 2 DVB-S rev 2.7a/u",
58 [FC_SKY_REV28] = "Sky2PC/SkyStar 2 DVB-S rev 2.8",
Jemma Denson5afc9a22015-04-14 09:04:50 -030059 [FC_SKYS2_REV33] = "Sky2PC/SkyStar S2 DVB-S/S2 rev 3.3",
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070060};
61
Adrian Bunka22a68652006-01-23 09:58:17 -020062static const char *flexcop_bus_names[] = {
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070063 "USB",
64 "PCI",
65};
66
Uwe Bugla1589a992009-03-29 07:46:58 -030067void flexcop_device_name(struct flexcop_device *fc,
68 const char *prefix, const char *suffix)
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070069{
Uwe Bugla1589a992009-03-29 07:46:58 -030070 info("%s '%s' at the '%s' bus controlled by a '%s' %s",
71 prefix, flexcop_device_names[fc->dev_type],
72 flexcop_bus_names[fc->bus_type],
73 flexcop_revision_names[fc->rev], suffix);
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070074}
Patrick Boettcher64221be2005-07-07 17:57:49 -070075
Uwe Bugla1589a992009-03-29 07:46:58 -030076void flexcop_dump_reg(struct flexcop_device *fc,
77 flexcop_ibi_register reg, int num)
Patrick Boettcher64221be2005-07-07 17:57:49 -070078{
79 flexcop_ibi_value v;
80 int i;
81 for (i = 0; i < num; i++) {
Uwe Bugla1589a992009-03-29 07:46:58 -030082 v = fc->read_ibi_reg(fc, reg+4*i);
83 deb_rdump("0x%03x: %08x, ", reg+4*i, v.raw);
Patrick Boettcher64221be2005-07-07 17:57:49 -070084 }
85 deb_rdump("\n");
86}
87EXPORT_SYMBOL(flexcop_dump_reg);