1. 10 8月, 2012 2 次提交
    • D
      [media] au0828: make sure video standard is setup in tuner-core · c98bc032
      Devin Heitmueller 提交于
      If the user performs a tuning attempt without explicitly calling the
      s_std ioctl(), a value of zero is sent from tuner-core to xc5000.  This
      causes the xc5000 driver to leave the standard unchanged.  The problem
      was masked by the fact that the xc5000 driver defaulted to NTSC, but if
      you happened to perform an ATSC/ClearQAM tuning attempt and then do an
      analog tune, the net effect is an analog tune with the standard still
      set to DTV6.
      
      Keep track of whether the standard has ever been sent to tuner-core.  We
      don't make an s_std subdev call explicitly during probe because that
      will cause a firmware load (which is very time consuming on the 950q).
      With the logic in this patch, the s_std call will occur automatically on
      the s_freq call if it hasn't already been set.
      Signed-off-by: NDevin Heitmueller <dheitmueller@kernellabs.com>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      c98bc032
    • D
      [media] au8522: properly recover from the au8522 delivering misaligned TS streams · 43f2cccf
      Devin Heitmueller 提交于
      There is an apparent bug in the au8522 TS clocking which can result in
      it delivering a TS payload to the au0828 that is shifted by some number
      of bits. For example, the device will announce a packet containing "FA
      38 FF F8" which if you shift left one bit is "1F 47 1F FF F0..."
      
      This presents itself as no TS stream being delivered from the kernel to
      userland, since the kernel demux will drop every packet.
      
      In the event that this condition occurs, restart the DVB stream.
      
      Also, this patch includes a couple of lines of cleanup to not change the
      FIFO configuration while the FIFO is running (which can screw up the
      state machine), and dequeue the buffers before turning off the FIFO.
      This puts the logic in sync with the Windows driver.
      Signed-off-by: NDevin Heitmueller <dheitmueller@kernellabs.com>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      43f2cccf
  2. 29 12月, 2010 3 次提交
  3. 03 8月, 2010 1 次提交
  4. 16 12月, 2009 1 次提交
  5. 07 4月, 2009 1 次提交
  6. 30 3月, 2009 7 次提交
  7. 12 10月, 2008 1 次提交
  8. 04 9月, 2008 1 次提交
  9. 26 4月, 2008 1 次提交
    • A
      V4L/DVB (7750): au0828/ cleanups and fixes · b33d24c4
      Adrian Bunk 提交于
      This patch contains the following cleanups and fixes:
      - "debug" is definitely not a good name for a global variable,
        renamed it to "au0828_debug"
        this fixes a compile error with some kernel configurations
      - since the module parameter is int the variable shouldn't be unsigned
      - remove the {usb,bridge,i2c}_debug module parameters since they are
        already covered by the "debug" module parameter
      - remove the unused au0828_bcount
      - make the needlessly global i2c_scan static
      - make the needlessly global dvb_register() static
      Signed-off-by: NAdrian Bunk <bunk@kernel.org>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@infradead.org>
      b33d24c4
  10. 25 4月, 2008 5 次提交