blob: 1e62753b30fea5f528934c60ee028d72fc0292d7 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk5da627a2003-10-09 20:09:04 +00002/*
3 * (C) Copyright 2003
4 * Thomas.Lange@corelatus.se
wdenk5da627a2003-10-09 20:09:04 +00005 */
6
7#include <common.h>
8#include <command.h>
Daniel Schwierzeck76ada5f2015-12-21 16:35:14 +01009#include <mach/au1x00.h>
wdenk5da627a2003-10-09 20:09:04 +000010#include <asm/mipsregs.h>
Jean-Christophe PLAGNIOL-VILLARD5c150102007-11-13 09:11:05 +010011#include <asm/io.h>
wdenk5da627a2003-10-09 20:09:04 +000012
Simon Glass088454c2017-03-31 08:40:25 -060013DECLARE_GLOBAL_DATA_PTR;
14
Simon Glassf1683aa2017-04-06 12:47:05 -060015int dram_init(void)
wdenk5da627a2003-10-09 20:09:04 +000016{
17 /* Sdram is setup by assembler code */
18 /* If memory could be changed, we should return the true value here */
Simon Glass088454c2017-03-31 08:40:25 -060019 gd->ram_size = MEM_SIZE * 1024 * 1024;
20
21 return 0;
wdenk5da627a2003-10-09 20:09:04 +000022}
23
24#define BCSR_PCMCIA_PC0DRVEN 0x0010
25#define BCSR_PCMCIA_PC0RST 0x0080
26
Peter Tyser1e3827d2010-04-12 22:28:14 -050027/* In arch/mips/cpu/cpu.c */
wdenk5da627a2003-10-09 20:09:04 +000028void write_one_tlb( int index, u32 pagemask, u32 hi, u32 low0, u32 low1 );
29
30int checkboard (void)
31{
wdenkc3d2b4b2005-01-22 18:13:04 +000032#ifdef CONFIG_IDE_PCMCIA
wdenk5da627a2003-10-09 20:09:04 +000033 u16 status;
wdenkff36fd82005-01-09 22:28:56 +000034 volatile u32 *pcmcia_bcsr = (u32*)(DB1XX0_BCSR_ADDR+0x10);
wdenkc3d2b4b2005-01-22 18:13:04 +000035#endif /* CONFIG_IDE_PCMCIA */
wdenkff36fd82005-01-09 22:28:56 +000036 volatile u32 *phy = (u32*)(DB1XX0_BCSR_ADDR+0xC);
wdenk5da627a2003-10-09 20:09:04 +000037 volatile u32 *sys_counter = (volatile u32*)SYS_COUNTER_CNTRL;
38 u32 proc_id;
39
40 *sys_counter = 0x100; /* Enable 32 kHz oscillator for RTC/TOY */
41
Shinya Kuribayashie2ad8422008-05-30 00:53:38 +090042 proc_id = read_c0_prid();
wdenk5da627a2003-10-09 20:09:04 +000043
wdenka2663ea2003-12-07 18:32:37 +000044 switch (proc_id >> 24) {
wdenk5da627a2003-10-09 20:09:04 +000045 case 0:
wdenka2663ea2003-12-07 18:32:37 +000046 puts ("Board: Merlot (DbAu1000)\n");
47 printf ("CPU: Au1000 396 MHz, id: 0x%02x, rev: 0x%02x\n",
48 (proc_id >> 8) & 0xFF, proc_id & 0xFF);
49 break;
50 case 1:
51 puts ("Board: DbAu1500\n");
52 printf ("CPU: Au1500, id: 0x%02x, rev: 0x%02x\n",
53 (proc_id >> 8) & 0xFF, proc_id & 0xFF);
54 break;
55 case 2:
56 puts ("Board: DbAu1100\n");
57 printf ("CPU: Au1100, id: 0x%02x, rev: 0x%02x\n",
58 (proc_id >> 8) & 0xFF, proc_id & 0xFF);
59 break;
wdenkff36fd82005-01-09 22:28:56 +000060 case 3:
61 puts ("Board: DbAu1550\n");
62 printf ("CPU: Au1550, id: 0x%02x, rev: 0x%02x\n",
63 (proc_id >> 8) & 0xFF, proc_id & 0xFF);
64 break;
wdenk5da627a2003-10-09 20:09:04 +000065 default:
wdenka2663ea2003-12-07 18:32:37 +000066 printf ("Unsupported cpu %d, proc_id=0x%x\n", proc_id >> 24, proc_id);
wdenk5da627a2003-10-09 20:09:04 +000067 }
Jean-Christophe PLAGNIOL-VILLARD5c150102007-11-13 09:11:05 +010068
69 set_io_port_base(0);
70
wdenk5da627a2003-10-09 20:09:04 +000071#ifdef CONFIG_IDE_PCMCIA
72 /* Enable 3.3 V on slot 0 ( VCC )
73 No 5V */
74 status = 4;
75 *pcmcia_bcsr = status;
76
77 status |= BCSR_PCMCIA_PC0DRVEN;
78 *pcmcia_bcsr = status;
79 au_sync();
80
81 udelay(300*1000);
82
83 status |= BCSR_PCMCIA_PC0RST;
84 *pcmcia_bcsr = status;
85 au_sync();
86
87 udelay(100*1000);
88
89 /* PCMCIA is on a 36 bit physical address.
90 We need to map it into a 32 bit addresses */
91
92#if 0
93 /* We dont need theese unless we run whole pcmcia package */
94 write_one_tlb(20, /* index */
95 0x01ffe000, /* Pagemask, 16 MB pages */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020096 CONFIG_SYS_PCMCIA_IO_BASE, /* Hi */
wdenk5da627a2003-10-09 20:09:04 +000097 0x3C000017, /* Lo0 */
98 0x3C200017); /* Lo1 */
99
100 write_one_tlb(21, /* index */
101 0x01ffe000, /* Pagemask, 16 MB pages */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200102 CONFIG_SYS_PCMCIA_ATTR_BASE, /* Hi */
wdenk5da627a2003-10-09 20:09:04 +0000103 0x3D000017, /* Lo0 */
104 0x3D200017); /* Lo1 */
wdenk697037f2004-06-09 15:29:49 +0000105#endif /* 0 */
wdenk5da627a2003-10-09 20:09:04 +0000106 write_one_tlb(22, /* index */
107 0x01ffe000, /* Pagemask, 16 MB pages */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200108 CONFIG_SYS_PCMCIA_MEM_ADDR, /* Hi */
wdenk5da627a2003-10-09 20:09:04 +0000109 0x3E000017, /* Lo0 */
110 0x3E200017); /* Lo1 */
wdenk697037f2004-06-09 15:29:49 +0000111#endif /* CONFIG_IDE_PCMCIA */
wdenk5da627a2003-10-09 20:09:04 +0000112
113 /* Release reset of ethernet PHY chips */
114 /* Always do this, because linux does not know about it */
115 *phy = 3;
116
117 return 0;
wdenk5da627a2003-10-09 20:09:04 +0000118}