Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 Maarten Maathuis. |
| 3 | * All Rights Reserved. |
| 4 | * |
| 5 | * Permission is hereby granted, free of charge, to any person obtaining |
| 6 | * a copy of this software and associated documentation files (the |
| 7 | * "Software"), to deal in the Software without restriction, including |
| 8 | * without limitation the rights to use, copy, modify, merge, publish, |
| 9 | * distribute, sublicense, and/or sell copies of the Software, and to |
| 10 | * permit persons to whom the Software is furnished to do so, subject to |
| 11 | * the following conditions: |
| 12 | * |
| 13 | * The above copyright notice and this permission notice (including the |
| 14 | * next paragraph) shall be included in all copies or substantial |
| 15 | * portions of the Software. |
| 16 | * |
| 17 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 18 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 19 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. |
| 20 | * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE |
| 21 | * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| 22 | * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| 23 | * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 24 | * |
| 25 | */ |
| 26 | |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 27 | #include <drm/drmP.h> |
| 28 | #include <drm/drm_crtc_helper.h> |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 29 | |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 30 | #include "nouveau_fbcon.h" |
Francisco Jerez | 042206c | 2010-10-21 18:19:29 +0200 | [diff] [blame] | 31 | #include "nouveau_hw.h" |
Francisco Jerez | 332b242 | 2010-10-20 23:35:40 +0200 | [diff] [blame] | 32 | #include "nouveau_crtc.h" |
| 33 | #include "nouveau_dma.h" |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 34 | #include "nouveau_gem.h" |
Ben Skeggs | de69185 | 2011-10-17 12:23:41 +1000 | [diff] [blame] | 35 | #include "nouveau_connector.h" |
Ben Skeggs | 45c4e0a | 2011-02-09 11:57:45 +1000 | [diff] [blame] | 36 | #include "nv50_display.h" |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 37 | |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 38 | #include "nouveau_fence.h" |
| 39 | |
Ben Skeggs | e0996ae | 2012-07-10 12:20:17 +1000 | [diff] [blame] | 40 | #include <subdev/bios/gpio.h> |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 41 | #include <subdev/gpio.h> |
| 42 | #include <engine/disp.h> |
Ben Skeggs | e0996ae | 2012-07-10 12:20:17 +1000 | [diff] [blame] | 43 | |
Ben Skeggs | 1d7c71a | 2013-01-31 09:23:34 +1000 | [diff] [blame] | 44 | #include <core/class.h> |
| 45 | |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 46 | static void |
| 47 | nouveau_user_framebuffer_destroy(struct drm_framebuffer *drm_fb) |
| 48 | { |
| 49 | struct nouveau_framebuffer *fb = nouveau_framebuffer(drm_fb); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 50 | |
Luca Barbieri | bc9025b | 2010-02-09 05:49:12 +0000 | [diff] [blame] | 51 | if (fb->nvbo) |
| 52 | drm_gem_object_unreference_unlocked(fb->nvbo->gem); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 53 | |
| 54 | drm_framebuffer_cleanup(drm_fb); |
| 55 | kfree(fb); |
| 56 | } |
| 57 | |
| 58 | static int |
| 59 | nouveau_user_framebuffer_create_handle(struct drm_framebuffer *drm_fb, |
| 60 | struct drm_file *file_priv, |
| 61 | unsigned int *handle) |
| 62 | { |
| 63 | struct nouveau_framebuffer *fb = nouveau_framebuffer(drm_fb); |
| 64 | |
| 65 | return drm_gem_handle_create(file_priv, fb->nvbo->gem, handle); |
| 66 | } |
| 67 | |
| 68 | static const struct drm_framebuffer_funcs nouveau_framebuffer_funcs = { |
| 69 | .destroy = nouveau_user_framebuffer_destroy, |
| 70 | .create_handle = nouveau_user_framebuffer_create_handle, |
| 71 | }; |
| 72 | |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 73 | int |
Ben Skeggs | 45c4e0a | 2011-02-09 11:57:45 +1000 | [diff] [blame] | 74 | nouveau_framebuffer_init(struct drm_device *dev, |
| 75 | struct nouveau_framebuffer *nv_fb, |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 76 | struct drm_mode_fb_cmd2 *mode_cmd, |
Ben Skeggs | 45c4e0a | 2011-02-09 11:57:45 +1000 | [diff] [blame] | 77 | struct nouveau_bo *nvbo) |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 78 | { |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 79 | struct nouveau_drm *drm = nouveau_drm(dev); |
Ben Skeggs | 45c4e0a | 2011-02-09 11:57:45 +1000 | [diff] [blame] | 80 | struct drm_framebuffer *fb = &nv_fb->base; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 81 | int ret; |
| 82 | |
Ben Skeggs | 45c4e0a | 2011-02-09 11:57:45 +1000 | [diff] [blame] | 83 | ret = drm_framebuffer_init(dev, fb, &nouveau_framebuffer_funcs); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 84 | if (ret) { |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 85 | return ret; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 86 | } |
| 87 | |
Ben Skeggs | 45c4e0a | 2011-02-09 11:57:45 +1000 | [diff] [blame] | 88 | drm_helper_mode_fill_fb_struct(fb, mode_cmd); |
| 89 | nv_fb->nvbo = nvbo; |
| 90 | |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 91 | if (nv_device(drm->device)->card_type >= NV_50) { |
Ben Skeggs | 45c4e0a | 2011-02-09 11:57:45 +1000 | [diff] [blame] | 92 | u32 tile_flags = nouveau_bo_tile_layout(nvbo); |
| 93 | if (tile_flags == 0x7a00 || |
| 94 | tile_flags == 0xfe00) |
| 95 | nv_fb->r_dma = NvEvoFB32; |
| 96 | else |
| 97 | if (tile_flags == 0x7000) |
| 98 | nv_fb->r_dma = NvEvoFB16; |
| 99 | else |
| 100 | nv_fb->r_dma = NvEvoVRAM_LP; |
| 101 | |
| 102 | switch (fb->depth) { |
Ben Skeggs | 4f6029d | 2012-11-16 11:54:31 +1000 | [diff] [blame] | 103 | case 8: nv_fb->r_format = 0x1e00; break; |
| 104 | case 15: nv_fb->r_format = 0xe900; break; |
| 105 | case 16: nv_fb->r_format = 0xe800; break; |
Ben Skeggs | 45c4e0a | 2011-02-09 11:57:45 +1000 | [diff] [blame] | 106 | case 24: |
Ben Skeggs | 4f6029d | 2012-11-16 11:54:31 +1000 | [diff] [blame] | 107 | case 32: nv_fb->r_format = 0xcf00; break; |
| 108 | case 30: nv_fb->r_format = 0xd100; break; |
Ben Skeggs | 45c4e0a | 2011-02-09 11:57:45 +1000 | [diff] [blame] | 109 | default: |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 110 | NV_ERROR(drm, "unknown depth %d\n", fb->depth); |
Ben Skeggs | 45c4e0a | 2011-02-09 11:57:45 +1000 | [diff] [blame] | 111 | return -EINVAL; |
| 112 | } |
| 113 | |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 114 | if (nv_device(drm->device)->chipset == 0x50) |
Ben Skeggs | 45c4e0a | 2011-02-09 11:57:45 +1000 | [diff] [blame] | 115 | nv_fb->r_format |= (tile_flags << 8); |
| 116 | |
Ben Skeggs | 2fad3d5 | 2011-07-06 09:59:40 +1000 | [diff] [blame] | 117 | if (!tile_flags) { |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 118 | if (nv_device(drm->device)->card_type < NV_D0) |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 119 | nv_fb->r_pitch = 0x00100000 | fb->pitches[0]; |
Ben Skeggs | 2fad3d5 | 2011-07-06 09:59:40 +1000 | [diff] [blame] | 120 | else |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 121 | nv_fb->r_pitch = 0x01000000 | fb->pitches[0]; |
Ben Skeggs | 2fad3d5 | 2011-07-06 09:59:40 +1000 | [diff] [blame] | 122 | } else { |
Ben Skeggs | 45c4e0a | 2011-02-09 11:57:45 +1000 | [diff] [blame] | 123 | u32 mode = nvbo->tile_mode; |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 124 | if (nv_device(drm->device)->card_type >= NV_C0) |
Ben Skeggs | 45c4e0a | 2011-02-09 11:57:45 +1000 | [diff] [blame] | 125 | mode >>= 4; |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 126 | nv_fb->r_pitch = ((fb->pitches[0] / 4) << 4) | mode; |
Ben Skeggs | 45c4e0a | 2011-02-09 11:57:45 +1000 | [diff] [blame] | 127 | } |
| 128 | } |
| 129 | |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 130 | return 0; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | static struct drm_framebuffer * |
| 134 | nouveau_user_framebuffer_create(struct drm_device *dev, |
| 135 | struct drm_file *file_priv, |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 136 | struct drm_mode_fb_cmd2 *mode_cmd) |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 137 | { |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 138 | struct nouveau_framebuffer *nouveau_fb; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 139 | struct drm_gem_object *gem; |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 140 | int ret; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 141 | |
Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame] | 142 | gem = drm_gem_object_lookup(dev, file_priv, mode_cmd->handles[0]); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 143 | if (!gem) |
Chris Wilson | cce13ff | 2010-08-08 13:36:38 +0100 | [diff] [blame] | 144 | return ERR_PTR(-ENOENT); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 145 | |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 146 | nouveau_fb = kzalloc(sizeof(struct nouveau_framebuffer), GFP_KERNEL); |
| 147 | if (!nouveau_fb) |
Chris Wilson | cce13ff | 2010-08-08 13:36:38 +0100 | [diff] [blame] | 148 | return ERR_PTR(-ENOMEM); |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 149 | |
| 150 | ret = nouveau_framebuffer_init(dev, nouveau_fb, mode_cmd, nouveau_gem_object(gem)); |
| 151 | if (ret) { |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 152 | drm_gem_object_unreference(gem); |
Chris Wilson | cce13ff | 2010-08-08 13:36:38 +0100 | [diff] [blame] | 153 | return ERR_PTR(ret); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 154 | } |
| 155 | |
Dave Airlie | 3865167 | 2010-03-30 05:34:13 +0000 | [diff] [blame] | 156 | return &nouveau_fb->base; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 157 | } |
| 158 | |
Ben Skeggs | 27d5030 | 2011-10-06 12:46:40 +1000 | [diff] [blame] | 159 | static const struct drm_mode_config_funcs nouveau_mode_config_funcs = { |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 160 | .fb_create = nouveau_user_framebuffer_create, |
Dave Airlie | eb1f8e4 | 2010-05-07 06:42:51 +0000 | [diff] [blame] | 161 | .output_poll_changed = nouveau_fbcon_output_poll_changed, |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 162 | }; |
| 163 | |
Ben Skeggs | b29caa5 | 2011-10-06 13:29:05 +1000 | [diff] [blame] | 164 | |
Sascha Hauer | 4a67d39 | 2012-02-06 10:58:17 +0100 | [diff] [blame] | 165 | struct nouveau_drm_prop_enum_list { |
Ben Skeggs | de69185 | 2011-10-17 12:23:41 +1000 | [diff] [blame] | 166 | u8 gen_mask; |
Ben Skeggs | b29caa5 | 2011-10-06 13:29:05 +1000 | [diff] [blame] | 167 | int type; |
| 168 | char *name; |
| 169 | }; |
| 170 | |
Sascha Hauer | 4a67d39 | 2012-02-06 10:58:17 +0100 | [diff] [blame] | 171 | static struct nouveau_drm_prop_enum_list underscan[] = { |
Ben Skeggs | 9285462 | 2011-11-11 23:49:06 +1000 | [diff] [blame] | 172 | { 6, UNDERSCAN_AUTO, "auto" }, |
| 173 | { 6, UNDERSCAN_OFF, "off" }, |
| 174 | { 6, UNDERSCAN_ON, "on" }, |
Ben Skeggs | de69185 | 2011-10-17 12:23:41 +1000 | [diff] [blame] | 175 | {} |
Ben Skeggs | b29caa5 | 2011-10-06 13:29:05 +1000 | [diff] [blame] | 176 | }; |
| 177 | |
Sascha Hauer | 4a67d39 | 2012-02-06 10:58:17 +0100 | [diff] [blame] | 178 | static struct nouveau_drm_prop_enum_list dither_mode[] = { |
Ben Skeggs | de69185 | 2011-10-17 12:23:41 +1000 | [diff] [blame] | 179 | { 7, DITHERING_MODE_AUTO, "auto" }, |
| 180 | { 7, DITHERING_MODE_OFF, "off" }, |
| 181 | { 1, DITHERING_MODE_ON, "on" }, |
| 182 | { 6, DITHERING_MODE_STATIC2X2, "static 2x2" }, |
| 183 | { 6, DITHERING_MODE_DYNAMIC2X2, "dynamic 2x2" }, |
| 184 | { 4, DITHERING_MODE_TEMPORAL, "temporal" }, |
| 185 | {} |
| 186 | }; |
| 187 | |
Sascha Hauer | 4a67d39 | 2012-02-06 10:58:17 +0100 | [diff] [blame] | 188 | static struct nouveau_drm_prop_enum_list dither_depth[] = { |
Ben Skeggs | de69185 | 2011-10-17 12:23:41 +1000 | [diff] [blame] | 189 | { 6, DITHERING_DEPTH_AUTO, "auto" }, |
| 190 | { 6, DITHERING_DEPTH_6BPC, "6 bpc" }, |
| 191 | { 6, DITHERING_DEPTH_8BPC, "8 bpc" }, |
| 192 | {} |
| 193 | }; |
| 194 | |
| 195 | #define PROP_ENUM(p,gen,n,list) do { \ |
Sascha Hauer | 4a67d39 | 2012-02-06 10:58:17 +0100 | [diff] [blame] | 196 | struct nouveau_drm_prop_enum_list *l = (list); \ |
Ben Skeggs | de69185 | 2011-10-17 12:23:41 +1000 | [diff] [blame] | 197 | int c = 0; \ |
| 198 | while (l->gen_mask) { \ |
| 199 | if (l->gen_mask & (1 << (gen))) \ |
| 200 | c++; \ |
| 201 | l++; \ |
| 202 | } \ |
| 203 | if (c) { \ |
| 204 | p = drm_property_create(dev, DRM_MODE_PROP_ENUM, n, c); \ |
| 205 | l = (list); \ |
| 206 | c = 0; \ |
| 207 | while (p && l->gen_mask) { \ |
| 208 | if (l->gen_mask & (1 << (gen))) { \ |
| 209 | drm_property_add_enum(p, c, l->type, l->name); \ |
| 210 | c++; \ |
| 211 | } \ |
| 212 | l++; \ |
| 213 | } \ |
| 214 | } \ |
| 215 | } while(0) |
| 216 | |
Francisco Jerez | 042206c | 2010-10-21 18:19:29 +0200 | [diff] [blame] | 217 | int |
Ben Skeggs | f62b27d | 2011-11-09 15:18:47 +1000 | [diff] [blame] | 218 | nouveau_display_init(struct drm_device *dev) |
| 219 | { |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 220 | struct nouveau_drm *drm = nouveau_drm(dev); |
| 221 | struct nouveau_display *disp = nouveau_display(dev); |
| 222 | struct nouveau_gpio *gpio = nouveau_gpio(drm->device); |
Ben Skeggs | 52c4d76 | 2011-11-24 12:59:44 +1000 | [diff] [blame] | 223 | struct drm_connector *connector; |
Ben Skeggs | f62b27d | 2011-11-09 15:18:47 +1000 | [diff] [blame] | 224 | int ret; |
| 225 | |
| 226 | ret = disp->init(dev); |
Ben Skeggs | 52c4d76 | 2011-11-24 12:59:44 +1000 | [diff] [blame] | 227 | if (ret) |
| 228 | return ret; |
| 229 | |
Ben Skeggs | 7df898b | 2012-01-31 09:16:59 +1000 | [diff] [blame] | 230 | /* enable polling for external displays */ |
Ben Skeggs | 52c4d76 | 2011-11-24 12:59:44 +1000 | [diff] [blame] | 231 | drm_kms_helper_poll_enable(dev); |
| 232 | |
| 233 | /* enable hotplug interrupts */ |
| 234 | list_for_each_entry(connector, &dev->mode_config.connector_list, head) { |
| 235 | struct nouveau_connector *conn = nouveau_connector(connector); |
Ben Skeggs | 4f47643 | 2013-02-03 12:56:16 +1000 | [diff] [blame] | 236 | if (gpio && conn->hpd.func != DCB_GPIO_UNUSED) { |
| 237 | nouveau_event_get(gpio->events, conn->hpd.line, |
| 238 | &conn->hpd_func); |
| 239 | } |
Ben Skeggs | f62b27d | 2011-11-09 15:18:47 +1000 | [diff] [blame] | 240 | } |
| 241 | |
| 242 | return ret; |
| 243 | } |
| 244 | |
| 245 | void |
| 246 | nouveau_display_fini(struct drm_device *dev) |
| 247 | { |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 248 | struct nouveau_drm *drm = nouveau_drm(dev); |
| 249 | struct nouveau_display *disp = nouveau_display(dev); |
| 250 | struct nouveau_gpio *gpio = nouveau_gpio(drm->device); |
Ben Skeggs | 52c4d76 | 2011-11-24 12:59:44 +1000 | [diff] [blame] | 251 | struct drm_connector *connector; |
| 252 | |
| 253 | /* disable hotplug interrupts */ |
| 254 | list_for_each_entry(connector, &dev->mode_config.connector_list, head) { |
| 255 | struct nouveau_connector *conn = nouveau_connector(connector); |
Ben Skeggs | 4f47643 | 2013-02-03 12:56:16 +1000 | [diff] [blame] | 256 | if (gpio && conn->hpd.func != DCB_GPIO_UNUSED) { |
| 257 | nouveau_event_put(gpio->events, conn->hpd.line, |
| 258 | &conn->hpd_func); |
| 259 | } |
Ben Skeggs | 52c4d76 | 2011-11-24 12:59:44 +1000 | [diff] [blame] | 260 | } |
Ben Skeggs | f62b27d | 2011-11-09 15:18:47 +1000 | [diff] [blame] | 261 | |
| 262 | drm_kms_helper_poll_disable(dev); |
| 263 | disp->fini(dev); |
| 264 | } |
| 265 | |
| 266 | int |
Ben Skeggs | 27d5030 | 2011-10-06 12:46:40 +1000 | [diff] [blame] | 267 | nouveau_display_create(struct drm_device *dev) |
| 268 | { |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 269 | struct nouveau_drm *drm = nouveau_drm(dev); |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 270 | struct nouveau_display *disp; |
Ben Skeggs | e412e95 | 2012-10-31 12:16:06 +1000 | [diff] [blame] | 271 | u32 pclass = dev->pdev->class >> 8; |
Ben Skeggs | de69185 | 2011-10-17 12:23:41 +1000 | [diff] [blame] | 272 | int ret, gen; |
Ben Skeggs | 27d5030 | 2011-10-06 12:46:40 +1000 | [diff] [blame] | 273 | |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 274 | disp = drm->display = kzalloc(sizeof(*disp), GFP_KERNEL); |
| 275 | if (!disp) |
| 276 | return -ENOMEM; |
| 277 | |
Ben Skeggs | 27d5030 | 2011-10-06 12:46:40 +1000 | [diff] [blame] | 278 | drm_mode_config_init(dev); |
| 279 | drm_mode_create_scaling_mode_property(dev); |
Ben Skeggs | 4ceca5f | 2011-10-14 23:55:47 +1000 | [diff] [blame] | 280 | drm_mode_create_dvi_i_properties(dev); |
Ben Skeggs | 27d5030 | 2011-10-06 12:46:40 +1000 | [diff] [blame] | 281 | |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 282 | if (nv_device(drm->device)->card_type < NV_50) |
Ben Skeggs | de69185 | 2011-10-17 12:23:41 +1000 | [diff] [blame] | 283 | gen = 0; |
| 284 | else |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 285 | if (nv_device(drm->device)->card_type < NV_D0) |
Ben Skeggs | de69185 | 2011-10-17 12:23:41 +1000 | [diff] [blame] | 286 | gen = 1; |
| 287 | else |
| 288 | gen = 2; |
| 289 | |
| 290 | PROP_ENUM(disp->dithering_mode, gen, "dithering mode", dither_mode); |
| 291 | PROP_ENUM(disp->dithering_depth, gen, "dithering depth", dither_depth); |
| 292 | PROP_ENUM(disp->underscan_property, gen, "underscan", underscan); |
Ben Skeggs | b29caa5 | 2011-10-06 13:29:05 +1000 | [diff] [blame] | 293 | |
| 294 | disp->underscan_hborder_property = |
Sascha Hauer | d9bc3c0 | 2012-02-06 10:58:18 +0100 | [diff] [blame] | 295 | drm_property_create_range(dev, 0, "underscan hborder", 0, 128); |
Ben Skeggs | b29caa5 | 2011-10-06 13:29:05 +1000 | [diff] [blame] | 296 | |
| 297 | disp->underscan_vborder_property = |
Sascha Hauer | d9bc3c0 | 2012-02-06 10:58:18 +0100 | [diff] [blame] | 298 | drm_property_create_range(dev, 0, "underscan vborder", 0, 128); |
Ben Skeggs | b29caa5 | 2011-10-06 13:29:05 +1000 | [diff] [blame] | 299 | |
Ben Skeggs | f9887d0 | 2012-11-21 13:03:42 +1000 | [diff] [blame] | 300 | if (gen >= 1) { |
Marcin Slusarz | 03e9a04 | 2013-01-27 16:43:00 +0100 | [diff] [blame] | 301 | /* -90..+90 */ |
Christoph Bumiller | df26bc9 | 2012-01-21 23:13:26 +0100 | [diff] [blame] | 302 | disp->vibrant_hue_property = |
Marcin Slusarz | 03e9a04 | 2013-01-27 16:43:00 +0100 | [diff] [blame] | 303 | drm_property_create_range(dev, 0, "vibrant hue", 0, 180); |
Christoph Bumiller | df26bc9 | 2012-01-21 23:13:26 +0100 | [diff] [blame] | 304 | |
Marcin Slusarz | 03e9a04 | 2013-01-27 16:43:00 +0100 | [diff] [blame] | 305 | /* -100..+100 */ |
Christoph Bumiller | df26bc9 | 2012-01-21 23:13:26 +0100 | [diff] [blame] | 306 | disp->color_vibrance_property = |
Marcin Slusarz | 03e9a04 | 2013-01-27 16:43:00 +0100 | [diff] [blame] | 307 | drm_property_create_range(dev, 0, "color vibrance", 0, 200); |
Christoph Bumiller | df26bc9 | 2012-01-21 23:13:26 +0100 | [diff] [blame] | 308 | } |
| 309 | |
Laurent Pinchart | e6ecefa | 2012-05-17 13:27:23 +0200 | [diff] [blame] | 310 | dev->mode_config.funcs = &nouveau_mode_config_funcs; |
Ben Skeggs | 27d5030 | 2011-10-06 12:46:40 +1000 | [diff] [blame] | 311 | dev->mode_config.fb_base = pci_resource_start(dev->pdev, 1); |
| 312 | |
| 313 | dev->mode_config.min_width = 0; |
| 314 | dev->mode_config.min_height = 0; |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 315 | if (nv_device(drm->device)->card_type < NV_10) { |
Ben Skeggs | 27d5030 | 2011-10-06 12:46:40 +1000 | [diff] [blame] | 316 | dev->mode_config.max_width = 2048; |
| 317 | dev->mode_config.max_height = 2048; |
| 318 | } else |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 319 | if (nv_device(drm->device)->card_type < NV_50) { |
Ben Skeggs | 27d5030 | 2011-10-06 12:46:40 +1000 | [diff] [blame] | 320 | dev->mode_config.max_width = 4096; |
| 321 | dev->mode_config.max_height = 4096; |
| 322 | } else { |
| 323 | dev->mode_config.max_width = 8192; |
| 324 | dev->mode_config.max_height = 8192; |
| 325 | } |
| 326 | |
Dave Airlie | f137799 | 2012-02-20 14:39:11 +0000 | [diff] [blame] | 327 | dev->mode_config.preferred_depth = 24; |
| 328 | dev->mode_config.prefer_shadow = 1; |
| 329 | |
Ben Skeggs | f62b27d | 2011-11-09 15:18:47 +1000 | [diff] [blame] | 330 | drm_kms_helper_poll_init(dev); |
| 331 | drm_kms_helper_poll_disable(dev); |
| 332 | |
Ben Skeggs | e412e95 | 2012-10-31 12:16:06 +1000 | [diff] [blame] | 333 | if (nouveau_modeset == 1 || |
| 334 | (nouveau_modeset < 0 && pclass == PCI_CLASS_DISPLAY_VGA)) { |
Ben Skeggs | 9430738 | 2012-10-31 12:11:15 +1000 | [diff] [blame] | 335 | if (nv_device(drm->device)->card_type < NV_50) |
| 336 | ret = nv04_display_create(dev); |
| 337 | else |
Ben Skeggs | e225f44 | 2012-11-21 14:40:21 +1000 | [diff] [blame] | 338 | ret = nv50_display_create(dev); |
Ben Skeggs | f62b27d | 2011-11-09 15:18:47 +1000 | [diff] [blame] | 339 | if (ret) |
Ben Skeggs | 9430738 | 2012-10-31 12:11:15 +1000 | [diff] [blame] | 340 | goto disp_create_err; |
| 341 | |
| 342 | if (dev->mode_config.num_crtc) { |
| 343 | ret = drm_vblank_init(dev, dev->mode_config.num_crtc); |
| 344 | if (ret) |
| 345 | goto vblank_err; |
| 346 | } |
| 347 | |
| 348 | nouveau_backlight_init(dev); |
Ben Skeggs | f62b27d | 2011-11-09 15:18:47 +1000 | [diff] [blame] | 349 | } |
| 350 | |
Marcin Slusarz | 5ace2c9 | 2012-04-15 14:36:08 +0200 | [diff] [blame] | 351 | return 0; |
| 352 | |
| 353 | vblank_err: |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 354 | disp->dtor(dev); |
Marcin Slusarz | 5ace2c9 | 2012-04-15 14:36:08 +0200 | [diff] [blame] | 355 | disp_create_err: |
| 356 | drm_kms_helper_poll_fini(dev); |
| 357 | drm_mode_config_cleanup(dev); |
Ben Skeggs | 2a44e49 | 2011-11-09 11:36:33 +1000 | [diff] [blame] | 358 | return ret; |
Ben Skeggs | 27d5030 | 2011-10-06 12:46:40 +1000 | [diff] [blame] | 359 | } |
| 360 | |
| 361 | void |
| 362 | nouveau_display_destroy(struct drm_device *dev) |
| 363 | { |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 364 | struct nouveau_display *disp = nouveau_display(dev); |
Ben Skeggs | 27d5030 | 2011-10-06 12:46:40 +1000 | [diff] [blame] | 365 | |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 366 | nouveau_backlight_exit(dev); |
Ben Skeggs | f62b27d | 2011-11-09 15:18:47 +1000 | [diff] [blame] | 367 | drm_vblank_cleanup(dev); |
| 368 | |
Ben Skeggs | d6bf2f3 | 2012-10-30 10:59:12 +1000 | [diff] [blame] | 369 | drm_kms_helper_poll_fini(dev); |
| 370 | drm_mode_config_cleanup(dev); |
| 371 | |
Ben Skeggs | 9430738 | 2012-10-31 12:11:15 +1000 | [diff] [blame] | 372 | if (disp->dtor) |
| 373 | disp->dtor(dev); |
Ben Skeggs | f62b27d | 2011-11-09 15:18:47 +1000 | [diff] [blame] | 374 | |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 375 | nouveau_drm(dev)->display = NULL; |
| 376 | kfree(disp); |
| 377 | } |
| 378 | |
| 379 | int |
| 380 | nouveau_display_suspend(struct drm_device *dev) |
| 381 | { |
| 382 | struct nouveau_drm *drm = nouveau_drm(dev); |
| 383 | struct drm_crtc *crtc; |
| 384 | |
| 385 | nouveau_display_fini(dev); |
| 386 | |
| 387 | NV_INFO(drm, "unpinning framebuffer(s)...\n"); |
| 388 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
| 389 | struct nouveau_framebuffer *nouveau_fb; |
| 390 | |
| 391 | nouveau_fb = nouveau_framebuffer(crtc->fb); |
| 392 | if (!nouveau_fb || !nouveau_fb->nvbo) |
| 393 | continue; |
| 394 | |
| 395 | nouveau_bo_unpin(nouveau_fb->nvbo); |
| 396 | } |
| 397 | |
| 398 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
| 399 | struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); |
| 400 | |
| 401 | nouveau_bo_unmap(nv_crtc->cursor.nvbo); |
| 402 | nouveau_bo_unpin(nv_crtc->cursor.nvbo); |
| 403 | } |
| 404 | |
| 405 | return 0; |
| 406 | } |
| 407 | |
| 408 | void |
| 409 | nouveau_display_resume(struct drm_device *dev) |
| 410 | { |
| 411 | struct nouveau_drm *drm = nouveau_drm(dev); |
| 412 | struct drm_crtc *crtc; |
| 413 | int ret; |
| 414 | |
| 415 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
| 416 | struct nouveau_framebuffer *nouveau_fb; |
| 417 | |
| 418 | nouveau_fb = nouveau_framebuffer(crtc->fb); |
| 419 | if (!nouveau_fb || !nouveau_fb->nvbo) |
| 420 | continue; |
| 421 | |
| 422 | nouveau_bo_pin(nouveau_fb->nvbo, TTM_PL_FLAG_VRAM); |
| 423 | } |
| 424 | |
| 425 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
| 426 | struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); |
| 427 | |
| 428 | ret = nouveau_bo_pin(nv_crtc->cursor.nvbo, TTM_PL_FLAG_VRAM); |
| 429 | if (!ret) |
| 430 | ret = nouveau_bo_map(nv_crtc->cursor.nvbo); |
| 431 | if (ret) |
| 432 | NV_ERROR(drm, "Could not pin/map cursor.\n"); |
| 433 | } |
| 434 | |
| 435 | nouveau_fbcon_set_suspend(dev, 0); |
| 436 | nouveau_fbcon_zfill_all(dev); |
| 437 | |
| 438 | nouveau_display_init(dev); |
| 439 | |
| 440 | /* Force CLUT to get re-loaded during modeset */ |
| 441 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
| 442 | struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); |
| 443 | |
| 444 | nv_crtc->lut.depth = 0; |
| 445 | } |
| 446 | |
| 447 | drm_helper_resume_force_mode(dev); |
| 448 | |
| 449 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
| 450 | struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); |
| 451 | u32 offset = nv_crtc->cursor.nvbo->bo.offset; |
| 452 | |
| 453 | nv_crtc->cursor.set_offset(nv_crtc, offset); |
| 454 | nv_crtc->cursor.set_pos(nv_crtc, nv_crtc->cursor_saved_x, |
| 455 | nv_crtc->cursor_saved_y); |
| 456 | } |
Ben Skeggs | 27d5030 | 2011-10-06 12:46:40 +1000 | [diff] [blame] | 457 | } |
| 458 | |
Francisco Jerez | 332b242 | 2010-10-20 23:35:40 +0200 | [diff] [blame] | 459 | static int |
| 460 | nouveau_page_flip_reserve(struct nouveau_bo *old_bo, |
| 461 | struct nouveau_bo *new_bo) |
| 462 | { |
| 463 | int ret; |
| 464 | |
| 465 | ret = nouveau_bo_pin(new_bo, TTM_PL_FLAG_VRAM); |
| 466 | if (ret) |
| 467 | return ret; |
| 468 | |
| 469 | ret = ttm_bo_reserve(&new_bo->bo, false, false, false, 0); |
| 470 | if (ret) |
| 471 | goto fail; |
| 472 | |
Marcin Slusarz | 2c14575 | 2012-10-05 12:26:32 +0200 | [diff] [blame] | 473 | if (likely(old_bo != new_bo)) { |
| 474 | ret = ttm_bo_reserve(&old_bo->bo, false, false, false, 0); |
| 475 | if (ret) |
| 476 | goto fail_unreserve; |
| 477 | } |
Francisco Jerez | 332b242 | 2010-10-20 23:35:40 +0200 | [diff] [blame] | 478 | |
| 479 | return 0; |
| 480 | |
| 481 | fail_unreserve: |
| 482 | ttm_bo_unreserve(&new_bo->bo); |
| 483 | fail: |
| 484 | nouveau_bo_unpin(new_bo); |
| 485 | return ret; |
| 486 | } |
| 487 | |
| 488 | static void |
| 489 | nouveau_page_flip_unreserve(struct nouveau_bo *old_bo, |
| 490 | struct nouveau_bo *new_bo, |
| 491 | struct nouveau_fence *fence) |
| 492 | { |
| 493 | nouveau_bo_fence(new_bo, fence); |
| 494 | ttm_bo_unreserve(&new_bo->bo); |
| 495 | |
Marcin Slusarz | 2c14575 | 2012-10-05 12:26:32 +0200 | [diff] [blame] | 496 | if (likely(old_bo != new_bo)) { |
| 497 | nouveau_bo_fence(old_bo, fence); |
| 498 | ttm_bo_unreserve(&old_bo->bo); |
| 499 | } |
Francisco Jerez | 332b242 | 2010-10-20 23:35:40 +0200 | [diff] [blame] | 500 | |
| 501 | nouveau_bo_unpin(old_bo); |
| 502 | } |
| 503 | |
| 504 | static int |
| 505 | nouveau_page_flip_emit(struct nouveau_channel *chan, |
| 506 | struct nouveau_bo *old_bo, |
| 507 | struct nouveau_bo *new_bo, |
| 508 | struct nouveau_page_flip_state *s, |
| 509 | struct nouveau_fence **pfence) |
| 510 | { |
Ben Skeggs | f589be8 | 2012-07-22 11:55:54 +1000 | [diff] [blame] | 511 | struct nouveau_fence_chan *fctx = chan->fence; |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 512 | struct nouveau_drm *drm = chan->drm; |
| 513 | struct drm_device *dev = drm->dev; |
Francisco Jerez | 332b242 | 2010-10-20 23:35:40 +0200 | [diff] [blame] | 514 | unsigned long flags; |
| 515 | int ret; |
| 516 | |
| 517 | /* Queue it to the pending list */ |
| 518 | spin_lock_irqsave(&dev->event_lock, flags); |
Ben Skeggs | f589be8 | 2012-07-22 11:55:54 +1000 | [diff] [blame] | 519 | list_add_tail(&s->head, &fctx->flip); |
Francisco Jerez | 332b242 | 2010-10-20 23:35:40 +0200 | [diff] [blame] | 520 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 521 | |
| 522 | /* Synchronize with the old framebuffer */ |
| 523 | ret = nouveau_fence_sync(old_bo->bo.sync_obj, chan); |
| 524 | if (ret) |
| 525 | goto fail; |
| 526 | |
| 527 | /* Emit the pageflip */ |
Ben Skeggs | d5316e2 | 2012-03-21 13:53:49 +1000 | [diff] [blame] | 528 | ret = RING_SPACE(chan, 3); |
Francisco Jerez | 332b242 | 2010-10-20 23:35:40 +0200 | [diff] [blame] | 529 | if (ret) |
| 530 | goto fail; |
| 531 | |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 532 | if (nv_device(drm->device)->card_type < NV_C0) { |
Ben Skeggs | 6d59702 | 2012-04-01 21:09:13 +1000 | [diff] [blame] | 533 | BEGIN_NV04(chan, NvSubSw, NV_SW_PAGE_FLIP, 1); |
Ben Skeggs | d5316e2 | 2012-03-21 13:53:49 +1000 | [diff] [blame] | 534 | OUT_RING (chan, 0x00000000); |
| 535 | OUT_RING (chan, 0x00000000); |
| 536 | } else { |
Ben Skeggs | 6d59702 | 2012-04-01 21:09:13 +1000 | [diff] [blame] | 537 | BEGIN_NVC0(chan, 0, NV10_SUBCHAN_REF_CNT, 1); |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 538 | OUT_RING (chan, 0); |
Ben Skeggs | 6d59702 | 2012-04-01 21:09:13 +1000 | [diff] [blame] | 539 | BEGIN_IMC0(chan, 0, NVSW_SUBCHAN_PAGE_FLIP, 0x0000); |
Ben Skeggs | d5316e2 | 2012-03-21 13:53:49 +1000 | [diff] [blame] | 540 | } |
Ben Skeggs | bd2f203 | 2011-02-08 15:16:23 +1000 | [diff] [blame] | 541 | FIRE_RING (chan); |
Francisco Jerez | 332b242 | 2010-10-20 23:35:40 +0200 | [diff] [blame] | 542 | |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame^] | 543 | ret = nouveau_fence_new(chan, false, pfence); |
Francisco Jerez | 332b242 | 2010-10-20 23:35:40 +0200 | [diff] [blame] | 544 | if (ret) |
| 545 | goto fail; |
| 546 | |
| 547 | return 0; |
| 548 | fail: |
| 549 | spin_lock_irqsave(&dev->event_lock, flags); |
| 550 | list_del(&s->head); |
| 551 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 552 | return ret; |
| 553 | } |
| 554 | |
| 555 | int |
| 556 | nouveau_crtc_page_flip(struct drm_crtc *crtc, struct drm_framebuffer *fb, |
| 557 | struct drm_pending_vblank_event *event) |
| 558 | { |
| 559 | struct drm_device *dev = crtc->dev; |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 560 | struct nouveau_drm *drm = nouveau_drm(dev); |
Francisco Jerez | 332b242 | 2010-10-20 23:35:40 +0200 | [diff] [blame] | 561 | struct nouveau_bo *old_bo = nouveau_framebuffer(crtc->fb)->nvbo; |
| 562 | struct nouveau_bo *new_bo = nouveau_framebuffer(fb)->nvbo; |
| 563 | struct nouveau_page_flip_state *s; |
Ben Skeggs | d375e7d5 | 2012-04-30 13:30:00 +1000 | [diff] [blame] | 564 | struct nouveau_channel *chan = NULL; |
Francisco Jerez | 332b242 | 2010-10-20 23:35:40 +0200 | [diff] [blame] | 565 | struct nouveau_fence *fence; |
| 566 | int ret; |
| 567 | |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 568 | if (!drm->channel) |
Francisco Jerez | 332b242 | 2010-10-20 23:35:40 +0200 | [diff] [blame] | 569 | return -ENODEV; |
| 570 | |
| 571 | s = kzalloc(sizeof(*s), GFP_KERNEL); |
| 572 | if (!s) |
| 573 | return -ENOMEM; |
| 574 | |
| 575 | /* Don't let the buffers go away while we flip */ |
| 576 | ret = nouveau_page_flip_reserve(old_bo, new_bo); |
| 577 | if (ret) |
| 578 | goto fail_free; |
| 579 | |
| 580 | /* Initialize a page flip struct */ |
| 581 | *s = (struct nouveau_page_flip_state) |
Benjamin Franzke | 2503c6f | 2011-02-16 10:04:48 +0100 | [diff] [blame] | 582 | { { }, event, nouveau_crtc(crtc)->index, |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 583 | fb->bits_per_pixel, fb->pitches[0], crtc->x, crtc->y, |
Francisco Jerez | 332b242 | 2010-10-20 23:35:40 +0200 | [diff] [blame] | 584 | new_bo->bo.offset }; |
| 585 | |
| 586 | /* Choose the channel the flip will be handled in */ |
Ben Skeggs | d375e7d5 | 2012-04-30 13:30:00 +1000 | [diff] [blame] | 587 | fence = new_bo->bo.sync_obj; |
| 588 | if (fence) |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 589 | chan = fence->channel; |
Francisco Jerez | 332b242 | 2010-10-20 23:35:40 +0200 | [diff] [blame] | 590 | if (!chan) |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 591 | chan = drm->channel; |
| 592 | mutex_lock(&chan->cli->mutex); |
Francisco Jerez | 332b242 | 2010-10-20 23:35:40 +0200 | [diff] [blame] | 593 | |
| 594 | /* Emit a page flip */ |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 595 | if (nv_device(drm->device)->card_type >= NV_50) { |
Ben Skeggs | e225f44 | 2012-11-21 14:40:21 +1000 | [diff] [blame] | 596 | ret = nv50_display_flip_next(crtc, fb, chan, 0); |
Ben Skeggs | d7117e0 | 2011-02-07 14:27:04 +1000 | [diff] [blame] | 597 | if (ret) { |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 598 | mutex_unlock(&chan->cli->mutex); |
Ben Skeggs | d7117e0 | 2011-02-07 14:27:04 +1000 | [diff] [blame] | 599 | goto fail_unreserve; |
| 600 | } |
| 601 | } |
| 602 | |
Francisco Jerez | 332b242 | 2010-10-20 23:35:40 +0200 | [diff] [blame] | 603 | ret = nouveau_page_flip_emit(chan, old_bo, new_bo, s, &fence); |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 604 | mutex_unlock(&chan->cli->mutex); |
Francisco Jerez | 332b242 | 2010-10-20 23:35:40 +0200 | [diff] [blame] | 605 | if (ret) |
| 606 | goto fail_unreserve; |
| 607 | |
| 608 | /* Update the crtc struct and cleanup */ |
| 609 | crtc->fb = fb; |
| 610 | |
| 611 | nouveau_page_flip_unreserve(old_bo, new_bo, fence); |
| 612 | nouveau_fence_unref(&fence); |
| 613 | return 0; |
| 614 | |
| 615 | fail_unreserve: |
| 616 | nouveau_page_flip_unreserve(old_bo, new_bo, NULL); |
| 617 | fail_free: |
| 618 | kfree(s); |
| 619 | return ret; |
| 620 | } |
| 621 | |
| 622 | int |
| 623 | nouveau_finish_page_flip(struct nouveau_channel *chan, |
| 624 | struct nouveau_page_flip_state *ps) |
| 625 | { |
Ben Skeggs | f589be8 | 2012-07-22 11:55:54 +1000 | [diff] [blame] | 626 | struct nouveau_fence_chan *fctx = chan->fence; |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 627 | struct nouveau_drm *drm = chan->drm; |
| 628 | struct drm_device *dev = drm->dev; |
Francisco Jerez | 332b242 | 2010-10-20 23:35:40 +0200 | [diff] [blame] | 629 | struct nouveau_page_flip_state *s; |
| 630 | unsigned long flags; |
| 631 | |
| 632 | spin_lock_irqsave(&dev->event_lock, flags); |
| 633 | |
Ben Skeggs | f589be8 | 2012-07-22 11:55:54 +1000 | [diff] [blame] | 634 | if (list_empty(&fctx->flip)) { |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 635 | NV_ERROR(drm, "unexpected pageflip\n"); |
Francisco Jerez | 332b242 | 2010-10-20 23:35:40 +0200 | [diff] [blame] | 636 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 637 | return -EINVAL; |
| 638 | } |
| 639 | |
Ben Skeggs | f589be8 | 2012-07-22 11:55:54 +1000 | [diff] [blame] | 640 | s = list_first_entry(&fctx->flip, struct nouveau_page_flip_state, head); |
Francisco Jerez | 332b242 | 2010-10-20 23:35:40 +0200 | [diff] [blame] | 641 | if (s->event) { |
| 642 | struct drm_pending_vblank_event *e = s->event; |
| 643 | struct timeval now; |
| 644 | |
| 645 | do_gettimeofday(&now); |
| 646 | e->event.sequence = 0; |
| 647 | e->event.tv_sec = now.tv_sec; |
| 648 | e->event.tv_usec = now.tv_usec; |
| 649 | list_add_tail(&e->base.link, &e->base.file_priv->event_list); |
| 650 | wake_up_interruptible(&e->base.file_priv->event_wait); |
| 651 | } |
| 652 | |
| 653 | list_del(&s->head); |
Ben Skeggs | d7117e0 | 2011-02-07 14:27:04 +1000 | [diff] [blame] | 654 | if (ps) |
| 655 | *ps = *s; |
Francisco Jerez | 332b242 | 2010-10-20 23:35:40 +0200 | [diff] [blame] | 656 | kfree(s); |
| 657 | |
| 658 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 659 | return 0; |
| 660 | } |
Ben Skeggs | 33dbc27 | 2011-09-30 08:55:50 +1000 | [diff] [blame] | 661 | |
| 662 | int |
Ben Skeggs | f589be8 | 2012-07-22 11:55:54 +1000 | [diff] [blame] | 663 | nouveau_flip_complete(void *data) |
| 664 | { |
| 665 | struct nouveau_channel *chan = data; |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 666 | struct nouveau_drm *drm = chan->drm; |
Ben Skeggs | f589be8 | 2012-07-22 11:55:54 +1000 | [diff] [blame] | 667 | struct nouveau_page_flip_state state; |
| 668 | |
| 669 | if (!nouveau_finish_page_flip(chan, &state)) { |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 670 | if (nv_device(drm->device)->card_type < NV_50) { |
| 671 | nv_set_crtc_base(drm->dev, state.crtc, state.offset + |
Ben Skeggs | f589be8 | 2012-07-22 11:55:54 +1000 | [diff] [blame] | 672 | state.y * state.pitch + |
| 673 | state.x * state.bpp / 8); |
| 674 | } |
| 675 | } |
| 676 | |
| 677 | return 0; |
| 678 | } |
| 679 | |
| 680 | int |
Ben Skeggs | 33dbc27 | 2011-09-30 08:55:50 +1000 | [diff] [blame] | 681 | nouveau_display_dumb_create(struct drm_file *file_priv, struct drm_device *dev, |
| 682 | struct drm_mode_create_dumb *args) |
| 683 | { |
| 684 | struct nouveau_bo *bo; |
| 685 | int ret; |
| 686 | |
| 687 | args->pitch = roundup(args->width * (args->bpp / 8), 256); |
| 688 | args->size = args->pitch * args->height; |
| 689 | args->size = roundup(args->size, PAGE_SIZE); |
| 690 | |
Dave Airlie | 610bd7d | 2012-09-14 13:28:23 +1000 | [diff] [blame] | 691 | ret = nouveau_gem_new(dev, args->size, 0, NOUVEAU_GEM_DOMAIN_VRAM, 0, 0, &bo); |
Ben Skeggs | 33dbc27 | 2011-09-30 08:55:50 +1000 | [diff] [blame] | 692 | if (ret) |
| 693 | return ret; |
| 694 | |
| 695 | ret = drm_gem_handle_create(file_priv, bo->gem, &args->handle); |
| 696 | drm_gem_object_unreference_unlocked(bo->gem); |
| 697 | return ret; |
| 698 | } |
| 699 | |
| 700 | int |
| 701 | nouveau_display_dumb_destroy(struct drm_file *file_priv, struct drm_device *dev, |
| 702 | uint32_t handle) |
| 703 | { |
| 704 | return drm_gem_handle_delete(file_priv, handle); |
| 705 | } |
| 706 | |
| 707 | int |
| 708 | nouveau_display_dumb_map_offset(struct drm_file *file_priv, |
| 709 | struct drm_device *dev, |
| 710 | uint32_t handle, uint64_t *poffset) |
| 711 | { |
| 712 | struct drm_gem_object *gem; |
| 713 | |
| 714 | gem = drm_gem_object_lookup(dev, file_priv, handle); |
| 715 | if (gem) { |
| 716 | struct nouveau_bo *bo = gem->driver_private; |
| 717 | *poffset = bo->bo.addr_space_offset; |
| 718 | drm_gem_object_unreference_unlocked(gem); |
| 719 | return 0; |
| 720 | } |
| 721 | |
| 722 | return -ENOENT; |
| 723 | } |