summaryrefslogtreecommitdiff
path: root/shared-core/r128_drm.h
AgeCommit message (Expand)Author
2007-08-28drm: remove XFREE86_VERSION macrosDave Airlie
2007-07-16drm: detypedef drm.h and fixup all problemsDave Airlie
2005-11-28Assert an MIT copyright on sis_drm.h, since one was lacking and I createdEric Anholt
2005-08-07fix ioctl in r128 drm direction from Egbert Eich.Dave Airlie
2005-07-16revert last change due to me bring up too earlyDave Airlie
2005-07-16Egbert noticed this issue, but changing the IOW to IOWR mess upDave Airlie
2004-09-30Lindent of core build. Drivers checked for no binary diffs. A few filesJon Smirl
2004-07-25sync up with current 2.6 kernel bk tree - mostly __user annotationsDave Airlie
2004-04-10white space changes to align with kernelDave Airlie
2004-03-12Fixes need to clean up the mess I made with the mesa merge. This codeJon Smirl
2003-08-12Whitespace cleanup from the pageflipping commit.Eric Anholt
2003-07-26Add Rage 128 pageflipping support, defaults to off. DRM version bump toEric Anholt
2003-04-30Merged texmem-0-0-1Ian Romanick
2002-10-30Kernel support for vblank syncing on Rage 128 and Matrox.Eric Anholt
2002-07-05merged bsd-3-0-0-branchAlan Hourihane
"nv50_i2c.h" #define CONNECTOR_UNKNOWN 0 #define CONNECTOR_VGA 1 #define CONNECTOR_DVI_D 2 #define CONNECTOR_DVI_I 3 #define CONNECTOR_LVDS 4 #define CONNECTOR_TV 5 struct nv50_connector { struct list_head item; struct drm_device *dev; int type; int bus; struct nv50_i2c_channel *i2c_chan; struct nv50_output *output; int requested_scaling_mode; bool use_dithering; int (*hpd_detect) (struct nv50_connector *connector); int (*i2c_detect) (struct nv50_connector *connector); int (*destroy) (struct nv50_connector *connector); struct nv50_output *(*to_output) (struct nv50_connector *connector, bool digital); }; int nv50_connector_create(struct drm_device *dev, int bus, int i2c_index, int type); #endif /* __NV50_CONNECTOR_H__ */