HomeSort by: relevance | last modified time | path
    Searched defs:bios_2_scratch (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_atombios_encoders.c 49 u32 bios_2_scratch; local in function:amdgpu_atombios_encoder_get_backlight_level_from_reg
51 bios_2_scratch = RREG32(mmBIOS_SCRATCH_2);
53 backlight_level = ((bios_2_scratch & ATOM_S2_CURRENT_BL_LEVEL_MASK) >>
63 u32 bios_2_scratch; local in function:amdgpu_atombios_encoder_set_backlight_level_to_reg
65 bios_2_scratch = RREG32(mmBIOS_SCRATCH_2);
67 bios_2_scratch &= ~ATOM_S2_CURRENT_BL_LEVEL_MASK;
68 bios_2_scratch |= ((backlight_level << ATOM_S2_CURRENT_BL_LEVEL_SHIFT) &
71 WREG32(mmBIOS_SCRATCH_2, bios_2_scratch);
amdgpu_atombios.c 1697 uint32_t bios_2_scratch, bios_6_scratch; local in function:amdgpu_atombios_scratch_regs_init
1701 bios_2_scratch = RREG32(adev->bios_scratch_reg_offset + 2);
1705 bios_2_scratch &= ~ATOM_S2_VRI_BRIGHT_ENABLE;
1711 bios_2_scratch &= ~ATOM_S2_DEVICE_DPMS_STATE;
1713 WREG32(adev->bios_scratch_reg_offset + 2, bios_2_scratch);
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_atombios_encoders.c 51 u32 bios_2_scratch; local in function:radeon_atom_get_backlight_level_from_reg
54 bios_2_scratch = RREG32(R600_BIOS_2_SCRATCH);
56 bios_2_scratch = RREG32(RADEON_BIOS_2_SCRATCH);
58 backlight_level = ((bios_2_scratch & ATOM_S2_CURRENT_BL_LEVEL_MASK) >>
68 u32 bios_2_scratch; local in function:radeon_atom_set_backlight_level_to_reg
71 bios_2_scratch = RREG32(R600_BIOS_2_SCRATCH);
73 bios_2_scratch = RREG32(RADEON_BIOS_2_SCRATCH);
75 bios_2_scratch &= ~ATOM_S2_CURRENT_BL_LEVEL_MASK;
76 bios_2_scratch |= ((backlight_level << ATOM_S2_CURRENT_BL_LEVEL_SHIFT) &
80 WREG32(R600_BIOS_2_SCRATCH, bios_2_scratch);
    [all...]
radeon_atombios.c 4074 uint32_t bios_2_scratch, bios_6_scratch; local in function:radeon_atom_initialize_bios_scratch_regs
4077 bios_2_scratch = RREG32(R600_BIOS_2_SCRATCH);
4080 bios_2_scratch = RREG32(RADEON_BIOS_2_SCRATCH);
4085 bios_2_scratch &= ~ATOM_S2_VRI_BRIGHT_ENABLE;
4092 bios_2_scratch &= ~ATOM_S2_DEVICE_DPMS_STATE;
4095 WREG32(R600_BIOS_2_SCRATCH, bios_2_scratch);
4098 WREG32(RADEON_BIOS_2_SCRATCH, bios_2_scratch);
4405 uint32_t bios_2_scratch; local in function:radeon_atombios_encoder_dpms_scratch_regs
4411 bios_2_scratch = RREG32(R600_BIOS_2_SCRATCH);
4413 bios_2_scratch = RREG32(RADEON_BIOS_2_SCRATCH)
    [all...]

Completed in 50 milliseconds