flexcop-common.h 5.4 KB

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