blob: 587fe74e4771a42d5645420a8cb2ecf81adeef45 [file] [log] [blame]
Stefan Roese5fb692c2007-01-18 10:25:34 +01001/*
2 * (C) Copyright 2007
3 * Stefan Roese, DENX Software Engineering, sr@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#include <config.h>
25#include <common.h>
26#include <command.h>
27#include <asm/processor.h>
28#include <pci.h>
29
30void show_reset_reg(void)
31{
32 unsigned long reg;
33
34 /* read clock regsiter */
35 printf("===== Display reset and initialize register Start =========\n");
Stefan Roesed1c3b272009-09-09 16:25:29 +020036 mfcpr(CPR0_PLLC,reg);
Wolfgang Denkbde63582008-07-11 22:56:11 +020037 printf("cpr_pllc = %#010lx\n",reg);
Stefan Roese5fb692c2007-01-18 10:25:34 +010038
Stefan Roesed1c3b272009-09-09 16:25:29 +020039 mfcpr(CPR0_PLLD,reg);
Wolfgang Denkbde63582008-07-11 22:56:11 +020040 printf("cpr_plld = %#010lx\n",reg);
Stefan Roese5fb692c2007-01-18 10:25:34 +010041
Niklaus Gigerddc922f2009-10-04 20:04:20 +020042 mfcpr(CPR0_PRIMAD0,reg);
Wolfgang Denkbde63582008-07-11 22:56:11 +020043 printf("cpr_primad = %#010lx\n",reg);
Stefan Roese5fb692c2007-01-18 10:25:34 +010044
Niklaus Gigerddc922f2009-10-04 20:04:20 +020045 mfcpr(CPR0_PRIMBD0,reg);
Wolfgang Denkbde63582008-07-11 22:56:11 +020046 printf("cpr_primbd = %#010lx\n",reg);
Stefan Roese5fb692c2007-01-18 10:25:34 +010047
Niklaus Gigerddc922f2009-10-04 20:04:20 +020048 mfcpr(CPR0_OPBD0,reg);
Wolfgang Denkbde63582008-07-11 22:56:11 +020049 printf("cpr_opbd = %#010lx\n",reg);
Stefan Roese5fb692c2007-01-18 10:25:34 +010050
Stefan Roesed1c3b272009-09-09 16:25:29 +020051 mfcpr(CPR0_PERD,reg);
Wolfgang Denkbde63582008-07-11 22:56:11 +020052 printf("cpr_perd = %#010lx\n",reg);
Stefan Roese5fb692c2007-01-18 10:25:34 +010053
Stefan Roesed1c3b272009-09-09 16:25:29 +020054 mfcpr(CPR0_MALD,reg);
Wolfgang Denkbde63582008-07-11 22:56:11 +020055 printf("cpr_mald = %#010lx\n",reg);
Stefan Roese5fb692c2007-01-18 10:25:34 +010056
57 /* read sdr register */
Stefan Roesed1c3b272009-09-09 16:25:29 +020058 mfsdr(SDR0_EBC,reg);
59 printf("SDR0_EBC = %#010lx\n",reg);
Stefan Roese5fb692c2007-01-18 10:25:34 +010060
Stefan Roesed1c3b272009-09-09 16:25:29 +020061 mfsdr(SDR0_CP440,reg);
62 printf("SDR0_CP440 = %#010lx\n",reg);
Stefan Roese5fb692c2007-01-18 10:25:34 +010063
Stefan Roesed1c3b272009-09-09 16:25:29 +020064 mfsdr(SDR0_XCR,reg);
65 printf("SDR0_XCR = %#010lx\n",reg);
Stefan Roese5fb692c2007-01-18 10:25:34 +010066
Stefan Roesed1c3b272009-09-09 16:25:29 +020067 mfsdr(SDR0_XPLLC,reg);
68 printf("SDR0_XPLLC = %#010lx\n",reg);
Stefan Roese5fb692c2007-01-18 10:25:34 +010069
Stefan Roesed1c3b272009-09-09 16:25:29 +020070 mfsdr(SDR0_XPLLD,reg);
71 printf("SDR0_XPLLD = %#010lx\n",reg);
Stefan Roese5fb692c2007-01-18 10:25:34 +010072
Stefan Roesed1c3b272009-09-09 16:25:29 +020073 mfsdr(SDR0_PFC0,reg);
74 printf("SDR0_PFC0 = %#010lx\n",reg);
Stefan Roese5fb692c2007-01-18 10:25:34 +010075
Stefan Roesed1c3b272009-09-09 16:25:29 +020076 mfsdr(SDR0_PFC1,reg);
77 printf("SDR0_PFC1 = %#010lx\n",reg);
Stefan Roese5fb692c2007-01-18 10:25:34 +010078
Stefan Roesed1c3b272009-09-09 16:25:29 +020079 mfsdr(SDR0_CUST0,reg);
80 printf("SDR0_CUST0 = %#010lx\n",reg);
Stefan Roese5fb692c2007-01-18 10:25:34 +010081
Stefan Roesed1c3b272009-09-09 16:25:29 +020082 mfsdr(SDR0_CUST1,reg);
83 printf("SDR0_CUST1 = %#010lx\n",reg);
Stefan Roese5fb692c2007-01-18 10:25:34 +010084
Stefan Roesed1c3b272009-09-09 16:25:29 +020085 mfsdr(SDR0_UART0,reg);
86 printf("SDR0_UART0 = %#010lx\n",reg);
Stefan Roese5fb692c2007-01-18 10:25:34 +010087
Stefan Roesed1c3b272009-09-09 16:25:29 +020088 mfsdr(SDR0_UART1,reg);
89 printf("SDR0_UART1 = %#010lx\n",reg);
Stefan Roese5fb692c2007-01-18 10:25:34 +010090
91 printf("===== Display reset and initialize register End =========\n");
92}
93
94void show_xbridge_info(void)
95{
96 unsigned long reg;
97
98 printf("PCI-X chip control registers\n");
Stefan Roesed1c3b272009-09-09 16:25:29 +020099 mfsdr(SDR0_XCR, reg);
100 printf("SDR0_XCR = %#010lx\n", reg);
Stefan Roese5fb692c2007-01-18 10:25:34 +0100101
Stefan Roesed1c3b272009-09-09 16:25:29 +0200102 mfsdr(SDR0_XPLLC, reg);
103 printf("SDR0_XPLLC = %#010lx\n", reg);
Stefan Roese5fb692c2007-01-18 10:25:34 +0100104
Stefan Roesed1c3b272009-09-09 16:25:29 +0200105 mfsdr(SDR0_XPLLD, reg);
106 printf("SDR0_XPLLD = %#010lx\n", reg);
Stefan Roese5fb692c2007-01-18 10:25:34 +0100107
108 printf("PCI-X Bridge Configure registers\n");
Niklaus Gigerddc922f2009-10-04 20:04:20 +0200109 printf("PCIL0_VENDID = %#06x\n", in16r(PCIL0_VENDID));
110 printf("PCIL0_DEVID = %#06x\n", in16r(PCIL0_DEVID));
111 printf("PCIL0_CMD = %#06x\n", in16r(PCIL0_CMD));
112 printf("PCIL0_STATUS = %#06x\n", in16r(PCIL0_STATUS));
113 printf("PCIL0_REVID = %#04x\n", in8(PCIL0_REVID));
114 printf("PCIL0_CACHELS = %#04x\n", in8(PCIL0_CACHELS));
115 printf("PCIL0_LATTIM = %#04x\n", in8(PCIL0_LATTIM));
116 printf("PCIL0_HDTYPE = %#04x\n", in8(PCIL0_HDTYPE));
117 printf("PCIL0_BIST = %#04x\n", in8(PCIL0_BIST));
Stefan Roese5fb692c2007-01-18 10:25:34 +0100118
Niklaus Gigerddc922f2009-10-04 20:04:20 +0200119 printf("PCIL0_BAR0 = %#010lx\n", in32r(PCIL0_BAR0));
120 printf("PCIL0_BAR1 = %#010lx\n", in32r(PCIL0_BAR1));
121 printf("PCIL0_BAR2 = %#010lx\n", in32r(PCIL0_BAR2));
122 printf("PCIL0_BAR3 = %#010lx\n", in32r(PCIL0_BAR3));
123 printf("PCIL0_BAR4 = %#010lx\n", in32r(PCIL0_BAR4));
124 printf("PCIL0_BAR5 = %#010lx\n", in32r(PCIL0_BAR5));
Stefan Roese5fb692c2007-01-18 10:25:34 +0100125
Niklaus Gigerddc922f2009-10-04 20:04:20 +0200126 printf("PCIL0_CISPTR = %#010lx\n", in32r(PCIL0_CISPTR));
127 printf("PCIL0_SBSSYSVID = %#010x\n", in16r(PCIL0_SBSYSVID));
128 printf("PCIL0_SBSSYSID = %#010x\n", in16r(PCIL0_SBSYSID));
129 printf("PCIL0_EROMBA = %#010lx\n", in32r(PCIL0_EROMBA));
130 printf("PCIL0_CAP = %#04x\n", in8(PCIL0_CAP));
131 printf("PCIL0_INTLN = %#04x\n", in8(PCIL0_INTLN));
132 printf("PCIL0_INTPN = %#04x\n", in8(PCIL0_INTPN));
133 printf("PCIL0_MINGNT = %#04x\n", in8(PCIL0_MINGNT));
134 printf("PCIL0_MAXLTNCY = %#04x\n", in8(PCIL0_MAXLTNCY));
Stefan Roese5fb692c2007-01-18 10:25:34 +0100135
Niklaus Gigerddc922f2009-10-04 20:04:20 +0200136 printf("PCIL0_BRDGOPT1 = %#010lx\n", in32r(PCIL0_BRDGOPT1));
137 printf("PCIL0_BRDGOPT2 = %#010lx\n", in32r(PCIL0_BRDGOPT2));
Stefan Roese5fb692c2007-01-18 10:25:34 +0100138
Niklaus Gigerddc922f2009-10-04 20:04:20 +0200139 printf("PCIL0_POM0LAL = %#010lx\n", in32r(PCIL0_POM0LAL));
140 printf("PCIL0_POM0LAH = %#010lx\n", in32r(PCIL0_POM0LAH));
141 printf("PCIL0_POM0SA = %#010lx\n", in32r(PCIL0_POM0SA));
142 printf("PCIL0_POM0PCILAL = %#010lx\n", in32r(PCIL0_POM0PCIAL));
143 printf("PCIL0_POM0PCILAH = %#010lx\n", in32r(PCIL0_POM0PCIAH));
144 printf("PCIL0_POM1LAL = %#010lx\n", in32r(PCIL0_POM1LAL));
145 printf("PCIL0_POM1LAH = %#010lx\n", in32r(PCIL0_POM1LAH));
146 printf("PCIL0_POM1SA = %#010lx\n", in32r(PCIL0_POM1SA));
147 printf("PCIL0_POM1PCILAL = %#010lx\n", in32r(PCIL0_POM1PCIAL));
148 printf("PCIL0_POM1PCILAH = %#010lx\n", in32r(PCIL0_POM1PCIAH));
149 printf("PCIL0_POM2SA = %#010lx\n", in32r(PCIL0_POM2SA));
Stefan Roese5fb692c2007-01-18 10:25:34 +0100150
Niklaus Gigerddc922f2009-10-04 20:04:20 +0200151 printf("PCIL0_PIM0SA = %#010lx\n", in32r(PCIL0_PIM0SA));
152 printf("PCIL0_PIM0LAL = %#010lx\n", in32r(PCIL0_PIM0LAL));
153 printf("PCIL0_PIM0LAH = %#010lx\n", in32r(PCIL0_PIM0LAH));
154 printf("PCIL0_PIM1SA = %#010lx\n", in32r(PCIL0_PIM1SA));
155 printf("PCIL0_PIM1LAL = %#010lx\n", in32r(PCIL0_PIM1LAL));
156 printf("PCIL0_PIM1LAH = %#010lx\n", in32r(PCIL0_PIM1LAH));
157 printf("PCIL0_PIM2SA = %#010lx\n", in32r(PCIL0_PIM1SA));
158 printf("PCIL0_PIM2LAL = %#010lx\n", in32r(PCIL0_PIM1LAL));
159 printf("PCIL0_PIM2LAH = %#010lx\n", in32r(PCIL0_PIM1LAH));
Stefan Roese5fb692c2007-01-18 10:25:34 +0100160
Niklaus Gigerddc922f2009-10-04 20:04:20 +0200161 printf("PCIL0_XSTS = %#010lx\n", in32r(PCIL0_STS));
Stefan Roese5fb692c2007-01-18 10:25:34 +0100162}
163
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200164int do_show_xbridge_info(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
Stefan Roese5fb692c2007-01-18 10:25:34 +0100165{
166 show_xbridge_info();
167 return 0;
168}
169
170U_BOOT_CMD(xbriinfo, 1, 1, do_show_xbridge_info,
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200171 "Show PCIX bridge info", "");
Stefan Roese5fb692c2007-01-18 10:25:34 +0100172
173#define TAISHAN_PCI_DEV_ID0 0x800
174#define TAISHAN_PCI_DEV_ID1 0x1000
175
176void show_pcix_device_info(void)
177{
178 int ii;
179 int dev;
180 u8 capp;
181 u8 xcapid;
182 u16 status;
183 u16 xcommand;
184 u32 xstatus;
185
186 for (ii = 0; ii < 2; ii++) {
187 if (ii == 0)
188 dev = TAISHAN_PCI_DEV_ID0;
189 else
190 dev = TAISHAN_PCI_DEV_ID1;
191
192 pci_read_config_word(dev, PCI_STATUS, &status);
193 if (status & PCI_STATUS_CAP_LIST) {
194 pci_read_config_byte(dev, PCI_CAPABILITY_LIST, &capp);
195
196 pci_read_config_byte(dev, (int)(capp), &xcapid);
197 if (xcapid == 0x07) {
198 pci_read_config_word(dev, (int)(capp + 2),
199 &xcommand);
200 pci_read_config_dword(dev, (int)(capp + 4),
201 &xstatus);
202 printf("BUS0 dev%d Xcommand=%#06x,Xstatus=%#010x\n",
203 (ii + 1), xcommand, xstatus);
204 } else {
205 printf("BUS0 dev%d PCI-X CAP ID error,"
206 "CAP=%#04x,XCAPID=%#04x\n",
207 (ii + 1), capp, xcapid);
208 }
209 } else {
210 printf("BUS0 dev%d not found PCI_STATUS_CAP_LIST supporting\n",
211 ii + 1);
212 }
213 }
214
215}
216
217int do_show_pcix_device_info(cmd_tbl_t * cmdtp, int flag, int argc,
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200218 char * const argv[])
Stefan Roese5fb692c2007-01-18 10:25:34 +0100219{
220 show_pcix_device_info();
221 return 0;
222}
223
224U_BOOT_CMD(xdevinfo, 1, 1, do_show_pcix_device_info,
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200225 "Show PCIX Device info", "");
Stefan Roese5fb692c2007-01-18 10:25:34 +0100226
227extern void show_reset_reg(void);
228
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200229int do_show_reset_reg_info(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
Stefan Roese5fb692c2007-01-18 10:25:34 +0100230{
231 show_reset_reg();
232 return 0;
233}
234
235U_BOOT_CMD(resetinfo, 1, 1, do_show_reset_reg_info,
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200236 "Show Reset REG info", "");