Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Dave Liu | 19b247e | 2008-01-11 18:48:24 +0800 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2007 Freescale Semiconductor, Inc. |
| 4 | * |
| 5 | * Authors: Nick.Spence@freescale.com |
| 6 | * Wilson.Lo@freescale.com |
| 7 | * scottwood@freescale.com |
Dave Liu | 19b247e | 2008-01-11 18:48:24 +0800 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <common.h> |
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 11 | #include <init.h> |
Dave Liu | 19b247e | 2008-01-11 18:48:24 +0800 | [diff] [blame] | 12 | #include <mpc83xx.h> |
| 13 | #include <spd_sdram.h> |
Simon Glass | dbd7954 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 14 | #include <linux/delay.h> |
Dave Liu | 19b247e | 2008-01-11 18:48:24 +0800 | [diff] [blame] | 15 | |
| 16 | #include <asm/bitops.h> |
| 17 | #include <asm/io.h> |
| 18 | |
| 19 | #include <asm/processor.h> |
| 20 | |
| 21 | DECLARE_GLOBAL_DATA_PTR; |
| 22 | |
| 23 | static void resume_from_sleep(void) |
| 24 | { |
| 25 | u32 magic = *(u32 *)0; |
| 26 | |
| 27 | typedef void (*func_t)(void); |
| 28 | func_t resume = *(func_t *)4; |
| 29 | |
| 30 | if (magic == 0xf5153ae5) |
| 31 | resume(); |
| 32 | |
| 33 | gd->flags &= ~GD_FLG_SILENT; |
| 34 | puts("\nResume from sleep failed: bad magic word\n"); |
| 35 | } |
| 36 | |
| 37 | /* Fixed sdram init -- doesn't use serial presence detect. |
| 38 | * |
| 39 | * This is useful for faster booting in configs where the RAM is unlikely |
| 40 | * to be changed, or for things like NAND booting where space is tight. |
| 41 | */ |
Anton Vorontsov | ec82175 | 2009-11-24 20:12:12 +0300 | [diff] [blame] | 42 | #ifndef CONFIG_SYS_RAMBOOT |
Dave Liu | 19b247e | 2008-01-11 18:48:24 +0800 | [diff] [blame] | 43 | static long fixed_sdram(void) |
| 44 | { |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 45 | volatile immap_t *im = (volatile immap_t *)CONFIG_SYS_IMMR; |
| 46 | u32 msize = CONFIG_SYS_DDR_SIZE * 1024 * 1024; |
Dave Liu | 19b247e | 2008-01-11 18:48:24 +0800 | [diff] [blame] | 47 | u32 msize_log2 = __ilog2(msize); |
| 48 | |
Mario Six | 805cac1 | 2019-01-21 09:18:16 +0100 | [diff] [blame] | 49 | im->sysconf.ddrlaw[0].bar = CONFIG_SYS_SDRAM_BASE & 0xfffff000; |
Dave Liu | 19b247e | 2008-01-11 18:48:24 +0800 | [diff] [blame] | 50 | im->sysconf.ddrlaw[0].ar = LBLAWAR_EN | (msize_log2 - 1); |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 51 | im->sysconf.ddrcdr = CONFIG_SYS_DDRCDR_VALUE; |
Dave Liu | 19b247e | 2008-01-11 18:48:24 +0800 | [diff] [blame] | 52 | |
| 53 | /* |
| 54 | * Erratum DDR3 requires a 50ms delay after clearing DDRCDR[DDR_cfg], |
| 55 | * or the DDR2 controller may fail to initialize correctly. |
| 56 | */ |
Anton Vorontsov | ec82175 | 2009-11-24 20:12:12 +0300 | [diff] [blame] | 57 | __udelay(50000); |
Dave Liu | 19b247e | 2008-01-11 18:48:24 +0800 | [diff] [blame] | 58 | |
| 59 | im->ddr.csbnds[0].csbnds = (msize - 1) >> 24; |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 60 | im->ddr.cs_config[0] = CONFIG_SYS_DDR_CS0_CONFIG; |
Dave Liu | 19b247e | 2008-01-11 18:48:24 +0800 | [diff] [blame] | 61 | |
| 62 | /* Currently we use only one CS, so disable the other bank. */ |
| 63 | im->ddr.cs_config[1] = 0; |
| 64 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 65 | im->ddr.sdram_clk_cntl = CONFIG_SYS_DDR_SDRAM_CLK_CNTL; |
| 66 | im->ddr.timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3; |
| 67 | im->ddr.timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1; |
| 68 | im->ddr.timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2; |
| 69 | im->ddr.timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0; |
Dave Liu | 19b247e | 2008-01-11 18:48:24 +0800 | [diff] [blame] | 70 | |
| 71 | if (im->pmc.pmccr1 & PMCCR1_POWER_OFF) |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 72 | im->ddr.sdram_cfg = CONFIG_SYS_DDR_SDRAM_CFG | SDRAM_CFG_BI; |
Dave Liu | 19b247e | 2008-01-11 18:48:24 +0800 | [diff] [blame] | 73 | else |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 74 | im->ddr.sdram_cfg = CONFIG_SYS_DDR_SDRAM_CFG; |
Dave Liu | 19b247e | 2008-01-11 18:48:24 +0800 | [diff] [blame] | 75 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 76 | im->ddr.sdram_cfg2 = CONFIG_SYS_DDR_SDRAM_CFG2; |
| 77 | im->ddr.sdram_mode = CONFIG_SYS_DDR_MODE; |
| 78 | im->ddr.sdram_mode2 = CONFIG_SYS_DDR_MODE2; |
Dave Liu | 19b247e | 2008-01-11 18:48:24 +0800 | [diff] [blame] | 79 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 80 | im->ddr.sdram_interval = CONFIG_SYS_DDR_INTERVAL; |
Dave Liu | 19b247e | 2008-01-11 18:48:24 +0800 | [diff] [blame] | 81 | sync(); |
| 82 | |
| 83 | /* enable DDR controller */ |
| 84 | im->ddr.sdram_cfg |= SDRAM_CFG_MEM_EN; |
| 85 | sync(); |
| 86 | |
| 87 | return msize; |
| 88 | } |
Anton Vorontsov | ec82175 | 2009-11-24 20:12:12 +0300 | [diff] [blame] | 89 | #else |
| 90 | static long fixed_sdram(void) |
| 91 | { |
| 92 | return CONFIG_SYS_DDR_SIZE * 1024 * 1024; |
| 93 | } |
| 94 | #endif /* CONFIG_SYS_RAMBOOT */ |
Dave Liu | 19b247e | 2008-01-11 18:48:24 +0800 | [diff] [blame] | 95 | |
Simon Glass | d35f338 | 2017-04-06 12:47:05 -0600 | [diff] [blame] | 96 | int dram_init(void) |
Dave Liu | 19b247e | 2008-01-11 18:48:24 +0800 | [diff] [blame] | 97 | { |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 98 | volatile immap_t *im = (volatile immap_t *)CONFIG_SYS_IMMR; |
Dave Liu | 19b247e | 2008-01-11 18:48:24 +0800 | [diff] [blame] | 99 | u32 msize; |
| 100 | |
| 101 | if ((im->sysconf.immrbar & IMMRBAR_BASE_ADDR) != (u32)im) |
Simon Glass | 39f90ba | 2017-03-31 08:40:25 -0600 | [diff] [blame] | 102 | return -ENXIO; |
Dave Liu | 19b247e | 2008-01-11 18:48:24 +0800 | [diff] [blame] | 103 | |
| 104 | /* DDR SDRAM */ |
| 105 | msize = fixed_sdram(); |
| 106 | |
| 107 | if (im->pmc.pmccr1 & PMCCR1_POWER_OFF) |
| 108 | resume_from_sleep(); |
| 109 | |
Simon Glass | 39f90ba | 2017-03-31 08:40:25 -0600 | [diff] [blame] | 110 | /* set total bus SDRAM size(bytes) -- DDR */ |
| 111 | gd->ram_size = msize; |
| 112 | |
| 113 | return 0; |
Dave Liu | 19b247e | 2008-01-11 18:48:24 +0800 | [diff] [blame] | 114 | } |