2 * Copyright 2012 Red Hat Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the
6 * "Software"), to deal in the Software without restriction, including
7 * without limitation the rights to use, copy, modify, merge, publish,
8 * distribute, sub license, and/or sell copies of the Software, and to
9 * permit persons to whom the Software is furnished to do so, subject to
10 * the following conditions:
12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
15 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
16 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
17 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
18 * USE OR OTHER DEALINGS IN THE SOFTWARE.
20 * The above copyright notice and this permission notice (including the
21 * next paragraph) shall be included in all copies or substantial portions
29 #include <linux/delay.h>
30 #include <linux/pci.h>
32 #include <drm/drm_print.h>
34 #include "ast_dram_tables.h"
37 static void ast_post_chip_2300(struct drm_device *dev);
38 static void ast_post_chip_2500(struct drm_device *dev);
40 void ast_enable_vga(struct drm_device *dev)
42 struct ast_private *ast = to_ast_private(dev);
44 ast_io_write8(ast, AST_IO_VGA_ENABLE_PORT, 0x01);
45 ast_io_write8(ast, AST_IO_MISC_PORT_WRITE, 0x01);
48 void ast_enable_mmio(struct drm_device *dev)
50 struct ast_private *ast = to_ast_private(dev);
52 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0xa1, 0x06);
56 bool ast_is_vga_enabled(struct drm_device *dev)
58 struct ast_private *ast = to_ast_private(dev);
61 ch = ast_io_read8(ast, AST_IO_VGA_ENABLE_PORT);
66 static const u8 extreginfo[] = { 0x0f, 0x04, 0x1c, 0xff };
67 static const u8 extreginfo_ast2300a0[] = { 0x0f, 0x04, 0x1c, 0xff };
68 static const u8 extreginfo_ast2300[] = { 0x0f, 0x04, 0x1f, 0xff };
71 ast_set_def_ext_reg(struct drm_device *dev)
73 struct ast_private *ast = to_ast_private(dev);
74 struct pci_dev *pdev = to_pci_dev(dev->dev);
76 const u8 *ext_reg_info;
79 for (i = 0x81; i <= 0x9f; i++)
80 ast_set_index_reg(ast, AST_IO_CRTC_PORT, i, 0x00);
82 if (ast->chip == AST2300 || ast->chip == AST2400 ||
83 ast->chip == AST2500) {
84 if (pdev->revision >= 0x20)
85 ext_reg_info = extreginfo_ast2300;
87 ext_reg_info = extreginfo_ast2300a0;
89 ext_reg_info = extreginfo;
92 while (*ext_reg_info != 0xff) {
93 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, index, 0x00, *ext_reg_info);
98 /* disable standard IO/MEM decode if secondary */
99 /* ast_set_index_reg-mask(ast, AST_IO_CRTC_PORT, 0xa1, 0xff, 0x3); */
101 /* Set Ext. Default */
102 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x8c, 0x00, 0x01);
103 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xb7, 0x00, 0x00);
105 /* Enable RAMDAC for A1 */
107 if (ast->chip == AST2300 || ast->chip == AST2400 ||
108 ast->chip == AST2500)
110 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xb6, 0xff, reg);
113 u32 ast_mindwm(struct ast_private *ast, u32 r)
117 ast_write32(ast, 0xf004, r & 0xffff0000);
118 ast_write32(ast, 0xf000, 0x1);
121 data = ast_read32(ast, 0xf004) & 0xffff0000;
122 } while (data != (r & 0xffff0000));
123 return ast_read32(ast, 0x10000 + (r & 0x0000ffff));
126 void ast_moutdwm(struct ast_private *ast, u32 r, u32 v)
129 ast_write32(ast, 0xf004, r & 0xffff0000);
130 ast_write32(ast, 0xf000, 0x1);
132 data = ast_read32(ast, 0xf004) & 0xffff0000;
133 } while (data != (r & 0xffff0000));
134 ast_write32(ast, 0x10000 + (r & 0x0000ffff), v);
138 * AST2100/2150 DLL CBR Setting
140 #define CBR_SIZE_AST2150 ((16 << 10) - 1)
141 #define CBR_PASSNUM_AST2150 5
142 #define CBR_THRESHOLD_AST2150 10
143 #define CBR_THRESHOLD2_AST2150 10
144 #define TIMEOUT_AST2150 5000000
146 #define CBR_PATNUM_AST2150 8
148 static const u32 pattern_AST2150[14] = {
165 static u32 mmctestburst2_ast2150(struct ast_private *ast, u32 datagen)
169 ast_moutdwm(ast, 0x1e6e0070, 0x00000000);
170 ast_moutdwm(ast, 0x1e6e0070, 0x00000001 | (datagen << 3));
173 data = ast_mindwm(ast, 0x1e6e0070) & 0x40;
174 if (++timeout > TIMEOUT_AST2150) {
175 ast_moutdwm(ast, 0x1e6e0070, 0x00000000);
179 ast_moutdwm(ast, 0x1e6e0070, 0x00000000);
180 ast_moutdwm(ast, 0x1e6e0070, 0x00000003 | (datagen << 3));
183 data = ast_mindwm(ast, 0x1e6e0070) & 0x40;
184 if (++timeout > TIMEOUT_AST2150) {
185 ast_moutdwm(ast, 0x1e6e0070, 0x00000000);
189 data = (ast_mindwm(ast, 0x1e6e0070) & 0x80) >> 7;
190 ast_moutdwm(ast, 0x1e6e0070, 0x00000000);
194 #if 0 /* unused in DDX driver - here for completeness */
195 static u32 mmctestsingle2_ast2150(struct ast_private *ast, u32 datagen)
199 ast_moutdwm(ast, 0x1e6e0070, 0x00000000);
200 ast_moutdwm(ast, 0x1e6e0070, 0x00000005 | (datagen << 3));
203 data = ast_mindwm(ast, 0x1e6e0070) & 0x40;
204 if (++timeout > TIMEOUT_AST2150) {
205 ast_moutdwm(ast, 0x1e6e0070, 0x00000000);
209 data = (ast_mindwm(ast, 0x1e6e0070) & 0x80) >> 7;
210 ast_moutdwm(ast, 0x1e6e0070, 0x00000000);
215 static int cbrtest_ast2150(struct ast_private *ast)
219 for (i = 0; i < 8; i++)
220 if (mmctestburst2_ast2150(ast, i))
225 static int cbrscan_ast2150(struct ast_private *ast, int busw)
229 for (patcnt = 0; patcnt < CBR_PATNUM_AST2150; patcnt++) {
230 ast_moutdwm(ast, 0x1e6e007c, pattern_AST2150[patcnt]);
231 for (loop = 0; loop < CBR_PASSNUM_AST2150; loop++) {
232 if (cbrtest_ast2150(ast))
235 if (loop == CBR_PASSNUM_AST2150)
242 static void cbrdlli_ast2150(struct ast_private *ast, int busw)
244 u32 dll_min[4], dll_max[4], dlli, data, passcnt;
247 dll_min[0] = dll_min[1] = dll_min[2] = dll_min[3] = 0xff;
248 dll_max[0] = dll_max[1] = dll_max[2] = dll_max[3] = 0x0;
251 for (dlli = 0; dlli < 100; dlli++) {
252 ast_moutdwm(ast, 0x1e6e0068, dlli | (dlli << 8) | (dlli << 16) | (dlli << 24));
253 data = cbrscan_ast2150(ast, busw);
256 if (dll_min[0] > dlli)
258 if (dll_max[0] < dlli)
262 } else if (passcnt >= CBR_THRESHOLD_AST2150)
265 if (dll_max[0] == 0 || (dll_max[0]-dll_min[0]) < CBR_THRESHOLD_AST2150)
268 dlli = dll_min[0] + (((dll_max[0] - dll_min[0]) * 7) >> 4);
269 ast_moutdwm(ast, 0x1e6e0068, dlli | (dlli << 8) | (dlli << 16) | (dlli << 24));
274 static void ast_init_dram_reg(struct drm_device *dev)
276 struct ast_private *ast = to_ast_private(dev);
279 const struct ast_dramstruct *dram_reg_info;
281 j = ast_get_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xd0, 0xff);
283 if ((j & 0x80) == 0) { /* VGA only */
284 if (ast->chip == AST2000) {
285 dram_reg_info = ast2000_dram_table_data;
286 ast_write32(ast, 0xf004, 0x1e6e0000);
287 ast_write32(ast, 0xf000, 0x1);
288 ast_write32(ast, 0x10100, 0xa8);
292 } while (ast_read32(ast, 0x10100) != 0xa8);
293 } else {/* AST2100/1100 */
294 if (ast->chip == AST2100 || ast->chip == 2200)
295 dram_reg_info = ast2100_dram_table_data;
297 dram_reg_info = ast1100_dram_table_data;
299 ast_write32(ast, 0xf004, 0x1e6e0000);
300 ast_write32(ast, 0xf000, 0x1);
301 ast_write32(ast, 0x12000, 0x1688A8A8);
304 } while (ast_read32(ast, 0x12000) != 0x01);
306 ast_write32(ast, 0x10000, 0xfc600309);
309 } while (ast_read32(ast, 0x10000) != 0x01);
312 while (dram_reg_info->index != 0xffff) {
313 if (dram_reg_info->index == 0xff00) {/* delay fn */
314 for (i = 0; i < 15; i++)
315 udelay(dram_reg_info->data);
316 } else if (dram_reg_info->index == 0x4 && ast->chip != AST2000) {
317 data = dram_reg_info->data;
318 if (ast->dram_type == AST_DRAM_1Gx16)
320 else if (ast->dram_type == AST_DRAM_1Gx32)
323 temp = ast_read32(ast, 0x12070);
326 ast_write32(ast, 0x10000 + dram_reg_info->index, data | temp);
328 ast_write32(ast, 0x10000 + dram_reg_info->index, dram_reg_info->data);
332 /* AST 2100/2150 DRAM calibration */
333 data = ast_read32(ast, 0x10120);
334 if (data == 0x5061) { /* 266Mhz */
335 data = ast_read32(ast, 0x10004);
337 cbrdlli_ast2150(ast, 16); /* 16 bits */
339 cbrdlli_ast2150(ast, 32); /* 32 bits */
344 temp = ast_read32(ast, 0x10140);
345 ast_write32(ast, 0x10140, temp | 0x40);
351 temp = ast_read32(ast, 0x1200c);
352 ast_write32(ast, 0x1200c, temp & 0xfffffffd);
353 temp = ast_read32(ast, 0x12040);
354 ast_write32(ast, 0x12040, temp | 0x40);
363 j = ast_get_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xd0, 0xff);
364 } while ((j & 0x40) == 0);
367 void ast_post_gpu(struct drm_device *dev)
369 struct ast_private *ast = to_ast_private(dev);
370 struct pci_dev *pdev = to_pci_dev(dev->dev);
373 pci_read_config_dword(pdev, 0x04, ®);
375 pci_write_config_dword(pdev, 0x04, reg);
379 ast_enable_mmio(dev);
380 ast_set_def_ext_reg(dev);
382 if (ast->config_mode == ast_use_p2a) {
383 if (ast->chip == AST2500)
384 ast_post_chip_2500(dev);
385 else if (ast->chip == AST2300 || ast->chip == AST2400)
386 ast_post_chip_2300(dev);
388 ast_init_dram_reg(dev);
392 if (ast->tx_chip_type != AST_TX_NONE)
393 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xa3, 0xcf, 0x80); /* Enable DVO */
397 /* AST 2300 DRAM settings */
401 struct ast2300_dram_param {
423 u32 dll2_finetune_step;
427 * DQSI DLL CBR Setting
429 #define CBR_SIZE0 ((1 << 10) - 1)
430 #define CBR_SIZE1 ((4 << 10) - 1)
431 #define CBR_SIZE2 ((64 << 10) - 1)
432 #define CBR_PASSNUM 5
433 #define CBR_PASSNUM2 5
434 #define CBR_THRESHOLD 10
435 #define CBR_THRESHOLD2 10
436 #define TIMEOUT 5000000
439 static const u32 pattern[8] = {
450 static bool mmc_test(struct ast_private *ast, u32 datagen, u8 test_ctl)
454 ast_moutdwm(ast, 0x1e6e0070, 0x00000000);
455 ast_moutdwm(ast, 0x1e6e0070, (datagen << 3) | test_ctl);
458 data = ast_mindwm(ast, 0x1e6e0070) & 0x3000;
461 if (++timeout > TIMEOUT) {
462 ast_moutdwm(ast, 0x1e6e0070, 0x00000000);
466 ast_moutdwm(ast, 0x1e6e0070, 0x0);
470 static u32 mmc_test2(struct ast_private *ast, u32 datagen, u8 test_ctl)
474 ast_moutdwm(ast, 0x1e6e0070, 0x00000000);
475 ast_moutdwm(ast, 0x1e6e0070, (datagen << 3) | test_ctl);
478 data = ast_mindwm(ast, 0x1e6e0070) & 0x1000;
479 if (++timeout > TIMEOUT) {
480 ast_moutdwm(ast, 0x1e6e0070, 0x0);
484 data = ast_mindwm(ast, 0x1e6e0078);
485 data = (data | (data >> 16)) & 0xffff;
486 ast_moutdwm(ast, 0x1e6e0070, 0x00000000);
491 static bool mmc_test_burst(struct ast_private *ast, u32 datagen)
493 return mmc_test(ast, datagen, 0xc1);
496 static u32 mmc_test_burst2(struct ast_private *ast, u32 datagen)
498 return mmc_test2(ast, datagen, 0x41);
501 static bool mmc_test_single(struct ast_private *ast, u32 datagen)
503 return mmc_test(ast, datagen, 0xc5);
506 static u32 mmc_test_single2(struct ast_private *ast, u32 datagen)
508 return mmc_test2(ast, datagen, 0x05);
511 static bool mmc_test_single_2500(struct ast_private *ast, u32 datagen)
513 return mmc_test(ast, datagen, 0x85);
516 static int cbr_test(struct ast_private *ast)
520 data = mmc_test_single2(ast, 0);
521 if ((data & 0xff) && (data & 0xff00))
523 for (i = 0; i < 8; i++) {
524 data = mmc_test_burst2(ast, i);
525 if ((data & 0xff) && (data & 0xff00))
530 else if (data & 0xff)
535 static int cbr_scan(struct ast_private *ast)
537 u32 data, data2, patcnt, loop;
540 for (patcnt = 0; patcnt < CBR_PATNUM; patcnt++) {
541 ast_moutdwm(ast, 0x1e6e007c, pattern[patcnt]);
542 for (loop = 0; loop < CBR_PASSNUM2; loop++) {
543 if ((data = cbr_test(ast)) != 0) {
550 if (loop == CBR_PASSNUM2)
556 static u32 cbr_test2(struct ast_private *ast)
560 data = mmc_test_burst2(ast, 0);
563 data |= mmc_test_single2(ast, 0);
567 return ~data & 0xffff;
570 static u32 cbr_scan2(struct ast_private *ast)
572 u32 data, data2, patcnt, loop;
575 for (patcnt = 0; patcnt < CBR_PATNUM; patcnt++) {
576 ast_moutdwm(ast, 0x1e6e007c, pattern[patcnt]);
577 for (loop = 0; loop < CBR_PASSNUM2; loop++) {
578 if ((data = cbr_test2(ast)) != 0) {
585 if (loop == CBR_PASSNUM2)
591 static bool cbr_test3(struct ast_private *ast)
593 if (!mmc_test_burst(ast, 0))
595 if (!mmc_test_single(ast, 0))
600 static bool cbr_scan3(struct ast_private *ast)
604 for (patcnt = 0; patcnt < CBR_PATNUM; patcnt++) {
605 ast_moutdwm(ast, 0x1e6e007c, pattern[patcnt]);
606 for (loop = 0; loop < 2; loop++) {
616 static bool finetuneDQI_L(struct ast_private *ast, struct ast2300_dram_param *param)
618 u32 gold_sadj[2], dllmin[16], dllmax[16], dlli, data, cnt, mask, passcnt, retry = 0;
621 for (cnt = 0; cnt < 16; cnt++) {
626 for (dlli = 0; dlli < 76; dlli++) {
627 ast_moutdwm(ast, 0x1E6E0068, 0x00001400 | (dlli << 16) | (dlli << 24));
628 ast_moutdwm(ast, 0x1E6E0074, CBR_SIZE1);
629 data = cbr_scan2(ast);
632 for (cnt = 0; cnt < 16; cnt++) {
634 if (dllmin[cnt] > dlli) {
637 if (dllmax[cnt] < dlli) {
644 } else if (passcnt >= CBR_THRESHOLD2) {
650 for (cnt = 0; cnt < 16; cnt++) {
651 if ((dllmax[cnt] > dllmin[cnt]) && ((dllmax[cnt] - dllmin[cnt]) >= CBR_THRESHOLD2)) {
652 gold_sadj[0] += dllmin[cnt];
663 gold_sadj[0] = gold_sadj[0] >> 4;
664 gold_sadj[1] = gold_sadj[0];
667 for (cnt = 0; cnt < 8; cnt++) {
669 if ((dllmax[cnt] > dllmin[cnt]) && ((dllmax[cnt] - dllmin[cnt]) >= CBR_THRESHOLD2)) {
671 if (gold_sadj[0] >= dlli) {
672 dlli = ((gold_sadj[0] - dlli) * 19) >> 5;
677 dlli = ((dlli - gold_sadj[0]) * 19) >> 5;
681 dlli = (8 - dlli) & 0x7;
686 ast_moutdwm(ast, 0x1E6E0080, data);
689 for (cnt = 8; cnt < 16; cnt++) {
691 if ((dllmax[cnt] > dllmin[cnt]) && ((dllmax[cnt] - dllmin[cnt]) >= CBR_THRESHOLD2)) {
693 if (gold_sadj[1] >= dlli) {
694 dlli = ((gold_sadj[1] - dlli) * 19) >> 5;
698 dlli = (dlli - 1) & 0x7;
701 dlli = ((dlli - gold_sadj[1]) * 19) >> 5;
706 dlli = (8 - dlli) & 0x7;
711 ast_moutdwm(ast, 0x1E6E0084, data);
713 } /* finetuneDQI_L */
715 static void finetuneDQSI(struct ast_private *ast)
717 u32 dlli, dqsip, dqidly;
718 u32 reg_mcr18, reg_mcr0c, passcnt[2], diff;
719 u32 g_dqidly, g_dqsip, g_margin, g_side;
723 /* Disable DQI CBR */
724 reg_mcr0c = ast_mindwm(ast, 0x1E6E000C);
725 reg_mcr18 = ast_mindwm(ast, 0x1E6E0018);
726 reg_mcr18 &= 0x0000ffff;
727 ast_moutdwm(ast, 0x1E6E0018, reg_mcr18);
729 for (dlli = 0; dlli < 76; dlli++) {
733 for (dqidly = 0; dqidly < 32; dqidly++) {
734 pass[dqidly][0][0] = 0xff;
735 pass[dqidly][0][1] = 0x0;
736 pass[dqidly][1][0] = 0xff;
737 pass[dqidly][1][1] = 0x0;
739 for (dqidly = 0; dqidly < 32; dqidly++) {
740 passcnt[0] = passcnt[1] = 0;
741 for (dqsip = 0; dqsip < 2; dqsip++) {
742 ast_moutdwm(ast, 0x1E6E000C, 0);
743 ast_moutdwm(ast, 0x1E6E0018, reg_mcr18 | (dqidly << 16) | (dqsip << 23));
744 ast_moutdwm(ast, 0x1E6E000C, reg_mcr0c);
745 for (dlli = 0; dlli < 76; dlli++) {
746 ast_moutdwm(ast, 0x1E6E0068, 0x00001300 | (dlli << 16) | (dlli << 24));
747 ast_moutdwm(ast, 0x1E6E0070, 0);
748 ast_moutdwm(ast, 0x1E6E0074, CBR_SIZE0);
749 if (cbr_scan3(ast)) {
753 tag[dqsip][dlli] = 'P';
754 if (dlli < pass[dqidly][dqsip][0])
755 pass[dqidly][dqsip][0] = (u16) dlli;
756 if (dlli > pass[dqidly][dqsip][1])
757 pass[dqidly][dqsip][1] = (u16) dlli;
758 } else if (passcnt[dqsip] >= 5)
761 pass[dqidly][dqsip][0] = 0xff;
762 pass[dqidly][dqsip][1] = 0x0;
766 if (passcnt[0] == 0 && passcnt[1] == 0)
770 g_dqidly = g_dqsip = g_margin = g_side = 0;
772 for (dqidly = 0; dqidly < 32; dqidly++) {
773 for (dqsip = 0; dqsip < 2; dqsip++) {
774 if (pass[dqidly][dqsip][0] > pass[dqidly][dqsip][1])
776 diff = pass[dqidly][dqsip][1] - pass[dqidly][dqsip][0];
777 if ((diff+2) < g_margin)
779 passcnt[0] = passcnt[1] = 0;
780 for (dlli = pass[dqidly][dqsip][0]; dlli > 0 && tag[dqsip][dlli] != 0; dlli--, passcnt[0]++);
781 for (dlli = pass[dqidly][dqsip][1]; dlli < 76 && tag[dqsip][dlli] != 0; dlli++, passcnt[1]++);
782 if (passcnt[0] > passcnt[1])
783 passcnt[0] = passcnt[1];
785 if (passcnt[0] > g_side)
786 passcnt[1] = passcnt[0] - g_side;
787 if (diff > (g_margin+1) && (passcnt[1] > 0 || passcnt[0] > 8)) {
792 } else if (passcnt[1] > 1 && g_side < 8) {
801 reg_mcr18 = reg_mcr18 | (g_dqidly << 16) | (g_dqsip << 23);
802 ast_moutdwm(ast, 0x1E6E0018, reg_mcr18);
805 static bool cbr_dll2(struct ast_private *ast, struct ast2300_dram_param *param)
807 u32 dllmin[2], dllmax[2], dlli, data, passcnt, retry = 0;
811 if (finetuneDQI_L(ast, param) == false)
815 dllmin[0] = dllmin[1] = 0xff;
816 dllmax[0] = dllmax[1] = 0x0;
818 for (dlli = 0; dlli < 76; dlli++) {
819 ast_moutdwm(ast, 0x1E6E0068, 0x00001300 | (dlli << 16) | (dlli << 24));
820 ast_moutdwm(ast, 0x1E6E0074, CBR_SIZE2);
821 data = cbr_scan(ast);
824 if (dllmin[0] > dlli) {
827 if (dllmax[0] < dlli) {
832 if (dllmin[1] > dlli) {
835 if (dllmax[1] < dlli) {
840 } else if (passcnt >= CBR_THRESHOLD) {
846 if (dllmax[0] == 0 || (dllmax[0]-dllmin[0]) < CBR_THRESHOLD) {
849 if (dllmax[1] == 0 || (dllmax[1]-dllmin[1]) < CBR_THRESHOLD) {
854 dlli = (dllmin[1] + dllmax[1]) >> 1;
856 dlli += (dllmin[0] + dllmax[0]) >> 1;
857 ast_moutdwm(ast, 0x1E6E0068, ast_mindwm(ast, 0x1E720058) | (dlli << 16));
861 static void get_ddr3_info(struct ast_private *ast, struct ast2300_dram_param *param)
863 u32 trap, trap_AC2, trap_MRS;
865 ast_moutdwm(ast, 0x1E6E2000, 0x1688A8A8);
868 trap = (ast_mindwm(ast, 0x1E6E2070) >> 25) & 0x3;
869 trap_AC2 = 0x00020000 + (trap << 16);
870 trap_AC2 |= 0x00300000 + ((trap & 0x2) << 19);
871 trap_MRS = 0x00000010 + (trap << 4);
872 trap_MRS |= ((trap & 0x2) << 18);
874 param->reg_MADJ = 0x00034C4C;
875 param->reg_SADJ = 0x00001800;
876 param->reg_DRV = 0x000000F0;
877 param->reg_PERIOD = param->dram_freq;
880 switch (param->dram_freq) {
882 ast_moutdwm(ast, 0x1E6E2020, 0x0190);
884 param->reg_AC1 = 0x22202725;
885 param->reg_AC2 = 0xAA007613 | trap_AC2;
886 param->reg_DQSIC = 0x000000BA;
887 param->reg_MRS = 0x04001400 | trap_MRS;
888 param->reg_EMRS = 0x00000000;
889 param->reg_IOZ = 0x00000023;
890 param->reg_DQIDLY = 0x00000074;
891 param->reg_FREQ = 0x00004DC0;
892 param->madj_max = 96;
893 param->dll2_finetune_step = 3;
894 switch (param->dram_chipid) {
896 case AST_DRAM_512Mx16:
898 param->reg_AC2 = 0xAA007613 | trap_AC2;
901 param->reg_AC2 = 0xAA00761C | trap_AC2;
904 param->reg_AC2 = 0xAA007636 | trap_AC2;
910 ast_moutdwm(ast, 0x1E6E2020, 0x03F1);
912 param->reg_AC1 = 0x33302825;
913 param->reg_AC2 = 0xCC009617 | trap_AC2;
914 param->reg_DQSIC = 0x000000E2;
915 param->reg_MRS = 0x04001600 | trap_MRS;
916 param->reg_EMRS = 0x00000000;
917 param->reg_IOZ = 0x00000034;
918 param->reg_DRV = 0x000000FA;
919 param->reg_DQIDLY = 0x00000089;
920 param->reg_FREQ = 0x00005040;
921 param->madj_max = 96;
922 param->dll2_finetune_step = 4;
924 switch (param->dram_chipid) {
926 case AST_DRAM_512Mx16:
928 param->reg_AC2 = 0xCC009617 | trap_AC2;
931 param->reg_AC2 = 0xCC009622 | trap_AC2;
934 param->reg_AC2 = 0xCC00963F | trap_AC2;
940 ast_moutdwm(ast, 0x1E6E2020, 0x01F0);
942 param->reg_AC1 = 0x33302825;
943 param->reg_AC2 = 0xCC009617 | trap_AC2;
944 param->reg_DQSIC = 0x000000E2;
945 param->reg_MRS = 0x04001600 | trap_MRS;
946 param->reg_EMRS = 0x00000000;
947 param->reg_IOZ = 0x00000023;
948 param->reg_DRV = 0x000000FA;
949 param->reg_DQIDLY = 0x00000089;
950 param->reg_FREQ = 0x000050C0;
951 param->madj_max = 96;
952 param->dll2_finetune_step = 4;
954 switch (param->dram_chipid) {
956 case AST_DRAM_512Mx16:
958 param->reg_AC2 = 0xCC009617 | trap_AC2;
961 param->reg_AC2 = 0xCC009622 | trap_AC2;
964 param->reg_AC2 = 0xCC00963F | trap_AC2;
970 ast_moutdwm(ast, 0x1E6E2020, 0x0230);
972 param->reg_AC1 = 0x33302926;
973 param->reg_AC2 = 0xCD44961A;
974 param->reg_DQSIC = 0x000000FC;
975 param->reg_MRS = 0x00081830;
976 param->reg_EMRS = 0x00000000;
977 param->reg_IOZ = 0x00000045;
978 param->reg_DQIDLY = 0x00000097;
979 param->reg_FREQ = 0x000052C0;
980 param->madj_max = 88;
981 param->dll2_finetune_step = 4;
984 ast_moutdwm(ast, 0x1E6E2020, 0x0270);
986 param->reg_AC1 = 0x33302926;
987 param->reg_AC2 = 0xDE44A61D;
988 param->reg_DQSIC = 0x00000117;
989 param->reg_MRS = 0x00081A30;
990 param->reg_EMRS = 0x00000000;
991 param->reg_IOZ = 0x070000BB;
992 param->reg_DQIDLY = 0x000000A0;
993 param->reg_FREQ = 0x000054C0;
994 param->madj_max = 79;
995 param->dll2_finetune_step = 4;
998 ast_moutdwm(ast, 0x1E6E2020, 0x0290);
1001 param->reg_AC1 = 0x33302926;
1002 param->reg_AC2 = 0xEF44B61E;
1003 param->reg_DQSIC = 0x00000125;
1004 param->reg_MRS = 0x00081A30;
1005 param->reg_EMRS = 0x00000040;
1006 param->reg_DRV = 0x000000F5;
1007 param->reg_IOZ = 0x00000023;
1008 param->reg_DQIDLY = 0x00000088;
1009 param->reg_FREQ = 0x000055C0;
1010 param->madj_max = 76;
1011 param->dll2_finetune_step = 3;
1014 ast_moutdwm(ast, 0x1E6E2020, 0x0140);
1015 param->reg_MADJ = 0x00136868;
1016 param->reg_SADJ = 0x00004534;
1019 param->reg_AC1 = 0x33302A37;
1020 param->reg_AC2 = 0xEF56B61E;
1021 param->reg_DQSIC = 0x0000013F;
1022 param->reg_MRS = 0x00101A50;
1023 param->reg_EMRS = 0x00000040;
1024 param->reg_DRV = 0x000000FA;
1025 param->reg_IOZ = 0x00000023;
1026 param->reg_DQIDLY = 0x00000078;
1027 param->reg_FREQ = 0x000057C0;
1028 param->madj_max = 136;
1029 param->dll2_finetune_step = 3;
1032 ast_moutdwm(ast, 0x1E6E2020, 0x02E1);
1033 param->reg_MADJ = 0x00136868;
1034 param->reg_SADJ = 0x00004534;
1037 param->reg_AC1 = 0x32302A37;
1038 param->reg_AC2 = 0xDF56B61F;
1039 param->reg_DQSIC = 0x0000014D;
1040 param->reg_MRS = 0x00101A50;
1041 param->reg_EMRS = 0x00000004;
1042 param->reg_DRV = 0x000000F5;
1043 param->reg_IOZ = 0x00000023;
1044 param->reg_DQIDLY = 0x00000078;
1045 param->reg_FREQ = 0x000058C0;
1046 param->madj_max = 132;
1047 param->dll2_finetune_step = 3;
1050 ast_moutdwm(ast, 0x1E6E2020, 0x0160);
1051 param->reg_MADJ = 0x00136868;
1052 param->reg_SADJ = 0x00004534;
1055 param->reg_AC1 = 0x32302A37;
1056 param->reg_AC2 = 0xEF56B621;
1057 param->reg_DQSIC = 0x0000015A;
1058 param->reg_MRS = 0x02101A50;
1059 param->reg_EMRS = 0x00000004;
1060 param->reg_DRV = 0x000000F5;
1061 param->reg_IOZ = 0x00000034;
1062 param->reg_DQIDLY = 0x00000078;
1063 param->reg_FREQ = 0x000059C0;
1064 param->madj_max = 128;
1065 param->dll2_finetune_step = 3;
1069 switch (param->dram_chipid) {
1070 case AST_DRAM_512Mx16:
1071 param->dram_config = 0x130;
1074 case AST_DRAM_1Gx16:
1075 param->dram_config = 0x131;
1077 case AST_DRAM_2Gx16:
1078 param->dram_config = 0x132;
1080 case AST_DRAM_4Gx16:
1081 param->dram_config = 0x133;
1085 switch (param->vram_size) {
1087 case AST_VIDMEM_SIZE_8M:
1088 param->dram_config |= 0x00;
1090 case AST_VIDMEM_SIZE_16M:
1091 param->dram_config |= 0x04;
1093 case AST_VIDMEM_SIZE_32M:
1094 param->dram_config |= 0x08;
1096 case AST_VIDMEM_SIZE_64M:
1097 param->dram_config |= 0x0c;
1103 static void ddr3_init(struct ast_private *ast, struct ast2300_dram_param *param)
1105 u32 data, data2, retry = 0;
1108 ast_moutdwm(ast, 0x1E6E0000, 0xFC600309);
1109 ast_moutdwm(ast, 0x1E6E0018, 0x00000100);
1110 ast_moutdwm(ast, 0x1E6E0024, 0x00000000);
1111 ast_moutdwm(ast, 0x1E6E0034, 0x00000000);
1113 ast_moutdwm(ast, 0x1E6E0064, param->reg_MADJ);
1114 ast_moutdwm(ast, 0x1E6E0068, param->reg_SADJ);
1116 ast_moutdwm(ast, 0x1E6E0064, param->reg_MADJ | 0xC0000);
1119 ast_moutdwm(ast, 0x1E6E0004, param->dram_config);
1120 ast_moutdwm(ast, 0x1E6E0008, 0x90040f);
1121 ast_moutdwm(ast, 0x1E6E0010, param->reg_AC1);
1122 ast_moutdwm(ast, 0x1E6E0014, param->reg_AC2);
1123 ast_moutdwm(ast, 0x1E6E0020, param->reg_DQSIC);
1124 ast_moutdwm(ast, 0x1E6E0080, 0x00000000);
1125 ast_moutdwm(ast, 0x1E6E0084, 0x00000000);
1126 ast_moutdwm(ast, 0x1E6E0088, param->reg_DQIDLY);
1127 ast_moutdwm(ast, 0x1E6E0018, 0x4000A170);
1128 ast_moutdwm(ast, 0x1E6E0018, 0x00002370);
1129 ast_moutdwm(ast, 0x1E6E0038, 0x00000000);
1130 ast_moutdwm(ast, 0x1E6E0040, 0xFF444444);
1131 ast_moutdwm(ast, 0x1E6E0044, 0x22222222);
1132 ast_moutdwm(ast, 0x1E6E0048, 0x22222222);
1133 ast_moutdwm(ast, 0x1E6E004C, 0x00000002);
1134 ast_moutdwm(ast, 0x1E6E0050, 0x80000000);
1135 ast_moutdwm(ast, 0x1E6E0050, 0x00000000);
1136 ast_moutdwm(ast, 0x1E6E0054, 0);
1137 ast_moutdwm(ast, 0x1E6E0060, param->reg_DRV);
1138 ast_moutdwm(ast, 0x1E6E006C, param->reg_IOZ);
1139 ast_moutdwm(ast, 0x1E6E0070, 0x00000000);
1140 ast_moutdwm(ast, 0x1E6E0074, 0x00000000);
1141 ast_moutdwm(ast, 0x1E6E0078, 0x00000000);
1142 ast_moutdwm(ast, 0x1E6E007C, 0x00000000);
1143 /* Wait MCLK2X lock to MCLK */
1145 data = ast_mindwm(ast, 0x1E6E001C);
1146 } while (!(data & 0x08000000));
1147 data = ast_mindwm(ast, 0x1E6E001C);
1148 data = (data >> 8) & 0xff;
1149 while ((data & 0x08) || ((data & 0x7) < 2) || (data < 4)) {
1150 data2 = (ast_mindwm(ast, 0x1E6E0064) & 0xfff3ffff) + 4;
1151 if ((data2 & 0xff) > param->madj_max) {
1154 ast_moutdwm(ast, 0x1E6E0064, data2);
1155 if (data2 & 0x00100000) {
1156 data2 = ((data2 & 0xff) >> 3) + 3;
1158 data2 = ((data2 & 0xff) >> 2) + 5;
1160 data = ast_mindwm(ast, 0x1E6E0068) & 0xffff00ff;
1161 data2 += data & 0xff;
1162 data = data | (data2 << 8);
1163 ast_moutdwm(ast, 0x1E6E0068, data);
1165 ast_moutdwm(ast, 0x1E6E0064, ast_mindwm(ast, 0x1E6E0064) | 0xC0000);
1167 data = ast_mindwm(ast, 0x1E6E0018) & 0xfffff1ff;
1168 ast_moutdwm(ast, 0x1E6E0018, data);
1169 data = data | 0x200;
1170 ast_moutdwm(ast, 0x1E6E0018, data);
1172 data = ast_mindwm(ast, 0x1E6E001C);
1173 } while (!(data & 0x08000000));
1175 data = ast_mindwm(ast, 0x1E6E001C);
1176 data = (data >> 8) & 0xff;
1178 ast_moutdwm(ast, 0x1E720058, ast_mindwm(ast, 0x1E6E0068) & 0xffff);
1179 data = ast_mindwm(ast, 0x1E6E0018) | 0xC00;
1180 ast_moutdwm(ast, 0x1E6E0018, data);
1182 ast_moutdwm(ast, 0x1E6E0034, 0x00000001);
1183 ast_moutdwm(ast, 0x1E6E000C, 0x00000040);
1185 /* Mode Register Setting */
1186 ast_moutdwm(ast, 0x1E6E002C, param->reg_MRS | 0x100);
1187 ast_moutdwm(ast, 0x1E6E0030, param->reg_EMRS);
1188 ast_moutdwm(ast, 0x1E6E0028, 0x00000005);
1189 ast_moutdwm(ast, 0x1E6E0028, 0x00000007);
1190 ast_moutdwm(ast, 0x1E6E0028, 0x00000003);
1191 ast_moutdwm(ast, 0x1E6E0028, 0x00000001);
1192 ast_moutdwm(ast, 0x1E6E002C, param->reg_MRS);
1193 ast_moutdwm(ast, 0x1E6E000C, 0x00005C08);
1194 ast_moutdwm(ast, 0x1E6E0028, 0x00000001);
1196 ast_moutdwm(ast, 0x1E6E000C, 0x00005C01);
1202 data = data | 0x3000 | ((param->reg_AC2 & 0x60000) >> 3);
1204 ast_moutdwm(ast, 0x1E6E0034, data | 0x3);
1206 /* Calibrate the DQSI delay */
1207 if ((cbr_dll2(ast, param) == false) && (retry++ < 10))
1208 goto ddr3_init_start;
1210 ast_moutdwm(ast, 0x1E6E0120, param->reg_FREQ);
1211 /* ECC Memory Initialization */
1213 ast_moutdwm(ast, 0x1E6E007C, 0x00000000);
1214 ast_moutdwm(ast, 0x1E6E0070, 0x221);
1216 data = ast_mindwm(ast, 0x1E6E0070);
1217 } while (!(data & 0x00001000));
1218 ast_moutdwm(ast, 0x1E6E0070, 0x00000000);
1219 ast_moutdwm(ast, 0x1E6E0050, 0x80000000);
1220 ast_moutdwm(ast, 0x1E6E0050, 0x00000000);
1226 static void get_ddr2_info(struct ast_private *ast, struct ast2300_dram_param *param)
1228 u32 trap, trap_AC2, trap_MRS;
1230 ast_moutdwm(ast, 0x1E6E2000, 0x1688A8A8);
1233 trap = (ast_mindwm(ast, 0x1E6E2070) >> 25) & 0x3;
1234 trap_AC2 = (trap << 20) | (trap << 16);
1235 trap_AC2 += 0x00110000;
1236 trap_MRS = 0x00000040 | (trap << 4);
1239 param->reg_MADJ = 0x00034C4C;
1240 param->reg_SADJ = 0x00001800;
1241 param->reg_DRV = 0x000000F0;
1242 param->reg_PERIOD = param->dram_freq;
1245 switch (param->dram_freq) {
1247 ast_moutdwm(ast, 0x1E6E2020, 0x0130);
1249 param->reg_AC1 = 0x11101513;
1250 param->reg_AC2 = 0x78117011;
1251 param->reg_DQSIC = 0x00000092;
1252 param->reg_MRS = 0x00000842;
1253 param->reg_EMRS = 0x00000000;
1254 param->reg_DRV = 0x000000F0;
1255 param->reg_IOZ = 0x00000034;
1256 param->reg_DQIDLY = 0x0000005A;
1257 param->reg_FREQ = 0x00004AC0;
1258 param->madj_max = 138;
1259 param->dll2_finetune_step = 3;
1262 ast_moutdwm(ast, 0x1E6E2020, 0x0190);
1264 param->reg_AC1 = 0x22202613;
1265 param->reg_AC2 = 0xAA009016 | trap_AC2;
1266 param->reg_DQSIC = 0x000000BA;
1267 param->reg_MRS = 0x00000A02 | trap_MRS;
1268 param->reg_EMRS = 0x00000040;
1269 param->reg_DRV = 0x000000FA;
1270 param->reg_IOZ = 0x00000034;
1271 param->reg_DQIDLY = 0x00000074;
1272 param->reg_FREQ = 0x00004DC0;
1273 param->madj_max = 96;
1274 param->dll2_finetune_step = 3;
1275 switch (param->dram_chipid) {
1277 case AST_DRAM_512Mx16:
1278 param->reg_AC2 = 0xAA009012 | trap_AC2;
1280 case AST_DRAM_1Gx16:
1281 param->reg_AC2 = 0xAA009016 | trap_AC2;
1283 case AST_DRAM_2Gx16:
1284 param->reg_AC2 = 0xAA009023 | trap_AC2;
1286 case AST_DRAM_4Gx16:
1287 param->reg_AC2 = 0xAA00903B | trap_AC2;
1293 ast_moutdwm(ast, 0x1E6E2020, 0x03F1);
1296 param->reg_AC1 = 0x33302714;
1297 param->reg_AC2 = 0xCC00B01B | trap_AC2;
1298 param->reg_DQSIC = 0x000000E2;
1299 param->reg_MRS = 0x00000C02 | trap_MRS;
1300 param->reg_EMRS = 0x00000040;
1301 param->reg_DRV = 0x000000FA;
1302 param->reg_IOZ = 0x00000034;
1303 param->reg_DQIDLY = 0x00000089;
1304 param->reg_FREQ = 0x00005040;
1305 param->madj_max = 96;
1306 param->dll2_finetune_step = 4;
1308 switch (param->dram_chipid) {
1309 case AST_DRAM_512Mx16:
1310 param->reg_AC2 = 0xCC00B016 | trap_AC2;
1313 case AST_DRAM_1Gx16:
1314 param->reg_AC2 = 0xCC00B01B | trap_AC2;
1316 case AST_DRAM_2Gx16:
1317 param->reg_AC2 = 0xCC00B02B | trap_AC2;
1319 case AST_DRAM_4Gx16:
1320 param->reg_AC2 = 0xCC00B03F | trap_AC2;
1327 ast_moutdwm(ast, 0x1E6E2020, 0x01F0);
1330 param->reg_AC1 = 0x33302714;
1331 param->reg_AC2 = 0xCC00B01B | trap_AC2;
1332 param->reg_DQSIC = 0x000000E2;
1333 param->reg_MRS = 0x00000C02 | trap_MRS;
1334 param->reg_EMRS = 0x00000040;
1335 param->reg_DRV = 0x000000FA;
1336 param->reg_IOZ = 0x00000034;
1337 param->reg_DQIDLY = 0x00000089;
1338 param->reg_FREQ = 0x000050C0;
1339 param->madj_max = 96;
1340 param->dll2_finetune_step = 4;
1342 switch (param->dram_chipid) {
1343 case AST_DRAM_512Mx16:
1344 param->reg_AC2 = 0xCC00B016 | trap_AC2;
1347 case AST_DRAM_1Gx16:
1348 param->reg_AC2 = 0xCC00B01B | trap_AC2;
1350 case AST_DRAM_2Gx16:
1351 param->reg_AC2 = 0xCC00B02B | trap_AC2;
1353 case AST_DRAM_4Gx16:
1354 param->reg_AC2 = 0xCC00B03F | trap_AC2;
1360 ast_moutdwm(ast, 0x1E6E2020, 0x0230);
1362 param->reg_AC1 = 0x33302815;
1363 param->reg_AC2 = 0xCD44B01E;
1364 param->reg_DQSIC = 0x000000FC;
1365 param->reg_MRS = 0x00000E72;
1366 param->reg_EMRS = 0x00000000;
1367 param->reg_DRV = 0x00000000;
1368 param->reg_IOZ = 0x00000034;
1369 param->reg_DQIDLY = 0x00000097;
1370 param->reg_FREQ = 0x000052C0;
1371 param->madj_max = 88;
1372 param->dll2_finetune_step = 3;
1375 ast_moutdwm(ast, 0x1E6E2020, 0x0261);
1378 param->reg_AC1 = 0x33302815;
1379 param->reg_AC2 = 0xDE44C022;
1380 param->reg_DQSIC = 0x00000117;
1381 param->reg_MRS = 0x00000E72;
1382 param->reg_EMRS = 0x00000040;
1383 param->reg_DRV = 0x0000000A;
1384 param->reg_IOZ = 0x00000045;
1385 param->reg_DQIDLY = 0x000000A0;
1386 param->reg_FREQ = 0x000054C0;
1387 param->madj_max = 79;
1388 param->dll2_finetune_step = 3;
1391 ast_moutdwm(ast, 0x1E6E2020, 0x0120);
1394 param->reg_AC1 = 0x33302815;
1395 param->reg_AC2 = 0xEF44D024;
1396 param->reg_DQSIC = 0x00000125;
1397 param->reg_MRS = 0x00000E72;
1398 param->reg_EMRS = 0x00000004;
1399 param->reg_DRV = 0x000000F9;
1400 param->reg_IOZ = 0x00000045;
1401 param->reg_DQIDLY = 0x000000A7;
1402 param->reg_FREQ = 0x000055C0;
1403 param->madj_max = 76;
1404 param->dll2_finetune_step = 3;
1407 ast_moutdwm(ast, 0x1E6E2020, 0x02A1);
1410 param->reg_AC1 = 0x43402915;
1411 param->reg_AC2 = 0xFF44E025;
1412 param->reg_DQSIC = 0x00000132;
1413 param->reg_MRS = 0x00000E72;
1414 param->reg_EMRS = 0x00000040;
1415 param->reg_DRV = 0x0000000A;
1416 param->reg_IOZ = 0x00000045;
1417 param->reg_DQIDLY = 0x000000AD;
1418 param->reg_FREQ = 0x000056C0;
1419 param->madj_max = 76;
1420 param->dll2_finetune_step = 3;
1423 ast_moutdwm(ast, 0x1E6E2020, 0x0140);
1426 param->reg_AC1 = 0x43402915;
1427 param->reg_AC2 = 0xFF44E027;
1428 param->reg_DQSIC = 0x0000013F;
1429 param->reg_MRS = 0x00000E72;
1430 param->reg_EMRS = 0x00000004;
1431 param->reg_DRV = 0x000000F5;
1432 param->reg_IOZ = 0x00000045;
1433 param->reg_DQIDLY = 0x000000B3;
1434 param->reg_FREQ = 0x000057C0;
1435 param->madj_max = 76;
1436 param->dll2_finetune_step = 3;
1440 switch (param->dram_chipid) {
1441 case AST_DRAM_512Mx16:
1442 param->dram_config = 0x100;
1445 case AST_DRAM_1Gx16:
1446 param->dram_config = 0x121;
1448 case AST_DRAM_2Gx16:
1449 param->dram_config = 0x122;
1451 case AST_DRAM_4Gx16:
1452 param->dram_config = 0x123;
1456 switch (param->vram_size) {
1458 case AST_VIDMEM_SIZE_8M:
1459 param->dram_config |= 0x00;
1461 case AST_VIDMEM_SIZE_16M:
1462 param->dram_config |= 0x04;
1464 case AST_VIDMEM_SIZE_32M:
1465 param->dram_config |= 0x08;
1467 case AST_VIDMEM_SIZE_64M:
1468 param->dram_config |= 0x0c;
1473 static void ddr2_init(struct ast_private *ast, struct ast2300_dram_param *param)
1475 u32 data, data2, retry = 0;
1478 ast_moutdwm(ast, 0x1E6E0000, 0xFC600309);
1479 ast_moutdwm(ast, 0x1E6E0018, 0x00000100);
1480 ast_moutdwm(ast, 0x1E6E0024, 0x00000000);
1481 ast_moutdwm(ast, 0x1E6E0064, param->reg_MADJ);
1482 ast_moutdwm(ast, 0x1E6E0068, param->reg_SADJ);
1484 ast_moutdwm(ast, 0x1E6E0064, param->reg_MADJ | 0xC0000);
1487 ast_moutdwm(ast, 0x1E6E0004, param->dram_config);
1488 ast_moutdwm(ast, 0x1E6E0008, 0x90040f);
1489 ast_moutdwm(ast, 0x1E6E0010, param->reg_AC1);
1490 ast_moutdwm(ast, 0x1E6E0014, param->reg_AC2);
1491 ast_moutdwm(ast, 0x1E6E0020, param->reg_DQSIC);
1492 ast_moutdwm(ast, 0x1E6E0080, 0x00000000);
1493 ast_moutdwm(ast, 0x1E6E0084, 0x00000000);
1494 ast_moutdwm(ast, 0x1E6E0088, param->reg_DQIDLY);
1495 ast_moutdwm(ast, 0x1E6E0018, 0x4000A130);
1496 ast_moutdwm(ast, 0x1E6E0018, 0x00002330);
1497 ast_moutdwm(ast, 0x1E6E0038, 0x00000000);
1498 ast_moutdwm(ast, 0x1E6E0040, 0xFF808000);
1499 ast_moutdwm(ast, 0x1E6E0044, 0x88848466);
1500 ast_moutdwm(ast, 0x1E6E0048, 0x44440008);
1501 ast_moutdwm(ast, 0x1E6E004C, 0x00000000);
1502 ast_moutdwm(ast, 0x1E6E0050, 0x80000000);
1503 ast_moutdwm(ast, 0x1E6E0050, 0x00000000);
1504 ast_moutdwm(ast, 0x1E6E0054, 0);
1505 ast_moutdwm(ast, 0x1E6E0060, param->reg_DRV);
1506 ast_moutdwm(ast, 0x1E6E006C, param->reg_IOZ);
1507 ast_moutdwm(ast, 0x1E6E0070, 0x00000000);
1508 ast_moutdwm(ast, 0x1E6E0074, 0x00000000);
1509 ast_moutdwm(ast, 0x1E6E0078, 0x00000000);
1510 ast_moutdwm(ast, 0x1E6E007C, 0x00000000);
1512 /* Wait MCLK2X lock to MCLK */
1514 data = ast_mindwm(ast, 0x1E6E001C);
1515 } while (!(data & 0x08000000));
1516 data = ast_mindwm(ast, 0x1E6E001C);
1517 data = (data >> 8) & 0xff;
1518 while ((data & 0x08) || ((data & 0x7) < 2) || (data < 4)) {
1519 data2 = (ast_mindwm(ast, 0x1E6E0064) & 0xfff3ffff) + 4;
1520 if ((data2 & 0xff) > param->madj_max) {
1523 ast_moutdwm(ast, 0x1E6E0064, data2);
1524 if (data2 & 0x00100000) {
1525 data2 = ((data2 & 0xff) >> 3) + 3;
1527 data2 = ((data2 & 0xff) >> 2) + 5;
1529 data = ast_mindwm(ast, 0x1E6E0068) & 0xffff00ff;
1530 data2 += data & 0xff;
1531 data = data | (data2 << 8);
1532 ast_moutdwm(ast, 0x1E6E0068, data);
1534 ast_moutdwm(ast, 0x1E6E0064, ast_mindwm(ast, 0x1E6E0064) | 0xC0000);
1536 data = ast_mindwm(ast, 0x1E6E0018) & 0xfffff1ff;
1537 ast_moutdwm(ast, 0x1E6E0018, data);
1538 data = data | 0x200;
1539 ast_moutdwm(ast, 0x1E6E0018, data);
1541 data = ast_mindwm(ast, 0x1E6E001C);
1542 } while (!(data & 0x08000000));
1544 data = ast_mindwm(ast, 0x1E6E001C);
1545 data = (data >> 8) & 0xff;
1547 ast_moutdwm(ast, 0x1E720058, ast_mindwm(ast, 0x1E6E0008) & 0xffff);
1548 data = ast_mindwm(ast, 0x1E6E0018) | 0xC00;
1549 ast_moutdwm(ast, 0x1E6E0018, data);
1551 ast_moutdwm(ast, 0x1E6E0034, 0x00000001);
1552 ast_moutdwm(ast, 0x1E6E000C, 0x00000000);
1554 /* Mode Register Setting */
1555 ast_moutdwm(ast, 0x1E6E002C, param->reg_MRS | 0x100);
1556 ast_moutdwm(ast, 0x1E6E0030, param->reg_EMRS);
1557 ast_moutdwm(ast, 0x1E6E0028, 0x00000005);
1558 ast_moutdwm(ast, 0x1E6E0028, 0x00000007);
1559 ast_moutdwm(ast, 0x1E6E0028, 0x00000003);
1560 ast_moutdwm(ast, 0x1E6E0028, 0x00000001);
1562 ast_moutdwm(ast, 0x1E6E000C, 0x00005C08);
1563 ast_moutdwm(ast, 0x1E6E002C, param->reg_MRS);
1564 ast_moutdwm(ast, 0x1E6E0028, 0x00000001);
1565 ast_moutdwm(ast, 0x1E6E0030, param->reg_EMRS | 0x380);
1566 ast_moutdwm(ast, 0x1E6E0028, 0x00000003);
1567 ast_moutdwm(ast, 0x1E6E0030, param->reg_EMRS);
1568 ast_moutdwm(ast, 0x1E6E0028, 0x00000003);
1570 ast_moutdwm(ast, 0x1E6E000C, 0x7FFF5C01);
1576 data = data | 0x3000 | ((param->reg_AC2 & 0x60000) >> 3);
1578 ast_moutdwm(ast, 0x1E6E0034, data | 0x3);
1579 ast_moutdwm(ast, 0x1E6E0120, param->reg_FREQ);
1581 /* Calibrate the DQSI delay */
1582 if ((cbr_dll2(ast, param) == false) && (retry++ < 10))
1583 goto ddr2_init_start;
1585 /* ECC Memory Initialization */
1587 ast_moutdwm(ast, 0x1E6E007C, 0x00000000);
1588 ast_moutdwm(ast, 0x1E6E0070, 0x221);
1590 data = ast_mindwm(ast, 0x1E6E0070);
1591 } while (!(data & 0x00001000));
1592 ast_moutdwm(ast, 0x1E6E0070, 0x00000000);
1593 ast_moutdwm(ast, 0x1E6E0050, 0x80000000);
1594 ast_moutdwm(ast, 0x1E6E0050, 0x00000000);
1599 static void ast_post_chip_2300(struct drm_device *dev)
1601 struct ast_private *ast = to_ast_private(dev);
1602 struct ast2300_dram_param param;
1606 reg = ast_get_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xd0, 0xff);
1607 if ((reg & 0x80) == 0) {/* vga only */
1608 ast_write32(ast, 0xf004, 0x1e6e0000);
1609 ast_write32(ast, 0xf000, 0x1);
1610 ast_write32(ast, 0x12000, 0x1688a8a8);
1613 } while (ast_read32(ast, 0x12000) != 0x1);
1615 ast_write32(ast, 0x10000, 0xfc600309);
1618 } while (ast_read32(ast, 0x10000) != 0x1);
1620 /* Slow down CPU/AHB CLK in VGA only mode */
1621 temp = ast_read32(ast, 0x12008);
1623 ast_write32(ast, 0x12008, temp);
1625 param.dram_freq = 396;
1626 param.dram_type = AST_DDR3;
1627 temp = ast_mindwm(ast, 0x1e6e2070);
1628 if (temp & 0x01000000)
1629 param.dram_type = AST_DDR2;
1630 switch (temp & 0x18000000) {
1632 param.dram_chipid = AST_DRAM_512Mx16;
1636 param.dram_chipid = AST_DRAM_1Gx16;
1639 param.dram_chipid = AST_DRAM_2Gx16;
1642 param.dram_chipid = AST_DRAM_4Gx16;
1645 switch (temp & 0x0c) {
1648 param.vram_size = AST_VIDMEM_SIZE_8M;
1652 param.vram_size = AST_VIDMEM_SIZE_16M;
1656 param.vram_size = AST_VIDMEM_SIZE_32M;
1660 param.vram_size = AST_VIDMEM_SIZE_64M;
1664 if (param.dram_type == AST_DDR3) {
1665 get_ddr3_info(ast, ¶m);
1666 ddr3_init(ast, ¶m);
1668 get_ddr2_info(ast, ¶m);
1669 ddr2_init(ast, ¶m);
1672 temp = ast_mindwm(ast, 0x1e6e2040);
1673 ast_moutdwm(ast, 0x1e6e2040, temp | 0x40);
1678 reg = ast_get_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xd0, 0xff);
1679 } while ((reg & 0x40) == 0);
1682 static bool cbr_test_2500(struct ast_private *ast)
1684 ast_moutdwm(ast, 0x1E6E0074, 0x0000FFFF);
1685 ast_moutdwm(ast, 0x1E6E007C, 0xFF00FF00);
1686 if (!mmc_test_burst(ast, 0))
1688 if (!mmc_test_single_2500(ast, 0))
1693 static bool ddr_test_2500(struct ast_private *ast)
1695 ast_moutdwm(ast, 0x1E6E0074, 0x0000FFFF);
1696 ast_moutdwm(ast, 0x1E6E007C, 0xFF00FF00);
1697 if (!mmc_test_burst(ast, 0))
1699 if (!mmc_test_burst(ast, 1))
1701 if (!mmc_test_burst(ast, 2))
1703 if (!mmc_test_burst(ast, 3))
1705 if (!mmc_test_single_2500(ast, 0))
1710 static void ddr_init_common_2500(struct ast_private *ast)
1712 ast_moutdwm(ast, 0x1E6E0034, 0x00020080);
1713 ast_moutdwm(ast, 0x1E6E0008, 0x2003000F);
1714 ast_moutdwm(ast, 0x1E6E0038, 0x00000FFF);
1715 ast_moutdwm(ast, 0x1E6E0040, 0x88448844);
1716 ast_moutdwm(ast, 0x1E6E0044, 0x24422288);
1717 ast_moutdwm(ast, 0x1E6E0048, 0x22222222);
1718 ast_moutdwm(ast, 0x1E6E004C, 0x22222222);
1719 ast_moutdwm(ast, 0x1E6E0050, 0x80000000);
1720 ast_moutdwm(ast, 0x1E6E0208, 0x00000000);
1721 ast_moutdwm(ast, 0x1E6E0218, 0x00000000);
1722 ast_moutdwm(ast, 0x1E6E0220, 0x00000000);
1723 ast_moutdwm(ast, 0x1E6E0228, 0x00000000);
1724 ast_moutdwm(ast, 0x1E6E0230, 0x00000000);
1725 ast_moutdwm(ast, 0x1E6E02A8, 0x00000000);
1726 ast_moutdwm(ast, 0x1E6E02B0, 0x00000000);
1727 ast_moutdwm(ast, 0x1E6E0240, 0x86000000);
1728 ast_moutdwm(ast, 0x1E6E0244, 0x00008600);
1729 ast_moutdwm(ast, 0x1E6E0248, 0x80000000);
1730 ast_moutdwm(ast, 0x1E6E024C, 0x80808080);
1733 static void ddr_phy_init_2500(struct ast_private *ast)
1735 u32 data, pass, timecnt;
1738 ast_moutdwm(ast, 0x1E6E0060, 0x00000005);
1740 for (timecnt = 0; timecnt < TIMEOUT; timecnt++) {
1741 data = ast_mindwm(ast, 0x1E6E0060) & 0x1;
1745 if (timecnt != TIMEOUT) {
1746 data = ast_mindwm(ast, 0x1E6E0300) & 0x000A0000;
1751 ast_moutdwm(ast, 0x1E6E0060, 0x00000000);
1752 udelay(10); /* delay 10 us */
1753 ast_moutdwm(ast, 0x1E6E0060, 0x00000005);
1757 ast_moutdwm(ast, 0x1E6E0060, 0x00000006);
1762 * 1Gb : 0x80000000 ~ 0x87FFFFFF
1763 * 2Gb : 0x80000000 ~ 0x8FFFFFFF
1764 * 4Gb : 0x80000000 ~ 0x9FFFFFFF
1765 * 8Gb : 0x80000000 ~ 0xBFFFFFFF
1767 static void check_dram_size_2500(struct ast_private *ast, u32 tRFC)
1771 reg_04 = ast_mindwm(ast, 0x1E6E0004) & 0xfffffffc;
1772 reg_14 = ast_mindwm(ast, 0x1E6E0014) & 0xffffff00;
1774 ast_moutdwm(ast, 0xA0100000, 0x41424344);
1775 ast_moutdwm(ast, 0x90100000, 0x35363738);
1776 ast_moutdwm(ast, 0x88100000, 0x292A2B2C);
1777 ast_moutdwm(ast, 0x80100000, 0x1D1E1F10);
1780 if (ast_mindwm(ast, 0xA0100000) == 0x41424344) {
1782 reg_14 |= (tRFC >> 24) & 0xFF;
1784 } else if (ast_mindwm(ast, 0x90100000) == 0x35363738) {
1786 reg_14 |= (tRFC >> 16) & 0xFF;
1788 } else if (ast_mindwm(ast, 0x88100000) == 0x292A2B2C) {
1790 reg_14 |= (tRFC >> 8) & 0xFF;
1792 reg_14 |= tRFC & 0xFF;
1794 ast_moutdwm(ast, 0x1E6E0004, reg_04);
1795 ast_moutdwm(ast, 0x1E6E0014, reg_14);
1798 static void enable_cache_2500(struct ast_private *ast)
1802 reg_04 = ast_mindwm(ast, 0x1E6E0004);
1803 ast_moutdwm(ast, 0x1E6E0004, reg_04 | 0x1000);
1806 data = ast_mindwm(ast, 0x1E6E0004);
1807 while (!(data & 0x80000));
1808 ast_moutdwm(ast, 0x1E6E0004, reg_04 | 0x400);
1811 static void set_mpll_2500(struct ast_private *ast)
1813 u32 addr, data, param;
1816 ast_moutdwm(ast, 0x1E6E0000, 0xFC600309);
1817 ast_moutdwm(ast, 0x1E6E0034, 0x00020080);
1818 for (addr = 0x1e6e0004; addr < 0x1e6e0090;) {
1819 ast_moutdwm(ast, addr, 0x0);
1822 ast_moutdwm(ast, 0x1E6E0034, 0x00020000);
1824 ast_moutdwm(ast, 0x1E6E2000, 0x1688A8A8);
1825 data = ast_mindwm(ast, 0x1E6E2070) & 0x00800000;
1829 ast_moutdwm(ast, 0x1E6E2160, 0x00011320);
1834 ast_moutdwm(ast, 0x1E6E2020, param);
1838 static void reset_mmc_2500(struct ast_private *ast)
1840 ast_moutdwm(ast, 0x1E78505C, 0x00000004);
1841 ast_moutdwm(ast, 0x1E785044, 0x00000001);
1842 ast_moutdwm(ast, 0x1E785048, 0x00004755);
1843 ast_moutdwm(ast, 0x1E78504C, 0x00000013);
1845 ast_moutdwm(ast, 0x1E785054, 0x00000077);
1846 ast_moutdwm(ast, 0x1E6E0000, 0xFC600309);
1849 static void ddr3_init_2500(struct ast_private *ast, const u32 *ddr_table)
1852 ast_moutdwm(ast, 0x1E6E0004, 0x00000303);
1853 ast_moutdwm(ast, 0x1E6E0010, ddr_table[REGIDX_010]);
1854 ast_moutdwm(ast, 0x1E6E0014, ddr_table[REGIDX_014]);
1855 ast_moutdwm(ast, 0x1E6E0018, ddr_table[REGIDX_018]);
1856 ast_moutdwm(ast, 0x1E6E0020, ddr_table[REGIDX_020]); /* MODEREG4/6 */
1857 ast_moutdwm(ast, 0x1E6E0024, ddr_table[REGIDX_024]); /* MODEREG5 */
1858 ast_moutdwm(ast, 0x1E6E002C, ddr_table[REGIDX_02C] | 0x100); /* MODEREG0/2 */
1859 ast_moutdwm(ast, 0x1E6E0030, ddr_table[REGIDX_030]); /* MODEREG1/3 */
1861 /* DDR PHY Setting */
1862 ast_moutdwm(ast, 0x1E6E0200, 0x02492AAE);
1863 ast_moutdwm(ast, 0x1E6E0204, 0x00001001);
1864 ast_moutdwm(ast, 0x1E6E020C, 0x55E00B0B);
1865 ast_moutdwm(ast, 0x1E6E0210, 0x20000000);
1866 ast_moutdwm(ast, 0x1E6E0214, ddr_table[REGIDX_214]);
1867 ast_moutdwm(ast, 0x1E6E02E0, ddr_table[REGIDX_2E0]);
1868 ast_moutdwm(ast, 0x1E6E02E4, ddr_table[REGIDX_2E4]);
1869 ast_moutdwm(ast, 0x1E6E02E8, ddr_table[REGIDX_2E8]);
1870 ast_moutdwm(ast, 0x1E6E02EC, ddr_table[REGIDX_2EC]);
1871 ast_moutdwm(ast, 0x1E6E02F0, ddr_table[REGIDX_2F0]);
1872 ast_moutdwm(ast, 0x1E6E02F4, ddr_table[REGIDX_2F4]);
1873 ast_moutdwm(ast, 0x1E6E02F8, ddr_table[REGIDX_2F8]);
1874 ast_moutdwm(ast, 0x1E6E0290, 0x00100008);
1875 ast_moutdwm(ast, 0x1E6E02C0, 0x00000006);
1877 /* Controller Setting */
1878 ast_moutdwm(ast, 0x1E6E0034, 0x00020091);
1880 /* Wait DDR PHY init done */
1881 ddr_phy_init_2500(ast);
1883 ast_moutdwm(ast, 0x1E6E0120, ddr_table[REGIDX_PLL]);
1884 ast_moutdwm(ast, 0x1E6E000C, 0x42AA5C81);
1885 ast_moutdwm(ast, 0x1E6E0034, 0x0001AF93);
1887 check_dram_size_2500(ast, ddr_table[REGIDX_RFC]);
1888 enable_cache_2500(ast);
1889 ast_moutdwm(ast, 0x1E6E001C, 0x00000008);
1890 ast_moutdwm(ast, 0x1E6E0038, 0xFFFFFF00);
1893 static void ddr4_init_2500(struct ast_private *ast, const u32 *ddr_table)
1895 u32 data, data2, pass, retrycnt;
1896 u32 ddr_vref, phy_vref;
1897 u32 min_ddr_vref = 0, min_phy_vref = 0;
1898 u32 max_ddr_vref = 0, max_phy_vref = 0;
1900 ast_moutdwm(ast, 0x1E6E0004, 0x00000313);
1901 ast_moutdwm(ast, 0x1E6E0010, ddr_table[REGIDX_010]);
1902 ast_moutdwm(ast, 0x1E6E0014, ddr_table[REGIDX_014]);
1903 ast_moutdwm(ast, 0x1E6E0018, ddr_table[REGIDX_018]);
1904 ast_moutdwm(ast, 0x1E6E0020, ddr_table[REGIDX_020]); /* MODEREG4/6 */
1905 ast_moutdwm(ast, 0x1E6E0024, ddr_table[REGIDX_024]); /* MODEREG5 */
1906 ast_moutdwm(ast, 0x1E6E002C, ddr_table[REGIDX_02C] | 0x100); /* MODEREG0/2 */
1907 ast_moutdwm(ast, 0x1E6E0030, ddr_table[REGIDX_030]); /* MODEREG1/3 */
1909 /* DDR PHY Setting */
1910 ast_moutdwm(ast, 0x1E6E0200, 0x42492AAE);
1911 ast_moutdwm(ast, 0x1E6E0204, 0x09002000);
1912 ast_moutdwm(ast, 0x1E6E020C, 0x55E00B0B);
1913 ast_moutdwm(ast, 0x1E6E0210, 0x20000000);
1914 ast_moutdwm(ast, 0x1E6E0214, ddr_table[REGIDX_214]);
1915 ast_moutdwm(ast, 0x1E6E02E0, ddr_table[REGIDX_2E0]);
1916 ast_moutdwm(ast, 0x1E6E02E4, ddr_table[REGIDX_2E4]);
1917 ast_moutdwm(ast, 0x1E6E02E8, ddr_table[REGIDX_2E8]);
1918 ast_moutdwm(ast, 0x1E6E02EC, ddr_table[REGIDX_2EC]);
1919 ast_moutdwm(ast, 0x1E6E02F0, ddr_table[REGIDX_2F0]);
1920 ast_moutdwm(ast, 0x1E6E02F4, ddr_table[REGIDX_2F4]);
1921 ast_moutdwm(ast, 0x1E6E02F8, ddr_table[REGIDX_2F8]);
1922 ast_moutdwm(ast, 0x1E6E0290, 0x00100008);
1923 ast_moutdwm(ast, 0x1E6E02C4, 0x3C183C3C);
1924 ast_moutdwm(ast, 0x1E6E02C8, 0x00631E0E);
1926 /* Controller Setting */
1927 ast_moutdwm(ast, 0x1E6E0034, 0x0001A991);
1929 /* Train PHY Vref first */
1932 for (retrycnt = 0; retrycnt < 4 && pass == 0; retrycnt++) {
1935 ast_moutdwm(ast, 0x1E6E02C0, 0x00001C06);
1936 for (phy_vref = 0x40; phy_vref < 0x80; phy_vref++) {
1937 ast_moutdwm(ast, 0x1E6E000C, 0x00000000);
1938 ast_moutdwm(ast, 0x1E6E0060, 0x00000000);
1939 ast_moutdwm(ast, 0x1E6E02CC, phy_vref | (phy_vref << 8));
1941 ddr_phy_init_2500(ast);
1942 ast_moutdwm(ast, 0x1E6E000C, 0x00005C01);
1943 if (cbr_test_2500(ast)) {
1945 data = ast_mindwm(ast, 0x1E6E03D0);
1950 if (max_phy_vref < data) {
1951 max_phy_vref = data;
1952 min_phy_vref = phy_vref;
1954 } else if (pass > 0)
1958 ast_moutdwm(ast, 0x1E6E02CC, min_phy_vref | (min_phy_vref << 8));
1960 /* Train DDR Vref next */
1963 for (retrycnt = 0; retrycnt < 4 && pass == 0; retrycnt++) {
1964 min_ddr_vref = 0xFF;
1967 for (ddr_vref = 0x00; ddr_vref < 0x40; ddr_vref++) {
1968 ast_moutdwm(ast, 0x1E6E000C, 0x00000000);
1969 ast_moutdwm(ast, 0x1E6E0060, 0x00000000);
1970 ast_moutdwm(ast, 0x1E6E02C0, 0x00000006 | (ddr_vref << 8));
1972 ddr_phy_init_2500(ast);
1973 ast_moutdwm(ast, 0x1E6E000C, 0x00005C01);
1974 if (cbr_test_2500(ast)) {
1976 if (min_ddr_vref > ddr_vref)
1977 min_ddr_vref = ddr_vref;
1978 if (max_ddr_vref < ddr_vref)
1979 max_ddr_vref = ddr_vref;
1980 } else if (pass != 0)
1985 ast_moutdwm(ast, 0x1E6E000C, 0x00000000);
1986 ast_moutdwm(ast, 0x1E6E0060, 0x00000000);
1987 ddr_vref = (min_ddr_vref + max_ddr_vref + 1) >> 1;
1988 ast_moutdwm(ast, 0x1E6E02C0, 0x00000006 | (ddr_vref << 8));
1990 /* Wait DDR PHY init done */
1991 ddr_phy_init_2500(ast);
1993 ast_moutdwm(ast, 0x1E6E0120, ddr_table[REGIDX_PLL]);
1994 ast_moutdwm(ast, 0x1E6E000C, 0x42AA5C81);
1995 ast_moutdwm(ast, 0x1E6E0034, 0x0001AF93);
1997 check_dram_size_2500(ast, ddr_table[REGIDX_RFC]);
1998 enable_cache_2500(ast);
1999 ast_moutdwm(ast, 0x1E6E001C, 0x00000008);
2000 ast_moutdwm(ast, 0x1E6E0038, 0xFFFFFF00);
2003 static bool ast_dram_init_2500(struct ast_private *ast)
2009 if (max_tries-- == 0)
2012 reset_mmc_2500(ast);
2013 ddr_init_common_2500(ast);
2015 data = ast_mindwm(ast, 0x1E6E2070);
2016 if (data & 0x01000000)
2017 ddr4_init_2500(ast, ast2500_ddr4_1600_timing_table);
2019 ddr3_init_2500(ast, ast2500_ddr3_1600_timing_table);
2020 } while (!ddr_test_2500(ast));
2022 ast_moutdwm(ast, 0x1E6E2040, ast_mindwm(ast, 0x1E6E2040) | 0x41);
2025 data = ast_mindwm(ast, 0x1E6E200C) & 0xF9FFFFFF;
2026 ast_moutdwm(ast, 0x1E6E200C, data | 0x10000000);
2031 void ast_post_chip_2500(struct drm_device *dev)
2033 struct ast_private *ast = to_ast_private(dev);
2037 reg = ast_get_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xd0, 0xff);
2038 if ((reg & 0x80) == 0) {/* vga only */
2039 /* Clear bus lock condition */
2040 ast_moutdwm(ast, 0x1e600000, 0xAEED1A03);
2041 ast_moutdwm(ast, 0x1e600084, 0x00010000);
2042 ast_moutdwm(ast, 0x1e600088, 0x00000000);
2043 ast_moutdwm(ast, 0x1e6e2000, 0x1688A8A8);
2044 ast_write32(ast, 0xf004, 0x1e6e0000);
2045 ast_write32(ast, 0xf000, 0x1);
2046 ast_write32(ast, 0x12000, 0x1688a8a8);
2047 while (ast_read32(ast, 0x12000) != 0x1)
2050 ast_write32(ast, 0x10000, 0xfc600309);
2051 while (ast_read32(ast, 0x10000) != 0x1)
2054 /* Slow down CPU/AHB CLK in VGA only mode */
2055 temp = ast_read32(ast, 0x12008);
2057 ast_write32(ast, 0x12008, temp);
2059 /* Reset USB port to patch USB unknown device issue */
2060 ast_moutdwm(ast, 0x1e6e2090, 0x20000000);
2061 temp = ast_mindwm(ast, 0x1e6e2094);
2063 ast_moutdwm(ast, 0x1e6e2094, temp);
2064 temp = ast_mindwm(ast, 0x1e6e2070);
2065 if (temp & 0x00800000) {
2066 ast_moutdwm(ast, 0x1e6e207c, 0x00800000);
2068 ast_moutdwm(ast, 0x1e6e2070, 0x00800000);
2071 if (!ast_dram_init_2500(ast))
2072 drm_err(dev, "DRAM init failed !\n");
2074 temp = ast_mindwm(ast, 0x1e6e2040);
2075 ast_moutdwm(ast, 0x1e6e2040, temp | 0x40);
2080 reg = ast_get_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xd0, 0xff);
2081 } while ((reg & 0x40) == 0);