3 * Thomas.Lange@corelatus.se
5 * SPDX-License-Identifier: GPL-2.0+
10 #include <mach/au1x00.h>
11 #include <asm/mipsregs.h>
14 phys_size_t initdram(int board_type)
16 /* Sdram is setup by assembler code */
17 /* If memory could be changed, we should return the true value here */
21 #define BCSR_PCMCIA_PC0DRVEN 0x0010
22 #define BCSR_PCMCIA_PC0RST 0x0080
24 /* In arch/mips/cpu/cpu.c */
25 void write_one_tlb( int index, u32 pagemask, u32 hi, u32 low0, u32 low1 );
29 #if defined(CONFIG_IDE_PCMCIA) && 0
32 /* volatile u32 *pcmcia_bcsr = (u32*)(DB1000_BCSR_ADDR+0x10); */
33 volatile u32 *sys_counter = (volatile u32*)SYS_COUNTER_CNTRL;
36 *sys_counter = 0x100; /* Enable 32 kHz oscillator for RTC/TOY */
38 proc_id = read_c0_prid();
40 switch (proc_id >> 24) {
42 puts ("Board: Pb1000\n");
43 printf ("CPU: Au1000 396 MHz, id: 0x%02x, rev: 0x%02x\n",
44 (proc_id >> 8) & 0xFF, proc_id & 0xFF);
47 puts ("Board: Pb1500\n");
48 printf ("CPU: Au1500, id: 0x%02x, rev: 0x%02x\n",
49 (proc_id >> 8) & 0xFF, proc_id & 0xFF);
52 puts ("Board: Pb1100\n");
53 printf ("CPU: Au1100, id: 0x%02x, rev: 0x%02x\n",
54 (proc_id >> 8) & 0xFF, proc_id & 0xFF);
57 printf ("Unsupported cpu %d, proc_id=0x%x\n", proc_id >> 24, proc_id);
62 #if defined(CONFIG_IDE_PCMCIA) && 0
63 /* Enable 3.3 V on slot 0 ( VCC )
66 *pcmcia_bcsr = status;
68 status |= BCSR_PCMCIA_PC0DRVEN;
69 *pcmcia_bcsr = status;
74 status |= BCSR_PCMCIA_PC0RST;
75 *pcmcia_bcsr = status;
80 /* PCMCIA is on a 36 bit physical address.
81 We need to map it into a 32 bit addresses */
84 /* We dont need theese unless we run whole pcmcia package */
85 write_one_tlb(20, /* index */
86 0x01ffe000, /* Pagemask, 16 MB pages */
87 CONFIG_SYS_PCMCIA_IO_BASE, /* Hi */
89 0x3C200017); /* Lo1 */
91 write_one_tlb(21, /* index */
92 0x01ffe000, /* Pagemask, 16 MB pages */
93 CONFIG_SYS_PCMCIA_ATTR_BASE, /* Hi */
95 0x3D200017); /* Lo1 */
97 write_one_tlb(22, /* index */
98 0x01ffe000, /* Pagemask, 16 MB pages */
99 CONFIG_SYS_PCMCIA_MEM_ADDR, /* Hi */
100 0x3E000017, /* Lo0 */
101 0x3E200017); /* Lo1 */
102 #endif /* CONFIG_IDE_PCMCIA */