[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20161206175830.6989-2-aleksey.makarov@linaro.org>
Date: Tue, 6 Dec 2016 23:58:26 +0600
From: Aleksey Makarov <aleksey.makarov@...aro.org>
To: "Rafael J . Wysocki" <rjw@...ysocki.net>
Cc: linux-acpi@...r.kernel.org, linux-serial@...r.kernel.org,
linux-kernel@...r.kernel.org,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Russell King <linux@....linux.org.uk>,
Peter Hurley <peter@...leysoftware.com>,
Aleksey Makarov <aleksey.makarov@...aro.org>,
Jon Masters <jcm@...hat.com>, Mark Salter <msalter@...hat.com>,
Duc Dang <dhdang@....com>, Rob Herring <robh@...nel.org>,
Graeme Gregory <graeme.gregory@...aro.org>,
Len Brown <lenb@...nel.org>
Subject: [RFC v2 1/4] ACPI: SPCR: check bit width for the 16550 UART
Check the 'Register Bit Width' field of the ACPI Generic Address
Structure that specifies the address of the UART registers to
decide if the driver should use "mmio32" access instead of "mmio".
If the driver is other than 16550 the access width is defined
by the Interface Type field of the SPCR table.
Signed-off-by: Aleksey Makarov <aleksey.makarov@...aro.org>
Signed-off-by: Graeme Gregory <graeme.gregory@...aro.org>
Reported-by: Heyi Guo <heyi.guo@...aro.org>
---
drivers/acpi/spcr.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/acpi/spcr.c b/drivers/acpi/spcr.c
index e8d7bc7..6c6710b 100644
--- a/drivers/acpi/spcr.c
+++ b/drivers/acpi/spcr.c
@@ -70,6 +70,10 @@ int __init parse_spcr(bool earlycon)
break;
case ACPI_DBG2_16550_COMPATIBLE:
case ACPI_DBG2_16550_SUBSET:
+ if (table->serial_port.space_id ==
+ ACPI_ADR_SPACE_SYSTEM_MEMORY &&
+ table->serial_port.bit_width == 32)
+ iotype = "mmio32";
uart = "uart";
break;
default:
--
2.10.2
Powered by blists - more mailing lists