blob: c1fe5790a31bed26380bcccb8bf9d801510e68e7 [file] [log] [blame]
Becky Brucef51cdaf2010-06-17 11:37:20 -05001/*
Kumar Galaf1337962011-01-13 02:58:23 -06002 * Copyright 2010-2011 Freescale Semiconductor, Inc.
Becky Brucef51cdaf2010-06-17 11:37:20 -05003 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * Version 2 as published by the Free Software Foundation.
7 */
8
9#include <common.h>
10#include <asm/fsl_lbc.h>
11
Becky Bruce38dba0c2010-12-17 17:17:56 -060012#ifdef CONFIG_MPC85xx
13/* Boards should provide their own version of this if they use lbc sdram */
Kim Phillips2ed2e912012-10-29 13:34:37 +000014static void __lbc_sdram_init(void)
Becky Bruce38dba0c2010-12-17 17:17:56 -060015{
16 /* Do nothing */
17}
Becky Bruce70961ba2010-12-17 17:17:57 -060018void lbc_sdram_init(void) __attribute__((weak, alias("__lbc_sdram_init")));
Becky Bruce38dba0c2010-12-17 17:17:56 -060019#endif
20
21
Becky Brucef51cdaf2010-06-17 11:37:20 -050022void print_lbc_regs(void)
23{
24 int i;
25
26 printf("\nLocal Bus Controller Registers\n");
27 for (i = 0; i < 8; i++) {
28 printf("BR%d\t0x%08X\tOR%d\t0x%08X\n",
29 i, get_lbc_br(i), i, get_lbc_or(i));
30 }
Paul Gortmaker3dc23c72011-12-15 10:22:07 -050031 printf("LBCR\t0x%08X\tLCRR\t0x%08X\n",
32 get_lbc_lbcr(), get_lbc_lcrr());
Becky Brucef51cdaf2010-06-17 11:37:20 -050033}
34
35void init_early_memctl_regs(void)
36{
37 uint init_br1 = 1;
38
Kumar Galaf1337962011-01-13 02:58:23 -060039#ifdef CONFIG_SYS_FSL_ERRATUM_ELBC_A001
40 /* Set the local bus monitor timeout value to the maximum */
41 clrsetbits_be32(&(LBC_BASE_ADDR)->lbcr, LBCR_BMT|LBCR_BMTPS, 0xf);
42#endif
43
Becky Brucef51cdaf2010-06-17 11:37:20 -050044#ifdef CONFIG_MPC85xx
45 /* if cs1 is already set via debugger, leave cs0/cs1 alone */
46 if (get_lbc_br(1) & BR_V)
47 init_br1 = 0;
48#endif
49
50 /*
51 * Map banks 0 (and maybe 1) to the FLASH banks 0 (and 1) at
52 * preliminary addresses - these have to be modified later
53 * when FLASH size has been determined
54 */
55#if defined(CONFIG_SYS_OR0_REMAP)
56 set_lbc_or(0, CONFIG_SYS_OR0_REMAP);
57#endif
58#if defined(CONFIG_SYS_OR1_REMAP)
59 set_lbc_or(1, CONFIG_SYS_OR1_REMAP);
60#endif
61 /* now restrict to preliminary range */
62 if (init_br1) {
Kumar Gala9829fef2011-05-20 00:54:39 -050063#if defined(CONFIG_SYS_BR0_PRELIM) && defined(CONFIG_SYS_OR0_PRELIM)
Becky Brucef51cdaf2010-06-17 11:37:20 -050064 set_lbc_br(0, CONFIG_SYS_BR0_PRELIM);
65 set_lbc_or(0, CONFIG_SYS_OR0_PRELIM);
Kumar Gala9829fef2011-05-20 00:54:39 -050066#endif
Becky Brucef51cdaf2010-06-17 11:37:20 -050067
68#if defined(CONFIG_SYS_BR1_PRELIM) && defined(CONFIG_SYS_OR1_PRELIM)
69 set_lbc_or(1, CONFIG_SYS_OR1_PRELIM);
70 set_lbc_br(1, CONFIG_SYS_BR1_PRELIM);
71#endif
72 }
73
74#if defined(CONFIG_SYS_BR2_PRELIM) && defined(CONFIG_SYS_OR2_PRELIM)
75 set_lbc_or(2, CONFIG_SYS_OR2_PRELIM);
76 set_lbc_br(2, CONFIG_SYS_BR2_PRELIM);
77#endif
78
79#if defined(CONFIG_SYS_BR3_PRELIM) && defined(CONFIG_SYS_OR3_PRELIM)
80 set_lbc_or(3, CONFIG_SYS_OR3_PRELIM);
81 set_lbc_br(3, CONFIG_SYS_BR3_PRELIM);
82#endif
83
84#if defined(CONFIG_SYS_BR4_PRELIM) && defined(CONFIG_SYS_OR4_PRELIM)
85 set_lbc_or(4, CONFIG_SYS_OR4_PRELIM);
86 set_lbc_br(4, CONFIG_SYS_BR4_PRELIM);
87#endif
88
89#if defined(CONFIG_SYS_BR5_PRELIM) && defined(CONFIG_SYS_OR5_PRELIM)
90 set_lbc_or(5, CONFIG_SYS_OR5_PRELIM);
91 set_lbc_br(5, CONFIG_SYS_BR5_PRELIM);
92#endif
93
94#if defined(CONFIG_SYS_BR6_PRELIM) && defined(CONFIG_SYS_OR6_PRELIM)
95 set_lbc_or(6, CONFIG_SYS_OR6_PRELIM);
96 set_lbc_br(6, CONFIG_SYS_BR6_PRELIM);
97#endif
98
99#if defined(CONFIG_SYS_BR7_PRELIM) && defined(CONFIG_SYS_OR7_PRELIM)
100 set_lbc_or(7, CONFIG_SYS_OR7_PRELIM);
101 set_lbc_br(7, CONFIG_SYS_BR7_PRELIM);
102#endif
103}
Becky Brucef2d9a5d2010-06-17 11:37:26 -0500104
105/*
106 * Configures a UPM. The function requires the respective MxMR to be set
107 * before calling this function. "size" is the number or entries, not a sizeof.
108 */
109void upmconfig(uint upm, uint *table, uint size)
110{
111 fsl_lbc_t *lbc = LBC_BASE_ADDR;
Kumar Galae55d6372011-11-09 10:00:23 -0600112 int i, mad, old_mad = 0;
Becky Brucef2d9a5d2010-06-17 11:37:26 -0500113 u32 mask = (~MxMR_OP_MSK & ~MxMR_MAD_MSK);
114 u32 msel = BR_UPMx_TO_MSEL(upm);
115 u32 *mxmr = &lbc->mamr + upm;
116 volatile u8 *dummy = NULL;
117
118 if (upm < UPMA || upm > UPMC) {
119 printf("Error: %s() Bad UPM index %d\n", __func__, upm);
120 hang();
121 }
122
123 /*
124 * Find the address for the dummy write - scan all of the BRs until we
125 * find one matching the UPM and extract the base address bits from it.
126 */
127 for (i = 0; i < 8; i++) {
128 if ((get_lbc_br(i) & (BR_V | BR_MSEL)) == (BR_V | msel)) {
129 dummy = (volatile u8 *)(get_lbc_br(i) & BR_BA);
130 break;
131 }
132 }
133
134 if (!dummy) {
135 printf("Error: %s() No matching BR\n", __func__);
136 hang();
137 }
138
139 /* Program UPM using steps outlined by the reference manual */
140 for (i = 0; i < size; i++) {
141 out_be32(mxmr, (in_be32(mxmr) & mask) | MxMR_OP_WARR | i);
142 out_be32(&lbc->mdr, table[i]);
Kumar Galae55d6372011-11-09 10:00:23 -0600143 (void)in_be32(&lbc->mdr);
Becky Brucef2d9a5d2010-06-17 11:37:26 -0500144 *dummy = 0;
145 do {
146 mad = in_be32(mxmr) & MxMR_MAD_MSK;
147 } while (mad <= old_mad && !(!mad && i == (size-1)));
148 old_mad = mad;
149 }
150
151 /* Return to normal operation */
152 out_be32(mxmr, (in_be32(mxmr) & mask) | MxMR_OP_NORM);
153}