Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * ip22-mc.c: Routines for manipulating SGI Memory Controller. |
| 3 | * |
Justin P. Mattock | 79add62 | 2011-04-04 14:15:29 -0700 | [diff] [blame] | 4 | * Copyright (C) 1996 David S. Miller (davem@davemloft.net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * Copyright (C) 1999 Andrew R. Baker (andrewb@uab.edu) - Indigo2 changes |
| 6 | * Copyright (C) 2003 Ladislav Michl (ladis@linux-mips.org) |
Thomas Bogendoerfer | e2defae | 2007-12-02 13:00:32 +0100 | [diff] [blame] | 7 | * Copyright (C) 2004 Peter Fuerst (pf@net.alphadv.de) - IP28 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <linux/init.h> |
| 11 | #include <linux/module.h> |
| 12 | #include <linux/kernel.h> |
| 13 | |
| 14 | #include <asm/io.h> |
| 15 | #include <asm/bootinfo.h> |
| 16 | #include <asm/sgialib.h> |
| 17 | #include <asm/sgi/mc.h> |
| 18 | #include <asm/sgi/hpc3.h> |
| 19 | #include <asm/sgi/ip22.h> |
| 20 | |
| 21 | struct sgimc_regs *sgimc; |
| 22 | |
| 23 | EXPORT_SYMBOL(sgimc); |
| 24 | |
| 25 | static inline unsigned long get_bank_addr(unsigned int memconfig) |
| 26 | { |
Ralf Baechle | 635c9907 | 2014-10-21 14:12:49 +0200 | [diff] [blame] | 27 | return (memconfig & SGIMC_MCONFIG_BASEADDR) << ((sgimc->systemid & SGIMC_SYSID_MASKREV) >= 5 ? 24 : 22); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | } |
| 29 | |
| 30 | static inline unsigned long get_bank_size(unsigned int memconfig) |
| 31 | { |
Ralf Baechle | 635c9907 | 2014-10-21 14:12:49 +0200 | [diff] [blame] | 32 | return ((memconfig & SGIMC_MCONFIG_RMASK) + 0x0100) << ((sgimc->systemid & SGIMC_SYSID_MASKREV) >= 5 ? 16 : 14); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | } |
| 34 | |
| 35 | static inline unsigned int get_bank_config(int bank) |
| 36 | { |
| 37 | unsigned int res = bank > 1 ? sgimc->mconfig1 : sgimc->mconfig0; |
| 38 | return bank % 2 ? res & 0xffff : res >> 16; |
| 39 | } |
| 40 | |
| 41 | struct mem { |
| 42 | unsigned long addr; |
| 43 | unsigned long size; |
| 44 | }; |
| 45 | |
| 46 | /* |
| 47 | * Detect installed memory, do some sanity checks and notify kernel about it |
| 48 | */ |
Ralf Baechle | 5bd080f | 2007-08-13 12:47:17 +0100 | [diff] [blame] | 49 | static void __init probe_memory(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | { |
| 51 | int i, j, found, cnt = 0; |
| 52 | struct mem bank[4]; |
| 53 | struct mem space[2] = {{SGIMC_SEG0_BADDR, 0}, {SGIMC_SEG1_BADDR, 0}}; |
| 54 | |
| 55 | printk(KERN_INFO "MC: Probing memory configuration:\n"); |
| 56 | for (i = 0; i < ARRAY_SIZE(bank); i++) { |
| 57 | unsigned int tmp = get_bank_config(i); |
| 58 | if (!(tmp & SGIMC_MCONFIG_BVALID)) |
| 59 | continue; |
| 60 | |
| 61 | bank[cnt].size = get_bank_size(tmp); |
| 62 | bank[cnt].addr = get_bank_addr(tmp); |
| 63 | printk(KERN_INFO " bank%d: %3ldM @ %08lx\n", |
| 64 | i, bank[cnt].size / 1024 / 1024, bank[cnt].addr); |
| 65 | cnt++; |
| 66 | } |
| 67 | |
| 68 | /* And you thought bubble sort is dead algorithm... */ |
| 69 | do { |
| 70 | unsigned long addr, size; |
| 71 | |
| 72 | found = 0; |
| 73 | for (i = 1; i < cnt; i++) |
| 74 | if (bank[i-1].addr > bank[i].addr) { |
| 75 | addr = bank[i].addr; |
| 76 | size = bank[i].size; |
| 77 | bank[i].addr = bank[i-1].addr; |
| 78 | bank[i].size = bank[i-1].size; |
| 79 | bank[i-1].addr = addr; |
| 80 | bank[i-1].size = size; |
| 81 | found = 1; |
| 82 | } |
| 83 | } while (found); |
| 84 | |
| 85 | /* Figure out how are memory banks mapped into spaces */ |
| 86 | for (i = 0; i < cnt; i++) { |
| 87 | found = 0; |
| 88 | for (j = 0; j < ARRAY_SIZE(space) && !found; j++) |
| 89 | if (space[j].addr + space[j].size == bank[i].addr) { |
| 90 | space[j].size += bank[i].size; |
| 91 | found = 1; |
| 92 | } |
| 93 | /* There is either hole or overlapping memory */ |
| 94 | if (!found) |
| 95 | printk(KERN_CRIT "MC: Memory configuration mismatch " |
| 96 | "(%08lx), expect Bus Error soon\n", |
| 97 | bank[i].addr); |
| 98 | } |
| 99 | |
| 100 | for (i = 0; i < ARRAY_SIZE(space); i++) |
| 101 | if (space[i].size) |
| 102 | add_memory_region(space[i].addr, space[i].size, |
| 103 | BOOT_MEM_RAM); |
| 104 | } |
| 105 | |
| 106 | void __init sgimc_init(void) |
| 107 | { |
| 108 | u32 tmp; |
| 109 | |
| 110 | /* ioremap can't fail */ |
| 111 | sgimc = (struct sgimc_regs *) |
| 112 | ioremap(SGIMC_BASE, sizeof(struct sgimc_regs)); |
| 113 | |
| 114 | printk(KERN_INFO "MC: SGI memory controller Revision %d\n", |
| 115 | (int) sgimc->systemid & SGIMC_SYSID_MASKREV); |
| 116 | |
| 117 | /* Place the MC into a known state. This must be done before |
| 118 | * interrupts are first enabled etc. |
| 119 | */ |
| 120 | |
| 121 | /* Step 0: Make sure we turn off the watchdog in case it's |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 122 | * still running (which might be the case after a |
| 123 | * soft reboot). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | */ |
| 125 | tmp = sgimc->cpuctrl0; |
| 126 | tmp &= ~SGIMC_CCTRL0_WDOG; |
| 127 | sgimc->cpuctrl0 = tmp; |
| 128 | |
| 129 | /* Step 1: The CPU/GIO error status registers will not latch |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 130 | * up a new error status until the register has been |
| 131 | * cleared by the cpu. These status registers are |
| 132 | * cleared by writing any value to them. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | */ |
| 134 | sgimc->cstat = sgimc->gstat = 0; |
| 135 | |
| 136 | /* Step 2: Enable all parity checking in cpu control register |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 137 | * zero. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | */ |
Thomas Bogendoerfer | e2defae | 2007-12-02 13:00:32 +0100 | [diff] [blame] | 139 | /* don't touch parity settings for IP28 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | tmp = sgimc->cpuctrl0; |
Thomas Bogendoerfer | e84de0c | 2011-11-22 14:38:02 +0000 | [diff] [blame] | 141 | #ifndef CONFIG_SGI_IP28 |
| 142 | tmp |= SGIMC_CCTRL0_EPERRGIO | SGIMC_CCTRL0_EPERRMEM; |
Thomas Bogendoerfer | e2defae | 2007-12-02 13:00:32 +0100 | [diff] [blame] | 143 | #endif |
Thomas Bogendoerfer | e84de0c | 2011-11-22 14:38:02 +0000 | [diff] [blame] | 144 | tmp |= SGIMC_CCTRL0_R4KNOCHKPARR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | sgimc->cpuctrl0 = tmp; |
| 146 | |
| 147 | /* Step 3: Setup the MC write buffer depth, this is controlled |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 148 | * in cpu control register 1 in the lower 4 bits. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | */ |
| 150 | tmp = sgimc->cpuctrl1; |
| 151 | tmp &= ~0xf; |
| 152 | tmp |= 0xd; |
| 153 | sgimc->cpuctrl1 = tmp; |
| 154 | |
| 155 | /* Step 4: Initialize the RPSS divider register to run as fast |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 156 | * as it can correctly operate. The register is laid |
| 157 | * out as follows: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | * |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 159 | * ---------------------------------------- |
| 160 | * | RESERVED | INCREMENT | DIVIDER | |
| 161 | * ---------------------------------------- |
| 162 | * 31 16 15 8 7 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | * |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 164 | * DIVIDER determines how often a 'tick' happens, |
| 165 | * INCREMENT determines by how the RPSS increment |
| 166 | * registers value increases at each 'tick'. Thus, |
| 167 | * for IP22 we get INCREMENT=1, DIVIDER=1 == 0x101 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | */ |
| 169 | sgimc->divider = 0x101; |
| 170 | |
| 171 | /* Step 5: Initialize GIO64 arbitrator configuration register. |
| 172 | * |
| 173 | * NOTE: HPC init code in sgihpc_init() must run before us because |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 174 | * we need to know Guiness vs. FullHouse and the board |
| 175 | * revision on this machine. You have been warned. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | */ |
| 177 | |
| 178 | /* First the basic invariants across all GIO64 implementations. */ |
Thomas Bogendoerfer | e84de0c | 2011-11-22 14:38:02 +0000 | [diff] [blame] | 179 | tmp = sgimc->giopar & SGIMC_GIOPAR_GFX64; /* keep gfx 64bit settings */ |
| 180 | tmp |= SGIMC_GIOPAR_HPC64; /* All 1st HPC's interface at 64bits */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | tmp |= SGIMC_GIOPAR_ONEBUS; /* Only one physical GIO bus exists */ |
| 182 | |
| 183 | if (ip22_is_fullhouse()) { |
| 184 | /* Fullhouse specific settings. */ |
| 185 | if (SGIOC_SYSID_BOARDREV(sgioc->sysid) < 2) { |
| 186 | tmp |= SGIMC_GIOPAR_HPC264; /* 2nd HPC at 64bits */ |
| 187 | tmp |= SGIMC_GIOPAR_PLINEEXP0; /* exp0 pipelines */ |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 188 | tmp |= SGIMC_GIOPAR_MASTEREXP1; /* exp1 masters */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | tmp |= SGIMC_GIOPAR_RTIMEEXP0; /* exp0 is realtime */ |
| 190 | } else { |
| 191 | tmp |= SGIMC_GIOPAR_HPC264; /* 2nd HPC 64bits */ |
| 192 | tmp |= SGIMC_GIOPAR_PLINEEXP0; /* exp[01] pipelined */ |
| 193 | tmp |= SGIMC_GIOPAR_PLINEEXP1; |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 194 | tmp |= SGIMC_GIOPAR_MASTEREISA; /* EISA masters */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | } |
| 196 | } else { |
| 197 | /* Guiness specific settings. */ |
| 198 | tmp |= SGIMC_GIOPAR_EISA64; /* MC talks to EISA at 64bits */ |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 199 | tmp |= SGIMC_GIOPAR_MASTEREISA; /* EISA bus can act as master */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | } |
| 201 | sgimc->giopar = tmp; /* poof */ |
| 202 | |
| 203 | probe_memory(); |
| 204 | } |
| 205 | |
| 206 | void __init prom_meminit(void) {} |
Atsushi Nemoto | c44e8d5 | 2006-12-30 00:43:59 +0900 | [diff] [blame] | 207 | void __init prom_free_prom_memory(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | { |
Thomas Bogendoerfer | 7a2852e | 2008-03-18 22:47:56 +0100 | [diff] [blame] | 209 | #ifdef CONFIG_SGI_IP28 |
| 210 | u32 mconfig1; |
| 211 | unsigned long flags; |
| 212 | spinlock_t lock; |
| 213 | |
| 214 | /* |
| 215 | * because ARCS accesses memory uncached we wait until ARCS |
| 216 | * isn't needed any longer, before we switch from slow to |
| 217 | * normal mode |
| 218 | */ |
| 219 | spin_lock_irqsave(&lock, flags); |
| 220 | mconfig1 = sgimc->mconfig1; |
| 221 | /* map ECC register */ |
| 222 | sgimc->mconfig1 = (mconfig1 & 0xffff0000) | 0x2060; |
| 223 | iob(); |
| 224 | /* switch to normal mode */ |
| 225 | *(unsigned long *)PHYS_TO_XKSEG_UNCACHED(0x60000000) = 0; |
| 226 | iob(); |
| 227 | /* reduce WR_COL */ |
| 228 | sgimc->cmacc = (sgimc->cmacc & ~0xf) | 4; |
| 229 | iob(); |
| 230 | /* restore old config */ |
| 231 | sgimc->mconfig1 = mconfig1; |
| 232 | iob(); |
| 233 | spin_unlock_irqrestore(&lock, flags); |
| 234 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | } |