Searched refs:AsicType (Results 1 - 12 of 12) sorted by relevance
/third_party/backends/backend/genesys/ |
H A D | scanner_interface_usb.cpp | 43 if (dev_->model->asic_type == AsicType::GL847 || in read_register() 44 dev_->model->asic_type == AsicType::GL845 || in read_register() 45 dev_->model->asic_type == AsicType::GL846 || in read_register() 46 dev_->model->asic_type == AsicType::GL124) in read_register() 88 if (dev_->model->asic_type == AsicType::GL847 || in write_register() 89 dev_->model->asic_type == AsicType::GL845 || in write_register() 90 dev_->model->asic_type == AsicType::GL846 || in write_register() 91 dev_->model->asic_type == AsicType::GL124) in write_register() 126 if (dev_->model->asic_type == AsicType::GL646 || in write_registers() 127 dev_->model->asic_type == AsicType in write_registers() [all...] |
H A D | low.cpp | 57 std::unique_ptr<CommandSet> create_cmd_set(AsicType asic_type) in create_cmd_set() 60 case AsicType::GL646: return std::unique_ptr<CommandSet>(new gl646::CommandSetGl646{}); in create_cmd_set() 61 case AsicType::GL841: return std::unique_ptr<CommandSet>(new gl841::CommandSetGl841{}); in create_cmd_set() 62 case AsicType::GL842: return std::unique_ptr<CommandSet>(new gl842::CommandSetGl842{}); in create_cmd_set() 63 case AsicType::GL843: return std::unique_ptr<CommandSet>(new gl843::CommandSetGl843{}); in create_cmd_set() 64 case AsicType::GL845: // since only a few reg bits differs we handle both together in create_cmd_set() 65 case AsicType::GL846: return std::unique_ptr<CommandSet>(new gl846::CommandSetGl846{}); in create_cmd_set() 66 case AsicType::GL847: return std::unique_ptr<CommandSet>(new gl847::CommandSetGl847{}); in create_cmd_set() 67 case AsicType::GL124: return std::unique_ptr<CommandSet>(new gl124::CommandSetGl124{}); in create_cmd_set() 91 unsigned sanei_genesys_get_bulk_max_size(AsicType asic_typ [all...] |
H A D | test_scanner_interface.cpp | 35 if (dev_->model->asic_type == AsicType::GL124) { 40 if (dev_->model->asic_type == AsicType::GL841 || 41 dev_->model->asic_type == AsicType::GL842 || 42 dev_->model->asic_type == AsicType::GL843 || 43 dev_->model->asic_type == AsicType::GL845 || 44 dev_->model->asic_type == AsicType::GL846 || 45 dev_->model->asic_type == AsicType::GL847) 51 if (dev_->model->asic_type == AsicType::GL124) { 58 if (dev_->model->asic_type == AsicType::GL845 || 59 dev_->model->asic_type == AsicType [all...] |
H A D | motor.cpp | 88 unsigned get_slope_table_max_size(AsicType asic_type) in get_slope_table_max_size() 91 case AsicType::GL646: in get_slope_table_max_size() 92 case AsicType::GL841: in get_slope_table_max_size() 93 case AsicType::GL842: return 255; in get_slope_table_max_size() 94 case AsicType::GL843: in get_slope_table_max_size() 95 case AsicType::GL845: in get_slope_table_max_size() 96 case AsicType::GL846: in get_slope_table_max_size() 97 case AsicType::GL847: in get_slope_table_max_size() 98 case AsicType::GL124: return 1024; in get_slope_table_max_size()
|
H A D | genesys.cpp | 277 if (dev->model->asic_type == AsicType::GL845 || in sanei_genesys_init_structs() 278 dev->model->asic_type == AsicType::GL846 || in sanei_genesys_init_structs() 279 dev->model->asic_type == AsicType::GL847 || in sanei_genesys_init_structs() 280 dev->model->asic_type == AsicType::GL124) in sanei_genesys_init_structs() 340 if (dev->model->asic_type == AsicType::GL646) { in sanei_genesys_create_default_gamma_table() 347 } else if (dev->model->asic_type == AsicType::GL124 || in sanei_genesys_create_default_gamma_table() 348 dev->model->asic_type == AsicType::GL845 || in sanei_genesys_create_default_gamma_table() 349 dev->model->asic_type == AsicType::GL846 || in sanei_genesys_create_default_gamma_table() 350 dev->model->asic_type == AsicType::GL847) { in sanei_genesys_create_default_gamma_table() 453 case AsicType in scanner_clear_scan_and_feed_counts() [all...] |
H A D | tables_model.cpp | 83 model.asic_type = AsicType::GL646; in genesys_init_usb_device_tables() 132 model.asic_type = AsicType::GL841; in genesys_init_usb_device_tables() 189 model.asic_type = AsicType::GL843; in genesys_init_usb_device_tables() 239 model.asic_type = AsicType::GL843; in genesys_init_usb_device_tables() 290 model.asic_type = AsicType::GL843; in genesys_init_usb_device_tables() 341 model.asic_type = AsicType::GL843; in genesys_init_usb_device_tables() 393 model.asic_type = AsicType::GL843; in genesys_init_usb_device_tables() 463 model.asic_type = AsicType::GL843; in genesys_init_usb_device_tables() 533 model.asic_type = AsicType::GL843; in genesys_init_usb_device_tables() 599 model.asic_type = AsicType in genesys_init_usb_device_tables() [all...] |
H A D | low.h | 191 std::unique_ptr<CommandSet> create_cmd_set(AsicType asic_type); 267 unsigned sanei_genesys_get_bulk_max_size(AsicType asic_type); 326 void regs_set_exposure(AsicType asic_type, Genesys_Register_Set& regs, 329 void regs_set_optical_off(AsicType asic_type, Genesys_Register_Set& regs); 341 bool get_registers_gain4_bit(AsicType asic_type, const Genesys_Register_Set& regs); 364 MotorSlopeTable create_slope_table(AsicType asic_type, const Genesys_Motor& motor, unsigned ydpi, 368 MotorSlopeTable create_slope_table_fastest(AsicType asic_type, unsigned step_multiplier,
|
H A D | device.h | 110 AsicType asic_type = AsicType::UNKNOWN;
|
H A D | motor.h | 119 unsigned get_slope_table_max_size(AsicType asic_type);
|
H A D | enums.h | 449 enum class AsicType : unsigned class in genesys::ScanMethod
|
H A D | gl646.cpp | 472 get_slope_table_max_size(AsicType::GL646)); in init_regs_for_scan_session() 475 get_slope_table_max_size(AsicType::GL646)); in init_regs_for_scan_session() 1374 get_slope_table_max_size(AsicType::GL646)); in load_document() 1531 get_slope_table_max_size(AsicType::GL646)); in eject_document()
|
H A D | tables_sensor.cpp | 3786 std::map<SensorId, AsicType> sensor_to_asic; in verify_sensor_tables() 3804 if (asic_type != AsicType::GL646) { in verify_sensor_tables() 3813 if (asic_type == AsicType::GL841) { in verify_sensor_tables() 3826 if (asic_type == AsicType::GL842) { in verify_sensor_tables()
|
Completed in 18 milliseconds