]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/mips/tx4927/common/tx4927_prom.c
[MIPS] rbtx4927: misc cleanups
[linux-2.6-omap-h63xx.git] / arch / mips / tx4927 / common / tx4927_prom.c
1 /*
2  * linux/arch/mips/tx4927/common/tx4927_prom.c
3  *
4  * common tx4927 memory interface
5  *
6  * Author: MontaVista Software, Inc.
7  *         source@mvista.com
8  *
9  * Copyright 2001-2002 MontaVista Software Inc.
10  *
11  *  This program is free software; you can redistribute it and/or modify it
12  *  under the terms of the GNU General Public License as published by the
13  *  Free Software Foundation; either version 2 of the License, or (at your
14  *  option) any later version.
15  *
16  *  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
17  *  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18  *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19  *  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20  *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21  *  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
22  *  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23  *  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
24  *  TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
25  *  USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  *
27  *  You should have received a copy of the GNU General Public License along
28  *  with this program; if not, write to the Free Software Foundation, Inc.,
29  *  675 Mass Ave, Cambridge, MA 02139, USA.
30  */
31
32 #include <linux/init.h>
33 #include <linux/types.h>
34 #include <linux/io.h>
35 #include <asm/tx4927/tx4927.h>
36
37 static unsigned int __init tx4927_process_sdccr(unsigned long addr)
38 {
39         u64 val;
40         unsigned int sdccr_ce;
41         unsigned int sdccr_bs;
42         unsigned int sdccr_rs;
43         unsigned int sdccr_cs;
44         unsigned int sdccr_mw;
45         unsigned int bs = 0;
46         unsigned int rs = 0;
47         unsigned int cs = 0;
48         unsigned int mw = 0;
49         unsigned int msize = 0;
50
51         val = __raw_readq((void __iomem *)addr);
52
53         /* MVMCP -- need #defs for these bits masks */
54         sdccr_ce = ((val & (1 << 10)) >> 10);
55         sdccr_bs = ((val & (1 << 8)) >> 8);
56         sdccr_rs = ((val & (3 << 5)) >> 5);
57         sdccr_cs = ((val & (3 << 2)) >> 2);
58         sdccr_mw = ((val & (1 << 0)) >> 0);
59
60         if (sdccr_ce) {
61                 switch (sdccr_bs) {
62                 case 0:{
63                                 bs = 2;
64                                 break;
65                         }
66                 case 1:{
67                                 bs = 4;
68                                 break;
69                         }
70                 }
71                 switch (sdccr_rs) {
72                 case 0:{
73                                 rs = 2048;
74                                 break;
75                         }
76                 case 1:{
77                                 rs = 4096;
78                                 break;
79                         }
80                 case 2:{
81                                 rs = 8192;
82                                 break;
83                         }
84                 case 3:{
85                                 rs = 0;
86                                 break;
87                         }
88                 }
89                 switch (sdccr_cs) {
90                 case 0:{
91                                 cs = 256;
92                                 break;
93                         }
94                 case 1:{
95                                 cs = 512;
96                                 break;
97                         }
98                 case 2:{
99                                 cs = 1024;
100                                 break;
101                         }
102                 case 3:{
103                                 cs = 2048;
104                                 break;
105                         }
106                 }
107                 switch (sdccr_mw) {
108                 case 0:{
109                                 mw = 8;
110                                 break;
111                         }       /* 8 bytes = 64 bits */
112                 case 1:{
113                                 mw = 4;
114                                 break;
115                         }       /* 4 bytes = 32 bits */
116                 }
117         }
118
119         /*            bytes per chip     MB per chip      num chips */
120         msize = (((rs * cs * mw) / (1024 * 1024)) * bs);
121
122         return (msize);
123 }
124
125
126 unsigned int __init tx4927_get_mem_size(void)
127 {
128         unsigned int c0;
129         unsigned int c1;
130         unsigned int c2;
131         unsigned int c3;
132         unsigned int total;
133
134         /* MVMCP -- need #defs for these registers */
135         c0 = tx4927_process_sdccr(0xff1f8000);
136         c1 = tx4927_process_sdccr(0xff1f8008);
137         c2 = tx4927_process_sdccr(0xff1f8010);
138         c3 = tx4927_process_sdccr(0xff1f8018);
139         total = c0 + c1 + c2 + c3;
140
141         return (total);
142 }