From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753873AbcBJLNI (ORCPT ); Wed, 10 Feb 2016 06:13:08 -0500 Received: from foss.arm.com ([217.140.101.70]:46313 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752781AbcBJLNG (ORCPT ); Wed, 10 Feb 2016 06:13:06 -0500 Date: Wed, 10 Feb 2016 11:12:34 +0000 From: Mark Rutland To: Gabriele Paoloni Cc: "Guohanjun (Hanjun Guo)" , "Wangzhou (B)" , "liudongdong (C)" , Linuxarm , qiujiang , "bhelgaas@google.com" , "arnd@arndb.de" , "Lorenzo.Pieralisi@arm.com" , "tn@semihalf.com" , "linux-pci@vger.kernel.org" , "linux-kernel@vger.kernel.org" , "xuwei (O)" , "linux-acpi@vger.kernel.org" , "jcm@redhat.com" , zhangjukuo , "Liguozhu (Kenneth)" , "linux-arm-kernel@lists.infradead.org" Subject: Re: [RFC PATCH v3 3/3] PCI/ACPI: hisi: Add ACPI support for HiSilicon SoCs Host Controllers Message-ID: <20160210111234.GC2632@leverpostej> References: <1455039260-6040-1-git-send-email-gabriele.paoloni@huawei.com> <1455039260-6040-4-git-send-email-gabriele.paoloni@huawei.com> <20160209182429.GD4348@leverpostej> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Feb 10, 2016 at 09:52:36AM +0000, Gabriele Paoloni wrote: > Hi Mark > > > On Tue, Feb 09, 2016 at 05:34:20PM +0000, Gabriele Paoloni wrote: > > > From: gabriele paoloni > > > +/* > > > + * Retrieve rc_dbi base and size from _DSD > > > + * Name (_DSD, Package () { > > > + * ToUUID("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"), > > > + * Package () { > > > + * Package () {"rc-dbi", Package () { 0x0, 0xb0080000, 0x0, 0x10000 > > }}, > > > + * } > > > + * }) > > > + */ > > > > As above, this does not look right. ACPI has standard mechanisms for > > describing addresses. Making something up like this is not a good idea. > > I am quite new to ACPI, may I ask you to explain a bit? ACPI has standard mechanisms for describing certain resources, and these should not be described in _DSD. Memory or IO address regions are such resources (in _CRS, IIRC), and should not be described in _DSD. Thanks, Mark.