1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /* 3 * Copyright 2010 Matt Turner. 4 * Copyright 2012 Red Hat 5 * 6 * Authors: Matthew Garrett 7 * Matt Turner 8 * Dave Airlie 9 */ 10 #ifndef __MGAG200_DRV_H__ 11 #define __MGAG200_DRV_H__ 12 13 #include <video/vga.h> 14 15 #include <drm/drm_connector.h> 16 #include <drm/drm_crtc.h> 17 #include <drm/drm_encoder.h> 18 #include <drm/drm_gem.h> 19 #include <drm/drm_gem_shmem_helper.h> 20 #include <drm/drm_plane.h> 21 22 #include "mgag200_reg.h" 23 24 #define DRIVER_AUTHOR "Matthew Garrett" 25 26 #define DRIVER_NAME "mgag200" 27 #define DRIVER_DESC "MGA G200 SE" 28 #define DRIVER_DATE "20110418" 29 30 #define DRIVER_MAJOR 1 31 #define DRIVER_MINOR 0 32 #define DRIVER_PATCHLEVEL 0 33 34 #define RREG8(reg) ioread8(((void __iomem *)mdev->rmmio) + (reg)) 35 #define WREG8(reg, v) iowrite8(v, ((void __iomem *)mdev->rmmio) + (reg)) 36 #define RREG32(reg) ioread32(((void __iomem *)mdev->rmmio) + (reg)) 37 #define WREG32(reg, v) iowrite32(v, ((void __iomem *)mdev->rmmio) + (reg)) 38 39 #define MGA_BIOS_OFFSET 0x7ffc 40 41 #define ATTR_INDEX 0x1fc0 42 #define ATTR_DATA 0x1fc1 43 44 #define WREG_MISC(v) \ 45 WREG8(MGA_MISC_OUT, v) 46 47 #define RREG_MISC(v) \ 48 ((v) = RREG8(MGA_MISC_IN)) 49 50 #define WREG_MISC_MASKED(v, mask) \ 51 do { \ 52 u8 misc_; \ 53 u8 mask_ = (mask); \ 54 RREG_MISC(misc_); \ 55 misc_ &= ~mask_; \ 56 misc_ |= ((v) & mask_); \ 57 WREG_MISC(misc_); \ 58 } while (0) 59 60 #define WREG_ATTR(reg, v) \ 61 do { \ 62 RREG8(0x1fda); \ 63 WREG8(ATTR_INDEX, reg); \ 64 WREG8(ATTR_DATA, v); \ 65 } while (0) \ 66 67 #define RREG_SEQ(reg, v) \ 68 do { \ 69 WREG8(MGAREG_SEQ_INDEX, reg); \ 70 v = RREG8(MGAREG_SEQ_DATA); \ 71 } while (0) \ 72 73 #define WREG_SEQ(reg, v) \ 74 do { \ 75 WREG8(MGAREG_SEQ_INDEX, reg); \ 76 WREG8(MGAREG_SEQ_DATA, v); \ 77 } while (0) \ 78 79 #define RREG_CRT(reg, v) \ 80 do { \ 81 WREG8(MGAREG_CRTC_INDEX, reg); \ 82 v = RREG8(MGAREG_CRTC_DATA); \ 83 } while (0) \ 84 85 #define WREG_CRT(reg, v) \ 86 do { \ 87 WREG8(MGAREG_CRTC_INDEX, reg); \ 88 WREG8(MGAREG_CRTC_DATA, v); \ 89 } while (0) \ 90 91 #define RREG_ECRT(reg, v) \ 92 do { \ 93 WREG8(MGAREG_CRTCEXT_INDEX, reg); \ 94 v = RREG8(MGAREG_CRTCEXT_DATA); \ 95 } while (0) \ 96 97 #define WREG_ECRT(reg, v) \ 98 do { \ 99 WREG8(MGAREG_CRTCEXT_INDEX, reg); \ 100 WREG8(MGAREG_CRTCEXT_DATA, v); \ 101 } while (0) \ 102 103 #define GFX_INDEX 0x1fce 104 #define GFX_DATA 0x1fcf 105 106 #define WREG_GFX(reg, v) \ 107 do { \ 108 WREG8(GFX_INDEX, reg); \ 109 WREG8(GFX_DATA, v); \ 110 } while (0) \ 111 112 #define DAC_INDEX 0x3c00 113 #define DAC_DATA 0x3c0a 114 115 #define WREG_DAC(reg, v) \ 116 do { \ 117 WREG8(DAC_INDEX, reg); \ 118 WREG8(DAC_DATA, v); \ 119 } while (0) \ 120 121 #define MGA_MISC_OUT 0x1fc2 122 #define MGA_MISC_IN 0x1fcc 123 124 /* 125 * TODO: This is a pretty large set of default values for all kinds of 126 * settings. It should be split and set in the various DRM helpers, 127 * such as the CRTC reset or atomic_enable helpers. The PLL values 128 * probably belong to each model's PLL code. 129 */ 130 #define MGAG200_DAC_DEFAULT(xvrefctrl, xpixclkctrl, xmiscctrl, xsyspllm, xsysplln, xsyspllp) \ 131 /* 0x00: */ 0, 0, 0, 0, 0, 0, 0x00, 0, \ 132 /* 0x08: */ 0, 0, 0, 0, 0, 0, 0, 0, \ 133 /* 0x10: */ 0, 0, 0, 0, 0, 0, 0, 0, \ 134 /* 0x18: */ (xvrefctrl), \ 135 /* 0x19: */ 0, \ 136 /* 0x1a: */ (xpixclkctrl), \ 137 /* 0x1b: */ 0xff, 0xbf, 0x20, \ 138 /* 0x1e: */ (xmiscctrl), \ 139 /* 0x1f: */ 0x20, \ 140 /* 0x20: */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \ 141 /* 0x28: */ 0x00, 0x00, 0x00, 0x00, \ 142 /* 0x2c: */ (xsyspllm), \ 143 /* 0x2d: */ (xsysplln), \ 144 /* 0x2e: */ (xsyspllp), \ 145 /* 0x2f: */ 0x40, \ 146 /* 0x30: */ 0x00, 0xb0, 0x00, 0xc2, 0x34, 0x14, 0x02, 0x83, \ 147 /* 0x38: */ 0x00, 0x93, 0x00, 0x77, 0x00, 0x00, 0x00, 0x3a, \ 148 /* 0x40: */ 0, 0, 0, 0, 0, 0, 0, 0, \ 149 /* 0x48: */ 0, 0, 0, 0, 0, 0, 0, 0 \ 150 151 #define MGAG200_LUT_SIZE 256 152 153 #define MGAG200_MAX_FB_HEIGHT 4096 154 #define MGAG200_MAX_FB_WIDTH 4096 155 156 struct mga_device; 157 158 /* 159 * Stores parameters for programming the PLLs 160 * 161 * Fref: reference frequency (A: 25.175 Mhz, B: 28.361, C: XX Mhz) 162 * Fo: output frequency 163 * Fvco = Fref * (N / M) 164 * Fo = Fvco / P 165 * 166 * S = [0..3] 167 */ 168 struct mgag200_pll_values { 169 unsigned int m; 170 unsigned int n; 171 unsigned int p; 172 unsigned int s; 173 }; 174 175 struct mgag200_crtc_state { 176 struct drm_crtc_state base; 177 178 /* Primary-plane format; required for modesetting and color mgmt. */ 179 const struct drm_format_info *format; 180 181 struct mgag200_pll_values pixpllc; 182 183 bool set_vidrst; 184 }; 185 186 static inline struct mgag200_crtc_state *to_mgag200_crtc_state(struct drm_crtc_state *base) 187 { 188 return container_of(base, struct mgag200_crtc_state, base); 189 } 190 191 struct mgag200_bmc_connector { 192 struct drm_connector base; 193 struct drm_connector *physical_connector; 194 }; 195 196 enum mga_type { 197 G200_PCI, 198 G200_AGP, 199 G200_SE_A, 200 G200_SE_B, 201 G200_WB, 202 G200_EV, 203 G200_EH, 204 G200_EH3, 205 G200_ER, 206 G200_EW3, 207 }; 208 209 struct mgag200_device_info { 210 u16 max_hdisplay; 211 u16 max_vdisplay; 212 213 /* 214 * Maximum memory bandwidth (MiB/sec). Setting this to zero disables 215 * the rsp test during mode validation. 216 */ 217 unsigned long max_mem_bandwidth; 218 219 /* Synchronize scanout with BMC */ 220 bool sync_bmc:1; 221 222 struct { 223 unsigned data_bit:3; 224 unsigned clock_bit:3; 225 } i2c; 226 227 /* 228 * HW does not handle 'startadd' register correctly. Always set 229 * it's value to 0. 230 */ 231 bool bug_no_startadd:1; 232 }; 233 234 #define MGAG200_DEVICE_INFO_INIT(_max_hdisplay, _max_vdisplay, _max_mem_bandwidth, \ 235 _sync_bmc, _i2c_data_bit, _i2c_clock_bit, \ 236 _bug_no_startadd) \ 237 { \ 238 .max_hdisplay = (_max_hdisplay), \ 239 .max_vdisplay = (_max_vdisplay), \ 240 .max_mem_bandwidth = (_max_mem_bandwidth), \ 241 .sync_bmc = (_sync_bmc), \ 242 .i2c = { \ 243 .data_bit = (_i2c_data_bit), \ 244 .clock_bit = (_i2c_clock_bit), \ 245 }, \ 246 .bug_no_startadd = (_bug_no_startadd), \ 247 } 248 249 struct mgag200_device_funcs { 250 /* 251 * Validate that the given state can be programmed into PIXPLLC. On 252 * success, the calculated parameters should be stored in the CRTC's 253 * state in struct @mgag200_crtc_state.pixpllc. 254 */ 255 int (*pixpllc_atomic_check)(struct drm_crtc *crtc, struct drm_atomic_state *new_state); 256 257 /* 258 * Program PIXPLLC from the CRTC state. The parameters should have been 259 * stored in struct @mgag200_crtc_state.pixpllc by the corresponding 260 * implementation of @pixpllc_atomic_check. 261 */ 262 void (*pixpllc_atomic_update)(struct drm_crtc *crtc, struct drm_atomic_state *old_state); 263 }; 264 265 struct mga_device { 266 struct drm_device base; 267 268 const struct mgag200_device_info *info; 269 const struct mgag200_device_funcs *funcs; 270 271 struct resource *rmmio_res; 272 void __iomem *rmmio; 273 struct mutex rmmio_lock; /* Protects access to rmmio */ 274 275 struct resource *vram_res; 276 void __iomem *vram; 277 resource_size_t vram_available; 278 279 struct drm_plane primary_plane; 280 struct drm_crtc crtc; 281 struct { 282 struct { 283 struct drm_encoder encoder; 284 struct drm_connector connector; 285 } vga; 286 struct { 287 struct drm_encoder encoder; 288 struct mgag200_bmc_connector bmc_connector; 289 } bmc; 290 } output; 291 }; 292 293 static inline struct mga_device *to_mga_device(struct drm_device *dev) 294 { 295 return container_of(dev, struct mga_device, base); 296 } 297 298 struct mgag200_g200_device { 299 struct mga_device base; 300 301 /* PLL constants */ 302 long ref_clk; 303 long pclk_min; 304 long pclk_max; 305 }; 306 307 static inline struct mgag200_g200_device *to_mgag200_g200_device(struct drm_device *dev) 308 { 309 return container_of(to_mga_device(dev), struct mgag200_g200_device, base); 310 } 311 312 struct mgag200_g200se_device { 313 struct mga_device base; 314 315 /* SE model number stored in reg 0x1e24 */ 316 u32 unique_rev_id; 317 }; 318 319 static inline struct mgag200_g200se_device *to_mgag200_g200se_device(struct drm_device *dev) 320 { 321 return container_of(to_mga_device(dev), struct mgag200_g200se_device, base); 322 } 323 324 /* mgag200_drv.c */ 325 int mgag200_init_pci_options(struct pci_dev *pdev, u32 option, u32 option2); 326 resource_size_t mgag200_probe_vram(void __iomem *mem, resource_size_t size); 327 resource_size_t mgag200_device_probe_vram(struct mga_device *mdev); 328 int mgag200_device_preinit(struct mga_device *mdev); 329 int mgag200_device_init(struct mga_device *mdev, 330 const struct mgag200_device_info *info, 331 const struct mgag200_device_funcs *funcs); 332 333 /* mgag200_<device type>.c */ 334 struct mga_device *mgag200_g200_device_create(struct pci_dev *pdev, const struct drm_driver *drv); 335 struct mga_device *mgag200_g200se_device_create(struct pci_dev *pdev, const struct drm_driver *drv, 336 enum mga_type type); 337 void mgag200_g200wb_init_registers(struct mga_device *mdev); 338 void mgag200_g200wb_pixpllc_atomic_update(struct drm_crtc *crtc, struct drm_atomic_state *old_state); 339 struct mga_device *mgag200_g200wb_device_create(struct pci_dev *pdev, const struct drm_driver *drv); 340 struct mga_device *mgag200_g200ev_device_create(struct pci_dev *pdev, const struct drm_driver *drv); 341 void mgag200_g200eh_init_registers(struct mga_device *mdev); 342 void mgag200_g200eh_pixpllc_atomic_update(struct drm_crtc *crtc, struct drm_atomic_state *old_state); 343 struct mga_device *mgag200_g200eh_device_create(struct pci_dev *pdev, 344 const struct drm_driver *drv); 345 struct mga_device *mgag200_g200eh3_device_create(struct pci_dev *pdev, 346 const struct drm_driver *drv); 347 struct mga_device *mgag200_g200er_device_create(struct pci_dev *pdev, 348 const struct drm_driver *drv); 349 struct mga_device *mgag200_g200ew3_device_create(struct pci_dev *pdev, 350 const struct drm_driver *drv); 351 352 /* 353 * mgag200_mode.c 354 */ 355 356 struct drm_crtc; 357 struct drm_crtc_state; 358 struct drm_display_mode; 359 struct drm_plane; 360 struct drm_atomic_state; 361 struct drm_scanout_buffer; 362 363 extern const uint32_t mgag200_primary_plane_formats[]; 364 extern const size_t mgag200_primary_plane_formats_size; 365 extern const uint64_t mgag200_primary_plane_fmtmods[]; 366 367 int mgag200_primary_plane_helper_atomic_check(struct drm_plane *plane, 368 struct drm_atomic_state *new_state); 369 void mgag200_primary_plane_helper_atomic_update(struct drm_plane *plane, 370 struct drm_atomic_state *old_state); 371 void mgag200_primary_plane_helper_atomic_enable(struct drm_plane *plane, 372 struct drm_atomic_state *state); 373 void mgag200_primary_plane_helper_atomic_disable(struct drm_plane *plane, 374 struct drm_atomic_state *old_state); 375 int mgag200_primary_plane_helper_get_scanout_buffer(struct drm_plane *plane, 376 struct drm_scanout_buffer *sb); 377 378 #define MGAG200_PRIMARY_PLANE_HELPER_FUNCS \ 379 DRM_GEM_SHADOW_PLANE_HELPER_FUNCS, \ 380 .atomic_check = mgag200_primary_plane_helper_atomic_check, \ 381 .atomic_update = mgag200_primary_plane_helper_atomic_update, \ 382 .atomic_enable = mgag200_primary_plane_helper_atomic_enable, \ 383 .atomic_disable = mgag200_primary_plane_helper_atomic_disable, \ 384 .get_scanout_buffer = mgag200_primary_plane_helper_get_scanout_buffer 385 386 #define MGAG200_PRIMARY_PLANE_FUNCS \ 387 .update_plane = drm_atomic_helper_update_plane, \ 388 .disable_plane = drm_atomic_helper_disable_plane, \ 389 .destroy = drm_plane_cleanup, \ 390 DRM_GEM_SHADOW_PLANE_FUNCS 391 392 void mgag200_crtc_set_gamma_linear(struct mga_device *mdev, const struct drm_format_info *format); 393 void mgag200_crtc_set_gamma(struct mga_device *mdev, 394 const struct drm_format_info *format, 395 struct drm_color_lut *lut); 396 397 enum drm_mode_status mgag200_crtc_helper_mode_valid(struct drm_crtc *crtc, 398 const struct drm_display_mode *mode); 399 int mgag200_crtc_helper_atomic_check(struct drm_crtc *crtc, struct drm_atomic_state *new_state); 400 void mgag200_crtc_helper_atomic_flush(struct drm_crtc *crtc, struct drm_atomic_state *old_state); 401 void mgag200_crtc_helper_atomic_enable(struct drm_crtc *crtc, struct drm_atomic_state *old_state); 402 void mgag200_crtc_helper_atomic_disable(struct drm_crtc *crtc, struct drm_atomic_state *old_state); 403 bool mgag200_crtc_helper_get_scanout_position(struct drm_crtc *crtc, bool in_vblank_irq, 404 int *vpos, int *hpos, 405 ktime_t *stime, ktime_t *etime, 406 const struct drm_display_mode *mode); 407 408 #define MGAG200_CRTC_HELPER_FUNCS \ 409 .mode_valid = mgag200_crtc_helper_mode_valid, \ 410 .atomic_check = mgag200_crtc_helper_atomic_check, \ 411 .atomic_flush = mgag200_crtc_helper_atomic_flush, \ 412 .atomic_enable = mgag200_crtc_helper_atomic_enable, \ 413 .atomic_disable = mgag200_crtc_helper_atomic_disable, \ 414 .get_scanout_position = mgag200_crtc_helper_get_scanout_position 415 416 void mgag200_crtc_reset(struct drm_crtc *crtc); 417 struct drm_crtc_state *mgag200_crtc_atomic_duplicate_state(struct drm_crtc *crtc); 418 void mgag200_crtc_atomic_destroy_state(struct drm_crtc *crtc, struct drm_crtc_state *crtc_state); 419 int mgag200_crtc_enable_vblank(struct drm_crtc *crtc); 420 void mgag200_crtc_disable_vblank(struct drm_crtc *crtc); 421 422 #define MGAG200_CRTC_FUNCS \ 423 .reset = mgag200_crtc_reset, \ 424 .destroy = drm_crtc_cleanup, \ 425 .set_config = drm_atomic_helper_set_config, \ 426 .page_flip = drm_atomic_helper_page_flip, \ 427 .atomic_duplicate_state = mgag200_crtc_atomic_duplicate_state, \ 428 .atomic_destroy_state = mgag200_crtc_atomic_destroy_state, \ 429 .enable_vblank = mgag200_crtc_enable_vblank, \ 430 .disable_vblank = mgag200_crtc_disable_vblank, \ 431 .get_vblank_timestamp = drm_crtc_vblank_helper_get_vblank_timestamp 432 433 void mgag200_set_mode_regs(struct mga_device *mdev, const struct drm_display_mode *mode, 434 bool set_vidrst); 435 void mgag200_set_format_regs(struct mga_device *mdev, const struct drm_format_info *format); 436 void mgag200_enable_display(struct mga_device *mdev); 437 void mgag200_init_registers(struct mga_device *mdev); 438 int mgag200_mode_config_init(struct mga_device *mdev, resource_size_t vram_available); 439 440 /* mgag200_vga.c */ 441 int mgag200_vga_output_init(struct mga_device *mdev); 442 443 /* mgag200_bmc.c */ 444 void mgag200_bmc_stop_scanout(struct mga_device *mdev); 445 void mgag200_bmc_start_scanout(struct mga_device *mdev); 446 int mgag200_bmc_output_init(struct mga_device *mdev, struct drm_connector *physical_connector); 447 448 #endif /* __MGAG200_DRV_H__ */ 449