2 * linux/drivers/video/pmagb-b-fb.c
4 * PMAGB-B TURBOchannel Smart Frame Buffer (SFB) card support,
6 * "HP300 Topcat framebuffer support (derived from macfb of all things)
7 * Phil Blundell <philb@gnu.org> 1998", the original code can be
8 * found in the file hpfb.c in the same directory.
10 * DECstation related code Copyright (C) 1999, 2000, 2001 by
11 * Michael Engel <engel@unix-ag.org>,
12 * Karsten Merker <merker@linuxtag.org> and
14 * Copyright (c) 2005 Maciej W. Rozycki
16 * This file is subject to the terms and conditions of the GNU General
17 * Public License. See the file COPYING in the main directory of this
18 * archive for more details.
21 #include <linux/compiler.h>
22 #include <linux/delay.h>
23 #include <linux/errno.h>
25 #include <linux/init.h>
26 #include <linux/kernel.h>
27 #include <linux/module.h>
28 #include <linux/types.h>
31 #include <asm/system.h>
33 #include <asm/dec/tc.h>
35 #include <video/pmagb-b-fb.h>
40 volatile void __iomem
*mmio
;
41 volatile void __iomem
*smem
;
42 volatile u32 __iomem
*sfb
;
43 volatile u32 __iomem
*dac
;
50 static struct fb_info
*root_pmagbbfb_dev
;
52 static struct fb_var_screeninfo pmagbbfb_defined __initdata
= {
57 .activate
= FB_ACTIVATE_NOW
,
60 .accel_flags
= FB_ACCEL_NONE
,
61 .sync
= FB_SYNC_ON_GREEN
,
62 .vmode
= FB_VMODE_NONINTERLACED
,
65 static struct fb_fix_screeninfo pmagbbfb_fix __initdata
= {
67 .smem_len
= (2048 * 1024),
68 .type
= FB_TYPE_PACKED_PIXELS
,
69 .visual
= FB_VISUAL_PSEUDOCOLOR
,
70 .mmio_len
= PMAGB_B_FBMEM
,
74 static inline void sfb_write(struct pmagbbfb_par
*par
, unsigned int reg
, u32 v
)
76 writel(v
, par
->sfb
+ reg
/ 4);
79 static inline u32
sfb_read(struct pmagbbfb_par
*par
, unsigned int reg
)
81 return readl(par
->sfb
+ reg
/ 4);
84 static inline void dac_write(struct pmagbbfb_par
*par
, unsigned int reg
, u8 v
)
86 writeb(v
, par
->dac
+ reg
/ 4);
89 static inline u8
dac_read(struct pmagbbfb_par
*par
, unsigned int reg
)
91 return readb(par
->dac
+ reg
/ 4);
94 static inline void gp0_write(struct pmagbbfb_par
*par
, u32 v
)
96 writel(v
, par
->mmio
+ PMAGB_B_GP0
);
103 static int pmagbbfb_setcolreg(unsigned int regno
, unsigned int red
,
104 unsigned int green
, unsigned int blue
,
105 unsigned int transp
, struct fb_info
*info
)
107 struct pmagbbfb_par
*par
= info
->par
;
109 BUG_ON(regno
>= info
->cmap
.len
);
111 red
>>= 8; /* The cmap fields are 16 bits */
112 green
>>= 8; /* wide, but the hardware colormap */
113 blue
>>= 8; /* registers are only 8 bits wide */
116 dac_write(par
, BT459_ADDR_LO
, regno
);
117 dac_write(par
, BT459_ADDR_HI
, 0x00);
119 dac_write(par
, BT459_CMAP
, red
);
121 dac_write(par
, BT459_CMAP
, green
);
123 dac_write(par
, BT459_CMAP
, blue
);
128 static struct fb_ops pmagbbfb_ops
= {
129 .owner
= THIS_MODULE
,
130 .fb_setcolreg
= pmagbbfb_setcolreg
,
131 .fb_fillrect
= cfb_fillrect
,
132 .fb_copyarea
= cfb_copyarea
,
133 .fb_imageblit
= cfb_imageblit
,
138 * Turn the hardware cursor off.
140 static void __init
pmagbbfb_erase_cursor(struct fb_info
*info
)
142 struct pmagbbfb_par
*par
= info
->par
;
145 dac_write(par
, BT459_ADDR_LO
, 0x00);
146 dac_write(par
, BT459_ADDR_HI
, 0x03);
148 dac_write(par
, BT459_DATA
, 0x00);
152 * Set up screen parameters.
154 static void __init
pmagbbfb_screen_setup(struct fb_info
*info
)
156 struct pmagbbfb_par
*par
= info
->par
;
158 info
->var
.xres
= ((sfb_read(par
, SFB_REG_VID_HOR
) >>
159 SFB_VID_HOR_PIX_SHIFT
) & SFB_VID_HOR_PIX_MASK
) * 4;
160 info
->var
.xres_virtual
= info
->var
.xres
;
161 info
->var
.yres
= (sfb_read(par
, SFB_REG_VID_VER
) >>
162 SFB_VID_VER_SL_SHIFT
) & SFB_VID_VER_SL_MASK
;
163 info
->var
.yres_virtual
= info
->var
.yres
;
164 info
->var
.left_margin
= ((sfb_read(par
, SFB_REG_VID_HOR
) >>
165 SFB_VID_HOR_BP_SHIFT
) &
166 SFB_VID_HOR_BP_MASK
) * 4;
167 info
->var
.right_margin
= ((sfb_read(par
, SFB_REG_VID_HOR
) >>
168 SFB_VID_HOR_FP_SHIFT
) &
169 SFB_VID_HOR_FP_MASK
) * 4;
170 info
->var
.upper_margin
= (sfb_read(par
, SFB_REG_VID_VER
) >>
171 SFB_VID_VER_BP_SHIFT
) & SFB_VID_VER_BP_MASK
;
172 info
->var
.lower_margin
= (sfb_read(par
, SFB_REG_VID_VER
) >>
173 SFB_VID_VER_FP_SHIFT
) & SFB_VID_VER_FP_MASK
;
174 info
->var
.hsync_len
= ((sfb_read(par
, SFB_REG_VID_HOR
) >>
175 SFB_VID_HOR_SYN_SHIFT
) &
176 SFB_VID_HOR_SYN_MASK
) * 4;
177 info
->var
.vsync_len
= (sfb_read(par
, SFB_REG_VID_VER
) >>
178 SFB_VID_VER_SYN_SHIFT
) & SFB_VID_VER_SYN_MASK
;
180 info
->fix
.line_length
= info
->var
.xres
;
184 * Determine oscillator configuration.
186 static void __init
pmagbbfb_osc_setup(struct fb_info
*info
)
188 static unsigned int pmagbbfb_freqs
[] __initdata
= {
189 130808, 119843, 104000, 92980, 74370, 72800,
190 69197, 66000, 65000, 50350, 36000, 32000, 25175
192 struct pmagbbfb_par
*par
= info
->par
;
193 u32 count0
= 8, count1
= 8, counttc
= 16 * 256 + 8;
194 u32 freq0
, freq1
, freqtc
= get_tc_speed() / 250;
197 gp0_write(par
, 0); /* select Osc0 */
198 for (j
= 0; j
< 16; j
++) {
200 sfb_write(par
, SFB_REG_TCCLK_COUNT
, 0);
202 for (i
= 0; i
< 100; i
++) { /* nominally max. 20.5us */
203 if (sfb_read(par
, SFB_REG_TCCLK_COUNT
) == 0)
207 count0
+= sfb_read(par
, SFB_REG_VIDCLK_COUNT
);
210 gp0_write(par
, 1); /* select Osc1 */
211 for (j
= 0; j
< 16; j
++) {
213 sfb_write(par
, SFB_REG_TCCLK_COUNT
, 0);
215 for (i
= 0; i
< 100; i
++) { /* nominally max. 20.5us */
216 if (sfb_read(par
, SFB_REG_TCCLK_COUNT
) == 0)
220 count1
+= sfb_read(par
, SFB_REG_VIDCLK_COUNT
);
223 freq0
= (freqtc
* count0
+ counttc
/ 2) / counttc
;
225 if (freq0
>= pmagbbfb_freqs
[0] - (pmagbbfb_freqs
[0] + 32) / 64 &&
226 freq0
<= pmagbbfb_freqs
[0] + (pmagbbfb_freqs
[0] + 32) / 64)
227 par
->osc0
= pmagbbfb_freqs
[0];
229 freq1
= (par
->osc0
* count1
+ count0
/ 2) / count0
;
231 for (i
= 0; i
< ARRAY_SIZE(pmagbbfb_freqs
); i
++)
232 if (freq1
>= pmagbbfb_freqs
[i
] -
233 (pmagbbfb_freqs
[i
] + 128) / 256 &&
234 freq1
<= pmagbbfb_freqs
[i
] +
235 (pmagbbfb_freqs
[i
] + 128) / 256) {
236 par
->osc1
= pmagbbfb_freqs
[i
];
240 if (par
->osc0
- par
->osc1
<= (par
->osc0
+ par
->osc1
+ 256) / 512 ||
241 par
->osc1
- par
->osc0
<= (par
->osc0
+ par
->osc1
+ 256) / 512)
244 gp0_write(par
, par
->osc1
!= 0); /* reselect OscX */
246 info
->var
.pixclock
= par
->osc1
?
247 (1000000000 + par
->osc1
/ 2) / par
->osc1
:
248 (1000000000 + par
->osc0
/ 2) / par
->osc0
;
252 static int __init
pmagbbfb_init_one(int slot
)
254 char freq0
[12], freq1
[12];
255 struct fb_info
*info
;
256 struct pmagbbfb_par
*par
;
257 unsigned long base_addr
;
260 info
= framebuffer_alloc(sizeof(struct pmagbbfb_par
), NULL
);
266 claim_tc_card(par
->slot
);
268 base_addr
= get_tc_base_addr(par
->slot
);
270 par
->next
= root_pmagbbfb_dev
;
271 root_pmagbbfb_dev
= info
;
273 if (fb_alloc_cmap(&info
->cmap
, 256, 0) < 0)
276 info
->fbops
= &pmagbbfb_ops
;
277 info
->fix
= pmagbbfb_fix
;
278 info
->var
= pmagbbfb_defined
;
279 info
->flags
= FBINFO_DEFAULT
;
281 /* MMIO mapping setup. */
282 info
->fix
.mmio_start
= base_addr
;
283 par
->mmio
= ioremap_nocache(info
->fix
.mmio_start
, info
->fix
.mmio_len
);
286 par
->sfb
= par
->mmio
+ PMAGB_B_SFB
;
287 par
->dac
= par
->mmio
+ PMAGB_B_BT459
;
289 /* Frame buffer mapping setup. */
290 info
->fix
.smem_start
= base_addr
+ PMAGB_B_FBMEM
;
291 par
->smem
= ioremap_nocache(info
->fix
.smem_start
, info
->fix
.smem_len
);
294 vid_base
= sfb_read(par
, SFB_REG_VID_BASE
);
295 info
->screen_base
= (void __iomem
*)par
->smem
+ vid_base
* 0x1000;
296 info
->screen_size
= info
->fix
.smem_len
- 2 * vid_base
* 0x1000;
298 pmagbbfb_erase_cursor(info
);
299 pmagbbfb_screen_setup(info
);
300 pmagbbfb_osc_setup(info
);
302 if (register_framebuffer(info
) < 0)
305 snprintf(freq0
, sizeof(freq0
), "%u.%03uMHz",
306 par
->osc0
/ 1000, par
->osc0
% 1000);
307 snprintf(freq1
, sizeof(freq1
), "%u.%03uMHz",
308 par
->osc1
/ 1000, par
->osc1
% 1000);
310 pr_info("fb%d: %s frame buffer device in slot %d\n",
311 info
->node
, info
->fix
.id
, par
->slot
);
312 pr_info("fb%d: Osc0: %s, Osc1: %s, Osc%u selected\n",
313 info
->node
, freq0
, par
->osc1
? freq1
: "disabled",
326 fb_dealloc_cmap(&info
->cmap
);
329 root_pmagbbfb_dev
= par
->next
;
330 release_tc_card(par
->slot
);
331 framebuffer_release(info
);
335 static void __exit
pmagbbfb_exit_one(void)
337 struct fb_info
*info
= root_pmagbbfb_dev
;
338 struct pmagbbfb_par
*par
= info
->par
;
340 unregister_framebuffer(info
);
343 fb_dealloc_cmap(&info
->cmap
);
344 root_pmagbbfb_dev
= par
->next
;
345 release_tc_card(par
->slot
);
346 framebuffer_release(info
);
351 * Initialise the framebuffer.
353 static int __init
pmagbbfb_init(void)
358 if (fb_get_options("pmagbbfb", NULL
))
361 while ((slot
= search_tc_card("PMAGB-BA")) >= 0) {
362 if (pmagbbfb_init_one(slot
) < 0)
366 return (count
> 0) ? 0 : -ENXIO
;
369 static void __exit
pmagbbfb_exit(void)
371 while (root_pmagbbfb_dev
)
376 module_init(pmagbbfb_init
);
377 module_exit(pmagbbfb_exit
);
379 MODULE_LICENSE("GPL");