uboot/board/kup/kup4k/kup4k.c
<<
>>
Prefs
   1/*
   2 * (C) Copyright 2000-2004
   3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
   4 * Klaus Heydeck, Kieback & Peter GmbH & Co KG, heydeck@kieback-peter.de
   5 *
   6 * See file CREDITS for list of people who contributed to this
   7 * project.
   8 *
   9 * This program is free software; you can redistribute it and/or
  10 * modify it under the terms of the GNU General Public License as
  11 * published by the Free Software Foundation; either version 2 of
  12 * the License, or (at your option) any later version.
  13 *
  14 * This program is distributed in the hope that it will be useful,
  15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17 * GNU General Public License for more details.
  18 *
  19 * You should have received a copy of the GNU General Public License
  20 * along with this program; if not, write to the Free Software
  21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  22 * MA 02111-1307 USA
  23 */
  24
  25#include <common.h>
  26#include <command.h>
  27#include <libfdt.h>
  28#include <mpc8xx.h>
  29#include <hwconfig.h>
  30#include <i2c.h>
  31#include "../common/kup.h"
  32#include <asm/io.h>
  33
  34static unsigned char swapbyte(unsigned char c);
  35static int read_diag(void);
  36
  37DECLARE_GLOBAL_DATA_PTR;
  38
  39/* ----------------------------------------------------------------------- */
  40
  41#define _NOT_USED_      0xFFFFFFFF
  42
  43const uint sdram_table[] = {
  44        /*
  45         * Single Read. (Offset 0 in UPMA RAM)
  46         */
  47        0x1F07FC04, 0xEEAEFC04, 0x11ADFC04, 0xEFBBBC00,
  48        0x1FF77C47,             /* last */
  49
  50        /*
  51         * SDRAM Initialization (offset 5 in UPMA RAM)
  52         *
  53         * This is no UPM entry point. The following definition uses
  54         * the remaining space to establish an initialization
  55         * sequence, which is executed by a RUN command.
  56         *
  57         */
  58        0x1FF77C35, 0xEFEABC34, 0x1FB57C35,     /* last */
  59
  60        /*
  61         * Burst Read. (Offset 8 in UPMA RAM)
  62         */
  63        0x1F07FC04, 0xEEAEFC04, 0x10ADFC04, 0xF0AFFC00,
  64        0xF0AFFC00, 0xF1AFFC00, 0xEFBBBC00, 0x1FF77C47, /* last */
  65        _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
  66        _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
  67
  68        /*
  69         * Single Write. (Offset 18 in UPMA RAM)
  70         */
  71        0x1F27FC04, 0xEEAEBC00, 0x01B93C04, 0x1FF77C47, /* last */
  72        _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
  73
  74        /*
  75         * Burst Write. (Offset 20 in UPMA RAM)
  76         */
  77        0x1F07FC04, 0xEEAEBC00, 0x10AD7C00, 0xF0AFFC00,
  78        0xF0AFFC00, 0xE1BBBC04, 0x1FF77C47,     /* last */
  79        _NOT_USED_,
  80        _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
  81        _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
  82
  83        /*
  84         * Refresh  (Offset 30 in UPMA RAM)
  85         */
  86        0x1FF5FC84, 0xFFFFFC04, 0xFFFFFC04, 0xFFFFFC04,
  87        0xFFFFFC84, 0xFFFFFC07, /* last */
  88        _NOT_USED_, _NOT_USED_,
  89        _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
  90
  91        /*
  92         * Exception. (Offset 3c in UPMA RAM)
  93         */
  94        0x7FFFFC07,             /* last */
  95        _NOT_USED_, _NOT_USED_, _NOT_USED_,
  96};
  97
  98/* ----------------------------------------------------------------------- */
  99
 100/*
 101 * Check Board Identity:
 102 */
 103
 104int checkboard(void)
 105{
 106        volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
 107        uchar rev,mod,tmp,pcf,ak_rev,ak_mod;
 108
 109        /*
 110         * Init ChipSelect #4 (CAN + HW-Latch)
 111         */
 112        out_be32(&immap->im_memctl.memc_or4, CONFIG_SYS_OR4);
 113        out_be32(&immap->im_memctl.memc_br4, CONFIG_SYS_BR4);
 114
 115        /*
 116         * Init ChipSelect #5 (S1D13768)
 117         */
 118        out_be32(&immap->im_memctl.memc_or5, CONFIG_SYS_OR5);
 119        out_be32(&immap->im_memctl.memc_br5, CONFIG_SYS_BR5);
 120
 121        tmp = swapbyte(in_8((unsigned char*) LATCH_ADDR));
 122        rev = (tmp & 0xF8) >> 3;
 123        mod = (tmp & 0x07);
 124
 125        i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
 126
 127        if (read_diag())
 128                gd->flags &= ~GD_FLG_SILENT;
 129
 130        printf("Board: KUP4K Rev %d.%d AK:",rev,mod);
 131        /*
 132         * TI Application report: Before using the IO as an input,
 133         * a high must be written to the IO first
 134         */
 135        pcf = 0xFF;
 136        i2c_write(0x21, 0, 0 , &pcf, 1);
 137        if (i2c_read(0x21, 0, 0, &pcf, 1)) {
 138                puts("n/a\n");
 139        } else {
 140                ak_rev = (pcf & 0xF8) >> 3;
 141                ak_mod = (pcf & 0x07);
 142                printf("%d.%d\n", ak_rev, ak_mod);
 143        }
 144        return 0;
 145}
 146
 147/* ----------------------------------------------------------------------- */
 148
 149
 150phys_size_t initdram(int board_type)
 151{
 152        volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
 153        volatile memctl8xx_t *memctl = &immap->im_memctl;
 154        long int size = 0;
 155        uchar *latch,rev,mod,tmp;
 156
 157        /*
 158         * Init ChipSelect #4 (CAN + HW-Latch) to determine Hardware Revision
 159         * Rev 1..6 -> 48 MB RAM;   Rev >= 7 -> 96 MB
 160         */
 161        out_be32(&immap->im_memctl.memc_or4, CONFIG_SYS_OR4);
 162        out_be32(&immap->im_memctl.memc_br4, CONFIG_SYS_BR4);
 163
 164        latch = (uchar *)0x90000200;
 165        tmp = swapbyte(*latch);
 166        rev = (tmp & 0xF8) >> 3;
 167        mod = (tmp & 0x07);
 168
 169        upmconfig(UPMA, (uint *) sdram_table,
 170                   sizeof (sdram_table) / sizeof (uint));
 171
 172        out_be16(&memctl->memc_mptpr, CONFIG_SYS_MPTPR);
 173
 174        out_be32(&memctl->memc_mar, 0x00000088);
 175        /* no refresh yet */
 176        if(rev >= 7) {
 177                out_be32(&memctl->memc_mamr,
 178                                 CONFIG_SYS_MAMR_9COL & (~(MAMR_PTAE)));
 179        } else {
 180                out_be32(&memctl->memc_mamr,
 181                                 CONFIG_SYS_MAMR_8COL & (~(MAMR_PTAE)));
 182        }
 183
 184        udelay(200);
 185
 186        /* perform SDRAM initializsation sequence */
 187
 188        /* SDRAM bank 0 */
 189        out_be32(&memctl->memc_mcr, 0x80002105);
 190        udelay(1);
 191        out_be32(&memctl->memc_mcr, 0x80002830); /* execute twice */
 192        udelay(1);
 193        out_be32(&memctl->memc_mcr, 0x80002106); /* RUN MRS Pattern from loc 6 */
 194        udelay(1);
 195
 196        /* SDRAM bank 1 */
 197        out_be32(&memctl->memc_mcr, 0x80004105);
 198        udelay(1);
 199        out_be32(&memctl->memc_mcr, 0x80004830); /* execute twice */
 200        udelay(1);
 201        out_be32(&memctl->memc_mcr, 0x80004106); /* RUN MRS Pattern from loc 6 */
 202        udelay(1);
 203
 204        /* SDRAM bank 2 */
 205        out_be32(&memctl->memc_mcr, 0x80006105);
 206        udelay(1);
 207        out_be32(&memctl->memc_mcr, 0x80006830); /* execute twice */
 208        udelay(1);
 209        out_be32(&memctl->memc_mcr, 0x80006106); /* RUN MRS Pattern from loc 6 */
 210        udelay(1);
 211
 212        setbits_be32(&memctl->memc_mamr, MAMR_PTAE); /* enable refresh */
 213        udelay(1000);
 214
 215        out_be16(&memctl->memc_mptpr, CONFIG_SYS_MPTPR);
 216        udelay(1000);
 217        if(rev >= 7) {
 218                size = 32 * 3 * 1024 * 1024;
 219                out_be32(&memctl->memc_or1, CONFIG_SYS_OR1_9COL);
 220                out_be32(&memctl->memc_br1, CONFIG_SYS_BR1_9COL);
 221                out_be32(&memctl->memc_or2, CONFIG_SYS_OR2_9COL);
 222                out_be32(&memctl->memc_br2, CONFIG_SYS_BR2_9COL);
 223                out_be32(&memctl->memc_or3, CONFIG_SYS_OR3_9COL);
 224                out_be32(&memctl->memc_br3, CONFIG_SYS_BR3_9COL);
 225        } else {
 226                size = 16 * 3 * 1024 * 1024;
 227                out_be32(&memctl->memc_or1, CONFIG_SYS_OR1_8COL);
 228                out_be32(&memctl->memc_br1, CONFIG_SYS_BR1_8COL);
 229                out_be32(&memctl->memc_or2, CONFIG_SYS_OR2_8COL);
 230                out_be32(&memctl->memc_br2, CONFIG_SYS_BR2_8COL);
 231                out_be32(&memctl->memc_or3, CONFIG_SYS_OR3_8COL);
 232                out_be32(&memctl->memc_br3, CONFIG_SYS_BR3_8COL);
 233        }
 234        return (size);
 235}
 236
 237/* ----------------------------------------------------------------------- */
 238
 239
 240int misc_init_r(void)
 241{
 242        volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
 243
 244#ifdef CONFIG_IDE_LED
 245        /* Configure PA8 as output port */
 246        setbits_be16(&immap->im_ioport.iop_padir, PA_8);
 247        setbits_be16(&immap->im_ioport.iop_paodr, PA_8);
 248        clrbits_be16(&immap->im_ioport.iop_papar, PA_8);
 249        setbits_be16(&immap->im_ioport.iop_padat, PA_8); /* turn it off */
 250#endif
 251        load_sernum_ethaddr();
 252        setenv("hw","4k");
 253        poweron_key();
 254        return (0);
 255}
 256
 257
 258static int read_diag(void)
 259{
 260        int diag;
 261        immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
 262
 263        clrbits_be16(&immr->im_ioport.iop_pcdir, PC_4); /* input */
 264        clrbits_be16(&immr->im_ioport.iop_pcpar, PC_4); /* gpio */
 265        setbits_be16(&immr->im_ioport.iop_pcdir, PC_5); /* output */
 266        clrbits_be16(&immr->im_ioport.iop_pcpar, PC_4); /* gpio */
 267        setbits_be16(&immr->im_ioport.iop_pcdat, PC_5); /* 1 */
 268        udelay(500);
 269        if (in_be16(&immr->im_ioport.iop_pcdat) & PC_4) {
 270                clrbits_be16(&immr->im_ioport.iop_pcdat, PC_5);/* 0 */
 271                udelay(500);
 272                if(in_be16(&immr->im_ioport.iop_pcdat) & PC_4)
 273                        diag = 0;
 274                else
 275                        diag = 1;
 276        } else {
 277                diag = 0;
 278        }
 279        clrbits_be16(&immr->im_ioport.iop_pcdir, PC_5); /* input */
 280        return (diag);
 281}
 282
 283static unsigned char swapbyte(unsigned char c)
 284{
 285        unsigned char result = 0;
 286        int i = 0;
 287
 288        for(i = 0; i < 8; ++i) {
 289                result = result << 1;
 290                result |= (c & 1);
 291                c = c >> 1;
 292        }
 293        return result;
 294}
 295
 296/*
 297 * Device Tree Support
 298 */
 299#if defined(CONFIG_OF_BOARD_SETUP) && defined(CONFIG_OF_LIBFDT)
 300void ft_board_setup(void *blob, bd_t *bd)
 301{
 302        ft_cpu_setup(blob, bd);
 303}
 304#endif /* defined(CONFIG_OF_BOARD_SETUP) && defined(CONFIG_OF_LIBFDT) */
 305