Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 102961 | Differences between
and this patch

Collapse All | Expand All

(-)./video4linux/saa7134-cards.c (-1 / +46 lines)
Lines 2111-2116 Link Here
2111
			.gpio = 0x01,
2111
			.gpio = 0x01,
2112
		},
2112
		},
2113
	},
2113
	},
2114
       [SAA7135_BOARD_GOTVIEW_7135] = {
2115
               /* Andrey Cvetcov <ays14@yandex.ru> */
2116
               /* Michail Baikov <mike@baikov.com> */
2117
               .name = "GoTView 7135 PCI",
2118
               .audio_clock = 0x00187de7,
2119
               .tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
2120
               /* We need to comment this */
2121
//             .tda9887_conf = TDA9887_PRESENT,
2122
               .gpiomask= 0x00200003,
2123
               .inputs = {{
2124
                       .name = name_tv,
2125
                       .vmux = 1,              /* It's true */
2126
                       .amux = TV,             /* Use TV instead LINE0 - BigBiker <adminbsd@gmail.com> */
2127
                       .gpio = 0x00200003,
2128
                       .tv = 1,
2129
               },{
2130
                       .name = name_comp1,     /* Composite signal on S-Video input */
2131
                       .vmux = 3,
2132
                       .amux = LINE1,
2133
                       .gpio = 0x00200003,
2134
               },{
2135
                       .name = name_comp2,     /* Composite Input */
2136
                       .vmux = 8,
2137
                       .amux = LINE1,
2138
                       .gpio = 0x00200003,
2139
               },{
2140
                       .name = name_tv_mono,   /* TV - mono only */
2141
                       .vmux = 1,
2142
                       .amux = LINE2,
2143
                       .gpio = 0x00200003,
2144
               }},
2145
               .radio = {
2146
                       .name = name_radio,
2147
//                     .vmux = TV,
2148
                       .vmux = 1,
2149
                       .amux = LINE2,
2150
                       .gpio = 0x00200003,
2151
               },
2152
       },
2114
};
2153
};
2115
2154
2116
2155
Lines 2468-2474 Link Here
2468
		.subvendor    = 0x1043,
2507
		.subvendor    = 0x1043,
2469
		.subdevice    = 0x0210,		/* mini pci PAL/SECAM version */
2508
		.subdevice    = 0x0210,		/* mini pci PAL/SECAM version */
2470
		.driver_data  = SAA7134_BOARD_FLYTV_DIGIMATRIX,
2509
		.driver_data  = SAA7134_BOARD_FLYTV_DIGIMATRIX,
2471
2510
        },{
2511
                .vendor       = 0x1131,
2512
                .device       = 0x7133,
2513
                .subvendor    = 0x5456, /* GoTView */
2514
                .subdevice    = 0x7135, /* Model PCI 7135 */
2515
                .driver_data  = SAA7135_BOARD_GOTVIEW_7135
2472
	},{
2516
	},{
2473
		/* --- boards without eeprom + subsystem ID --- */
2517
		/* --- boards without eeprom + subsystem ID --- */
2474
		.vendor       = PCI_VENDOR_ID_PHILIPS,
2518
		.vendor       = PCI_VENDOR_ID_PHILIPS,
Lines 2598-2603 Link Here
2598
	case SAA7134_BOARD_MANLI_MTV001:
2642
	case SAA7134_BOARD_MANLI_MTV001:
2599
	case SAA7134_BOARD_MANLI_MTV002:
2643
	case SAA7134_BOARD_MANLI_MTV002:
2600
	case SAA7134_BOARD_AVACSSMARTTV:
2644
	case SAA7134_BOARD_AVACSSMARTTV:
2645
        case SAA7135_BOARD_GOTVIEW_7135:
2601
		dev->has_remote = 1;
2646
		dev->has_remote = 1;
2602
		break;
2647
		break;
2603
	case SAA7134_BOARD_MD5044:
2648
	case SAA7134_BOARD_MD5044:
(-)./video4linux/saa7134.h (+1 lines)
Lines 198-203 Link Here
198
#define SAA7134_BOARD_FLYTV_DIGIMATRIX 64
198
#define SAA7134_BOARD_FLYTV_DIGIMATRIX 64
199
#define SAA7134_BOARD_KWORLD_TERMINATOR 65
199
#define SAA7134_BOARD_KWORLD_TERMINATOR 65
200
#define SAA7134_BOARD_YUAN_TUN900 66
200
#define SAA7134_BOARD_YUAN_TUN900 66
201
#define SAA7135_BOARD_GOTVIEW_7135 67
201
202
202
#define SAA7134_MAXBOARDS 8
203
#define SAA7134_MAXBOARDS 8
203
#define SAA7134_INPUT_MAX 8
204
#define SAA7134_INPUT_MAX 8
(-)./video4linux/saa7134-input.c (+6 lines)
Lines 532-537 Link Here
532
		mask_keyup   = 0x400000;
532
		mask_keyup   = 0x400000;
533
		polling      = 50; // ms
533
		polling      = 50; // ms
534
		break;
534
		break;
535
        case SAA7135_BOARD_GOTVIEW_7135:
536
                ir_codes     = md2819_codes;
537
                mask_keycode = 0x0007C8;
538
                mask_keydown = 0x000010;
539
                polling      = 50; // ms
540
                break;
535
	}
541
	}
536
	if (NULL == ir_codes) {
542
	if (NULL == ir_codes) {
537
		printk("%s: Oops: IR config error [card=%d]\n",
543
		printk("%s: Oops: IR config error [card=%d]\n",

Return to bug 102961