diff options
author | Maximilian Brune <maximilian.brune@9elements.com> | 2024-10-23 15:19:48 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-10-27 17:24:12 -0600 |
commit | ea37e5064e20c63cbaa667cb8b81838d5bab65bb (patch) | |
tree | 270d11bff754f3422d0bc689af45d8639b11955e /include | |
parent | d016abb47f60e8630728fa8414db00c983d44d0b (diff) |
serial: serial_pl01x: Implement .getinfo() for PL01
When ACPI is enabled on arm it will use the getinfo function to fill
the SPCR ACPI table.
Signed-off-by: Maximilian Brune <maximilian.brune@9elements.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Cc: Simon Glass <sjg@chromium.org>
Cc: Tom Rini <trini@konsulko.com>
Reviewed-by: Moritz Fischer <moritzf@google.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/serial.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/serial.h b/include/serial.h index d129dc3253c..d7a9a8cfb8b 100644 --- a/include/serial.h +++ b/include/serial.h @@ -124,6 +124,7 @@ enum serial_stop { enum serial_chip_type { SERIAL_CHIP_UNKNOWN = -1, SERIAL_CHIP_16550_COMPATIBLE, + SERIAL_CHIP_PL01X, }; enum adr_space_type { |