diff options
author | Ben Skeggs <bskeggs@redhat.com> | 2012-01-31 09:16:59 +1000 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2012-02-01 15:23:55 +1000 |
commit | 7df898b1a70b13c3a8892625f4ead929d9554293 (patch) | |
tree | beda118e6b81145a03ee25821dbdad9f5ec9303e /drivers/gpu/drm/nouveau/nouveau_bios.h | |
parent | 62aa2b537c6f5957afd98e29f96897419ed5ebab (diff) | |
download | blackbird-op-linux-7df898b1a70b13c3a8892625f4ead929d9554293.tar.gz blackbird-op-linux-7df898b1a70b13c3a8892625f4ead929d9554293.zip |
drm/nouveau/disp: check that panel power gpio is enabled at init time
Reported-by: Yuriy Khomchik <homyur@gmail.com>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/nouveau_bios.h')
-rw-r--r-- | drivers/gpu/drm/nouveau/nouveau_bios.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_bios.h b/drivers/gpu/drm/nouveau/nouveau_bios.h index 1e382ad5a2b8..a37c31e358aa 100644 --- a/drivers/gpu/drm/nouveau/nouveau_bios.h +++ b/drivers/gpu/drm/nouveau/nouveau_bios.h @@ -54,9 +54,10 @@ struct bit_entry { int bit_table(struct drm_device *, u8 id, struct bit_entry *); enum dcb_gpio_tag { - DCB_GPIO_TVDAC0 = 0xc, + DCB_GPIO_PANEL_POWER = 0x01, + DCB_GPIO_TVDAC0 = 0x0c, DCB_GPIO_TVDAC1 = 0x2d, - DCB_GPIO_PWM_FAN = 0x9, + DCB_GPIO_PWM_FAN = 0x09, DCB_GPIO_FAN_SENSE = 0x3d, DCB_GPIO_UNUSED = 0xff }; |