public inbox for linux-mips@vger.kernel.org
 help / color / mirror / Atom feed
From: "Jiaxun Yang" <jiaxun.yang@flygoat.com>
To: "Huacai Chen" <chenhuacai@kernel.org>
Cc: "Thomas Bogendoerfer" <tsbogend@alpha.franken.de>,
	"Florian Fainelli" <florian.fainelli@broadcom.com>,
	"Broadcom internal kernel review list"
	<bcm-kernel-feedback-list@broadcom.com>,
	"Thomas Gleixner" <tglx@linutronix.de>,
	"Serge Semin" <fancer.lancer@gmail.com>,
	"paulburton@kernel.org" <paulburton@kernel.org>,
	"linux-mips@vger.kernel.org" <linux-mips@vger.kernel.org>,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH 04/10] MIPS: Move mips_smp_ipi_init call after prepare_cpus
Date: Tue, 18 Jun 2024 15:50:33 +0100	[thread overview]
Message-ID: <a3d57a7e-6134-4da5-bd4a-b150d2c97912@app.fastmail.com> (raw)
In-Reply-To: <CAAhV-H7RQu6wdBBjOBptZX6R63Ypw1qFCoJnZ335bFKd1f=XdA@mail.gmail.com>



在2024年6月18日六月 上午4:51,Huacai Chen写道:
> On Tue, Jun 18, 2024 at 6:10 AM Jiaxun Yang <jiaxun.yang@flygoat.com> wrote:
>>
>>
>>
>> 在2024年6月17日六月 下午2:53,Huacai Chen写道:
>> > Hi, Jiaxun
>> >
>> > On Mon, Jun 17, 2024 at 5:03 AM Jiaxun Yang <jiaxun.yang@flygoat.com> wrote:
>> >>
>> >> This will give platform code a genuine chance to setup
>> >> IPI IRQ in prepare_cpus.
>> >>
>> >> This is the best place for platforms to setup IPI as smp_setup
>> >> is too early for IRQ subsystem.
>> > mips_smp_ipi_init() is an early_initcall() function, why do you say it
>> > is in smp_setup()?
>>
>> Sorry, I was trying to say that smp_setup is not a good point so we should
>> go prepare_cpus.
> It is not in smp_setup() now, then how do you move it from smp_setup()?
[...]

Well I was trying to justify where should I move it to, not where
does it from.

I should improve the commit message to justify the reason first.

