From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 11A52C4321A for ; Tue, 11 Jun 2019 16:26:58 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id DF8922089E for ; Tue, 11 Jun 2019 16:26:57 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2388316AbfFKQ05 (ORCPT ); Tue, 11 Jun 2019 12:26:57 -0400 Received: from mga03.intel.com ([134.134.136.65]:63419 "EHLO mga03.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2387423AbfFKQ05 (ORCPT ); Tue, 11 Jun 2019 12:26:57 -0400 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 11 Jun 2019 09:26:51 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.63,362,1557212400"; d="scan'208";a="183853532" Received: from rupengwe-mobl.ccr.corp.intel.com ([10.249.174.43]) by fmsmga002.fm.intel.com with ESMTP; 11 Jun 2019 09:26:49 -0700 Message-ID: <1560270416.5823.49.camel@intel.com> Subject: Re: [RFC PATCH] ACPI / processors: allow a processor device _UID to be a string From: Zhang Rui To: Sudeep Holla , Al Stone Cc: linux-acpi@vger.kernel.org, linux-kernel@vger.kernel.org, Len Brown Date: Wed, 12 Jun 2019 00:26:56 +0800 In-Reply-To: <20190611160906.GA27548@e107155-lin> References: <20190610200734.1182-1-ahs3@redhat.com> <20190611125258.GA16445@e107155-lin> <5ea4f403-853f-5067-4e9b-a8aabec5b1cd@redhat.com> <20190611160906.GA27548@e107155-lin> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.18.5.2-0ubuntu3.2 Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org On 二, 2019-06-11 at 17:11 +0100, Sudeep Holla wrote: > On Tue, Jun 11, 2019 at 10:03:15AM -0600, Al Stone wrote: > > > > On 6/11/19 6:53 AM, Sudeep Holla wrote: > > > > > > On Mon, Jun 10, 2019 at 02:07:34PM -0600, Al Stone wrote: > > > > > > > > In the ACPI specification, section 6.1.12, a _UID may be either > > > > an > > > > integer or a string object.  Up until now, when defining > > > > processor > > > > Device()s in ACPI (_HID ACPI0007), only integers were allowed > > > > even > > > > though this ignored the specification.  As a practical matter, > > > > it > > > > was not an issue. > > > > > > > > Recently, some DSDTs have shown up that look like this: > > > > > > > >   Device (XX00) > > > >   { > > > > Name (_HID, "ACPI0007" /* Processor Device */) > > > >         Name (_UID, "XYZZY-XX00") > > > >         ..... > > > >   } > > > > > > > > which is perfectly legal.  However, the kernel will report > > > > instead: > > > > > > > I am not sure how this can be perfectly legal from specification > > > perspective. It's legal with respect to AML namespace but then > > > the > > > other condition of this matching with entries in static tables > > > like > > > MADT is not possible where there are declared to be simple 4 byte > > > integer/word. Same is true for even ACPI0010, the processor > > > container > > > objects which need to match entries in PPTT, > > > > > > ACPI Processor UID(in MADT): The OS associates this GICC(applies > > > even > > > for APIC and family) Structure with a processor device object in > > > the namespace when the _UID child object of the processor device > > > evaluates to a numeric value that matches the numeric value in > > > this > > > field. > > > > > > So for me that indicates it can't be string unless you have some > > > ways to > > > match those _UID entries to ACPI Processor ID in MADT and PPTT. > > > > > > Let me know if I am missing to consider something here. > > > > > > -- > > > Regards, > > > Sudeep > > > > > Harumph.  I think what we have here is a big mess in the spec, but > > that is exactly why this is an RFC. > > > > The MADT can have any of ~16 different subtables, as you note.  Of > > those, only these require a numeric _UID: > > > >    -- Type 0x0: Processor Local APIC > >    -- Type 0x4: Local APIC NMI [0] > >    -- Type 0x7: Processor Local SAPIC [1] > >    -- Type 0x9: Processor Local x2APIC > >    -- Type 0xa: Local x2APIC NMI [0] > >    -- Type 0xb: GICC > > > > Note [0]: a value of !0x0 is also allowed, indicating all > > processors > >      [1]: this has two fields that could be interpreted as an ID > > when > >           used together > > > > It does not appear that you could build a usable system without any > > of these subtables -- but perhaps someone knows of incantations > > that > > could -- which is why I thought a string _UID might be viable. > > > I hope no one is shipping such device yet or am I wrong ? > We can ask them to fix as Linux simply can't boot on such system or > even if it boots, it may have issues with acpi_processor drivers. > > > > > If we consider the PPTT too, then yeah, _UID must be an integer for > > some devices. > > > > Thanks for the feedback; it forced me to double-check my thinking > > about > > the MADT.  The root cause of the issue is not the kernel in this > > case, > > but a lack of clarity in the spec -- or at least implied > > requirements > > that probably need to be explicit.  I'll send in a spec change. > > > Completely agreed. Even little more clarification on this is helpful. > Thanks for volunteering :) to take up spec change, much appreciated. > hmmm, we've run into the same problem, and I think the problem is that 1. this is a BIOS bug, because we do need numeric _UID when using "Device" object, because we need to use it as a reference to find the processor APIC ID in MADT. Thus a BIOS fix is indeed needed in this case. 2. Although ACPI spec has made "Processor" object deprecated, it does not provide a clear ASL example about how to use "Device" object, plus the clarification of this is in the MADT section instead of the "Declare Processors" section, which could be easy overlooked, thus I totally agree with you that we need some spec change here. Thanks! -rui > -- > Regards, > Sudeep