2 * Copyright 2012 Red Hat Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the
6 * "Software"), to deal in the Software without restriction, including
7 * without limitation the rights to use, copy, modify, merge, publish,
8 * distribute, sub license, and/or sell copies of the Software, and to
9 * permit persons to whom the Software is furnished to do so, subject to
10 * the following conditions:
12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
15 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
16 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
17 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
18 * USE OR OTHER DEALINGS IN THE SOFTWARE.
20 * The above copyright notice and this permission notice (including the
21 * next paragraph) shall be included in all copies or substantial portions
26 * Authors: Dave Airlie <airlied@redhat.com>
32 #include "drm_fb_helper.h"
33 #include "drm_crtc_helper.h"
35 #include "ast_dram_tables.h"
37 void ast_set_index_reg_mask(struct ast_private
*ast
,
38 uint32_t base
, uint8_t index
,
39 uint8_t mask
, uint8_t val
)
42 ast_io_write8(ast
, base
, index
);
43 tmp
= (ast_io_read8(ast
, base
+ 1) & mask
) | val
;
44 ast_set_index_reg(ast
, base
, index
, tmp
);
47 uint8_t ast_get_index_reg(struct ast_private
*ast
,
48 uint32_t base
, uint8_t index
)
51 ast_io_write8(ast
, base
, index
);
52 ret
= ast_io_read8(ast
, base
+ 1);
56 uint8_t ast_get_index_reg_mask(struct ast_private
*ast
,
57 uint32_t base
, uint8_t index
, uint8_t mask
)
60 ast_io_write8(ast
, base
, index
);
61 ret
= ast_io_read8(ast
, base
+ 1) & mask
;
66 static int ast_detect_chip(struct drm_device
*dev
)
68 struct ast_private
*ast
= dev
->dev_private
;
70 if (dev
->pdev
->device
== PCI_CHIP_AST1180
) {
72 DRM_INFO("AST 1180 detected\n");
74 if (dev
->pdev
->revision
>= 0x20) {
76 DRM_INFO("AST 2300 detected\n");
77 } else if (dev
->pdev
->revision
>= 0x10) {
79 ast_write32(ast
, 0xf004, 0x1e6e0000);
80 ast_write32(ast
, 0xf000, 0x1);
82 data
= ast_read32(ast
, 0x1207c);
83 switch (data
& 0x0300) {
86 DRM_INFO("AST 1100 detected\n");
90 DRM_INFO("AST 2200 detected\n");
94 DRM_INFO("AST 2150 detected\n");
98 DRM_INFO("AST 2100 detected\n");
101 ast
->vga2_clone
= false;
104 DRM_INFO("AST 2000 detected\n");
110 static int ast_get_dram_info(struct drm_device
*dev
)
112 struct ast_private
*ast
= dev
->dev_private
;
113 uint32_t data
, data2
;
114 uint32_t denum
, num
, div
, ref_pll
;
116 ast_write32(ast
, 0xf004, 0x1e6e0000);
117 ast_write32(ast
, 0xf000, 0x1);
120 ast_write32(ast
, 0x10000, 0xfc600309);
124 } while (ast_read32(ast
, 0x10000) != 0x01);
125 data
= ast_read32(ast
, 0x10004);
128 ast
->dram_bus_width
= 16;
130 ast
->dram_bus_width
= 32;
132 if (ast
->chip
== AST2300
) {
133 switch (data
& 0x03) {
135 ast
->dram_type
= AST_DRAM_512Mx16
;
139 ast
->dram_type
= AST_DRAM_1Gx16
;
142 ast
->dram_type
= AST_DRAM_2Gx16
;
145 ast
->dram_type
= AST_DRAM_4Gx16
;
149 switch (data
& 0x0c) {
152 ast
->dram_type
= AST_DRAM_512Mx16
;
156 ast
->dram_type
= AST_DRAM_1Gx16
;
158 ast
->dram_type
= AST_DRAM_512Mx32
;
161 ast
->dram_type
= AST_DRAM_1Gx32
;
166 data
= ast_read32(ast
, 0x10120);
167 data2
= ast_read32(ast
, 0x10170);
174 num
= (data
& 0x3fe0) >> 5;
175 data
= (data
& 0xc000) >> 14;
188 ast
->mclk
= ref_pll
* (num
+ 2) / (denum
+ 2) * (div
* 1000);
192 uint32_t ast_get_max_dclk(struct drm_device
*dev
, int bpp
)
194 struct ast_private
*ast
= dev
->dev_private
;
196 uint32_t dram_bus_width
, mclk
, dram_bandwidth
, actual_dram_bandwidth
, dram_efficency
= 500;
198 dram_bus_width
= ast
->dram_bus_width
;
201 if (ast
->chip
== AST2100
||
202 ast
->chip
== AST1100
||
203 ast
->chip
== AST2200
||
204 ast
->chip
== AST2150
||
205 ast
->dram_bus_width
== 16)
206 dram_efficency
= 600;
207 else if (ast
->chip
== AST2300
)
208 dram_efficency
= 400;
210 dram_bandwidth
= mclk
* dram_bus_width
* 2 / 8;
211 actual_dram_bandwidth
= dram_bandwidth
* dram_efficency
/ 1000;
213 if (ast
->chip
== AST1180
)
214 dclk
= actual_dram_bandwidth
/ ((bpp
+ 1) / 8);
216 jreg
= ast_get_index_reg_mask(ast
, AST_IO_CRTC_PORT
, 0xd0, 0xff);
217 if ((jreg
& 0x08) && (ast
->chip
== AST2000
))
218 dclk
= actual_dram_bandwidth
/ ((bpp
+ 1 + 16) / 8);
219 else if ((jreg
& 0x08) && (bpp
== 8))
220 dclk
= actual_dram_bandwidth
/ ((bpp
+ 1 + 24) / 8);
222 dclk
= actual_dram_bandwidth
/ ((bpp
+ 1) / 8);
225 if (ast
->chip
== AST2100
||
226 ast
->chip
== AST2200
||
227 ast
->chip
== AST2300
||
228 ast
->chip
== AST1180
) {
239 static void ast_user_framebuffer_destroy(struct drm_framebuffer
*fb
)
241 struct ast_framebuffer
*ast_fb
= to_ast_framebuffer(fb
);
243 drm_gem_object_unreference_unlocked(ast_fb
->obj
);
245 drm_framebuffer_cleanup(fb
);
249 static int ast_user_framebuffer_create_handle(struct drm_framebuffer
*fb
,
250 struct drm_file
*file
,
251 unsigned int *handle
)
256 static const struct drm_framebuffer_funcs ast_fb_funcs
= {
257 .destroy
= ast_user_framebuffer_destroy
,
258 .create_handle
= ast_user_framebuffer_create_handle
,
262 int ast_framebuffer_init(struct drm_device
*dev
,
263 struct ast_framebuffer
*ast_fb
,
264 struct drm_mode_fb_cmd2
*mode_cmd
,
265 struct drm_gem_object
*obj
)
269 ret
= drm_framebuffer_init(dev
, &ast_fb
->base
, &ast_fb_funcs
);
271 DRM_ERROR("framebuffer init failed %d\n", ret
);
274 drm_helper_mode_fill_fb_struct(&ast_fb
->base
, mode_cmd
);
279 static struct drm_framebuffer
*
280 ast_user_framebuffer_create(struct drm_device
*dev
,
281 struct drm_file
*filp
,
282 struct drm_mode_fb_cmd2
*mode_cmd
)
284 struct drm_gem_object
*obj
;
285 struct ast_framebuffer
*ast_fb
;
288 obj
= drm_gem_object_lookup(dev
, filp
, mode_cmd
->handles
[0]);
290 return ERR_PTR(-ENOENT
);
292 ast_fb
= kzalloc(sizeof(*ast_fb
), GFP_KERNEL
);
294 drm_gem_object_unreference_unlocked(obj
);
295 return ERR_PTR(-ENOMEM
);
298 ret
= ast_framebuffer_init(dev
, ast_fb
, mode_cmd
, obj
);
300 drm_gem_object_unreference_unlocked(obj
);
304 return &ast_fb
->base
;
307 static const struct drm_mode_config_funcs ast_mode_funcs
= {
308 .fb_create
= ast_user_framebuffer_create
,
311 static u32
ast_get_vram_info(struct drm_device
*dev
)
313 struct ast_private
*ast
= dev
->dev_private
;
318 jreg
= ast_get_index_reg_mask(ast
, AST_IO_CRTC_PORT
, 0xaa, 0xff);
320 case 0: return AST_VIDMEM_SIZE_8M
;
321 case 1: return AST_VIDMEM_SIZE_16M
;
322 case 2: return AST_VIDMEM_SIZE_32M
;
323 case 3: return AST_VIDMEM_SIZE_64M
;
325 return AST_VIDMEM_DEFAULT_SIZE
;
328 int ast_driver_load(struct drm_device
*dev
, unsigned long flags
)
330 struct ast_private
*ast
;
333 ast
= kzalloc(sizeof(struct ast_private
), GFP_KERNEL
);
337 dev
->dev_private
= ast
;
340 ast
->regs
= pci_iomap(dev
->pdev
, 1, 0);
345 ast
->ioregs
= pci_iomap(dev
->pdev
, 2, 0);
351 ast_detect_chip(dev
);
353 if (ast
->chip
!= AST1180
) {
354 ast_get_dram_info(dev
);
355 ast
->vram_size
= ast_get_vram_info(dev
);
356 DRM_INFO("dram %d %d %d %08x\n", ast
->mclk
, ast
->dram_type
, ast
->dram_bus_width
, ast
->vram_size
);
359 ret
= ast_mm_init(ast
);
363 drm_mode_config_init(dev
);
365 dev
->mode_config
.funcs
= (void *)&ast_mode_funcs
;
366 dev
->mode_config
.min_width
= 0;
367 dev
->mode_config
.min_height
= 0;
368 dev
->mode_config
.preferred_depth
= 24;
369 dev
->mode_config
.prefer_shadow
= 1;
371 if (ast
->chip
== AST2100
||
372 ast
->chip
== AST2200
||
373 ast
->chip
== AST2300
||
374 ast
->chip
== AST1180
) {
375 dev
->mode_config
.max_width
= 1920;
376 dev
->mode_config
.max_height
= 2048;
378 dev
->mode_config
.max_width
= 1600;
379 dev
->mode_config
.max_height
= 1200;
382 ret
= ast_mode_init(dev
);
386 ret
= ast_fbdev_init(dev
);
393 dev
->dev_private
= NULL
;
397 int ast_driver_unload(struct drm_device
*dev
)
399 struct ast_private
*ast
= dev
->dev_private
;
403 drm_mode_config_cleanup(dev
);
406 pci_iounmap(dev
->pdev
, ast
->ioregs
);
407 pci_iounmap(dev
->pdev
, ast
->regs
);
412 int ast_gem_create(struct drm_device
*dev
,
413 u32 size
, bool iskernel
,
414 struct drm_gem_object
**obj
)
416 struct ast_bo
*astbo
;
421 size
= roundup(size
, PAGE_SIZE
);
425 ret
= ast_bo_create(dev
, size
, 0, 0, &astbo
);
427 if (ret
!= -ERESTARTSYS
)
428 DRM_ERROR("failed to allocate GEM object\n");
435 int ast_dumb_create(struct drm_file
*file
,
436 struct drm_device
*dev
,
437 struct drm_mode_create_dumb
*args
)
440 struct drm_gem_object
*gobj
;
443 args
->pitch
= args
->width
* ((args
->bpp
+ 7) / 8);
444 args
->size
= args
->pitch
* args
->height
;
446 ret
= ast_gem_create(dev
, args
->size
, false,
451 ret
= drm_gem_handle_create(file
, gobj
, &handle
);
452 drm_gem_object_unreference_unlocked(gobj
);
456 args
->handle
= handle
;
460 int ast_dumb_destroy(struct drm_file
*file
,
461 struct drm_device
*dev
,
464 return drm_gem_handle_delete(file
, handle
);
467 int ast_gem_init_object(struct drm_gem_object
*obj
)
473 void ast_bo_unref(struct ast_bo
**bo
)
475 struct ttm_buffer_object
*tbo
;
486 void ast_gem_free_object(struct drm_gem_object
*obj
)
488 struct ast_bo
*ast_bo
= gem_to_ast_bo(obj
);
492 ast_bo_unref(&ast_bo
);
496 static inline u64
ast_bo_mmap_offset(struct ast_bo
*bo
)
498 return bo
->bo
.addr_space_offset
;
501 ast_dumb_mmap_offset(struct drm_file
*file
,
502 struct drm_device
*dev
,
506 struct drm_gem_object
*obj
;
510 mutex_lock(&dev
->struct_mutex
);
511 obj
= drm_gem_object_lookup(dev
, file
, handle
);
517 bo
= gem_to_ast_bo(obj
);
518 *offset
= ast_bo_mmap_offset(bo
);
520 drm_gem_object_unreference(obj
);
523 mutex_unlock(&dev
->struct_mutex
);