brintos

brintos / linux-shallow public Read only

0
0
Text · 1.8 KiB · bb85a6e Raw
131 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2/* eds1547.h Earda EDS-1547 tuner support3*4* Copyright (C) 2008 Igor M. Liplianin (liplianin@me.by)5*6* see Documentation/driver-api/media/drivers/dvb-usb.rst for more information7*/8 9#ifndef EDS154710#define EDS154711 12static u8 stv0288_earda_inittab[] = {13	0x01, 0x57,14	0x02, 0x20,15	0x03, 0x8e,16	0x04, 0x8e,17	0x05, 0x12,18	0x06, 0x00,19	0x07, 0x00,20	0x09, 0x00,21	0x0a, 0x04,22	0x0b, 0x00,23	0x0c, 0x00,24	0x0d, 0x00,25	0x0e, 0xd4,26	0x0f, 0x30,27	0x11, 0x44,28	0x12, 0x03,29	0x13, 0x48,30	0x14, 0x84,31	0x15, 0x45,32	0x16, 0xb7,33	0x17, 0x9c,34	0x18, 0x00,35	0x19, 0xa6,36	0x1a, 0x88,37	0x1b, 0x8f,38	0x1c, 0xf0,39	0x20, 0x0b,40	0x21, 0x54,41	0x22, 0x00,42	0x23, 0x00,43	0x2b, 0xff,44	0x2c, 0xf7,45	0x30, 0x00,46	0x31, 0x1e,47	0x32, 0x14,48	0x33, 0x0f,49	0x34, 0x09,50	0x35, 0x0c,51	0x36, 0x05,52	0x37, 0x2f,53	0x38, 0x16,54	0x39, 0xbd,55	0x3a, 0x00,56	0x3b, 0x13,57	0x3c, 0x11,58	0x3d, 0x30,59	0x40, 0x63,60	0x41, 0x04,61	0x42, 0x20,62	0x43, 0x00,63	0x44, 0x00,64	0x45, 0x00,65	0x46, 0x00,66	0x47, 0x00,67	0x4a, 0x00,68	0x50, 0x10,69	0x51, 0x36,70	0x52, 0x09,71	0x53, 0x94,72	0x54, 0x62,73	0x55, 0x29,74	0x56, 0x64,75	0x57, 0x2b,76	0x58, 0x54,77	0x59, 0x86,78	0x5a, 0x00,79	0x5b, 0x9b,80	0x5c, 0x08,81	0x5d, 0x7f,82	0x5e, 0x00,83	0x5f, 0xff,84	0x70, 0x00,85	0x71, 0x00,86	0x72, 0x00,87	0x74, 0x00,88	0x75, 0x00,89	0x76, 0x00,90	0x81, 0x00,91	0x82, 0x3f,92	0x83, 0x3f,93	0x84, 0x00,94	0x85, 0x00,95	0x88, 0x00,96	0x89, 0x00,97	0x8a, 0x00,98	0x8b, 0x00,99	0x8c, 0x00,100	0x90, 0x00,101	0x91, 0x00,102	0x92, 0x00,103	0x93, 0x00,104	0x94, 0x1c,105	0x97, 0x00,106	0xa0, 0x48,107	0xa1, 0x00,108	0xb0, 0xb8,109	0xb1, 0x3a,110	0xb2, 0x10,111	0xb3, 0x82,112	0xb4, 0x80,113	0xb5, 0x82,114	0xb6, 0x82,115	0xb7, 0x82,116	0xb8, 0x20,117	0xb9, 0x00,118	0xf0, 0x00,119	0xf1, 0x00,120	0xf2, 0xc0,121	0xff,0xff,122};123 124static struct stv0288_config earda_config = {125	.demod_address = 0x68,126	.min_delay_ms = 100,127	.inittab = stv0288_earda_inittab,128};129 130#endif131