1. 05 8月, 2014 1 次提交
  2. 08 1月, 2014 1 次提交
    • R
      drivers: gpu: Include appropriate header file in si_smc.c and remove prototype... · 6c149d96
      Rashika Kheria 提交于
      drivers: gpu: Include appropriate header file in si_smc.c and remove prototype declaration from header file sislands_smc.h
      
      Include header file gpu/drm/radeon/sislands_smc.h in drm/radeon/si_smc.c
      because it uses function declared in the header file.
      
      Remove prototype declaration of function si_set_smc_sram_address() from
      drm/radeon/sislands_smc.h because the function is used only in one file
      where it is declared static already.
      
      This eliminates the following warnings in drm/radeon/si_smc.c:
      drivers/gpu/drm/radeon/si_smc.c:46:5: warning: no previous prototype for ‘si_copy_bytes_to_smc’ [-Wmissing-prototypes]
      drivers/gpu/drm/radeon/si_smc.c:112:6: warning: no previous prototype for ‘si_start_smc’ [-Wmissing-prototypes]
      drivers/gpu/drm/radeon/si_smc.c:121:6: warning: no previous prototype for ‘si_reset_smc’ [-Wmissing-prototypes]
      drivers/gpu/drm/radeon/si_smc.c:135:5: warning: no previous prototype for ‘si_program_jump_on_start’ [-Wmissing-prototypes]
      drivers/gpu/drm/radeon/si_smc.c:142:6: warning: no previous prototype for ‘si_stop_smc_clock’ [-Wmissing-prototypes]
      drivers/gpu/drm/radeon/si_smc.c:151:6: warning: no previous prototype for ‘si_start_smc_clock’ [-Wmissing-prototypes]
      drivers/gpu/drm/radeon/si_smc.c:160:6: warning: no previous prototype for ‘si_is_smc_running’ [-Wmissing-prototypes]
      drivers/gpu/drm/radeon/si_smc.c:171:14: warning: no previous prototype for ‘si_send_msg_to_smc’ [-Wmissing-prototypes]
      drivers/gpu/drm/radeon/si_smc.c:192:14: warning: no previous prototype for ‘si_wait_for_smc_inactive’ [-Wmissing-prototypes]
      drivers/gpu/drm/radeon/si_smc.c:210:5: warning: no previous prototype for ‘si_load_smc_ucode’ [-Wmissing-prototypes]
      drivers/gpu/drm/radeon/si_smc.c:269:5: warning: no previous prototype for ‘si_read_smc_sram_dword’ [-Wmissing-prototypes]
      drivers/gpu/drm/radeon/si_smc.c:284:5: warning: no previous prototype for ‘si_write_smc_sram_dword’ [-Wmissing-prototypes]
      Signed-off-by: NRashika Kheria <rashika.kheria@gmail.com>
      Reviewed-by: NJosh Triplett <josh@joshtriplett.org>
      Signed-off-by: NAlex Deucher <alexander.deucher@amd.com>
      6c149d96
  3. 11 9月, 2013 1 次提交
  4. 28 6月, 2013 1 次提交
    • A
      drm/radeon/kms: add dpm support for SI (v7) · a9e61410
      Alex Deucher 提交于
      This adds dpm support for SI asics.  This includes:
      - dynamic engine clock scaling
      - dynamic memory clock scaling
      - dynamic voltage scaling
      - dynamic pcie gen1/gen2/gen3 switching
      - power containment
      - shader power scaling
      
      Set radeon.dpm=1 to enable.
      
      v2: enable hainan support, rebase
      v3: guard acpi stuff
      v4: fix 64 bit math
      v5: fix 64 bit div harder
      v6: fix thermal interrupt check noticed by Jerome
      v7: attempt fix state enable
      Signed-off-by: NAlex Deucher <alexander.deucher@amd.com>
      a9e61410