Linux Audio

Check our new training course

Loading...
v6.13.7
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Jailhouse paravirt_ops implementation
  4 *
  5 * Copyright (c) Siemens AG, 2015-2017
  6 *
  7 * Authors:
  8 *  Jan Kiszka <jan.kiszka@siemens.com>
  9 */
 10
 11#include <linux/acpi_pmtmr.h>
 12#include <linux/kernel.h>
 13#include <linux/reboot.h>
 14#include <linux/serial_8250.h>
 15#include <linux/acpi.h>
 16#include <asm/apic.h>
 17#include <asm/io_apic.h>
 18#include <asm/acpi.h>
 19#include <asm/cpu.h>
 20#include <asm/hypervisor.h>
 21#include <asm/i8259.h>
 22#include <asm/irqdomain.h>
 23#include <asm/pci_x86.h>
 24#include <asm/reboot.h>
 25#include <asm/setup.h>
 26#include <asm/jailhouse_para.h>
 27
 28static struct jailhouse_setup_data setup_data;
 29#define SETUP_DATA_V1_LEN	(sizeof(setup_data.hdr) + sizeof(setup_data.v1))
 30#define SETUP_DATA_V2_LEN	(SETUP_DATA_V1_LEN + sizeof(setup_data.v2))
 31
 32static unsigned int precalibrated_tsc_khz;
 33
 34static void jailhouse_setup_irq(unsigned int irq)
 35{
 36	struct mpc_intsrc mp_irq = {
 37		.type		= MP_INTSRC,
 38		.irqtype	= mp_INT,
 39		.irqflag	= MP_IRQPOL_ACTIVE_HIGH | MP_IRQTRIG_EDGE,
 40		.srcbusirq	= irq,
 41		.dstirq		= irq,
 42	};
 43	mp_save_irq(&mp_irq);
 44}
 45
 46static uint32_t jailhouse_cpuid_base(void)
 47{
 48	if (boot_cpu_data.cpuid_level < 0 ||
 49	    !boot_cpu_has(X86_FEATURE_HYPERVISOR))
 50		return 0;
 51
 52	return hypervisor_cpuid_base("Jailhouse\0\0\0", 0);
 53}
 54
 55static uint32_t __init jailhouse_detect(void)
 56{
 57	return jailhouse_cpuid_base();
 58}
 59
 60static void jailhouse_get_wallclock(struct timespec64 *now)
 61{
 62	memset(now, 0, sizeof(*now));
 63}
 64
 65static void __init jailhouse_timer_init(void)
 66{
 67	lapic_timer_period = setup_data.v1.apic_khz * (1000 / HZ);
 68}
 69
 70static unsigned long jailhouse_get_tsc(void)
 71{
 72	return precalibrated_tsc_khz;
 73}
 74
 75static void __init jailhouse_x2apic_init(void)
 76{
 77#ifdef CONFIG_X86_X2APIC
 78	if (!x2apic_enabled())
 79		return;
 80	/*
 81	 * We do not have access to IR inside Jailhouse non-root cells.  So
 82	 * we have to run in physical mode.
 83	 */
 84	x2apic_phys = 1;
 85	/*
 86	 * This will trigger the switch to apic_x2apic_phys.  Empty OEM IDs
 87	 * ensure that only this APIC driver picks up the call.
 88	 */
 89	default_acpi_madt_oem_check("", "");
 90#endif
 91}
 92
 93static void __init jailhouse_parse_smp_config(void)
 94{
 95	struct ioapic_domain_cfg ioapic_cfg = {
 96		.type = IOAPIC_DOMAIN_STRICT,
 97		.ops = &mp_ioapic_irqdomain_ops,
 98	};
 
 
 
 
 
 99	unsigned int cpu;
100
101	jailhouse_x2apic_init();
102
103	register_lapic_address(0xfee00000);
104
105	for (cpu = 0; cpu < setup_data.v1.num_cpus; cpu++)
106		topology_register_apic(setup_data.v1.cpu_ids[cpu], CPU_ACPIID_INVALID, true);
 
 
107
108	smp_found_config = 1;
109
110	if (setup_data.v1.standard_ioapic) {
111		mp_register_ioapic(0, 0xfec00000, gsi_top, &ioapic_cfg);
112
113		if (IS_ENABLED(CONFIG_SERIAL_8250) &&
114		    setup_data.hdr.version < 2) {
115			/* Register 1:1 mapping for legacy UART IRQs 3 and 4 */
116			jailhouse_setup_irq(3);
117			jailhouse_setup_irq(4);
118		}
119	}
120}
121
122static void jailhouse_no_restart(void)
123{
124	pr_notice("Jailhouse: Restart not supported, halting\n");
125	machine_halt();
126}
127
128static int __init jailhouse_pci_arch_init(void)
129{
130	pci_direct_init(1);
131
132	/*
133	 * There are no bridges on the virtual PCI root bus under Jailhouse,
134	 * thus no other way to discover all devices than a full scan.
135	 * Respect any overrides via the command line, though.
136	 */
137	if (pcibios_last_bus < 0)
138		pcibios_last_bus = 0xff;
139
140#ifdef CONFIG_PCI_MMCONFIG
141	if (setup_data.v1.pci_mmconfig_base) {
142		pci_mmconfig_add(0, 0, pcibios_last_bus,
143				 setup_data.v1.pci_mmconfig_base);
144		pci_mmcfg_arch_init();
145	}
146#endif
147
148	return 0;
149}
150
151#ifdef CONFIG_SERIAL_8250
152static inline bool jailhouse_uart_enabled(unsigned int uart_nr)
153{
154	return setup_data.v2.flags & BIT(uart_nr);
155}
156
157static void jailhouse_serial_fixup(int port, struct uart_port *up,
158				   u32 *capabilities)
159{
160	static const u16 pcuart_base[] = {0x3f8, 0x2f8, 0x3e8, 0x2e8};
161	unsigned int n;
162
163	for (n = 0; n < ARRAY_SIZE(pcuart_base); n++) {
164		if (pcuart_base[n] != up->iobase)
165			continue;
166
167		if (jailhouse_uart_enabled(n)) {
168			pr_info("Enabling UART%u (port 0x%lx)\n", n,
169				up->iobase);
170			jailhouse_setup_irq(up->irq);
171		} else {
172			/* Deactivate UART if access isn't allowed */
173			up->iobase = 0;
174		}
175		break;
176	}
177}
178
179static void __init jailhouse_serial_workaround(void)
180{
181	/*
182	 * There are flags inside setup_data that indicate availability of
183	 * platform UARTs since setup data version 2.
184	 *
185	 * In case of version 1, we don't know which UARTs belong Linux. In
186	 * this case, unconditionally register 1:1 mapping for legacy UART IRQs
187	 * 3 and 4.
188	 */
189	if (setup_data.hdr.version > 1)
190		serial8250_set_isa_configurator(jailhouse_serial_fixup);
191}
192#else /* !CONFIG_SERIAL_8250 */
193static inline void jailhouse_serial_workaround(void)
194{
195}
196#endif /* CONFIG_SERIAL_8250 */
197
198static void __init jailhouse_init_platform(void)
199{
200	u64 pa_data = boot_params.hdr.setup_data;
201	unsigned long setup_data_len;
202	struct setup_data header;
203	void *mapping;
204
205	x86_init.irqs.pre_vector_init		= x86_init_noop;
206	x86_init.timers.timer_init		= jailhouse_timer_init;
207	x86_init.mpparse.find_mptable		= x86_init_noop;
208	x86_init.mpparse.early_parse_smp_cfg	= x86_init_noop;
209	x86_init.mpparse.parse_smp_cfg		= jailhouse_parse_smp_config;
210	x86_init.pci.arch_init			= jailhouse_pci_arch_init;
211
212	x86_platform.calibrate_cpu		= jailhouse_get_tsc;
213	x86_platform.calibrate_tsc		= jailhouse_get_tsc;
214	x86_platform.get_wallclock		= jailhouse_get_wallclock;
215	x86_platform.legacy.rtc			= 0;
216	x86_platform.legacy.warm_reset		= 0;
217	x86_platform.legacy.i8042		= X86_LEGACY_I8042_PLATFORM_ABSENT;
218
219	legacy_pic				= &null_legacy_pic;
220
221	machine_ops.emergency_restart		= jailhouse_no_restart;
222
223	while (pa_data) {
224		mapping = early_memremap(pa_data, sizeof(header));
225		memcpy(&header, mapping, sizeof(header));
226		early_memunmap(mapping, sizeof(header));
227
228		if (header.type == SETUP_JAILHOUSE)
 
 
 
 
 
 
 
229			break;
 
230
231		pa_data = header.next;
232	}
233
234	if (!pa_data)
235		panic("Jailhouse: No valid setup data found");
236
237	/* setup data must at least contain the header */
238	if (header.len < sizeof(setup_data.hdr))
239		goto unsupported;
240
241	pa_data += offsetof(struct setup_data, data);
242	setup_data_len = min_t(unsigned long, sizeof(setup_data),
243			       (unsigned long)header.len);
244	mapping = early_memremap(pa_data, setup_data_len);
245	memcpy(&setup_data, mapping, setup_data_len);
246	early_memunmap(mapping, setup_data_len);
247
248	if (setup_data.hdr.version == 0 ||
249	    setup_data.hdr.compatible_version !=
250		JAILHOUSE_SETUP_REQUIRED_VERSION ||
251	    (setup_data.hdr.version == 1 && header.len < SETUP_DATA_V1_LEN) ||
252	    (setup_data.hdr.version >= 2 && header.len < SETUP_DATA_V2_LEN))
253		goto unsupported;
254
255	pmtmr_ioport = setup_data.v1.pm_timer_address;
256	pr_debug("Jailhouse: PM-Timer IO Port: %#x\n", pmtmr_ioport);
257
258	precalibrated_tsc_khz = setup_data.v1.tsc_khz;
259	setup_force_cpu_cap(X86_FEATURE_TSC_KNOWN_FREQ);
260
261	pci_probe = 0;
262
263	/*
264	 * Avoid that the kernel complains about missing ACPI tables - there
265	 * are none in a non-root cell.
266	 */
267	disable_acpi();
268
269	jailhouse_serial_workaround();
270	return;
271
272unsupported:
273	panic("Jailhouse: Unsupported setup data structure");
274}
275
276bool jailhouse_paravirt(void)
277{
278	return jailhouse_cpuid_base() != 0;
279}
280
281static bool __init jailhouse_x2apic_available(void)
282{
283	/*
284	 * The x2APIC is only available if the root cell enabled it. Jailhouse
285	 * does not support switching between xAPIC and x2APIC.
286	 */
287	return x2apic_enabled();
288}
289
290const struct hypervisor_x86 x86_hyper_jailhouse __refconst = {
291	.name			= "Jailhouse",
292	.detect			= jailhouse_detect,
293	.init.init_platform	= jailhouse_init_platform,
294	.init.x2apic_available	= jailhouse_x2apic_available,
295	.ignore_nopv		= true,
296};
v5.4
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Jailhouse paravirt_ops implementation
  4 *
  5 * Copyright (c) Siemens AG, 2015-2017
  6 *
  7 * Authors:
  8 *  Jan Kiszka <jan.kiszka@siemens.com>
  9 */
 10
 11#include <linux/acpi_pmtmr.h>
 12#include <linux/kernel.h>
 13#include <linux/reboot.h>
 
 
 14#include <asm/apic.h>
 
 
 15#include <asm/cpu.h>
 16#include <asm/hypervisor.h>
 17#include <asm/i8259.h>
 18#include <asm/irqdomain.h>
 19#include <asm/pci_x86.h>
 20#include <asm/reboot.h>
 21#include <asm/setup.h>
 22#include <asm/jailhouse_para.h>
 23
 24static __initdata struct jailhouse_setup_data setup_data;
 
 
 
 25static unsigned int precalibrated_tsc_khz;
 26
 
 
 
 
 
 
 
 
 
 
 
 
 27static uint32_t jailhouse_cpuid_base(void)
 28{
 29	if (boot_cpu_data.cpuid_level < 0 ||
 30	    !boot_cpu_has(X86_FEATURE_HYPERVISOR))
 31		return 0;
 32
 33	return hypervisor_cpuid_base("Jailhouse\0\0\0", 0);
 34}
 35
 36static uint32_t __init jailhouse_detect(void)
 37{
 38	return jailhouse_cpuid_base();
 39}
 40
 41static void jailhouse_get_wallclock(struct timespec64 *now)
 42{
 43	memset(now, 0, sizeof(*now));
 44}
 45
 46static void __init jailhouse_timer_init(void)
 47{
 48	lapic_timer_period = setup_data.apic_khz * (1000 / HZ);
 49}
 50
 51static unsigned long jailhouse_get_tsc(void)
 52{
 53	return precalibrated_tsc_khz;
 54}
 55
 56static void __init jailhouse_x2apic_init(void)
 57{
 58#ifdef CONFIG_X86_X2APIC
 59	if (!x2apic_enabled())
 60		return;
 61	/*
 62	 * We do not have access to IR inside Jailhouse non-root cells.  So
 63	 * we have to run in physical mode.
 64	 */
 65	x2apic_phys = 1;
 66	/*
 67	 * This will trigger the switch to apic_x2apic_phys.  Empty OEM IDs
 68	 * ensure that only this APIC driver picks up the call.
 69	 */
 70	default_acpi_madt_oem_check("", "");
 71#endif
 72}
 73
 74static void __init jailhouse_get_smp_config(unsigned int early)
 75{
 76	struct ioapic_domain_cfg ioapic_cfg = {
 77		.type = IOAPIC_DOMAIN_STRICT,
 78		.ops = &mp_ioapic_irqdomain_ops,
 79	};
 80	struct mpc_intsrc mp_irq = {
 81		.type = MP_INTSRC,
 82		.irqtype = mp_INT,
 83		.irqflag = MP_IRQPOL_ACTIVE_HIGH | MP_IRQTRIG_EDGE,
 84	};
 85	unsigned int cpu;
 86
 87	jailhouse_x2apic_init();
 88
 89	register_lapic_address(0xfee00000);
 90
 91	for (cpu = 0; cpu < setup_data.num_cpus; cpu++) {
 92		generic_processor_info(setup_data.cpu_ids[cpu],
 93				       boot_cpu_apic_version);
 94	}
 95
 96	smp_found_config = 1;
 97
 98	if (setup_data.standard_ioapic) {
 99		mp_register_ioapic(0, 0xfec00000, gsi_top, &ioapic_cfg);
100
101		/* Register 1:1 mapping for legacy UART IRQs 3 and 4 */
102		mp_irq.srcbusirq = mp_irq.dstirq = 3;
103		mp_save_irq(&mp_irq);
104
105		mp_irq.srcbusirq = mp_irq.dstirq = 4;
106		mp_save_irq(&mp_irq);
107	}
108}
109
110static void jailhouse_no_restart(void)
111{
112	pr_notice("Jailhouse: Restart not supported, halting\n");
113	machine_halt();
114}
115
116static int __init jailhouse_pci_arch_init(void)
117{
118	pci_direct_init(1);
119
120	/*
121	 * There are no bridges on the virtual PCI root bus under Jailhouse,
122	 * thus no other way to discover all devices than a full scan.
123	 * Respect any overrides via the command line, though.
124	 */
125	if (pcibios_last_bus < 0)
126		pcibios_last_bus = 0xff;
127
128#ifdef CONFIG_PCI_MMCONFIG
129	if (setup_data.pci_mmconfig_base) {
130		pci_mmconfig_add(0, 0, pcibios_last_bus,
131				 setup_data.pci_mmconfig_base);
132		pci_mmcfg_arch_init();
133	}
134#endif
135
136	return 0;
137}
138
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
139static void __init jailhouse_init_platform(void)
140{
141	u64 pa_data = boot_params.hdr.setup_data;
 
142	struct setup_data header;
143	void *mapping;
144
145	x86_init.irqs.pre_vector_init	= x86_init_noop;
146	x86_init.timers.timer_init	= jailhouse_timer_init;
147	x86_init.mpparse.get_smp_config	= jailhouse_get_smp_config;
148	x86_init.pci.arch_init		= jailhouse_pci_arch_init;
149
150	x86_platform.calibrate_cpu	= jailhouse_get_tsc;
151	x86_platform.calibrate_tsc	= jailhouse_get_tsc;
152	x86_platform.get_wallclock	= jailhouse_get_wallclock;
153	x86_platform.legacy.rtc		= 0;
154	x86_platform.legacy.warm_reset	= 0;
155	x86_platform.legacy.i8042	= X86_LEGACY_I8042_PLATFORM_ABSENT;
 
 
156
157	legacy_pic			= &null_legacy_pic;
158
159	machine_ops.emergency_restart	= jailhouse_no_restart;
160
161	while (pa_data) {
162		mapping = early_memremap(pa_data, sizeof(header));
163		memcpy(&header, mapping, sizeof(header));
164		early_memunmap(mapping, sizeof(header));
165
166		if (header.type == SETUP_JAILHOUSE &&
167		    header.len >= sizeof(setup_data)) {
168			pa_data += offsetof(struct setup_data, data);
169
170			mapping = early_memremap(pa_data, sizeof(setup_data));
171			memcpy(&setup_data, mapping, sizeof(setup_data));
172			early_memunmap(mapping, sizeof(setup_data));
173
174			break;
175		}
176
177		pa_data = header.next;
178	}
179
180	if (!pa_data)
181		panic("Jailhouse: No valid setup data found");
182
183	if (setup_data.compatible_version > JAILHOUSE_SETUP_REQUIRED_VERSION)
184		panic("Jailhouse: Unsupported setup data structure");
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
185
186	pmtmr_ioport = setup_data.pm_timer_address;
187	pr_debug("Jailhouse: PM-Timer IO Port: %#x\n", pmtmr_ioport);
188
189	precalibrated_tsc_khz = setup_data.tsc_khz;
190	setup_force_cpu_cap(X86_FEATURE_TSC_KNOWN_FREQ);
191
192	pci_probe = 0;
193
194	/*
195	 * Avoid that the kernel complains about missing ACPI tables - there
196	 * are none in a non-root cell.
197	 */
198	disable_acpi();
 
 
 
 
 
 
199}
200
201bool jailhouse_paravirt(void)
202{
203	return jailhouse_cpuid_base() != 0;
204}
205
206static bool __init jailhouse_x2apic_available(void)
207{
208	/*
209	 * The x2APIC is only available if the root cell enabled it. Jailhouse
210	 * does not support switching between xAPIC and x2APIC.
211	 */
212	return x2apic_enabled();
213}
214
215const struct hypervisor_x86 x86_hyper_jailhouse __refconst = {
216	.name			= "Jailhouse",
217	.detect			= jailhouse_detect,
218	.init.init_platform	= jailhouse_init_platform,
219	.init.x2apic_available	= jailhouse_x2apic_available,
220	.ignore_nopv		= true,
221};