blob: dd2b5f26464364611bf603f10689289630bdd00e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Written by: Garry Forsgren, Unisys Corporation
3 * Natalie Protasevich, Unisys Corporation
Ingo Molnar7da18ed2009-02-17 15:29:30 +01004 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * This file contains the code to configure and interface
6 * with Unisys ES7000 series hardware system manager.
7 *
Ingo Molnar7da18ed2009-02-17 15:29:30 +01008 * Copyright (c) 2003 Unisys Corporation.
9 * Copyright (C) 2009, Red Hat, Inc., Ingo Molnar
10 *
11 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 *
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of version 2 of the GNU General Public License as
15 * published by the Free Software Foundation.
16 *
17 * This program is distributed in the hope that it would be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
20 *
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, write the Free Software Foundation, Inc., 59
23 * Temple Place - Suite 330, Boston MA 02111-1307, USA.
24 *
25 * Contact information: Unisys Corporation, Township Line & Union Meeting
26 * Roads-A, Unisys Way, Blue Bell, Pennsylvania, 19424, or:
27 *
28 * http://www.unisys.com
29 */
Joe Perches5cd476e2009-12-09 10:45:33 -080030
31#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/notifier.h>
Ingo Molnar2c4ce182009-02-17 14:57:16 +010034#include <linux/spinlock.h>
35#include <linux/cpumask.h>
36#include <linux/threads.h>
37#include <linux/kernel.h>
38#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/reboot.h>
Ingo Molnar2c4ce182009-02-17 14:57:16 +010040#include <linux/string.h>
41#include <linux/types.h>
42#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/acpi.h>
Ingo Molnar2c4ce182009-02-17 14:57:16 +010044#include <linux/init.h>
Ingo Molnar7da18ed2009-02-17 15:29:30 +010045#include <linux/nmi.h>
Ingo Molnar2c4ce182009-02-17 14:57:16 +010046#include <linux/smp.h>
Ingo Molnar7da18ed2009-02-17 15:29:30 +010047#include <linux/io.h>
Ingo Molnar2c4ce182009-02-17 14:57:16 +010048
49#include <asm/apicdef.h>
50#include <asm/atomic.h>
51#include <asm/fixmap.h>
52#include <asm/mpspec.h>
53#include <asm/setup.h>
54#include <asm/apic.h>
55#include <asm/ipi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57/*
Yinghai Lu16253242008-08-27 23:01:16 -070058 * ES7000 chipsets
59 */
60
Ingo Molnar2c4ce182009-02-17 14:57:16 +010061#define NON_UNISYS 0
62#define ES7000_CLASSIC 1
63#define ES7000_ZORRO 2
Yinghai Lu16253242008-08-27 23:01:16 -070064
Ingo Molnar2c4ce182009-02-17 14:57:16 +010065#define MIP_REG 1
66#define MIP_PSAI_REG 4
Yinghai Lu16253242008-08-27 23:01:16 -070067
Ingo Molnar2c4ce182009-02-17 14:57:16 +010068#define MIP_BUSY 1
69#define MIP_SPIN 0xf0000
70#define MIP_VALID 0x0100000000000000ULL
Ingo Molnar352887d2009-02-17 15:17:55 +010071#define MIP_SW_APIC 0x1020b
Yinghai Lu16253242008-08-27 23:01:16 -070072
Ingo Molnar2c4ce182009-02-17 14:57:16 +010073#define MIP_PORT(val) ((val >> 32) & 0xffff)
Yinghai Lu16253242008-08-27 23:01:16 -070074
Ingo Molnar2c4ce182009-02-17 14:57:16 +010075#define MIP_RD_LO(val) (val & 0xffffffff)
Yinghai Lu16253242008-08-27 23:01:16 -070076
Yinghai Lu16253242008-08-27 23:01:16 -070077struct mip_reg {
Ingo Molnar2c4ce182009-02-17 14:57:16 +010078 unsigned long long off_0x00;
79 unsigned long long off_0x08;
80 unsigned long long off_0x10;
81 unsigned long long off_0x18;
82 unsigned long long off_0x20;
83 unsigned long long off_0x28;
84 unsigned long long off_0x30;
85 unsigned long long off_0x38;
Yinghai Lu16253242008-08-27 23:01:16 -070086};
87
Ingo Molnar352887d2009-02-17 15:17:55 +010088struct mip_reg_info {
89 unsigned long long mip_info;
90 unsigned long long delivery_info;
91 unsigned long long host_reg;
92 unsigned long long mip_reg;
93};
Ingo Molnar2c4ce182009-02-17 14:57:16 +010094
Ingo Molnar352887d2009-02-17 15:17:55 +010095struct psai {
96 unsigned long long entry_type;
97 unsigned long long addr;
98 unsigned long long bep_addr;
99};
Ingo Molnar2c4ce182009-02-17 14:57:16 +0100100
Ingo Molnar352887d2009-02-17 15:17:55 +0100101#ifdef CONFIG_ACPI
Ingo Molnar7da18ed2009-02-17 15:29:30 +0100102
Ingo Molnar352887d2009-02-17 15:17:55 +0100103struct es7000_oem_table {
104 struct acpi_table_header Header;
105 u32 OEMTableAddr;
106 u32 OEMTableSize;
107};
Ingo Molnar7da18ed2009-02-17 15:29:30 +0100108
109static unsigned long oem_addrX;
110static unsigned long oem_size;
111
Ingo Molnar352887d2009-02-17 15:17:55 +0100112#endif
Ingo Molnar2c4ce182009-02-17 14:57:16 +0100113
Yinghai Lu16253242008-08-27 23:01:16 -0700114/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 * ES7000 Globals
116 */
117
Ingo Molnar7da18ed2009-02-17 15:29:30 +0100118static volatile unsigned long *psai;
Ingo Molnar2c4ce182009-02-17 14:57:16 +0100119static struct mip_reg *mip_reg;
120static struct mip_reg *host_reg;
121static int mip_port;
Ingo Molnar7da18ed2009-02-17 15:29:30 +0100122static unsigned long mip_addr;
123static unsigned long host_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Ingo Molnar2c4ce182009-02-17 14:57:16 +0100125int es7000_plat;
Alexey Starikovskiy32c50612008-05-14 19:02:51 +0400126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127/*
128 * GSI override for ES7000 platforms.
129 */
130
Ingo Molnar2c4ce182009-02-17 14:57:16 +0100131static unsigned int base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133static int
134es7000_rename_gsi(int ioapic, int gsi)
135{
Natalie.Protasevich@unisys.com93383162005-10-30 14:59:38 -0800136 if (es7000_plat == ES7000_ZORRO)
137 return gsi;
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 if (!base) {
140 int i;
141 for (i = 0; i < nr_ioapics; i++)
142 base += nr_ioapic_registers[i];
143 }
144
Yinghai Luc7e79642008-07-25 02:17:33 -0700145 if (!ioapic && (gsi < 16))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 gsi += base;
Ingo Molnar2c4ce182009-02-17 14:57:16 +0100147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 return gsi;
149}
150
Cyrill Gorcunov667c5292009-04-19 11:43:11 +0400151static int __cpuinit wakeup_secondary_cpu_via_mip(int cpu, unsigned long eip)
Yinghai Lu569712b2008-11-16 03:12:49 -0800152{
153 unsigned long vect = 0, psaival = 0;
154
155 if (psai == NULL)
156 return -1;
157
158 vect = ((unsigned long)__pa(eip)/0x1000) << 16;
159 psaival = (0x1000000 | vect | cpu);
160
161 while (*psai & 0x1000000)
162 ;
163
164 *psai = psaival;
165
166 return 0;
167}
Yinghai Lu54ac14a2008-11-17 15:19:53 -0800168
Jiri Slaby871d78c2009-03-02 11:34:27 +0100169static int es7000_apic_is_cluster(void)
Yinghai Lu54ac14a2008-11-17 15:19:53 -0800170{
Yinghai Lub5fe3632008-11-18 08:14:14 -0800171 /* MPENTIUMIII */
172 if (boot_cpu_data.x86 == 6 &&
Roel Kluin005155b2009-08-25 15:35:12 +0200173 (boot_cpu_data.x86_model >= 7 && boot_cpu_data.x86_model <= 11))
Yinghai Lu2b6163b2009-02-25 20:50:49 -0800174 return 1;
Yinghai Lub5fe3632008-11-18 08:14:14 -0800175
Yinghai Lu54ac14a2008-11-17 15:19:53 -0800176 return 0;
177}
Yinghai Lu569712b2008-11-16 03:12:49 -0800178
Jiri Slaby871d78c2009-03-02 11:34:27 +0100179static void setup_unisys(void)
Natalie.Protasevich@unisys.com56f1d5d2005-09-03 15:56:34 -0700180{
181 /*
182 * Determine the generation of the ES7000 currently running.
183 *
184 * es7000_plat = 1 if the machine is a 5xx ES7000 box
185 * es7000_plat = 2 if the machine is a x86_64 ES7000 box
186 *
187 */
188 if (!(boot_cpu_data.x86 <= 15 && boot_cpu_data.x86_model <= 2))
Natalie.Protasevich@unisys.com93383162005-10-30 14:59:38 -0800189 es7000_plat = ES7000_ZORRO;
Natalie.Protasevich@unisys.com56f1d5d2005-09-03 15:56:34 -0700190 else
Natalie.Protasevich@unisys.com93383162005-10-30 14:59:38 -0800191 es7000_plat = ES7000_CLASSIC;
Natalie.Protasevich@unisys.com56f1d5d2005-09-03 15:56:34 -0700192 ioapic_renumber_irq = es7000_rename_gsi;
193}
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195/*
Ingo Molnard3185b32009-02-17 15:13:05 +0100196 * Parse the OEM Table:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 */
Jiri Slaby871d78c2009-03-02 11:34:27 +0100198static int parse_unisys_oem(char *oemptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
Ingo Molnar352887d2009-02-17 15:17:55 +0100200 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 int success = 0;
Ingo Molnar352887d2009-02-17 15:17:55 +0100202 unsigned char type, size;
203 unsigned long val;
204 char *tp = NULL;
205 struct psai *psaip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 struct mip_reg_info *mi;
207 struct mip_reg *host, *mip;
208
209 tp = oemptr;
210
211 tp += 8;
212
Ingo Molnar352887d2009-02-17 15:17:55 +0100213 for (i = 0; i <= 6; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 type = *tp++;
215 size = *tp++;
216 tp -= 2;
217 switch (type) {
218 case MIP_REG:
219 mi = (struct mip_reg_info *)tp;
220 val = MIP_RD_LO(mi->host_reg);
221 host_addr = val;
222 host = (struct mip_reg *)val;
223 host_reg = __va(host);
224 val = MIP_RD_LO(mi->mip_reg);
225 mip_port = MIP_PORT(mi->mip_info);
226 mip_addr = val;
227 mip = (struct mip_reg *)val;
228 mip_reg = __va(mip);
Joe Perches5cd476e2009-12-09 10:45:33 -0800229 pr_debug("host_reg = 0x%lx\n",
Thomas Gleixner5171c302008-07-21 21:58:34 +0200230 (unsigned long)host_reg);
Joe Perches5cd476e2009-12-09 10:45:33 -0800231 pr_debug("mip_reg = 0x%lx\n",
Thomas Gleixner5171c302008-07-21 21:58:34 +0200232 (unsigned long)mip_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 success++;
234 break;
235 case MIP_PSAI_REG:
236 psaip = (struct psai *)tp;
237 if (tp != NULL) {
238 if (psaip->addr)
239 psai = __va(psaip->addr);
240 else
241 psai = NULL;
242 success++;
243 }
244 break;
245 default:
246 break;
247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 tp += size;
249 }
250
Ingo Molnard3185b32009-02-17 15:13:05 +0100251 if (success < 2)
Natalie.Protasevich@unisys.com93383162005-10-30 14:59:38 -0800252 es7000_plat = NON_UNISYS;
Ingo Molnard3185b32009-02-17 15:13:05 +0100253 else
Natalie.Protasevich@unisys.com56f1d5d2005-09-03 15:56:34 -0700254 setup_unisys();
Ingo Molnar2c4ce182009-02-17 14:57:16 +0100255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 return es7000_plat;
257}
258
Natalie.Protasevich@unisys.come5428ed2006-03-23 02:59:36 -0800259#ifdef CONFIG_ACPI
Sam Ravnborgb74d4462009-05-09 15:35:10 +0600260static int __init find_unisys_acpi_oem_table(unsigned long *oem_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +0300262 struct acpi_table_header *header = NULL;
Ingo Molnar7da18ed2009-02-17 15:29:30 +0100263 struct es7000_oem_table *table;
Yinghai Lub825e6c2009-02-07 15:39:41 -0800264 acpi_size tbl_size;
Ingo Molnar7da18ed2009-02-17 15:29:30 +0100265 acpi_status ret;
266 int i = 0;
Yinghai Lua73aaed2008-09-14 02:33:14 -0700267
Ingo Molnar7da18ed2009-02-17 15:29:30 +0100268 for (;;) {
269 ret = acpi_get_table_with_size("OEM1", i++, &header, &tbl_size);
270 if (!ACPI_SUCCESS(ret))
271 return -1;
Yinghai Lua73aaed2008-09-14 02:33:14 -0700272
Ingo Molnar7da18ed2009-02-17 15:29:30 +0100273 if (!memcmp((char *) &header->oem_id, "UNISYS", 6))
274 break;
Yinghai Lua73aaed2008-09-14 02:33:14 -0700275
Yinghai Lub825e6c2009-02-07 15:39:41 -0800276 early_acpi_os_unmap_memory(header, tbl_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 }
Ingo Molnar7da18ed2009-02-17 15:29:30 +0100278
279 table = (void *)header;
280
281 oem_addrX = table->OEMTableAddr;
282 oem_size = table->OEMTableSize;
283
284 early_acpi_os_unmap_memory(header, tbl_size);
285
286 *oem_addr = (unsigned long)__acpi_map_table(oem_addrX, oem_size);
287
288 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
Yinghai Lua73aaed2008-09-14 02:33:14 -0700290
Sam Ravnborgb74d4462009-05-09 15:35:10 +0600291static void __init unmap_unisys_acpi_oem_table(unsigned long oem_addr)
Yinghai Lua73aaed2008-09-14 02:33:14 -0700292{
Yinghai Lub825e6c2009-02-07 15:39:41 -0800293 if (!oem_addr)
294 return;
295
296 __acpi_unmap_table((char *)oem_addr, oem_size);
Yinghai Lua73aaed2008-09-14 02:33:14 -0700297}
Ingo Molnar7da18ed2009-02-17 15:29:30 +0100298
299static int es7000_check_dsdt(void)
300{
301 struct acpi_table_header header;
302
303 if (ACPI_SUCCESS(acpi_get_table_header(ACPI_SIG_DSDT, 0, &header)) &&
304 !strncmp(header.oem_id, "UNISYS", 6))
305 return 1;
306 return 0;
307}
308
Jiri Slaby871d78c2009-03-02 11:34:27 +0100309static int es7000_acpi_ret;
Yinghai Lu2b6163b2009-02-25 20:50:49 -0800310
Ingo Molnar7da18ed2009-02-17 15:29:30 +0100311/* Hook from generic ACPI tables.c */
Sam Ravnborgb74d4462009-05-09 15:35:10 +0600312static int __init es7000_acpi_madt_oem_check(char *oem_id, char *oem_table_id)
Ingo Molnar7da18ed2009-02-17 15:29:30 +0100313{
314 unsigned long oem_addr = 0;
315 int check_dsdt;
316 int ret = 0;
317
318 /* check dsdt at first to avoid clear fix_map for oem_addr */
319 check_dsdt = es7000_check_dsdt();
320
321 if (!find_unisys_acpi_oem_table(&oem_addr)) {
322 if (check_dsdt) {
323 ret = parse_unisys_oem((char *)oem_addr);
324 } else {
325 setup_unisys();
326 ret = 1;
327 }
328 /*
329 * we need to unmap it
330 */
331 unmap_unisys_acpi_oem_table(oem_addr);
332 }
Yinghai Lu2b6163b2009-02-25 20:50:49 -0800333
334 es7000_acpi_ret = ret;
335
336 return ret && !es7000_apic_is_cluster();
Ingo Molnar7da18ed2009-02-17 15:29:30 +0100337}
Ingo Molnar3b900d42009-02-26 14:34:08 +0100338
Jiri Slaby871d78c2009-03-02 11:34:27 +0100339static int es7000_acpi_madt_oem_check_cluster(char *oem_id, char *oem_table_id)
Yinghai Lu2b6163b2009-02-25 20:50:49 -0800340{
341 int ret = es7000_acpi_ret;
342
343 return ret && es7000_apic_is_cluster();
344}
345
Ingo Molnar7da18ed2009-02-17 15:29:30 +0100346#else /* !CONFIG_ACPI: */
Jiri Slaby871d78c2009-03-02 11:34:27 +0100347static int es7000_acpi_madt_oem_check(char *oem_id, char *oem_table_id)
Ingo Molnar7da18ed2009-02-17 15:29:30 +0100348{
349 return 0;
350}
Ingo Molnar3b900d42009-02-26 14:34:08 +0100351
Jiri Slaby871d78c2009-03-02 11:34:27 +0100352static int es7000_acpi_madt_oem_check_cluster(char *oem_id, char *oem_table_id)
Ingo Molnar3b900d42009-02-26 14:34:08 +0100353{
354 return 0;
355}
Ingo Molnar7da18ed2009-02-17 15:29:30 +0100356#endif /* !CONFIG_ACPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Ingo Molnar2c4ce182009-02-17 14:57:16 +0100358static void es7000_spin(int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
360 int i = 0;
361
362 while (i++ < n)
363 rep_nop();
364}
365
Jiri Slaby871d78c2009-03-02 11:34:27 +0100366static int es7000_mip_write(struct mip_reg *mip_reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
Ingo Molnar2c4ce182009-02-17 14:57:16 +0100368 int status = 0;
369 int spin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371 spin = MIP_SPIN;
Ingo Molnar2c4ce182009-02-17 14:57:16 +0100372 while ((host_reg->off_0x38 & MIP_VALID) != 0) {
373 if (--spin <= 0) {
Ingo Molnar7da18ed2009-02-17 15:29:30 +0100374 WARN(1, "Timeout waiting for Host Valid Flag\n");
Ingo Molnar2c4ce182009-02-17 14:57:16 +0100375 return -1;
376 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 es7000_spin(MIP_SPIN);
378 }
379
380 memcpy(host_reg, mip_reg, sizeof(struct mip_reg));
381 outb(1, mip_port);
382
383 spin = MIP_SPIN;
384
Ingo Molnar2c4ce182009-02-17 14:57:16 +0100385 while ((mip_reg->off_0x38 & MIP_VALID) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 if (--spin <= 0) {
Ingo Molnar7da18ed2009-02-17 15:29:30 +0100387 WARN(1, "Timeout waiting for MIP Valid Flag\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 return -1;
389 }
390 es7000_spin(MIP_SPIN);
391 }
392
Ingo Molnar2c4ce182009-02-17 14:57:16 +0100393 status = (mip_reg->off_0x00 & 0xffff0000000000ULL) >> 48;
394 mip_reg->off_0x38 &= ~MIP_VALID;
395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 return status;
397}
398
Jiri Slaby871d78c2009-03-02 11:34:27 +0100399static void es7000_enable_apic_mode(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
Ingo Molnarb0b20e52009-01-28 13:15:06 +0100401 struct mip_reg es7000_mip_reg;
402 int mip_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Ingo Molnarb0b20e52009-01-28 13:15:06 +0100404 if (!es7000_plat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 return;
Ingo Molnarb0b20e52009-01-28 13:15:06 +0100406
Joe Perches5cd476e2009-12-09 10:45:33 -0800407 pr_info("Enabling APIC mode.\n");
Ingo Molnar352887d2009-02-17 15:17:55 +0100408 memset(&es7000_mip_reg, 0, sizeof(struct mip_reg));
409 es7000_mip_reg.off_0x00 = MIP_SW_APIC;
410 es7000_mip_reg.off_0x38 = MIP_VALID;
Ingo Molnarb0b20e52009-01-28 13:15:06 +0100411
Ingo Molnar7da18ed2009-02-17 15:29:30 +0100412 while ((mip_status = es7000_mip_write(&es7000_mip_reg)) != 0)
413 WARN(1, "Command failed, status = %x\n", mip_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414}
Ingo Molnar2e096df2009-01-28 19:01:05 +0100415
Rusty Russell73e907d2009-03-13 14:49:57 +1030416static void es7000_vector_allocation_domain(int cpu, struct cpumask *retmask)
Ingo Molnar2e096df2009-01-28 19:01:05 +0100417{
418 /* Careful. Some cpus do not strictly honor the set of cpus
419 * specified in the interrupt destination when using lowest
420 * priority interrupt delivery mode.
421 *
422 * In particular there was a hyperthreading cpu observed to
423 * deliver interrupts to the wrong hyperthread when only one
424 * hyperthread was specified in the interrupt desitination.
425 */
Rusty Russell5c6cb5e2009-03-13 14:49:56 +1030426 cpumask_clear(retmask);
427 cpumask_bits(retmask)[0] = APIC_ALL_CPUS;
Ingo Molnar2e096df2009-01-28 19:01:05 +0100428}
429
430
431static void es7000_wait_for_init_deassert(atomic_t *deassert)
432{
Ingo Molnar2e096df2009-01-28 19:01:05 +0100433 while (!atomic_read(deassert))
434 cpu_relax();
Ingo Molnar2e096df2009-01-28 19:01:05 +0100435}
436
437static unsigned int es7000_get_apic_id(unsigned long x)
438{
439 return (x >> 24) & 0xFF;
440}
441
Ingo Molnar2e096df2009-01-28 19:01:05 +0100442static void es7000_send_IPI_mask(const struct cpumask *mask, int vector)
443{
Yinghai Lu43f39892009-01-29 19:31:49 -0800444 default_send_IPI_mask_sequence_phys(mask, vector);
Ingo Molnar2e096df2009-01-28 19:01:05 +0100445}
446
447static void es7000_send_IPI_allbutself(int vector)
448{
Yinghai Lu43f39892009-01-29 19:31:49 -0800449 default_send_IPI_mask_allbutself_phys(cpu_online_mask, vector);
Ingo Molnar2e096df2009-01-28 19:01:05 +0100450}
451
452static void es7000_send_IPI_all(int vector)
453{
454 es7000_send_IPI_mask(cpu_online_mask, vector);
455}
456
457static int es7000_apic_id_registered(void)
458{
Ingo Molnar352887d2009-02-17 15:17:55 +0100459 return 1;
Ingo Molnar2e096df2009-01-28 19:01:05 +0100460}
461
Rusty Russell73e907d2009-03-13 14:49:57 +1030462static const struct cpumask *target_cpus_cluster(void)
Ingo Molnar2e096df2009-01-28 19:01:05 +0100463{
Rusty Russell101aaca2009-03-13 14:49:47 +1030464 return cpu_all_mask;
Ingo Molnar2e096df2009-01-28 19:01:05 +0100465}
466
Rusty Russell4f062892009-03-13 14:49:54 +1030467static const struct cpumask *es7000_target_cpus(void)
Ingo Molnar2e096df2009-01-28 19:01:05 +0100468{
Rusty Russell4f062892009-03-13 14:49:54 +1030469 return cpumask_of(smp_processor_id());
Ingo Molnar2e096df2009-01-28 19:01:05 +0100470}
471
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +0300472static unsigned long es7000_check_apicid_used(physid_mask_t *map, int apicid)
Ingo Molnar2e096df2009-01-28 19:01:05 +0100473{
474 return 0;
475}
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +0300476
Ingo Molnar2e096df2009-01-28 19:01:05 +0100477static unsigned long es7000_check_apicid_present(int bit)
478{
479 return physid_isset(bit, phys_cpu_present_map);
480}
481
482static unsigned long calculate_ldr(int cpu)
483{
Ingo Molnar2c4ce182009-02-17 14:57:16 +0100484 unsigned long id = per_cpu(x86_bios_cpu_apicid, cpu);
Ingo Molnar2e096df2009-01-28 19:01:05 +0100485
Ingo Molnar2c4ce182009-02-17 14:57:16 +0100486 return SET_APIC_LOGICAL_ID(id);
Ingo Molnar2e096df2009-01-28 19:01:05 +0100487}
488
489/*
490 * Set up the logical destination ID.
491 *
492 * Intel recommends to set DFR, LdR and TPR before enabling
493 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
494 * document number 292116). So here it goes...
495 */
496static void es7000_init_apic_ldr_cluster(void)
497{
498 unsigned long val;
499 int cpu = smp_processor_id();
500
Ingo Molnar352887d2009-02-17 15:17:55 +0100501 apic_write(APIC_DFR, APIC_DFR_CLUSTER);
Ingo Molnar2e096df2009-01-28 19:01:05 +0100502 val = calculate_ldr(cpu);
503 apic_write(APIC_LDR, val);
504}
505
506static void es7000_init_apic_ldr(void)
507{
508 unsigned long val;
509 int cpu = smp_processor_id();
510
Ingo Molnar352887d2009-02-17 15:17:55 +0100511 apic_write(APIC_DFR, APIC_DFR_FLAT);
Ingo Molnar2e096df2009-01-28 19:01:05 +0100512 val = calculate_ldr(cpu);
513 apic_write(APIC_LDR, val);
514}
515
516static void es7000_setup_apic_routing(void)
517{
518 int apic = per_cpu(x86_bios_cpu_apicid, smp_processor_id());
Ingo Molnar7da18ed2009-02-17 15:29:30 +0100519
Joe Perches5cd476e2009-12-09 10:45:33 -0800520 pr_info("Enabling APIC mode: %s. Using %d I/O APICs, target cpus %lx\n",
Ingo Molnar2e096df2009-01-28 19:01:05 +0100521 (apic_version[apic] == 0x14) ?
522 "Physical Cluster" : "Logical Cluster",
Rusty Russell4f062892009-03-13 14:49:54 +1030523 nr_ioapics, cpumask_bits(es7000_target_cpus())[0]);
Ingo Molnar2e096df2009-01-28 19:01:05 +0100524}
525
526static int es7000_apicid_to_node(int logical_apicid)
527{
528 return 0;
529}
530
531
532static int es7000_cpu_present_to_apicid(int mps_cpu)
533{
534 if (!mps_cpu)
535 return boot_cpu_physical_apicid;
536 else if (mps_cpu < nr_cpu_ids)
Ingo Molnar2c4ce182009-02-17 14:57:16 +0100537 return per_cpu(x86_bios_cpu_apicid, mps_cpu);
Ingo Molnar2e096df2009-01-28 19:01:05 +0100538 else
539 return BAD_APICID;
540}
541
Ingo Molnar7da18ed2009-02-17 15:29:30 +0100542static int cpu_id;
543
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +0300544static void es7000_apicid_to_cpu_present(int phys_apicid, physid_mask_t *retmap)
Ingo Molnar2e096df2009-01-28 19:01:05 +0100545{
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +0300546 physid_set_mask_of_physid(cpu_id, retmap);
Ingo Molnar7da18ed2009-02-17 15:29:30 +0100547 ++cpu_id;
Ingo Molnar2e096df2009-01-28 19:01:05 +0100548}
549
550/* Mapping from cpu number to logical apicid */
551static int es7000_cpu_to_logical_apicid(int cpu)
552{
553#ifdef CONFIG_SMP
554 if (cpu >= nr_cpu_ids)
555 return BAD_APICID;
Ingo Molnar2f205bc2009-02-17 14:45:30 +0100556 return cpu_2_logical_apicid[cpu];
Ingo Molnar2e096df2009-01-28 19:01:05 +0100557#else
558 return logical_smp_processor_id();
559#endif
560}
561
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +0300562static void es7000_ioapic_phys_id_map(physid_mask_t *phys_map, physid_mask_t *retmap)
Ingo Molnar2e096df2009-01-28 19:01:05 +0100563{
564 /* For clustered we don't have a good way to do this yet - hack */
Cyrill Gorcunov7abc0752009-11-10 01:06:59 +0300565 physids_promote(0xFFL, retmap);
Ingo Molnar2e096df2009-01-28 19:01:05 +0100566}
567
568static int es7000_check_phys_apicid_present(int cpu_physical_apicid)
569{
570 boot_cpu_physical_apicid = read_apic_id();
Ingo Molnar2c4ce182009-02-17 14:57:16 +0100571 return 1;
Ingo Molnar2e096df2009-01-28 19:01:05 +0100572}
573
Rusty Russell73e907d2009-03-13 14:49:57 +1030574static unsigned int es7000_cpu_mask_to_apicid(const struct cpumask *cpumask)
Ingo Molnar2e096df2009-01-28 19:01:05 +0100575{
Jiri Slaby0edc0b32009-03-02 10:53:57 +0100576 unsigned int round = 0;
577 int cpu, uninitialized_var(apicid);
Ingo Molnar2e096df2009-01-28 19:01:05 +0100578
Ingo Molnar2e096df2009-01-28 19:01:05 +0100579 /*
Jiri Slaby0edc0b32009-03-02 10:53:57 +0100580 * The cpus in the mask must all be on the apic cluster.
Ingo Molnar2e096df2009-01-28 19:01:05 +0100581 */
Jiri Slaby0edc0b32009-03-02 10:53:57 +0100582 for_each_cpu(cpu, cpumask) {
583 int new_apicid = es7000_cpu_to_logical_apicid(cpu);
Ingo Molnar2e096df2009-01-28 19:01:05 +0100584
Jiri Slaby0edc0b32009-03-02 10:53:57 +0100585 if (round && APIC_CLUSTER(apicid) != APIC_CLUSTER(new_apicid)) {
586 WARN(1, "Not a valid mask!");
Ingo Molnar2e096df2009-01-28 19:01:05 +0100587
Jiri Slaby0edc0b32009-03-02 10:53:57 +0100588 return BAD_APICID;
Ingo Molnar2e096df2009-01-28 19:01:05 +0100589 }
Jiri Slaby0edc0b32009-03-02 10:53:57 +0100590 apicid = new_apicid;
591 round++;
Ingo Molnar2e096df2009-01-28 19:01:05 +0100592 }
593 return apicid;
594}
595
596static unsigned int
597es7000_cpu_mask_to_apicid_and(const struct cpumask *inmask,
598 const struct cpumask *andmask)
599{
600 int apicid = es7000_cpu_to_logical_apicid(0);
601 cpumask_var_t cpumask;
602
603 if (!alloc_cpumask_var(&cpumask, GFP_ATOMIC))
604 return apicid;
605
606 cpumask_and(cpumask, inmask, andmask);
607 cpumask_and(cpumask, cpumask, cpu_online_mask);
608 apicid = es7000_cpu_mask_to_apicid(cpumask);
609
610 free_cpumask_var(cpumask);
611
612 return apicid;
613}
614
615static int es7000_phys_pkg_id(int cpuid_apic, int index_msb)
616{
617 return cpuid_apic >> index_msb;
618}
619
Ingo Molnar2e096df2009-01-28 19:01:05 +0100620static int probe_es7000(void)
621{
622 /* probed later in mptable/ACPI hooks */
623 return 0;
624}
625
Jiri Slaby871d78c2009-03-02 11:34:27 +0100626static int es7000_mps_ret;
627static int es7000_mps_oem_check(struct mpc_table *mpc, char *oem,
628 char *productid)
Ingo Molnar2e096df2009-01-28 19:01:05 +0100629{
Yinghai Lu2b6163b2009-02-25 20:50:49 -0800630 int ret = 0;
631
Ingo Molnar2e096df2009-01-28 19:01:05 +0100632 if (mpc->oemptr) {
633 struct mpc_oemtable *oem_table =
634 (struct mpc_oemtable *)mpc->oemptr;
635
636 if (!strncmp(oem, "UNISYS", 6))
Yinghai Lu2b6163b2009-02-25 20:50:49 -0800637 ret = parse_unisys_oem((char *)oem_table);
Ingo Molnar2e096df2009-01-28 19:01:05 +0100638 }
Yinghai Lu2b6163b2009-02-25 20:50:49 -0800639
640 es7000_mps_ret = ret;
641
642 return ret && !es7000_apic_is_cluster();
Ingo Molnar2e096df2009-01-28 19:01:05 +0100643}
644
Jiri Slaby871d78c2009-03-02 11:34:27 +0100645static int es7000_mps_oem_check_cluster(struct mpc_table *mpc, char *oem,
646 char *productid)
Yinghai Lu2b6163b2009-02-25 20:50:49 -0800647{
648 int ret = es7000_mps_ret;
649
650 return ret && es7000_apic_is_cluster();
651}
652
Rakib Mullick151586d2009-07-12 17:04:12 +0600653/* We've been warned by a false positive warning.Use __refdata to keep calm. */
654struct apic __refdata apic_es7000_cluster = {
Yinghai Lu2b6163b2009-02-25 20:50:49 -0800655
656 .name = "es7000",
657 .probe = probe_es7000,
658 .acpi_madt_oem_check = es7000_acpi_madt_oem_check_cluster,
659 .apic_id_registered = es7000_apic_id_registered,
660
661 .irq_delivery_mode = dest_LowestPrio,
662 /* logical delivery broadcast to all procs: */
663 .irq_dest_mode = 1,
664
665 .target_cpus = target_cpus_cluster,
666 .disable_esr = 1,
667 .dest_logical = 0,
668 .check_apicid_used = es7000_check_apicid_used,
669 .check_apicid_present = es7000_check_apicid_present,
670
671 .vector_allocation_domain = es7000_vector_allocation_domain,
672 .init_apic_ldr = es7000_init_apic_ldr_cluster,
673
674 .ioapic_phys_id_map = es7000_ioapic_phys_id_map,
675 .setup_apic_routing = es7000_setup_apic_routing,
676 .multi_timer_check = NULL,
677 .apicid_to_node = es7000_apicid_to_node,
678 .cpu_to_logical_apicid = es7000_cpu_to_logical_apicid,
679 .cpu_present_to_apicid = es7000_cpu_present_to_apicid,
680 .apicid_to_cpu_present = es7000_apicid_to_cpu_present,
681 .setup_portio_remap = NULL,
682 .check_phys_apicid_present = es7000_check_phys_apicid_present,
683 .enable_apic_mode = es7000_enable_apic_mode,
684 .phys_pkg_id = es7000_phys_pkg_id,
685 .mps_oem_check = es7000_mps_oem_check_cluster,
686
687 .get_apic_id = es7000_get_apic_id,
688 .set_apic_id = NULL,
689 .apic_id_mask = 0xFF << 24,
690
Jiri Slabyc2b20cb2009-03-02 10:53:56 +0100691 .cpu_mask_to_apicid = es7000_cpu_mask_to_apicid,
Yinghai Lu2b6163b2009-02-25 20:50:49 -0800692 .cpu_mask_to_apicid_and = es7000_cpu_mask_to_apicid_and,
693
694 .send_IPI_mask = es7000_send_IPI_mask,
695 .send_IPI_mask_allbutself = NULL,
696 .send_IPI_allbutself = es7000_send_IPI_allbutself,
697 .send_IPI_all = es7000_send_IPI_all,
698 .send_IPI_self = default_send_IPI_self,
699
Ingo Molnar1f5bcab2009-02-26 13:51:40 +0100700 .wakeup_secondary_cpu = wakeup_secondary_cpu_via_mip,
Yinghai Lu2b6163b2009-02-25 20:50:49 -0800701
702 .trampoline_phys_low = 0x467,
703 .trampoline_phys_high = 0x469,
704
705 .wait_for_init_deassert = NULL,
706
707 /* Nothing to do for most platforms, since cleared by the INIT cycle: */
708 .smp_callin_clear_local_apic = NULL,
709 .inquire_remote_apic = default_inquire_remote_apic,
710
711 .read = native_apic_mem_read,
712 .write = native_apic_mem_write,
713 .icr_read = native_apic_icr_read,
714 .icr_write = native_apic_icr_write,
715 .wait_icr_idle = native_apic_wait_icr_idle,
716 .safe_wait_icr_idle = native_safe_apic_wait_icr_idle,
717};
Ingo Molnar2e096df2009-01-28 19:01:05 +0100718
Sam Ravnborgb74d4462009-05-09 15:35:10 +0600719struct apic __refdata apic_es7000 = {
Ingo Molnar2e096df2009-01-28 19:01:05 +0100720
721 .name = "es7000",
722 .probe = probe_es7000,
723 .acpi_madt_oem_check = es7000_acpi_madt_oem_check,
724 .apic_id_registered = es7000_apic_id_registered,
725
726 .irq_delivery_mode = dest_Fixed,
727 /* phys delivery to target CPUs: */
728 .irq_dest_mode = 0,
729
730 .target_cpus = es7000_target_cpus,
731 .disable_esr = 1,
732 .dest_logical = 0,
733 .check_apicid_used = es7000_check_apicid_used,
734 .check_apicid_present = es7000_check_apicid_present,
735
736 .vector_allocation_domain = es7000_vector_allocation_domain,
737 .init_apic_ldr = es7000_init_apic_ldr,
738
739 .ioapic_phys_id_map = es7000_ioapic_phys_id_map,
740 .setup_apic_routing = es7000_setup_apic_routing,
741 .multi_timer_check = NULL,
742 .apicid_to_node = es7000_apicid_to_node,
743 .cpu_to_logical_apicid = es7000_cpu_to_logical_apicid,
744 .cpu_present_to_apicid = es7000_cpu_present_to_apicid,
745 .apicid_to_cpu_present = es7000_apicid_to_cpu_present,
746 .setup_portio_remap = NULL,
747 .check_phys_apicid_present = es7000_check_phys_apicid_present,
748 .enable_apic_mode = es7000_enable_apic_mode,
749 .phys_pkg_id = es7000_phys_pkg_id,
750 .mps_oem_check = es7000_mps_oem_check,
751
752 .get_apic_id = es7000_get_apic_id,
753 .set_apic_id = NULL,
754 .apic_id_mask = 0xFF << 24,
755
756 .cpu_mask_to_apicid = es7000_cpu_mask_to_apicid,
757 .cpu_mask_to_apicid_and = es7000_cpu_mask_to_apicid_and,
758
759 .send_IPI_mask = es7000_send_IPI_mask,
760 .send_IPI_mask_allbutself = NULL,
761 .send_IPI_allbutself = es7000_send_IPI_allbutself,
762 .send_IPI_all = es7000_send_IPI_all,
Ingo Molnar6b64ee02009-01-30 23:42:18 +0100763 .send_IPI_self = default_send_IPI_self,
Ingo Molnar2e096df2009-01-28 19:01:05 +0100764
Ingo Molnar2e096df2009-01-28 19:01:05 +0100765 .trampoline_phys_low = 0x467,
766 .trampoline_phys_high = 0x469,
767
768 .wait_for_init_deassert = es7000_wait_for_init_deassert,
769
770 /* Nothing to do for most platforms, since cleared by the INIT cycle: */
771 .smp_callin_clear_local_apic = NULL,
Ingo Molnar2e096df2009-01-28 19:01:05 +0100772 .inquire_remote_apic = default_inquire_remote_apic,
Yinghai Luc1eeb2d2009-02-16 23:02:14 -0800773
774 .read = native_apic_mem_read,
775 .write = native_apic_mem_write,
776 .icr_read = native_apic_icr_read,
777 .icr_write = native_apic_icr_write,
778 .wait_icr_idle = native_apic_wait_icr_idle,
779 .safe_wait_icr_idle = native_safe_apic_wait_icr_idle,
Ingo Molnar2e096df2009-01-28 19:01:05 +0100780};