blob: f8d69ad36830310e1d9c49332d3835dcdb102c3a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ATI Frame Buffer Device Driver Core
3 *
4 * Copyright (C) 2004 Alex Kern <alex.kern@gmx.de>
5 * Copyright (C) 1997-2001 Geert Uytterhoeven
6 * Copyright (C) 1998 Bernd Harries
7 * Copyright (C) 1998 Eddie C. Dost (ecd@skynet.be)
8 *
9 * This driver supports the following ATI graphics chips:
10 * - ATI Mach64
11 *
12 * To do: add support for
13 * - ATI Rage128 (from aty128fb.c)
14 * - ATI Radeon (from radeonfb.c)
15 *
16 * This driver is partly based on the PowerMac console driver:
17 *
18 * Copyright (C) 1996 Paul Mackerras
19 *
20 * and on the PowerMac ATI/mach64 display driver:
21 *
22 * Copyright (C) 1997 Michael AK Tesch
23 *
24 * with work by Jon Howell
25 * Harry AC Eaton
26 * Anthony Tong <atong@uiuc.edu>
27 *
28 * Generic LCD support written by Daniel Mantione, ported from 2.4.20 by Alex Kern
Jan Engelhardt96de0e22007-10-19 23:21:04 +020029 * Many Thanks to Ville Syrjälä for patches and fixing nasting 16 bit color bug.
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 *
31 * This file is subject to the terms and conditions of the GNU General Public
32 * License. See the file COPYING in the main directory of this archive for
33 * more details.
34 *
35 * Many thanks to Nitya from ATI devrel for support and patience !
36 */
37
38/******************************************************************************
39
40 TODO:
41
42 - cursor support on all cards and all ramdacs.
43 - cursor parameters controlable via ioctl()s.
44 - guess PLL and MCLK based on the original PLL register values initialized
45 by Open Firmware (if they are initialized). BIOS is done
46
47 (Anyone with Mac to help with this?)
48
49******************************************************************************/
50
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/module.h>
53#include <linux/moduleparam.h>
54#include <linux/kernel.h>
55#include <linux/errno.h>
56#include <linux/string.h>
57#include <linux/mm.h>
58#include <linux/slab.h>
59#include <linux/vmalloc.h>
60#include <linux/delay.h>
61#include <linux/console.h>
62#include <linux/fb.h>
63#include <linux/init.h>
64#include <linux/pci.h>
65#include <linux/interrupt.h>
66#include <linux/spinlock.h>
67#include <linux/wait.h>
Michael Hanselmann5474c122006-06-25 05:47:08 -070068#include <linux/backlight.h>
Ville Syrjalaeafad222009-06-30 11:41:40 -070069#include <linux/reboot.h>
70#include <linux/dmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72#include <asm/io.h>
Krzysztof Helt84902b72007-10-16 01:29:04 -070073#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75#include <video/mach64.h>
76#include "atyfb.h"
77#include "ati_ids.h"
78
79#ifdef __powerpc__
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +110080#include <asm/machdep.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#include <asm/prom.h>
82#include "../macmodes.h"
83#endif
84#ifdef __sparc__
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#include <asm/fbio.h>
David S. Miller63c3f462007-05-08 00:37:23 -070086#include <asm/oplib.h>
87#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#endif
89
90#ifdef CONFIG_ADB_PMU
91#include <linux/adb.h>
92#include <linux/pmu.h>
93#endif
94#ifdef CONFIG_BOOTX_TEXT
95#include <asm/btext.h>
96#endif
97#ifdef CONFIG_PMAC_BACKLIGHT
98#include <asm/backlight.h>
99#endif
100#ifdef CONFIG_MTRR
101#include <asm/mtrr.h>
102#endif
103
104/*
105 * Debug flags.
106 */
107#undef DEBUG
108/*#define DEBUG*/
109
110/* Make sure n * PAGE_SIZE is protected at end of Aperture for GUI-regs */
111/* - must be large enough to catch all GUI-Regs */
112/* - must be aligned to a PAGE boundary */
113#define GUI_RESERVE (1 * PAGE_SIZE)
114
115/* FIXME: remove the FAIL definition */
Ville Syrjälä866d84c2006-01-09 20:53:22 -0800116#define FAIL(msg) do { \
117 if (!(var->activate & FB_ACTIVATE_TEST)) \
118 printk(KERN_CRIT "atyfb: " msg "\n"); \
119 return -EINVAL; \
120} while (0)
121#define FAIL_MAX(msg, x, _max_) do { \
122 if (x > _max_) { \
123 if (!(var->activate & FB_ACTIVATE_TEST)) \
124 printk(KERN_CRIT "atyfb: " msg " %x(%x)\n", x, _max_); \
125 return -EINVAL; \
126 } \
127} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#ifdef DEBUG
129#define DPRINTK(fmt, args...) printk(KERN_DEBUG "atyfb: " fmt, ## args)
130#else
131#define DPRINTK(fmt, args...)
132#endif
133
134#define PRINTKI(fmt, args...) printk(KERN_INFO "atyfb: " fmt, ## args)
Ville Syrjala68962012009-09-22 16:47:01 -0700135#define PRINTKE(fmt, args...) printk(KERN_ERR "atyfb: " fmt, ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Antonino A. Daplas721c04c2007-03-05 00:30:54 -0800137#if defined(CONFIG_PM) || defined(CONFIG_PMAC_BACKLIGHT) || \
138defined (CONFIG_FB_ATY_GENERIC_LCD) || defined(CONFIG_FB_ATY_BACKLIGHT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139static const u32 lt_lcd_regs[] = {
Randy Dunlapfe861752009-02-04 15:12:20 -0800140 CNFG_PANEL_LG,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 LCD_GEN_CNTL_LG,
142 DSTN_CONTROL_LG,
143 HFB_PITCH_ADDR_LG,
144 HORZ_STRETCHING_LG,
145 VERT_STRETCHING_LG,
146 0, /* EXT_VERT_STRETCH */
147 LT_GIO_LG,
148 POWER_MANAGEMENT_LG
149};
150
151void aty_st_lcd(int index, u32 val, const struct atyfb_par *par)
152{
153 if (M64_HAS(LT_LCD_REGS)) {
154 aty_st_le32(lt_lcd_regs[index], val, par);
155 } else {
156 unsigned long temp;
157
158 /* write addr byte */
159 temp = aty_ld_le32(LCD_INDEX, par);
160 aty_st_le32(LCD_INDEX, (temp & ~LCD_INDEX_MASK) | index, par);
161 /* write the register value */
162 aty_st_le32(LCD_DATA, val, par);
163 }
164}
165
166u32 aty_ld_lcd(int index, const struct atyfb_par *par)
167{
168 if (M64_HAS(LT_LCD_REGS)) {
169 return aty_ld_le32(lt_lcd_regs[index], par);
170 } else {
171 unsigned long temp;
172
173 /* write addr byte */
174 temp = aty_ld_le32(LCD_INDEX, par);
175 aty_st_le32(LCD_INDEX, (temp & ~LCD_INDEX_MASK) | index, par);
176 /* read the register value */
177 return aty_ld_le32(LCD_DATA, par);
178 }
179}
180#endif /* defined(CONFIG_PM) || defined(CONFIG_PMAC_BACKLIGHT) || defined (CONFIG_FB_ATY_GENERIC_LCD) */
181
182#ifdef CONFIG_FB_ATY_GENERIC_LCD
183/*
184 * ATIReduceRatio --
185 *
186 * Reduce a fraction by factoring out the largest common divider of the
187 * fraction's numerator and denominator.
188 */
189static void ATIReduceRatio(int *Numerator, int *Denominator)
190{
Ville Syrjala68962012009-09-22 16:47:01 -0700191 int Multiplier, Divider, Remainder;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Ville Syrjala68962012009-09-22 16:47:01 -0700193 Multiplier = *Numerator;
194 Divider = *Denominator;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Ville Syrjala68962012009-09-22 16:47:01 -0700196 while ((Remainder = Multiplier % Divider)) {
197 Multiplier = Divider;
198 Divider = Remainder;
199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Ville Syrjala68962012009-09-22 16:47:01 -0700201 *Numerator /= Divider;
202 *Denominator /= Divider;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
204#endif
Ville Syrjala68962012009-09-22 16:47:01 -0700205/*
206 * The Hardware parameters for each card
207 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209struct pci_mmap_map {
210 unsigned long voff;
211 unsigned long poff;
212 unsigned long size;
213 unsigned long prot_flag;
214 unsigned long prot_mask;
215};
216
217static struct fb_fix_screeninfo atyfb_fix __devinitdata = {
218 .id = "ATY Mach64",
219 .type = FB_TYPE_PACKED_PIXELS,
220 .visual = FB_VISUAL_PSEUDOCOLOR,
221 .xpanstep = 8,
222 .ypanstep = 1,
223};
224
Ville Syrjala68962012009-09-22 16:47:01 -0700225/*
226 * Frame buffer device API
227 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229static int atyfb_open(struct fb_info *info, int user);
230static int atyfb_release(struct fb_info *info, int user);
Ville Syrjala68962012009-09-22 16:47:01 -0700231static int atyfb_check_var(struct fb_var_screeninfo *var,
232 struct fb_info *info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233static int atyfb_set_par(struct fb_info *info);
234static int atyfb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
Ville Syrjala68962012009-09-22 16:47:01 -0700235 u_int transp, struct fb_info *info);
236static int atyfb_pan_display(struct fb_var_screeninfo *var,
237 struct fb_info *info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238static int atyfb_blank(int blank, struct fb_info *info);
Christoph Hellwig67a66802006-01-14 13:21:25 -0800239static int atyfb_ioctl(struct fb_info *info, u_int cmd, u_long arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240#ifdef __sparc__
Christoph Hellwig216d5262006-01-14 13:21:25 -0800241static int atyfb_mmap(struct fb_info *info, struct vm_area_struct *vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242#endif
243static int atyfb_sync(struct fb_info *info);
244
Ville Syrjala68962012009-09-22 16:47:01 -0700245/*
246 * Internal routines
247 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Ville Syrjala044aaa32006-12-08 02:40:41 -0800249static int aty_init(struct fb_info *info);
Alexander Beregalov978cc902008-08-05 13:01:29 -0700250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251#ifdef CONFIG_ATARI
252static int store_video_par(char *videopar, unsigned char m64_num);
253#endif
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255static void aty_get_crtc(const struct atyfb_par *par, struct crtc *crtc);
256
257static void aty_set_crtc(const struct atyfb_par *par, const struct crtc *crtc);
Ville Syrjala68962012009-09-22 16:47:01 -0700258static int aty_var_to_crtc(const struct fb_info *info,
259 const struct fb_var_screeninfo *var,
260 struct crtc *crtc);
261static int aty_crtc_to_var(const struct crtc *crtc,
262 struct fb_var_screeninfo *var);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263static void set_off_pitch(struct atyfb_par *par, const struct fb_info *info);
264#ifdef CONFIG_PPC
265static int read_aty_sense(const struct atyfb_par *par);
266#endif
267
Ville Syrjalaeafad222009-06-30 11:41:40 -0700268static DEFINE_MUTEX(reboot_lock);
269static struct fb_info *reboot_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Ville Syrjala68962012009-09-22 16:47:01 -0700271/*
272 * Interface used by the world
273 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275static struct fb_var_screeninfo default_var = {
276 /* 640x480, 60 Hz, Non-Interlaced (25.175 MHz dotclock) */
277 640, 480, 640, 480, 0, 0, 8, 0,
278 {0, 8, 0}, {0, 8, 0}, {0, 8, 0}, {0, 0, 0},
279 0, 0, -1, -1, 0, 39722, 48, 16, 33, 10, 96, 2,
280 0, FB_VMODE_NONINTERLACED
281};
282
283static struct fb_videomode defmode = {
284 /* 640x480 @ 60 Hz, 31.5 kHz hsync */
285 NULL, 60, 640, 480, 39721, 40, 24, 32, 11, 96, 2,
286 0, FB_VMODE_NONINTERLACED
287};
288
289static struct fb_ops atyfb_ops = {
290 .owner = THIS_MODULE,
291 .fb_open = atyfb_open,
292 .fb_release = atyfb_release,
293 .fb_check_var = atyfb_check_var,
294 .fb_set_par = atyfb_set_par,
295 .fb_setcolreg = atyfb_setcolreg,
296 .fb_pan_display = atyfb_pan_display,
297 .fb_blank = atyfb_blank,
298 .fb_ioctl = atyfb_ioctl,
299 .fb_fillrect = atyfb_fillrect,
300 .fb_copyarea = atyfb_copyarea,
301 .fb_imageblit = atyfb_imageblit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302#ifdef __sparc__
303 .fb_mmap = atyfb_mmap,
304#endif
305 .fb_sync = atyfb_sync,
306};
307
308static int noaccel;
309#ifdef CONFIG_MTRR
310static int nomtrr;
311#endif
312static int vram;
313static int pll;
314static int mclk;
315static int xclk;
Antonino A. Daplas1a8c9792006-06-26 00:26:58 -0700316static int comp_sync __devinitdata = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317static char *mode;
318
Richard Purdie202d4e62007-03-03 17:43:52 +0000319#ifdef CONFIG_PMAC_BACKLIGHT
320static int backlight __devinitdata = 1;
321#else
322static int backlight __devinitdata = 0;
323#endif
324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325#ifdef CONFIG_PPC
Antonino A. Daplas1a8c9792006-06-26 00:26:58 -0700326static int default_vmode __devinitdata = VMODE_CHOOSE;
327static int default_cmode __devinitdata = CMODE_CHOOSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329module_param_named(vmode, default_vmode, int, 0);
330MODULE_PARM_DESC(vmode, "int: video mode for mac");
331module_param_named(cmode, default_cmode, int, 0);
332MODULE_PARM_DESC(cmode, "int: color mode for mac");
333#endif
334
335#ifdef CONFIG_ATARI
Antonino A. Daplas1a8c9792006-06-26 00:26:58 -0700336static unsigned int mach64_count __devinitdata = 0;
337static unsigned long phys_vmembase[FB_MAX] __devinitdata = { 0, };
338static unsigned long phys_size[FB_MAX] __devinitdata = { 0, };
339static unsigned long phys_guiregbase[FB_MAX] __devinitdata = { 0, };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340#endif
341
342/* top -> down is an evolution of mach64 chipset, any corrections? */
343#define ATI_CHIP_88800GX (M64F_GX)
344#define ATI_CHIP_88800CX (M64F_GX)
345
346#define ATI_CHIP_264CT (M64F_CT | M64F_INTEGRATED | M64F_CT_BUS | M64F_MAGIC_FIFO)
347#define ATI_CHIP_264ET (M64F_CT | M64F_INTEGRATED | M64F_CT_BUS | M64F_MAGIC_FIFO)
348
349#define ATI_CHIP_264VT (M64F_VT | M64F_INTEGRATED | M64F_VT_BUS | M64F_MAGIC_FIFO)
350#define ATI_CHIP_264GT (M64F_GT | M64F_INTEGRATED | M64F_MAGIC_FIFO | M64F_EXTRA_BRIGHT)
351
352#define ATI_CHIP_264VTB (M64F_VT | M64F_INTEGRATED | M64F_VT_BUS | M64F_GTB_DSP)
353#define ATI_CHIP_264VT3 (M64F_VT | M64F_INTEGRATED | M64F_VT_BUS | M64F_GTB_DSP | M64F_SDRAM_MAGIC_PLL)
354#define ATI_CHIP_264VT4 (M64F_VT | M64F_INTEGRATED | M64F_GTB_DSP)
355
Ville Syrjäläa14b2282006-01-09 20:53:32 -0800356/* FIXME what is this chip? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357#define ATI_CHIP_264LT (M64F_GT | M64F_INTEGRATED | M64F_GTB_DSP)
358
359/* make sets shorter */
360#define ATI_MODERN_SET (M64F_GT | M64F_INTEGRATED | M64F_GTB_DSP | M64F_EXTRA_BRIGHT)
361
362#define ATI_CHIP_264GTB (ATI_MODERN_SET | M64F_SDRAM_MAGIC_PLL)
363/*#define ATI_CHIP_264GTDVD ?*/
364#define ATI_CHIP_264LTG (ATI_MODERN_SET | M64F_SDRAM_MAGIC_PLL)
365
366#define ATI_CHIP_264GT2C (ATI_MODERN_SET | M64F_SDRAM_MAGIC_PLL | M64F_HW_TRIPLE)
367#define ATI_CHIP_264GTPRO (ATI_MODERN_SET | M64F_SDRAM_MAGIC_PLL | M64F_HW_TRIPLE | M64F_FIFO_32 | M64F_RESET_3D)
368#define ATI_CHIP_264LTPRO (ATI_MODERN_SET | M64F_HW_TRIPLE | M64F_FIFO_32 | M64F_RESET_3D)
369
Ville Syrjalaee905d02009-06-30 11:41:42 -0700370#define ATI_CHIP_264XL (ATI_MODERN_SET | M64F_HW_TRIPLE | M64F_FIFO_32 | M64F_RESET_3D | M64F_XL_DLL | M64F_MFB_FORCE_4 | M64F_XL_MEM)
371#define ATI_CHIP_MOBILITY (ATI_MODERN_SET | M64F_HW_TRIPLE | M64F_FIFO_32 | M64F_RESET_3D | M64F_XL_DLL | M64F_MFB_FORCE_4 | M64F_XL_MEM | M64F_MOBIL_BUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
373static struct {
374 u16 pci_id;
375 const char *name;
Ville Syrjälä25163c52006-01-09 20:53:27 -0800376 int pll, mclk, xclk, ecp_max;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 u32 features;
378} aty_chips[] __devinitdata = {
379#ifdef CONFIG_FB_ATY_GX
380 /* Mach64 GX */
Ville Syrjälä25163c52006-01-09 20:53:27 -0800381 { PCI_CHIP_MACH64GX, "ATI888GX00 (Mach64 GX)", 135, 50, 50, 0, ATI_CHIP_88800GX },
382 { PCI_CHIP_MACH64CX, "ATI888CX00 (Mach64 CX)", 135, 50, 50, 0, ATI_CHIP_88800CX },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383#endif /* CONFIG_FB_ATY_GX */
384
385#ifdef CONFIG_FB_ATY_CT
Ville Syrjälä25163c52006-01-09 20:53:27 -0800386 { PCI_CHIP_MACH64CT, "ATI264CT (Mach64 CT)", 135, 60, 60, 0, ATI_CHIP_264CT },
387 { PCI_CHIP_MACH64ET, "ATI264ET (Mach64 ET)", 135, 60, 60, 0, ATI_CHIP_264ET },
Ville Syrjälä0c23b672006-01-09 20:53:31 -0800388
Ville Syrjäläa14b2282006-01-09 20:53:32 -0800389 /* FIXME what is this chip? */
390 { PCI_CHIP_MACH64LT, "ATI264LT (Mach64 LT)", 135, 63, 63, 0, ATI_CHIP_264LT },
391
Ville Syrjälä0c23b672006-01-09 20:53:31 -0800392 { PCI_CHIP_MACH64VT, "ATI264VT (Mach64 VT)", 170, 67, 67, 80, ATI_CHIP_264VT },
Ville Syrjälä25163c52006-01-09 20:53:27 -0800393 { PCI_CHIP_MACH64GT, "3D RAGE (Mach64 GT)", 135, 63, 63, 80, ATI_CHIP_264GT },
Ville Syrjälä0c23b672006-01-09 20:53:31 -0800394
395 { PCI_CHIP_MACH64VU, "ATI264VT3 (Mach64 VU)", 200, 67, 67, 80, ATI_CHIP_264VT3 },
396 { PCI_CHIP_MACH64GU, "3D RAGE II+ (Mach64 GU)", 200, 67, 67, 100, ATI_CHIP_264GTB },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Ville Syrjäläa14b2282006-01-09 20:53:32 -0800398 { PCI_CHIP_MACH64LG, "3D RAGE LT (Mach64 LG)", 230, 63, 63, 100, ATI_CHIP_264LTG | M64F_LT_LCD_REGS | M64F_G3_PB_1024x768 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Ville Syrjälä25163c52006-01-09 20:53:27 -0800400 { PCI_CHIP_MACH64VV, "ATI264VT4 (Mach64 VV)", 230, 83, 83, 100, ATI_CHIP_264VT4 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Ville Syrjälä25163c52006-01-09 20:53:27 -0800402 { PCI_CHIP_MACH64GV, "3D RAGE IIC (Mach64 GV, PCI)", 230, 83, 83, 100, ATI_CHIP_264GT2C },
403 { PCI_CHIP_MACH64GW, "3D RAGE IIC (Mach64 GW, AGP)", 230, 83, 83, 100, ATI_CHIP_264GT2C },
404 { PCI_CHIP_MACH64GY, "3D RAGE IIC (Mach64 GY, PCI)", 230, 83, 83, 100, ATI_CHIP_264GT2C },
405 { PCI_CHIP_MACH64GZ, "3D RAGE IIC (Mach64 GZ, AGP)", 230, 83, 83, 100, ATI_CHIP_264GT2C },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Ville Syrjälä25163c52006-01-09 20:53:27 -0800407 { PCI_CHIP_MACH64GB, "3D RAGE PRO (Mach64 GB, BGA, AGP)", 230, 100, 100, 125, ATI_CHIP_264GTPRO },
408 { PCI_CHIP_MACH64GD, "3D RAGE PRO (Mach64 GD, BGA, AGP 1x)", 230, 100, 100, 125, ATI_CHIP_264GTPRO },
409 { PCI_CHIP_MACH64GI, "3D RAGE PRO (Mach64 GI, BGA, PCI)", 230, 100, 100, 125, ATI_CHIP_264GTPRO | M64F_MAGIC_VRAM_SIZE },
410 { PCI_CHIP_MACH64GP, "3D RAGE PRO (Mach64 GP, PQFP, PCI)", 230, 100, 100, 125, ATI_CHIP_264GTPRO },
411 { PCI_CHIP_MACH64GQ, "3D RAGE PRO (Mach64 GQ, PQFP, PCI, limited 3D)", 230, 100, 100, 125, ATI_CHIP_264GTPRO },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Ville Syrjälä25163c52006-01-09 20:53:27 -0800413 { PCI_CHIP_MACH64LB, "3D RAGE LT PRO (Mach64 LB, AGP)", 236, 75, 100, 135, ATI_CHIP_264LTPRO },
414 { PCI_CHIP_MACH64LD, "3D RAGE LT PRO (Mach64 LD, AGP)", 230, 100, 100, 135, ATI_CHIP_264LTPRO },
415 { PCI_CHIP_MACH64LI, "3D RAGE LT PRO (Mach64 LI, PCI)", 230, 100, 100, 135, ATI_CHIP_264LTPRO | M64F_G3_PB_1_1 | M64F_G3_PB_1024x768 },
Olaf Hering3b46f032006-11-16 01:19:17 -0800416 { PCI_CHIP_MACH64LP, "3D RAGE LT PRO (Mach64 LP, PCI)", 230, 100, 100, 135, ATI_CHIP_264LTPRO | M64F_G3_PB_1024x768 },
Ville Syrjälä25163c52006-01-09 20:53:27 -0800417 { PCI_CHIP_MACH64LQ, "3D RAGE LT PRO (Mach64 LQ, PCI)", 230, 100, 100, 135, ATI_CHIP_264LTPRO },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Ville Syrjälä69b569f2006-01-09 20:53:30 -0800419 { PCI_CHIP_MACH64GM, "3D RAGE XL (Mach64 GM, AGP 2x)", 230, 83, 63, 135, ATI_CHIP_264XL },
420 { PCI_CHIP_MACH64GN, "3D RAGE XC (Mach64 GN, AGP 2x)", 230, 83, 63, 135, ATI_CHIP_264XL },
421 { PCI_CHIP_MACH64GO, "3D RAGE XL (Mach64 GO, PCI-66)", 230, 83, 63, 135, ATI_CHIP_264XL },
422 { PCI_CHIP_MACH64GL, "3D RAGE XC (Mach64 GL, PCI-66)", 230, 83, 63, 135, ATI_CHIP_264XL },
423 { PCI_CHIP_MACH64GR, "3D RAGE XL (Mach64 GR, PCI-33)", 230, 83, 63, 135, ATI_CHIP_264XL | M64F_SDRAM_MAGIC_PLL },
424 { PCI_CHIP_MACH64GS, "3D RAGE XC (Mach64 GS, PCI-33)", 230, 83, 63, 135, ATI_CHIP_264XL },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Ville Syrjälä25163c52006-01-09 20:53:27 -0800426 { PCI_CHIP_MACH64LM, "3D RAGE Mobility P/M (Mach64 LM, AGP 2x)", 230, 83, 125, 135, ATI_CHIP_MOBILITY },
427 { PCI_CHIP_MACH64LN, "3D RAGE Mobility L (Mach64 LN, AGP 2x)", 230, 83, 125, 135, ATI_CHIP_MOBILITY },
428 { PCI_CHIP_MACH64LR, "3D RAGE Mobility P/M (Mach64 LR, PCI)", 230, 83, 125, 135, ATI_CHIP_MOBILITY },
429 { PCI_CHIP_MACH64LS, "3D RAGE Mobility L (Mach64 LS, PCI)", 230, 83, 125, 135, ATI_CHIP_MOBILITY },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430#endif /* CONFIG_FB_ATY_CT */
431};
432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433static int __devinit correct_chipset(struct atyfb_par *par)
434{
435 u8 rev;
436 u16 type;
437 u32 chip_id;
438 const char *name;
439 int i;
440
Tobias Klauserd1ae4182006-03-27 01:17:39 -0800441 for (i = ARRAY_SIZE(aty_chips) - 1; i >= 0; i--)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 if (par->pci_id == aty_chips[i].pci_id)
443 break;
444
Ville Syrjala3880b0b2008-07-23 21:31:30 -0700445 if (i < 0)
446 return -ENODEV;
447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 name = aty_chips[i].name;
449 par->pll_limits.pll_max = aty_chips[i].pll;
450 par->pll_limits.mclk = aty_chips[i].mclk;
451 par->pll_limits.xclk = aty_chips[i].xclk;
Ville Syrjälä25163c52006-01-09 20:53:27 -0800452 par->pll_limits.ecp_max = aty_chips[i].ecp_max;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 par->features = aty_chips[i].features;
454
Randy Dunlapfe861752009-02-04 15:12:20 -0800455 chip_id = aty_ld_le32(CNFG_CHIP_ID, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 type = chip_id & CFG_CHIP_TYPE;
457 rev = (chip_id & CFG_CHIP_REV) >> 24;
458
Ville Syrjala68962012009-09-22 16:47:01 -0700459 switch (par->pci_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460#ifdef CONFIG_FB_ATY_GX
461 case PCI_CHIP_MACH64GX:
Ville Syrjala68962012009-09-22 16:47:01 -0700462 if (type != 0x00d7)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 return -ENODEV;
464 break;
465 case PCI_CHIP_MACH64CX:
Ville Syrjala68962012009-09-22 16:47:01 -0700466 if (type != 0x0057)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 return -ENODEV;
468 break;
469#endif
470#ifdef CONFIG_FB_ATY_CT
471 case PCI_CHIP_MACH64VT:
Ville Syrjälä0c23b672006-01-09 20:53:31 -0800472 switch (rev & 0x07) {
473 case 0x00:
474 switch (rev & 0xc0) {
475 case 0x00:
476 name = "ATI264VT (A3) (Mach64 VT)";
477 par->pll_limits.pll_max = 170;
478 par->pll_limits.mclk = 67;
479 par->pll_limits.xclk = 67;
480 par->pll_limits.ecp_max = 80;
481 par->features = ATI_CHIP_264VT;
482 break;
483 case 0x40:
484 name = "ATI264VT2 (A4) (Mach64 VT)";
485 par->pll_limits.pll_max = 200;
486 par->pll_limits.mclk = 67;
487 par->pll_limits.xclk = 67;
488 par->pll_limits.ecp_max = 80;
489 par->features = ATI_CHIP_264VT | M64F_MAGIC_POSTDIV;
490 break;
491 }
492 break;
493 case 0x01:
494 name = "ATI264VT3 (B1) (Mach64 VT)";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 par->pll_limits.pll_max = 200;
496 par->pll_limits.mclk = 67;
497 par->pll_limits.xclk = 67;
Ville Syrjälä25163c52006-01-09 20:53:27 -0800498 par->pll_limits.ecp_max = 80;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 par->features = ATI_CHIP_264VTB;
Ville Syrjälä0c23b672006-01-09 20:53:31 -0800500 break;
501 case 0x02:
502 name = "ATI264VT3 (B2) (Mach64 VT)";
503 par->pll_limits.pll_max = 200;
504 par->pll_limits.mclk = 67;
505 par->pll_limits.xclk = 67;
506 par->pll_limits.ecp_max = 80;
507 par->features = ATI_CHIP_264VT3;
508 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 }
510 break;
511 case PCI_CHIP_MACH64GT:
Ville Syrjälä0c23b672006-01-09 20:53:31 -0800512 switch (rev & 0x07) {
513 case 0x01:
514 name = "3D RAGE II (Mach64 GT)";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 par->pll_limits.pll_max = 170;
516 par->pll_limits.mclk = 67;
517 par->pll_limits.xclk = 67;
Ville Syrjälä25163c52006-01-09 20:53:27 -0800518 par->pll_limits.ecp_max = 80;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 par->features = ATI_CHIP_264GTB;
Ville Syrjälä0c23b672006-01-09 20:53:31 -0800520 break;
521 case 0x02:
522 name = "3D RAGE II+ (Mach64 GT)";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 par->pll_limits.pll_max = 200;
524 par->pll_limits.mclk = 67;
525 par->pll_limits.xclk = 67;
Ville Syrjälä25163c52006-01-09 20:53:27 -0800526 par->pll_limits.ecp_max = 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 par->features = ATI_CHIP_264GTB;
Ville Syrjälä0c23b672006-01-09 20:53:31 -0800528 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 }
530 break;
531#endif
532 }
533
534 PRINTKI("%s [0x%04x rev 0x%02x]\n", name, type, rev);
535 return 0;
536}
537
538static char ram_dram[] __devinitdata = "DRAM";
539static char ram_resv[] __devinitdata = "RESV";
540#ifdef CONFIG_FB_ATY_GX
541static char ram_vram[] __devinitdata = "VRAM";
542#endif /* CONFIG_FB_ATY_GX */
543#ifdef CONFIG_FB_ATY_CT
544static char ram_edo[] __devinitdata = "EDO";
545static char ram_sdram[] __devinitdata = "SDRAM (1:1)";
546static char ram_sgram[] __devinitdata = "SGRAM (1:1)";
547static char ram_sdram32[] __devinitdata = "SDRAM (2:1) (32-bit)";
Ville Syrjalaee905d02009-06-30 11:41:42 -0700548static char ram_wram[] __devinitdata = "WRAM";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549static char ram_off[] __devinitdata = "OFF";
550#endif /* CONFIG_FB_ATY_CT */
551
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553#ifdef CONFIG_FB_ATY_GX
554static char *aty_gx_ram[8] __devinitdata = {
555 ram_dram, ram_vram, ram_vram, ram_dram,
556 ram_dram, ram_vram, ram_vram, ram_resv
557};
558#endif /* CONFIG_FB_ATY_GX */
559
560#ifdef CONFIG_FB_ATY_CT
561static char *aty_ct_ram[8] __devinitdata = {
562 ram_off, ram_dram, ram_edo, ram_edo,
Ville Syrjalaee905d02009-06-30 11:41:42 -0700563 ram_sdram, ram_sgram, ram_wram, ram_resv
564};
565static char *aty_xl_ram[8] __devinitdata = {
566 ram_off, ram_dram, ram_edo, ram_edo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 ram_sdram, ram_sgram, ram_sdram32, ram_resv
568};
569#endif /* CONFIG_FB_ATY_CT */
570
Ville Syrjala68962012009-09-22 16:47:01 -0700571static u32 atyfb_get_pixclock(struct fb_var_screeninfo *var,
572 struct atyfb_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
574 u32 pixclock = var->pixclock;
575#ifdef CONFIG_FB_ATY_GENERIC_LCD
576 u32 lcd_on_off;
577 par->pll.ct.xres = 0;
578 if (par->lcd_table != 0) {
579 lcd_on_off = aty_ld_lcd(LCD_GEN_CNTL, par);
Ville Syrjala68962012009-09-22 16:47:01 -0700580 if (lcd_on_off & LCD_ON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 par->pll.ct.xres = var->xres;
582 pixclock = par->lcd_pixclock;
583 }
584 }
585#endif
586 return pixclock;
587}
588
589#if defined(CONFIG_PPC)
590
591/*
Ville Syrjala68962012009-09-22 16:47:01 -0700592 * Apple monitor sense
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 */
594
Antonino A. Daplas1a8c9792006-06-26 00:26:58 -0700595static int __devinit read_aty_sense(const struct atyfb_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
597 int sense, i;
598
599 aty_st_le32(GP_IO, 0x31003100, par); /* drive outputs high */
600 __delay(200);
601 aty_st_le32(GP_IO, 0, par); /* turn off outputs */
602 __delay(2000);
603 i = aty_ld_le32(GP_IO, par); /* get primary sense value */
604 sense = ((i & 0x3000) >> 3) | (i & 0x100);
605
606 /* drive each sense line low in turn and collect the other 2 */
607 aty_st_le32(GP_IO, 0x20000000, par); /* drive A low */
608 __delay(2000);
609 i = aty_ld_le32(GP_IO, par);
610 sense |= ((i & 0x1000) >> 7) | ((i & 0x100) >> 4);
611 aty_st_le32(GP_IO, 0x20002000, par); /* drive A high again */
612 __delay(200);
613
614 aty_st_le32(GP_IO, 0x10000000, par); /* drive B low */
615 __delay(2000);
616 i = aty_ld_le32(GP_IO, par);
617 sense |= ((i & 0x2000) >> 10) | ((i & 0x100) >> 6);
618 aty_st_le32(GP_IO, 0x10001000, par); /* drive B high again */
619 __delay(200);
620
621 aty_st_le32(GP_IO, 0x01000000, par); /* drive C low */
622 __delay(2000);
623 sense |= (aty_ld_le32(GP_IO, par) & 0x3000) >> 12;
624 aty_st_le32(GP_IO, 0, par); /* turn off outputs */
625 return sense;
626}
627
628#endif /* defined(CONFIG_PPC) */
629
630/* ------------------------------------------------------------------------- */
631
632/*
Ville Syrjala68962012009-09-22 16:47:01 -0700633 * CRTC programming
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 */
635
636static void aty_get_crtc(const struct atyfb_par *par, struct crtc *crtc)
637{
638#ifdef CONFIG_FB_ATY_GENERIC_LCD
639 if (par->lcd_table != 0) {
Ville Syrjala68962012009-09-22 16:47:01 -0700640 if (!M64_HAS(LT_LCD_REGS)) {
641 crtc->lcd_index = aty_ld_le32(LCD_INDEX, par);
642 aty_st_le32(LCD_INDEX, crtc->lcd_index, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 }
Randy Dunlapfe861752009-02-04 15:12:20 -0800644 crtc->lcd_config_panel = aty_ld_lcd(CNFG_PANEL, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 crtc->lcd_gen_cntl = aty_ld_lcd(LCD_GEN_CNTL, par);
646
647
648 /* switch to non shadow registers */
649 aty_st_lcd(LCD_GEN_CNTL, crtc->lcd_gen_cntl &
Ville Syrjala68962012009-09-22 16:47:01 -0700650 ~(CRTC_RW_SELECT | SHADOW_EN | SHADOW_RW_EN), par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652 /* save stretching */
653 crtc->horz_stretching = aty_ld_lcd(HORZ_STRETCHING, par);
654 crtc->vert_stretching = aty_ld_lcd(VERT_STRETCHING, par);
655 if (!M64_HAS(LT_LCD_REGS))
656 crtc->ext_vert_stretch = aty_ld_lcd(EXT_VERT_STRETCH, par);
657 }
658#endif
659 crtc->h_tot_disp = aty_ld_le32(CRTC_H_TOTAL_DISP, par);
660 crtc->h_sync_strt_wid = aty_ld_le32(CRTC_H_SYNC_STRT_WID, par);
661 crtc->v_tot_disp = aty_ld_le32(CRTC_V_TOTAL_DISP, par);
662 crtc->v_sync_strt_wid = aty_ld_le32(CRTC_V_SYNC_STRT_WID, par);
663 crtc->vline_crnt_vline = aty_ld_le32(CRTC_VLINE_CRNT_VLINE, par);
664 crtc->off_pitch = aty_ld_le32(CRTC_OFF_PITCH, par);
665 crtc->gen_cntl = aty_ld_le32(CRTC_GEN_CNTL, par);
666
667#ifdef CONFIG_FB_ATY_GENERIC_LCD
668 if (par->lcd_table != 0) {
669 /* switch to shadow registers */
670 aty_st_lcd(LCD_GEN_CNTL, (crtc->lcd_gen_cntl & ~CRTC_RW_SELECT) |
Ville Syrjala68962012009-09-22 16:47:01 -0700671 SHADOW_EN | SHADOW_RW_EN, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673 crtc->shadow_h_tot_disp = aty_ld_le32(CRTC_H_TOTAL_DISP, par);
674 crtc->shadow_h_sync_strt_wid = aty_ld_le32(CRTC_H_SYNC_STRT_WID, par);
675 crtc->shadow_v_tot_disp = aty_ld_le32(CRTC_V_TOTAL_DISP, par);
676 crtc->shadow_v_sync_strt_wid = aty_ld_le32(CRTC_V_SYNC_STRT_WID, par);
677
678 aty_st_le32(LCD_GEN_CNTL, crtc->lcd_gen_cntl, par);
679 }
680#endif /* CONFIG_FB_ATY_GENERIC_LCD */
681}
682
683static void aty_set_crtc(const struct atyfb_par *par, const struct crtc *crtc)
684{
685#ifdef CONFIG_FB_ATY_GENERIC_LCD
686 if (par->lcd_table != 0) {
687 /* stop CRTC */
Ville Syrjala68962012009-09-22 16:47:01 -0700688 aty_st_le32(CRTC_GEN_CNTL, crtc->gen_cntl &
689 ~(CRTC_EXT_DISP_EN | CRTC_EN), par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
691 /* update non-shadow registers first */
Randy Dunlapfe861752009-02-04 15:12:20 -0800692 aty_st_lcd(CNFG_PANEL, crtc->lcd_config_panel, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 aty_st_lcd(LCD_GEN_CNTL, crtc->lcd_gen_cntl &
Ville Syrjala68962012009-09-22 16:47:01 -0700694 ~(CRTC_RW_SELECT | SHADOW_EN | SHADOW_RW_EN), par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
696 /* temporarily disable stretching */
Ville Syrjala68962012009-09-22 16:47:01 -0700697 aty_st_lcd(HORZ_STRETCHING, crtc->horz_stretching &
698 ~(HORZ_STRETCH_MODE | HORZ_STRETCH_EN), par);
699 aty_st_lcd(VERT_STRETCHING, crtc->vert_stretching &
700 ~(VERT_STRETCH_RATIO1 | VERT_STRETCH_RATIO2 |
701 VERT_STRETCH_USE0 | VERT_STRETCH_EN), par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 }
703#endif
704 /* turn off CRT */
705 aty_st_le32(CRTC_GEN_CNTL, crtc->gen_cntl & ~CRTC_EN, par);
706
707 DPRINTK("setting up CRTC\n");
708 DPRINTK("set primary CRT to %ix%i %c%c composite %c\n",
Ville Syrjala68962012009-09-22 16:47:01 -0700709 ((((crtc->h_tot_disp >> 16) & 0xff) + 1) << 3),
710 (((crtc->v_tot_disp >> 16) & 0x7ff) + 1),
711 (crtc->h_sync_strt_wid & 0x200000) ? 'N' : 'P',
712 (crtc->v_sync_strt_wid & 0x200000) ? 'N' : 'P',
713 (crtc->gen_cntl & CRTC_CSYNC_EN) ? 'P' : 'N');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
Ville Syrjala68962012009-09-22 16:47:01 -0700715 DPRINTK("CRTC_H_TOTAL_DISP: %x\n", crtc->h_tot_disp);
716 DPRINTK("CRTC_H_SYNC_STRT_WID: %x\n", crtc->h_sync_strt_wid);
717 DPRINTK("CRTC_V_TOTAL_DISP: %x\n", crtc->v_tot_disp);
718 DPRINTK("CRTC_V_SYNC_STRT_WID: %x\n", crtc->v_sync_strt_wid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 DPRINTK("CRTC_OFF_PITCH: %x\n", crtc->off_pitch);
720 DPRINTK("CRTC_VLINE_CRNT_VLINE: %x\n", crtc->vline_crnt_vline);
Ville Syrjala68962012009-09-22 16:47:01 -0700721 DPRINTK("CRTC_GEN_CNTL: %x\n", crtc->gen_cntl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723 aty_st_le32(CRTC_H_TOTAL_DISP, crtc->h_tot_disp, par);
724 aty_st_le32(CRTC_H_SYNC_STRT_WID, crtc->h_sync_strt_wid, par);
725 aty_st_le32(CRTC_V_TOTAL_DISP, crtc->v_tot_disp, par);
726 aty_st_le32(CRTC_V_SYNC_STRT_WID, crtc->v_sync_strt_wid, par);
727 aty_st_le32(CRTC_OFF_PITCH, crtc->off_pitch, par);
728 aty_st_le32(CRTC_VLINE_CRNT_VLINE, crtc->vline_crnt_vline, par);
729
730 aty_st_le32(CRTC_GEN_CNTL, crtc->gen_cntl, par);
731#if 0
732 FIXME
733 if (par->accel_flags & FB_ACCELF_TEXT)
734 aty_init_engine(par, info);
735#endif
736#ifdef CONFIG_FB_ATY_GENERIC_LCD
737 /* after setting the CRTC registers we should set the LCD registers. */
738 if (par->lcd_table != 0) {
739 /* switch to shadow registers */
740 aty_st_lcd(LCD_GEN_CNTL, (crtc->lcd_gen_cntl & ~CRTC_RW_SELECT) |
Ville Syrjala68962012009-09-22 16:47:01 -0700741 SHADOW_EN | SHADOW_RW_EN, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Ville Syrjäläcd4617b2006-01-09 20:53:21 -0800743 DPRINTK("set shadow CRT to %ix%i %c%c\n",
Ville Syrjala68962012009-09-22 16:47:01 -0700744 ((((crtc->shadow_h_tot_disp >> 16) & 0xff) + 1) << 3),
745 (((crtc->shadow_v_tot_disp >> 16) & 0x7ff) + 1),
746 (crtc->shadow_h_sync_strt_wid & 0x200000) ? 'N' : 'P',
747 (crtc->shadow_v_sync_strt_wid & 0x200000) ? 'N' : 'P');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Ville Syrjala68962012009-09-22 16:47:01 -0700749 DPRINTK("SHADOW CRTC_H_TOTAL_DISP: %x\n",
750 crtc->shadow_h_tot_disp);
751 DPRINTK("SHADOW CRTC_H_SYNC_STRT_WID: %x\n",
752 crtc->shadow_h_sync_strt_wid);
753 DPRINTK("SHADOW CRTC_V_TOTAL_DISP: %x\n",
754 crtc->shadow_v_tot_disp);
755 DPRINTK("SHADOW CRTC_V_SYNC_STRT_WID: %x\n",
756 crtc->shadow_v_sync_strt_wid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
758 aty_st_le32(CRTC_H_TOTAL_DISP, crtc->shadow_h_tot_disp, par);
759 aty_st_le32(CRTC_H_SYNC_STRT_WID, crtc->shadow_h_sync_strt_wid, par);
760 aty_st_le32(CRTC_V_TOTAL_DISP, crtc->shadow_v_tot_disp, par);
761 aty_st_le32(CRTC_V_SYNC_STRT_WID, crtc->shadow_v_sync_strt_wid, par);
762
763 /* restore CRTC selection & shadow state and enable stretching */
764 DPRINTK("LCD_GEN_CNTL: %x\n", crtc->lcd_gen_cntl);
765 DPRINTK("HORZ_STRETCHING: %x\n", crtc->horz_stretching);
766 DPRINTK("VERT_STRETCHING: %x\n", crtc->vert_stretching);
Ville Syrjala68962012009-09-22 16:47:01 -0700767 if (!M64_HAS(LT_LCD_REGS))
768 DPRINTK("EXT_VERT_STRETCH: %x\n", crtc->ext_vert_stretch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770 aty_st_lcd(LCD_GEN_CNTL, crtc->lcd_gen_cntl, par);
771 aty_st_lcd(HORZ_STRETCHING, crtc->horz_stretching, par);
772 aty_st_lcd(VERT_STRETCHING, crtc->vert_stretching, par);
Ville Syrjala68962012009-09-22 16:47:01 -0700773 if (!M64_HAS(LT_LCD_REGS)) {
774 aty_st_lcd(EXT_VERT_STRETCH, crtc->ext_vert_stretch, par);
775 aty_ld_le32(LCD_INDEX, par);
776 aty_st_le32(LCD_INDEX, crtc->lcd_index, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 }
778 }
779#endif /* CONFIG_FB_ATY_GENERIC_LCD */
780}
781
Ville Syrjalaee905d02009-06-30 11:41:42 -0700782static u32 calc_line_length(struct atyfb_par *par, u32 vxres, u32 bpp)
783{
784 u32 line_length = vxres * bpp / 8;
785
786 if (par->ram_type == SGRAM ||
787 (!M64_HAS(XL_MEM) && par->ram_type == WRAM))
788 line_length = (line_length + 63) & ~63;
789
790 return line_length;
791}
792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793static int aty_var_to_crtc(const struct fb_info *info,
Ville Syrjala68962012009-09-22 16:47:01 -0700794 const struct fb_var_screeninfo *var,
795 struct crtc *crtc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796{
797 struct atyfb_par *par = (struct atyfb_par *) info->par;
798 u32 xres, yres, vxres, vyres, xoffset, yoffset, bpp;
799 u32 sync, vmode, vdisplay;
800 u32 h_total, h_disp, h_sync_strt, h_sync_end, h_sync_dly, h_sync_wid, h_sync_pol;
801 u32 v_total, v_disp, v_sync_strt, v_sync_end, v_sync_wid, v_sync_pol, c_sync;
802 u32 pix_width, dp_pix_width, dp_chain_mask;
Ville Syrjalaee905d02009-06-30 11:41:42 -0700803 u32 line_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805 /* input */
Ville Syrjalaee905d02009-06-30 11:41:42 -0700806 xres = (var->xres + 7) & ~7;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 yres = var->yres;
Ville Syrjalaee905d02009-06-30 11:41:42 -0700808 vxres = (var->xres_virtual + 7) & ~7;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 vyres = var->yres_virtual;
Ville Syrjalaee905d02009-06-30 11:41:42 -0700810 xoffset = (var->xoffset + 7) & ~7;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 yoffset = var->yoffset;
812 bpp = var->bits_per_pixel;
813 if (bpp == 16)
814 bpp = (var->green.length == 5) ? 15 : 16;
815 sync = var->sync;
816 vmode = var->vmode;
817
818 /* convert (and round up) and validate */
819 if (vxres < xres + xoffset)
820 vxres = xres + xoffset;
821 h_disp = xres;
822
823 if (vyres < yres + yoffset)
824 vyres = yres + yoffset;
825 v_disp = yres;
826
827 if (bpp <= 8) {
828 bpp = 8;
829 pix_width = CRTC_PIX_WIDTH_8BPP;
Ville Syrjala68962012009-09-22 16:47:01 -0700830 dp_pix_width = HOST_8BPP | SRC_8BPP | DST_8BPP |
831 BYTE_ORDER_LSB_TO_MSB;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 dp_chain_mask = DP_CHAIN_8BPP;
833 } else if (bpp <= 15) {
834 bpp = 16;
835 pix_width = CRTC_PIX_WIDTH_15BPP;
836 dp_pix_width = HOST_15BPP | SRC_15BPP | DST_15BPP |
Ville Syrjala68962012009-09-22 16:47:01 -0700837 BYTE_ORDER_LSB_TO_MSB;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 dp_chain_mask = DP_CHAIN_15BPP;
839 } else if (bpp <= 16) {
840 bpp = 16;
841 pix_width = CRTC_PIX_WIDTH_16BPP;
842 dp_pix_width = HOST_16BPP | SRC_16BPP | DST_16BPP |
Ville Syrjala68962012009-09-22 16:47:01 -0700843 BYTE_ORDER_LSB_TO_MSB;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 dp_chain_mask = DP_CHAIN_16BPP;
845 } else if (bpp <= 24 && M64_HAS(INTEGRATED)) {
846 bpp = 24;
847 pix_width = CRTC_PIX_WIDTH_24BPP;
Ville Syrjala68962012009-09-22 16:47:01 -0700848 dp_pix_width = HOST_8BPP | SRC_8BPP | DST_8BPP |
849 BYTE_ORDER_LSB_TO_MSB;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 dp_chain_mask = DP_CHAIN_24BPP;
851 } else if (bpp <= 32) {
852 bpp = 32;
853 pix_width = CRTC_PIX_WIDTH_32BPP;
854 dp_pix_width = HOST_32BPP | SRC_32BPP | DST_32BPP |
Ville Syrjala68962012009-09-22 16:47:01 -0700855 BYTE_ORDER_LSB_TO_MSB;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 dp_chain_mask = DP_CHAIN_32BPP;
857 } else
858 FAIL("invalid bpp");
859
Ville Syrjalaee905d02009-06-30 11:41:42 -0700860 line_length = calc_line_length(par, vxres, bpp);
861
862 if (vyres * line_length > info->fix.smem_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 FAIL("not enough video RAM");
864
865 h_sync_pol = sync & FB_SYNC_HOR_HIGH_ACT ? 0 : 1;
866 v_sync_pol = sync & FB_SYNC_VERT_HIGH_ACT ? 0 : 1;
867
Ville Syrjala68962012009-09-22 16:47:01 -0700868 if ((xres > 1600) || (yres > 1200)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 FAIL("MACH64 chips are designed for max 1600x1200\n"
Ville Syrjala68962012009-09-22 16:47:01 -0700870 "select anoter resolution.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 }
872 h_sync_strt = h_disp + var->right_margin;
873 h_sync_end = h_sync_strt + var->hsync_len;
874 h_sync_dly = var->right_margin & 7;
875 h_total = h_sync_end + h_sync_dly + var->left_margin;
876
877 v_sync_strt = v_disp + var->lower_margin;
878 v_sync_end = v_sync_strt + var->vsync_len;
879 v_total = v_sync_end + var->upper_margin;
880
881#ifdef CONFIG_FB_ATY_GENERIC_LCD
882 if (par->lcd_table != 0) {
Ville Syrjala68962012009-09-22 16:47:01 -0700883 if (!M64_HAS(LT_LCD_REGS)) {
884 u32 lcd_index = aty_ld_le32(LCD_INDEX, par);
885 crtc->lcd_index = lcd_index &
886 ~(LCD_INDEX_MASK | LCD_DISPLAY_DIS |
887 LCD_SRC_SEL | CRTC2_DISPLAY_DIS);
888 aty_st_le32(LCD_INDEX, lcd_index, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 }
890
891 if (!M64_HAS(MOBIL_BUS))
892 crtc->lcd_index |= CRTC2_DISPLAY_DIS;
893
Randy Dunlapfe861752009-02-04 15:12:20 -0800894 crtc->lcd_config_panel = aty_ld_lcd(CNFG_PANEL, par) | 0x4000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 crtc->lcd_gen_cntl = aty_ld_lcd(LCD_GEN_CNTL, par) & ~CRTC_RW_SELECT;
896
897 crtc->lcd_gen_cntl &=
898 ~(HORZ_DIVBY2_EN | DIS_HOR_CRT_DIVBY2 | TVCLK_PM_EN |
899 /*VCLK_DAC_PM_EN | USE_SHADOWED_VEND |*/
900 USE_SHADOWED_ROWCUR | SHADOW_EN | SHADOW_RW_EN);
901 crtc->lcd_gen_cntl |= DONT_SHADOW_VPAR | LOCK_8DOT;
902
Ville Syrjala68962012009-09-22 16:47:01 -0700903 if ((crtc->lcd_gen_cntl & LCD_ON) &&
904 ((xres > par->lcd_width) || (yres > par->lcd_height))) {
905 /*
906 * We cannot display the mode on the LCD. If the CRT is
907 * enabled we can turn off the LCD.
908 * If the CRT is off, it isn't a good idea to switch it
909 * on; we don't know if one is connected. So it's better
910 * to fail then.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 */
912 if (crtc->lcd_gen_cntl & CRT_ON) {
Ville Syrjälä866d84c2006-01-09 20:53:22 -0800913 if (!(var->activate & FB_ACTIVATE_TEST))
914 PRINTKI("Disable LCD panel, because video mode does not fit.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 crtc->lcd_gen_cntl &= ~LCD_ON;
916 /*aty_st_lcd(LCD_GEN_CNTL, crtc->lcd_gen_cntl, par);*/
917 } else {
Ville Syrjälä866d84c2006-01-09 20:53:22 -0800918 if (!(var->activate & FB_ACTIVATE_TEST))
919 PRINTKE("Video mode exceeds size of LCD panel.\nConnect this computer to a conventional monitor if you really need this mode.\n");
920 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 }
922 }
923 }
924
925 if ((par->lcd_table != 0) && (crtc->lcd_gen_cntl & LCD_ON)) {
926 int VScan = 1;
927 /* bpp -> bytespp, 1,4 -> 0; 8 -> 2; 15,16 -> 1; 24 -> 6; 32 -> 5
928 const u8 DFP_h_sync_dly_LT[] = { 0, 2, 1, 6, 5 };
929 const u8 ADD_to_strt_wid_and_dly_LT_DAC[] = { 0, 5, 6, 9, 9, 12, 12 }; */
930
931 vmode &= ~(FB_VMODE_DOUBLE | FB_VMODE_INTERLACED);
932
Ville Syrjala68962012009-09-22 16:47:01 -0700933 /*
934 * This is horror! When we simulate, say 640x480 on an 800x600
935 * LCD monitor, the CRTC should be programmed 800x600 values for
936 * the non visible part, but 640x480 for the visible part.
937 * This code has been tested on a laptop with it's 1400x1050 LCD
938 * monitor and a conventional monitor both switched on.
939 * Tested modes: 1280x1024, 1152x864, 1024x768, 800x600,
940 * works with little glitches also with DOUBLESCAN modes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 */
942 if (yres < par->lcd_height) {
943 VScan = par->lcd_height / yres;
Ville Syrjala68962012009-09-22 16:47:01 -0700944 if (VScan > 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 VScan = 2;
946 vmode |= FB_VMODE_DOUBLE;
947 }
948 }
949
950 h_sync_strt = h_disp + par->lcd_right_margin;
951 h_sync_end = h_sync_strt + par->lcd_hsync_len;
952 h_sync_dly = /*DFP_h_sync_dly[ ( bpp + 1 ) / 3 ]; */par->lcd_hsync_dly;
953 h_total = h_disp + par->lcd_hblank_len;
954
955 v_sync_strt = v_disp + par->lcd_lower_margin / VScan;
956 v_sync_end = v_sync_strt + par->lcd_vsync_len / VScan;
957 v_total = v_disp + par->lcd_vblank_len / VScan;
958 }
959#endif /* CONFIG_FB_ATY_GENERIC_LCD */
960
961 h_disp = (h_disp >> 3) - 1;
962 h_sync_strt = (h_sync_strt >> 3) - 1;
963 h_sync_end = (h_sync_end >> 3) - 1;
964 h_total = (h_total >> 3) - 1;
965 h_sync_wid = h_sync_end - h_sync_strt;
966
967 FAIL_MAX("h_disp too large", h_disp, 0xff);
968 FAIL_MAX("h_sync_strt too large", h_sync_strt, 0x1ff);
969 /*FAIL_MAX("h_sync_wid too large", h_sync_wid, 0x1f);*/
Ville Syrjala68962012009-09-22 16:47:01 -0700970 if (h_sync_wid > 0x1f)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 h_sync_wid = 0x1f;
972 FAIL_MAX("h_total too large", h_total, 0x1ff);
973
974 if (vmode & FB_VMODE_DOUBLE) {
975 v_disp <<= 1;
976 v_sync_strt <<= 1;
977 v_sync_end <<= 1;
978 v_total <<= 1;
979 }
980
981 vdisplay = yres;
982#ifdef CONFIG_FB_ATY_GENERIC_LCD
983 if ((par->lcd_table != 0) && (crtc->lcd_gen_cntl & LCD_ON))
984 vdisplay = par->lcd_height;
985#endif
986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 v_disp--;
988 v_sync_strt--;
989 v_sync_end--;
990 v_total--;
991 v_sync_wid = v_sync_end - v_sync_strt;
992
993 FAIL_MAX("v_disp too large", v_disp, 0x7ff);
994 FAIL_MAX("v_sync_stsrt too large", v_sync_strt, 0x7ff);
995 /*FAIL_MAX("v_sync_wid too large", v_sync_wid, 0x1f);*/
Ville Syrjala68962012009-09-22 16:47:01 -0700996 if (v_sync_wid > 0x1f)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 v_sync_wid = 0x1f;
998 FAIL_MAX("v_total too large", v_total, 0x7ff);
999
1000 c_sync = sync & FB_SYNC_COMP_HIGH_ACT ? CRTC_CSYNC_EN : 0;
1001
1002 /* output */
1003 crtc->vxres = vxres;
1004 crtc->vyres = vyres;
1005 crtc->xoffset = xoffset;
1006 crtc->yoffset = yoffset;
1007 crtc->bpp = bpp;
Ville Syrjalaee905d02009-06-30 11:41:42 -07001008 crtc->off_pitch =
1009 ((yoffset * line_length + xoffset * bpp / 8) / 8) |
1010 ((line_length / bpp) << 22);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 crtc->vline_crnt_vline = 0;
1012
Ville Syrjala68962012009-09-22 16:47:01 -07001013 crtc->h_tot_disp = h_total | (h_disp << 16);
1014 crtc->h_sync_strt_wid = (h_sync_strt & 0xff) | (h_sync_dly << 8) |
1015 ((h_sync_strt & 0x100) << 4) | (h_sync_wid << 16) |
1016 (h_sync_pol << 21);
1017 crtc->v_tot_disp = v_total | (v_disp << 16);
1018 crtc->v_sync_strt_wid = v_sync_strt | (v_sync_wid << 16) |
1019 (v_sync_pol << 21);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
1021 /* crtc->gen_cntl = aty_ld_le32(CRTC_GEN_CNTL, par) & CRTC_PRESERVED_MASK; */
1022 crtc->gen_cntl = CRTC_EXT_DISP_EN | CRTC_EN | pix_width | c_sync;
1023 crtc->gen_cntl |= CRTC_VGA_LINEAR;
1024
1025 /* Enable doublescan mode if requested */
1026 if (vmode & FB_VMODE_DOUBLE)
1027 crtc->gen_cntl |= CRTC_DBL_SCAN_EN;
1028 /* Enable interlaced mode if requested */
1029 if (vmode & FB_VMODE_INTERLACED)
1030 crtc->gen_cntl |= CRTC_INTERLACE_EN;
1031#ifdef CONFIG_FB_ATY_GENERIC_LCD
1032 if (par->lcd_table != 0) {
1033 vdisplay = yres;
Ville Syrjala68962012009-09-22 16:47:01 -07001034 if (vmode & FB_VMODE_DOUBLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 vdisplay <<= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 crtc->gen_cntl &= ~(CRTC2_EN | CRTC2_PIX_WIDTH);
1037 crtc->lcd_gen_cntl &= ~(HORZ_DIVBY2_EN | DIS_HOR_CRT_DIVBY2 |
Ville Syrjala68962012009-09-22 16:47:01 -07001038 /*TVCLK_PM_EN | VCLK_DAC_PM_EN |*/
1039 USE_SHADOWED_VEND |
1040 USE_SHADOWED_ROWCUR |
1041 SHADOW_EN | SHADOW_RW_EN);
1042 crtc->lcd_gen_cntl |= DONT_SHADOW_VPAR/* | LOCK_8DOT*/;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
1044 /* MOBILITY M1 tested, FIXME: LT */
1045 crtc->horz_stretching = aty_ld_lcd(HORZ_STRETCHING, par);
1046 if (!M64_HAS(LT_LCD_REGS))
1047 crtc->ext_vert_stretch = aty_ld_lcd(EXT_VERT_STRETCH, par) &
1048 ~(AUTO_VERT_RATIO | VERT_STRETCH_MODE | VERT_STRETCH_RATIO3);
1049
Ville Syrjala68962012009-09-22 16:47:01 -07001050 crtc->horz_stretching &= ~(HORZ_STRETCH_RATIO |
1051 HORZ_STRETCH_LOOP | AUTO_HORZ_RATIO |
1052 HORZ_STRETCH_MODE | HORZ_STRETCH_EN);
Ville Syrjäläe98cef12006-01-09 20:53:26 -08001053 if (xres < par->lcd_width && crtc->lcd_gen_cntl & LCD_ON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 do {
1055 /*
Ville Syrjala68962012009-09-22 16:47:01 -07001056 * The horizontal blender misbehaves when
1057 * HDisplay is less than a certain threshold
1058 * (440 for a 1024-wide panel). It doesn't
1059 * stretch such modes enough. Use pixel
1060 * replication instead of blending to stretch
1061 * modes that can be made to exactly fit the
1062 * panel width. The undocumented "NoLCDBlend"
1063 * option allows the pixel-replicated mode to
1064 * be slightly wider or narrower than the
1065 * panel width. It also causes a mode that is
1066 * exactly half as wide as the panel to be
1067 * pixel-replicated, rather than blended.
1068 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 int HDisplay = xres & ~7;
1070 int nStretch = par->lcd_width / HDisplay;
1071 int Remainder = par->lcd_width % HDisplay;
1072
1073 if ((!Remainder && ((nStretch > 2))) ||
Ville Syrjala68962012009-09-22 16:47:01 -07001074 (((HDisplay * 16) / par->lcd_width) < 7)) {
1075 static const char StretchLoops[] = { 10, 12, 13, 15, 16 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 int horz_stretch_loop = -1, BestRemainder;
1077 int Numerator = HDisplay, Denominator = par->lcd_width;
1078 int Index = 5;
1079 ATIReduceRatio(&Numerator, &Denominator);
1080
1081 BestRemainder = (Numerator * 16) / Denominator;
1082 while (--Index >= 0) {
1083 Remainder = ((Denominator - Numerator) * StretchLoops[Index]) %
1084 Denominator;
1085 if (Remainder < BestRemainder) {
1086 horz_stretch_loop = Index;
1087 if (!(BestRemainder = Remainder))
1088 break;
1089 }
1090 }
1091
1092 if ((horz_stretch_loop >= 0) && !BestRemainder) {
1093 int horz_stretch_ratio = 0, Accumulator = 0;
1094 int reuse_previous = 1;
1095
1096 Index = StretchLoops[horz_stretch_loop];
1097
1098 while (--Index >= 0) {
1099 if (Accumulator > 0)
1100 horz_stretch_ratio |= reuse_previous;
1101 else
1102 Accumulator += Denominator;
1103 Accumulator -= Numerator;
1104 reuse_previous <<= 1;
1105 }
1106
1107 crtc->horz_stretching |= (HORZ_STRETCH_EN |
1108 ((horz_stretch_loop & HORZ_STRETCH_LOOP) << 16) |
1109 (horz_stretch_ratio & HORZ_STRETCH_RATIO));
1110 break; /* Out of the do { ... } while (0) */
1111 }
1112 }
1113
1114 crtc->horz_stretching |= (HORZ_STRETCH_MODE | HORZ_STRETCH_EN |
1115 (((HDisplay * (HORZ_STRETCH_BLEND + 1)) / par->lcd_width) & HORZ_STRETCH_BLEND));
1116 } while (0);
1117 }
1118
Ville Syrjäläe98cef12006-01-09 20:53:26 -08001119 if (vdisplay < par->lcd_height && crtc->lcd_gen_cntl & LCD_ON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 crtc->vert_stretching = (VERT_STRETCH_USE0 | VERT_STRETCH_EN |
1121 (((vdisplay * (VERT_STRETCH_RATIO0 + 1)) / par->lcd_height) & VERT_STRETCH_RATIO0));
1122
1123 if (!M64_HAS(LT_LCD_REGS) &&
Ville Syrjala68962012009-09-22 16:47:01 -07001124 xres <= (M64_HAS(MOBIL_BUS) ? 1024 : 800))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 crtc->ext_vert_stretch |= VERT_STRETCH_MODE;
1126 } else {
1127 /*
Ville Syrjala68962012009-09-22 16:47:01 -07001128 * Don't use vertical blending if the mode is too wide
1129 * or not vertically stretched.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 */
1131 crtc->vert_stretching = 0;
1132 }
1133 /* copy to shadow crtc */
1134 crtc->shadow_h_tot_disp = crtc->h_tot_disp;
1135 crtc->shadow_h_sync_strt_wid = crtc->h_sync_strt_wid;
1136 crtc->shadow_v_tot_disp = crtc->v_tot_disp;
1137 crtc->shadow_v_sync_strt_wid = crtc->v_sync_strt_wid;
1138 }
1139#endif /* CONFIG_FB_ATY_GENERIC_LCD */
1140
1141 if (M64_HAS(MAGIC_FIFO)) {
Ville Syrjälä50c839c2006-01-09 20:53:23 -08001142 /* FIXME: display FIFO low watermark values */
1143 crtc->gen_cntl |= (aty_ld_le32(CRTC_GEN_CNTL, par) & CRTC_FIFO_LWM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 }
1145 crtc->dp_pix_width = dp_pix_width;
1146 crtc->dp_chain_mask = dp_chain_mask;
1147
1148 return 0;
1149}
1150
Ville Syrjala68962012009-09-22 16:47:01 -07001151static int aty_crtc_to_var(const struct crtc *crtc,
1152 struct fb_var_screeninfo *var)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153{
1154 u32 xres, yres, bpp, left, right, upper, lower, hslen, vslen, sync;
Ville Syrjala68962012009-09-22 16:47:01 -07001155 u32 h_total, h_disp, h_sync_strt, h_sync_dly, h_sync_wid, h_sync_pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 u32 v_total, v_disp, v_sync_strt, v_sync_wid, v_sync_pol, c_sync;
1157 u32 pix_width;
1158 u32 double_scan, interlace;
1159
1160 /* input */
1161 h_total = crtc->h_tot_disp & 0x1ff;
1162 h_disp = (crtc->h_tot_disp >> 16) & 0xff;
1163 h_sync_strt = (crtc->h_sync_strt_wid & 0xff) | ((crtc->h_sync_strt_wid >> 4) & 0x100);
1164 h_sync_dly = (crtc->h_sync_strt_wid >> 8) & 0x7;
1165 h_sync_wid = (crtc->h_sync_strt_wid >> 16) & 0x1f;
1166 h_sync_pol = (crtc->h_sync_strt_wid >> 21) & 0x1;
1167 v_total = crtc->v_tot_disp & 0x7ff;
1168 v_disp = (crtc->v_tot_disp >> 16) & 0x7ff;
1169 v_sync_strt = crtc->v_sync_strt_wid & 0x7ff;
1170 v_sync_wid = (crtc->v_sync_strt_wid >> 16) & 0x1f;
1171 v_sync_pol = (crtc->v_sync_strt_wid >> 21) & 0x1;
1172 c_sync = crtc->gen_cntl & CRTC_CSYNC_EN ? 1 : 0;
1173 pix_width = crtc->gen_cntl & CRTC_PIX_WIDTH_MASK;
1174 double_scan = crtc->gen_cntl & CRTC_DBL_SCAN_EN;
1175 interlace = crtc->gen_cntl & CRTC_INTERLACE_EN;
1176
1177 /* convert */
1178 xres = (h_disp + 1) * 8;
1179 yres = v_disp + 1;
1180 left = (h_total - h_sync_strt - h_sync_wid) * 8 - h_sync_dly;
1181 right = (h_sync_strt - h_disp) * 8 + h_sync_dly;
1182 hslen = h_sync_wid * 8;
1183 upper = v_total - v_sync_strt - v_sync_wid;
1184 lower = v_sync_strt - v_disp;
1185 vslen = v_sync_wid;
1186 sync = (h_sync_pol ? 0 : FB_SYNC_HOR_HIGH_ACT) |
Ville Syrjala68962012009-09-22 16:47:01 -07001187 (v_sync_pol ? 0 : FB_SYNC_VERT_HIGH_ACT) |
1188 (c_sync ? FB_SYNC_COMP_HIGH_ACT : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
1190 switch (pix_width) {
1191#if 0
1192 case CRTC_PIX_WIDTH_4BPP:
1193 bpp = 4;
1194 var->red.offset = 0;
1195 var->red.length = 8;
1196 var->green.offset = 0;
1197 var->green.length = 8;
1198 var->blue.offset = 0;
1199 var->blue.length = 8;
1200 var->transp.offset = 0;
1201 var->transp.length = 0;
1202 break;
1203#endif
1204 case CRTC_PIX_WIDTH_8BPP:
1205 bpp = 8;
1206 var->red.offset = 0;
1207 var->red.length = 8;
1208 var->green.offset = 0;
1209 var->green.length = 8;
1210 var->blue.offset = 0;
1211 var->blue.length = 8;
1212 var->transp.offset = 0;
1213 var->transp.length = 0;
1214 break;
1215 case CRTC_PIX_WIDTH_15BPP: /* RGB 555 */
1216 bpp = 16;
1217 var->red.offset = 10;
1218 var->red.length = 5;
1219 var->green.offset = 5;
1220 var->green.length = 5;
1221 var->blue.offset = 0;
1222 var->blue.length = 5;
1223 var->transp.offset = 0;
1224 var->transp.length = 0;
1225 break;
1226 case CRTC_PIX_WIDTH_16BPP: /* RGB 565 */
1227 bpp = 16;
1228 var->red.offset = 11;
1229 var->red.length = 5;
1230 var->green.offset = 5;
1231 var->green.length = 6;
1232 var->blue.offset = 0;
1233 var->blue.length = 5;
1234 var->transp.offset = 0;
1235 var->transp.length = 0;
1236 break;
1237 case CRTC_PIX_WIDTH_24BPP: /* RGB 888 */
1238 bpp = 24;
1239 var->red.offset = 16;
1240 var->red.length = 8;
1241 var->green.offset = 8;
1242 var->green.length = 8;
1243 var->blue.offset = 0;
1244 var->blue.length = 8;
1245 var->transp.offset = 0;
1246 var->transp.length = 0;
1247 break;
1248 case CRTC_PIX_WIDTH_32BPP: /* ARGB 8888 */
1249 bpp = 32;
1250 var->red.offset = 16;
1251 var->red.length = 8;
1252 var->green.offset = 8;
1253 var->green.length = 8;
1254 var->blue.offset = 0;
1255 var->blue.length = 8;
1256 var->transp.offset = 24;
1257 var->transp.length = 8;
1258 break;
1259 default:
Ville Syrjälä866d84c2006-01-09 20:53:22 -08001260 PRINTKE("Invalid pixel width\n");
1261 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 }
1263
1264 /* output */
1265 var->xres = xres;
1266 var->yres = yres;
1267 var->xres_virtual = crtc->vxres;
1268 var->yres_virtual = crtc->vyres;
1269 var->bits_per_pixel = bpp;
1270 var->left_margin = left;
1271 var->right_margin = right;
1272 var->upper_margin = upper;
1273 var->lower_margin = lower;
1274 var->hsync_len = hslen;
1275 var->vsync_len = vslen;
1276 var->sync = sync;
1277 var->vmode = FB_VMODE_NONINTERLACED;
Ville Syrjala68962012009-09-22 16:47:01 -07001278 /*
1279 * In double scan mode, the vertical parameters are doubled,
1280 * so we need to halve them to get the right values.
1281 * In interlaced mode the values are already correct,
1282 * so no correction is necessary.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 */
1284 if (interlace)
1285 var->vmode = FB_VMODE_INTERLACED;
1286
1287 if (double_scan) {
1288 var->vmode = FB_VMODE_DOUBLE;
Ville Syrjala68962012009-09-22 16:47:01 -07001289 var->yres >>= 1;
1290 var->upper_margin >>= 1;
1291 var->lower_margin >>= 1;
1292 var->vsync_len >>= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 }
1294
1295 return 0;
1296}
1297
1298/* ------------------------------------------------------------------------- */
1299
1300static int atyfb_set_par(struct fb_info *info)
1301{
1302 struct atyfb_par *par = (struct atyfb_par *) info->par;
1303 struct fb_var_screeninfo *var = &info->var;
1304 u32 tmp, pixclock;
1305 int err;
1306#ifdef DEBUG
1307 struct fb_var_screeninfo debug;
1308 u32 pixclock_in_ps;
1309#endif
1310 if (par->asleep)
1311 return 0;
1312
Ville Syrjala68962012009-09-22 16:47:01 -07001313 err = aty_var_to_crtc(info, var, &par->crtc);
1314 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 return err;
1316
1317 pixclock = atyfb_get_pixclock(var, par);
1318
1319 if (pixclock == 0) {
Ville Syrjälä866d84c2006-01-09 20:53:22 -08001320 PRINTKE("Invalid pixclock\n");
1321 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 } else {
Ville Syrjala68962012009-09-22 16:47:01 -07001323 err = par->pll_ops->var_to_pll(info, pixclock,
1324 var->bits_per_pixel, &par->pll);
1325 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 return err;
1327 }
1328
1329 par->accel_flags = var->accel_flags; /* hack */
1330
Antonino A. Daplas7914cb22006-06-26 00:26:32 -07001331 if (var->accel_flags) {
1332 info->fbops->fb_sync = atyfb_sync;
1333 info->flags &= ~FBINFO_HWACCEL_DISABLED;
1334 } else {
1335 info->fbops->fb_sync = NULL;
1336 info->flags |= FBINFO_HWACCEL_DISABLED;
1337 }
1338
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 if (par->blitter_may_be_busy)
1340 wait_for_idle(par);
1341
1342 aty_set_crtc(par, &par->crtc);
Ville Syrjala68962012009-09-22 16:47:01 -07001343 par->dac_ops->set_dac(info, &par->pll,
1344 var->bits_per_pixel, par->accel_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 par->pll_ops->set_pll(info, &par->pll);
1346
1347#ifdef DEBUG
Ville Syrjala68962012009-09-22 16:47:01 -07001348 if (par->pll_ops && par->pll_ops->pll_to_var)
1349 pixclock_in_ps = par->pll_ops->pll_to_var(info, &par->pll);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 else
1351 pixclock_in_ps = 0;
1352
Ville Syrjala68962012009-09-22 16:47:01 -07001353 if (0 == pixclock_in_ps) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 PRINTKE("ALERT ops->pll_to_var get 0\n");
1355 pixclock_in_ps = pixclock;
1356 }
1357
1358 memset(&debug, 0, sizeof(debug));
Ville Syrjala68962012009-09-22 16:47:01 -07001359 if (!aty_crtc_to_var(&par->crtc, &debug)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 u32 hSync, vRefresh;
1361 u32 h_disp, h_sync_strt, h_sync_end, h_total;
1362 u32 v_disp, v_sync_strt, v_sync_end, v_total;
1363
1364 h_disp = debug.xres;
1365 h_sync_strt = h_disp + debug.right_margin;
1366 h_sync_end = h_sync_strt + debug.hsync_len;
1367 h_total = h_sync_end + debug.left_margin;
1368 v_disp = debug.yres;
1369 v_sync_strt = v_disp + debug.lower_margin;
1370 v_sync_end = v_sync_strt + debug.vsync_len;
1371 v_total = v_sync_end + debug.upper_margin;
1372
1373 hSync = 1000000000 / (pixclock_in_ps * h_total);
1374 vRefresh = (hSync * 1000) / v_total;
Ville Syrjala68962012009-09-22 16:47:01 -07001375 if (par->crtc.gen_cntl & CRTC_INTERLACE_EN)
1376 vRefresh *= 2;
1377 if (par->crtc.gen_cntl & CRTC_DBL_SCAN_EN)
1378 vRefresh /= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
1380 DPRINTK("atyfb_set_par\n");
Ville Syrjala68962012009-09-22 16:47:01 -07001381 DPRINTK(" Set Visible Mode to %ix%i-%i\n",
1382 var->xres, var->yres, var->bits_per_pixel);
1383 DPRINTK(" Virtual resolution %ix%i, "
1384 "pixclock_in_ps %i (calculated %i)\n",
1385 var->xres_virtual, var->yres_virtual,
1386 pixclock, pixclock_in_ps);
1387 DPRINTK(" Dot clock: %i MHz\n",
1388 1000000 / pixclock_in_ps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 DPRINTK(" Horizontal sync: %i kHz\n", hSync);
1390 DPRINTK(" Vertical refresh: %i Hz\n", vRefresh);
1391 DPRINTK(" x style: %i.%03i %i %i %i %i %i %i %i %i\n",
1392 1000000 / pixclock_in_ps, 1000000 % pixclock_in_ps,
1393 h_disp, h_sync_strt, h_sync_end, h_total,
1394 v_disp, v_sync_strt, v_sync_end, v_total);
1395 DPRINTK(" fb style: %i %i %i %i %i %i %i %i %i\n",
1396 pixclock_in_ps,
1397 debug.left_margin, h_disp, debug.right_margin, debug.hsync_len,
1398 debug.upper_margin, v_disp, debug.lower_margin, debug.vsync_len);
1399 }
1400#endif /* DEBUG */
1401
1402 if (!M64_HAS(INTEGRATED)) {
1403 /* Don't forget MEM_CNTL */
1404 tmp = aty_ld_le32(MEM_CNTL, par) & 0xf0ffffff;
1405 switch (var->bits_per_pixel) {
1406 case 8:
1407 tmp |= 0x02000000;
1408 break;
1409 case 16:
1410 tmp |= 0x03000000;
1411 break;
1412 case 32:
1413 tmp |= 0x06000000;
1414 break;
1415 }
1416 aty_st_le32(MEM_CNTL, tmp, par);
1417 } else {
1418 tmp = aty_ld_le32(MEM_CNTL, par) & 0xf00fffff;
1419 if (!M64_HAS(MAGIC_POSTDIV))
1420 tmp |= par->mem_refresh_rate << 20;
1421 switch (var->bits_per_pixel) {
1422 case 8:
1423 case 24:
1424 tmp |= 0x00000000;
1425 break;
1426 case 16:
1427 tmp |= 0x04000000;
1428 break;
1429 case 32:
1430 tmp |= 0x08000000;
1431 break;
1432 }
1433 if (M64_HAS(CT_BUS)) {
1434 aty_st_le32(DAC_CNTL, 0x87010184, par);
1435 aty_st_le32(BUS_CNTL, 0x680000f9, par);
1436 } else if (M64_HAS(VT_BUS)) {
1437 aty_st_le32(DAC_CNTL, 0x87010184, par);
1438 aty_st_le32(BUS_CNTL, 0x680000f9, par);
1439 } else if (M64_HAS(MOBIL_BUS)) {
1440 aty_st_le32(DAC_CNTL, 0x80010102, par);
1441 aty_st_le32(BUS_CNTL, 0x7b33a040 | (par->aux_start ? BUS_APER_REG_DIS : 0), par);
1442 } else {
1443 /* GT */
1444 aty_st_le32(DAC_CNTL, 0x86010102, par);
1445 aty_st_le32(BUS_CNTL, 0x7b23a040 | (par->aux_start ? BUS_APER_REG_DIS : 0), par);
1446 aty_st_le32(EXT_MEM_CNTL, aty_ld_le32(EXT_MEM_CNTL, par) | 0x5000001, par);
1447 }
1448 aty_st_le32(MEM_CNTL, tmp, par);
1449 }
1450 aty_st_8(DAC_MASK, 0xff, par);
1451
Ville Syrjalaee905d02009-06-30 11:41:42 -07001452 info->fix.line_length = calc_line_length(par, var->xres_virtual,
1453 var->bits_per_pixel);
1454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 info->fix.visual = var->bits_per_pixel <= 8 ?
1456 FB_VISUAL_PSEUDOCOLOR : FB_VISUAL_DIRECTCOLOR;
1457
1458 /* Initialize the graphics engine */
1459 if (par->accel_flags & FB_ACCELF_TEXT)
1460 aty_init_engine(par, info);
1461
1462#ifdef CONFIG_BOOTX_TEXT
1463 btext_update_display(info->fix.smem_start,
1464 (((par->crtc.h_tot_disp >> 16) & 0xff) + 1) * 8,
1465 ((par->crtc.v_tot_disp >> 16) & 0x7ff) + 1,
1466 var->bits_per_pixel,
1467 par->crtc.vxres * var->bits_per_pixel / 8);
1468#endif /* CONFIG_BOOTX_TEXT */
1469#if 0
1470 /* switch to accelerator mode */
1471 if (!(par->crtc.gen_cntl & CRTC_EXT_DISP_EN))
1472 aty_st_le32(CRTC_GEN_CNTL, par->crtc.gen_cntl | CRTC_EXT_DISP_EN, par);
1473#endif
1474#ifdef DEBUG
1475{
1476 /* dump non shadow CRTC, pll, LCD registers */
1477 int i; u32 base;
1478
1479 /* CRTC registers */
1480 base = 0x2000;
1481 printk("debug atyfb: Mach64 non-shadow register values:");
1482 for (i = 0; i < 256; i = i+4) {
Ville Syrjala68962012009-09-22 16:47:01 -07001483 if (i % 16 == 0)
1484 printk("\ndebug atyfb: 0x%04X: ", base + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 printk(" %08X", aty_ld_le32(i, par));
1486 }
1487 printk("\n\n");
1488
1489#ifdef CONFIG_FB_ATY_CT
1490 /* PLL registers */
1491 base = 0x00;
1492 printk("debug atyfb: Mach64 PLL register values:");
1493 for (i = 0; i < 64; i++) {
Ville Syrjala68962012009-09-22 16:47:01 -07001494 if (i % 16 == 0)
1495 printk("\ndebug atyfb: 0x%02X: ", base + i);
1496 if (i % 4 == 0)
1497 printk(" ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 printk("%02X", aty_ld_pll_ct(i, par));
1499 }
1500 printk("\n\n");
1501#endif /* CONFIG_FB_ATY_CT */
1502
1503#ifdef CONFIG_FB_ATY_GENERIC_LCD
1504 if (par->lcd_table != 0) {
1505 /* LCD registers */
1506 base = 0x00;
1507 printk("debug atyfb: LCD register values:");
Ville Syrjala68962012009-09-22 16:47:01 -07001508 if (M64_HAS(LT_LCD_REGS)) {
1509 for (i = 0; i <= POWER_MANAGEMENT; i++) {
1510 if (i == EXT_VERT_STRETCH)
1511 continue;
1512 printk("\ndebug atyfb: 0x%04X: ",
1513 lt_lcd_regs[i]);
1514 printk(" %08X", aty_ld_lcd(i, par));
1515 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 } else {
Ville Syrjala68962012009-09-22 16:47:01 -07001517 for (i = 0; i < 64; i++) {
1518 if (i % 4 == 0)
1519 printk("\ndebug atyfb: 0x%02X: ",
1520 base + i);
1521 printk(" %08X", aty_ld_lcd(i, par));
1522 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 }
1524 printk("\n\n");
1525 }
1526#endif /* CONFIG_FB_ATY_GENERIC_LCD */
1527}
1528#endif /* DEBUG */
1529 return 0;
1530}
1531
1532static int atyfb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
1533{
1534 struct atyfb_par *par = (struct atyfb_par *) info->par;
1535 int err;
1536 struct crtc crtc;
1537 union aty_pll pll;
1538 u32 pixclock;
1539
Ville Syrjala68962012009-09-22 16:47:01 -07001540 memcpy(&pll, &par->pll, sizeof(pll));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
Ville Syrjala68962012009-09-22 16:47:01 -07001542 err = aty_var_to_crtc(info, var, &crtc);
1543 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 return err;
1545
1546 pixclock = atyfb_get_pixclock(var, par);
1547
1548 if (pixclock == 0) {
Ville Syrjälä866d84c2006-01-09 20:53:22 -08001549 if (!(var->activate & FB_ACTIVATE_TEST))
1550 PRINTKE("Invalid pixclock\n");
1551 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 } else {
Ville Syrjala68962012009-09-22 16:47:01 -07001553 err = par->pll_ops->var_to_pll(info, pixclock,
1554 var->bits_per_pixel, &pll);
1555 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 return err;
1557 }
1558
1559 if (var->accel_flags & FB_ACCELF_TEXT)
1560 info->var.accel_flags = FB_ACCELF_TEXT;
1561 else
1562 info->var.accel_flags = 0;
1563
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 aty_crtc_to_var(&crtc, var);
1565 var->pixclock = par->pll_ops->pll_to_var(info, &pll);
1566 return 0;
1567}
1568
1569static void set_off_pitch(struct atyfb_par *par, const struct fb_info *info)
1570{
1571 u32 xoffset = info->var.xoffset;
1572 u32 yoffset = info->var.yoffset;
Ville Syrjalaee905d02009-06-30 11:41:42 -07001573 u32 line_length = info->fix.line_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 u32 bpp = info->var.bits_per_pixel;
1575
Ville Syrjalaee905d02009-06-30 11:41:42 -07001576 par->crtc.off_pitch =
1577 ((yoffset * line_length + xoffset * bpp / 8) / 8) |
1578 ((line_length / bpp) << 22);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579}
1580
1581
Ville Syrjala68962012009-09-22 16:47:01 -07001582/*
1583 * Open/Release the frame buffer device
1584 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
1586static int atyfb_open(struct fb_info *info, int user)
1587{
1588 struct atyfb_par *par = (struct atyfb_par *) info->par;
1589
1590 if (user) {
1591 par->open++;
1592#ifdef __sparc__
1593 par->mmaped = 0;
1594#endif
1595 }
Ville Syrjala68962012009-09-22 16:47:01 -07001596 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597}
1598
David Howells7d12e782006-10-05 14:55:46 +01001599static irqreturn_t aty_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600{
1601 struct atyfb_par *par = dev_id;
1602 int handled = 0;
1603 u32 int_cntl;
1604
1605 spin_lock(&par->int_lock);
1606
1607 int_cntl = aty_ld_le32(CRTC_INT_CNTL, par);
1608
1609 if (int_cntl & CRTC_VBLANK_INT) {
1610 /* clear interrupt */
Ville Syrjala68962012009-09-22 16:47:01 -07001611 aty_st_le32(CRTC_INT_CNTL, (int_cntl & CRTC_INT_EN_MASK) |
1612 CRTC_VBLANK_INT_AK, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 par->vblank.count++;
1614 if (par->vblank.pan_display) {
1615 par->vblank.pan_display = 0;
1616 aty_st_le32(CRTC_OFF_PITCH, par->crtc.off_pitch, par);
1617 }
1618 wake_up_interruptible(&par->vblank.wait);
1619 handled = 1;
1620 }
1621
1622 spin_unlock(&par->int_lock);
1623
1624 return IRQ_RETVAL(handled);
1625}
1626
1627static int aty_enable_irq(struct atyfb_par *par, int reenable)
1628{
1629 u32 int_cntl;
1630
1631 if (!test_and_set_bit(0, &par->irq_flags)) {
Thomas Gleixner63a43392006-07-01 19:29:45 -07001632 if (request_irq(par->irq, aty_irq, IRQF_SHARED, "atyfb", par)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 clear_bit(0, &par->irq_flags);
1634 return -EINVAL;
1635 }
1636 spin_lock_irq(&par->int_lock);
1637 int_cntl = aty_ld_le32(CRTC_INT_CNTL, par) & CRTC_INT_EN_MASK;
1638 /* clear interrupt */
1639 aty_st_le32(CRTC_INT_CNTL, int_cntl | CRTC_VBLANK_INT_AK, par);
1640 /* enable interrupt */
1641 aty_st_le32(CRTC_INT_CNTL, int_cntl | CRTC_VBLANK_INT_EN, par);
1642 spin_unlock_irq(&par->int_lock);
1643 } else if (reenable) {
1644 spin_lock_irq(&par->int_lock);
1645 int_cntl = aty_ld_le32(CRTC_INT_CNTL, par) & CRTC_INT_EN_MASK;
1646 if (!(int_cntl & CRTC_VBLANK_INT_EN)) {
Ville Syrjala68962012009-09-22 16:47:01 -07001647 printk("atyfb: someone disabled IRQ [%08x]\n",
1648 int_cntl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 /* re-enable interrupt */
Ville Syrjala68962012009-09-22 16:47:01 -07001650 aty_st_le32(CRTC_INT_CNTL, int_cntl |
1651 CRTC_VBLANK_INT_EN, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 }
1653 spin_unlock_irq(&par->int_lock);
1654 }
1655
1656 return 0;
1657}
1658
1659static int aty_disable_irq(struct atyfb_par *par)
1660{
1661 u32 int_cntl;
1662
1663 if (test_and_clear_bit(0, &par->irq_flags)) {
1664 if (par->vblank.pan_display) {
1665 par->vblank.pan_display = 0;
1666 aty_st_le32(CRTC_OFF_PITCH, par->crtc.off_pitch, par);
1667 }
1668 spin_lock_irq(&par->int_lock);
1669 int_cntl = aty_ld_le32(CRTC_INT_CNTL, par) & CRTC_INT_EN_MASK;
1670 /* disable interrupt */
Ville Syrjala68962012009-09-22 16:47:01 -07001671 aty_st_le32(CRTC_INT_CNTL, int_cntl & ~CRTC_VBLANK_INT_EN, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 spin_unlock_irq(&par->int_lock);
1673 free_irq(par->irq, par);
1674 }
1675
1676 return 0;
1677}
1678
1679static int atyfb_release(struct fb_info *info, int user)
1680{
1681 struct atyfb_par *par = (struct atyfb_par *) info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682#ifdef __sparc__
Ville Syrjala68962012009-09-22 16:47:01 -07001683 int was_mmaped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684#endif
Ville Syrjala68962012009-09-22 16:47:01 -07001685
1686 if (!user)
1687 return 0;
1688
1689 par->open--;
1690 mdelay(1);
1691 wait_for_idle(par);
1692
1693 if (par->open)
1694 return 0;
1695
1696#ifdef __sparc__
1697 was_mmaped = par->mmaped;
1698
1699 par->mmaped = 0;
1700
1701 if (was_mmaped) {
1702 struct fb_var_screeninfo var;
1703
1704 /*
1705 * Now reset the default display config, we have
1706 * no idea what the program(s) which mmap'd the
1707 * chip did to the configuration, nor whether it
1708 * restored it correctly.
1709 */
1710 var = default_var;
1711 if (noaccel)
1712 var.accel_flags &= ~FB_ACCELF_TEXT;
1713 else
1714 var.accel_flags |= FB_ACCELF_TEXT;
1715 if (var.yres == var.yres_virtual) {
1716 u32 videoram = (info->fix.smem_len - (PAGE_SIZE << 2));
1717 var.yres_virtual =
1718 ((videoram * 8) / var.bits_per_pixel) /
1719 var.xres_virtual;
1720 if (var.yres_virtual < var.yres)
1721 var.yres_virtual = var.yres;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 }
1723 }
Ville Syrjala68962012009-09-22 16:47:01 -07001724#endif
1725 aty_disable_irq(par);
1726
1727 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728}
1729
Ville Syrjala68962012009-09-22 16:47:01 -07001730/*
1731 * Pan or Wrap the Display
1732 *
1733 * This call looks only at xoffset, yoffset and the FB_VMODE_YWRAP flag
1734 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
Ville Syrjala68962012009-09-22 16:47:01 -07001736static int atyfb_pan_display(struct fb_var_screeninfo *var,
1737 struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738{
1739 struct atyfb_par *par = (struct atyfb_par *) info->par;
1740 u32 xres, yres, xoffset, yoffset;
1741
1742 xres = (((par->crtc.h_tot_disp >> 16) & 0xff) + 1) * 8;
1743 yres = ((par->crtc.v_tot_disp >> 16) & 0x7ff) + 1;
1744 if (par->crtc.gen_cntl & CRTC_DBL_SCAN_EN)
1745 yres >>= 1;
1746 xoffset = (var->xoffset + 7) & ~7;
1747 yoffset = var->yoffset;
Ville Syrjala68962012009-09-22 16:47:01 -07001748 if (xoffset + xres > par->crtc.vxres ||
1749 yoffset + yres > par->crtc.vyres)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 return -EINVAL;
1751 info->var.xoffset = xoffset;
1752 info->var.yoffset = yoffset;
1753 if (par->asleep)
1754 return 0;
1755
1756 set_off_pitch(par, info);
1757 if ((var->activate & FB_ACTIVATE_VBL) && !aty_enable_irq(par, 0)) {
1758 par->vblank.pan_display = 1;
1759 } else {
1760 par->vblank.pan_display = 0;
1761 aty_st_le32(CRTC_OFF_PITCH, par->crtc.off_pitch, par);
1762 }
1763
1764 return 0;
1765}
1766
1767static int aty_waitforvblank(struct atyfb_par *par, u32 crtc)
1768{
1769 struct aty_interrupt *vbl;
1770 unsigned int count;
1771 int ret;
1772
1773 switch (crtc) {
1774 case 0:
1775 vbl = &par->vblank;
1776 break;
1777 default:
1778 return -ENODEV;
1779 }
1780
1781 ret = aty_enable_irq(par, 0);
1782 if (ret)
1783 return ret;
1784
1785 count = vbl->count;
Ville Syrjala68962012009-09-22 16:47:01 -07001786 ret = wait_event_interruptible_timeout(vbl->wait,
1787 count != vbl->count, HZ/10);
1788 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 if (ret == 0) {
1791 aty_enable_irq(par, 1);
1792 return -ETIMEDOUT;
1793 }
1794
1795 return 0;
1796}
1797
1798
1799#ifdef DEBUG
1800#define ATYIO_CLKR 0x41545900 /* ATY\00 */
1801#define ATYIO_CLKW 0x41545901 /* ATY\01 */
1802
1803struct atyclk {
1804 u32 ref_clk_per;
1805 u8 pll_ref_div;
1806 u8 mclk_fb_div;
1807 u8 mclk_post_div; /* 1,2,3,4,8 */
1808 u8 mclk_fb_mult; /* 2 or 4 */
1809 u8 xclk_post_div; /* 1,2,3,4,8 */
1810 u8 vclk_fb_div;
1811 u8 vclk_post_div; /* 1,2,3,4,6,8,12 */
1812 u32 dsp_xclks_per_row; /* 0-16383 */
1813 u32 dsp_loop_latency; /* 0-15 */
1814 u32 dsp_precision; /* 0-7 */
1815 u32 dsp_on; /* 0-2047 */
1816 u32 dsp_off; /* 0-2047 */
1817};
1818
1819#define ATYIO_FEATR 0x41545902 /* ATY\02 */
1820#define ATYIO_FEATW 0x41545903 /* ATY\03 */
1821#endif
1822
Christoph Hellwig67a66802006-01-14 13:21:25 -08001823static int atyfb_ioctl(struct fb_info *info, u_int cmd, u_long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824{
1825 struct atyfb_par *par = (struct atyfb_par *) info->par;
1826#ifdef __sparc__
1827 struct fbtype fbtyp;
1828#endif
1829
1830 switch (cmd) {
1831#ifdef __sparc__
1832 case FBIOGTYPE:
1833 fbtyp.fb_type = FBTYPE_PCI_GENERIC;
1834 fbtyp.fb_width = par->crtc.vxres;
1835 fbtyp.fb_height = par->crtc.vyres;
1836 fbtyp.fb_depth = info->var.bits_per_pixel;
1837 fbtyp.fb_cmsize = info->cmap.len;
1838 fbtyp.fb_size = info->fix.smem_len;
Ville Syrjala68962012009-09-22 16:47:01 -07001839 if (copy_to_user((struct fbtype __user *) arg, &fbtyp,
1840 sizeof(fbtyp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 return -EFAULT;
1842 break;
1843#endif /* __sparc__ */
1844
1845 case FBIO_WAITFORVSYNC:
1846 {
1847 u32 crtc;
1848
1849 if (get_user(crtc, (__u32 __user *) arg))
1850 return -EFAULT;
1851
1852 return aty_waitforvblank(par, crtc);
1853 }
1854 break;
1855
1856#if defined(DEBUG) && defined(CONFIG_FB_ATY_CT)
1857 case ATYIO_CLKR:
1858 if (M64_HAS(INTEGRATED)) {
1859 struct atyclk clk;
Ville Syrjala68962012009-09-22 16:47:01 -07001860 union aty_pll *pll = &par->pll;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 u32 dsp_config = pll->ct.dsp_config;
1862 u32 dsp_on_off = pll->ct.dsp_on_off;
1863 clk.ref_clk_per = par->ref_clk_per;
1864 clk.pll_ref_div = pll->ct.pll_ref_div;
1865 clk.mclk_fb_div = pll->ct.mclk_fb_div;
1866 clk.mclk_post_div = pll->ct.mclk_post_div_real;
1867 clk.mclk_fb_mult = pll->ct.mclk_fb_mult;
1868 clk.xclk_post_div = pll->ct.xclk_post_div_real;
1869 clk.vclk_fb_div = pll->ct.vclk_fb_div;
1870 clk.vclk_post_div = pll->ct.vclk_post_div_real;
1871 clk.dsp_xclks_per_row = dsp_config & 0x3fff;
1872 clk.dsp_loop_latency = (dsp_config >> 16) & 0xf;
1873 clk.dsp_precision = (dsp_config >> 20) & 7;
1874 clk.dsp_off = dsp_on_off & 0x7ff;
1875 clk.dsp_on = (dsp_on_off >> 16) & 0x7ff;
1876 if (copy_to_user((struct atyclk __user *) arg, &clk,
1877 sizeof(clk)))
1878 return -EFAULT;
1879 } else
1880 return -EINVAL;
1881 break;
1882 case ATYIO_CLKW:
1883 if (M64_HAS(INTEGRATED)) {
1884 struct atyclk clk;
Ville Syrjala68962012009-09-22 16:47:01 -07001885 union aty_pll *pll = &par->pll;
1886 if (copy_from_user(&clk, (struct atyclk __user *) arg,
1887 sizeof(clk)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 return -EFAULT;
1889 par->ref_clk_per = clk.ref_clk_per;
1890 pll->ct.pll_ref_div = clk.pll_ref_div;
1891 pll->ct.mclk_fb_div = clk.mclk_fb_div;
1892 pll->ct.mclk_post_div_real = clk.mclk_post_div;
1893 pll->ct.mclk_fb_mult = clk.mclk_fb_mult;
1894 pll->ct.xclk_post_div_real = clk.xclk_post_div;
1895 pll->ct.vclk_fb_div = clk.vclk_fb_div;
1896 pll->ct.vclk_post_div_real = clk.vclk_post_div;
1897 pll->ct.dsp_config = (clk.dsp_xclks_per_row & 0x3fff) |
Ville Syrjala68962012009-09-22 16:47:01 -07001898 ((clk.dsp_loop_latency & 0xf) << 16) |
1899 ((clk.dsp_precision & 7) << 20);
1900 pll->ct.dsp_on_off = (clk.dsp_off & 0x7ff) |
1901 ((clk.dsp_on & 0x7ff) << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 /*aty_calc_pll_ct(info, &pll->ct);*/
1903 aty_set_pll_ct(info, pll);
1904 } else
1905 return -EINVAL;
1906 break;
1907 case ATYIO_FEATR:
1908 if (get_user(par->features, (u32 __user *) arg))
1909 return -EFAULT;
1910 break;
1911 case ATYIO_FEATW:
1912 if (put_user(par->features, (u32 __user *) arg))
1913 return -EFAULT;
1914 break;
1915#endif /* DEBUG && CONFIG_FB_ATY_CT */
1916 default:
1917 return -EINVAL;
1918 }
1919 return 0;
1920}
1921
1922static int atyfb_sync(struct fb_info *info)
1923{
1924 struct atyfb_par *par = (struct atyfb_par *) info->par;
1925
1926 if (par->blitter_may_be_busy)
1927 wait_for_idle(par);
1928 return 0;
1929}
1930
1931#ifdef __sparc__
Christoph Hellwig216d5262006-01-14 13:21:25 -08001932static int atyfb_mmap(struct fb_info *info, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933{
1934 struct atyfb_par *par = (struct atyfb_par *) info->par;
1935 unsigned int size, page, map_size = 0;
1936 unsigned long map_offset = 0;
1937 unsigned long off;
1938 int i;
1939
1940 if (!par->mmap_map)
1941 return -ENXIO;
1942
1943 if (vma->vm_pgoff > (~0UL >> PAGE_SHIFT))
1944 return -EINVAL;
1945
1946 off = vma->vm_pgoff << PAGE_SHIFT;
1947 size = vma->vm_end - vma->vm_start;
1948
1949 /* To stop the swapper from even considering these pages. */
1950 vma->vm_flags |= (VM_IO | VM_RESERVED);
1951
1952 if (((vma->vm_pgoff == 0) && (size == info->fix.smem_len)) ||
1953 ((off == info->fix.smem_len) && (size == PAGE_SIZE)))
1954 off += 0x8000000000000000UL;
1955
1956 vma->vm_pgoff = off >> PAGE_SHIFT; /* propagate off changes */
1957
1958 /* Each page, see which map applies */
1959 for (page = 0; page < size;) {
1960 map_size = 0;
1961 for (i = 0; par->mmap_map[i].size; i++) {
1962 unsigned long start = par->mmap_map[i].voff;
1963 unsigned long end = start + par->mmap_map[i].size;
1964 unsigned long offset = off + page;
1965
1966 if (start > offset)
1967 continue;
1968 if (offset >= end)
1969 continue;
1970
1971 map_size = par->mmap_map[i].size - (offset - start);
Ville Syrjala68962012009-09-22 16:47:01 -07001972 map_offset = par->mmap_map[i].poff + (offset - start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 break;
1974 }
1975 if (!map_size) {
1976 page += PAGE_SIZE;
1977 continue;
1978 }
1979 if (page + map_size > size)
1980 map_size = size - page;
1981
Ville Syrjala68962012009-09-22 16:47:01 -07001982 pgprot_val(vma->vm_page_prot) &= ~(par->mmap_map[i].prot_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 pgprot_val(vma->vm_page_prot) |= par->mmap_map[i].prot_flag;
1984
1985 if (remap_pfn_range(vma, vma->vm_start + page,
1986 map_offset >> PAGE_SHIFT, map_size, vma->vm_page_prot))
1987 return -EAGAIN;
1988
1989 page += map_size;
1990 }
1991
1992 if (!map_size)
1993 return -EINVAL;
1994
1995 if (!par->mmaped)
1996 par->mmaped = 1;
1997 return 0;
1998}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999#endif /* __sparc__ */
2000
2001
2002
2003#if defined(CONFIG_PM) && defined(CONFIG_PCI)
2004
Ville Syrjalaefc08a72006-12-08 02:40:45 -08002005#ifdef CONFIG_PPC_PMAC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006/* Power management routines. Those are used for PowerBook sleep.
2007 */
2008static int aty_power_mgmt(int sleep, struct atyfb_par *par)
2009{
2010 u32 pm;
2011 int timeout;
2012
2013 pm = aty_ld_lcd(POWER_MANAGEMENT, par);
2014 pm = (pm & ~PWR_MGT_MODE_MASK) | PWR_MGT_MODE_REG;
2015 aty_st_lcd(POWER_MANAGEMENT, pm, par);
2016 pm = aty_ld_lcd(POWER_MANAGEMENT, par);
2017
2018 timeout = 2000;
2019 if (sleep) {
2020 /* Sleep */
2021 pm &= ~PWR_MGT_ON;
2022 aty_st_lcd(POWER_MANAGEMENT, pm, par);
2023 pm = aty_ld_lcd(POWER_MANAGEMENT, par);
2024 udelay(10);
2025 pm &= ~(PWR_BLON | AUTO_PWR_UP);
2026 pm |= SUSPEND_NOW;
2027 aty_st_lcd(POWER_MANAGEMENT, pm, par);
2028 pm = aty_ld_lcd(POWER_MANAGEMENT, par);
2029 udelay(10);
2030 pm |= PWR_MGT_ON;
2031 aty_st_lcd(POWER_MANAGEMENT, pm, par);
2032 do {
2033 pm = aty_ld_lcd(POWER_MANAGEMENT, par);
2034 mdelay(1);
2035 if ((--timeout) == 0)
2036 break;
2037 } while ((pm & PWR_MGT_STATUS_MASK) != PWR_MGT_STATUS_SUSPEND);
2038 } else {
2039 /* Wakeup */
2040 pm &= ~PWR_MGT_ON;
2041 aty_st_lcd(POWER_MANAGEMENT, pm, par);
2042 pm = aty_ld_lcd(POWER_MANAGEMENT, par);
2043 udelay(10);
2044 pm &= ~SUSPEND_NOW;
2045 pm |= (PWR_BLON | AUTO_PWR_UP);
2046 aty_st_lcd(POWER_MANAGEMENT, pm, par);
2047 pm = aty_ld_lcd(POWER_MANAGEMENT, par);
2048 udelay(10);
2049 pm |= PWR_MGT_ON;
2050 aty_st_lcd(POWER_MANAGEMENT, pm, par);
2051 do {
2052 pm = aty_ld_lcd(POWER_MANAGEMENT, par);
2053 mdelay(1);
2054 if ((--timeout) == 0)
2055 break;
2056 } while ((pm & PWR_MGT_STATUS_MASK) != 0);
2057 }
2058 mdelay(500);
2059
2060 return timeout ? 0 : -EIO;
2061}
Benjamin Herrenschmidtb7468162009-02-05 12:06:50 +11002062#endif /* CONFIG_PPC_PMAC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
2064static int atyfb_pci_suspend(struct pci_dev *pdev, pm_message_t state)
2065{
2066 struct fb_info *info = pci_get_drvdata(pdev);
2067 struct atyfb_par *par = (struct atyfb_par *) info->par;
2068
Pavel Machekca078ba2005-09-03 15:56:57 -07002069 if (state.event == pdev->dev.power.power_state.event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 return 0;
2071
2072 acquire_console_sem();
2073
2074 fb_set_suspend(info, 1);
2075
2076 /* Idle & reset engine */
2077 wait_for_idle(par);
2078 aty_reset_engine(par);
2079
2080 /* Blank display and LCD */
2081 atyfb_blank(FB_BLANK_POWERDOWN, info);
2082
2083 par->asleep = 1;
2084 par->lock_blank = 1;
2085
Ville Syrjala68962012009-09-22 16:47:01 -07002086 /*
2087 * Because we may change PCI D state ourselves, we need to
Benjamin Herrenschmidtb7468162009-02-05 12:06:50 +11002088 * first save the config space content so the core can
2089 * restore it properly on resume.
2090 */
2091 pci_save_state(pdev);
2092
Ville Syrjalaefc08a72006-12-08 02:40:45 -08002093#ifdef CONFIG_PPC_PMAC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 /* Set chip to "suspend" mode */
Benjamin Herrenschmidtb7468162009-02-05 12:06:50 +11002095 if (machine_is(powermac) && aty_power_mgmt(1, par)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 par->asleep = 0;
2097 par->lock_blank = 0;
2098 atyfb_blank(FB_BLANK_UNBLANK, info);
2099 fb_set_suspend(info, 0);
2100 release_console_sem();
2101 return -EIO;
2102 }
Ville Syrjalaefc08a72006-12-08 02:40:45 -08002103#else
2104 pci_set_power_state(pdev, pci_choose_state(pdev, state));
2105#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
2107 release_console_sem();
2108
2109 pdev->dev.power.power_state = state;
2110
2111 return 0;
2112}
2113
Alexander Beregalov978cc902008-08-05 13:01:29 -07002114static void aty_resume_chip(struct fb_info *info)
2115{
2116 struct atyfb_par *par = info->par;
2117
2118 aty_st_le32(MEM_CNTL, par->mem_cntl, par);
2119
2120 if (par->pll_ops->resume_pll)
2121 par->pll_ops->resume_pll(info, &par->pll);
2122
2123 if (par->aux_start)
2124 aty_st_le32(BUS_CNTL,
2125 aty_ld_le32(BUS_CNTL, par) | BUS_APER_REG_DIS, par);
2126}
2127
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128static int atyfb_pci_resume(struct pci_dev *pdev)
2129{
2130 struct fb_info *info = pci_get_drvdata(pdev);
2131 struct atyfb_par *par = (struct atyfb_par *) info->par;
2132
Pavel Machekca078ba2005-09-03 15:56:57 -07002133 if (pdev->dev.power.power_state.event == PM_EVENT_ON)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 return 0;
2135
2136 acquire_console_sem();
2137
Ville Syrjala68962012009-09-22 16:47:01 -07002138 /*
2139 * PCI state will have been restored by the core, so
Benjamin Herrenschmidtb7468162009-02-05 12:06:50 +11002140 * we should be in D0 now with our config space fully
2141 * restored
2142 */
2143
Ville Syrjalaefc08a72006-12-08 02:40:45 -08002144#ifdef CONFIG_PPC_PMAC
Benjamin Herrenschmidtb7468162009-02-05 12:06:50 +11002145 if (machine_is(powermac) &&
2146 pdev->dev.power.power_state.event == PM_EVENT_SUSPEND)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 aty_power_mgmt(0, par);
Ville Syrjalaefc08a72006-12-08 02:40:45 -08002148#endif
2149
2150 aty_resume_chip(info);
2151
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 par->asleep = 0;
2153
2154 /* Restore display */
2155 atyfb_set_par(info);
2156
2157 /* Refresh */
2158 fb_set_suspend(info, 0);
2159
2160 /* Unblank */
2161 par->lock_blank = 0;
2162 atyfb_blank(FB_BLANK_UNBLANK, info);
2163
2164 release_console_sem();
2165
2166 pdev->dev.power.power_state = PMSG_ON;
2167
2168 return 0;
2169}
2170
2171#endif /* defined(CONFIG_PM) && defined(CONFIG_PCI) */
2172
Michael Hanselmann5474c122006-06-25 05:47:08 -07002173/* Backlight */
2174#ifdef CONFIG_FB_ATY_BACKLIGHT
2175#define MAX_LEVEL 0xFF
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
Michael Hanselmann5474c122006-06-25 05:47:08 -07002177static int aty_bl_get_level_brightness(struct atyfb_par *par, int level)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178{
Michael Hanselmann5474c122006-06-25 05:47:08 -07002179 struct fb_info *info = pci_get_drvdata(par->pdev);
2180 int atylevel;
2181
2182 /* Get and convert the value */
Richard Purdie37ce69a2007-02-10 14:10:33 +00002183 /* No locking of bl_curve since we read a single value */
Michael Hanselmann5474c122006-06-25 05:47:08 -07002184 atylevel = info->bl_curve[level] * FB_BACKLIGHT_MAX / MAX_LEVEL;
Michael Hanselmann5474c122006-06-25 05:47:08 -07002185
2186 if (atylevel < 0)
2187 atylevel = 0;
2188 else if (atylevel > MAX_LEVEL)
2189 atylevel = MAX_LEVEL;
2190
2191 return atylevel;
2192}
2193
Richard Purdie37ce69a2007-02-10 14:10:33 +00002194static int aty_bl_update_status(struct backlight_device *bd)
Michael Hanselmann5474c122006-06-25 05:47:08 -07002195{
Richard Purdie655bfd72007-07-09 12:17:24 +01002196 struct atyfb_par *par = bl_get_data(bd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 unsigned int reg = aty_ld_lcd(LCD_MISC_CNTL, par);
Michael Hanselmann5474c122006-06-25 05:47:08 -07002198 int level;
2199
Richard Purdie599a52d2007-02-10 23:07:48 +00002200 if (bd->props.power != FB_BLANK_UNBLANK ||
2201 bd->props.fb_blank != FB_BLANK_UNBLANK)
Michael Hanselmann5474c122006-06-25 05:47:08 -07002202 level = 0;
2203 else
Richard Purdie599a52d2007-02-10 23:07:48 +00002204 level = bd->props.brightness;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
2206 reg |= (BLMOD_EN | BIASMOD_EN);
Michael Hanselmann5474c122006-06-25 05:47:08 -07002207 if (level > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 reg &= ~BIAS_MOD_LEVEL_MASK;
Michael Hanselmann5474c122006-06-25 05:47:08 -07002209 reg |= (aty_bl_get_level_brightness(par, level) << BIAS_MOD_LEVEL_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 } else {
2211 reg &= ~BIAS_MOD_LEVEL_MASK;
Michael Hanselmann5474c122006-06-25 05:47:08 -07002212 reg |= (aty_bl_get_level_brightness(par, 0) << BIAS_MOD_LEVEL_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 }
2214 aty_st_lcd(LCD_MISC_CNTL, reg, par);
Michael Hanselmann5474c122006-06-25 05:47:08 -07002215
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 return 0;
2217}
2218
Michael Hanselmann5474c122006-06-25 05:47:08 -07002219static int aty_bl_get_brightness(struct backlight_device *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220{
Richard Purdie599a52d2007-02-10 23:07:48 +00002221 return bd->props.brightness;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222}
2223
Richard Purdie599a52d2007-02-10 23:07:48 +00002224static struct backlight_ops aty_bl_data = {
Michael Hanselmann5474c122006-06-25 05:47:08 -07002225 .get_brightness = aty_bl_get_brightness,
2226 .update_status = aty_bl_update_status,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227};
Michael Hanselmann5474c122006-06-25 05:47:08 -07002228
2229static void aty_bl_init(struct atyfb_par *par)
2230{
Matthew Garretta19a6ee2010-02-17 16:39:44 -05002231 struct backlight_properties props;
Michael Hanselmann5474c122006-06-25 05:47:08 -07002232 struct fb_info *info = pci_get_drvdata(par->pdev);
2233 struct backlight_device *bd;
2234 char name[12];
2235
2236#ifdef CONFIG_PMAC_BACKLIGHT
2237 if (!pmac_has_backlight_type("ati"))
2238 return;
2239#endif
2240
2241 snprintf(name, sizeof(name), "atybl%d", info->node);
2242
Matthew Garretta19a6ee2010-02-17 16:39:44 -05002243 memset(&props, 0, sizeof(struct backlight_properties));
2244 props.max_brightness = FB_BACKLIGHT_LEVELS - 1;
2245 bd = backlight_device_register(name, info->dev, par, &aty_bl_data,
2246 &props);
Michael Hanselmann5474c122006-06-25 05:47:08 -07002247 if (IS_ERR(bd)) {
2248 info->bl_dev = NULL;
Benjamin Herrenschmidt98a3c782006-08-31 14:04:34 +10002249 printk(KERN_WARNING "aty: Backlight registration failed\n");
Michael Hanselmann5474c122006-06-25 05:47:08 -07002250 goto error;
2251 }
2252
Michael Hanselmann5474c122006-06-25 05:47:08 -07002253 info->bl_dev = bd;
2254 fb_bl_default_curve(info, 0,
Ville Syrjala68962012009-09-22 16:47:01 -07002255 0x3F * FB_BACKLIGHT_MAX / MAX_LEVEL,
2256 0xFF * FB_BACKLIGHT_MAX / MAX_LEVEL);
Michael Hanselmann5474c122006-06-25 05:47:08 -07002257
Richard Purdie599a52d2007-02-10 23:07:48 +00002258 bd->props.brightness = bd->props.max_brightness;
2259 bd->props.power = FB_BLANK_UNBLANK;
Richard Purdie28ee0862007-02-08 22:25:09 +00002260 backlight_update_status(bd);
Michael Hanselmann5474c122006-06-25 05:47:08 -07002261
Michael Hanselmann5474c122006-06-25 05:47:08 -07002262 printk("aty: Backlight initialized (%s)\n", name);
2263
2264 return;
2265
2266error:
2267 return;
2268}
2269
Richard Purdie37ce69a2007-02-10 14:10:33 +00002270static void aty_bl_exit(struct backlight_device *bd)
Michael Hanselmann5474c122006-06-25 05:47:08 -07002271{
Richard Purdie321709c2007-02-10 15:04:08 +00002272 backlight_device_unregister(bd);
2273 printk("aty: Backlight unloaded\n");
Michael Hanselmann5474c122006-06-25 05:47:08 -07002274}
2275
2276#endif /* CONFIG_FB_ATY_BACKLIGHT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
Antonino A. Daplas1a8c9792006-06-26 00:26:58 -07002278static void __devinit aty_calc_mem_refresh(struct atyfb_par *par, int xclk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279{
2280 const int ragepro_tbl[] = {
2281 44, 50, 55, 66, 75, 80, 100
2282 };
2283 const int ragexl_tbl[] = {
2284 50, 66, 75, 83, 90, 95, 100, 105,
2285 110, 115, 120, 125, 133, 143, 166
2286 };
2287 const int *refresh_tbl;
2288 int i, size;
2289
Ville Syrjalaee905d02009-06-30 11:41:42 -07002290 if (M64_HAS(XL_MEM)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 refresh_tbl = ragexl_tbl;
Tobias Klauserd1ae4182006-03-27 01:17:39 -08002292 size = ARRAY_SIZE(ragexl_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 } else {
2294 refresh_tbl = ragepro_tbl;
Tobias Klauserd1ae4182006-03-27 01:17:39 -08002295 size = ARRAY_SIZE(ragepro_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 }
2297
Ville Syrjala68962012009-09-22 16:47:01 -07002298 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 if (xclk < refresh_tbl[i])
Ville Syrjala68962012009-09-22 16:47:01 -07002300 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 }
2302 par->mem_refresh_rate = i;
2303}
2304
Ville Syrjala68962012009-09-22 16:47:01 -07002305/*
2306 * Initialisation
2307 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308
2309static struct fb_info *fb_list = NULL;
2310
Antonino A. Daplas1013d262005-11-07 01:00:41 -08002311#if defined(__i386__) && defined(CONFIG_FB_ATY_GENERIC_LCD)
2312static int __devinit atyfb_get_timings_from_lcd(struct atyfb_par *par,
2313 struct fb_var_screeninfo *var)
2314{
2315 int ret = -EINVAL;
2316
2317 if (par->lcd_table != 0 && (aty_ld_lcd(LCD_GEN_CNTL, par) & LCD_ON)) {
2318 *var = default_var;
2319 var->xres = var->xres_virtual = par->lcd_hdisp;
2320 var->right_margin = par->lcd_right_margin;
2321 var->left_margin = par->lcd_hblank_len -
2322 (par->lcd_right_margin + par->lcd_hsync_dly +
2323 par->lcd_hsync_len);
2324 var->hsync_len = par->lcd_hsync_len + par->lcd_hsync_dly;
2325 var->yres = var->yres_virtual = par->lcd_vdisp;
2326 var->lower_margin = par->lcd_lower_margin;
2327 var->upper_margin = par->lcd_vblank_len -
2328 (par->lcd_lower_margin + par->lcd_vsync_len);
2329 var->vsync_len = par->lcd_vsync_len;
2330 var->pixclock = par->lcd_pixclock;
2331 ret = 0;
2332 }
2333
2334 return ret;
2335}
2336#endif /* defined(__i386__) && defined(CONFIG_FB_ATY_GENERIC_LCD) */
2337
Ville Syrjala044aaa32006-12-08 02:40:41 -08002338static int __devinit aty_init(struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339{
2340 struct atyfb_par *par = (struct atyfb_par *) info->par;
2341 const char *ramname = NULL, *xtal;
Antonino A. Daplas1013d262005-11-07 01:00:41 -08002342 int gtb_memsize, has_var = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 struct fb_var_screeninfo var;
Ville Syrjala89c69d22008-07-23 21:31:32 -07002344 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345
2346 init_waitqueue_head(&par->vblank.wait);
2347 spin_lock_init(&par->int_lock);
2348
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349#ifdef CONFIG_FB_ATY_GX
2350 if (!M64_HAS(INTEGRATED)) {
2351 u32 stat0;
2352 u8 dac_type, dac_subtype, clk_type;
Randy Dunlapfe861752009-02-04 15:12:20 -08002353 stat0 = aty_ld_le32(CNFG_STAT0, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 par->bus_type = (stat0 >> 0) & 0x07;
2355 par->ram_type = (stat0 >> 3) & 0x07;
2356 ramname = aty_gx_ram[par->ram_type];
2357 /* FIXME: clockchip/RAMDAC probing? */
2358 dac_type = (aty_ld_le32(DAC_CNTL, par) >> 16) & 0x07;
2359#ifdef CONFIG_ATARI
2360 clk_type = CLK_ATI18818_1;
2361 dac_type = (stat0 >> 9) & 0x07;
2362 if (dac_type == 0x07)
2363 dac_subtype = DAC_ATT20C408;
2364 else
2365 dac_subtype = (aty_ld_8(SCRATCH_REG1 + 1, par) & 0xF0) | dac_type;
2366#else
2367 dac_type = DAC_IBMRGB514;
2368 dac_subtype = DAC_IBMRGB514;
2369 clk_type = CLK_IBMRGB514;
2370#endif
2371 switch (dac_subtype) {
2372 case DAC_IBMRGB514:
2373 par->dac_ops = &aty_dac_ibm514;
2374 break;
Antonino A. Daplas3a284242007-05-08 00:37:34 -07002375#ifdef CONFIG_ATARI
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 case DAC_ATI68860_B:
2377 case DAC_ATI68860_C:
2378 par->dac_ops = &aty_dac_ati68860b;
2379 break;
2380 case DAC_ATT20C408:
2381 case DAC_ATT21C498:
2382 par->dac_ops = &aty_dac_att21c498;
2383 break;
Antonino A. Daplas3a284242007-05-08 00:37:34 -07002384#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 default:
2386 PRINTKI("aty_init: DAC type not implemented yet!\n");
2387 par->dac_ops = &aty_dac_unsupported;
2388 break;
2389 }
2390 switch (clk_type) {
Antonino A. Daplas0fa67f82006-06-26 00:26:43 -07002391#ifdef CONFIG_ATARI
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 case CLK_ATI18818_1:
2393 par->pll_ops = &aty_pll_ati18818_1;
2394 break;
Antonino A. Daplas0fa67f82006-06-26 00:26:43 -07002395#else
Antonino A. Daplaseba87e82006-03-27 01:17:35 -08002396 case CLK_IBMRGB514:
2397 par->pll_ops = &aty_pll_ibm514;
2398 break;
Antonino A. Daplas0fa67f82006-06-26 00:26:43 -07002399#endif
Antonino A. Daplaseba87e82006-03-27 01:17:35 -08002400#if 0 /* dead code */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 case CLK_STG1703:
2402 par->pll_ops = &aty_pll_stg1703;
2403 break;
2404 case CLK_CH8398:
2405 par->pll_ops = &aty_pll_ch8398;
2406 break;
2407 case CLK_ATT20C408:
2408 par->pll_ops = &aty_pll_att20c408;
2409 break;
Antonino A. Daplaseba87e82006-03-27 01:17:35 -08002410#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 default:
2412 PRINTKI("aty_init: CLK type not implemented yet!");
2413 par->pll_ops = &aty_pll_unsupported;
2414 break;
2415 }
2416 }
2417#endif /* CONFIG_FB_ATY_GX */
2418#ifdef CONFIG_FB_ATY_CT
2419 if (M64_HAS(INTEGRATED)) {
2420 par->dac_ops = &aty_dac_ct;
2421 par->pll_ops = &aty_pll_ct;
2422 par->bus_type = PCI;
Randy Dunlapfe861752009-02-04 15:12:20 -08002423 par->ram_type = (aty_ld_le32(CNFG_STAT0, par) & 0x07);
Ville Syrjalaee905d02009-06-30 11:41:42 -07002424 if (M64_HAS(XL_MEM))
2425 ramname = aty_xl_ram[par->ram_type];
2426 else
2427 ramname = aty_ct_ram[par->ram_type];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 /* for many chips, the mclk is 67 MHz for SDRAM, 63 MHz otherwise */
2429 if (par->pll_limits.mclk == 67 && par->ram_type < SDRAM)
2430 par->pll_limits.mclk = 63;
Ville Syrjala159dde92007-05-08 00:39:47 -07002431 /* Mobility + 32bit memory interface need halved XCLK. */
2432 if (M64_HAS(MOBIL_BUS) && par->ram_type == SDRAM32)
2433 par->pll_limits.xclk = (par->pll_limits.xclk + 1) >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 }
Ville Syrjalab4e124c2007-05-08 00:39:45 -07002435#endif
Ville Syrjalac0887ee2007-06-27 14:09:46 -07002436#ifdef CONFIG_PPC_PMAC
Ville Syrjala68962012009-09-22 16:47:01 -07002437 /*
2438 * The Apple iBook1 uses non-standard memory frequencies.
2439 * We detect it and set the frequency manually.
2440 */
Grant Likely71a157e2010-02-01 21:34:14 -07002441 if (of_machine_is_compatible("PowerBook2,1")) {
Ville Syrjalac0887ee2007-06-27 14:09:46 -07002442 par->pll_limits.mclk = 70;
2443 par->pll_limits.xclk = 53;
2444 }
2445#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446
Ville Syrjalab4e124c2007-05-08 00:39:45 -07002447 /* Allow command line to override clocks. */
2448 if (pll)
2449 par->pll_limits.pll_max = pll;
2450 if (mclk)
2451 par->pll_limits.mclk = mclk;
2452 if (xclk)
2453 par->pll_limits.xclk = xclk;
2454
2455 aty_calc_mem_refresh(par, par->pll_limits.xclk);
2456 par->pll_per = 1000000/par->pll_limits.pll_max;
2457 par->mclk_per = 1000000/par->pll_limits.mclk;
2458 par->xclk_per = 1000000/par->pll_limits.xclk;
2459
2460 par->ref_clk_per = 1000000000000ULL / 14318180;
2461 xtal = "14.31818";
2462
2463#ifdef CONFIG_FB_ATY_CT
Ville Syrjalac98959f2006-12-08 02:40:39 -08002464 if (M64_HAS(GTB_DSP)) {
2465 u8 pll_ref_div = aty_ld_pll_ct(PLL_REF_DIV, par);
2466
2467 if (pll_ref_div) {
2468 int diff1, diff2;
2469 diff1 = 510 * 14 / pll_ref_div - par->pll_limits.pll_max;
2470 diff2 = 510 * 29 / pll_ref_div - par->pll_limits.pll_max;
2471 if (diff1 < 0)
2472 diff1 = -diff1;
2473 if (diff2 < 0)
2474 diff2 = -diff2;
2475 if (diff2 < diff1) {
2476 par->ref_clk_per = 1000000000000ULL / 29498928;
2477 xtal = "29.498928";
2478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 }
2480 }
2481#endif /* CONFIG_FB_ATY_CT */
2482
2483 /* save previous video mode */
Ville Syrjalaeafad222009-06-30 11:41:40 -07002484 aty_get_crtc(par, &par->saved_crtc);
Ville Syrjala68962012009-09-22 16:47:01 -07002485 if (par->pll_ops->get_pll)
Ville Syrjalaeafad222009-06-30 11:41:40 -07002486 par->pll_ops->get_pll(info, &par->saved_pll);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487
Ville Syrjalaefc08a72006-12-08 02:40:45 -08002488 par->mem_cntl = aty_ld_le32(MEM_CNTL, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 gtb_memsize = M64_HAS(GTB_DSP);
2490 if (gtb_memsize)
Ville Syrjala68962012009-09-22 16:47:01 -07002491 /* 0xF used instead of MEM_SIZE_ALIAS */
2492 switch (par->mem_cntl & 0xF) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 case MEM_SIZE_512K:
2494 info->fix.smem_len = 0x80000;
2495 break;
2496 case MEM_SIZE_1M:
2497 info->fix.smem_len = 0x100000;
2498 break;
2499 case MEM_SIZE_2M_GTB:
2500 info->fix.smem_len = 0x200000;
2501 break;
2502 case MEM_SIZE_4M_GTB:
2503 info->fix.smem_len = 0x400000;
2504 break;
2505 case MEM_SIZE_6M_GTB:
2506 info->fix.smem_len = 0x600000;
2507 break;
2508 case MEM_SIZE_8M_GTB:
2509 info->fix.smem_len = 0x800000;
2510 break;
2511 default:
2512 info->fix.smem_len = 0x80000;
2513 } else
Ville Syrjalaefc08a72006-12-08 02:40:45 -08002514 switch (par->mem_cntl & MEM_SIZE_ALIAS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 case MEM_SIZE_512K:
2516 info->fix.smem_len = 0x80000;
2517 break;
2518 case MEM_SIZE_1M:
2519 info->fix.smem_len = 0x100000;
2520 break;
2521 case MEM_SIZE_2M:
2522 info->fix.smem_len = 0x200000;
2523 break;
2524 case MEM_SIZE_4M:
2525 info->fix.smem_len = 0x400000;
2526 break;
2527 case MEM_SIZE_6M:
2528 info->fix.smem_len = 0x600000;
2529 break;
2530 case MEM_SIZE_8M:
2531 info->fix.smem_len = 0x800000;
2532 break;
2533 default:
2534 info->fix.smem_len = 0x80000;
2535 }
2536
2537 if (M64_HAS(MAGIC_VRAM_SIZE)) {
Randy Dunlapfe861752009-02-04 15:12:20 -08002538 if (aty_ld_le32(CNFG_STAT1, par) & 0x40000000)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 info->fix.smem_len += 0x400000;
2540 }
2541
2542 if (vram) {
2543 info->fix.smem_len = vram * 1024;
Ville Syrjalaefc08a72006-12-08 02:40:45 -08002544 par->mem_cntl &= ~(gtb_memsize ? 0xF : MEM_SIZE_ALIAS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 if (info->fix.smem_len <= 0x80000)
Ville Syrjalaefc08a72006-12-08 02:40:45 -08002546 par->mem_cntl |= MEM_SIZE_512K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 else if (info->fix.smem_len <= 0x100000)
Ville Syrjalaefc08a72006-12-08 02:40:45 -08002548 par->mem_cntl |= MEM_SIZE_1M;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 else if (info->fix.smem_len <= 0x200000)
Ville Syrjalaefc08a72006-12-08 02:40:45 -08002550 par->mem_cntl |= gtb_memsize ? MEM_SIZE_2M_GTB : MEM_SIZE_2M;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 else if (info->fix.smem_len <= 0x400000)
Ville Syrjalaefc08a72006-12-08 02:40:45 -08002552 par->mem_cntl |= gtb_memsize ? MEM_SIZE_4M_GTB : MEM_SIZE_4M;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 else if (info->fix.smem_len <= 0x600000)
Ville Syrjalaefc08a72006-12-08 02:40:45 -08002554 par->mem_cntl |= gtb_memsize ? MEM_SIZE_6M_GTB : MEM_SIZE_6M;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 else
Ville Syrjalaefc08a72006-12-08 02:40:45 -08002556 par->mem_cntl |= gtb_memsize ? MEM_SIZE_8M_GTB : MEM_SIZE_8M;
2557 aty_st_le32(MEM_CNTL, par->mem_cntl, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 }
2559
2560 /*
Ville Syrjala68962012009-09-22 16:47:01 -07002561 * Reg Block 0 (CT-compatible block) is at mmio_start
2562 * Reg Block 1 (multimedia extensions) is at mmio_start - 0x400
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 */
2564 if (M64_HAS(GX)) {
2565 info->fix.mmio_len = 0x400;
2566 info->fix.accel = FB_ACCEL_ATI_MACH64GX;
2567 } else if (M64_HAS(CT)) {
2568 info->fix.mmio_len = 0x400;
2569 info->fix.accel = FB_ACCEL_ATI_MACH64CT;
2570 } else if (M64_HAS(VT)) {
2571 info->fix.mmio_start -= 0x400;
2572 info->fix.mmio_len = 0x800;
2573 info->fix.accel = FB_ACCEL_ATI_MACH64VT;
2574 } else {/* GT */
2575 info->fix.mmio_start -= 0x400;
2576 info->fix.mmio_len = 0x800;
2577 info->fix.accel = FB_ACCEL_ATI_MACH64GT;
2578 }
2579
2580 PRINTKI("%d%c %s, %s MHz XTAL, %d MHz PLL, %d Mhz MCLK, %d MHz XCLK\n",
Ville Syrjala68962012009-09-22 16:47:01 -07002581 info->fix.smem_len == 0x80000 ? 512 : (info->fix.smem_len>>20),
2582 info->fix.smem_len == 0x80000 ? 'K' : 'M', ramname, xtal,
2583 par->pll_limits.pll_max, par->pll_limits.mclk,
2584 par->pll_limits.xclk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585
Robert P. J. Day33e321b2007-02-12 00:55:03 -08002586#if defined(DEBUG) && defined(CONFIG_FB_ATY_CT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 if (M64_HAS(INTEGRATED)) {
2588 int i;
Ville Syrjala68962012009-09-22 16:47:01 -07002589 printk("debug atyfb: BUS_CNTL DAC_CNTL MEM_CNTL "
2590 "EXT_MEM_CNTL CRTC_GEN_CNTL DSP_CONFIG "
2591 "DSP_ON_OFF CLOCK_CNTL\n"
2592 "debug atyfb: %08x %08x %08x "
2593 "%08x %08x %08x "
2594 "%08x %08x\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 "debug atyfb: PLL",
Ville Syrjala68962012009-09-22 16:47:01 -07002596 aty_ld_le32(BUS_CNTL, par),
2597 aty_ld_le32(DAC_CNTL, par),
2598 aty_ld_le32(MEM_CNTL, par),
2599 aty_ld_le32(EXT_MEM_CNTL, par),
2600 aty_ld_le32(CRTC_GEN_CNTL, par),
2601 aty_ld_le32(DSP_CONFIG, par),
2602 aty_ld_le32(DSP_ON_OFF, par),
2603 aty_ld_le32(CLOCK_CNTL, par));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 for (i = 0; i < 40; i++)
2605 printk(" %02x", aty_ld_pll_ct(i, par));
2606 printk("\n");
2607 }
2608#endif
Ville Syrjala68962012009-09-22 16:47:01 -07002609 if (par->pll_ops->init_pll)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 par->pll_ops->init_pll(info, &par->pll);
Ville Syrjalaefc08a72006-12-08 02:40:45 -08002611 if (par->pll_ops->resume_pll)
2612 par->pll_ops->resume_pll(info, &par->pll);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613
2614 /*
Ville Syrjala68962012009-09-22 16:47:01 -07002615 * Last page of 8 MB (4 MB on ISA) aperture is MMIO,
2616 * unless the auxiliary register aperture is used.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 if (!par->aux_start &&
Ville Syrjala68962012009-09-22 16:47:01 -07002619 (info->fix.smem_len == 0x800000 ||
2620 (par->bus_type == ISA && info->fix.smem_len == 0x400000)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 info->fix.smem_len -= GUI_RESERVE;
2622
2623 /*
Ville Syrjala68962012009-09-22 16:47:01 -07002624 * Disable register access through the linear aperture
2625 * if the auxiliary aperture is used so we can access
2626 * the full 8 MB of video RAM on 8 MB boards.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 */
2628 if (par->aux_start)
Ville Syrjala68962012009-09-22 16:47:01 -07002629 aty_st_le32(BUS_CNTL, aty_ld_le32(BUS_CNTL, par) |
2630 BUS_APER_REG_DIS, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631
2632#ifdef CONFIG_MTRR
2633 par->mtrr_aper = -1;
2634 par->mtrr_reg = -1;
2635 if (!nomtrr) {
2636 /* Cover the whole resource. */
Ville Syrjala68962012009-09-22 16:47:01 -07002637 par->mtrr_aper = mtrr_add(par->res_start, par->res_size,
2638 MTRR_TYPE_WRCOMB, 1);
2639 if (par->mtrr_aper >= 0 && !par->aux_start) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 /* Make a hole for mmio. */
Ville Syrjala68962012009-09-22 16:47:01 -07002641 par->mtrr_reg = mtrr_add(par->res_start + 0x800000 -
2642 GUI_RESERVE, GUI_RESERVE,
2643 MTRR_TYPE_UNCACHABLE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 if (par->mtrr_reg < 0) {
2645 mtrr_del(par->mtrr_aper, 0, 0);
2646 par->mtrr_aper = -1;
2647 }
Ville Syrjala68962012009-09-22 16:47:01 -07002648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 }
2650#endif
2651
2652 info->fbops = &atyfb_ops;
Geert Uytterhoevenad41b432007-10-16 01:29:03 -07002653 info->pseudo_palette = par->pseudo_palette;
Antonino A. Daplas7914cb22006-06-26 00:26:32 -07002654 info->flags = FBINFO_DEFAULT |
Ville Syrjala68962012009-09-22 16:47:01 -07002655 FBINFO_HWACCEL_IMAGEBLIT |
2656 FBINFO_HWACCEL_FILLRECT |
2657 FBINFO_HWACCEL_COPYAREA |
2658 FBINFO_HWACCEL_YPAN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659
2660#ifdef CONFIG_PMAC_BACKLIGHT
Grant Likely71a157e2010-02-01 21:34:14 -07002661 if (M64_HAS(G3_PB_1_1) && of_machine_is_compatible("PowerBook1,1")) {
Ville Syrjala68962012009-09-22 16:47:01 -07002662 /*
2663 * these bits let the 101 powerbook
2664 * wake up from sleep -- paulus
2665 */
2666 aty_st_lcd(POWER_MANAGEMENT, aty_ld_lcd(POWER_MANAGEMENT, par) |
2667 USE_F32KHZ | TRISTATE_MEM_EN, par);
Michael Hanselmann5474c122006-06-25 05:47:08 -07002668 } else
2669#endif
Richard Purdie202d4e62007-03-03 17:43:52 +00002670 if (M64_HAS(MOBIL_BUS) && backlight) {
Michael Hanselmann5474c122006-06-25 05:47:08 -07002671#ifdef CONFIG_FB_ATY_BACKLIGHT
Ville Syrjala68962012009-09-22 16:47:01 -07002672 aty_bl_init(par);
Michael Hanselmann5474c122006-06-25 05:47:08 -07002673#endif
2674 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675
2676 memset(&var, 0, sizeof(var));
2677#ifdef CONFIG_PPC
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11002678 if (machine_is(powermac)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 /*
Ville Syrjala68962012009-09-22 16:47:01 -07002680 * FIXME: The NVRAM stuff should be put in a Mac-specific file,
2681 * as it applies to all Mac video cards
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 */
2683 if (mode) {
Antonino A. Daplas1013d262005-11-07 01:00:41 -08002684 if (mac_find_mode(&var, info, mode, 8))
2685 has_var = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 } else {
2687 if (default_vmode == VMODE_CHOOSE) {
Ville Syrjalac98959f2006-12-08 02:40:39 -08002688 int sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 if (M64_HAS(G3_PB_1024x768))
2690 /* G3 PowerBook with 1024x768 LCD */
2691 default_vmode = VMODE_1024_768_60;
Grant Likely71a157e2010-02-01 21:34:14 -07002692 else if (of_machine_is_compatible("iMac"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 default_vmode = VMODE_1024_768_75;
Grant Likely71a157e2010-02-01 21:34:14 -07002694 else if (of_machine_is_compatible("PowerBook2,1"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 /* iBook with 800x600 LCD */
2696 default_vmode = VMODE_800_600_60;
2697 else
2698 default_vmode = VMODE_640_480_67;
2699 sense = read_aty_sense(par);
2700 PRINTKI("monitor sense=%x, mode %d\n",
2701 sense, mac_map_monitor_sense(sense));
2702 }
2703 if (default_vmode <= 0 || default_vmode > VMODE_MAX)
2704 default_vmode = VMODE_640_480_60;
2705 if (default_cmode < CMODE_8 || default_cmode > CMODE_32)
2706 default_cmode = CMODE_8;
Antonino A. Daplas1013d262005-11-07 01:00:41 -08002707 if (!mac_vmode_to_var(default_vmode, default_cmode,
Ville Syrjala68962012009-09-22 16:47:01 -07002708 &var))
Antonino A. Daplas1013d262005-11-07 01:00:41 -08002709 has_var = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 }
Antonino A. Daplas1013d262005-11-07 01:00:41 -08002711 }
2712
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713#endif /* !CONFIG_PPC */
Antonino A. Daplas1013d262005-11-07 01:00:41 -08002714
2715#if defined(__i386__) && defined(CONFIG_FB_ATY_GENERIC_LCD)
2716 if (!atyfb_get_timings_from_lcd(par, &var))
2717 has_var = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718#endif
Antonino A. Daplas1013d262005-11-07 01:00:41 -08002719
2720 if (mode && fb_find_mode(&var, info, mode, NULL, 0, &defmode, 8))
2721 has_var = 1;
2722
2723 if (!has_var)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 var = default_var;
2725
2726 if (noaccel)
2727 var.accel_flags &= ~FB_ACCELF_TEXT;
2728 else
2729 var.accel_flags |= FB_ACCELF_TEXT;
2730
2731 if (comp_sync != -1) {
2732 if (!comp_sync)
2733 var.sync &= ~FB_SYNC_COMP_HIGH_ACT;
2734 else
2735 var.sync |= FB_SYNC_COMP_HIGH_ACT;
2736 }
2737
2738 if (var.yres == var.yres_virtual) {
2739 u32 videoram = (info->fix.smem_len - (PAGE_SIZE << 2));
2740 var.yres_virtual = ((videoram * 8) / var.bits_per_pixel) / var.xres_virtual;
2741 if (var.yres_virtual < var.yres)
2742 var.yres_virtual = var.yres;
2743 }
2744
Ville Syrjala89c69d22008-07-23 21:31:32 -07002745 ret = atyfb_check_var(&var, info);
2746 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 PRINTKE("can't set default video mode\n");
2748 goto aty_init_exit;
2749 }
2750
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751#ifdef CONFIG_FB_ATY_CT
2752 if (!noaccel && M64_HAS(INTEGRATED))
2753 aty_init_cursor(info);
2754#endif /* CONFIG_FB_ATY_CT */
2755 info->var = var;
2756
Ville Syrjala89c69d22008-07-23 21:31:32 -07002757 ret = fb_alloc_cmap(&info->cmap, 256, 0);
2758 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 goto aty_init_exit;
2760
Ville Syrjala89c69d22008-07-23 21:31:32 -07002761 ret = register_framebuffer(info);
2762 if (ret < 0) {
Roel Kluin21b4d1d2008-04-28 02:15:04 -07002763 fb_dealloc_cmap(&info->cmap);
2764 goto aty_init_exit;
2765 }
2766
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 fb_list = info;
2768
2769 PRINTKI("fb%d: %s frame buffer device on %s\n",
Ville Syrjala044aaa32006-12-08 02:40:41 -08002770 info->node, info->fix.id, par->bus_type == ISA ? "ISA" : "PCI");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 return 0;
2772
2773aty_init_exit:
2774 /* restore video mode */
Ville Syrjalaeafad222009-06-30 11:41:40 -07002775 aty_set_crtc(par, &par->saved_crtc);
2776 par->pll_ops->set_pll(info, &par->saved_pll);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777
2778#ifdef CONFIG_MTRR
2779 if (par->mtrr_reg >= 0) {
Ville Syrjala68962012009-09-22 16:47:01 -07002780 mtrr_del(par->mtrr_reg, 0, 0);
2781 par->mtrr_reg = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 }
2783 if (par->mtrr_aper >= 0) {
Ville Syrjala68962012009-09-22 16:47:01 -07002784 mtrr_del(par->mtrr_aper, 0, 0);
2785 par->mtrr_aper = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 }
2787#endif
Ville Syrjala89c69d22008-07-23 21:31:32 -07002788 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789}
2790
2791#ifdef CONFIG_ATARI
Antonino A. Daplas1a8c9792006-06-26 00:26:58 -07002792static int __devinit store_video_par(char *video_str, unsigned char m64_num)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793{
2794 char *p;
2795 unsigned long vmembase, size, guiregbase;
2796
2797 PRINTKI("store_video_par() '%s' \n", video_str);
2798
2799 if (!(p = strsep(&video_str, ";")) || !*p)
2800 goto mach64_invalid;
2801 vmembase = simple_strtoul(p, NULL, 0);
2802 if (!(p = strsep(&video_str, ";")) || !*p)
2803 goto mach64_invalid;
2804 size = simple_strtoul(p, NULL, 0);
2805 if (!(p = strsep(&video_str, ";")) || !*p)
2806 goto mach64_invalid;
2807 guiregbase = simple_strtoul(p, NULL, 0);
2808
2809 phys_vmembase[m64_num] = vmembase;
2810 phys_size[m64_num] = size;
2811 phys_guiregbase[m64_num] = guiregbase;
2812 PRINTKI("stored them all: $%08lX $%08lX $%08lX \n", vmembase, size,
Ville Syrjala68962012009-09-22 16:47:01 -07002813 guiregbase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 return 0;
2815
Ville Syrjala68962012009-09-22 16:47:01 -07002816 mach64_invalid:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 phys_vmembase[m64_num] = 0;
2818 return -1;
2819}
2820#endif /* CONFIG_ATARI */
2821
Ville Syrjala68962012009-09-22 16:47:01 -07002822/*
2823 * Blank the display.
2824 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825
2826static int atyfb_blank(int blank, struct fb_info *info)
2827{
2828 struct atyfb_par *par = (struct atyfb_par *) info->par;
Ville Syrjälä480913f2006-01-09 20:53:28 -08002829 u32 gen_cntl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830
2831 if (par->lock_blank || par->asleep)
2832 return 0;
2833
Olaf Hering50cd0222008-07-23 21:31:29 -07002834#ifdef CONFIG_FB_ATY_GENERIC_LCD
Ville Syrjälä480913f2006-01-09 20:53:28 -08002835 if (par->lcd_table && blank > FB_BLANK_NORMAL &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 (aty_ld_lcd(LCD_GEN_CNTL, par) & LCD_ON)) {
2837 u32 pm = aty_ld_lcd(POWER_MANAGEMENT, par);
2838 pm &= ~PWR_BLON;
2839 aty_st_lcd(POWER_MANAGEMENT, pm, par);
2840 }
2841#endif
2842
Ville Syrjälä480913f2006-01-09 20:53:28 -08002843 gen_cntl = aty_ld_le32(CRTC_GEN_CNTL, par);
Ville Syrjala27b68592006-12-08 02:40:41 -08002844 gen_cntl &= ~0x400004c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 switch (blank) {
Ville Syrjala68962012009-09-22 16:47:01 -07002846 case FB_BLANK_UNBLANK:
2847 break;
2848 case FB_BLANK_NORMAL:
2849 gen_cntl |= 0x4000040;
2850 break;
2851 case FB_BLANK_VSYNC_SUSPEND:
2852 gen_cntl |= 0x4000048;
2853 break;
2854 case FB_BLANK_HSYNC_SUSPEND:
2855 gen_cntl |= 0x4000044;
2856 break;
2857 case FB_BLANK_POWERDOWN:
2858 gen_cntl |= 0x400004c;
2859 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 }
Ville Syrjälä480913f2006-01-09 20:53:28 -08002861 aty_st_le32(CRTC_GEN_CNTL, gen_cntl, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862
Olaf Hering50cd0222008-07-23 21:31:29 -07002863#ifdef CONFIG_FB_ATY_GENERIC_LCD
Ville Syrjälä480913f2006-01-09 20:53:28 -08002864 if (par->lcd_table && blank <= FB_BLANK_NORMAL &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 (aty_ld_lcd(LCD_GEN_CNTL, par) & LCD_ON)) {
2866 u32 pm = aty_ld_lcd(POWER_MANAGEMENT, par);
2867 pm |= PWR_BLON;
2868 aty_st_lcd(POWER_MANAGEMENT, pm, par);
2869 }
2870#endif
2871
2872 return 0;
2873}
2874
2875static void aty_st_pal(u_int regno, u_int red, u_int green, u_int blue,
2876 const struct atyfb_par *par)
2877{
Ville Syrjalacab59012006-12-08 02:40:43 -08002878 aty_st_8(DAC_W_INDEX, regno, par);
2879 aty_st_8(DAC_DATA, red, par);
2880 aty_st_8(DAC_DATA, green, par);
2881 aty_st_8(DAC_DATA, blue, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882}
2883
Ville Syrjala68962012009-09-22 16:47:01 -07002884/*
2885 * Set a single color register. The values supplied are already
2886 * rounded down to the hardware's capabilities (according to the
2887 * entries in the var structure). Return != 0 for invalid regno.
2888 * !! 4 & 8 = PSEUDO, > 8 = DIRECTCOLOR
2889 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890
2891static int atyfb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
Ville Syrjala68962012009-09-22 16:47:01 -07002892 u_int transp, struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893{
2894 struct atyfb_par *par = (struct atyfb_par *) info->par;
2895 int i, depth;
2896 u32 *pal = info->pseudo_palette;
2897
2898 depth = info->var.bits_per_pixel;
2899 if (depth == 16)
2900 depth = (info->var.green.length == 5) ? 15 : 16;
2901
2902 if (par->asleep)
2903 return 0;
2904
2905 if (regno > 255 ||
2906 (depth == 16 && regno > 63) ||
2907 (depth == 15 && regno > 31))
2908 return 1;
2909
2910 red >>= 8;
2911 green >>= 8;
2912 blue >>= 8;
2913
2914 par->palette[regno].red = red;
2915 par->palette[regno].green = green;
2916 par->palette[regno].blue = blue;
2917
2918 if (regno < 16) {
2919 switch (depth) {
2920 case 15:
2921 pal[regno] = (regno << 10) | (regno << 5) | regno;
2922 break;
2923 case 16:
2924 pal[regno] = (regno << 11) | (regno << 5) | regno;
2925 break;
2926 case 24:
2927 pal[regno] = (regno << 16) | (regno << 8) | regno;
2928 break;
2929 case 32:
2930 i = (regno << 8) | regno;
2931 pal[regno] = (i << 16) | i;
2932 break;
2933 }
2934 }
2935
2936 i = aty_ld_8(DAC_CNTL, par) & 0xfc;
2937 if (M64_HAS(EXTRA_BRIGHT))
2938 i |= 0x2; /* DAC_CNTL | 0x2 turns off the extra brightness for gt */
2939 aty_st_8(DAC_CNTL, i, par);
2940 aty_st_8(DAC_MASK, 0xff, par);
2941
2942 if (M64_HAS(INTEGRATED)) {
2943 if (depth == 16) {
2944 if (regno < 32)
2945 aty_st_pal(regno << 3, red,
Ville Syrjala68962012009-09-22 16:47:01 -07002946 par->palette[regno << 1].green,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 blue, par);
Ville Syrjala68962012009-09-22 16:47:01 -07002948 red = par->palette[regno >> 1].red;
2949 blue = par->palette[regno >> 1].blue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 regno <<= 2;
2951 } else if (depth == 15) {
2952 regno <<= 3;
Ville Syrjala68962012009-09-22 16:47:01 -07002953 for (i = 0; i < 8; i++)
2954 aty_st_pal(regno + i, red, green, blue, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 }
2956 }
2957 aty_st_pal(regno, red, green, blue, par);
2958
2959 return 0;
2960}
2961
2962#ifdef CONFIG_PCI
2963
2964#ifdef __sparc__
2965
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966static int __devinit atyfb_setup_sparc(struct pci_dev *pdev,
Ville Syrjala68962012009-09-22 16:47:01 -07002967 struct fb_info *info,
2968 unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 struct atyfb_par *par = info->par;
David S. Millera02079c2007-02-28 17:02:45 -08002971 struct device_node *dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 char prop[128];
2973 int node, len, i, j, ret;
2974 u32 mem, chip_id;
2975
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 /*
2977 * Map memory-mapped registers.
2978 */
2979 par->ati_regbase = (void *)addr + 0x7ffc00UL;
2980 info->fix.mmio_start = addr + 0x7ffc00UL;
2981
2982 /*
2983 * Map in big-endian aperture.
2984 */
2985 info->screen_base = (char *) (addr + 0x800000UL);
2986 info->fix.smem_start = addr + 0x800000UL;
2987
2988 /*
2989 * Figure mmap addresses from PCI config space.
2990 * Split Framebuffer in big- and little-endian halfs.
2991 */
2992 for (i = 0; i < 6 && pdev->resource[i].start; i++)
2993 /* nothing */ ;
2994 j = i + 4;
2995
Yoann Padioleaudd00cc42007-07-19 01:49:03 -07002996 par->mmap_map = kcalloc(j, sizeof(*par->mmap_map), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 if (!par->mmap_map) {
2998 PRINTKE("atyfb_setup_sparc() can't alloc mmap_map\n");
2999 return -ENOMEM;
3000 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001
3002 for (i = 0, j = 2; i < 6 && pdev->resource[i].start; i++) {
3003 struct resource *rp = &pdev->resource[i];
3004 int io, breg = PCI_BASE_ADDRESS_0 + (i << 2);
3005 unsigned long base;
3006 u32 size, pbase;
3007
3008 base = rp->start;
3009
3010 io = (rp->flags & IORESOURCE_IO);
3011
3012 size = rp->end - base + 1;
3013
3014 pci_read_config_dword(pdev, breg, &pbase);
3015
3016 if (io)
3017 size &= ~1;
3018
3019 /*
3020 * Map the framebuffer a second time, this time without
3021 * the braindead _PAGE_IE setting. This is used by the
3022 * fixed Xserver, but we need to maintain the old mapping
3023 * to stay compatible with older ones...
3024 */
3025 if (base == addr) {
3026 par->mmap_map[j].voff = (pbase + 0x10000000) & PAGE_MASK;
3027 par->mmap_map[j].poff = base & PAGE_MASK;
3028 par->mmap_map[j].size = (size + ~PAGE_MASK) & PAGE_MASK;
3029 par->mmap_map[j].prot_mask = _PAGE_CACHE;
3030 par->mmap_map[j].prot_flag = _PAGE_E;
3031 j++;
3032 }
3033
3034 /*
3035 * Here comes the old framebuffer mapping with _PAGE_IE
3036 * set for the big endian half of the framebuffer...
3037 */
3038 if (base == addr) {
3039 par->mmap_map[j].voff = (pbase + 0x800000) & PAGE_MASK;
3040 par->mmap_map[j].poff = (base + 0x800000) & PAGE_MASK;
3041 par->mmap_map[j].size = 0x800000;
3042 par->mmap_map[j].prot_mask = _PAGE_CACHE;
3043 par->mmap_map[j].prot_flag = _PAGE_E | _PAGE_IE;
3044 size -= 0x800000;
3045 j++;
3046 }
3047
3048 par->mmap_map[j].voff = pbase & PAGE_MASK;
3049 par->mmap_map[j].poff = base & PAGE_MASK;
3050 par->mmap_map[j].size = (size + ~PAGE_MASK) & PAGE_MASK;
3051 par->mmap_map[j].prot_mask = _PAGE_CACHE;
3052 par->mmap_map[j].prot_flag = _PAGE_E;
3053 j++;
3054 }
3055
Ville Syrjala68962012009-09-22 16:47:01 -07003056 ret = correct_chipset(par);
3057 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058 return ret;
3059
3060 if (IS_XL(pdev->device)) {
3061 /*
3062 * Fix PROMs idea of MEM_CNTL settings...
3063 */
3064 mem = aty_ld_le32(MEM_CNTL, par);
Randy Dunlapfe861752009-02-04 15:12:20 -08003065 chip_id = aty_ld_le32(CNFG_CHIP_ID, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 if (((chip_id & CFG_CHIP_TYPE) == VT_CHIP_ID) && !((chip_id >> 24) & 1)) {
3067 switch (mem & 0x0f) {
3068 case 3:
3069 mem = (mem & ~(0x0f)) | 2;
3070 break;
3071 case 7:
3072 mem = (mem & ~(0x0f)) | 3;
3073 break;
3074 case 9:
3075 mem = (mem & ~(0x0f)) | 4;
3076 break;
3077 case 11:
3078 mem = (mem & ~(0x0f)) | 5;
3079 break;
3080 default:
3081 break;
3082 }
Randy Dunlapfe861752009-02-04 15:12:20 -08003083 if ((aty_ld_le32(CNFG_STAT0, par) & 7) >= SDRAM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 mem &= ~(0x00700000);
3085 }
3086 mem &= ~(0xcf80e000); /* Turn off all undocumented bits. */
3087 aty_st_le32(MEM_CNTL, mem, par);
3088 }
3089
3090 /*
3091 * If this is the console device, we will set default video
3092 * settings to what the PROM left us with.
3093 */
3094 node = prom_getchild(prom_root_node);
3095 node = prom_searchsiblings(node, "aliases");
3096 if (node) {
3097 len = prom_getproperty(node, "screen", prop, sizeof(prop));
3098 if (len > 0) {
3099 prop[len] = '\0';
3100 node = prom_finddevice(prop);
3101 } else
3102 node = 0;
3103 }
3104
David S. Millera02079c2007-02-28 17:02:45 -08003105 dp = pci_device_to_OF_node(pdev);
Grant Likely6016a362010-01-28 14:06:53 -07003106 if (node == dp->phandle) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 struct fb_var_screeninfo *var = &default_var;
3108 unsigned int N, P, Q, M, T, R;
3109 u32 v_total, h_total;
3110 struct crtc crtc;
3111 u8 pll_regs[16];
3112 u8 clock_cntl;
3113
3114 crtc.vxres = prom_getintdefault(node, "width", 1024);
3115 crtc.vyres = prom_getintdefault(node, "height", 768);
3116 var->bits_per_pixel = prom_getintdefault(node, "depth", 8);
3117 var->xoffset = var->yoffset = 0;
3118 crtc.h_tot_disp = aty_ld_le32(CRTC_H_TOTAL_DISP, par);
3119 crtc.h_sync_strt_wid = aty_ld_le32(CRTC_H_SYNC_STRT_WID, par);
3120 crtc.v_tot_disp = aty_ld_le32(CRTC_V_TOTAL_DISP, par);
3121 crtc.v_sync_strt_wid = aty_ld_le32(CRTC_V_SYNC_STRT_WID, par);
3122 crtc.gen_cntl = aty_ld_le32(CRTC_GEN_CNTL, par);
3123 aty_crtc_to_var(&crtc, var);
3124
3125 h_total = var->xres + var->right_margin + var->hsync_len + var->left_margin;
3126 v_total = var->yres + var->lower_margin + var->vsync_len + var->upper_margin;
3127
3128 /*
3129 * Read the PLL to figure actual Refresh Rate.
3130 */
3131 clock_cntl = aty_ld_8(CLOCK_CNTL, par);
3132 /* DPRINTK("CLOCK_CNTL %02x\n", clock_cntl); */
3133 for (i = 0; i < 16; i++)
3134 pll_regs[i] = aty_ld_pll_ct(i, par);
3135
3136 /*
3137 * PLL Reference Divider M:
3138 */
3139 M = pll_regs[2];
3140
3141 /*
3142 * PLL Feedback Divider N (Dependant on CLOCK_CNTL):
3143 */
3144 N = pll_regs[7 + (clock_cntl & 3)];
3145
3146 /*
3147 * PLL Post Divider P (Dependant on CLOCK_CNTL):
3148 */
3149 P = 1 << (pll_regs[6] >> ((clock_cntl & 3) << 1));
3150
3151 /*
3152 * PLL Divider Q:
3153 */
3154 Q = N / P;
3155
3156 /*
3157 * Target Frequency:
3158 *
3159 * T * M
3160 * Q = -------
3161 * 2 * R
3162 *
3163 * where R is XTALIN (= 14318 or 29498 kHz).
3164 */
3165 if (IS_XL(pdev->device))
3166 R = 29498;
3167 else
3168 R = 14318;
3169
3170 T = 2 * Q * R / M;
3171
3172 default_var.pixclock = 1000000000 / T;
3173 }
3174
3175 return 0;
3176}
3177
3178#else /* __sparc__ */
3179
3180#ifdef __i386__
3181#ifdef CONFIG_FB_ATY_GENERIC_LCD
Ville Syrjala5850e0c2006-12-08 02:40:42 -08003182static void __devinit aty_init_lcd(struct atyfb_par *par, u32 bios_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183{
3184 u32 driv_inf_tab, sig;
3185 u16 lcd_ofs;
3186
Ville Syrjala68962012009-09-22 16:47:01 -07003187 /*
3188 * To support an LCD panel, we should know it's dimensions and
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189 * it's desired pixel clock.
3190 * There are two ways to do it:
3191 * - Check the startup video mode and calculate the panel
3192 * size from it. This is unreliable.
3193 * - Read it from the driver information table in the video BIOS.
Ville Syrjala68962012009-09-22 16:47:01 -07003194 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195 /* Address of driver information table is at offset 0x78. */
3196 driv_inf_tab = bios_base + *((u16 *)(bios_base+0x78));
3197
3198 /* Check for the driver information table signature. */
Ville Syrjala68962012009-09-22 16:47:01 -07003199 sig = *(u32 *)driv_inf_tab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 if ((sig == 0x54504c24) || /* Rage LT pro */
Ville Syrjala68962012009-09-22 16:47:01 -07003201 (sig == 0x544d5224) || /* Rage mobility */
3202 (sig == 0x54435824) || /* Rage XC */
3203 (sig == 0x544c5824)) { /* Rage XL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 PRINTKI("BIOS contains driver information table.\n");
Ville Syrjala68962012009-09-22 16:47:01 -07003205 lcd_ofs = *(u16 *)(driv_inf_tab + 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 par->lcd_table = 0;
Ville Syrjala68962012009-09-22 16:47:01 -07003207 if (lcd_ofs != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 par->lcd_table = bios_base + lcd_ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209 }
3210
3211 if (par->lcd_table != 0) {
3212 char model[24];
3213 char strbuf[16];
3214 char refresh_rates_buf[100];
3215 int id, tech, f, i, m, default_refresh_rate;
3216 char *txtcolour;
3217 char *txtmonitor;
3218 char *txtdual;
3219 char *txtformat;
3220 u16 width, height, panel_type, refresh_rates;
3221 u16 *lcdmodeptr;
3222 u32 format;
Ville Syrjala68962012009-09-22 16:47:01 -07003223 u8 lcd_refresh_rates[16] = { 50, 56, 60, 67, 70, 72, 75, 76, 85,
3224 90, 100, 120, 140, 150, 160, 200 };
3225 /*
3226 * The most important information is the panel size at
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 * offset 25 and 27, but there's some other nice information
3228 * which we print to the screen.
3229 */
3230 id = *(u8 *)par->lcd_table;
Ville Syrjala68962012009-09-22 16:47:01 -07003231 strncpy(model, (char *)par->lcd_table+1, 24);
3232 model[23] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233
3234 width = par->lcd_width = *(u16 *)(par->lcd_table+25);
3235 height = par->lcd_height = *(u16 *)(par->lcd_table+27);
3236 panel_type = *(u16 *)(par->lcd_table+29);
3237 if (panel_type & 1)
3238 txtcolour = "colour";
3239 else
3240 txtcolour = "monochrome";
3241 if (panel_type & 2)
3242 txtdual = "dual (split) ";
3243 else
3244 txtdual = "";
Ville Syrjala68962012009-09-22 16:47:01 -07003245 tech = (panel_type >> 2) & 63;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 switch (tech) {
3247 case 0:
3248 txtmonitor = "passive matrix";
3249 break;
3250 case 1:
3251 txtmonitor = "active matrix";
3252 break;
3253 case 2:
3254 txtmonitor = "active addressed STN";
3255 break;
3256 case 3:
3257 txtmonitor = "EL";
3258 break;
3259 case 4:
3260 txtmonitor = "plasma";
3261 break;
3262 default:
3263 txtmonitor = "unknown";
3264 }
3265 format = *(u32 *)(par->lcd_table+57);
3266 if (tech == 0 || tech == 2) {
3267 switch (format & 7) {
3268 case 0:
3269 txtformat = "12 bit interface";
3270 break;
3271 case 1:
3272 txtformat = "16 bit interface";
3273 break;
3274 case 2:
3275 txtformat = "24 bit interface";
3276 break;
3277 default:
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02003278 txtformat = "unknown format";
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 }
3280 } else {
3281 switch (format & 7) {
3282 case 0:
3283 txtformat = "8 colours";
3284 break;
3285 case 1:
3286 txtformat = "512 colours";
3287 break;
3288 case 2:
3289 txtformat = "4096 colours";
3290 break;
3291 case 4:
3292 txtformat = "262144 colours (LT mode)";
3293 break;
3294 case 5:
3295 txtformat = "16777216 colours";
3296 break;
3297 case 6:
3298 txtformat = "262144 colours (FDPI-2 mode)";
3299 break;
3300 default:
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02003301 txtformat = "unknown format";
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302 }
3303 }
3304 PRINTKI("%s%s %s monitor detected: %s\n",
Ville Syrjala68962012009-09-22 16:47:01 -07003305 txtdual, txtcolour, txtmonitor, model);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 PRINTKI(" id=%d, %dx%d pixels, %s\n",
3307 id, width, height, txtformat);
3308 refresh_rates_buf[0] = 0;
3309 refresh_rates = *(u16 *)(par->lcd_table+62);
3310 m = 1;
3311 f = 0;
Ville Syrjala68962012009-09-22 16:47:01 -07003312 for (i = 0; i < 16; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 if (refresh_rates & m) {
3314 if (f == 0) {
Ville Syrjala68962012009-09-22 16:47:01 -07003315 sprintf(strbuf, "%d",
3316 lcd_refresh_rates[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 f++;
3318 } else {
Ville Syrjala68962012009-09-22 16:47:01 -07003319 sprintf(strbuf, ",%d",
3320 lcd_refresh_rates[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 }
Ville Syrjala68962012009-09-22 16:47:01 -07003322 strcat(refresh_rates_buf, strbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323 }
3324 m = m << 1;
3325 }
3326 default_refresh_rate = (*(u8 *)(par->lcd_table+61) & 0xf0) >> 4;
3327 PRINTKI(" supports refresh rates [%s], default %d Hz\n",
3328 refresh_rates_buf, lcd_refresh_rates[default_refresh_rate]);
3329 par->lcd_refreshrate = lcd_refresh_rates[default_refresh_rate];
Ville Syrjala68962012009-09-22 16:47:01 -07003330 /*
3331 * We now need to determine the crtc parameters for the
Ville Syrjäläcd4617b2006-01-09 20:53:21 -08003332 * LCD monitor. This is tricky, because they are not stored
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333 * individually in the BIOS. Instead, the BIOS contains a
3334 * table of display modes that work for this monitor.
3335 *
3336 * The idea is that we search for a mode of the same dimensions
Ville Syrjäläcd4617b2006-01-09 20:53:21 -08003337 * as the dimensions of the LCD monitor. Say our LCD monitor
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338 * is 800x600 pixels, we search for a 800x600 monitor.
3339 * The CRTC parameters we find here are the ones that we need
Ville Syrjäläcd4617b2006-01-09 20:53:21 -08003340 * to use to simulate other resolutions on the LCD screen.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341 */
3342 lcdmodeptr = (u16 *)(par->lcd_table + 64);
3343 while (*lcdmodeptr != 0) {
3344 u32 modeptr;
3345 u16 mwidth, mheight, lcd_hsync_start, lcd_vsync_start;
3346 modeptr = bios_base + *lcdmodeptr;
3347
3348 mwidth = *((u16 *)(modeptr+0));
3349 mheight = *((u16 *)(modeptr+2));
3350
3351 if (mwidth == width && mheight == height) {
3352 par->lcd_pixclock = 100000000 / *((u16 *)(modeptr+9));
3353 par->lcd_htotal = *((u16 *)(modeptr+17)) & 511;
3354 par->lcd_hdisp = *((u16 *)(modeptr+19)) & 511;
3355 lcd_hsync_start = *((u16 *)(modeptr+21)) & 511;
3356 par->lcd_hsync_dly = (*((u16 *)(modeptr+21)) >> 9) & 7;
3357 par->lcd_hsync_len = *((u8 *)(modeptr+23)) & 63;
3358
3359 par->lcd_vtotal = *((u16 *)(modeptr+24)) & 2047;
3360 par->lcd_vdisp = *((u16 *)(modeptr+26)) & 2047;
3361 lcd_vsync_start = *((u16 *)(modeptr+28)) & 2047;
3362 par->lcd_vsync_len = (*((u16 *)(modeptr+28)) >> 11) & 31;
3363
3364 par->lcd_htotal = (par->lcd_htotal + 1) * 8;
3365 par->lcd_hdisp = (par->lcd_hdisp + 1) * 8;
3366 lcd_hsync_start = (lcd_hsync_start + 1) * 8;
3367 par->lcd_hsync_len = par->lcd_hsync_len * 8;
3368
3369 par->lcd_vtotal++;
3370 par->lcd_vdisp++;
3371 lcd_vsync_start++;
3372
3373 par->lcd_right_margin = lcd_hsync_start - par->lcd_hdisp;
3374 par->lcd_lower_margin = lcd_vsync_start - par->lcd_vdisp;
3375 par->lcd_hblank_len = par->lcd_htotal - par->lcd_hdisp;
3376 par->lcd_vblank_len = par->lcd_vtotal - par->lcd_vdisp;
3377 break;
3378 }
3379
3380 lcdmodeptr++;
3381 }
3382 if (*lcdmodeptr == 0) {
3383 PRINTKE("LCD monitor CRTC parameters not found!!!\n");
3384 /* To do: Switch to CRT if possible. */
3385 } else {
3386 PRINTKI(" LCD CRTC parameters: %d.%d %d %d %d %d %d %d %d %d\n",
3387 1000000 / par->lcd_pixclock, 1000000 % par->lcd_pixclock,
3388 par->lcd_hdisp,
3389 par->lcd_hdisp + par->lcd_right_margin,
3390 par->lcd_hdisp + par->lcd_right_margin
3391 + par->lcd_hsync_dly + par->lcd_hsync_len,
3392 par->lcd_htotal,
3393 par->lcd_vdisp,
3394 par->lcd_vdisp + par->lcd_lower_margin,
3395 par->lcd_vdisp + par->lcd_lower_margin + par->lcd_vsync_len,
3396 par->lcd_vtotal);
3397 PRINTKI(" : %d %d %d %d %d %d %d %d %d\n",
3398 par->lcd_pixclock,
3399 par->lcd_hblank_len - (par->lcd_right_margin +
3400 par->lcd_hsync_dly + par->lcd_hsync_len),
3401 par->lcd_hdisp,
3402 par->lcd_right_margin,
3403 par->lcd_hsync_len,
3404 par->lcd_vblank_len - (par->lcd_lower_margin + par->lcd_vsync_len),
3405 par->lcd_vdisp,
3406 par->lcd_lower_margin,
3407 par->lcd_vsync_len);
3408 }
3409 }
3410}
3411#endif /* CONFIG_FB_ATY_GENERIC_LCD */
3412
3413static int __devinit init_from_bios(struct atyfb_par *par)
3414{
3415 u32 bios_base, rom_addr;
3416 int ret;
3417
3418 rom_addr = 0xc0000 + ((aty_ld_le32(SCRATCH_REG1, par) & 0x7f) << 11);
3419 bios_base = (unsigned long)ioremap(rom_addr, 0x10000);
3420
3421 /* The BIOS starts with 0xaa55. */
3422 if (*((u16 *)bios_base) == 0xaa55) {
3423
3424 u8 *bios_ptr;
3425 u16 rom_table_offset, freq_table_offset;
3426 PLL_BLOCK_MACH64 pll_block;
3427
3428 PRINTKI("Mach64 BIOS is located at %x, mapped at %x.\n", rom_addr, bios_base);
3429
3430 /* check for frequncy table */
3431 bios_ptr = (u8*)bios_base;
3432 rom_table_offset = (u16)(bios_ptr[0x48] | (bios_ptr[0x49] << 8));
3433 freq_table_offset = bios_ptr[rom_table_offset + 16] | (bios_ptr[rom_table_offset + 17] << 8);
3434 memcpy(&pll_block, bios_ptr + freq_table_offset, sizeof(PLL_BLOCK_MACH64));
3435
3436 PRINTKI("BIOS frequency table:\n");
3437 PRINTKI("PCLK_min_freq %d, PCLK_max_freq %d, ref_freq %d, ref_divider %d\n",
3438 pll_block.PCLK_min_freq, pll_block.PCLK_max_freq,
3439 pll_block.ref_freq, pll_block.ref_divider);
3440 PRINTKI("MCLK_pwd %d, MCLK_max_freq %d, XCLK_max_freq %d, SCLK_freq %d\n",
3441 pll_block.MCLK_pwd, pll_block.MCLK_max_freq,
3442 pll_block.XCLK_max_freq, pll_block.SCLK_freq);
3443
3444 par->pll_limits.pll_min = pll_block.PCLK_min_freq/100;
3445 par->pll_limits.pll_max = pll_block.PCLK_max_freq/100;
3446 par->pll_limits.ref_clk = pll_block.ref_freq/100;
3447 par->pll_limits.ref_div = pll_block.ref_divider;
3448 par->pll_limits.sclk = pll_block.SCLK_freq/100;
3449 par->pll_limits.mclk = pll_block.MCLK_max_freq/100;
3450 par->pll_limits.mclk_pm = pll_block.MCLK_pwd/100;
3451 par->pll_limits.xclk = pll_block.XCLK_max_freq/100;
3452#ifdef CONFIG_FB_ATY_GENERIC_LCD
3453 aty_init_lcd(par, bios_base);
3454#endif
3455 ret = 0;
3456 } else {
3457 PRINTKE("no BIOS frequency table found, use parameters\n");
3458 ret = -ENXIO;
3459 }
Ville Syrjala1c554ff2008-07-23 21:31:32 -07003460 iounmap((void __iomem *)bios_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461
3462 return ret;
3463}
3464#endif /* __i386__ */
3465
Ville Syrjala68962012009-09-22 16:47:01 -07003466static int __devinit atyfb_setup_generic(struct pci_dev *pdev,
3467 struct fb_info *info,
3468 unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469{
3470 struct atyfb_par *par = info->par;
3471 u16 tmp;
3472 unsigned long raddr;
3473 struct resource *rrp;
3474 int ret = 0;
3475
3476 raddr = addr + 0x7ff000UL;
3477 rrp = &pdev->resource[2];
3478 if ((rrp->flags & IORESOURCE_MEM) && request_mem_region(rrp->start, rrp->end - rrp->start + 1, "atyfb")) {
3479 par->aux_start = rrp->start;
3480 par->aux_size = rrp->end - rrp->start + 1;
3481 raddr = rrp->start;
3482 PRINTKI("using auxiliary register aperture\n");
3483 }
3484
3485 info->fix.mmio_start = raddr;
3486 par->ati_regbase = ioremap(info->fix.mmio_start, 0x1000);
Harvey Harrison5e2daeb2008-05-22 15:45:08 -07003487 if (par->ati_regbase == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488 return -ENOMEM;
3489
3490 info->fix.mmio_start += par->aux_start ? 0x400 : 0xc00;
3491 par->ati_regbase += par->aux_start ? 0x400 : 0xc00;
3492
3493 /*
3494 * Enable memory-space accesses using config-space
3495 * command register.
3496 */
3497 pci_read_config_word(pdev, PCI_COMMAND, &tmp);
3498 if (!(tmp & PCI_COMMAND_MEMORY)) {
3499 tmp |= PCI_COMMAND_MEMORY;
3500 pci_write_config_word(pdev, PCI_COMMAND, tmp);
3501 }
3502#ifdef __BIG_ENDIAN
3503 /* Use the big-endian aperture */
3504 addr += 0x800000;
3505#endif
3506
3507 /* Map in frame buffer */
3508 info->fix.smem_start = addr;
3509 info->screen_base = ioremap(addr, 0x800000);
3510 if (info->screen_base == NULL) {
3511 ret = -ENOMEM;
3512 goto atyfb_setup_generic_fail;
3513 }
3514
Ville Syrjala68962012009-09-22 16:47:01 -07003515 ret = correct_chipset(par);
3516 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517 goto atyfb_setup_generic_fail;
3518#ifdef __i386__
Ville Syrjala68962012009-09-22 16:47:01 -07003519 ret = init_from_bios(par);
3520 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 goto atyfb_setup_generic_fail;
3522#endif
3523 if (!(aty_ld_le32(CRTC_GEN_CNTL, par) & CRTC_EXT_DISP_EN))
3524 par->clk_wr_offset = (inb(R_GENMO) & 0x0CU) >> 2;
3525 else
3526 par->clk_wr_offset = aty_ld_8(CLOCK_CNTL, par) & 0x03U;
3527
3528 /* according to ATI, we should use clock 3 for acelerated mode */
3529 par->clk_wr_offset = 3;
3530
3531 return 0;
3532
3533atyfb_setup_generic_fail:
3534 iounmap(par->ati_regbase);
3535 par->ati_regbase = NULL;
Amol Ladb2a85ae2006-12-08 02:40:14 -08003536 if (info->screen_base) {
3537 iounmap(info->screen_base);
3538 info->screen_base = NULL;
3539 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540 return ret;
3541}
3542
3543#endif /* !__sparc__ */
3544
Ville Syrjala68962012009-09-22 16:47:01 -07003545static int __devinit atyfb_pci_probe(struct pci_dev *pdev,
3546 const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547{
3548 unsigned long addr, res_start, res_size;
3549 struct fb_info *info;
3550 struct resource *rp;
3551 struct atyfb_par *par;
Ville Syrjala6cfafc12008-07-23 21:31:31 -07003552 int rc = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553
3554 /* Enable device in PCI config */
3555 if (pci_enable_device(pdev)) {
3556 PRINTKE("Cannot enable PCI device\n");
3557 return -ENXIO;
3558 }
3559
3560 /* Find which resource to use */
3561 rp = &pdev->resource[0];
3562 if (rp->flags & IORESOURCE_IO)
3563 rp = &pdev->resource[1];
3564 addr = rp->start;
3565 if (!addr)
3566 return -ENXIO;
3567
3568 /* Reserve space */
3569 res_start = rp->start;
3570 res_size = rp->end - rp->start + 1;
Ville Syrjala68962012009-09-22 16:47:01 -07003571 if (!request_mem_region(res_start, res_size, "atyfb"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572 return -EBUSY;
3573
Ville Syrjala68962012009-09-22 16:47:01 -07003574 /* Allocate framebuffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575 info = framebuffer_alloc(sizeof(struct atyfb_par), &pdev->dev);
3576 if (!info) {
3577 PRINTKE("atyfb_pci_probe() can't alloc fb_info\n");
3578 return -ENOMEM;
3579 }
3580 par = info->par;
3581 info->fix = atyfb_fix;
3582 info->device = &pdev->dev;
Ville Syrjala6cfafc12008-07-23 21:31:31 -07003583 par->pci_id = pdev->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584 par->res_start = res_start;
3585 par->res_size = res_size;
3586 par->irq = pdev->irq;
Michael Hanselmann5474c122006-06-25 05:47:08 -07003587 par->pdev = pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588
3589 /* Setup "info" structure */
3590#ifdef __sparc__
3591 rc = atyfb_setup_sparc(pdev, info, addr);
3592#else
3593 rc = atyfb_setup_generic(pdev, info, addr);
3594#endif
3595 if (rc)
3596 goto err_release_mem;
3597
3598 pci_set_drvdata(pdev, info);
3599
3600 /* Init chip & register framebuffer */
Ville Syrjala89c69d22008-07-23 21:31:32 -07003601 rc = aty_init(info);
3602 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603 goto err_release_io;
3604
3605#ifdef __sparc__
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 /*
3607 * Add /dev/fb mmap values.
3608 */
3609 par->mmap_map[0].voff = 0x8000000000000000UL;
3610 par->mmap_map[0].poff = (unsigned long) info->screen_base & PAGE_MASK;
3611 par->mmap_map[0].size = info->fix.smem_len;
3612 par->mmap_map[0].prot_mask = _PAGE_CACHE;
3613 par->mmap_map[0].prot_flag = _PAGE_E;
3614 par->mmap_map[1].voff = par->mmap_map[0].voff + info->fix.smem_len;
3615 par->mmap_map[1].poff = (long)par->ati_regbase & PAGE_MASK;
3616 par->mmap_map[1].size = PAGE_SIZE;
3617 par->mmap_map[1].prot_mask = _PAGE_CACHE;
3618 par->mmap_map[1].prot_flag = _PAGE_E;
3619#endif /* __sparc__ */
3620
Ville Syrjalaeafad222009-06-30 11:41:40 -07003621 mutex_lock(&reboot_lock);
3622 if (!reboot_info)
3623 reboot_info = info;
3624 mutex_unlock(&reboot_lock);
3625
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626 return 0;
3627
3628err_release_io:
3629#ifdef __sparc__
3630 kfree(par->mmap_map);
3631#else
3632 if (par->ati_regbase)
3633 iounmap(par->ati_regbase);
3634 if (info->screen_base)
3635 iounmap(info->screen_base);
3636#endif
3637err_release_mem:
3638 if (par->aux_start)
3639 release_mem_region(par->aux_start, par->aux_size);
3640
3641 release_mem_region(par->res_start, par->res_size);
3642 framebuffer_release(info);
3643
3644 return rc;
3645}
3646
3647#endif /* CONFIG_PCI */
3648
3649#ifdef CONFIG_ATARI
3650
Ville Syrjala5850e0c2006-12-08 02:40:42 -08003651static int __init atyfb_atari_probe(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652{
Al Virocef46b12006-01-12 01:06:13 -08003653 struct atyfb_par *par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654 struct fb_info *info;
3655 int m64_num;
3656 u32 clock_r;
Ville Syrjala4ec3fd72006-12-08 02:40:44 -08003657 int num_found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658
3659 for (m64_num = 0; m64_num < mach64_count; m64_num++) {
3660 if (!phys_vmembase[m64_num] || !phys_size[m64_num] ||
3661 !phys_guiregbase[m64_num]) {
Ville Syrjala68962012009-09-22 16:47:01 -07003662 PRINTKI("phys_*[%d] parameters not set => "
3663 "returning early. \n", m64_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664 continue;
3665 }
3666
3667 info = framebuffer_alloc(sizeof(struct atyfb_par), NULL);
3668 if (!info) {
3669 PRINTKE("atyfb_atari_probe() can't alloc fb_info\n");
3670 return -ENOMEM;
3671 }
3672 par = info->par;
3673
3674 info->fix = atyfb_fix;
3675
3676 par->irq = (unsigned int) -1; /* something invalid */
3677
3678 /*
Ville Syrjala68962012009-09-22 16:47:01 -07003679 * Map the video memory (physical address given)
3680 * to somewhere in the kernel address space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681 */
3682 info->screen_base = ioremap(phys_vmembase[m64_num], phys_size[m64_num]);
3683 info->fix.smem_start = (unsigned long)info->screen_base; /* Fake! */
3684 par->ati_regbase = ioremap(phys_guiregbase[m64_num], 0x10000) +
3685 0xFC00ul;
3686 info->fix.mmio_start = (unsigned long)par->ati_regbase; /* Fake! */
3687
3688 aty_st_le32(CLOCK_CNTL, 0x12345678, par);
3689 clock_r = aty_ld_le32(CLOCK_CNTL, par);
3690
3691 switch (clock_r & 0x003F) {
3692 case 0x12:
3693 par->clk_wr_offset = 3; /* */
3694 break;
3695 case 0x34:
3696 par->clk_wr_offset = 2; /* Medusa ST-IO ISA Adapter etc. */
3697 break;
3698 case 0x16:
3699 par->clk_wr_offset = 1; /* */
3700 break;
3701 case 0x38:
3702 par->clk_wr_offset = 0; /* Panther 1 ISA Adapter (Gerald) */
3703 break;
3704 }
3705
Ville Syrjala4ec3fd72006-12-08 02:40:44 -08003706 /* Fake pci_id for correct_chipset() */
Randy Dunlapfe861752009-02-04 15:12:20 -08003707 switch (aty_ld_le32(CNFG_CHIP_ID, par) & CFG_CHIP_TYPE) {
Ville Syrjala4ec3fd72006-12-08 02:40:44 -08003708 case 0x00d7:
3709 par->pci_id = PCI_CHIP_MACH64GX;
3710 break;
3711 case 0x0057:
3712 par->pci_id = PCI_CHIP_MACH64CX;
3713 break;
3714 default:
3715 break;
3716 }
3717
3718 if (correct_chipset(par) || aty_init(info)) {
3719 iounmap(info->screen_base);
3720 iounmap(par->ati_regbase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721 framebuffer_release(info);
Ville Syrjala4ec3fd72006-12-08 02:40:44 -08003722 } else {
3723 num_found++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724 }
3725 }
Ville Syrjala4ec3fd72006-12-08 02:40:44 -08003726
3727 return num_found ? 0 : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728}
3729
3730#endif /* CONFIG_ATARI */
3731
Ville Syrjalac98959f2006-12-08 02:40:39 -08003732#ifdef CONFIG_PCI
3733
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734static void __devexit atyfb_remove(struct fb_info *info)
3735{
3736 struct atyfb_par *par = (struct atyfb_par *) info->par;
3737
3738 /* restore video mode */
Ville Syrjalaeafad222009-06-30 11:41:40 -07003739 aty_set_crtc(par, &par->saved_crtc);
3740 par->pll_ops->set_pll(info, &par->saved_pll);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741
Richard Purdie37ce69a2007-02-10 14:10:33 +00003742 unregister_framebuffer(info);
3743
Michael Hanselmann5474c122006-06-25 05:47:08 -07003744#ifdef CONFIG_FB_ATY_BACKLIGHT
3745 if (M64_HAS(MOBIL_BUS))
Richard Purdie37ce69a2007-02-10 14:10:33 +00003746 aty_bl_exit(info->bl_dev);
Michael Hanselmann5474c122006-06-25 05:47:08 -07003747#endif
3748
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749#ifdef CONFIG_MTRR
3750 if (par->mtrr_reg >= 0) {
Ville Syrjala68962012009-09-22 16:47:01 -07003751 mtrr_del(par->mtrr_reg, 0, 0);
3752 par->mtrr_reg = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753 }
3754 if (par->mtrr_aper >= 0) {
Ville Syrjala68962012009-09-22 16:47:01 -07003755 mtrr_del(par->mtrr_aper, 0, 0);
3756 par->mtrr_aper = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757 }
3758#endif
3759#ifndef __sparc__
3760 if (par->ati_regbase)
3761 iounmap(par->ati_regbase);
3762 if (info->screen_base)
3763 iounmap(info->screen_base);
3764#ifdef __BIG_ENDIAN
3765 if (info->sprite.addr)
3766 iounmap(info->sprite.addr);
3767#endif
3768#endif
3769#ifdef __sparc__
3770 kfree(par->mmap_map);
3771#endif
3772 if (par->aux_start)
3773 release_mem_region(par->aux_start, par->aux_size);
3774
3775 if (par->res_start)
3776 release_mem_region(par->res_start, par->res_size);
3777
3778 framebuffer_release(info);
3779}
3780
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781
3782static void __devexit atyfb_pci_remove(struct pci_dev *pdev)
3783{
3784 struct fb_info *info = pci_get_drvdata(pdev);
3785
Ville Syrjalaeafad222009-06-30 11:41:40 -07003786 mutex_lock(&reboot_lock);
3787 if (reboot_info == info)
3788 reboot_info = NULL;
3789 mutex_unlock(&reboot_lock);
3790
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791 atyfb_remove(info);
3792}
3793
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794static struct pci_device_id atyfb_pci_tbl[] = {
Ville Syrjala6cfafc12008-07-23 21:31:31 -07003795#ifdef CONFIG_FB_ATY_GX
3796 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64GX) },
3797 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64CX) },
3798#endif /* CONFIG_FB_ATY_GX */
3799
3800#ifdef CONFIG_FB_ATY_CT
3801 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64CT) },
3802 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64ET) },
3803
3804 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64LT) },
3805
3806 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64VT) },
3807 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64GT) },
3808
3809 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64VU) },
3810 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64GU) },
3811
3812 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64LG) },
3813
3814 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64VV) },
3815
3816 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64GV) },
3817 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64GW) },
3818 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64GY) },
3819 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64GZ) },
3820
3821 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64GB) },
3822 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64GD) },
3823 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64GI) },
3824 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64GP) },
3825 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64GQ) },
3826
3827 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64LB) },
3828 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64LD) },
3829 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64LI) },
3830 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64LP) },
3831 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64LQ) },
3832
3833 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64GM) },
3834 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64GN) },
3835 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64GO) },
3836 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64GL) },
3837 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64GR) },
3838 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64GS) },
3839
3840 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64LM) },
3841 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64LN) },
3842 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64LR) },
3843 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_CHIP_MACH64LS) },
3844#endif /* CONFIG_FB_ATY_CT */
3845 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846};
3847
Ville Syrjala6cfafc12008-07-23 21:31:31 -07003848MODULE_DEVICE_TABLE(pci, atyfb_pci_tbl);
3849
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850static struct pci_driver atyfb_driver = {
3851 .name = "atyfb",
3852 .id_table = atyfb_pci_tbl,
3853 .probe = atyfb_pci_probe,
3854 .remove = __devexit_p(atyfb_pci_remove),
3855#ifdef CONFIG_PM
3856 .suspend = atyfb_pci_suspend,
3857 .resume = atyfb_pci_resume,
3858#endif /* CONFIG_PM */
3859};
3860
3861#endif /* CONFIG_PCI */
3862
3863#ifndef MODULE
Ville Syrjala5850e0c2006-12-08 02:40:42 -08003864static int __init atyfb_setup(char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865{
3866 char *this_opt;
3867
3868 if (!options || !*options)
3869 return 0;
3870
3871 while ((this_opt = strsep(&options, ",")) != NULL) {
3872 if (!strncmp(this_opt, "noaccel", 7)) {
3873 noaccel = 1;
3874#ifdef CONFIG_MTRR
3875 } else if (!strncmp(this_opt, "nomtrr", 6)) {
3876 nomtrr = 1;
3877#endif
3878 } else if (!strncmp(this_opt, "vram:", 5))
3879 vram = simple_strtoul(this_opt + 5, NULL, 0);
3880 else if (!strncmp(this_opt, "pll:", 4))
3881 pll = simple_strtoul(this_opt + 4, NULL, 0);
3882 else if (!strncmp(this_opt, "mclk:", 5))
3883 mclk = simple_strtoul(this_opt + 5, NULL, 0);
3884 else if (!strncmp(this_opt, "xclk:", 5))
3885 xclk = simple_strtoul(this_opt+5, NULL, 0);
3886 else if (!strncmp(this_opt, "comp_sync:", 10))
3887 comp_sync = simple_strtoul(this_opt+10, NULL, 0);
Richard Purdie202d4e62007-03-03 17:43:52 +00003888 else if (!strncmp(this_opt, "backlight:", 10))
3889 backlight = simple_strtoul(this_opt+10, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890#ifdef CONFIG_PPC
3891 else if (!strncmp(this_opt, "vmode:", 6)) {
3892 unsigned int vmode =
3893 simple_strtoul(this_opt + 6, NULL, 0);
3894 if (vmode > 0 && vmode <= VMODE_MAX)
3895 default_vmode = vmode;
3896 } else if (!strncmp(this_opt, "cmode:", 6)) {
3897 unsigned int cmode =
3898 simple_strtoul(this_opt + 6, NULL, 0);
3899 switch (cmode) {
3900 case 0:
3901 case 8:
3902 default_cmode = CMODE_8;
3903 break;
3904 case 15:
3905 case 16:
3906 default_cmode = CMODE_16;
3907 break;
3908 case 24:
3909 case 32:
3910 default_cmode = CMODE_32;
3911 break;
3912 }
3913 }
3914#endif
3915#ifdef CONFIG_ATARI
3916 /*
3917 * Why do we need this silly Mach64 argument?
3918 * We are already here because of mach64= so its redundant.
3919 */
3920 else if (MACH_IS_ATARI
3921 && (!strncmp(this_opt, "Mach64:", 7))) {
3922 static unsigned char m64_num;
3923 static char mach64_str[80];
3924 strlcpy(mach64_str, this_opt + 7, sizeof(mach64_str));
3925 if (!store_video_par(mach64_str, m64_num)) {
3926 m64_num++;
3927 mach64_count = m64_num;
3928 }
3929 }
3930#endif
3931 else
3932 mode = this_opt;
3933 }
3934 return 0;
3935}
3936#endif /* MODULE */
3937
Ville Syrjalaeafad222009-06-30 11:41:40 -07003938static int atyfb_reboot_notify(struct notifier_block *nb,
3939 unsigned long code, void *unused)
3940{
3941 struct atyfb_par *par;
3942
3943 if (code != SYS_RESTART)
3944 return NOTIFY_DONE;
3945
3946 mutex_lock(&reboot_lock);
3947
3948 if (!reboot_info)
3949 goto out;
3950
3951 if (!lock_fb_info(reboot_info))
3952 goto out;
3953
3954 par = reboot_info->par;
3955
3956 /*
3957 * HP OmniBook 500's BIOS doesn't like the state of the
3958 * hardware after atyfb has been used. Restore the hardware
3959 * to the original state to allow successful reboots.
3960 */
3961 aty_set_crtc(par, &par->saved_crtc);
3962 par->pll_ops->set_pll(reboot_info, &par->saved_pll);
3963
3964 unlock_fb_info(reboot_info);
3965 out:
3966 mutex_unlock(&reboot_lock);
3967
3968 return NOTIFY_DONE;
3969}
3970
3971static struct notifier_block atyfb_reboot_notifier = {
3972 .notifier_call = atyfb_reboot_notify,
3973};
3974
3975static const struct dmi_system_id atyfb_reboot_ids[] = {
3976 {
3977 .ident = "HP OmniBook 500",
3978 .matches = {
3979 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
3980 DMI_MATCH(DMI_PRODUCT_NAME, "HP OmniBook PC"),
3981 DMI_MATCH(DMI_PRODUCT_VERSION, "HP OmniBook 500 FA"),
3982 },
3983 },
3984
3985 { }
3986};
3987
Ville Syrjala5850e0c2006-12-08 02:40:42 -08003988static int __init atyfb_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989{
Ville Syrjala68962012009-09-22 16:47:01 -07003990 int err1 = 1, err2 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991#ifndef MODULE
Ville Syrjala68962012009-09-22 16:47:01 -07003992 char *option = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993
Ville Syrjala68962012009-09-22 16:47:01 -07003994 if (fb_get_options("atyfb", &option))
3995 return -ENODEV;
3996 atyfb_setup(option);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997#endif
3998
Roman Zippel078517e2006-06-23 02:04:53 -07003999#ifdef CONFIG_PCI
Ville Syrjala68962012009-09-22 16:47:01 -07004000 err1 = pci_register_driver(&atyfb_driver);
Roman Zippel078517e2006-06-23 02:04:53 -07004001#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002#ifdef CONFIG_ATARI
Ville Syrjala68962012009-09-22 16:47:01 -07004003 err2 = atyfb_atari_probe();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004#endif
Antonino A. Daplasc1cc53b2006-10-03 01:14:51 -07004005
Ville Syrjala68962012009-09-22 16:47:01 -07004006 if (err1 && err2)
4007 return -ENODEV;
Ville Syrjalaeafad222009-06-30 11:41:40 -07004008
Ville Syrjala68962012009-09-22 16:47:01 -07004009 if (dmi_check_system(atyfb_reboot_ids))
4010 register_reboot_notifier(&atyfb_reboot_notifier);
Ville Syrjalaeafad222009-06-30 11:41:40 -07004011
Ville Syrjala68962012009-09-22 16:47:01 -07004012 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013}
4014
4015static void __exit atyfb_exit(void)
4016{
Ville Syrjalaeafad222009-06-30 11:41:40 -07004017 if (dmi_check_system(atyfb_reboot_ids))
4018 unregister_reboot_notifier(&atyfb_reboot_notifier);
4019
Roman Zippel078517e2006-06-23 02:04:53 -07004020#ifdef CONFIG_PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021 pci_unregister_driver(&atyfb_driver);
Roman Zippel078517e2006-06-23 02:04:53 -07004022#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023}
4024
4025module_init(atyfb_init);
4026module_exit(atyfb_exit);
4027
4028MODULE_DESCRIPTION("FBDev driver for ATI Mach64 cards");
4029MODULE_LICENSE("GPL");
4030module_param(noaccel, bool, 0);
4031MODULE_PARM_DESC(noaccel, "bool: disable acceleration");
4032module_param(vram, int, 0);
4033MODULE_PARM_DESC(vram, "int: override size of video ram");
4034module_param(pll, int, 0);
4035MODULE_PARM_DESC(pll, "int: override video clock");
4036module_param(mclk, int, 0);
4037MODULE_PARM_DESC(mclk, "int: override memory clock");
4038module_param(xclk, int, 0);
4039MODULE_PARM_DESC(xclk, "int: override accelerated engine clock");
4040module_param(comp_sync, int, 0);
Ville Syrjala68962012009-09-22 16:47:01 -07004041MODULE_PARM_DESC(comp_sync, "Set composite sync signal to low (0) or high (1)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042module_param(mode, charp, 0);
4043MODULE_PARM_DESC(mode, "Specify resolution as \"<xres>x<yres>[-<bpp>][@<refresh>]\" ");
4044#ifdef CONFIG_MTRR
4045module_param(nomtrr, bool, 0);
4046MODULE_PARM_DESC(nomtrr, "bool: disable use of MTRR registers");
4047#endif