uboot/board/amcc/taishan/showinfo.c
<<
>>
Prefs
   1/*
   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");
  36        mfcpr(CPR0_PLLC,reg);
  37        printf("cpr_pllc   = %#010lx\n",reg);
  38
  39        mfcpr(CPR0_PLLD,reg);
  40        printf("cpr_plld   = %#010lx\n",reg);
  41
  42        mfcpr(CPR0_PRIMAD0,reg);
  43        printf("cpr_primad = %#010lx\n",reg);
  44
  45        mfcpr(CPR0_PRIMBD0,reg);
  46        printf("cpr_primbd = %#010lx\n",reg);
  47
  48        mfcpr(CPR0_OPBD0,reg);
  49        printf("cpr_opbd   = %#010lx\n",reg);
  50
  51        mfcpr(CPR0_PERD,reg);
  52        printf("cpr_perd   = %#010lx\n",reg);
  53
  54        mfcpr(CPR0_MALD,reg);
  55        printf("cpr_mald   = %#010lx\n",reg);
  56
  57        /* read sdr register */
  58        mfsdr(SDR0_EBC,reg);
  59        printf("SDR0_EBC    = %#010lx\n",reg);
  60
  61        mfsdr(SDR0_CP440,reg);
  62        printf("SDR0_CP440  = %#010lx\n",reg);
  63
  64        mfsdr(SDR0_XCR,reg);
  65        printf("SDR0_XCR    = %#010lx\n",reg);
  66
  67        mfsdr(SDR0_XPLLC,reg);
  68        printf("SDR0_XPLLC  = %#010lx\n",reg);
  69
  70        mfsdr(SDR0_XPLLD,reg);
  71        printf("SDR0_XPLLD  = %#010lx\n",reg);
  72
  73        mfsdr(SDR0_PFC0,reg);
  74        printf("SDR0_PFC0   = %#010lx\n",reg);
  75
  76        mfsdr(SDR0_PFC1,reg);
  77        printf("SDR0_PFC1   = %#010lx\n",reg);
  78
  79        mfsdr(SDR0_CUST0,reg);
  80        printf("SDR0_CUST0  = %#010lx\n",reg);
  81
  82        mfsdr(SDR0_CUST1,reg);
  83        printf("SDR0_CUST1  = %#010lx\n",reg);
  84
  85        mfsdr(SDR0_UART0,reg);
  86        printf("SDR0_UART0  = %#010lx\n",reg);
  87
  88        mfsdr(SDR0_UART1,reg);
  89        printf("SDR0_UART1  = %#010lx\n",reg);
  90
  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");
  99        mfsdr(SDR0_XCR, reg);
 100        printf("SDR0_XCR    = %#010lx\n", reg);
 101
 102        mfsdr(SDR0_XPLLC, reg);
 103        printf("SDR0_XPLLC  = %#010lx\n", reg);
 104
 105        mfsdr(SDR0_XPLLD, reg);
 106        printf("SDR0_XPLLD  = %#010lx\n", reg);
 107
 108        printf("PCI-X Bridge Configure registers\n");
 109        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));
 118
 119        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));
 125
 126        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));
 135
 136        printf("PCIL0_BRDGOPT1          = %#010lx\n", in32r(PCIL0_BRDGOPT1));
 137        printf("PCIL0_BRDGOPT2          = %#010lx\n", in32r(PCIL0_BRDGOPT2));
 138
 139        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));
 150
 151        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));
 160
 161        printf("PCIL0_XSTS              = %#010lx\n", in32r(PCIL0_STS));
 162}
 163
 164int do_show_xbridge_info(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
 165{
 166        show_xbridge_info();
 167        return 0;
 168}
 169
 170U_BOOT_CMD(xbriinfo, 1, 1, do_show_xbridge_info,
 171           "Show PCIX bridge info", "");
 172
 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,
 218                             char * const argv[])
 219{
 220        show_pcix_device_info();
 221        return 0;
 222}
 223
 224U_BOOT_CMD(xdevinfo, 1, 1, do_show_pcix_device_info,
 225           "Show PCIX Device info", "");
 226
 227extern void show_reset_reg(void);
 228
 229int do_show_reset_reg_info(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
 230{
 231        show_reset_reg();
 232        return 0;
 233}
 234
 235U_BOOT_CMD(resetinfo, 1, 1, do_show_reset_reg_info,
 236           "Show Reset REG info", "");
 237