2 * (C) Copyright 2007 DENX Software Engineering
4 * Author: Bartlomiej Sieka <tur@semihalf.com>
5 * Author: Grzegorz Bernacki <gjb@semihalf.com>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
28 * Definitions and declarations for the modules of the cm5200 platform. Mostly
29 * related to reading the hardware identification data (HW ID) from the I2C
30 * EEPROM, detection of the particular module we are executing on, and
31 * appropriate SDRAM controller initialization.
35 #define CM5200_UNKNOWN_MODULE 0xffffffff
43 IDENTIFICATION_NUMBER, /* 5 */
44 MAJOR_SW_VERSION, /* 6 */
45 MINOR_SW_VERSION, /* 7 */
46 /* add new alements above this line */
47 HW_ID_ELEM_COUNT /* count */
51 * Sect. 4.1 "CM1.Q/CMU1.Q Supervisory Microcontroller Interface Definition"
54 #define DEVICE_NAME_OFFSET 0x02
55 #define GENERATION_OFFSET 0x0b
56 #define PCB_NAME_OFFSET 0x0c
57 #define FORM_OFFSET 0x15
58 #define VERSION_OFFSET 0x16
59 #define IDENTIFICATION_NUMBER_OFFSET 0x19
60 #define MAJOR_SW_VERSION_OFFSET 0x0480
61 #define MINOR_SW_VERSION_OFFSET 0x0481
64 #define DEVICE_NAME_LEN 0x09
65 #define GENERATION_LEN 0x01
66 #define PCB_NAME_LEN 0x09
68 #define VERSION_LEN 0x03
69 #define IDENTIFICATION_NUMBER_LEN 0x09
70 #define MAJOR_SW_VERSION_LEN 0x01
71 #define MINOR_SW_VERSION_LEN 0x01
73 #define HW_ID_ELEM_MAXLEN 0x09 /* MAX(XXX_LEN) */
75 /* entire HW ID in EEPROM is 64 bytes, so longer module name is unlikely */
76 #define MODULE_NAME_MAXLEN 64
79 /* storage for HW ID read from EEPROM */
80 typedef char hw_id_t[HW_ID_ELEM_COUNT][HW_ID_ELEM_MAXLEN];
83 /* HW ID layout in EEPROM */
87 } hw_id_format[HW_ID_ELEM_COUNT] = {
88 {DEVICE_NAME_OFFSET, DEVICE_NAME_LEN},
89 {GENERATION_OFFSET, GENERATION_LEN},
90 {PCB_NAME_OFFSET, PCB_NAME_LEN},
91 {FORM_OFFSET, FORM_LEN},
92 {VERSION_OFFSET, VERSION_LEN},
93 {IDENTIFICATION_NUMBER_OFFSET, IDENTIFICATION_NUMBER_LEN},
94 {MAJOR_SW_VERSION_OFFSET, MAJOR_SW_VERSION_LEN},
95 {MINOR_SW_VERSION_OFFSET, MINOR_SW_VERSION_LEN},
99 /* HW ID data found in EEPROM on supported modules */
100 static char *cm1_qa_hw_id[HW_ID_ELEM_COUNT] = {
101 "CM", /* DEVICE_NAME */
102 "1", /* GENERATION */
103 "CM1", /* PCB_NAME */
106 "591881", /* IDENTIFICATION_NUMBER */
107 "", /* MAJOR_SW_VERSION */
108 "", /* MINOR_SW_VERSION */
111 static char *cm11_qa_hw_id[HW_ID_ELEM_COUNT] = {
112 "CM", /* DEVICE_NAME */
113 "1", /* GENERATION */
114 "CM11", /* PCB_NAME */
117 "594200", /* IDENTIFICATION_NUMBER */
118 "", /* MAJOR_SW_VERSION */
119 "", /* MINOR_SW_VERSION */
122 static char *cmu1_qa_hw_id[HW_ID_ELEM_COUNT] = {
123 "CMU", /* DEVICE_NAME */
124 "1", /* GENERATION */
125 "CMU1", /* PCB_NAME */
128 "594128", /* IDENTIFICATION_NUMBER */
129 "", /* MAJOR_SW_VERSION */
130 "", /* MINOR_SW_VERSION */
134 /* list of known modules */
135 static char **hw_id_list[] = {
141 /* indices to the above list - keep in sync */
149 /* identify modules based on these hw id elements */
150 static int hw_id_identify[] = {
157 /* Registers' settings for SDRAM controller intialization */
165 static mem_conf_t k4s561632E = {
166 0x00CD0000, /* CASL 3, burst length 8 */
172 static mem_conf_t mt48lc32m16a2 = {
173 0x00CD0000, /* CASL 3, burst length 8 */
179 static mem_conf_t* memory_config[] = {
184 #endif /* _CM5200_H */