Home
last modified time | relevance | path

Searched refs:ptr_entity (Results 1 – 2 of 2) sorted by relevance

/haiku/src/add-ons/kernel/drivers/graphics/radeon/
H A Dbios.c289 ptr_disp_entity ptr_entity = &di->routing; in Radeon_GetConnectorInfoFromBIOS() local
313 ptr_entity->port_info[0].tmds_type = tmds_int; in Radeon_GetConnectorInfoFromBIOS()
315 ptr_entity->port_info[0].tmds_type = tmds_ext; in Radeon_GetConnectorInfoFromBIOS()
317 if (ptr_entity->port_info[0].dac_type == dac_unknown) in Radeon_GetConnectorInfoFromBIOS()
318 ptr_entity->port_info[0].dac_type = (portinfo & 0xf) - 1; in Radeon_GetConnectorInfoFromBIOS()
324 ptr_entity->port_info[crtc].dac_type = (portinfo & 0xf) - 1; in Radeon_GetConnectorInfoFromBIOS()
325 ptr_entity->port_info[crtc].connector_type = (portinfo>>4) & 0xf; in Radeon_GetConnectorInfoFromBIOS()
327 ptr_entity->port_info[crtc].tmds_type = tmds_int; in Radeon_GetConnectorInfoFromBIOS()
329 ptr_entity->port_info[crtc].tmds_type = tmds_ext; in Radeon_GetConnectorInfoFromBIOS()
336 ptr_entity->port_info[crtc].ddc_type = ddc_monid; in Radeon_GetConnectorInfoFromBIOS()
[all …]
/haiku/src/add-ons/accelerants/radeon/
H A Dmonitor_detection.c845 Radeon_ConnectorInfo(accelerator_info *ai, int port, disp_entity* ptr_entity) in Radeon_ConnectorInfo() argument
848 const char* ddc = ptr_entity->port_info[port].ddc_type == ddc_none_detected in Radeon_ConnectorInfo()
849 ? "None" : ptr_entity->port_info[port].ddc_type == ddc_monid in Radeon_ConnectorInfo()
850 ? "Mon ID" : ptr_entity->port_info[port].ddc_type == ddc_dvi in Radeon_ConnectorInfo()
851 ? "DVI DDC" : ptr_entity->port_info[port].ddc_type == ddc_vga in Radeon_ConnectorInfo()
852 ? "VGA DDC" : ptr_entity->port_info[port].ddc_type == ddc_crt2 in Radeon_ConnectorInfo()
854 const char* tmds = ptr_entity->port_info[port].tmds_type == tmds_unknown in Radeon_ConnectorInfo()
855 ? "None" : ptr_entity->port_info[port].tmds_type == tmds_int in Radeon_ConnectorInfo()
856 ? "Internal" : ptr_entity->port_info[port].tmds_type == tmds_ext in Radeon_ConnectorInfo()
858 const char* dac = ptr_entity->port_info[port].dac_type == dac_unknown in Radeon_ConnectorInfo()
[all …]