Doorbell IRQ

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Doorbell IRQ

757 Views
bogdantanasa
Contributor II

Hi,

Is there any way to prevent a specific core (of T4240) to get interrupted by the doorbell IRQs? Has Linux yocto some API which can help?

Thanks,

Bogdan.

Labels (1)
Tags (2)
0 Kudos
2 Replies

583 Views
yipingwang
NXP TechSupport
NXP TechSupport

Please refer to the following in arch/powerpc/platforms/85xx/smp.c.

static void smp_85xx_basic_setup(int cpu_nr)
{
        if (cpu_has_feature(CPU_FTR_DBELL))
                doorbell_setup_this_cpu();
}


Have a great day,
Yiping

-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

0 Kudos

583 Views
weissermagier
Contributor I

Hello Bogdan,

i have no idea about an api but i reduce the amount of doorbell's a lot with following kernel option:

# CONFIG_IRQ_ALL_CPUS is not set

This option was set by Default.

Have a nice day

0 Kudos