blob: 81285d7470b09a9219141abc0068b79e67b5c6b1 [file] [log] [blame]
wdenk5da627a2003-10-09 20:09:04 +00001/*
2 * (C) Copyright 2003
3 * Thomas.Lange@corelatus.se
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk5da627a2003-10-09 20:09:04 +00006 */
7
8#include <common.h>
9#include <command.h>
Daniel Schwierzeck76ada5f2015-12-21 16:35:14 +010010#include <mach/au1x00.h>
wdenk5da627a2003-10-09 20:09:04 +000011#include <asm/mipsregs.h>
Jean-Christophe PLAGNIOL-VILLARD5c150102007-11-13 09:11:05 +010012#include <asm/io.h>
wdenk5da627a2003-10-09 20:09:04 +000013
Simon Glass088454c2017-03-31 08:40:25 -060014DECLARE_GLOBAL_DATA_PTR;
15
Simon Glassf1683aa2017-04-06 12:47:05 -060016int dram_init(void)
wdenk5da627a2003-10-09 20:09:04 +000017{
18 /* Sdram is setup by assembler code */
19 /* If memory could be changed, we should return the true value here */
Simon Glass088454c2017-03-31 08:40:25 -060020 gd->ram_size = MEM_SIZE * 1024 * 1024;
21
22 return 0;
wdenk5da627a2003-10-09 20:09:04 +000023}
24
25#define BCSR_PCMCIA_PC0DRVEN 0x0010
26#define BCSR_PCMCIA_PC0RST 0x0080
27
Peter Tyser1e3827d2010-04-12 22:28:14 -050028/* In arch/mips/cpu/cpu.c */
wdenk5da627a2003-10-09 20:09:04 +000029void write_one_tlb( int index, u32 pagemask, u32 hi, u32 low0, u32 low1 );
30
31int checkboard (void)
32{
wdenkc3d2b4b2005-01-22 18:13:04 +000033#ifdef CONFIG_IDE_PCMCIA
wdenk5da627a2003-10-09 20:09:04 +000034 u16 status;
wdenkff36fd82005-01-09 22:28:56 +000035 volatile u32 *pcmcia_bcsr = (u32*)(DB1XX0_BCSR_ADDR+0x10);
wdenkc3d2b4b2005-01-22 18:13:04 +000036#endif /* CONFIG_IDE_PCMCIA */
wdenkff36fd82005-01-09 22:28:56 +000037 volatile u32 *phy = (u32*)(DB1XX0_BCSR_ADDR+0xC);
wdenk5da627a2003-10-09 20:09:04 +000038 volatile u32 *sys_counter = (volatile u32*)SYS_COUNTER_CNTRL;
39 u32 proc_id;
40
41 *sys_counter = 0x100; /* Enable 32 kHz oscillator for RTC/TOY */
42
Shinya Kuribayashie2ad8422008-05-30 00:53:38 +090043 proc_id = read_c0_prid();
wdenk5da627a2003-10-09 20:09:04 +000044
wdenka2663ea2003-12-07 18:32:37 +000045 switch (proc_id >> 24) {
wdenk5da627a2003-10-09 20:09:04 +000046 case 0:
wdenka2663ea2003-12-07 18:32:37 +000047 puts ("Board: Merlot (DbAu1000)\n");
48 printf ("CPU: Au1000 396 MHz, id: 0x%02x, rev: 0x%02x\n",
49 (proc_id >> 8) & 0xFF, proc_id & 0xFF);
50 break;
51 case 1:
52 puts ("Board: DbAu1500\n");
53 printf ("CPU: Au1500, id: 0x%02x, rev: 0x%02x\n",
54 (proc_id >> 8) & 0xFF, proc_id & 0xFF);
55 break;
56 case 2:
57 puts ("Board: DbAu1100\n");
58 printf ("CPU: Au1100, id: 0x%02x, rev: 0x%02x\n",
59 (proc_id >> 8) & 0xFF, proc_id & 0xFF);
60 break;
wdenkff36fd82005-01-09 22:28:56 +000061 case 3:
62 puts ("Board: DbAu1550\n");
63 printf ("CPU: Au1550, id: 0x%02x, rev: 0x%02x\n",
64 (proc_id >> 8) & 0xFF, proc_id & 0xFF);
65 break;
wdenk5da627a2003-10-09 20:09:04 +000066 default:
wdenka2663ea2003-12-07 18:32:37 +000067 printf ("Unsupported cpu %d, proc_id=0x%x\n", proc_id >> 24, proc_id);
wdenk5da627a2003-10-09 20:09:04 +000068 }
Jean-Christophe PLAGNIOL-VILLARD5c150102007-11-13 09:11:05 +010069
70 set_io_port_base(0);
71
wdenk5da627a2003-10-09 20:09:04 +000072#ifdef CONFIG_IDE_PCMCIA
73 /* Enable 3.3 V on slot 0 ( VCC )
74 No 5V */
75 status = 4;
76 *pcmcia_bcsr = status;
77
78 status |= BCSR_PCMCIA_PC0DRVEN;
79 *pcmcia_bcsr = status;
80 au_sync();
81
82 udelay(300*1000);
83
84 status |= BCSR_PCMCIA_PC0RST;
85 *pcmcia_bcsr = status;
86 au_sync();
87
88 udelay(100*1000);
89
90 /* PCMCIA is on a 36 bit physical address.
91 We need to map it into a 32 bit addresses */
92
93#if 0
94 /* We dont need theese unless we run whole pcmcia package */
95 write_one_tlb(20, /* index */
96 0x01ffe000, /* Pagemask, 16 MB pages */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020097 CONFIG_SYS_PCMCIA_IO_BASE, /* Hi */
wdenk5da627a2003-10-09 20:09:04 +000098 0x3C000017, /* Lo0 */
99 0x3C200017); /* Lo1 */
100
101 write_one_tlb(21, /* index */
102 0x01ffe000, /* Pagemask, 16 MB pages */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200103 CONFIG_SYS_PCMCIA_ATTR_BASE, /* Hi */
wdenk5da627a2003-10-09 20:09:04 +0000104 0x3D000017, /* Lo0 */
105 0x3D200017); /* Lo1 */
wdenk697037f2004-06-09 15:29:49 +0000106#endif /* 0 */
wdenk5da627a2003-10-09 20:09:04 +0000107 write_one_tlb(22, /* index */
108 0x01ffe000, /* Pagemask, 16 MB pages */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200109 CONFIG_SYS_PCMCIA_MEM_ADDR, /* Hi */
wdenk5da627a2003-10-09 20:09:04 +0000110 0x3E000017, /* Lo0 */
111 0x3E200017); /* Lo1 */
wdenk697037f2004-06-09 15:29:49 +0000112#endif /* CONFIG_IDE_PCMCIA */
wdenk5da627a2003-10-09 20:09:04 +0000113
114 /* Release reset of ethernet PHY chips */
115 /* Always do this, because linux does not know about it */
116 *phy = 3;
117
118 return 0;
wdenk5da627a2003-10-09 20:09:04 +0000119}