Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-08-18 | - remove dvb i2c code (all drivers are ported to kernel i2c) | Michael Hunold | |
- remove dvb i2c frontend (un)register code (all drivers use non-i2c frontend calls now) - add i2c driver ids for all frontends to dvb_frontend.h (should be submitted to i2c-id.h) - fix usage of i2c driver ids in dst, ves1x93, nxt6000 drivers - remove dvb i2c functionality from av7110 and budget drivers - remove dvb i2c functionality from Skystar2 driver - fix up kernel Makefile - add a FE_ATSC case to avoid compiler warning (print warning message instead) | |||
2004-07-31 | merge back various cleanups from mainline kernel: | Johannes Stezenbach | |
- sparse annotiations (viro) - NULL noise removal (viro) - #if where #ifdef should've been (saa7146) (viro) - convert private ABS() to kernel's abs() (rddunlap) - dvb_register_i2c_device() locking fix for -ENOMEM (akpm) - dvb_register_i2c_bus() locking fix for -ENOMEM (akpm) | |||
2004-07-30 | - More MODULE_PARM -> module_param changes, all should be corrected now. | Kenneth Aafloy | |
- Remove unused av7110 DEBUG_VARIABLE. | |||
2004-07-29 | - MODULE_PARM -> module_param* for dvb-ttpci and budget-core, | Kenneth Aafloy | |
debug parameters is writeable in sysfs (w/2.6.7+) and the rest is read-only. | |||
2004-07-29 | - timeout variable in arm_thread() must be int, not unsigned long | Michael Hunold | |
- replace home-brewn waiting stuff in osd code with wait_event_interruptible_timeout() - put a semaphore around osd calls to make sure they're properly serialized | |||
2004-07-18 | New ioctl OSD_GET_CAPABILITY/OSD_CAP_MEMSIZE - returns size of OSD memory. | Oliver Endriss | |
2004-07-12 | - Properly lock the frontend module on open/close. | Kenneth Aafloy | |
- Remove module ref count changes to av7110 and budget-core, as they did not do the right thing. | |||
2004-07-10 | Up the driver module usage on i2c client_register, not the frontend module. | Kenneth Aafloy | |
2004-07-09 | Make budget-core and dvb-ttpci lock the module that attaches to them. | Kenneth Aafloy | |
2004-06-24 | - put audio/video initialization into separate function init_av7110_av() | Michael Hunold | |
- call this function after system initialization and after arm crash to restore the previous state Thanks to Soeren Sonnenburg <bugreports@nn7.de> for this patch. | |||
2004-06-21 | - don't forget to call release_firmware(), thanks to Kenneth Aafløy ↵ | Michael Hunold | |
<lists@kenneth.aafloy.net> | |||
2004-06-21 | - Replace generic saa7146 i2c name by card specific name, suggested by Uli ↵ | Michael Hunold | |
Luckas <luckas@musoft.de> | |||
2004-06-21 | patch by Kenneth Aafløy: better error message if firmware cannot be loaded | Johannes Stezenbach | |
2004-06-13 | fix Oops when the bloody i2c eeprom driver probes the DVB I2C bus | Johannes Stezenbach | |
2004-06-07 | - call av7710_set_video_mode() when the arm has been rebooted after a crash. ↵ | Michael Hunold | |
this shouldn't do any harm and fixes output problems after arm crashes reported by Sören Sonnenburg. | |||
2004-05-26 | C.Y.M. reported that tt_2_1 cards can also be rev2.2 | Johannes Stezenbach | |
2004-05-18 | - I2C_ADAP_CLASS_TV_DIGITAL is undefined for recent 2.6 kernel, so | Michael Hunold | |
use I2C_CLASS_TV_DIGITAL instead | |||
2004-05-03 | - remove 2.4 compat code, expect for ttusb_dec.c | Michael Hunold | |
(Alex, do you take care of that one?) | |||
2004-05-03 | Overhaul frontend i2c subsystem because of the recent discussion about | Michael Hunold | |
the usage of the syscall interface to load binary firmware used by some frontend drivers. - add dvb_register_frontend_new() and dvb_unregister_frontend_new() which register a frontend driver using the kernel i2c interface instead of the dvb i2c interface. - register kernel i2c interface in av7110/budget driver properly - port stv0299 and ves1x93 to kernel i2c api Other DVB drivers and frontend drivers still can use the old DVB i2c interface. | |||
2004-04-06 | - follow API changes in saa7146 driver | Michael Hunold | |
2004-03-31 | - first try to fix the module use count bugs, thanks to Hernan A.Perez Masci ↵ | Michael Hunold | |
for his work! - dvb_net most likely doesn't work with 2.6 yet and dvb_net is untested in general | |||
2004-03-24 | must build av7110_ir if evdev is compiled as a module! | Oliver Endriss | |
2004-03-22 | resync changes from dvb-kernel-v4 (slightly faster fw loading) | Johannes Stezenbach | |
2004-03-20 | change default for hw_sections to 0 to enable crc checks | Johannes Stezenbach | |
2004-03-13 | build ttpci driver without infrared support if CONFIG_INPUT_EVDEV is not set ↵ | Andreas Oberritter | |
to get rid of unresolved symbols | |||
2004-03-01 | fix error handling in av7110_attach() to prevent Oops; | Johannes Stezenbach | |
based on patch by Manfred Petz | |||
2004-02-10 | bail out early if booting the ARM failed | Johannes Stezenbach | |
2004-01-31 | - add wait_event_interruptible_timeout() macro to dvb-compat.h | Michael Hunold | |
- replace usage of sleep_on_interruptible_timeout() with wait_event_interruptible_timeout() | |||
2004-01-29 | fix check_firmware() error message ("dpram" -> "root") | Johannes Stezenbach | |
2004-01-25 | #include <linux/version.h> so it builds with linux-2.6.2-rc1 | Johannes Stezenbach | |
2004-01-20 | - some more compatiblity cruft to make the driver compile down to | Michael Hunold | |
2.4.19 (except usb stuff which only compiles with 2.4.20 and above) | |||
2004-01-08 | rename some non-static functions to enhance readability | Johannes Stezenbach | |
2004-01-06 | printk format warning fix | Johannes Stezenbach | |
2004-01-05 | - removed now useless test for current->files in recover_arm() | Johannes Stezenbach | |
- coding style / formatting fixes (mostly whitespace) | |||
2004-01-05 | - removed some unused fields from struct av7110 | Johannes Stezenbach | |
- retab | |||
2004-01-05 | Split av7110.c into a few separate modules: | Johannes Stezenbach | |
- av7110.c: initialization and demux stuff - av7110_hw.c: lowlevel hardware access and firmware interface - av7110_ca.c: CI and ECD - av7110_av.c: audio/video MPEG decoder and remuxing stuff - av7110_v4l.c: v4l interface It's all still ugly and needs lots of namespace and coding-style cleanups. It's probably broken, too. But it's a start. (My main motivation is easier porting to the V4 API). | |||
2004-01-02 | - fix release of vbi device with DVB-C cards | Michael Hunold | |
2003-12-27 | Memory optimization: do not allocate firmware buffer if firmware is compiled ↵ | Oliver Endriss | |
into the driver. Saves 220KB vmem. | |||
2003-12-24 | - use CONFIG_DVB_AV7110_FIRMWARE_FILE if we need to vfree() the firmware | Michael Hunold | |
strucure, not the kernel version number | |||
2003-12-21 | - add Kconfig foo to select a firmware that can be compiled into the | Michael Hunold | |
firmware again - move fdump.c utility from "ttusb-dec" to "ttpci", it's not need by "ttusb-dec" anymore, but by "ttpci" now | |||
2003-12-21 | - apply dvb-ttpci/av7110 firmware removal from 2.6.0 patch here, too, but: | Michael Hunold | |
the firmware is still compiled into the driver for 2.4 by default, the necessary files are created dynamically from the firmware file. get it from http://www.linuxtv.org/download/dvb/dvb-ttpci-01.fw - revamp fdump utility to be smarter when the source file isn't there | |||
2003-12-08 | Add a parameter to dvb_filter_pes2ts function to specify whether the packet | Alex Woods | |
is a payload unit start or not. | |||
2003-11-25 | introduced flag SAA7146_I2C_SHORT_DELAY to speed up I2C access | Oliver Endriss | |
2003-11-25 | increased I2C speed to 275 kHz | Oliver Endriss | |
2003-11-20 | - move saa7146_set_gpio() from saa7146_vv to saa7146_core | Michael Hunold | |
- add "new" saa7146_wait_for_debi_done() function, remove other versions from av7110 and budget.ci - make budget-ci use this gpio function and the new wait_...() function, therefore fix BORROWED_FROM_AV7110_H_BUT_REALLY_BELONGS_IN_SAA7146_DEFS_H remark | |||
2003-11-06 | patch by Karl Herz: add "rgb_on" module paramter | Johannes Stezenbach | |
2003-10-22 | - remove SAA7146_EXT_SWAP_ODD_EVEN flag + handling | Michael Hunold | |
- hopefully fix field handling for DVB-S cards with progressive mpeg | |||
2003-10-17 | - add missing VBI line decoding initialization to saa7113 code | Michael Hunold | |
2003-10-15 | Explicit cast of "floating point" number (IMHO the compiler makes | Michael Hunold | |
this automatically) as suggested by Linus Torvalds. | |||
2003-10-15 | Remove bogux BUG() that I inserted to track down a driver oops. | Michael Hunold | |