Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Angelo Dureghello | 89ae64c | 2017-05-14 21:42:27 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Board-specific sbf ddr/sdram init. |
| 4 | * |
| 5 | * (C) Copyright 2017 Angelo Dureghello <angelo@sysam.it> |
Angelo Dureghello | 89ae64c | 2017-05-14 21:42:27 +0200 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <config.h> |
| 9 | |
| 10 | .global sbf_dram_init |
| 11 | .text |
| 12 | |
| 13 | sbf_dram_init: |
| 14 | /* Dram Initialization a1, a2, and d0 */ |
| 15 | /* mscr sdram */ |
| 16 | move.l #0xFC0A4074, %a1 |
| 17 | move.b #(CONFIG_SYS_SDRAM_DRV_STRENGTH), (%a1) |
| 18 | nop |
| 19 | |
| 20 | /* SDRAM Chip 0 and 1 */ |
| 21 | move.l #0xFC0B8110, %a1 |
| 22 | move.l #0xFC0B8114, %a2 |
| 23 | |
| 24 | /* calculate the size */ |
| 25 | move.l #0x13, %d1 |
| 26 | move.l #(CONFIG_SYS_SDRAM_SIZE), %d2 |
| 27 | #ifdef CONFIG_SYS_SDRAM_BASE1 |
| 28 | lsr.l #1, %d2 |
| 29 | #endif |
| 30 | |
| 31 | dramsz_loop: |
| 32 | lsr.l #1, %d2 |
| 33 | add.l #1, %d1 |
| 34 | cmp.l #1, %d2 |
| 35 | bne dramsz_loop |
| 36 | #ifdef CONFIG_SYS_NAND_BOOT |
| 37 | beq asm_nand_chk_status |
| 38 | #endif |
| 39 | /* SDRAM Chip 0 and 1 */ |
| 40 | move.l #(CONFIG_SYS_SDRAM_BASE), (%a1) |
| 41 | or.l %d1, (%a1) |
| 42 | #ifdef CONFIG_SYS_SDRAM_BASE1 |
| 43 | move.l #(CONFIG_SYS_SDRAM_BASE1), (%a2) |
| 44 | or.l %d1, (%a2) |
| 45 | #endif |
| 46 | nop |
| 47 | |
| 48 | /* dram cfg1 and cfg2 */ |
| 49 | move.l #0xFC0B8008, %a1 |
| 50 | move.l #(CONFIG_SYS_SDRAM_CFG1), (%a1) |
| 51 | nop |
| 52 | move.l #0xFC0B800C, %a2 |
| 53 | move.l #(CONFIG_SYS_SDRAM_CFG2), (%a2) |
| 54 | nop |
| 55 | |
| 56 | move.l #0xFC0B8000, %a1 /* Mode */ |
| 57 | move.l #0xFC0B8004, %a2 /* Ctrl */ |
| 58 | |
| 59 | /* Issue PALL */ |
| 60 | move.l #(CONFIG_SYS_SDRAM_CTRL + 2), (%a2) |
| 61 | nop |
| 62 | |
| 63 | move.l #1000, %d1 |
| 64 | bsr asm_delay |
| 65 | |
| 66 | /* Issue PALL */ |
| 67 | move.l #(CONFIG_SYS_SDRAM_CTRL + 2), (%a2) |
| 68 | nop |
| 69 | |
| 70 | /* Perform two refresh cycles */ |
| 71 | move.l #(CONFIG_SYS_SDRAM_CTRL + 4), %d0 |
| 72 | nop |
| 73 | move.l %d0, (%a2) |
| 74 | move.l %d0, (%a2) |
| 75 | nop |
| 76 | |
| 77 | /* Issue LEMR */ |
| 78 | move.l #(CONFIG_SYS_SDRAM_MODE), (%a1) |
| 79 | nop |
| 80 | move.l #(CONFIG_SYS_SDRAM_EMOD), (%a1) |
| 81 | |
| 82 | move.l #500, %d1 |
| 83 | bsr asm_delay |
| 84 | |
| 85 | move.l #(CONFIG_SYS_SDRAM_CTRL), %d1 |
| 86 | and.l #0x7FFFFFFF, %d1 |
| 87 | |
| 88 | or.l #0x10000C00, %d1 |
| 89 | |
| 90 | move.l %d1, (%a2) |
| 91 | nop |
| 92 | |
| 93 | move.l #2000, %d1 |
| 94 | bsr asm_delay |
| 95 | |
| 96 | rts |