From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Subject: Re: [PATCH v3 3/4] xen/arm: Add early printk support for ThunderX platform Date: Thu, 5 Mar 2015 16:40:16 +0000 Message-ID: <1425573616.25940.258.camel@citrix.com> References: <1425449185-19017-1-git-send-email-vijay.kilari@gmail.com> <1425449185-19017-4-git-send-email-vijay.kilari@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Julien Grall Cc: Vijay Kilari , stefano.stabellini@eu.citrix.com, Prasun.Kapoor@caviumnetworks.com, Vijaya Kumar K , tim@xen.org, xen-devel@lists.xen.org, stefano.stabellini@citrix.com, manish.jaggi@caviumnetworks.com List-Id: xen-devel@lists.xenproject.org On Thu, 2015-03-05 at 09:15 +0000, Julien Grall wrote: > Hello Vijay, > > > On 4 Mar 2015 06:06, wrote: > > > > From: Vijaya Kumar K > > > > ThunderX platform uses pl011 uart. > > You need to update docs/misc/arm/early-printk.txt. I'll insert "- thunderx: printk with pl011 for Cavium ThunderX processor." as I commit. If that doesn't suit then please followup with a correction ;-) > > Regards, > > > > Signed-off-by: Vijaya Kumar K > > Acked-by: Ian Campbell > > --- > > xen/arch/arm/Rules.mk | 4 ++++ > > 1 file changed, 4 insertions(+) > > > > diff --git a/xen/arch/arm/Rules.mk b/xen/arch/arm/Rules.mk > > index c7bd227..54efa91 100644 > > --- a/xen/arch/arm/Rules.mk > > +++ b/xen/arch/arm/Rules.mk > > @@ -113,6 +113,10 @@ ifeq ($(CONFIG_EARLY_PRINTK), lager) > > EARLY_PRINTK_INC := scif > > EARLY_UART_BASE_ADDRESS := 0xe6e60000 > > endif > > +ifeq ($(CONFIG_EARLY_PRINTK), thunderx) > > +EARLY_PRINTK_INC := pl011 > > +EARLY_UART_BASE_ADDRESS := 0x87e024000000 > > +endif > > > > ifneq ($(EARLY_PRINTK_INC),) > > EARLY_PRINTK := y > > -- > > 1.7.9.5 > > > >