flexcop-common.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. /*
  2. * Linux driver for digital TV devices equipped with B2C2 FlexcopII(b)/III
  3. * flexcop-common.h - common header file for device-specific source files
  4. * see flexcop.c for copyright information
  5. */
  6. #ifndef __FLEXCOP_COMMON_H__
  7. #define __FLEXCOP_COMMON_H__
  8. #include <linux/pci.h>
  9. #include <linux/mutex.h>
  10. #include "flexcop-reg.h"
  11. #include "dmxdev.h"
  12. #include "dvb_demux.h"
  13. #include "dvb_filter.h"
  14. #include "dvb_net.h"
  15. #include "dvb_frontend.h"
  16. #define FC_MAX_FEED 256
  17. #ifndef FC_LOG_PREFIX
  18. #warning please define a log prefix for your file, using a default one
  19. #define FC_LOG_PREFIX "b2c2-undef"
  20. #endif
  21. /* Steal from usb.h */
  22. #undef err
  23. #define err(format, arg...) \
  24. printk(KERN_ERR FC_LOG_PREFIX ": " format "\n" , ## arg)
  25. #undef info
  26. #define info(format, arg...) \
  27. printk(KERN_INFO FC_LOG_PREFIX ": " format "\n" , ## arg)
  28. #undef warn
  29. #define warn(format, arg...) \
  30. printk(KERN_WARNING FC_LOG_PREFIX ": " format "\n" , ## arg)
  31. struct flexcop_dma {
  32. struct pci_dev *pdev;
  33. u8 *cpu_addr0;
  34. dma_addr_t dma_addr0;
  35. u8 *cpu_addr1;
  36. dma_addr_t dma_addr1;
  37. u32 size; /* size of each address in bytes */
  38. };
  39. struct flexcop_i2c_adapter {
  40. struct flexcop_device *fc;
  41. struct i2c_adapter i2c_adap;
  42. u8 no_base_addr;
  43. flexcop_i2c_port_t port;
  44. };
  45. /* Control structure for data definitions that are common to
  46. * the B2C2-based PCI and USB devices.
  47. */
  48. struct flexcop_device {
  49. /* general */
  50. struct device *dev; /* for firmware_class */
  51. #define FC_STATE_DVB_INIT 0x01
  52. #define FC_STATE_I2C_INIT 0x02
  53. #define FC_STATE_FE_INIT 0x04
  54. int init_state;
  55. /* device information */
  56. int has_32_hw_pid_filter;
  57. flexcop_revision_t rev;
  58. flexcop_device_type_t dev_type;
  59. flexcop_bus_t bus_type;
  60. /* dvb stuff */
  61. struct dvb_adapter dvb_adapter;
  62. struct dvb_frontend *fe;
  63. struct dvb_net dvbnet;
  64. struct dvb_demux demux;
  65. struct dmxdev dmxdev;
  66. struct dmx_frontend hw_frontend;
  67. struct dmx_frontend mem_frontend;
  68. int (*fe_sleep) (struct dvb_frontend *);
  69. struct flexcop_i2c_adapter fc_i2c_adap[3];
  70. struct mutex i2c_mutex;
  71. struct module *owner;
  72. /* options and status */
  73. int extra_feedcount;
  74. int feedcount;
  75. int pid_filtering;
  76. int fullts_streaming_state;
  77. /* bus specific callbacks */
  78. flexcop_ibi_value(*read_ibi_reg) (struct flexcop_device *,
  79. flexcop_ibi_register);
  80. int (*write_ibi_reg) (struct flexcop_device *,
  81. flexcop_ibi_register, flexcop_ibi_value);
  82. int (*i2c_request) (struct flexcop_i2c_adapter *,
  83. flexcop_access_op_t, u8 chipaddr, u8 addr, u8 *buf, u16 len);
  84. int (*stream_control) (struct flexcop_device *, int);
  85. int (*get_mac_addr) (struct flexcop_device *fc, int extended);
  86. void *bus_specific;
  87. };
  88. /* exported prototypes */
  89. /* from flexcop.c */
  90. void flexcop_pass_dmx_data(struct flexcop_device *fc, u8 *buf, u32 len);
  91. void flexcop_pass_dmx_packets(struct flexcop_device *fc, u8 *buf, u32 no);
  92. struct flexcop_device *flexcop_device_kmalloc(size_t bus_specific_len);
  93. void flexcop_device_kfree(struct flexcop_device *);
  94. int flexcop_device_initialize(struct flexcop_device *);
  95. void flexcop_device_exit(struct flexcop_device *fc);
  96. void flexcop_reset_block_300(struct flexcop_device *fc);
  97. /* from flexcop-dma.c */
  98. int flexcop_dma_allocate(struct pci_dev *pdev,
  99. struct flexcop_dma *dma, u32 size);
  100. void flexcop_dma_free(struct flexcop_dma *dma);
  101. int flexcop_dma_control_timer_irq(struct flexcop_device *fc,
  102. flexcop_dma_index_t no, int onoff);
  103. int flexcop_dma_control_size_irq(struct flexcop_device *fc,
  104. flexcop_dma_index_t no, int onoff);
  105. int flexcop_dma_config(struct flexcop_device *fc, struct flexcop_dma *dma,
  106. flexcop_dma_index_t dma_idx);
  107. int flexcop_dma_xfer_control(struct flexcop_device *fc,
  108. flexcop_dma_index_t dma_idx, flexcop_dma_addr_index_t index,
  109. int onoff);
  110. int flexcop_dma_config_timer(struct flexcop_device *fc,
  111. flexcop_dma_index_t dma_idx, u8 cycles);
  112. /* from flexcop-eeprom.c */
  113. /* the PCI part uses this call to get the MAC address, the USB part has its own */
  114. int flexcop_eeprom_check_mac_addr(struct flexcop_device *fc, int extended);
  115. /* from flexcop-i2c.c */
  116. /* the PCI part uses this a i2c_request callback, whereas the usb part has its own
  117. * one. We have it in flexcop-i2c.c, because it is going via the actual
  118. * I2C-channel of the flexcop.
  119. */
  120. int flexcop_i2c_request(struct flexcop_i2c_adapter*, flexcop_access_op_t,
  121. u8 chipaddr, u8 addr, u8 *buf, u16 len);
  122. /* from flexcop-sram.c */
  123. int flexcop_sram_set_dest(struct flexcop_device *fc, flexcop_sram_dest_t dest,
  124. flexcop_sram_dest_target_t target);
  125. void flexcop_wan_set_speed(struct flexcop_device *fc, flexcop_wan_speed_t s);
  126. void flexcop_sram_ctrl(struct flexcop_device *fc,
  127. int usb_wan, int sramdma, int maximumfill);
  128. /* global prototypes for the flexcop-chip */
  129. /* from flexcop-fe-tuner.c */
  130. int flexcop_frontend_init(struct flexcop_device *fc);
  131. void flexcop_frontend_exit(struct flexcop_device *fc);
  132. /* from flexcop-i2c.c */
  133. int flexcop_i2c_init(struct flexcop_device *fc);
  134. void flexcop_i2c_exit(struct flexcop_device *fc);
  135. /* from flexcop-sram.c */
  136. int flexcop_sram_init(struct flexcop_device *fc);
  137. /* from flexcop-misc.c */
  138. void flexcop_determine_revision(struct flexcop_device *fc);
  139. void flexcop_device_name(struct flexcop_device *fc,
  140. const char *prefix, const char *suffix);
  141. void flexcop_dump_reg(struct flexcop_device *fc,
  142. flexcop_ibi_register reg, int num);
  143. /* from flexcop-hw-filter.c */
  144. int flexcop_pid_feed_control(struct flexcop_device *fc,
  145. struct dvb_demux_feed *dvbdmxfeed, int onoff);
  146. void flexcop_hw_filter_init(struct flexcop_device *fc);
  147. void flexcop_smc_ctrl(struct flexcop_device *fc, int onoff);
  148. void flexcop_set_mac_filter(struct flexcop_device *fc, u8 mac[6]);
  149. void flexcop_mac_filter_ctrl(struct flexcop_device *fc, int onoff);
  150. #endif