Thanks
- Jiaxun
>
> Huacai
>
>>
>> The intention of this patch is to move mips_smp_ipi_init to a certain point
>> so platform would gain control over it.
>>
>> Thanks
>> - Jiaxun
>>
>> >
>> >
>> > Huacai
>> >>
>> >> Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
>> >> ---
>> >>  arch/mips/kernel/smp.c | 11 ++++++++++-
>> >>  1 file changed, 10 insertions(+), 1 deletion(-)
>> >>
>> >> diff --git a/arch/mips/kernel/smp.c b/arch/mips/kernel/smp.c
>> >> index fe053fe52147..ddf96c28e2f0 100644
>> >> --- a/arch/mips/kernel/smp.c
>> >> +++ b/arch/mips/kernel/smp.c
>> >> @@ -375,7 +375,6 @@ static int __init mips_smp_ipi_init(void)
>> >>
>> >>         return 0;
>> >>  }
>> >> -early_initcall(mips_smp_ipi_init);
>> >>  #endif
>> >>
>> >>  /*
>> >> @@ -460,12 +459,22 @@ void __init smp_cpus_done(unsigned int max_cpus)
>> >>  /* called from main before smp_init() */
>> >>  void __init smp_prepare_cpus(unsigned int max_cpus)
>> >>  {
>> >> +       int rc;
>> >> +
>> >>         init_new_context(current, &init_mm);
>> >>         current_thread_info()->cpu = 0;
>> >>         mp_ops->prepare_cpus(max_cpus);
>> >>         set_cpu_sibling_map(0);
>> >>         set_cpu_core_map(0);
>> >>         calculate_cpu_foreign_map();
>> >> +#ifdef CONFIG_GENERIC_IRQ_IPI
>> >> +       rc = mips_smp_ipi_init();
>> >> +       if (rc) {
>> >> +               pr_err("Failed to initialize IPI - disabling SMP");
>> >> +               init_cpu_present(cpumask_of(0));
>> >> +               return;
>> >> +       }
>> >> +#endif
>> >>  #ifndef CONFIG_HOTPLUG_CPU
>> >>         init_cpu_present(cpu_possible_mask);
>> >>  #endif
>> >>
>> >> --
>> >> 2.43.0
>> >>
>>
>> --
>> - Jiaxun

-- 
- Jiaxun

  reply	other threads:[~2024-06-18 14:50 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-16 21:03 [PATCH 00/10] MIPS: IPI Improvements Jiaxun Yang
2024-06-16 21:03 ` [PATCH 01/10] MIPS: smp: Make IPI interrupts scalable Jiaxun Yang
2024-07-03 15:04   ` Thomas Bogendoerfer
2024-07-03 20:15     ` Jiaxun Yang
2024-07-03 21:26       ` Maciej W. Rozycki
2024-07-03 22:07         ` Jiaxun Yang
2024-07-04 14:34           ` Florian Fainelli
2024-07-04 22:36           ` Maciej W. Rozycki
2024-07-05  6:55             ` Thomas Bogendoerfer
2024-07-04 13:14       ` Thomas Bogendoerfer
2024-07-05  8:40     ` Serge Semin
2024-07-05  9:08       ` Jiaxun Yang
2024-06-16 21:03 ` [PATCH 02/10] MIPS: smp: Manage IPI interrupts as percpu_devid interrupts Jiaxun Yang
2024-07-03 15:03   ` Thomas Bogendoerfer
2024-07-03 20:08     ` Jiaxun Yang
2024-07-04 13:05       ` Thomas Bogendoerfer
2024-06-16 21:03 ` [PATCH 03/10] MIPS: smp: Provide platform IPI virq & domain hooks Jiaxun Yang
2024-06-16 21:03 ` [PATCH 04/10] MIPS: Move mips_smp_ipi_init call after prepare_cpus Jiaxun Yang
2024-06-17 13:53   ` Huacai Chen
2024-06-17 22:10     ` Jiaxun Yang
2024-06-18  3:51       ` Huacai Chen
2024-06-18 14:50         ` Jiaxun Yang [this message]
2024-07-03 15:09           ` Thomas Bogendoerfer
2024-06-16 21:03 ` [PATCH 05/10] MIPS: smp: Implement IPI stats Jiaxun Yang
2024-07-03 15:11   ` Thomas Bogendoerfer
2024-06-16 21:03 ` [PATCH 06/10] irqchip: irq-mips-gic: Switch to ipi_mux Jiaxun Yang
2024-06-16 21:03 ` [PATCH 07/10] MIPS: Implement get_mips_sw_int hook Jiaxun Yang
2024-06-16 21:03 ` [PATCH 08/10] MIPS: GIC: Implement get_sw_int hook Jiaxun Yang
2024-06-16 21:03 ` [PATCH 09/10] irqchip: irq-mips-cpu: Rework software IRQ handling flow Jiaxun Yang
2024-06-16 21:03 ` [PATCH 10/10] MIPS: smp-mt: Rework IPI functions Jiaxun Yang
2024-07-03  8:37 ` [PATCH 00/10] MIPS: IPI Improvements Jiaxun Yang

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=a3d57a7e-6134-4da5-bd4a-b150d2c97912@app.fastmail.com \
    --to=jiaxun.yang@flygoat.com \
    --cc=bcm-kernel-feedback-list@broadcom.com \
    --cc=chenhuacai@kernel.org \
    --cc=fancer.lancer@gmail.com \
    --cc=florian.fainelli@broadcom.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mips@vger.kernel.org \
    --cc=paulburton@kernel.org \
    --cc=tglx@linutronix.de \
    --cc=tsbogend@alpha.franken.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox