diff options
author | Ben Skeggs <bskeggs@redhat.com> | 2012-07-09 22:20:17 -0400 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2012-10-02 23:12:45 -0400 |
commit | e0996aea4c349ba302b63203b7d5cab6034dbdca (patch) | |
tree | 5b46c04d6e2588ee9b6a9065ba074f6bd37c5812 /drivers/gpu/drm/nouveau/nouveau_bios.h | |
parent | cd42439da48529a3cd6f957b226fc627a64fb771 (diff) |
drm/nouveau/gpio: port gpio to subdev interfaces
v2: Ben Skeggs <bskeggs@redhat.com>
- rebase on top of v3.6-rc6 with gpio reset patch integrated already
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 | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_bios.h b/drivers/gpu/drm/nouveau/nouveau_bios.h index b42aa31144a1..b4529a0b35aa 100644 --- a/drivers/gpu/drm/nouveau/nouveau_bios.h +++ b/drivers/gpu/drm/nouveau/nouveau_bios.h | |||
@@ -53,15 +53,6 @@ struct bit_entry { | |||
53 | 53 | ||
54 | int bit_table(struct drm_device *, u8 id, struct bit_entry *); | 54 | int bit_table(struct drm_device *, u8 id, struct bit_entry *); |
55 | 55 | ||
56 | enum dcb_gpio_tag { | ||
57 | DCB_GPIO_PANEL_POWER = 0x01, | ||
58 | DCB_GPIO_TVDAC0 = 0x0c, | ||
59 | DCB_GPIO_TVDAC1 = 0x2d, | ||
60 | DCB_GPIO_PWM_FAN = 0x09, | ||
61 | DCB_GPIO_FAN_SENSE = 0x3d, | ||
62 | DCB_GPIO_UNUSED = 0xff | ||
63 | }; | ||
64 | |||
65 | enum dcb_connector_type { | 56 | enum dcb_connector_type { |
66 | DCB_CONNECTOR_VGA = 0x00, | 57 | DCB_CONNECTOR_VGA = 0x00, |
67 | DCB_CONNECTOR_TV_0 = 0x10, | 58 | DCB_CONNECTOR_TV_0 = 0x10, |
@@ -302,9 +293,9 @@ struct nvbios { | |||
302 | } legacy; | 293 | } legacy; |
303 | }; | 294 | }; |
304 | 295 | ||
305 | void *dcb_table(struct drm_device *); | 296 | void *olddcb_table(struct drm_device *); |
306 | void *dcb_outp(struct drm_device *, u8 idx); | 297 | void *olddcb_outp(struct drm_device *, u8 idx); |
307 | int dcb_outp_foreach(struct drm_device *, void *data, | 298 | int olddcb_outp_foreach(struct drm_device *, void *data, |
308 | int (*)(struct drm_device *, void *, int idx, u8 *outp)); | 299 | int (*)(struct drm_device *, void *, int idx, u8 *outp)); |
309 | u8 *dcb_conntab(struct drm_device *); | 300 | u8 *dcb_conntab(struct drm_device *); |
310 | u8 *dcb_conn(struct drm_device *, u8 idx); | 301 | u8 *dcb_conn(struct drm_device *, u8 idx); |