drm/radeon/kms: use udelay for short delays
[pandora-kernel.git] / drivers / gpu / drm / radeon / atom.c
1 /*
2  * Copyright 2008 Advanced Micro Devices, Inc.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20  * OTHER DEALINGS IN THE SOFTWARE.
21  *
22  * Author: Stanislaw Skowronek
23  */
24
25 #include <linux/module.h>
26 #include <linux/sched.h>
27
28 #define ATOM_DEBUG
29
30 #include "atom.h"
31 #include "atom-names.h"
32 #include "atom-bits.h"
33
34 #define ATOM_COND_ABOVE         0
35 #define ATOM_COND_ABOVEOREQUAL  1
36 #define ATOM_COND_ALWAYS        2
37 #define ATOM_COND_BELOW         3
38 #define ATOM_COND_BELOWOREQUAL  4
39 #define ATOM_COND_EQUAL         5
40 #define ATOM_COND_NOTEQUAL      6
41
42 #define ATOM_PORT_ATI   0
43 #define ATOM_PORT_PCI   1
44 #define ATOM_PORT_SYSIO 2
45
46 #define ATOM_UNIT_MICROSEC      0
47 #define ATOM_UNIT_MILLISEC      1
48
49 #define PLL_INDEX       2
50 #define PLL_DATA        3
51
52 typedef struct {
53         struct atom_context *ctx;
54
55         uint32_t *ps, *ws;
56         int ps_shift;
57         uint16_t start;
58 } atom_exec_context;
59
60 int atom_debug = 0;
61 static void atom_execute_table_locked(struct atom_context *ctx, int index, uint32_t * params);
62 void atom_execute_table(struct atom_context *ctx, int index, uint32_t * params);
63
64 static uint32_t atom_arg_mask[8] =
65     { 0xFFFFFFFF, 0xFFFF, 0xFFFF00, 0xFFFF0000, 0xFF, 0xFF00, 0xFF0000,
66 0xFF000000 };
67 static int atom_arg_shift[8] = { 0, 0, 8, 16, 0, 8, 16, 24 };
68
69 static int atom_dst_to_src[8][4] = {
70         /* translate destination alignment field to the source alignment encoding */
71         {0, 0, 0, 0},
72         {1, 2, 3, 0},
73         {1, 2, 3, 0},
74         {1, 2, 3, 0},
75         {4, 5, 6, 7},
76         {4, 5, 6, 7},
77         {4, 5, 6, 7},
78         {4, 5, 6, 7},
79 };
80 static int atom_def_dst[8] = { 0, 0, 1, 2, 0, 1, 2, 3 };
81
82 static int debug_depth = 0;
83 #ifdef ATOM_DEBUG
84 static void debug_print_spaces(int n)
85 {
86         while (n--)
87                 printk("   ");
88 }
89
90 #define DEBUG(...) do if (atom_debug) { printk(KERN_DEBUG __VA_ARGS__); } while (0)
91 #define SDEBUG(...) do if (atom_debug) { printk(KERN_DEBUG); debug_print_spaces(debug_depth); printk(__VA_ARGS__); } while (0)
92 #else
93 #define DEBUG(...) do { } while (0)
94 #define SDEBUG(...) do { } while (0)
95 #endif
96
97 static uint32_t atom_iio_execute(struct atom_context *ctx, int base,
98                                  uint32_t index, uint32_t data)
99 {
100         uint32_t temp = 0xCDCDCDCD;
101         while (1)
102                 switch (CU8(base)) {
103                 case ATOM_IIO_NOP:
104                         base++;
105                         break;
106                 case ATOM_IIO_READ:
107                         temp = ctx->card->reg_read(ctx->card, CU16(base + 1));
108                         base += 3;
109                         break;
110                 case ATOM_IIO_WRITE:
111                         (void)ctx->card->reg_read(ctx->card, CU16(base + 1));
112                         ctx->card->reg_write(ctx->card, CU16(base + 1), temp);
113                         base += 3;
114                         break;
115                 case ATOM_IIO_CLEAR:
116                         temp &=
117                             ~((0xFFFFFFFF >> (32 - CU8(base + 1))) <<
118                               CU8(base + 2));
119                         base += 3;
120                         break;
121                 case ATOM_IIO_SET:
122                         temp |=
123                             (0xFFFFFFFF >> (32 - CU8(base + 1))) << CU8(base +
124                                                                         2);
125                         base += 3;
126                         break;
127                 case ATOM_IIO_MOVE_INDEX:
128                         temp &=
129                             ~((0xFFFFFFFF >> (32 - CU8(base + 1))) <<
130                               CU8(base + 2));
131                         temp |=
132                             ((index >> CU8(base + 2)) &
133                              (0xFFFFFFFF >> (32 - CU8(base + 1)))) << CU8(base +
134                                                                           3);
135                         base += 4;
136                         break;
137                 case ATOM_IIO_MOVE_DATA:
138                         temp &=
139                             ~((0xFFFFFFFF >> (32 - CU8(base + 1))) <<
140                               CU8(base + 2));
141                         temp |=
142                             ((data >> CU8(base + 2)) &
143                              (0xFFFFFFFF >> (32 - CU8(base + 1)))) << CU8(base +
144                                                                           3);
145                         base += 4;
146                         break;
147                 case ATOM_IIO_MOVE_ATTR:
148                         temp &=
149                             ~((0xFFFFFFFF >> (32 - CU8(base + 1))) <<
150                               CU8(base + 2));
151                         temp |=
152                             ((ctx->
153                               io_attr >> CU8(base + 2)) & (0xFFFFFFFF >> (32 -
154                                                                           CU8
155                                                                           (base
156                                                                            +
157                                                                            1))))
158                             << CU8(base + 3);
159                         base += 4;
160                         break;
161                 case ATOM_IIO_END:
162                         return temp;
163                 default:
164                         printk(KERN_INFO "Unknown IIO opcode.\n");
165                         return 0;
166                 }
167 }
168
169 static uint32_t atom_get_src_int(atom_exec_context *ctx, uint8_t attr,
170                                  int *ptr, uint32_t *saved, int print)
171 {
172         uint32_t idx, val = 0xCDCDCDCD, align, arg;
173         struct atom_context *gctx = ctx->ctx;
174         arg = attr & 7;
175         align = (attr >> 3) & 7;
176         switch (arg) {
177         case ATOM_ARG_REG:
178                 idx = U16(*ptr);
179                 (*ptr) += 2;
180                 if (print)
181                         DEBUG("REG[0x%04X]", idx);
182                 idx += gctx->reg_block;
183                 switch (gctx->io_mode) {
184                 case ATOM_IO_MM:
185                         val = gctx->card->reg_read(gctx->card, idx);
186                         break;
187                 case ATOM_IO_PCI:
188                         printk(KERN_INFO
189                                "PCI registers are not implemented.\n");
190                         return 0;
191                 case ATOM_IO_SYSIO:
192                         printk(KERN_INFO
193                                "SYSIO registers are not implemented.\n");
194                         return 0;
195                 default:
196                         if (!(gctx->io_mode & 0x80)) {
197                                 printk(KERN_INFO "Bad IO mode.\n");
198                                 return 0;
199                         }
200                         if (!gctx->iio[gctx->io_mode & 0x7F]) {
201                                 printk(KERN_INFO
202                                        "Undefined indirect IO read method %d.\n",
203                                        gctx->io_mode & 0x7F);
204                                 return 0;
205                         }
206                         val =
207                             atom_iio_execute(gctx,
208                                              gctx->iio[gctx->io_mode & 0x7F],
209                                              idx, 0);
210                 }
211                 break;
212         case ATOM_ARG_PS:
213                 idx = U8(*ptr);
214                 (*ptr)++;
215                 val = le32_to_cpu(ctx->ps[idx]);
216                 if (print)
217                         DEBUG("PS[0x%02X,0x%04X]", idx, val);
218                 break;
219         case ATOM_ARG_WS:
220                 idx = U8(*ptr);
221                 (*ptr)++;
222                 if (print)
223                         DEBUG("WS[0x%02X]", idx);
224                 switch (idx) {
225                 case ATOM_WS_QUOTIENT:
226                         val = gctx->divmul[0];
227                         break;
228                 case ATOM_WS_REMAINDER:
229                         val = gctx->divmul[1];
230                         break;
231                 case ATOM_WS_DATAPTR:
232                         val = gctx->data_block;
233                         break;
234                 case ATOM_WS_SHIFT:
235                         val = gctx->shift;
236                         break;
237                 case ATOM_WS_OR_MASK:
238                         val = 1 << gctx->shift;
239                         break;
240                 case ATOM_WS_AND_MASK:
241                         val = ~(1 << gctx->shift);
242                         break;
243                 case ATOM_WS_FB_WINDOW:
244                         val = gctx->fb_base;
245                         break;
246                 case ATOM_WS_ATTRIBUTES:
247                         val = gctx->io_attr;
248                         break;
249                 case ATOM_WS_REGPTR:
250                         val = gctx->reg_block;
251                         break;
252                 default:
253                         val = ctx->ws[idx];
254                 }
255                 break;
256         case ATOM_ARG_ID:
257                 idx = U16(*ptr);
258                 (*ptr) += 2;
259                 if (print) {
260                         if (gctx->data_block)
261                                 DEBUG("ID[0x%04X+%04X]", idx, gctx->data_block);
262                         else
263                                 DEBUG("ID[0x%04X]", idx);
264                 }
265                 val = U32(idx + gctx->data_block);
266                 break;
267         case ATOM_ARG_FB:
268                 idx = U8(*ptr);
269                 (*ptr)++;
270                 val = gctx->scratch[((gctx->fb_base + idx) / 4)];
271                 if (print)
272                         DEBUG("FB[0x%02X]", idx);
273                 break;
274         case ATOM_ARG_IMM:
275                 switch (align) {
276                 case ATOM_SRC_DWORD:
277                         val = U32(*ptr);
278                         (*ptr) += 4;
279                         if (print)
280                                 DEBUG("IMM 0x%08X\n", val);
281                         return val;
282                 case ATOM_SRC_WORD0:
283                 case ATOM_SRC_WORD8:
284                 case ATOM_SRC_WORD16:
285                         val = U16(*ptr);
286                         (*ptr) += 2;
287                         if (print)
288                                 DEBUG("IMM 0x%04X\n", val);
289                         return val;
290                 case ATOM_SRC_BYTE0:
291                 case ATOM_SRC_BYTE8:
292                 case ATOM_SRC_BYTE16:
293                 case ATOM_SRC_BYTE24:
294                         val = U8(*ptr);
295                         (*ptr)++;
296                         if (print)
297                                 DEBUG("IMM 0x%02X\n", val);
298                         return val;
299                 }
300                 return 0;
301         case ATOM_ARG_PLL:
302                 idx = U8(*ptr);
303                 (*ptr)++;
304                 if (print)
305                         DEBUG("PLL[0x%02X]", idx);
306                 val = gctx->card->pll_read(gctx->card, idx);
307                 break;
308         case ATOM_ARG_MC:
309                 idx = U8(*ptr);
310                 (*ptr)++;
311                 if (print)
312                         DEBUG("MC[0x%02X]", idx);
313                 val = gctx->card->mc_read(gctx->card, idx);
314                 break;
315         }
316         if (saved)
317                 *saved = val;
318         val &= atom_arg_mask[align];
319         val >>= atom_arg_shift[align];
320         if (print)
321                 switch (align) {
322                 case ATOM_SRC_DWORD:
323                         DEBUG(".[31:0] -> 0x%08X\n", val);
324                         break;
325                 case ATOM_SRC_WORD0:
326                         DEBUG(".[15:0] -> 0x%04X\n", val);
327                         break;
328                 case ATOM_SRC_WORD8:
329                         DEBUG(".[23:8] -> 0x%04X\n", val);
330                         break;
331                 case ATOM_SRC_WORD16:
332                         DEBUG(".[31:16] -> 0x%04X\n", val);
333                         break;
334                 case ATOM_SRC_BYTE0:
335                         DEBUG(".[7:0] -> 0x%02X\n", val);
336                         break;
337                 case ATOM_SRC_BYTE8:
338                         DEBUG(".[15:8] -> 0x%02X\n", val);
339                         break;
340                 case ATOM_SRC_BYTE16:
341                         DEBUG(".[23:16] -> 0x%02X\n", val);
342                         break;
343                 case ATOM_SRC_BYTE24:
344                         DEBUG(".[31:24] -> 0x%02X\n", val);
345                         break;
346                 }
347         return val;
348 }
349
350 static void atom_skip_src_int(atom_exec_context *ctx, uint8_t attr, int *ptr)
351 {
352         uint32_t align = (attr >> 3) & 7, arg = attr & 7;
353         switch (arg) {
354         case ATOM_ARG_REG:
355         case ATOM_ARG_ID:
356                 (*ptr) += 2;
357                 break;
358         case ATOM_ARG_PLL:
359         case ATOM_ARG_MC:
360         case ATOM_ARG_PS:
361         case ATOM_ARG_WS:
362         case ATOM_ARG_FB:
363                 (*ptr)++;
364                 break;
365         case ATOM_ARG_IMM:
366                 switch (align) {
367                 case ATOM_SRC_DWORD:
368                         (*ptr) += 4;
369                         return;
370                 case ATOM_SRC_WORD0:
371                 case ATOM_SRC_WORD8:
372                 case ATOM_SRC_WORD16:
373                         (*ptr) += 2;
374                         return;
375                 case ATOM_SRC_BYTE0:
376                 case ATOM_SRC_BYTE8:
377                 case ATOM_SRC_BYTE16:
378                 case ATOM_SRC_BYTE24:
379                         (*ptr)++;
380                         return;
381                 }
382                 return;
383         }
384 }
385
386 static uint32_t atom_get_src(atom_exec_context *ctx, uint8_t attr, int *ptr)
387 {
388         return atom_get_src_int(ctx, attr, ptr, NULL, 1);
389 }
390
391 static uint32_t atom_get_src_direct(atom_exec_context *ctx, uint8_t align, int *ptr)
392 {
393         uint32_t val = 0xCDCDCDCD;
394
395         switch (align) {
396         case ATOM_SRC_DWORD:
397                 val = U32(*ptr);
398                 (*ptr) += 4;
399                 break;
400         case ATOM_SRC_WORD0:
401         case ATOM_SRC_WORD8:
402         case ATOM_SRC_WORD16:
403                 val = U16(*ptr);
404                 (*ptr) += 2;
405                 break;
406         case ATOM_SRC_BYTE0:
407         case ATOM_SRC_BYTE8:
408         case ATOM_SRC_BYTE16:
409         case ATOM_SRC_BYTE24:
410                 val = U8(*ptr);
411                 (*ptr)++;
412                 break;
413         }
414         return val;
415 }
416
417 static uint32_t atom_get_dst(atom_exec_context *ctx, int arg, uint8_t attr,
418                              int *ptr, uint32_t *saved, int print)
419 {
420         return atom_get_src_int(ctx,
421                                 arg | atom_dst_to_src[(attr >> 3) &
422                                                       7][(attr >> 6) & 3] << 3,
423                                 ptr, saved, print);
424 }
425
426 static void atom_skip_dst(atom_exec_context *ctx, int arg, uint8_t attr, int *ptr)
427 {
428         atom_skip_src_int(ctx,
429                           arg | atom_dst_to_src[(attr >> 3) & 7][(attr >> 6) &
430                                                                  3] << 3, ptr);
431 }
432
433 static void atom_put_dst(atom_exec_context *ctx, int arg, uint8_t attr,
434                          int *ptr, uint32_t val, uint32_t saved)
435 {
436         uint32_t align =
437             atom_dst_to_src[(attr >> 3) & 7][(attr >> 6) & 3], old_val =
438             val, idx;
439         struct atom_context *gctx = ctx->ctx;
440         old_val &= atom_arg_mask[align] >> atom_arg_shift[align];
441         val <<= atom_arg_shift[align];
442         val &= atom_arg_mask[align];
443         saved &= ~atom_arg_mask[align];
444         val |= saved;
445         switch (arg) {
446         case ATOM_ARG_REG:
447                 idx = U16(*ptr);
448                 (*ptr) += 2;
449                 DEBUG("REG[0x%04X]", idx);
450                 idx += gctx->reg_block;
451                 switch (gctx->io_mode) {
452                 case ATOM_IO_MM:
453                         if (idx == 0)
454                                 gctx->card->reg_write(gctx->card, idx,
455                                                       val << 2);
456                         else
457                                 gctx->card->reg_write(gctx->card, idx, val);
458                         break;
459                 case ATOM_IO_PCI:
460                         printk(KERN_INFO
461                                "PCI registers are not implemented.\n");
462                         return;
463                 case ATOM_IO_SYSIO:
464                         printk(KERN_INFO
465                                "SYSIO registers are not implemented.\n");
466                         return;
467                 default:
468                         if (!(gctx->io_mode & 0x80)) {
469                                 printk(KERN_INFO "Bad IO mode.\n");
470                                 return;
471                         }
472                         if (!gctx->iio[gctx->io_mode & 0xFF]) {
473                                 printk(KERN_INFO
474                                        "Undefined indirect IO write method %d.\n",
475                                        gctx->io_mode & 0x7F);
476                                 return;
477                         }
478                         atom_iio_execute(gctx, gctx->iio[gctx->io_mode & 0xFF],
479                                          idx, val);
480                 }
481                 break;
482         case ATOM_ARG_PS:
483                 idx = U8(*ptr);
484                 (*ptr)++;
485                 DEBUG("PS[0x%02X]", idx);
486                 ctx->ps[idx] = cpu_to_le32(val);
487                 break;
488         case ATOM_ARG_WS:
489                 idx = U8(*ptr);
490                 (*ptr)++;
491                 DEBUG("WS[0x%02X]", idx);
492                 switch (idx) {
493                 case ATOM_WS_QUOTIENT:
494                         gctx->divmul[0] = val;
495                         break;
496                 case ATOM_WS_REMAINDER:
497                         gctx->divmul[1] = val;
498                         break;
499                 case ATOM_WS_DATAPTR:
500                         gctx->data_block = val;
501                         break;
502                 case ATOM_WS_SHIFT:
503                         gctx->shift = val;
504                         break;
505                 case ATOM_WS_OR_MASK:
506                 case ATOM_WS_AND_MASK:
507                         break;
508                 case ATOM_WS_FB_WINDOW:
509                         gctx->fb_base = val;
510                         break;
511                 case ATOM_WS_ATTRIBUTES:
512                         gctx->io_attr = val;
513                         break;
514                 case ATOM_WS_REGPTR:
515                         gctx->reg_block = val;
516                         break;
517                 default:
518                         ctx->ws[idx] = val;
519                 }
520                 break;
521         case ATOM_ARG_FB:
522                 idx = U8(*ptr);
523                 (*ptr)++;
524                 gctx->scratch[((gctx->fb_base + idx) / 4)] = val;
525                 DEBUG("FB[0x%02X]", idx);
526                 break;
527         case ATOM_ARG_PLL:
528                 idx = U8(*ptr);
529                 (*ptr)++;
530                 DEBUG("PLL[0x%02X]", idx);
531                 gctx->card->pll_write(gctx->card, idx, val);
532                 break;
533         case ATOM_ARG_MC:
534                 idx = U8(*ptr);
535                 (*ptr)++;
536                 DEBUG("MC[0x%02X]", idx);
537                 gctx->card->mc_write(gctx->card, idx, val);
538                 return;
539         }
540         switch (align) {
541         case ATOM_SRC_DWORD:
542                 DEBUG(".[31:0] <- 0x%08X\n", old_val);
543                 break;
544         case ATOM_SRC_WORD0:
545                 DEBUG(".[15:0] <- 0x%04X\n", old_val);
546                 break;
547         case ATOM_SRC_WORD8:
548                 DEBUG(".[23:8] <- 0x%04X\n", old_val);
549                 break;
550         case ATOM_SRC_WORD16:
551                 DEBUG(".[31:16] <- 0x%04X\n", old_val);
552                 break;
553         case ATOM_SRC_BYTE0:
554                 DEBUG(".[7:0] <- 0x%02X\n", old_val);
555                 break;
556         case ATOM_SRC_BYTE8:
557                 DEBUG(".[15:8] <- 0x%02X\n", old_val);
558                 break;
559         case ATOM_SRC_BYTE16:
560                 DEBUG(".[23:16] <- 0x%02X\n", old_val);
561                 break;
562         case ATOM_SRC_BYTE24:
563                 DEBUG(".[31:24] <- 0x%02X\n", old_val);
564                 break;
565         }
566 }
567
568 static void atom_op_add(atom_exec_context *ctx, int *ptr, int arg)
569 {
570         uint8_t attr = U8((*ptr)++);
571         uint32_t dst, src, saved;
572         int dptr = *ptr;
573         SDEBUG("   dst: ");
574         dst = atom_get_dst(ctx, arg, attr, ptr, &saved, 1);
575         SDEBUG("   src: ");
576         src = atom_get_src(ctx, attr, ptr);
577         dst += src;
578         SDEBUG("   dst: ");
579         atom_put_dst(ctx, arg, attr, &dptr, dst, saved);
580 }
581
582 static void atom_op_and(atom_exec_context *ctx, int *ptr, int arg)
583 {
584         uint8_t attr = U8((*ptr)++);
585         uint32_t dst, src, saved;
586         int dptr = *ptr;
587         SDEBUG("   dst: ");
588         dst = atom_get_dst(ctx, arg, attr, ptr, &saved, 1);
589         SDEBUG("   src: ");
590         src = atom_get_src(ctx, attr, ptr);
591         dst &= src;
592         SDEBUG("   dst: ");
593         atom_put_dst(ctx, arg, attr, &dptr, dst, saved);
594 }
595
596 static void atom_op_beep(atom_exec_context *ctx, int *ptr, int arg)
597 {
598         printk("ATOM BIOS beeped!\n");
599 }
600
601 static void atom_op_calltable(atom_exec_context *ctx, int *ptr, int arg)
602 {
603         int idx = U8((*ptr)++);
604         if (idx < ATOM_TABLE_NAMES_CNT)
605                 SDEBUG("   table: %d (%s)\n", idx, atom_table_names[idx]);
606         else
607                 SDEBUG("   table: %d\n", idx);
608         if (U16(ctx->ctx->cmd_table + 4 + 2 * idx))
609                 atom_execute_table_locked(ctx->ctx, idx, ctx->ps + ctx->ps_shift);
610 }
611
612 static void atom_op_clear(atom_exec_context *ctx, int *ptr, int arg)
613 {
614         uint8_t attr = U8((*ptr)++);
615         uint32_t saved;
616         int dptr = *ptr;
617         attr &= 0x38;
618         attr |= atom_def_dst[attr >> 3] << 6;
619         atom_get_dst(ctx, arg, attr, ptr, &saved, 0);
620         SDEBUG("   dst: ");
621         atom_put_dst(ctx, arg, attr, &dptr, 0, saved);
622 }
623
624 static void atom_op_compare(atom_exec_context *ctx, int *ptr, int arg)
625 {
626         uint8_t attr = U8((*ptr)++);
627         uint32_t dst, src;
628         SDEBUG("   src1: ");
629         dst = atom_get_dst(ctx, arg, attr, ptr, NULL, 1);
630         SDEBUG("   src2: ");
631         src = atom_get_src(ctx, attr, ptr);
632         ctx->ctx->cs_equal = (dst == src);
633         ctx->ctx->cs_above = (dst > src);
634         SDEBUG("   result: %s %s\n", ctx->ctx->cs_equal ? "EQ" : "NE",
635                ctx->ctx->cs_above ? "GT" : "LE");
636 }
637
638 static void atom_op_delay(atom_exec_context *ctx, int *ptr, int arg)
639 {
640         uint8_t count = U8((*ptr)++);
641         SDEBUG("   count: %d\n", count);
642         if (arg == ATOM_UNIT_MICROSEC)
643                 udelay(count);
644         //      schedule_timeout_uninterruptible(usecs_to_jiffies(count));
645         else
646                 schedule_timeout_uninterruptible(msecs_to_jiffies(count));
647 }
648
649 static void atom_op_div(atom_exec_context *ctx, int *ptr, int arg)
650 {
651         uint8_t attr = U8((*ptr)++);
652         uint32_t dst, src;
653         SDEBUG("   src1: ");
654         dst = atom_get_dst(ctx, arg, attr, ptr, NULL, 1);
655         SDEBUG("   src2: ");
656         src = atom_get_src(ctx, attr, ptr);
657         if (src != 0) {
658                 ctx->ctx->divmul[0] = dst / src;
659                 ctx->ctx->divmul[1] = dst % src;
660         } else {
661                 ctx->ctx->divmul[0] = 0;
662                 ctx->ctx->divmul[1] = 0;
663         }
664 }
665
666 static void atom_op_eot(atom_exec_context *ctx, int *ptr, int arg)
667 {
668         /* functionally, a nop */
669 }
670
671 static void atom_op_jump(atom_exec_context *ctx, int *ptr, int arg)
672 {
673         int execute = 0, target = U16(*ptr);
674         (*ptr) += 2;
675         switch (arg) {
676         case ATOM_COND_ABOVE:
677                 execute = ctx->ctx->cs_above;
678                 break;
679         case ATOM_COND_ABOVEOREQUAL:
680                 execute = ctx->ctx->cs_above || ctx->ctx->cs_equal;
681                 break;
682         case ATOM_COND_ALWAYS:
683                 execute = 1;
684                 break;
685         case ATOM_COND_BELOW:
686                 execute = !(ctx->ctx->cs_above || ctx->ctx->cs_equal);
687                 break;
688         case ATOM_COND_BELOWOREQUAL:
689                 execute = !ctx->ctx->cs_above;
690                 break;
691         case ATOM_COND_EQUAL:
692                 execute = ctx->ctx->cs_equal;
693                 break;
694         case ATOM_COND_NOTEQUAL:
695                 execute = !ctx->ctx->cs_equal;
696                 break;
697         }
698         if (arg != ATOM_COND_ALWAYS)
699                 SDEBUG("   taken: %s\n", execute ? "yes" : "no");
700         SDEBUG("   target: 0x%04X\n", target);
701         if (execute)
702                 *ptr = ctx->start + target;
703 }
704
705 static void atom_op_mask(atom_exec_context *ctx, int *ptr, int arg)
706 {
707         uint8_t attr = U8((*ptr)++);
708         uint32_t dst, src1, src2, saved;
709         int dptr = *ptr;
710         SDEBUG("   dst: ");
711         dst = atom_get_dst(ctx, arg, attr, ptr, &saved, 1);
712         SDEBUG("   src1: ");
713         src1 = atom_get_src_direct(ctx, ((attr >> 3) & 7), ptr);
714         SDEBUG("   src2: ");
715         src2 = atom_get_src(ctx, attr, ptr);
716         dst &= src1;
717         dst |= src2;
718         SDEBUG("   dst: ");
719         atom_put_dst(ctx, arg, attr, &dptr, dst, saved);
720 }
721
722 static void atom_op_move(atom_exec_context *ctx, int *ptr, int arg)
723 {
724         uint8_t attr = U8((*ptr)++);
725         uint32_t src, saved;
726         int dptr = *ptr;
727         if (((attr >> 3) & 7) != ATOM_SRC_DWORD)
728                 atom_get_dst(ctx, arg, attr, ptr, &saved, 0);
729         else {
730                 atom_skip_dst(ctx, arg, attr, ptr);
731                 saved = 0xCDCDCDCD;
732         }
733         SDEBUG("   src: ");
734         src = atom_get_src(ctx, attr, ptr);
735         SDEBUG("   dst: ");
736         atom_put_dst(ctx, arg, attr, &dptr, src, saved);
737 }
738
739 static void atom_op_mul(atom_exec_context *ctx, int *ptr, int arg)
740 {
741         uint8_t attr = U8((*ptr)++);
742         uint32_t dst, src;
743         SDEBUG("   src1: ");
744         dst = atom_get_dst(ctx, arg, attr, ptr, NULL, 1);
745         SDEBUG("   src2: ");
746         src = atom_get_src(ctx, attr, ptr);
747         ctx->ctx->divmul[0] = dst * src;
748 }
749
750 static void atom_op_nop(atom_exec_context *ctx, int *ptr, int arg)
751 {
752         /* nothing */
753 }
754
755 static void atom_op_or(atom_exec_context *ctx, int *ptr, int arg)
756 {
757         uint8_t attr = U8((*ptr)++);
758         uint32_t dst, src, saved;
759         int dptr = *ptr;
760         SDEBUG("   dst: ");
761         dst = atom_get_dst(ctx, arg, attr, ptr, &saved, 1);
762         SDEBUG("   src: ");
763         src = atom_get_src(ctx, attr, ptr);
764         dst |= src;
765         SDEBUG("   dst: ");
766         atom_put_dst(ctx, arg, attr, &dptr, dst, saved);
767 }
768
769 static void atom_op_postcard(atom_exec_context *ctx, int *ptr, int arg)
770 {
771         uint8_t val = U8((*ptr)++);
772         SDEBUG("POST card output: 0x%02X\n", val);
773 }
774
775 static void atom_op_repeat(atom_exec_context *ctx, int *ptr, int arg)
776 {
777         printk(KERN_INFO "unimplemented!\n");
778 }
779
780 static void atom_op_restorereg(atom_exec_context *ctx, int *ptr, int arg)
781 {
782         printk(KERN_INFO "unimplemented!\n");
783 }
784
785 static void atom_op_savereg(atom_exec_context *ctx, int *ptr, int arg)
786 {
787         printk(KERN_INFO "unimplemented!\n");
788 }
789
790 static void atom_op_setdatablock(atom_exec_context *ctx, int *ptr, int arg)
791 {
792         int idx = U8(*ptr);
793         (*ptr)++;
794         SDEBUG("   block: %d\n", idx);
795         if (!idx)
796                 ctx->ctx->data_block = 0;
797         else if (idx == 255)
798                 ctx->ctx->data_block = ctx->start;
799         else
800                 ctx->ctx->data_block = U16(ctx->ctx->data_table + 4 + 2 * idx);
801         SDEBUG("   base: 0x%04X\n", ctx->ctx->data_block);
802 }
803
804 static void atom_op_setfbbase(atom_exec_context *ctx, int *ptr, int arg)
805 {
806         uint8_t attr = U8((*ptr)++);
807         SDEBUG("   fb_base: ");
808         ctx->ctx->fb_base = atom_get_src(ctx, attr, ptr);
809 }
810
811 static void atom_op_setport(atom_exec_context *ctx, int *ptr, int arg)
812 {
813         int port;
814         switch (arg) {
815         case ATOM_PORT_ATI:
816                 port = U16(*ptr);
817                 if (port < ATOM_IO_NAMES_CNT)
818                         SDEBUG("   port: %d (%s)\n", port, atom_io_names[port]);
819                 else
820                         SDEBUG("   port: %d\n", port);
821                 if (!port)
822                         ctx->ctx->io_mode = ATOM_IO_MM;
823                 else
824                         ctx->ctx->io_mode = ATOM_IO_IIO | port;
825                 (*ptr) += 2;
826                 break;
827         case ATOM_PORT_PCI:
828                 ctx->ctx->io_mode = ATOM_IO_PCI;
829                 (*ptr)++;
830                 break;
831         case ATOM_PORT_SYSIO:
832                 ctx->ctx->io_mode = ATOM_IO_SYSIO;
833                 (*ptr)++;
834                 break;
835         }
836 }
837
838 static void atom_op_setregblock(atom_exec_context *ctx, int *ptr, int arg)
839 {
840         ctx->ctx->reg_block = U16(*ptr);
841         (*ptr) += 2;
842         SDEBUG("   base: 0x%04X\n", ctx->ctx->reg_block);
843 }
844
845 static void atom_op_shift_left(atom_exec_context *ctx, int *ptr, int arg)
846 {
847         uint8_t attr = U8((*ptr)++), shift;
848         uint32_t saved, dst;
849         int dptr = *ptr;
850         attr &= 0x38;
851         attr |= atom_def_dst[attr >> 3] << 6;
852         SDEBUG("   dst: ");
853         dst = atom_get_dst(ctx, arg, attr, ptr, &saved, 1);
854         shift = atom_get_src_direct(ctx, ATOM_SRC_BYTE0, ptr);
855         SDEBUG("   shift: %d\n", shift);
856         dst <<= shift;
857         SDEBUG("   dst: ");
858         atom_put_dst(ctx, arg, attr, &dptr, dst, saved);
859 }
860
861 static void atom_op_shift_right(atom_exec_context *ctx, int *ptr, int arg)
862 {
863         uint8_t attr = U8((*ptr)++), shift;
864         uint32_t saved, dst;
865         int dptr = *ptr;
866         attr &= 0x38;
867         attr |= atom_def_dst[attr >> 3] << 6;
868         SDEBUG("   dst: ");
869         dst = atom_get_dst(ctx, arg, attr, ptr, &saved, 1);
870         shift = atom_get_src_direct(ctx, ATOM_SRC_BYTE0, ptr);
871         SDEBUG("   shift: %d\n", shift);
872         dst >>= shift;
873         SDEBUG("   dst: ");
874         atom_put_dst(ctx, arg, attr, &dptr, dst, saved);
875 }
876
877 static void atom_op_shl(atom_exec_context *ctx, int *ptr, int arg)
878 {
879         uint8_t attr = U8((*ptr)++), shift;
880         uint32_t saved, dst;
881         int dptr = *ptr;
882         attr &= 0x38;
883         attr |= atom_def_dst[attr >> 3] << 6;
884         SDEBUG("   dst: ");
885         dst = atom_get_dst(ctx, arg, attr, ptr, &saved, 1);
886         shift = atom_get_src(ctx, attr, ptr);
887         SDEBUG("   shift: %d\n", shift);
888         dst <<= shift;
889         SDEBUG("   dst: ");
890         atom_put_dst(ctx, arg, attr, &dptr, dst, saved);
891 }
892
893 static void atom_op_shr(atom_exec_context *ctx, int *ptr, int arg)
894 {
895         uint8_t attr = U8((*ptr)++), shift;
896         uint32_t saved, dst;
897         int dptr = *ptr;
898         attr &= 0x38;
899         attr |= atom_def_dst[attr >> 3] << 6;
900         SDEBUG("   dst: ");
901         dst = atom_get_dst(ctx, arg, attr, ptr, &saved, 1);
902         shift = atom_get_src(ctx, attr, ptr);
903         SDEBUG("   shift: %d\n", shift);
904         dst >>= shift;
905         SDEBUG("   dst: ");
906         atom_put_dst(ctx, arg, attr, &dptr, dst, saved);
907 }
908
909 static void atom_op_sub(atom_exec_context *ctx, int *ptr, int arg)
910 {
911         uint8_t attr = U8((*ptr)++);
912         uint32_t dst, src, saved;
913         int dptr = *ptr;
914         SDEBUG("   dst: ");
915         dst = atom_get_dst(ctx, arg, attr, ptr, &saved, 1);
916         SDEBUG("   src: ");
917         src = atom_get_src(ctx, attr, ptr);
918         dst -= src;
919         SDEBUG("   dst: ");
920         atom_put_dst(ctx, arg, attr, &dptr, dst, saved);
921 }
922
923 static void atom_op_switch(atom_exec_context *ctx, int *ptr, int arg)
924 {
925         uint8_t attr = U8((*ptr)++);
926         uint32_t src, val, target;
927         SDEBUG("   switch: ");
928         src = atom_get_src(ctx, attr, ptr);
929         while (U16(*ptr) != ATOM_CASE_END)
930                 if (U8(*ptr) == ATOM_CASE_MAGIC) {
931                         (*ptr)++;
932                         SDEBUG("   case: ");
933                         val =
934                             atom_get_src(ctx, (attr & 0x38) | ATOM_ARG_IMM,
935                                          ptr);
936                         target = U16(*ptr);
937                         if (val == src) {
938                                 SDEBUG("   target: %04X\n", target);
939                                 *ptr = ctx->start + target;
940                                 return;
941                         }
942                         (*ptr) += 2;
943                 } else {
944                         printk(KERN_INFO "Bad case.\n");
945                         return;
946                 }
947         (*ptr) += 2;
948 }
949
950 static void atom_op_test(atom_exec_context *ctx, int *ptr, int arg)
951 {
952         uint8_t attr = U8((*ptr)++);
953         uint32_t dst, src;
954         SDEBUG("   src1: ");
955         dst = atom_get_dst(ctx, arg, attr, ptr, NULL, 1);
956         SDEBUG("   src2: ");
957         src = atom_get_src(ctx, attr, ptr);
958         ctx->ctx->cs_equal = ((dst & src) == 0);
959         SDEBUG("   result: %s\n", ctx->ctx->cs_equal ? "EQ" : "NE");
960 }
961
962 static void atom_op_xor(atom_exec_context *ctx, int *ptr, int arg)
963 {
964         uint8_t attr = U8((*ptr)++);
965         uint32_t dst, src, saved;
966         int dptr = *ptr;
967         SDEBUG("   dst: ");
968         dst = atom_get_dst(ctx, arg, attr, ptr, &saved, 1);
969         SDEBUG("   src: ");
970         src = atom_get_src(ctx, attr, ptr);
971         dst ^= src;
972         SDEBUG("   dst: ");
973         atom_put_dst(ctx, arg, attr, &dptr, dst, saved);
974 }
975
976 static void atom_op_debug(atom_exec_context *ctx, int *ptr, int arg)
977 {
978         printk(KERN_INFO "unimplemented!\n");
979 }
980
981 static struct {
982         void (*func) (atom_exec_context *, int *, int);
983         int arg;
984 } opcode_table[ATOM_OP_CNT] = {
985         {
986         NULL, 0}, {
987         atom_op_move, ATOM_ARG_REG}, {
988         atom_op_move, ATOM_ARG_PS}, {
989         atom_op_move, ATOM_ARG_WS}, {
990         atom_op_move, ATOM_ARG_FB}, {
991         atom_op_move, ATOM_ARG_PLL}, {
992         atom_op_move, ATOM_ARG_MC}, {
993         atom_op_and, ATOM_ARG_REG}, {
994         atom_op_and, ATOM_ARG_PS}, {
995         atom_op_and, ATOM_ARG_WS}, {
996         atom_op_and, ATOM_ARG_FB}, {
997         atom_op_and, ATOM_ARG_PLL}, {
998         atom_op_and, ATOM_ARG_MC}, {
999         atom_op_or, ATOM_ARG_REG}, {
1000         atom_op_or, ATOM_ARG_PS}, {
1001         atom_op_or, ATOM_ARG_WS}, {
1002         atom_op_or, ATOM_ARG_FB}, {
1003         atom_op_or, ATOM_ARG_PLL}, {
1004         atom_op_or, ATOM_ARG_MC}, {
1005         atom_op_shift_left, ATOM_ARG_REG}, {
1006         atom_op_shift_left, ATOM_ARG_PS}, {
1007         atom_op_shift_left, ATOM_ARG_WS}, {
1008         atom_op_shift_left, ATOM_ARG_FB}, {
1009         atom_op_shift_left, ATOM_ARG_PLL}, {
1010         atom_op_shift_left, ATOM_ARG_MC}, {
1011         atom_op_shift_right, ATOM_ARG_REG}, {
1012         atom_op_shift_right, ATOM_ARG_PS}, {
1013         atom_op_shift_right, ATOM_ARG_WS}, {
1014         atom_op_shift_right, ATOM_ARG_FB}, {
1015         atom_op_shift_right, ATOM_ARG_PLL}, {
1016         atom_op_shift_right, ATOM_ARG_MC}, {
1017         atom_op_mul, ATOM_ARG_REG}, {
1018         atom_op_mul, ATOM_ARG_PS}, {
1019         atom_op_mul, ATOM_ARG_WS}, {
1020         atom_op_mul, ATOM_ARG_FB}, {
1021         atom_op_mul, ATOM_ARG_PLL}, {
1022         atom_op_mul, ATOM_ARG_MC}, {
1023         atom_op_div, ATOM_ARG_REG}, {
1024         atom_op_div, ATOM_ARG_PS}, {
1025         atom_op_div, ATOM_ARG_WS}, {
1026         atom_op_div, ATOM_ARG_FB}, {
1027         atom_op_div, ATOM_ARG_PLL}, {
1028         atom_op_div, ATOM_ARG_MC}, {
1029         atom_op_add, ATOM_ARG_REG}, {
1030         atom_op_add, ATOM_ARG_PS}, {
1031         atom_op_add, ATOM_ARG_WS}, {
1032         atom_op_add, ATOM_ARG_FB}, {
1033         atom_op_add, ATOM_ARG_PLL}, {
1034         atom_op_add, ATOM_ARG_MC}, {
1035         atom_op_sub, ATOM_ARG_REG}, {
1036         atom_op_sub, ATOM_ARG_PS}, {
1037         atom_op_sub, ATOM_ARG_WS}, {
1038         atom_op_sub, ATOM_ARG_FB}, {
1039         atom_op_sub, ATOM_ARG_PLL}, {
1040         atom_op_sub, ATOM_ARG_MC}, {
1041         atom_op_setport, ATOM_PORT_ATI}, {
1042         atom_op_setport, ATOM_PORT_PCI}, {
1043         atom_op_setport, ATOM_PORT_SYSIO}, {
1044         atom_op_setregblock, 0}, {
1045         atom_op_setfbbase, 0}, {
1046         atom_op_compare, ATOM_ARG_REG}, {
1047         atom_op_compare, ATOM_ARG_PS}, {
1048         atom_op_compare, ATOM_ARG_WS}, {
1049         atom_op_compare, ATOM_ARG_FB}, {
1050         atom_op_compare, ATOM_ARG_PLL}, {
1051         atom_op_compare, ATOM_ARG_MC}, {
1052         atom_op_switch, 0}, {
1053         atom_op_jump, ATOM_COND_ALWAYS}, {
1054         atom_op_jump, ATOM_COND_EQUAL}, {
1055         atom_op_jump, ATOM_COND_BELOW}, {
1056         atom_op_jump, ATOM_COND_ABOVE}, {
1057         atom_op_jump, ATOM_COND_BELOWOREQUAL}, {
1058         atom_op_jump, ATOM_COND_ABOVEOREQUAL}, {
1059         atom_op_jump, ATOM_COND_NOTEQUAL}, {
1060         atom_op_test, ATOM_ARG_REG}, {
1061         atom_op_test, ATOM_ARG_PS}, {
1062         atom_op_test, ATOM_ARG_WS}, {
1063         atom_op_test, ATOM_ARG_FB}, {
1064         atom_op_test, ATOM_ARG_PLL}, {
1065         atom_op_test, ATOM_ARG_MC}, {
1066         atom_op_delay, ATOM_UNIT_MILLISEC}, {
1067         atom_op_delay, ATOM_UNIT_MICROSEC}, {
1068         atom_op_calltable, 0}, {
1069         atom_op_repeat, 0}, {
1070         atom_op_clear, ATOM_ARG_REG}, {
1071         atom_op_clear, ATOM_ARG_PS}, {
1072         atom_op_clear, ATOM_ARG_WS}, {
1073         atom_op_clear, ATOM_ARG_FB}, {
1074         atom_op_clear, ATOM_ARG_PLL}, {
1075         atom_op_clear, ATOM_ARG_MC}, {
1076         atom_op_nop, 0}, {
1077         atom_op_eot, 0}, {
1078         atom_op_mask, ATOM_ARG_REG}, {
1079         atom_op_mask, ATOM_ARG_PS}, {
1080         atom_op_mask, ATOM_ARG_WS}, {
1081         atom_op_mask, ATOM_ARG_FB}, {
1082         atom_op_mask, ATOM_ARG_PLL}, {
1083         atom_op_mask, ATOM_ARG_MC}, {
1084         atom_op_postcard, 0}, {
1085         atom_op_beep, 0}, {
1086         atom_op_savereg, 0}, {
1087         atom_op_restorereg, 0}, {
1088         atom_op_setdatablock, 0}, {
1089         atom_op_xor, ATOM_ARG_REG}, {
1090         atom_op_xor, ATOM_ARG_PS}, {
1091         atom_op_xor, ATOM_ARG_WS}, {
1092         atom_op_xor, ATOM_ARG_FB}, {
1093         atom_op_xor, ATOM_ARG_PLL}, {
1094         atom_op_xor, ATOM_ARG_MC}, {
1095         atom_op_shl, ATOM_ARG_REG}, {
1096         atom_op_shl, ATOM_ARG_PS}, {
1097         atom_op_shl, ATOM_ARG_WS}, {
1098         atom_op_shl, ATOM_ARG_FB}, {
1099         atom_op_shl, ATOM_ARG_PLL}, {
1100         atom_op_shl, ATOM_ARG_MC}, {
1101         atom_op_shr, ATOM_ARG_REG}, {
1102         atom_op_shr, ATOM_ARG_PS}, {
1103         atom_op_shr, ATOM_ARG_WS}, {
1104         atom_op_shr, ATOM_ARG_FB}, {
1105         atom_op_shr, ATOM_ARG_PLL}, {
1106         atom_op_shr, ATOM_ARG_MC}, {
1107 atom_op_debug, 0},};
1108
1109 static void atom_execute_table_locked(struct atom_context *ctx, int index, uint32_t * params)
1110 {
1111         int base = CU16(ctx->cmd_table + 4 + 2 * index);
1112         int len, ws, ps, ptr;
1113         unsigned char op;
1114         atom_exec_context ectx;
1115
1116         if (!base)
1117                 return;
1118
1119         len = CU16(base + ATOM_CT_SIZE_PTR);
1120         ws = CU8(base + ATOM_CT_WS_PTR);
1121         ps = CU8(base + ATOM_CT_PS_PTR) & ATOM_CT_PS_MASK;
1122         ptr = base + ATOM_CT_CODE_PTR;
1123
1124         SDEBUG(">> execute %04X (len %d, WS %d, PS %d)\n", base, len, ws, ps);
1125
1126         ectx.ctx = ctx;
1127         ectx.ps_shift = ps / 4;
1128         ectx.start = base;
1129         ectx.ps = params;
1130         if (ws)
1131                 ectx.ws = kzalloc(4 * ws, GFP_KERNEL);
1132         else
1133                 ectx.ws = NULL;
1134
1135         debug_depth++;
1136         while (1) {
1137                 op = CU8(ptr++);
1138                 if (op < ATOM_OP_NAMES_CNT)
1139                         SDEBUG("%s @ 0x%04X\n", atom_op_names[op], ptr - 1);
1140                 else
1141                         SDEBUG("[%d] @ 0x%04X\n", op, ptr - 1);
1142
1143                 if (op < ATOM_OP_CNT && op > 0)
1144                         opcode_table[op].func(&ectx, &ptr,
1145                                               opcode_table[op].arg);
1146                 else
1147                         break;
1148
1149                 if (op == ATOM_OP_EOT)
1150                         break;
1151         }
1152         debug_depth--;
1153         SDEBUG("<<\n");
1154
1155         if (ws)
1156                 kfree(ectx.ws);
1157 }
1158
1159 void atom_execute_table(struct atom_context *ctx, int index, uint32_t * params)
1160 {
1161         mutex_lock(&ctx->mutex);
1162         /* reset reg block */
1163         ctx->reg_block = 0;
1164         /* reset fb window */
1165         ctx->fb_base = 0;
1166         /* reset io mode */
1167         ctx->io_mode = ATOM_IO_MM;
1168         atom_execute_table_locked(ctx, index, params);
1169         mutex_unlock(&ctx->mutex);
1170 }
1171
1172 static int atom_iio_len[] = { 1, 2, 3, 3, 3, 3, 4, 4, 4, 3 };
1173
1174 static void atom_index_iio(struct atom_context *ctx, int base)
1175 {
1176         ctx->iio = kzalloc(2 * 256, GFP_KERNEL);
1177         while (CU8(base) == ATOM_IIO_START) {
1178                 ctx->iio[CU8(base + 1)] = base + 2;
1179                 base += 2;
1180                 while (CU8(base) != ATOM_IIO_END)
1181                         base += atom_iio_len[CU8(base)];
1182                 base += 3;
1183         }
1184 }
1185
1186 struct atom_context *atom_parse(struct card_info *card, void *bios)
1187 {
1188         int base;
1189         struct atom_context *ctx =
1190             kzalloc(sizeof(struct atom_context), GFP_KERNEL);
1191         char *str;
1192         char name[512];
1193         int i;
1194
1195         ctx->card = card;
1196         ctx->bios = bios;
1197
1198         if (CU16(0) != ATOM_BIOS_MAGIC) {
1199                 printk(KERN_INFO "Invalid BIOS magic.\n");
1200                 kfree(ctx);
1201                 return NULL;
1202         }
1203         if (strncmp
1204             (CSTR(ATOM_ATI_MAGIC_PTR), ATOM_ATI_MAGIC,
1205              strlen(ATOM_ATI_MAGIC))) {
1206                 printk(KERN_INFO "Invalid ATI magic.\n");
1207                 kfree(ctx);
1208                 return NULL;
1209         }
1210
1211         base = CU16(ATOM_ROM_TABLE_PTR);
1212         if (strncmp
1213             (CSTR(base + ATOM_ROM_MAGIC_PTR), ATOM_ROM_MAGIC,
1214              strlen(ATOM_ROM_MAGIC))) {
1215                 printk(KERN_INFO "Invalid ATOM magic.\n");
1216                 kfree(ctx);
1217                 return NULL;
1218         }
1219
1220         ctx->cmd_table = CU16(base + ATOM_ROM_CMD_PTR);
1221         ctx->data_table = CU16(base + ATOM_ROM_DATA_PTR);
1222         atom_index_iio(ctx, CU16(ctx->data_table + ATOM_DATA_IIO_PTR) + 4);
1223
1224         str = CSTR(CU16(base + ATOM_ROM_MSG_PTR));
1225         while (*str && ((*str == '\n') || (*str == '\r')))
1226                 str++;
1227         /* name string isn't always 0 terminated */
1228         for (i = 0; i < 511; i++) {
1229                 name[i] = str[i];
1230                 if (name[i] < '.' || name[i] > 'z') {
1231                         name[i] = 0;
1232                         break;
1233                 }
1234         }
1235         printk(KERN_INFO "ATOM BIOS: %s\n", name);
1236
1237         return ctx;
1238 }
1239
1240 int atom_asic_init(struct atom_context *ctx)
1241 {
1242         int hwi = CU16(ctx->data_table + ATOM_DATA_FWI_PTR);
1243         uint32_t ps[16];
1244         memset(ps, 0, 64);
1245
1246         ps[0] = cpu_to_le32(CU32(hwi + ATOM_FWI_DEFSCLK_PTR));
1247         ps[1] = cpu_to_le32(CU32(hwi + ATOM_FWI_DEFMCLK_PTR));
1248         if (!ps[0] || !ps[1])
1249                 return 1;
1250
1251         if (!CU16(ctx->cmd_table + 4 + 2 * ATOM_CMD_INIT))
1252                 return 1;
1253         atom_execute_table(ctx, ATOM_CMD_INIT, ps);
1254
1255         return 0;
1256 }
1257
1258 void atom_destroy(struct atom_context *ctx)
1259 {
1260         if (ctx->iio)
1261                 kfree(ctx->iio);
1262         kfree(ctx);
1263 }
1264
1265 void atom_parse_data_header(struct atom_context *ctx, int index,
1266                             uint16_t * size, uint8_t * frev, uint8_t * crev,
1267                             uint16_t * data_start)
1268 {
1269         int offset = index * 2 + 4;
1270         int idx = CU16(ctx->data_table + offset);
1271
1272         if (size)
1273                 *size = CU16(idx);
1274         if (frev)
1275                 *frev = CU8(idx + 2);
1276         if (crev)
1277                 *crev = CU8(idx + 3);
1278         *data_start = idx;
1279         return;
1280 }
1281
1282 void atom_parse_cmd_header(struct atom_context *ctx, int index, uint8_t * frev,
1283                            uint8_t * crev)
1284 {
1285         int offset = index * 2 + 4;
1286         int idx = CU16(ctx->cmd_table + offset);
1287
1288         if (frev)
1289                 *frev = CU8(idx + 2);
1290         if (crev)
1291                 *crev = CU8(idx + 3);
1292         return;
1293 }
1294
1295 int atom_allocate_fb_scratch(struct atom_context *ctx)
1296 {
1297         int index = GetIndexIntoMasterTable(DATA, VRAM_UsageByFirmware);
1298         uint16_t data_offset;
1299         int usage_bytes;
1300         struct _ATOM_VRAM_USAGE_BY_FIRMWARE *firmware_usage;
1301
1302         atom_parse_data_header(ctx, index, NULL, NULL, NULL, &data_offset);
1303
1304         firmware_usage = (struct _ATOM_VRAM_USAGE_BY_FIRMWARE *)(ctx->bios + data_offset);
1305
1306         DRM_DEBUG("atom firmware requested %08x %dkb\n",
1307                   firmware_usage->asFirmwareVramReserveInfo[0].ulStartAddrUsedByFirmware,
1308                   firmware_usage->asFirmwareVramReserveInfo[0].usFirmwareUseInKb);
1309
1310         usage_bytes = firmware_usage->asFirmwareVramReserveInfo[0].usFirmwareUseInKb * 1024;
1311         if (usage_bytes == 0)
1312                 usage_bytes = 20 * 1024;
1313         /* allocate some scratch memory */
1314         ctx->scratch = kzalloc(usage_bytes, GFP_KERNEL);
1315         if (!ctx->scratch)
1316                 return -ENOMEM;
1317         return 0;
1318 }