From mboxrd@z Thu Jan 1 00:00:00 1970 From: Antoine =?iso-8859-1?Q?T=E9nart?= Subject: Re: [PATCH 1/5] ARM: berlin: add SMP support Date: Mon, 2 Jun 2014 12:00:48 +0200 Message-ID: <20140602100048.GA12162@kwain> References: <1401700866-24804-1-git-send-email-antoine.tenart@free-electrons.com> <1401700866-24804-2-git-send-email-antoine.tenart@free-electrons.com> <20140602094715.GG28090@lunn.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE Return-path: Content-Disposition: inline In-Reply-To: <20140602094715.GG28090@lunn.ch> Sender: linux-kernel-owner@vger.kernel.org To: Andrew Lunn Cc: Antoine =?iso-8859-1?Q?T=E9nart?= , sebastian.hesselbarth@gmail.com, thomas.petazzoni@free-electrons.com, zmxu@marvell.com, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, alexandre.belloni@free-electrons.com, jszhang@marvell.com, linux-arm-kernel@lists.infradead.org List-Id: devicetree@vger.kernel.org Hi Andrew, On Mon, Jun 02, 2014 at 11:47:15AM +0200, Andrew Lunn wrote: > On Mon, Jun 02, 2014 at 11:21:02AM +0200, Antoine T=E9nart wrote: > > + > > +static inline void berlin_reset_cpu(unsigned int cpu) > > +{ > > + u32 val; > > + > > + val =3D readl(cpu_ctrl + CPU_RESET); > > + val |=3D BIT(cpu_logical_map(cpu)); > > + writel(val, cpu_ctrl + CPU_RESET); > > +} >=20 > Is this performing a reset on the CPU, or is it taking it out of rese= t? >=20 > If you are going to implement CPU hotplug at some point, you are goin= g > to want to be able to put the CPU into reset, i.e. power it off, and > take it out of reset, i.e. power it on and getting it running. So it > might help if we get these function names clear now. It is performing a reset on the CPU. berlin_perform_reset_cpu() then? > > + > > +static void __init berlin_smp_prepare_cpus(unsigned int max_cpus) > > +{ > > + struct device_node *np; > > + void __iomem *scu_base; > > + void __iomem *vectors_base; > > + > > + np =3D of_find_compatible_node(NULL, NULL, "arm,cortex-a9-scu"); > > + scu_base =3D of_iomap(np, 0); > > + of_node_put(np); > > + if (!scu_base) > > + return; > > + > > + np =3D of_find_compatible_node(NULL, NULL, "marvell,berlin-cpu-ct= rl"); > > + cpu_ctrl =3D of_iomap(np, 0); > > + of_node_put(np); > > + if (!cpu_ctrl) > > + goto unmap_scu; > > + > > + vectors_base =3D ioremap(CONFIG_VECTORS_BASE, SZ_32K); > > + if (!vectors_base) > > + goto unmap_scu; > > + > > + scu_enable(scu_base); > > + flush_cache_all(); > > + > > + /* > > + * Write the first instruction the CPU will execute after being r= eseted > > + * in the reset exception register. > > + */ > > + writel(boot_inst, vectors_base + RESET_VECT); > > + > > + /* > > + * Write the secondary startup address into the SW reset address > > + * register. This is used by boot_inst. >=20 > Maybe it would be better to call this the reset address vector instea= d > of address register. It is in the vector space after all. I don't have a strong opinion on this. I can update the 'reset exceptio= n register' as well then. Antoine --=20 Antoine T=E9nart, Free Electrons Embedded Linux, Kernel and Android engineering http://free-electrons.com