36500da6f4f7ed1c814c13ee4335c3234dac2829
[platform/kernel/u-boot.git] / board / amcc / acadia / memory.c
1 /*
2  * (C) Copyright 2007
3  * Stefan Roese, DENX Software Engineering, sr@denx.de.
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 /* define DEBUG for debugging output (obviously ;-)) */
9 #if 0
10 #define DEBUG
11 #endif
12
13 #include <common.h>
14 #include <asm/processor.h>
15 #include <asm/io.h>
16 #include <asm/ppc4xx-gpio.h>
17
18 DECLARE_GLOBAL_DATA_PTR;
19
20 extern void board_pll_init_f(void);
21
22 static void cram_bcr_write(u32 wr_val)
23 {
24         wr_val <<= 2;
25
26         /* set CRAM_CRE to 1 */
27         gpio_write_bit(CONFIG_SYS_GPIO_CRAM_CRE, 1);
28
29         /* Write BCR to CRAM on CS1 */
30         out32(wr_val + 0x00200000, 0);
31         debug("CRAM VAL: %08x for CS1 ", wr_val + 0x00200000);
32
33         /* Write BCR to CRAM on CS2 */
34         out32(wr_val + 0x02200000, 0);
35         debug("CRAM VAL: %08x for CS2\n", wr_val + 0x02200000);
36
37         sync();
38         eieio();
39
40         /* set CRAM_CRE back to 0 (normal operation) */
41         gpio_write_bit(CONFIG_SYS_GPIO_CRAM_CRE, 0);
42
43         return;
44 }
45
46 int dram_init(void)
47 {
48         int i;
49         u32 val;
50
51         /* 1. EBC need to program READY, CLK, ADV for ASync mode */
52         gpio_config(CONFIG_SYS_GPIO_CRAM_CLK, GPIO_OUT, GPIO_SEL, GPIO_OUT_0);
53         gpio_config(CONFIG_SYS_GPIO_CRAM_ADV, GPIO_OUT, GPIO_SEL, GPIO_OUT_0);
54         gpio_config(CONFIG_SYS_GPIO_CRAM_CRE, GPIO_OUT, GPIO_SEL, GPIO_OUT_0);
55         gpio_config(CONFIG_SYS_GPIO_CRAM_WAIT, GPIO_IN, GPIO_SEL, GPIO_OUT_NO_CHG);
56
57         /* 2. EBC in Async mode */
58         mtebc(PB1AP, 0x078F1EC0);
59         mtebc(PB2AP, 0x078F1EC0);
60         mtebc(PB1CR, 0x000BC000);
61         mtebc(PB2CR, 0x020BC000);
62
63         /* 3. Set CRAM in Sync mode */
64         cram_bcr_write(0x7012);         /* CRAM burst setting */
65
66         /* 4. EBC in Sync mode */
67         mtebc(PB1AP, 0x9C0201C0);
68         mtebc(PB2AP, 0x9C0201C0);
69
70         /* Set GPIO pins back to alternate function */
71         gpio_config(CONFIG_SYS_GPIO_CRAM_CLK, GPIO_OUT, GPIO_ALT1, GPIO_OUT_NO_CHG);
72         gpio_config(CONFIG_SYS_GPIO_CRAM_ADV, GPIO_OUT, GPIO_ALT1, GPIO_OUT_NO_CHG);
73
74         /* Config EBC to use RDY */
75         mfsdr(SDR0_ULTRA0, val);
76         mtsdr(SDR0_ULTRA0, val | SDR_ULTRA0_EBCRDYEN);
77
78         /* Wait a short while, since for NAND booting this is too fast */
79         for (i=0; i<200000; i++)
80                 ;
81
82         gd->ram_size = CONFIG_SYS_MBYTES_RAM << 20;
83
84         return 0;
85 }