Home
last modified time | relevance | path

Searched full:tv (Results 1 – 25 of 1525) sorted by relevance

12345678910>>...61

/OK3568_Linux_fs/kernel/drivers/gpu/drm/sun4i/
H A Dsun4i_tv.c344 struct sun4i_tv *tv = drm_encoder_to_sun4i_tv(encoder); in sun4i_tv_disable() local
347 DRM_DEBUG_DRIVER("Disabling the TV Output\n"); in sun4i_tv_disable()
349 regmap_update_bits(tv->regs, SUN4I_TVE_EN_REG, in sun4i_tv_disable()
358 struct sun4i_tv *tv = drm_encoder_to_sun4i_tv(encoder); in sun4i_tv_enable() local
361 DRM_DEBUG_DRIVER("Enabling the TV Output\n"); in sun4i_tv_enable()
365 regmap_update_bits(tv->regs, SUN4I_TVE_EN_REG, in sun4i_tv_enable()
374 struct sun4i_tv *tv = drm_encoder_to_sun4i_tv(encoder); in sun4i_tv_mode_set() local
378 regmap_update_bits(tv->regs, SUN4I_TVE_EN_REG, in sun4i_tv_mode_set()
386 regmap_write(tv->regs, SUN4I_TVE_CFG0_REG, in sun4i_tv_mode_set()
395 regmap_write(tv->regs, SUN4I_TVE_DAC0_REG, in sun4i_tv_mode_set()
[all …]
/OK3568_Linux_fs/kernel/Documentation/admin-guide/media/
H A Dsaa7134-cardlist.rst38 - SKNet Monster TV
46 - KNC One TV-Station RDS / Typhoon TV Tuner RDS
50 - Terratec Cinergy 400 TV
62 - Terratec Cinergy 600 TV
70 - Typhoon TV+Radio 90031
74 - ELSA EX-VISION 300TV
78 - ELSA EX-VISION 500TV
82 - ASUS TV-FM 7134
94 - Compro VideoMate TV
102 - 10MOONS PCI TV CAPTURE CARD
[all …]
H A Dbttv.rst23 If your board has digital TV, you'll also need::
100 If you have trouble with some specific TV card, try to ask there
105 for TV sound all over the world. And there are also different chips
108 about your hardware and the TV sound scheme used in your country (or
146 fieldnr=0/1 Count fields. Some TV descrambling software
171 no TV signal, on by default. You might try
195 with a camera or the board doesn't provide analog TV tuning.
235 once=1 Don't check the TV-stations Audio mode
410 has_radio - whenever this TV card has a radio tuner.
454 Very nice card if you only have satellite TV but several tuners connected
[all …]
H A Dbttv-cardlist.rst50 - Lifeview FlyVideo II (Bt848) LR26 / MAXI TV Video PCI2 LR26
66 - ADS Technologies Channel Surfer TV (bt848)
78 - Zoltrix TV-Max
106 - Askey CPH050/ Phoebe Tv Master + FM
118 - Terratec TerraTV+ Version 1.0 (Bt848)/ Terra TValue Version 1.0/ Vobis TV-Boostar
126 - Lifeview FlyVideo 98/ MAXI TV Video PCI2 LR50
162 - Lifeview FlyVideo 98FM LR50 / Typhoon TView TV/FM Tuner
178 - STB TV PCI FM, Gateway P/N 6000704 (bt878), 3Dfx VoodooTV 100
190 - Little OnAir TV
202 - Zoltrix Genie TV/FM
[all …]
H A Dfaq.rst8 1. With Digital TV, a single physical channel may have different
10 This is what a TV user would call "channel". So, in order to
21 Some very frequently asked questions about Linux Digital TV support
32 2. How can I watch TV?
34 Together with the Linux Kernel, the Digital TV developers support
65 maintain tables of Digital TV channel transponders, receiving
90 Almost all modern Digital TV cards don't have built-in hardware
95 3. Which Digital TV applications exist?
98 digital TV channels, including Kaffeine, Vlc, mplayer and MythTV.
110 KDE media player, focused on Digital TV support
[all …]
H A Ddvb_intro.rst4 Using the Digital TV Framework
10 One significant difference between Digital TV and Analogue TV that the
12 structure of DVB-T cards are substantially similar to Analogue TV cards,
15 The purpose of an Analogue TV is to receive and display an Analogue
16 Television signal. An Analogue TV signal (otherwise known as composite
20 Analogue TV card for a PC has the following purpose:
36 The digital datastream from an Analogue TV card is generated by
37 circuitry on the card and is often presented uncompressed. For a PAL TV
41 screen. Some Analogue TV cards for PCs have onboard MPEG2 encoders which
44 Digital TV.
[all …]
/OK3568_Linux_fs/kernel/include/video/
H A Ds1d13xxxfb.h35 #define S1DREG_CRT_CLK_CNF 0x0018 /* CRT/TV Pixel Clock Configuration Register */
63 #define S1DREG_CRT_DISP_HWIDTH 0x0050 /* CRT/TV Horizontal Display Width Register: ((val)+1)*8)=pi…
64 #define S1DREG_CRT_NDISP_HPER 0x0052 /* CRT/TV Horizontal Non-Display Period Register */
65 #define S1DREG_CRT_HRTC_START 0x0053 /* CRT/TV HRTC Start Position Register */
66 #define S1DREG_CRT_HRTC_PWIDTH 0x0054 /* CRT/TV HRTC Pulse Width Register */
67 #define S1DREG_CRT_DISP_VHEIGHT0 0x0056 /* CRT/TV Vertical Display Height Register 0 */
68 #define S1DREG_CRT_DISP_VHEIGHT1 0x0057 /* CRT/TV Vertical Display Height Register 1 */
69 #define S1DREG_CRT_NDISP_VPER 0x0058 /* CRT/TV Vertical Non-Display Period Register */
70 #define S1DREG_CRT_VRTC_START 0x0059 /* CRT/TV VRTC Start Position Register */
71 #define S1DREG_CRT_VRTC_PWIDTH 0x005A /* CRT/TV VRTC Pulse Width Register */
[all …]
/OK3568_Linux_fs/kernel/fs/
H A Dutimes.c215 struct timespec64 tv[2]; in SYSCALL_DEFINE2() local
218 if (get_user(tv[0].tv_sec, &times->actime) || in SYSCALL_DEFINE2()
219 get_user(tv[1].tv_sec, &times->modtime)) in SYSCALL_DEFINE2()
221 tv[0].tv_nsec = 0; in SYSCALL_DEFINE2()
222 tv[1].tv_nsec = 0; in SYSCALL_DEFINE2()
224 return do_utimes(AT_FDCWD, filename, times ? tv : NULL, 0); in SYSCALL_DEFINE2()
237 struct timespec64 tv[2]; in SYSCALL_DEFINE2() local
240 if (get_user(tv[0].tv_sec, &t->actime) || in SYSCALL_DEFINE2()
241 get_user(tv[1].tv_sec, &t->modtime)) in SYSCALL_DEFINE2()
243 tv[0].tv_nsec = 0; in SYSCALL_DEFINE2()
[all …]
/OK3568_Linux_fs/kernel/Documentation/userspace-api/media/dvb/
H A Dintro.rst16 area of digital video broadcasting (Digital TV) and should be familiar with
21 Various Digital TV standards documents are available for download at:
36 The first API for Digital TV cards we used at Convergence in late 1999 was an
39 TV cards and their new features like recording MPEG streams and filtering
43 standard Linux Digital TV API. As a commitment to the development of terminals
47 Convergence provided a first implementation of the Linux Digital TV API.
48 Convergence was the maintainer of the Linux Digital TV API in the early
52 of this document). The Linux Digital TV API is constantly reviewed and
69 Components of a Digital TV card/STB
71 A Digital TV card or set-top-box (STB) usually consists of the
[all …]
H A Ddvbapi.rst7 Part II - Digital TV API
14 It it was originally written to support the European digital TV
15 standard (DVB), and later extended to support all digital TV standards.
18 it, and to associated hardware as **Digital TV**.
22 - the Digital TV API version
24 - digital TV data types (enums, structs, defines, etc);
25 - digital TV device nodes (``/dev/dvb/...``);
58 - Original author of the Digital TV API documentation.
62 - Original author of the Digital TV API documentation.
85 Digital TV API.
/OK3568_Linux_fs/kernel/arch/arm/mach-sa1100/
H A Djornada720.c64 {0x0018,0x01}, // CRT/TV Pixel Clock Configuration Register
92 {0x0050,0x4F}, // CRT/TV Horizontal Display Width Register
93 {0x0052,0x13}, // CRT/TV Horizontal Non-Display Period Register
94 {0x0053,0x01}, // CRT/TV HRTC Start Position Register
95 {0x0054,0x0B}, // CRT/TV HRTC Pulse Width Register
96 {0x0056,0xDF}, // CRT/TV Vertical Display Height Register 0
97 {0x0057,0x01}, // CRT/TV Vertical Display Height Register 1
98 {0x0058,0x2B}, // CRT/TV Vertical Non-Display Period Register
99 {0x0059,0x09}, // CRT/TV VRTC Start Position Register
100 {0x005A,0x01}, // CRT/TV VRTC Pulse Width Register
[all …]
/OK3568_Linux_fs/kernel/Documentation/driver-api/media/drivers/
H A Dzoran.rst25 * Philips saa7111 TV decoder
26 * Philips saa7185 TV encoder
42 * Samsung ks0127 TV decoder
43 * Conexant bt866 TV encoder
67 * Brooktree bt819 TV decoder
68 * Brooktree bt856 TV encoder
84 * Philips saa7114 TV decoder
85 * Analog Devices adv7170 TV encoder
101 * Philips saa7110a TV decoder
102 * Analog Devices adv7176 TV encoder
[all …]
/OK3568_Linux_fs/kernel/drivers/usb/misc/
H A Dtrancevibrator.c37 struct trancevibrator *tv = usb_get_intfdata(intf); in speed_show() local
39 return sprintf(buf, "%d\n", tv->speed); in speed_show()
46 struct trancevibrator *tv = usb_get_intfdata(intf); in speed_store() local
56 old = tv->speed; in speed_store()
57 tv->speed = temp; in speed_store()
59 dev_dbg(&tv->udev->dev, "speed = %d\n", tv->speed); in speed_store()
62 retval = usb_control_msg(tv->udev, usb_sndctrlpipe(tv->udev, 0), in speed_store()
65 tv->speed, /* speed value */ in speed_store()
68 tv->speed = old; in speed_store()
69 dev_dbg(&tv->udev->dev, "retval = %d\n", retval); in speed_store()
[all …]
/OK3568_Linux_fs/kernel/drivers/media/pci/saa7134/
H A Dsaa7134-cards.c4 * device driver for philips saa7134 based TV cards
31 [SAA7134_INPUT_TV_MONO] = "TV (mono only)",
86 .amux = TV,
110 .amux = TV,
140 .amux = TV,
198 .amux = TV,
227 .amux = TV,
228 .gpio = 0x10000, /* GP16=1 selects TV input */
252 .amux = TV,
257 .amux = TV,
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/radeon/
H A Dradeon_legacy_tv.c9 * Integrated TV out support based on the GATOS code by
21 * Unit for hPos (in TV clock periods)
36 /* tv standard constants */
49 /* tv pll setting for 27 mhz ref clk */
58 /* tv pll setting for 14 mhz ref clk */
169 * Table of all allowed modes for tv output
396 WREG32(RADEON_TV_UV_ADR, tv_dac->tv.tv_uv_adr); in radeon_restore_tv_timing_tables()
397 h_table = radeon_get_htiming_tables_addr(tv_dac->tv.tv_uv_adr); in radeon_restore_tv_timing_tables()
398 v_table = radeon_get_vtiming_tables_addr(tv_dac->tv.tv_uv_adr); in radeon_restore_tv_timing_tables()
401 tmp = ((uint32_t)tv_dac->tv.h_code_timing[i] << 14) | ((uint32_t)tv_dac->tv.h_code_timing[i+1]); in radeon_restore_tv_timing_tables()
[all …]
/OK3568_Linux_fs/kernel/kernel/time/
H A Dtime.c83 struct timespec64 tv; in SYSCALL_DEFINE1() local
86 if (get_user(tv.tv_sec, tptr)) in SYSCALL_DEFINE1()
89 tv.tv_nsec = 0; in SYSCALL_DEFINE1()
91 err = security_settime64(&tv, NULL); in SYSCALL_DEFINE1()
95 do_settimeofday64(&tv); in SYSCALL_DEFINE1()
121 struct timespec64 tv; in SYSCALL_DEFINE1() local
124 if (get_user(tv.tv_sec, tptr)) in SYSCALL_DEFINE1()
127 tv.tv_nsec = 0; in SYSCALL_DEFINE1()
129 err = security_settime64(&tv, NULL); in SYSCALL_DEFINE1()
133 do_settimeofday64(&tv); in SYSCALL_DEFINE1()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/
H A Dtimevar.h111 void start (timevar_id_t tv);
112 void stop (timevar_id_t tv);
113 void push (timevar_id_t tv);
114 void pop (timevar_id_t tv);
115 bool cond_start (timevar_id_t tv);
116 void cond_stop (timevar_id_t tv);
130 void push_internal (struct timevar_def *tv);
210 timevar_push (timevar_id_t tv) in timevar_push() argument
213 g_timer->push (tv); in timevar_push()
217 timevar_pop (timevar_id_t tv) in timevar_pop() argument
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/
H A Dtimevar.h111 void start (timevar_id_t tv);
112 void stop (timevar_id_t tv);
113 void push (timevar_id_t tv);
114 void pop (timevar_id_t tv);
115 bool cond_start (timevar_id_t tv);
116 void cond_stop (timevar_id_t tv);
130 void push_internal (struct timevar_def *tv);
210 timevar_push (timevar_id_t tv) in timevar_push() argument
213 g_timer->push (tv); in timevar_push()
217 timevar_pop (timevar_id_t tv) in timevar_pop() argument
[all …]
/OK3568_Linux_fs/buildroot/package/evemu/
H A D0002-evemu-Update-struct-input_event.patch36 + struct timeval tv;
39 + tv.tv_sec = ev.input_event_sec;
40 + tv.tv_usec = ev.input_event_usec;
44 + offset = time_to_long(&tv) - 1;
48 + time = time_to_long(&tv);
49 + tv = long_to_time(time - offset);
50 + ev.input_event_sec = tv.tv_sec;
51 + ev.input_event_usec = tv.tv_usec;
81 + struct timeval tv;
96 + tv.tv_sec = ev->input_event_sec;
[all …]
/OK3568_Linux_fs/kernel/drivers/media/
H A DKconfig17 devices and/or TV devices, V4L2 codecs, etc, enable this option
77 bool "Analog TV"
80 Enable analog TV support.
82 Say Y when you have a TV board with analog support or with a
83 hybrid analog/digital TV chipset.
86 support both analog and digital TV. Disabling this option
90 tristate "Digital TV"
93 Enable digital TV support.
96 hybrid digital TV and analog TV.
109 Note: There are several TV cards that are based on chips that
[all …]
/OK3568_Linux_fs/app/lvgl_demo/sys/
H A Dtimestamp.c9 struct timeval tv; in clock_ms() local
10 gettimeofday(&tv,NULL); in clock_ms()
11 return (tv.tv_sec * 1000 + tv.tv_usec / 1000); in clock_ms()
16 struct timeval tv; in clock_us() local
17 gettimeofday(&tv,NULL); in clock_us()
18 return (tv.tv_sec * 1000000 + tv.tv_usec); in clock_us()
/OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/display/
H A Dintel_tv.c30 * Integrated TV-out support for the 915GM and 945GM.
374 * Register programming values for TV modes.
948 int format = conn_state->tv.mode; in intel_tv_mode_find()
966 /* Ensure TV refresh is close to desired refresh */ in intel_tv_mode_valid()
1038 /* TV has it's own notion of sync and other mode flags, so clear them. */ in intel_tv_mode_to_mode()
1147 drm_dbg_kms(&dev_priv->drm, "TV mode:\n"); in intel_tv_get_config()
1159 /* pixel counter doesn't work on i965gm TV output */ in intel_tv_get_config()
1176 conn_state->tv.margins.top - in intel_tv_vert_scaling()
1177 conn_state->tv.margins.bottom != in intel_tv_vert_scaling()
1203 drm_dbg_kms(&dev_priv->drm, "forcing bpc to 8 for TV\n"); in intel_tv_compute_config()
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-multimedia/recipes-multimedia/dvb-apps/files/dvb-scan-table/dvb-s/
H A DAsiaSat3S_C-105.5E8 # China Entertainment TV & Maharishi Veda Vision
68 # Fashion TV
108 # Star TV Multiplex
138 # Star TV Multiplex
148 # Star TV Multiplex
168 # Star TV Multiplex
188 # Star TV Multiplex
198 # Star TV Multiplex
248 # Sun TV
298 # Eye TV Multiplex
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-multimedia/recipes-multimedia/dvb-apps/files/dvb-scan-table/dvb-t/
H A Des-Collserola2 [BTV, TV Badalona, TV L'Hospitalet, TV del Besòs, COM Ràdio, Ràdio Ciutat Badalona, Ràdio L'Hospita…
14 [8TV, Barça TV, EDC3, 105TV, RAC 1, RAC 105]
38 [Urbe TV, Canal Català, 25 TV, Localia, Ona FM, Onda Rambla, Sensació Ràdio]
74 [Veo7, Sony TV en Veo, Tienda en Veo, Intereconomía, Teledeporte, Radio Intereconomía, Radio Marca]
/OK3568_Linux_fs/kernel/include/media/
H A Ddvb_vb2.h26 * enum dvb_buf_type - types of Digital TV memory-mapped buffers
29 * with a received Digital TV stream
175 * dvb_vb2_poll - Wrapper to vb2_core_streamon() for Digital TV
191 * dvb_vb2_stream_on() - Wrapper to vb2_core_streamon() for Digital TV
200 * dvb_vb2_stream_off() - Wrapper to vb2_core_streamoff() for Digital TV
210 * dvb_vb2_reqbufs() - Wrapper to vb2_core_reqbufs() for Digital TV
223 * dvb_vb2_querybuf() - Wrapper to vb2_core_querybuf() for Digital TV
235 * dvb_vb2_expbuf() - Wrapper to vb2_core_expbuf() for Digital TV
247 * dvb_vb2_qbuf() - Wrapper to vb2_core_qbuf() for Digital TV buffer handling.
253 * Queue a Digital TV buffer as requested by userspace
[all …]

12345678910>>...61