diff options
-rw-r--r-- | drivers/gpu/drm/nouveau/nv04_display.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/gpu/drm/nouveau/nv04_display.c b/drivers/gpu/drm/nouveau/nv04_display.c index cd70bd827614..9e28cf772e3c 100644 --- a/drivers/gpu/drm/nouveau/nv04_display.c +++ b/drivers/gpu/drm/nouveau/nv04_display.c | |||
@@ -78,6 +78,14 @@ nv04_display_store_initial_head_owner(struct drm_device *dev) | |||
78 | int | 78 | int |
79 | nv04_display_early_init(struct drm_device *dev) | 79 | nv04_display_early_init(struct drm_device *dev) |
80 | { | 80 | { |
81 | /* Make the I2C buses accessible. */ | ||
82 | if (!nv_gf4_disp_arch(dev)) { | ||
83 | uint32_t pmc_enable = nv_rd32(dev, NV03_PMC_ENABLE); | ||
84 | |||
85 | if (!(pmc_enable & 1)) | ||
86 | nv_wr32(dev, NV03_PMC_ENABLE, pmc_enable | 1); | ||
87 | } | ||
88 | |||
81 | /* Unlock the VGA CRTCs. */ | 89 | /* Unlock the VGA CRTCs. */ |
82 | NVLockVgaCrtcs(dev, false); | 90 | NVLockVgaCrtcs(dev, false); |
83 | 91 | ||