revert-mm-fix-blkdev-size-calculation-in-generic_write_checks
[linux-2.6/linux-trees-mm.git] / arch / mips / tx4938 / common / prom.c
blob3189a65f7d7e7e8320f244386eec4357e04c117e
1 /*
2 * linux/arch/mips/tx4938/common/prom.c
4 * common tx4938 memory interface
5 * Copyright (C) 2000-2001 Toshiba Corporation
7 * 2003-2005 (c) MontaVista Software, Inc. This file is licensed under the
8 * terms of the GNU General Public License version 2. This program is
9 * licensed "as is" without any warranty of any kind, whether express
10 * or implied.
12 * Support for TX4938 in 2.6 - Manish Lachwani (mlachwani@mvista.com)
15 #include <linux/init.h>
16 #include <linux/mm.h>
17 #include <linux/sched.h>
18 #include <linux/bootmem.h>
20 #include <asm/addrspace.h>
21 #include <asm/bootinfo.h>
22 #include <asm/tx4938/tx4938.h>
24 static unsigned int __init
25 tx4938_process_sdccr(u64 * addr)
27 u64 val;
28 unsigned int sdccr_ce;
29 unsigned int sdccr_rs;
30 unsigned int sdccr_cs;
31 unsigned int sdccr_mw;
32 unsigned int rs = 0;
33 unsigned int cs = 0;
34 unsigned int mw = 0;
35 unsigned int bc = 4;
36 unsigned int msize = 0;
38 val = (*((vu64 *) (addr)));
40 /* MVMCP -- need #defs for these bits masks */
41 sdccr_ce = ((val & (1 << 10)) >> 10);
42 sdccr_rs = ((val & (3 << 5)) >> 5);
43 sdccr_cs = ((val & (7 << 2)) >> 2);
44 sdccr_mw = ((val & (1 << 0)) >> 0);
46 if (sdccr_ce) {
47 switch (sdccr_rs) {
48 case 0:{
49 rs = 2048;
50 break;
52 case 1:{
53 rs = 4096;
54 break;
56 case 2:{
57 rs = 8192;
58 break;
60 default:{
61 rs = 0;
62 break;
65 switch (sdccr_cs) {
66 case 0:{
67 cs = 256;
68 break;
70 case 1:{
71 cs = 512;
72 break;
74 case 2:{
75 cs = 1024;
76 break;
78 case 3:{
79 cs = 2048;
80 break;
82 case 4:{
83 cs = 4096;
84 break;
86 default:{
87 cs = 0;
88 break;
91 switch (sdccr_mw) {
92 case 0:{
93 mw = 8;
94 break;
95 } /* 8 bytes = 64 bits */
96 case 1:{
97 mw = 4;
98 break;
99 } /* 4 bytes = 32 bits */
103 /* bytes per chip MB per chip bank count */
104 msize = (((rs * cs * mw) / (1024 * 1024)) * (bc));
106 /* MVMCP -- bc hard coded to 4 from table 9.3.1 */
107 /* boad supports bc=2 but no way to detect */
109 return (msize);
112 unsigned int __init
113 tx4938_get_mem_size(void)
115 unsigned int c0;
116 unsigned int c1;
117 unsigned int c2;
118 unsigned int c3;
119 unsigned int total;
121 /* MVMCP -- need #defs for these registers */
122 c0 = tx4938_process_sdccr((u64 *) 0xff1f8000);
123 c1 = tx4938_process_sdccr((u64 *) 0xff1f8008);
124 c2 = tx4938_process_sdccr((u64 *) 0xff1f8010);
125 c3 = tx4938_process_sdccr((u64 *) 0xff1f8018);
126 total = c0 + c1 + c2 + c3;
128 return (total);