12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115 |
- /*
- * Copyright (C) 2008 Maarten Maathuis.
- * All Rights Reserved.
- *
- * Permission is hereby granted, free of charge, to any person obtaining
- * a copy of this software and associated documentation files (the
- * "Software"), to deal in the Software without restriction, including
- * without limitation the rights to use, copy, modify, merge, publish,
- * distribute, sublicense, and/or sell copies of the Software, and to
- * permit persons to whom the Software is furnished to do so, subject to
- * the following conditions:
- *
- * The above copyright notice and this permission notice (including the
- * next paragraph) shall be included in all copies or substantial
- * portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
- * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
- * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- */
- #include <acpi/button.h>
- #include "drmP.h"
- #include "drm_edid.h"
- #include "drm_crtc_helper.h"
- #include "nouveau_reg.h"
- #include "nouveau_drv.h"
- #include "nouveau_encoder.h"
- #include "nouveau_crtc.h"
- #include "nouveau_connector.h"
- #include "nouveau_gpio.h"
- #include "nouveau_hw.h"
- static void nouveau_connector_hotplug(void *, int);
- struct nouveau_encoder *
- find_encoder(struct drm_connector *connector, int type)
- {
- struct drm_device *dev = connector->dev;
- struct nouveau_encoder *nv_encoder;
- struct drm_mode_object *obj;
- int i, id;
- for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
- id = connector->encoder_ids[i];
- if (!id)
- break;
- obj = drm_mode_object_find(dev, id, DRM_MODE_OBJECT_ENCODER);
- if (!obj)
- continue;
- nv_encoder = nouveau_encoder(obj_to_encoder(obj));
- if (type == OUTPUT_ANY || nv_encoder->dcb->type == type)
- return nv_encoder;
- }
- return NULL;
- }
- struct nouveau_connector *
- nouveau_encoder_connector_get(struct nouveau_encoder *encoder)
- {
- struct drm_device *dev = to_drm_encoder(encoder)->dev;
- struct drm_connector *drm_connector;
- list_for_each_entry(drm_connector, &dev->mode_config.connector_list, head) {
- if (drm_connector->encoder == to_drm_encoder(encoder))
- return nouveau_connector(drm_connector);
- }
- return NULL;
- }
- static void
- nouveau_connector_destroy(struct drm_connector *connector)
- {
- struct nouveau_connector *nv_connector = nouveau_connector(connector);
- struct drm_nouveau_private *dev_priv;
- struct drm_device *dev;
- if (!nv_connector)
- return;
- dev = nv_connector->base.dev;
- dev_priv = dev->dev_private;
- NV_DEBUG_KMS(dev, "\n");
- if (nv_connector->hpd != DCB_GPIO_UNUSED) {
- nouveau_gpio_isr_del(dev, 0, nv_connector->hpd, 0xff,
- nouveau_connector_hotplug, connector);
- }
- kfree(nv_connector->edid);
- drm_sysfs_connector_remove(connector);
- drm_connector_cleanup(connector);
- kfree(connector);
- }
- static struct nouveau_i2c_chan *
- nouveau_connector_ddc_detect(struct drm_connector *connector,
- struct nouveau_encoder **pnv_encoder)
- {
- struct drm_device *dev = connector->dev;
- int i;
- for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
- struct nouveau_i2c_chan *i2c = NULL;
- struct nouveau_encoder *nv_encoder;
- struct drm_mode_object *obj;
- int id;
- id = connector->encoder_ids[i];
- if (!id)
- break;
- obj = drm_mode_object_find(dev, id, DRM_MODE_OBJECT_ENCODER);
- if (!obj)
- continue;
- nv_encoder = nouveau_encoder(obj_to_encoder(obj));
- if (nv_encoder->dcb->i2c_index < 0xf)
- i2c = nouveau_i2c_find(dev, nv_encoder->dcb->i2c_index);
- if (i2c && nouveau_probe_i2c_addr(i2c, 0x50)) {
- *pnv_encoder = nv_encoder;
- return i2c;
- }
- }
- return NULL;
- }
- static struct nouveau_encoder *
- nouveau_connector_of_detect(struct drm_connector *connector)
- {
- #ifdef __powerpc__
- struct drm_device *dev = connector->dev;
- struct nouveau_connector *nv_connector = nouveau_connector(connector);
- struct nouveau_encoder *nv_encoder;
- struct device_node *cn, *dn = pci_device_to_OF_node(dev->pdev);
- if (!dn ||
- !((nv_encoder = find_encoder(connector, OUTPUT_TMDS)) ||
- (nv_encoder = find_encoder(connector, OUTPUT_ANALOG))))
- return NULL;
- for_each_child_of_node(dn, cn) {
- const char *name = of_get_property(cn, "name", NULL);
- const void *edid = of_get_property(cn, "EDID", NULL);
- int idx = name ? name[strlen(name) - 1] - 'A' : 0;
- if (nv_encoder->dcb->i2c_index == idx && edid) {
- nv_connector->edid =
- kmemdup(edid, EDID_LENGTH, GFP_KERNEL);
- of_node_put(cn);
- return nv_encoder;
- }
- }
- #endif
- return NULL;
- }
- static void
- nouveau_connector_set_encoder(struct drm_connector *connector,
- struct nouveau_encoder *nv_encoder)
- {
- struct nouveau_connector *nv_connector = nouveau_connector(connector);
- struct drm_nouveau_private *dev_priv = connector->dev->dev_private;
- struct drm_device *dev = connector->dev;
- if (nv_connector->detected_encoder == nv_encoder)
- return;
- nv_connector->detected_encoder = nv_encoder;
- if (dev_priv->card_type >= NV_50) {
- connector->interlace_allowed = true;
- connector->doublescan_allowed = true;
- } else
- if (nv_encoder->dcb->type == OUTPUT_LVDS ||
- nv_encoder->dcb->type == OUTPUT_TMDS) {
- connector->doublescan_allowed = false;
- connector->interlace_allowed = false;
- } else {
- connector->doublescan_allowed = true;
- if (dev_priv->card_type == NV_20 ||
- (dev_priv->card_type == NV_10 &&
- (dev->pci_device & 0x0ff0) != 0x0100 &&
- (dev->pci_device & 0x0ff0) != 0x0150))
- /* HW is broken */
- connector->interlace_allowed = false;
- else
- connector->interlace_allowed = true;
- }
- if (nv_connector->type == DCB_CONNECTOR_DVI_I) {
- drm_connector_property_set_value(connector,
- dev->mode_config.dvi_i_subconnector_property,
- nv_encoder->dcb->type == OUTPUT_TMDS ?
- DRM_MODE_SUBCONNECTOR_DVID :
- DRM_MODE_SUBCONNECTOR_DVIA);
- }
- }
- static enum drm_connector_status
- nouveau_connector_detect(struct drm_connector *connector, bool force)
- {
- struct drm_device *dev = connector->dev;
- struct nouveau_connector *nv_connector = nouveau_connector(connector);
- struct nouveau_encoder *nv_encoder = NULL;
- struct nouveau_encoder *nv_partner;
- struct nouveau_i2c_chan *i2c;
- int type;
- /* Cleanup the previous EDID block. */
- if (nv_connector->edid) {
- drm_mode_connector_update_edid_property(connector, NULL);
- kfree(nv_connector->edid);
- nv_connector->edid = NULL;
- }
- i2c = nouveau_connector_ddc_detect(connector, &nv_encoder);
- if (i2c) {
- nv_connector->edid = drm_get_edid(connector, &i2c->adapter);
- drm_mode_connector_update_edid_property(connector,
- nv_connector->edid);
- if (!nv_connector->edid) {
- NV_ERROR(dev, "DDC responded, but no EDID for %s\n",
- drm_get_connector_name(connector));
- goto detect_analog;
- }
- if (nv_encoder->dcb->type == OUTPUT_DP &&
- !nouveau_dp_detect(to_drm_encoder(nv_encoder))) {
- NV_ERROR(dev, "Detected %s, but failed init\n",
- drm_get_connector_name(connector));
- return connector_status_disconnected;
- }
- /* Override encoder type for DVI-I based on whether EDID
- * says the display is digital or analog, both use the
- * same i2c channel so the value returned from ddc_detect
- * isn't necessarily correct.
- */
- nv_partner = NULL;
- if (nv_encoder->dcb->type == OUTPUT_TMDS)
- nv_partner = find_encoder(connector, OUTPUT_ANALOG);
- if (nv_encoder->dcb->type == OUTPUT_ANALOG)
- nv_partner = find_encoder(connector, OUTPUT_TMDS);
- if (nv_partner && ((nv_encoder->dcb->type == OUTPUT_ANALOG &&
- nv_partner->dcb->type == OUTPUT_TMDS) ||
- (nv_encoder->dcb->type == OUTPUT_TMDS &&
- nv_partner->dcb->type == OUTPUT_ANALOG))) {
- if (nv_connector->edid->input & DRM_EDID_INPUT_DIGITAL)
- type = OUTPUT_TMDS;
- else
- type = OUTPUT_ANALOG;
- nv_encoder = find_encoder(connector, type);
- }
- nouveau_connector_set_encoder(connector, nv_encoder);
- return connector_status_connected;
- }
- nv_encoder = nouveau_connector_of_detect(connector);
- if (nv_encoder) {
- nouveau_connector_set_encoder(connector, nv_encoder);
- return connector_status_connected;
- }
- detect_analog:
- nv_encoder = find_encoder(connector, OUTPUT_ANALOG);
- if (!nv_encoder && !nouveau_tv_disable)
- nv_encoder = find_encoder(connector, OUTPUT_TV);
- if (nv_encoder && force) {
- struct drm_encoder *encoder = to_drm_encoder(nv_encoder);
- struct drm_encoder_helper_funcs *helper =
- encoder->helper_private;
- if (helper->detect(encoder, connector) ==
- connector_status_connected) {
- nouveau_connector_set_encoder(connector, nv_encoder);
- return connector_status_connected;
- }
- }
- return connector_status_disconnected;
- }
- static enum drm_connector_status
- nouveau_connector_detect_lvds(struct drm_connector *connector, bool force)
- {
- struct drm_device *dev = connector->dev;
- struct drm_nouveau_private *dev_priv = dev->dev_private;
- struct nouveau_connector *nv_connector = nouveau_connector(connector);
- struct nouveau_encoder *nv_encoder = NULL;
- enum drm_connector_status status = connector_status_disconnected;
- /* Cleanup the previous EDID block. */
- if (nv_connector->edid) {
- drm_mode_connector_update_edid_property(connector, NULL);
- kfree(nv_connector->edid);
- nv_connector->edid = NULL;
- }
- nv_encoder = find_encoder(connector, OUTPUT_LVDS);
- if (!nv_encoder)
- return connector_status_disconnected;
- /* Try retrieving EDID via DDC */
- if (!dev_priv->vbios.fp_no_ddc) {
- status = nouveau_connector_detect(connector, force);
- if (status == connector_status_connected)
- goto out;
- }
- /* On some laptops (Sony, i'm looking at you) there appears to
- * be no direct way of accessing the panel's EDID. The only
- * option available to us appears to be to ask ACPI for help..
- *
- * It's important this check's before trying straps, one of the
- * said manufacturer's laptops are configured in such a way
- * the nouveau decides an entry in the VBIOS FP mode table is
- * valid - it's not (rh#613284)
- */
- if (nv_encoder->dcb->lvdsconf.use_acpi_for_edid) {
- if (!nouveau_acpi_edid(dev, connector)) {
- status = connector_status_connected;
- goto out;
- }
- }
- /* If no EDID found above, and the VBIOS indicates a hardcoded
- * modeline is avalilable for the panel, set it as the panel's
- * native mode and exit.
- */
- if (nouveau_bios_fp_mode(dev, NULL) && (dev_priv->vbios.fp_no_ddc ||
- nv_encoder->dcb->lvdsconf.use_straps_for_mode)) {
- status = connector_status_connected;
- goto out;
- }
- /* Still nothing, some VBIOS images have a hardcoded EDID block
- * stored for the panel stored in them.
- */
- if (!dev_priv->vbios.fp_no_ddc) {
- struct edid *edid =
- (struct edid *)nouveau_bios_embedded_edid(dev);
- if (edid) {
- nv_connector->edid = kmalloc(EDID_LENGTH, GFP_KERNEL);
- *(nv_connector->edid) = *edid;
- status = connector_status_connected;
- }
- }
- out:
- #if defined(CONFIG_ACPI_BUTTON) || \
- (defined(CONFIG_ACPI_BUTTON_MODULE) && defined(MODULE))
- if (status == connector_status_connected &&
- !nouveau_ignorelid && !acpi_lid_open())
- status = connector_status_unknown;
- #endif
- drm_mode_connector_update_edid_property(connector, nv_connector->edid);
- nouveau_connector_set_encoder(connector, nv_encoder);
- return status;
- }
- static void
- nouveau_connector_force(struct drm_connector *connector)
- {
- struct nouveau_connector *nv_connector = nouveau_connector(connector);
- struct nouveau_encoder *nv_encoder;
- int type;
- if (nv_connector->type == DCB_CONNECTOR_DVI_I) {
- if (connector->force == DRM_FORCE_ON_DIGITAL)
- type = OUTPUT_TMDS;
- else
- type = OUTPUT_ANALOG;
- } else
- type = OUTPUT_ANY;
- nv_encoder = find_encoder(connector, type);
- if (!nv_encoder) {
- NV_ERROR(connector->dev, "can't find encoder to force %s on!\n",
- drm_get_connector_name(connector));
- connector->status = connector_status_disconnected;
- return;
- }
- nouveau_connector_set_encoder(connector, nv_encoder);
- }
- static int
- nouveau_connector_set_property(struct drm_connector *connector,
- struct drm_property *property, uint64_t value)
- {
- struct drm_nouveau_private *dev_priv = connector->dev->dev_private;
- struct nouveau_display_engine *disp = &dev_priv->engine.display;
- struct nouveau_connector *nv_connector = nouveau_connector(connector);
- struct nouveau_encoder *nv_encoder = nv_connector->detected_encoder;
- struct drm_encoder *encoder = to_drm_encoder(nv_encoder);
- struct drm_device *dev = connector->dev;
- struct nouveau_crtc *nv_crtc;
- int ret;
- nv_crtc = NULL;
- if (connector->encoder && connector->encoder->crtc)
- nv_crtc = nouveau_crtc(connector->encoder->crtc);
- /* Scaling mode */
- if (property == dev->mode_config.scaling_mode_property) {
- bool modeset = false;
- switch (value) {
- case DRM_MODE_SCALE_NONE:
- case DRM_MODE_SCALE_FULLSCREEN:
- case DRM_MODE_SCALE_CENTER:
- case DRM_MODE_SCALE_ASPECT:
- break;
- default:
- return -EINVAL;
- }
- /* LVDS always needs gpu scaling */
- if (connector->connector_type == DRM_MODE_CONNECTOR_LVDS &&
- value == DRM_MODE_SCALE_NONE)
- return -EINVAL;
- /* Changing between GPU and panel scaling requires a full
- * modeset
- */
- if ((nv_connector->scaling_mode == DRM_MODE_SCALE_NONE) ||
- (value == DRM_MODE_SCALE_NONE))
- modeset = true;
- nv_connector->scaling_mode = value;
- if (!nv_crtc)
- return 0;
- if (modeset || !nv_crtc->set_scale) {
- ret = drm_crtc_helper_set_mode(&nv_crtc->base,
- &nv_crtc->base.mode,
- nv_crtc->base.x,
- nv_crtc->base.y, NULL);
- if (!ret)
- return -EINVAL;
- } else {
- ret = nv_crtc->set_scale(nv_crtc, true);
- if (ret)
- return ret;
- }
- return 0;
- }
- /* Underscan */
- if (property == disp->underscan_property) {
- if (nv_connector->underscan != value) {
- nv_connector->underscan = value;
- if (!nv_crtc || !nv_crtc->set_scale)
- return 0;
- return nv_crtc->set_scale(nv_crtc, true);
- }
- return 0;
- }
- if (property == disp->underscan_hborder_property) {
- if (nv_connector->underscan_hborder != value) {
- nv_connector->underscan_hborder = value;
- if (!nv_crtc || !nv_crtc->set_scale)
- return 0;
- return nv_crtc->set_scale(nv_crtc, true);
- }
- return 0;
- }
- if (property == disp->underscan_vborder_property) {
- if (nv_connector->underscan_vborder != value) {
- nv_connector->underscan_vborder = value;
- if (!nv_crtc || !nv_crtc->set_scale)
- return 0;
- return nv_crtc->set_scale(nv_crtc, true);
- }
- return 0;
- }
- /* Dithering */
- if (property == disp->dithering_mode) {
- nv_connector->dithering_mode = value;
- if (!nv_crtc || !nv_crtc->set_dither)
- return 0;
- return nv_crtc->set_dither(nv_crtc, true);
- }
- if (property == disp->dithering_depth) {
- nv_connector->dithering_depth = value;
- if (!nv_crtc || !nv_crtc->set_dither)
- return 0;
- return nv_crtc->set_dither(nv_crtc, true);
- }
- if (nv_crtc && nv_crtc->set_color_vibrance) {
- /* Hue */
- if (property == disp->vibrant_hue_property) {
- nv_crtc->vibrant_hue = value - 90;
- return nv_crtc->set_color_vibrance(nv_crtc, true);
- }
- /* Saturation */
- if (property == disp->color_vibrance_property) {
- nv_crtc->color_vibrance = value - 100;
- return nv_crtc->set_color_vibrance(nv_crtc, true);
- }
- }
- if (nv_encoder && nv_encoder->dcb->type == OUTPUT_TV)
- return get_slave_funcs(encoder)->set_property(
- encoder, connector, property, value);
- return -EINVAL;
- }
- static struct drm_display_mode *
- nouveau_connector_native_mode(struct drm_connector *connector)
- {
- struct drm_connector_helper_funcs *helper = connector->helper_private;
- struct nouveau_connector *nv_connector = nouveau_connector(connector);
- struct drm_device *dev = connector->dev;
- struct drm_display_mode *mode, *largest = NULL;
- int high_w = 0, high_h = 0, high_v = 0;
- list_for_each_entry(mode, &nv_connector->base.probed_modes, head) {
- mode->vrefresh = drm_mode_vrefresh(mode);
- if (helper->mode_valid(connector, mode) != MODE_OK ||
- (mode->flags & DRM_MODE_FLAG_INTERLACE))
- continue;
- /* Use preferred mode if there is one.. */
- if (mode->type & DRM_MODE_TYPE_PREFERRED) {
- NV_DEBUG_KMS(dev, "native mode from preferred\n");
- return drm_mode_duplicate(dev, mode);
- }
- /* Otherwise, take the resolution with the largest width, then
- * height, then vertical refresh
- */
- if (mode->hdisplay < high_w)
- continue;
- if (mode->hdisplay == high_w && mode->vdisplay < high_h)
- continue;
- if (mode->hdisplay == high_w && mode->vdisplay == high_h &&
- mode->vrefresh < high_v)
- continue;
- high_w = mode->hdisplay;
- high_h = mode->vdisplay;
- high_v = mode->vrefresh;
- largest = mode;
- }
- NV_DEBUG_KMS(dev, "native mode from largest: %dx%d@%d\n",
- high_w, high_h, high_v);
- return largest ? drm_mode_duplicate(dev, largest) : NULL;
- }
- struct moderec {
- int hdisplay;
- int vdisplay;
- };
- static struct moderec scaler_modes[] = {
- { 1920, 1200 },
- { 1920, 1080 },
- { 1680, 1050 },
- { 1600, 1200 },
- { 1400, 1050 },
- { 1280, 1024 },
- { 1280, 960 },
- { 1152, 864 },
- { 1024, 768 },
- { 800, 600 },
- { 720, 400 },
- { 640, 480 },
- { 640, 400 },
- { 640, 350 },
- {}
- };
- static int
- nouveau_connector_scaler_modes_add(struct drm_connector *connector)
- {
- struct nouveau_connector *nv_connector = nouveau_connector(connector);
- struct drm_display_mode *native = nv_connector->native_mode, *m;
- struct drm_device *dev = connector->dev;
- struct moderec *mode = &scaler_modes[0];
- int modes = 0;
- if (!native)
- return 0;
- while (mode->hdisplay) {
- if (mode->hdisplay <= native->hdisplay &&
- mode->vdisplay <= native->vdisplay) {
- m = drm_cvt_mode(dev, mode->hdisplay, mode->vdisplay,
- drm_mode_vrefresh(native), false,
- false, false);
- if (!m)
- continue;
- m->type |= DRM_MODE_TYPE_DRIVER;
- drm_mode_probed_add(connector, m);
- modes++;
- }
- mode++;
- }
- return modes;
- }
- static void
- nouveau_connector_detect_depth(struct drm_connector *connector)
- {
- struct drm_nouveau_private *dev_priv = connector->dev->dev_private;
- struct nouveau_connector *nv_connector = nouveau_connector(connector);
- struct nouveau_encoder *nv_encoder = nv_connector->detected_encoder;
- struct nvbios *bios = &dev_priv->vbios;
- struct drm_display_mode *mode = nv_connector->native_mode;
- bool duallink;
- /* if the edid is feeling nice enough to provide this info, use it */
- if (nv_connector->edid && connector->display_info.bpc)
- return;
- /* EDID 1.4 is *supposed* to be supported on eDP, but, Apple... */
- if (nv_connector->type == DCB_CONNECTOR_eDP) {
- connector->display_info.bpc = 6;
- return;
- }
- /* we're out of options unless we're LVDS, default to 8bpc */
- if (nv_encoder->dcb->type != OUTPUT_LVDS) {
- connector->display_info.bpc = 8;
- return;
- }
- connector->display_info.bpc = 6;
- /* LVDS: panel straps */
- if (bios->fp_no_ddc) {
- if (bios->fp.if_is_24bit)
- connector->display_info.bpc = 8;
- return;
- }
- /* LVDS: DDC panel, need to first determine the number of links to
- * know which if_is_24bit flag to check...
- */
- if (nv_connector->edid &&
- nv_connector->type == DCB_CONNECTOR_LVDS_SPWG)
- duallink = ((u8 *)nv_connector->edid)[121] == 2;
- else
- duallink = mode->clock >= bios->fp.duallink_transition_clk;
- if ((!duallink && (bios->fp.strapless_is_24bit & 1)) ||
- ( duallink && (bios->fp.strapless_is_24bit & 2)))
- connector->display_info.bpc = 8;
- }
- static int
- nouveau_connector_get_modes(struct drm_connector *connector)
- {
- struct drm_device *dev = connector->dev;
- struct drm_nouveau_private *dev_priv = dev->dev_private;
- struct nouveau_connector *nv_connector = nouveau_connector(connector);
- struct nouveau_encoder *nv_encoder = nv_connector->detected_encoder;
- struct drm_encoder *encoder = to_drm_encoder(nv_encoder);
- int ret = 0;
- /* destroy the native mode, the attached monitor could have changed.
- */
- if (nv_connector->native_mode) {
- drm_mode_destroy(dev, nv_connector->native_mode);
- nv_connector->native_mode = NULL;
- }
- if (nv_connector->edid)
- ret = drm_add_edid_modes(connector, nv_connector->edid);
- else
- if (nv_encoder->dcb->type == OUTPUT_LVDS &&
- (nv_encoder->dcb->lvdsconf.use_straps_for_mode ||
- dev_priv->vbios.fp_no_ddc) && nouveau_bios_fp_mode(dev, NULL)) {
- struct drm_display_mode mode;
- nouveau_bios_fp_mode(dev, &mode);
- nv_connector->native_mode = drm_mode_duplicate(dev, &mode);
- }
- /* Determine display colour depth for everything except LVDS now,
- * DP requires this before mode_valid() is called.
- */
- if (connector->connector_type != DRM_MODE_CONNECTOR_LVDS)
- nouveau_connector_detect_depth(connector);
- /* Find the native mode if this is a digital panel, if we didn't
- * find any modes through DDC previously add the native mode to
- * the list of modes.
- */
- if (!nv_connector->native_mode)
- nv_connector->native_mode =
- nouveau_connector_native_mode(connector);
- if (ret == 0 && nv_connector->native_mode) {
- struct drm_display_mode *mode;
- mode = drm_mode_duplicate(dev, nv_connector->native_mode);
- drm_mode_probed_add(connector, mode);
- ret = 1;
- }
- /* Determine LVDS colour depth, must happen after determining
- * "native" mode as some VBIOS tables require us to use the
- * pixel clock as part of the lookup...
- */
- if (connector->connector_type == DRM_MODE_CONNECTOR_LVDS)
- nouveau_connector_detect_depth(connector);
- if (nv_encoder->dcb->type == OUTPUT_TV)
- ret = get_slave_funcs(encoder)->get_modes(encoder, connector);
- if (nv_connector->type == DCB_CONNECTOR_LVDS ||
- nv_connector->type == DCB_CONNECTOR_LVDS_SPWG ||
- nv_connector->type == DCB_CONNECTOR_eDP)
- ret += nouveau_connector_scaler_modes_add(connector);
- return ret;
- }
- static unsigned
- get_tmds_link_bandwidth(struct drm_connector *connector)
- {
- struct nouveau_connector *nv_connector = nouveau_connector(connector);
- struct drm_nouveau_private *dev_priv = connector->dev->dev_private;
- struct dcb_entry *dcb = nv_connector->detected_encoder->dcb;
- if (dcb->location != DCB_LOC_ON_CHIP ||
- dev_priv->chipset >= 0x46)
- return 165000;
- else if (dev_priv->chipset >= 0x40)
- return 155000;
- else if (dev_priv->chipset >= 0x18)
- return 135000;
- else
- return 112000;
- }
- static int
- nouveau_connector_mode_valid(struct drm_connector *connector,
- struct drm_display_mode *mode)
- {
- struct nouveau_connector *nv_connector = nouveau_connector(connector);
- struct nouveau_encoder *nv_encoder = nv_connector->detected_encoder;
- struct drm_encoder *encoder = to_drm_encoder(nv_encoder);
- unsigned min_clock = 25000, max_clock = min_clock;
- unsigned clock = mode->clock;
- switch (nv_encoder->dcb->type) {
- case OUTPUT_LVDS:
- if (nv_connector->native_mode &&
- (mode->hdisplay > nv_connector->native_mode->hdisplay ||
- mode->vdisplay > nv_connector->native_mode->vdisplay))
- return MODE_PANEL;
- min_clock = 0;
- max_clock = 400000;
- break;
- case OUTPUT_TMDS:
- max_clock = get_tmds_link_bandwidth(connector);
- if (nouveau_duallink && nv_encoder->dcb->duallink_possible)
- max_clock *= 2;
- break;
- case OUTPUT_ANALOG:
- max_clock = nv_encoder->dcb->crtconf.maxfreq;
- if (!max_clock)
- max_clock = 350000;
- break;
- case OUTPUT_TV:
- return get_slave_funcs(encoder)->mode_valid(encoder, mode);
- case OUTPUT_DP:
- max_clock = nv_encoder->dp.link_nr;
- max_clock *= nv_encoder->dp.link_bw;
- clock = clock * (connector->display_info.bpc * 3) / 10;
- break;
- default:
- BUG_ON(1);
- return MODE_BAD;
- }
- if (clock < min_clock)
- return MODE_CLOCK_LOW;
- if (clock > max_clock)
- return MODE_CLOCK_HIGH;
- return MODE_OK;
- }
- static struct drm_encoder *
- nouveau_connector_best_encoder(struct drm_connector *connector)
- {
- struct nouveau_connector *nv_connector = nouveau_connector(connector);
- if (nv_connector->detected_encoder)
- return to_drm_encoder(nv_connector->detected_encoder);
- return NULL;
- }
- static const struct drm_connector_helper_funcs
- nouveau_connector_helper_funcs = {
- .get_modes = nouveau_connector_get_modes,
- .mode_valid = nouveau_connector_mode_valid,
- .best_encoder = nouveau_connector_best_encoder,
- };
- static const struct drm_connector_funcs
- nouveau_connector_funcs = {
- .dpms = drm_helper_connector_dpms,
- .save = NULL,
- .restore = NULL,
- .detect = nouveau_connector_detect,
- .destroy = nouveau_connector_destroy,
- .fill_modes = drm_helper_probe_single_connector_modes,
- .set_property = nouveau_connector_set_property,
- .force = nouveau_connector_force
- };
- static const struct drm_connector_funcs
- nouveau_connector_funcs_lvds = {
- .dpms = drm_helper_connector_dpms,
- .save = NULL,
- .restore = NULL,
- .detect = nouveau_connector_detect_lvds,
- .destroy = nouveau_connector_destroy,
- .fill_modes = drm_helper_probe_single_connector_modes,
- .set_property = nouveau_connector_set_property,
- .force = nouveau_connector_force
- };
- static int
- drm_conntype_from_dcb(enum dcb_connector_type dcb)
- {
- switch (dcb) {
- case DCB_CONNECTOR_VGA : return DRM_MODE_CONNECTOR_VGA;
- case DCB_CONNECTOR_TV_0 :
- case DCB_CONNECTOR_TV_1 :
- case DCB_CONNECTOR_TV_3 : return DRM_MODE_CONNECTOR_TV;
- case DCB_CONNECTOR_DMS59_0 :
- case DCB_CONNECTOR_DMS59_1 :
- case DCB_CONNECTOR_DVI_I : return DRM_MODE_CONNECTOR_DVII;
- case DCB_CONNECTOR_DVI_D : return DRM_MODE_CONNECTOR_DVID;
- case DCB_CONNECTOR_LVDS :
- case DCB_CONNECTOR_LVDS_SPWG: return DRM_MODE_CONNECTOR_LVDS;
- case DCB_CONNECTOR_DMS59_DP0:
- case DCB_CONNECTOR_DMS59_DP1:
- case DCB_CONNECTOR_DP : return DRM_MODE_CONNECTOR_DisplayPort;
- case DCB_CONNECTOR_eDP : return DRM_MODE_CONNECTOR_eDP;
- case DCB_CONNECTOR_HDMI_0 :
- case DCB_CONNECTOR_HDMI_1 : return DRM_MODE_CONNECTOR_HDMIA;
- default:
- break;
- }
- return DRM_MODE_CONNECTOR_Unknown;
- }
- struct drm_connector *
- nouveau_connector_create(struct drm_device *dev, int index)
- {
- const struct drm_connector_funcs *funcs = &nouveau_connector_funcs;
- struct drm_nouveau_private *dev_priv = dev->dev_private;
- struct nouveau_display_engine *disp = &dev_priv->engine.display;
- struct nouveau_connector *nv_connector = NULL;
- struct drm_connector *connector;
- int type, ret = 0;
- bool dummy;
- NV_DEBUG_KMS(dev, "\n");
- list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
- nv_connector = nouveau_connector(connector);
- if (nv_connector->index == index)
- return connector;
- }
- nv_connector = kzalloc(sizeof(*nv_connector), GFP_KERNEL);
- if (!nv_connector)
- return ERR_PTR(-ENOMEM);
- connector = &nv_connector->base;
- nv_connector->index = index;
- /* attempt to parse vbios connector type and hotplug gpio */
- nv_connector->dcb = dcb_conn(dev, index);
- if (nv_connector->dcb) {
- static const u8 hpd[16] = {
- 0xff, 0x07, 0x08, 0xff, 0xff, 0x51, 0x52, 0xff,
- 0xff, 0xff, 0xff, 0xff, 0xff, 0x5e, 0x5f, 0x60,
- };
- u32 entry = ROM16(nv_connector->dcb[0]);
- if (dcb_conntab(dev)[3] >= 4)
- entry |= (u32)ROM16(nv_connector->dcb[2]) << 16;
- nv_connector->hpd = ffs((entry & 0x07033000) >> 12);
- nv_connector->hpd = hpd[nv_connector->hpd];
- nv_connector->type = nv_connector->dcb[0];
- if (drm_conntype_from_dcb(nv_connector->type) ==
- DRM_MODE_CONNECTOR_Unknown) {
- NV_WARN(dev, "unknown connector type %02x\n",
- nv_connector->type);
- nv_connector->type = DCB_CONNECTOR_NONE;
- }
- /* Gigabyte NX85T */
- if (nv_match_device(dev, 0x0421, 0x1458, 0x344c)) {
- if (nv_connector->type == DCB_CONNECTOR_HDMI_1)
- nv_connector->type = DCB_CONNECTOR_DVI_I;
- }
- /* Gigabyte GV-NX86T512H */
- if (nv_match_device(dev, 0x0402, 0x1458, 0x3455)) {
- if (nv_connector->type == DCB_CONNECTOR_HDMI_1)
- nv_connector->type = DCB_CONNECTOR_DVI_I;
- }
- } else {
- nv_connector->type = DCB_CONNECTOR_NONE;
- nv_connector->hpd = DCB_GPIO_UNUSED;
- }
- /* no vbios data, or an unknown dcb connector type - attempt to
- * figure out something suitable ourselves
- */
- if (nv_connector->type == DCB_CONNECTOR_NONE) {
- struct drm_nouveau_private *dev_priv = dev->dev_private;
- struct dcb_table *dcbt = &dev_priv->vbios.dcb;
- u32 encoders = 0;
- int i;
- for (i = 0; i < dcbt->entries; i++) {
- if (dcbt->entry[i].connector == nv_connector->index)
- encoders |= (1 << dcbt->entry[i].type);
- }
- if (encoders & (1 << OUTPUT_DP)) {
- if (encoders & (1 << OUTPUT_TMDS))
- nv_connector->type = DCB_CONNECTOR_DP;
- else
- nv_connector->type = DCB_CONNECTOR_eDP;
- } else
- if (encoders & (1 << OUTPUT_TMDS)) {
- if (encoders & (1 << OUTPUT_ANALOG))
- nv_connector->type = DCB_CONNECTOR_DVI_I;
- else
- nv_connector->type = DCB_CONNECTOR_DVI_D;
- } else
- if (encoders & (1 << OUTPUT_ANALOG)) {
- nv_connector->type = DCB_CONNECTOR_VGA;
- } else
- if (encoders & (1 << OUTPUT_LVDS)) {
- nv_connector->type = DCB_CONNECTOR_LVDS;
- } else
- if (encoders & (1 << OUTPUT_TV)) {
- nv_connector->type = DCB_CONNECTOR_TV_0;
- }
- }
- type = drm_conntype_from_dcb(nv_connector->type);
- if (type == DRM_MODE_CONNECTOR_LVDS) {
- ret = nouveau_bios_parse_lvds_table(dev, 0, &dummy, &dummy);
- if (ret) {
- NV_ERROR(dev, "Error parsing LVDS table, disabling\n");
- kfree(nv_connector);
- return ERR_PTR(ret);
- }
- funcs = &nouveau_connector_funcs_lvds;
- } else {
- funcs = &nouveau_connector_funcs;
- }
- /* defaults, will get overridden in detect() */
- connector->interlace_allowed = false;
- connector->doublescan_allowed = false;
- drm_connector_init(dev, connector, funcs, type);
- drm_connector_helper_add(connector, &nouveau_connector_helper_funcs);
- /* Init DVI-I specific properties */
- if (nv_connector->type == DCB_CONNECTOR_DVI_I)
- drm_connector_attach_property(connector, dev->mode_config.dvi_i_subconnector_property, 0);
- /* Add overscan compensation options to digital outputs */
- if (disp->underscan_property &&
- (type == DRM_MODE_CONNECTOR_DVID ||
- type == DRM_MODE_CONNECTOR_DVII ||
- type == DRM_MODE_CONNECTOR_HDMIA ||
- type == DRM_MODE_CONNECTOR_DisplayPort)) {
- drm_connector_attach_property(connector,
- disp->underscan_property,
- UNDERSCAN_OFF);
- drm_connector_attach_property(connector,
- disp->underscan_hborder_property,
- 0);
- drm_connector_attach_property(connector,
- disp->underscan_vborder_property,
- 0);
- }
- /* Add hue and saturation options */
- if (disp->vibrant_hue_property)
- drm_connector_attach_property(connector,
- disp->vibrant_hue_property,
- 90);
- if (disp->color_vibrance_property)
- drm_connector_attach_property(connector,
- disp->color_vibrance_property,
- 150);
- switch (nv_connector->type) {
- case DCB_CONNECTOR_VGA:
- if (dev_priv->card_type >= NV_50) {
- drm_connector_attach_property(connector,
- dev->mode_config.scaling_mode_property,
- nv_connector->scaling_mode);
- }
- /* fall-through */
- case DCB_CONNECTOR_TV_0:
- case DCB_CONNECTOR_TV_1:
- case DCB_CONNECTOR_TV_3:
- nv_connector->scaling_mode = DRM_MODE_SCALE_NONE;
- break;
- default:
- nv_connector->scaling_mode = DRM_MODE_SCALE_FULLSCREEN;
- drm_connector_attach_property(connector,
- dev->mode_config.scaling_mode_property,
- nv_connector->scaling_mode);
- if (disp->dithering_mode) {
- nv_connector->dithering_mode = DITHERING_MODE_AUTO;
- drm_connector_attach_property(connector,
- disp->dithering_mode,
- nv_connector->dithering_mode);
- }
- if (disp->dithering_depth) {
- nv_connector->dithering_depth = DITHERING_DEPTH_AUTO;
- drm_connector_attach_property(connector,
- disp->dithering_depth,
- nv_connector->dithering_depth);
- }
- break;
- }
- connector->polled = DRM_CONNECTOR_POLL_CONNECT;
- if (nv_connector->hpd != DCB_GPIO_UNUSED) {
- ret = nouveau_gpio_isr_add(dev, 0, nv_connector->hpd, 0xff,
- nouveau_connector_hotplug,
- connector);
- if (ret == 0)
- connector->polled = DRM_CONNECTOR_POLL_HPD;
- }
- drm_sysfs_connector_add(connector);
- return connector;
- }
- static void
- nouveau_connector_hotplug(void *data, int plugged)
- {
- struct drm_connector *connector = data;
- struct drm_device *dev = connector->dev;
- NV_DEBUG(dev, "%splugged %s\n", plugged ? "" : "un",
- drm_get_connector_name(connector));
- if (plugged)
- drm_helper_connector_dpms(connector, DRM_MODE_DPMS_ON);
- else
- drm_helper_connector_dpms(connector, DRM_MODE_DPMS_OFF);
- drm_helper_hpd_irq_event(dev);
- }
|