From nobody Wed Dec 24 23:35:27 2025 Received: from galois.linutronix.de (Galois.linutronix.de [193.142.43.55]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 16B5160277 for ; Tue, 23 Jan 2024 13:10:24 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=193.142.43.55 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1706015425; cv=none; b=OcDd2TiPXnog15S183QOTu5wi03x6pI8gOFlOfKTEmO+vqOGLOVn9ZuYOx0zPwWDvVy9+wCb6fzG7nYNFqDBv6+AjavjuXdOLC7lFYTWcHG4o7FfcEJl/9UIWe/H2M8RjKxBldVzi9g67ORnK1L9UZj8V/gi8j1fp0OFMaSFTzY= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1706015425; c=relaxed/simple; bh=Ex5HRw2C4SYm7y/H/qolYwkvbPLsEHhBRLPEZhfUsbg=; h=Message-ID:From:To:Cc:Subject:References:MIME-Version: Content-Type:Date; b=QqlijOA8z/cgMXaxoAA987GhWv7UPQDJ0822e7yUBpWsMBL/mhWJERLX7doSHczf4GCgTgggUcQPF4345qLuHx0mXytr1Ry3Q4qSkX6gAyY7JtGz27SvnKrne3lYQqV+BAaIQu7PzJmHU0L41tWlLccF7DuuTVRc1jpY+EKLoz8= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linutronix.de; spf=pass smtp.mailfrom=linutronix.de; dkim=pass (2048-bit key) header.d=linutronix.de header.i=@linutronix.de header.b=ZATI92fJ; dkim=permerror (0-bit key) header.d=linutronix.de header.i=@linutronix.de header.b=0uJ9QfZY; arc=none smtp.client-ip=193.142.43.55 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linutronix.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linutronix.de Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=linutronix.de header.i=@linutronix.de header.b="ZATI92fJ"; dkim=permerror (0-bit key) header.d=linutronix.de header.i=@linutronix.de header.b="0uJ9QfZY" Message-ID: <20240117124903.120791798@linutronix.de> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1706015422; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: references:references; bh=bT6m5jxUmC6Txyk8p8gQLxPMYy2V70rH3C9oZo6KFFE=; b=ZATI92fJrHXKdvhkfy3cvNmclH0yTbP4WCFNWXMT3gg7gcQT/KOxL/pt9cy2m436kSjqRC Cq18UtyYtfV5ErjVMuDRizRTF0x0dxFyZRIw4IgWFDdmvXBwtnrFdaMJ1cqU8sULBJybN0 2/oFFlx5XsBdBDeCgwcmnfvJAiYMR8Jq5QhJwHK1DiHD5YgXD77n8P78/mlnFEIjC9rfZq 1o8BlkdJjFw4Nm4ow9uLemfFySRkyu/wlT2JRfo0vm5/a4JPgdAkEqxJpBpvmXVurXEC8k YFc1M5BDtt9j50Wji0HT9dsV1EPEDEBRs4Ou6cwl/i6+d9XJzQeFxY86Eht9/A== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1706015422; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: references:references; bh=bT6m5jxUmC6Txyk8p8gQLxPMYy2V70rH3C9oZo6KFFE=; b=0uJ9QfZYaT7vBd6WE/zkr8KVRkHIHi9+9GsR26Ar0djGWBWAAtA4JDEKg4Ns2UHjcKZhy7 kPZ0Q1RMMArZB8Cg== From: Thomas Gleixner To: LKML Cc: x86@kernel.org, Tom Lendacky , Andrew Cooper , Arjan van de Ven , Huang Rui , Juergen Gross , Dimitri Sivanich , Sohil Mehta , K Prateek Nayak , Kan Liang , Zhang Rui , "Paul E. McKenney" , Feng Tang , Andy Shevchenko , Michael Kelley , "Peter Zijlstra (Intel)" , Andy Shevchenko , Wei Liu Subject: [patch V2 12/22] x86/platform/ce4100: Prepare for separate mpparse callbacks References: <20240117124704.044462658@linutronix.de> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Date: Tue, 23 Jan 2024 14:10:21 +0100 (CET) Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" From: Thomas Gleixner Select x86_dtb_parse_smp_config() as SMP configuration parser in preparation of splitting up the get_smp_config() callback. Signed-off-by: Thomas Gleixner --- arch/x86/platform/ce4100/ce4100.c | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) --- --- a/arch/x86/platform/ce4100/ce4100.c +++ b/arch/x86/platform/ce4100/ce4100.c @@ -135,12 +135,14 @@ static void sdv_pci_init(void) */ void __init x86_ce4100_early_setup(void) { - x86_init.oem.arch_setup =3D sdv_arch_setup; - x86_init.resources.probe_roms =3D x86_init_noop; - x86_init.mpparse.get_smp_config =3D x86_init_uint_noop; - x86_init.mpparse.find_mptable =3D x86_init_noop; - x86_init.pci.init =3D ce4100_pci_init; - x86_init.pci.init_irq =3D sdv_pci_init; + x86_init.oem.arch_setup =3D sdv_arch_setup; + x86_init.resources.probe_roms =3D x86_init_noop; + x86_init.mpparse.find_mptable =3D x86_init_noop; + x86_init.mpparse.early_parse_smp_cfg =3D x86_init_noop; + x86_init.mpparse.parse_smp_cfg =3D x86_dtb_parse_smp_config; + x86_init.mpparse.get_smp_config =3D x86_init_uint_noop; + x86_init.pci.init =3D ce4100_pci_init; + x86_init.pci.init_irq =3D sdv_pci_init; =20 /* * By default, the reboot method is ACPI which is supported by the