1 // SPDX-License-Identifier: GPL-2.0-only
3 * vSMPowered(tm) systems specific initialization
4 * Copyright (C) 2005 ScaleMP Inc.
12 #include <linux/init.h>
13 #include <linux/pci_ids.h>
14 #include <linux/pci_regs.h>
15 #include <linux/smp.h>
16 #include <linux/irq.h>
19 #include <asm/pci-direct.h>
21 #include <asm/paravirt.h>
22 #include <asm/setup.h>
24 #define TOPOLOGY_REGISTER_OFFSET 0x10
27 static void __init set_vsmp_ctl(void)
29 void __iomem *address;
30 unsigned int cap, ctl, cfg;
32 /* set vSMP magic bits to indicate vSMP capable kernel */
33 cfg = read_pci_config(0, 0x1f, 0, PCI_BASE_ADDRESS_0);
34 address = early_ioremap(cfg, 8);
36 ctl = readl(address + 4);
37 printk(KERN_INFO "vSMP CTL: capabilities:0x%08x control:0x%08x\n",
40 /* If possible, let the vSMP foundation route the interrupt optimally */
42 if (cap & ctl & BIT(8)) {
46 /* Don't let users change irq affinity via procfs */
52 writel(ctl, address + 4);
53 ctl = readl(address + 4);
54 pr_info("vSMP CTL: control set to:0x%08x\n", ctl);
56 early_iounmap(address, 8);
58 static int is_vsmp = -1;
60 static void __init detect_vsmp_box(void)
64 if (!early_pci_allowed())
67 /* Check if we are running on a ScaleMP vSMPowered box */
68 if (read_pci_config(0, 0x1f, 0, PCI_VENDOR_ID) ==
69 (PCI_VENDOR_ID_SCALEMP | (PCI_DEVICE_ID_SCALEMP_VSMP_CTL << 16)))
73 static int is_vsmp_box(void)
84 static void __init detect_vsmp_box(void)
87 static int is_vsmp_box(void)
91 static void __init set_vsmp_ctl(void)
96 static void __init vsmp_cap_cpus(void)
98 #if !defined(CONFIG_X86_VSMP) && defined(CONFIG_SMP) && defined(CONFIG_PCI)
99 void __iomem *address;
100 unsigned int cfg, topology, node_shift, maxcpus;
103 * CONFIG_X86_VSMP is not configured, so limit the number CPUs to the
104 * ones present in the first board, unless explicitly overridden by
107 if (setup_max_cpus != NR_CPUS)
110 /* Read the vSMP Foundation topology register */
111 cfg = read_pci_config(0, 0x1f, 0, PCI_BASE_ADDRESS_0);
112 address = early_ioremap(cfg + TOPOLOGY_REGISTER_OFFSET, 4);
113 if (WARN_ON(!address))
116 topology = readl(address);
117 node_shift = (topology >> 16) & 0x7;
119 /* The value 0 should be decoded as 8 */
121 maxcpus = (topology & ((1 << node_shift) - 1)) + 1;
123 pr_info("vSMP CTL: Capping CPUs to %d (CONFIG_X86_VSMP is unset)\n",
125 setup_max_cpus = maxcpus;
126 early_iounmap(address, 4);
130 static int apicid_phys_pkg_id(int initial_apic_id, int index_msb)
132 return hard_smp_processor_id() >> index_msb;
135 static void vsmp_apic_post_init(void)
137 /* need to update phys_pkg_id */
138 apic->phys_pkg_id = apicid_phys_pkg_id;
141 void __init vsmp_init(void)
147 x86_platform.apic_post_init = vsmp_apic_post_init;