Skip to content

Commit ac442a0

Browse files
pierregondoisgregkh
authored andcommitted
serial: pl011: Add ACPI SBSA UART match id
The document 'ACPI for Arm Components 1.0' defines the following _HID mappings: -'Prime cell UART (PL011)': ARMH0011 -'SBSA UART': ARMHB000 Use the sbsa-uart driver when a device is described with the 'ARMHB000' _HID. Note: PL011 devices currently use the sbsa-uart driver instead of the uart-pl011 driver. Indeed, PL011 devices are not bound to a clock in ACPI. It is not possible to change their baudrate. Cc: <stable@vger.kernel.org> Signed-off-by: Pierre Gondois <Pierre.Gondois@arm.com> Link: https://lore.kernel.org/r/20211109172248.19061-1-Pierre.Gondois@arm.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 00de977 commit ac442a0

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

drivers/tty/serial/amba-pl011.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2947,6 +2947,7 @@ MODULE_DEVICE_TABLE(of, sbsa_uart_of_match);
29472947

29482948
static const struct acpi_device_id __maybe_unused sbsa_uart_acpi_match[] = {
29492949
{ "ARMH0011", 0 },
2950+
{ "ARMHB000", 0 },
29502951
{},
29512952
};
29522953
MODULE_DEVICE_TABLE(acpi, sbsa_uart_acpi_match);

0 commit comments

Comments
 (0)