blob: b034b1b14b9c66ab77b24d9757ce10de7f0f318e [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>
Ravikiran Thirumalai110c1e12012-06-03 01:11:35 +030019#include <linux/irq.h>
Thomas Gleixnereef8f872008-05-12 15:43:34 +020020
21#include <asm/apic.h>
Ravikiran G Thirumalai79f12612006-01-11 22:46:18 +010022#include <asm/pci-direct.h>
Ravikiran Thirumalai734c4c62006-10-12 12:17:52 -070023#include <asm/io.h>
Glauber Costa96597fd2008-02-11 17:16:04 -020024#include <asm/paravirt.h>
Thomas Gleixnereef8f872008-05-12 15:43:34 +020025#include <asm/setup.h>
Glauber Costa96597fd2008-02-11 17:16:04 -020026
Shai Fultheimead91d42012-04-16 10:39:35 +030027#define TOPOLOGY_REGISTER_OFFSET 0x10
28
Oren Twaig39025ba2014-04-28 10:21:37 +030029/* Flag below is initialized once during vSMP PCI initialization. */
30static int irq_routing_comply = 1;
31
Ravikiran G Thirumalai70511132009-03-23 23:14:29 -070032#if defined CONFIG_PCI && defined CONFIG_PARAVIRT
Glauber Costa96597fd2008-02-11 17:16:04 -020033/*
34 * Interrupt control on vSMPowered systems:
35 * ~AC is a shadow of IF. If IF is 'on' AC should be 'off'
36 * and vice versa.
37 */
38
Andi Kleen2605fc22014-05-02 00:44:37 +020039asmlinkage __visible unsigned long vsmp_save_fl(void)
Glauber Costa96597fd2008-02-11 17:16:04 -020040{
41 unsigned long flags = native_save_fl();
42
43 if (!(flags & X86_EFLAGS_IF) || (flags & X86_EFLAGS_AC))
44 flags &= ~X86_EFLAGS_IF;
45 return flags;
46}
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -080047PV_CALLEE_SAVE_REGS_THUNK(vsmp_save_fl);
Glauber Costa96597fd2008-02-11 17:16:04 -020048
Andi Kleena2e7f0e2013-10-22 09:07:56 -070049__visible void vsmp_restore_fl(unsigned long flags)
Glauber Costa96597fd2008-02-11 17:16:04 -020050{
51 if (flags & X86_EFLAGS_IF)
52 flags &= ~X86_EFLAGS_AC;
53 else
54 flags |= X86_EFLAGS_AC;
55 native_restore_fl(flags);
56}
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -080057PV_CALLEE_SAVE_REGS_THUNK(vsmp_restore_fl);
Glauber Costa96597fd2008-02-11 17:16:04 -020058
Andi Kleen2605fc22014-05-02 00:44:37 +020059asmlinkage __visible void vsmp_irq_disable(void)
Glauber Costa96597fd2008-02-11 17:16:04 -020060{
61 unsigned long flags = native_save_fl();
62
63 native_restore_fl((flags & ~X86_EFLAGS_IF) | X86_EFLAGS_AC);
64}
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -080065PV_CALLEE_SAVE_REGS_THUNK(vsmp_irq_disable);
Glauber Costa96597fd2008-02-11 17:16:04 -020066
Andi Kleen2605fc22014-05-02 00:44:37 +020067asmlinkage __visible void vsmp_irq_enable(void)
Glauber Costa96597fd2008-02-11 17:16:04 -020068{
69 unsigned long flags = native_save_fl();
70
71 native_restore_fl((flags | X86_EFLAGS_IF) & (~X86_EFLAGS_AC));
72}
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -080073PV_CALLEE_SAVE_REGS_THUNK(vsmp_irq_enable);
Glauber Costa96597fd2008-02-11 17:16:04 -020074
Paul Gortmaker70c4f782015-05-01 20:13:42 -040075static unsigned __init vsmp_patch(u8 type, u16 clobbers, void *ibuf,
Glauber Costa96597fd2008-02-11 17:16:04 -020076 unsigned long addr, unsigned len)
77{
78 switch (type) {
79 case PARAVIRT_PATCH(pv_irq_ops.irq_enable):
80 case PARAVIRT_PATCH(pv_irq_ops.irq_disable):
81 case PARAVIRT_PATCH(pv_irq_ops.save_fl):
82 case PARAVIRT_PATCH(pv_irq_ops.restore_fl):
83 return paravirt_patch_default(type, clobbers, ibuf, addr, len);
84 default:
85 return native_patch(type, clobbers, ibuf, addr, len);
86 }
87
88}
Ravikiran G Thirumalai79f12612006-01-11 22:46:18 +010089
Ravikiran G Thirumalaiaa7d8e25e2008-03-20 00:41:16 -070090static void __init set_vsmp_pv_ops(void)
Ravikiran G Thirumalai79f12612006-01-11 22:46:18 +010091{
Harvey Harrison9352f562008-10-28 23:05:22 -070092 void __iomem *address;
Glauber Costa2785c8d2008-02-11 17:16:03 -020093 unsigned int cap, ctl, cfg;
Ravikiran G Thirumalai79f12612006-01-11 22:46:18 +010094
Ravikiran G Thirumalai79f12612006-01-11 22:46:18 +010095 /* set vSMP magic bits to indicate vSMP capable kernel */
Glauber Costa2785c8d2008-02-11 17:16:03 -020096 cfg = read_pci_config(0, 0x1f, 0, PCI_BASE_ADDRESS_0);
97 address = early_ioremap(cfg, 8);
Ravikiran G Thirumalai79f12612006-01-11 22:46:18 +010098 cap = readl(address);
99 ctl = readl(address + 4);
Thomas Gleixnered4aed92008-01-30 13:30:24 +0100100 printk(KERN_INFO "vSMP CTL: capabilities:0x%08x control:0x%08x\n",
101 cap, ctl);
Ravikiran Thirumalai110c1e12012-06-03 01:11:35 +0300102
103 /* If possible, let the vSMP foundation route the interrupt optimally */
104#ifdef CONFIG_SMP
105 if (cap & ctl & BIT(8)) {
106 ctl &= ~BIT(8);
Oren Twaig39025ba2014-04-28 10:21:37 +0300107
108 /* Interrupt routing set to ignore */
109 irq_routing_comply = 0;
110
Ido Yarivd48daf32012-06-14 18:43:08 +0300111#ifdef CONFIG_PROC_FS
112 /* Don't let users change irq affinity via procfs */
Ravikiran Thirumalai110c1e12012-06-03 01:11:35 +0300113 no_irq_affinity = 1;
Ido Yarivd48daf32012-06-14 18:43:08 +0300114#endif
Ravikiran Thirumalai110c1e12012-06-03 01:11:35 +0300115 }
116#endif
117
Ravikiran G Thirumalai79f12612006-01-11 22:46:18 +0100118 if (cap & ctl & (1 << 4)) {
Ravikiran G Thirumalai9f6d8552008-03-20 00:43:16 -0700119 /* Setup irq ops and turn on vSMP IRQ fastpath handling */
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -0800120 pv_irq_ops.irq_disable = PV_CALLEE_SAVE(vsmp_irq_disable);
121 pv_irq_ops.irq_enable = PV_CALLEE_SAVE(vsmp_irq_enable);
122 pv_irq_ops.save_fl = PV_CALLEE_SAVE(vsmp_save_fl);
123 pv_irq_ops.restore_fl = PV_CALLEE_SAVE(vsmp_restore_fl);
Ravikiran G Thirumalai9f6d8552008-03-20 00:43:16 -0700124 pv_init_ops.patch = vsmp_patch;
Ravikiran G Thirumalai79f12612006-01-11 22:46:18 +0100125 ctl &= ~(1 << 4);
Ravikiran G Thirumalai79f12612006-01-11 22:46:18 +0100126 }
Ravikiran Thirumalai110c1e12012-06-03 01:11:35 +0300127 writel(ctl, address + 4);
128 ctl = readl(address + 4);
129 pr_info("vSMP CTL: control set to:0x%08x\n", ctl);
Ravikiran G Thirumalai79f12612006-01-11 22:46:18 +0100130
Glauber Costa2785c8d2008-02-11 17:16:03 -0200131 early_iounmap(address, 8);
Ravikiran G Thirumalaiaa7d8e25e2008-03-20 00:41:16 -0700132}
133#else
134static void __init set_vsmp_pv_ops(void)
135{
136}
137#endif
138
Ravikiran G Thirumalai70511132009-03-23 23:14:29 -0700139#ifdef CONFIG_PCI
Ravikiran G Thirumalaie5699a82008-03-24 14:48:36 -0700140static int is_vsmp = -1;
141
142static void __init detect_vsmp_box(void)
143{
144 is_vsmp = 0;
145
146 if (!early_pci_allowed())
147 return;
148
149 /* Check if we are running on a ScaleMP vSMPowered box */
150 if (read_pci_config(0, 0x1f, 0, PCI_VENDOR_ID) ==
151 (PCI_VENDOR_ID_SCALEMP | (PCI_DEVICE_ID_SCALEMP_VSMP_CTL << 16)))
152 is_vsmp = 1;
153}
Ravikiran G Thirumalaiaa7d8e25e2008-03-20 00:41:16 -0700154
H. Peter Anvin5e3bf212014-08-01 14:47:56 -0700155static int is_vsmp_box(void)
Ravikiran G Thirumalaiaa7d8e25e2008-03-20 00:41:16 -0700156{
Ravikiran G Thirumalaie5699a82008-03-24 14:48:36 -0700157 if (is_vsmp != -1)
158 return is_vsmp;
159 else {
160 WARN_ON_ONCE(1);
161 return 0;
162 }
Ravikiran G Thirumalaiaa7d8e25e2008-03-20 00:41:16 -0700163}
Ravikiran G Thirumalaiaa7d8e25e2008-03-20 00:41:16 -0700164
Ravikiran G Thirumalai70511132009-03-23 23:14:29 -0700165#else
166static void __init detect_vsmp_box(void)
167{
168}
H. Peter Anvin5e3bf212014-08-01 14:47:56 -0700169static int is_vsmp_box(void)
Ravikiran G Thirumalai70511132009-03-23 23:14:29 -0700170{
171 return 0;
172}
173#endif
Shai Fultheimead91d42012-04-16 10:39:35 +0300174
175static void __init vsmp_cap_cpus(void)
176{
177#if !defined(CONFIG_X86_VSMP) && defined(CONFIG_SMP)
178 void __iomem *address;
179 unsigned int cfg, topology, node_shift, maxcpus;
180
181 /*
182 * CONFIG_X86_VSMP is not configured, so limit the number CPUs to the
183 * ones present in the first board, unless explicitly overridden by
184 * setup_max_cpus
185 */
186 if (setup_max_cpus != NR_CPUS)
187 return;
188
189 /* Read the vSMP Foundation topology register */
190 cfg = read_pci_config(0, 0x1f, 0, PCI_BASE_ADDRESS_0);
191 address = early_ioremap(cfg + TOPOLOGY_REGISTER_OFFSET, 4);
192 if (WARN_ON(!address))
193 return;
194
195 topology = readl(address);
196 node_shift = (topology >> 16) & 0x7;
197 if (!node_shift)
198 /* The value 0 should be decoded as 8 */
199 node_shift = 8;
200 maxcpus = (topology & ((1 << node_shift) - 1)) + 1;
201
202 pr_info("vSMP CTL: Capping CPUs to %d (CONFIG_X86_VSMP is unset)\n",
203 maxcpus);
204 setup_max_cpus = maxcpus;
205 early_iounmap(address, 4);
206#endif
207}
208
Ido Yariv7db971b2012-06-03 01:11:34 +0300209static int apicid_phys_pkg_id(int initial_apic_id, int index_msb)
210{
211 return hard_smp_processor_id() >> index_msb;
212}
213
Ravikiran Thirumalai110c1e12012-06-03 01:11:35 +0300214/*
215 * In vSMP, all cpus should be capable of handling interrupts, regardless of
216 * the APIC used.
217 */
Suresh Siddha1ac322d2012-06-25 13:38:28 -0700218static void fill_vector_allocation_domain(int cpu, struct cpumask *retmask,
219 const struct cpumask *mask)
Ravikiran Thirumalai110c1e12012-06-03 01:11:35 +0300220{
221 cpumask_setall(retmask);
222}
223
Ido Yariv7db971b2012-06-03 01:11:34 +0300224static void vsmp_apic_post_init(void)
225{
226 /* need to update phys_pkg_id */
227 apic->phys_pkg_id = apicid_phys_pkg_id;
Oren Twaig39025ba2014-04-28 10:21:37 +0300228
229 if (!irq_routing_comply)
230 apic->vector_allocation_domain = fill_vector_allocation_domain;
Ido Yariv7db971b2012-06-03 01:11:34 +0300231}
232
Ravikiran G Thirumalaiaa7d8e25e2008-03-20 00:41:16 -0700233void __init vsmp_init(void)
234{
Ravikiran G Thirumalaie5699a82008-03-24 14:48:36 -0700235 detect_vsmp_box();
Ravikiran G Thirumalaiaa7d8e25e2008-03-20 00:41:16 -0700236 if (!is_vsmp_box())
237 return;
238
Ido Yariv7db971b2012-06-03 01:11:34 +0300239 x86_platform.apic_post_init = vsmp_apic_post_init;
240
Shai Fultheimead91d42012-04-16 10:39:35 +0300241 vsmp_cap_cpus();
242
Ravikiran G Thirumalaiaa7d8e25e2008-03-20 00:41:16 -0700243 set_vsmp_pv_ops();
Glauber Costaa2beab32008-02-11 17:16:02 -0200244 return;
Ravikiran G Thirumalai79f12612006-01-11 22:46:18 +0100245}