blob: 59eea855f4516638c2b220aee03c685327845ad9 [file] [log] [blame]
Ravikiran G Thirumalai79f12612006-01-11 22:46:18 +01001/*
2 * vSMPowered(tm) systems specific initialization
3 * Copyright (C) 2005 ScaleMP Inc.
4 *
5 * Use of this code is subject to the terms and conditions of the
6 * GNU general public license version 2. See "COPYING" or
7 * http://www.gnu.org/licenses/gpl.html
8 *
9 * Ravikiran Thirumalai <kiran@scalemp.com>,
10 * Shai Fultheim <shai@scalemp.com>
Glauber Costa96597fd2008-02-11 17:16:04 -020011 * Paravirt ops integration: Glauber de Oliveira Costa <gcosta@redhat.com>,
12 * Ravikiran Thirumalai <kiran@scalemp.com>
Ravikiran G Thirumalai79f12612006-01-11 22:46:18 +010013 */
14
15#include <linux/init.h>
16#include <linux/pci_ids.h>
17#include <linux/pci_regs.h>
Shai Fultheimead91d42012-04-16 10:39:35 +030018#include <linux/smp.h>
Thomas Gleixnereef8f872008-05-12 15:43:34 +020019
20#include <asm/apic.h>
Ravikiran G Thirumalai79f12612006-01-11 22:46:18 +010021#include <asm/pci-direct.h>
Ravikiran Thirumalai734c4c62006-10-12 12:17:52 -070022#include <asm/io.h>
Glauber Costa96597fd2008-02-11 17:16:04 -020023#include <asm/paravirt.h>
Thomas Gleixnereef8f872008-05-12 15:43:34 +020024#include <asm/setup.h>
Glauber Costa96597fd2008-02-11 17:16:04 -020025
Shai Fultheimead91d42012-04-16 10:39:35 +030026#define TOPOLOGY_REGISTER_OFFSET 0x10
27
Ravikiran G Thirumalai70511132009-03-23 23:14:29 -070028#if defined CONFIG_PCI && defined CONFIG_PARAVIRT
Glauber Costa96597fd2008-02-11 17:16:04 -020029/*
30 * Interrupt control on vSMPowered systems:
31 * ~AC is a shadow of IF. If IF is 'on' AC should be 'off'
32 * and vice versa.
33 */
34
35static unsigned long vsmp_save_fl(void)
36{
37 unsigned long flags = native_save_fl();
38
39 if (!(flags & X86_EFLAGS_IF) || (flags & X86_EFLAGS_AC))
40 flags &= ~X86_EFLAGS_IF;
41 return flags;
42}
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -080043PV_CALLEE_SAVE_REGS_THUNK(vsmp_save_fl);
Glauber Costa96597fd2008-02-11 17:16:04 -020044
45static void vsmp_restore_fl(unsigned long flags)
46{
47 if (flags & X86_EFLAGS_IF)
48 flags &= ~X86_EFLAGS_AC;
49 else
50 flags |= X86_EFLAGS_AC;
51 native_restore_fl(flags);
52}
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -080053PV_CALLEE_SAVE_REGS_THUNK(vsmp_restore_fl);
Glauber Costa96597fd2008-02-11 17:16:04 -020054
55static void vsmp_irq_disable(void)
56{
57 unsigned long flags = native_save_fl();
58
59 native_restore_fl((flags & ~X86_EFLAGS_IF) | X86_EFLAGS_AC);
60}
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -080061PV_CALLEE_SAVE_REGS_THUNK(vsmp_irq_disable);
Glauber Costa96597fd2008-02-11 17:16:04 -020062
63static void vsmp_irq_enable(void)
64{
65 unsigned long flags = native_save_fl();
66
67 native_restore_fl((flags | X86_EFLAGS_IF) & (~X86_EFLAGS_AC));
68}
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -080069PV_CALLEE_SAVE_REGS_THUNK(vsmp_irq_enable);
Glauber Costa96597fd2008-02-11 17:16:04 -020070
Ravikiran G Thirumalai05e12e12008-09-22 22:58:47 -070071static unsigned __init_or_module vsmp_patch(u8 type, u16 clobbers, void *ibuf,
Glauber Costa96597fd2008-02-11 17:16:04 -020072 unsigned long addr, unsigned len)
73{
74 switch (type) {
75 case PARAVIRT_PATCH(pv_irq_ops.irq_enable):
76 case PARAVIRT_PATCH(pv_irq_ops.irq_disable):
77 case PARAVIRT_PATCH(pv_irq_ops.save_fl):
78 case PARAVIRT_PATCH(pv_irq_ops.restore_fl):
79 return paravirt_patch_default(type, clobbers, ibuf, addr, len);
80 default:
81 return native_patch(type, clobbers, ibuf, addr, len);
82 }
83
84}
Ravikiran G Thirumalai79f12612006-01-11 22:46:18 +010085
Ravikiran G Thirumalaiaa7d8e25e2008-03-20 00:41:16 -070086static void __init set_vsmp_pv_ops(void)
Ravikiran G Thirumalai79f12612006-01-11 22:46:18 +010087{
Harvey Harrison9352f562008-10-28 23:05:22 -070088 void __iomem *address;
Glauber Costa2785c8d2008-02-11 17:16:03 -020089 unsigned int cap, ctl, cfg;
Ravikiran G Thirumalai79f12612006-01-11 22:46:18 +010090
Ravikiran G Thirumalai79f12612006-01-11 22:46:18 +010091 /* set vSMP magic bits to indicate vSMP capable kernel */
Glauber Costa2785c8d2008-02-11 17:16:03 -020092 cfg = read_pci_config(0, 0x1f, 0, PCI_BASE_ADDRESS_0);
93 address = early_ioremap(cfg, 8);
Ravikiran G Thirumalai79f12612006-01-11 22:46:18 +010094 cap = readl(address);
95 ctl = readl(address + 4);
Thomas Gleixnered4aed92008-01-30 13:30:24 +010096 printk(KERN_INFO "vSMP CTL: capabilities:0x%08x control:0x%08x\n",
97 cap, ctl);
Ravikiran G Thirumalai79f12612006-01-11 22:46:18 +010098 if (cap & ctl & (1 << 4)) {
Ravikiran G Thirumalai9f6d8552008-03-20 00:43:16 -070099 /* Setup irq ops and turn on vSMP IRQ fastpath handling */
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -0800100 pv_irq_ops.irq_disable = PV_CALLEE_SAVE(vsmp_irq_disable);
101 pv_irq_ops.irq_enable = PV_CALLEE_SAVE(vsmp_irq_enable);
102 pv_irq_ops.save_fl = PV_CALLEE_SAVE(vsmp_save_fl);
103 pv_irq_ops.restore_fl = PV_CALLEE_SAVE(vsmp_restore_fl);
Ravikiran G Thirumalai9f6d8552008-03-20 00:43:16 -0700104 pv_init_ops.patch = vsmp_patch;
105
Ravikiran G Thirumalai79f12612006-01-11 22:46:18 +0100106 ctl &= ~(1 << 4);
107 writel(ctl, address + 4);
108 ctl = readl(address + 4);
Thomas Gleixnered4aed92008-01-30 13:30:24 +0100109 printk(KERN_INFO "vSMP CTL: control set to:0x%08x\n", ctl);
Ravikiran G Thirumalai79f12612006-01-11 22:46:18 +0100110 }
111
Glauber Costa2785c8d2008-02-11 17:16:03 -0200112 early_iounmap(address, 8);
Ravikiran G Thirumalaiaa7d8e25e2008-03-20 00:41:16 -0700113}
114#else
115static void __init set_vsmp_pv_ops(void)
116{
117}
118#endif
119
Ravikiran G Thirumalai70511132009-03-23 23:14:29 -0700120#ifdef CONFIG_PCI
Ravikiran G Thirumalaie5699a82008-03-24 14:48:36 -0700121static int is_vsmp = -1;
122
123static void __init detect_vsmp_box(void)
124{
125 is_vsmp = 0;
126
127 if (!early_pci_allowed())
128 return;
129
130 /* Check if we are running on a ScaleMP vSMPowered box */
131 if (read_pci_config(0, 0x1f, 0, PCI_VENDOR_ID) ==
132 (PCI_VENDOR_ID_SCALEMP | (PCI_DEVICE_ID_SCALEMP_VSMP_CTL << 16)))
133 is_vsmp = 1;
134}
Ravikiran G Thirumalaiaa7d8e25e2008-03-20 00:41:16 -0700135
136int is_vsmp_box(void)
137{
Ravikiran G Thirumalaie5699a82008-03-24 14:48:36 -0700138 if (is_vsmp != -1)
139 return is_vsmp;
140 else {
141 WARN_ON_ONCE(1);
142 return 0;
143 }
Ravikiran G Thirumalaiaa7d8e25e2008-03-20 00:41:16 -0700144}
Ravikiran G Thirumalaiaa7d8e25e2008-03-20 00:41:16 -0700145
Ravikiran G Thirumalai70511132009-03-23 23:14:29 -0700146#else
147static void __init detect_vsmp_box(void)
148{
149}
150int is_vsmp_box(void)
151{
152 return 0;
153}
154#endif
Shai Fultheimead91d42012-04-16 10:39:35 +0300155
156static void __init vsmp_cap_cpus(void)
157{
158#if !defined(CONFIG_X86_VSMP) && defined(CONFIG_SMP)
159 void __iomem *address;
160 unsigned int cfg, topology, node_shift, maxcpus;
161
162 /*
163 * CONFIG_X86_VSMP is not configured, so limit the number CPUs to the
164 * ones present in the first board, unless explicitly overridden by
165 * setup_max_cpus
166 */
167 if (setup_max_cpus != NR_CPUS)
168 return;
169
170 /* Read the vSMP Foundation topology register */
171 cfg = read_pci_config(0, 0x1f, 0, PCI_BASE_ADDRESS_0);
172 address = early_ioremap(cfg + TOPOLOGY_REGISTER_OFFSET, 4);
173 if (WARN_ON(!address))
174 return;
175
176 topology = readl(address);
177 node_shift = (topology >> 16) & 0x7;
178 if (!node_shift)
179 /* The value 0 should be decoded as 8 */
180 node_shift = 8;
181 maxcpus = (topology & ((1 << node_shift) - 1)) + 1;
182
183 pr_info("vSMP CTL: Capping CPUs to %d (CONFIG_X86_VSMP is unset)\n",
184 maxcpus);
185 setup_max_cpus = maxcpus;
186 early_iounmap(address, 4);
187#endif
188}
189
Ido Yariv7db971b2012-06-03 01:11:34 +0300190static int apicid_phys_pkg_id(int initial_apic_id, int index_msb)
191{
192 return hard_smp_processor_id() >> index_msb;
193}
194
195static void vsmp_apic_post_init(void)
196{
197 /* need to update phys_pkg_id */
198 apic->phys_pkg_id = apicid_phys_pkg_id;
199}
200
Ravikiran G Thirumalaiaa7d8e25e2008-03-20 00:41:16 -0700201void __init vsmp_init(void)
202{
Ravikiran G Thirumalaie5699a82008-03-24 14:48:36 -0700203 detect_vsmp_box();
Ravikiran G Thirumalaiaa7d8e25e2008-03-20 00:41:16 -0700204 if (!is_vsmp_box())
205 return;
206
Ido Yariv7db971b2012-06-03 01:11:34 +0300207 x86_platform.apic_post_init = vsmp_apic_post_init;
208
Shai Fultheimead91d42012-04-16 10:39:35 +0300209 vsmp_cap_cpus();
210
Ravikiran G Thirumalaiaa7d8e25e2008-03-20 00:41:16 -0700211 set_vsmp_pv_ops();
Glauber Costaa2beab32008-02-11 17:16:02 -0200212 return;
Ravikiran G Thirumalai79f12612006-01-11 22:46:18 +0100213}