2 * Copyright © 2007 David Airlie
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
30 #include <linux/module.h>
36 #include "drm_crtc_helper.h"
37 #include "radeon_drm.h"
40 #include "drm_fb_helper.h"
42 struct radeon_fb_device
{
43 struct drm_fb_helper helper
;
44 struct radeon_framebuffer
*rfb
;
45 struct radeon_device
*rdev
;
48 static struct fb_ops radeonfb_ops
= {
50 .fb_check_var
= drm_fb_helper_check_var
,
51 .fb_set_par
= drm_fb_helper_set_par
,
52 .fb_setcolreg
= drm_fb_helper_setcolreg
,
53 .fb_fillrect
= cfb_fillrect
,
54 .fb_copyarea
= cfb_copyarea
,
55 .fb_imageblit
= cfb_imageblit
,
56 .fb_pan_display
= drm_fb_helper_pan_display
,
57 .fb_blank
= drm_fb_helper_blank
,
58 .fb_setcmap
= drm_fb_helper_setcmap
,
62 * Curretly it is assumed that the old framebuffer is reused.
65 * caller should hold the mode config lock.
68 int radeonfb_resize(struct drm_device
*dev
, struct drm_crtc
*crtc
)
71 struct drm_framebuffer
*fb
;
72 struct drm_display_mode
*mode
= crtc
->desired_mode
;
85 info
->var
.xres
= mode
->hdisplay
;
86 info
->var
.right_margin
= mode
->hsync_start
- mode
->hdisplay
;
87 info
->var
.hsync_len
= mode
->hsync_end
- mode
->hsync_start
;
88 info
->var
.left_margin
= mode
->htotal
- mode
->hsync_end
;
89 info
->var
.yres
= mode
->vdisplay
;
90 info
->var
.lower_margin
= mode
->vsync_start
- mode
->vdisplay
;
91 info
->var
.vsync_len
= mode
->vsync_end
- mode
->vsync_start
;
92 info
->var
.upper_margin
= mode
->vtotal
- mode
->vsync_end
;
93 info
->var
.pixclock
= 10000000 / mode
->htotal
* 1000 / mode
->vtotal
* 100;
95 info
->var
.pixclock
= info
->var
.pixclock
* 1000 / mode
->vrefresh
;
99 EXPORT_SYMBOL(radeonfb_resize
);
101 static int radeon_align_pitch(struct radeon_device
*rdev
, int width
, int bpp
, bool tiled
)
104 int align_large
= (ASIC_IS_AVIVO(rdev
)) || tiled
;
109 pitch_mask
= align_large
? 255 : 127;
112 pitch_mask
= align_large
? 127 : 31;
116 pitch_mask
= align_large
? 63 : 15;
120 aligned
+= pitch_mask
;
121 aligned
&= ~pitch_mask
;
125 static struct drm_fb_helper_funcs radeon_fb_helper_funcs
= {
126 .gamma_set
= radeon_crtc_fb_gamma_set
,
129 int radeonfb_create(struct drm_device
*dev
,
130 uint32_t fb_width
, uint32_t fb_height
,
131 uint32_t surface_width
, uint32_t surface_height
,
132 uint32_t surface_depth
, uint32_t surface_bpp
,
133 struct drm_framebuffer
**fb_p
)
135 struct radeon_device
*rdev
= dev
->dev_private
;
136 struct fb_info
*info
;
137 struct radeon_fb_device
*rfbdev
;
138 struct drm_framebuffer
*fb
= NULL
;
139 struct radeon_framebuffer
*rfb
;
140 struct drm_mode_fb_cmd mode_cmd
;
141 struct drm_gem_object
*gobj
= NULL
;
142 struct radeon_object
*robj
= NULL
;
143 struct device
*device
= &rdev
->pdev
->dev
;
144 int size
, aligned_size
, ret
;
148 bool fb_tiled
= false; /* useful for testing */
149 u32 tiling_flags
= 0;
152 mode_cmd
.width
= surface_width
;
153 mode_cmd
.height
= surface_height
;
154 mode_cmd
.bpp
= surface_bpp
;
155 /* need to align pitch with crtc limits */
156 mode_cmd
.pitch
= radeon_align_pitch(rdev
, mode_cmd
.width
, mode_cmd
.bpp
, fb_tiled
) * ((mode_cmd
.bpp
+ 1) / 8);
157 mode_cmd
.depth
= surface_depth
;
159 size
= mode_cmd
.pitch
* mode_cmd
.height
;
160 aligned_size
= ALIGN(size
, PAGE_SIZE
);
162 ret
= radeon_gem_object_create(rdev
, aligned_size
, 0,
163 RADEON_GEM_DOMAIN_VRAM
,
164 false, ttm_bo_type_kernel
,
167 printk(KERN_ERR
"failed to allocate framebuffer (%d %d)\n",
168 surface_width
, surface_height
);
172 robj
= gobj
->driver_private
;
175 tiling_flags
= RADEON_TILING_MACRO
;
178 switch (mode_cmd
.bpp
) {
180 tiling_flags
|= RADEON_TILING_SWAP_32BIT
;
183 tiling_flags
|= RADEON_TILING_SWAP_16BIT
;
190 radeon_object_set_tiling_flags(robj
, tiling_flags
| RADEON_TILING_SURFACE
, mode_cmd
.pitch
);
191 mutex_lock(&rdev
->ddev
->struct_mutex
);
192 fb
= radeon_framebuffer_create(rdev
->ddev
, &mode_cmd
, gobj
);
194 DRM_ERROR("failed to allocate fb.\n");
198 ret
= radeon_object_pin(robj
, RADEON_GEM_DOMAIN_VRAM
, &fb_gpuaddr
);
200 printk(KERN_ERR
"failed to pin framebuffer\n");
205 list_add(&fb
->filp_head
, &rdev
->ddev
->mode_config
.fb_kernel_list
);
208 rfb
= to_radeon_framebuffer(fb
);
209 rdev
->fbdev_rfb
= rfb
;
210 rdev
->fbdev_robj
= robj
;
212 info
= framebuffer_alloc(sizeof(struct radeon_fb_device
), device
);
218 rdev
->fbdev_info
= info
;
220 rfbdev
->helper
.funcs
= &radeon_fb_helper_funcs
;
221 rfbdev
->helper
.dev
= dev
;
222 if (rdev
->flags
& RADEON_SINGLE_CRTC
)
226 ret
= drm_fb_helper_init_crtc_count(&rfbdev
->helper
, crtc_count
,
227 RADEONFB_CONN_LIMIT
);
232 radeon_object_check_tiling(robj
, 0, 0);
234 ret
= radeon_object_kmap(robj
, &fbptr
);
239 memset_io(fbptr
, 0, aligned_size
);
241 strcpy(info
->fix
.id
, "radeondrmfb");
243 drm_fb_helper_fill_fix(info
, fb
->pitch
, fb
->depth
);
245 info
->flags
= FBINFO_DEFAULT
;
246 info
->fbops
= &radeonfb_ops
;
248 tmp
= fb_gpuaddr
- rdev
->mc
.vram_location
;
249 info
->fix
.smem_start
= rdev
->mc
.aper_base
+ tmp
;
250 info
->fix
.smem_len
= size
;
251 info
->screen_base
= fbptr
;
252 info
->screen_size
= size
;
254 drm_fb_helper_fill_var(info
, fb
, fb_width
, fb_height
);
256 /* setup aperture base/size for vesafb takeover */
257 info
->aperture_base
= rdev
->ddev
->mode_config
.fb_base
;
258 info
->aperture_size
= rdev
->mc
.real_vram_size
;
260 info
->fix
.mmio_start
= 0;
261 info
->fix
.mmio_len
= 0;
262 info
->pixmap
.size
= 64*1024;
263 info
->pixmap
.buf_align
= 8;
264 info
->pixmap
.access_align
= 32;
265 info
->pixmap
.flags
= FB_PIXMAP_SYSTEM
;
266 info
->pixmap
.scan_align
= 1;
267 if (info
->screen_base
== NULL
) {
271 DRM_INFO("fb mappable at 0x%lX\n", info
->fix
.smem_start
);
272 DRM_INFO("vram apper at 0x%lX\n", (unsigned long)rdev
->mc
.aper_base
);
273 DRM_INFO("size %lu\n", (unsigned long)size
);
274 DRM_INFO("fb depth is %d\n", fb
->depth
);
275 DRM_INFO(" pitch is %d\n", fb
->pitch
);
281 mutex_unlock(&rdev
->ddev
->struct_mutex
);
286 radeon_object_kunmap(robj
);
289 list_del(&fb
->filp_head
);
290 drm_gem_object_unreference(gobj
);
291 drm_framebuffer_cleanup(fb
);
294 drm_gem_object_unreference(gobj
);
295 mutex_unlock(&rdev
->ddev
->struct_mutex
);
300 static char *mode_option
;
301 int radeon_parse_options(char *options
)
305 if (!options
|| !*options
)
308 while ((this_opt
= strsep(&options
, ",")) != NULL
) {
311 mode_option
= this_opt
;
316 int radeonfb_probe(struct drm_device
*dev
)
318 return drm_fb_helper_single_fb_probe(dev
, &radeonfb_create
);
321 int radeonfb_remove(struct drm_device
*dev
, struct drm_framebuffer
*fb
)
323 struct fb_info
*info
;
324 struct radeon_framebuffer
*rfb
= to_radeon_framebuffer(fb
);
325 struct radeon_object
*robj
;
332 struct radeon_fb_device
*rfbdev
= info
->par
;
333 robj
= rfb
->obj
->driver_private
;
334 unregister_framebuffer(info
);
335 radeon_object_kunmap(robj
);
336 radeon_object_unpin(robj
);
337 drm_fb_helper_free(&rfbdev
->helper
);
338 framebuffer_release(info
);
341 printk(KERN_INFO
"unregistered panic notifier\n");
345 EXPORT_SYMBOL(radeonfb_remove
);
346 MODULE_LICENSE("GPL");