diff options
| author | Anup Patel <anup.patel@wdc.com> | 2020-04-24 15:21:34 +0530 |
|---|---|---|
| committer | Anup Patel <anup@brainfault.org> | 2020-05-01 09:36:13 +0530 |
| commit | 01a8c8eebb6f219afb3873fce82a11a7cf49a03e (patch) | |
| tree | af88966d45c52d7a5a919bb35dc647e3ca30d3b3 /include | |
| parent | e6c1345f89f0c2fa5d8b0dde733eb80366056632 (diff) | |
| download | opensbi-01a8c8eebb6f219afb3873fce82a11a7cf49a03e.zip opensbi-01a8c8eebb6f219afb3873fce82a11a7cf49a03e.tar.gz opensbi-01a8c8eebb6f219afb3873fce82a11a7cf49a03e.tar.bz2 | |
lib: utils: Improve fdt_parse_uart8250() API
The information parsed by fdt_parse_uart8250() API is not complete.
We need to parse reg-shift and reg-io-width for UART 8520 as well.
Signed-off-by: Anup Patel <anup.patel@wdc.com>
Reviewed-by: Atish Patra <atish.patra@wdc.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/sbi_utils/fdt/fdt_helper.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/sbi_utils/fdt/fdt_helper.h b/include/sbi_utils/fdt/fdt_helper.h index 06b8a62..d3cc791 100644 --- a/include/sbi_utils/fdt/fdt_helper.h +++ b/include/sbi_utils/fdt/fdt_helper.h @@ -14,6 +14,8 @@ struct platform_uart_data { unsigned long addr; unsigned long freq; unsigned long baud; + unsigned long reg_shift; + unsigned long reg_io_width; }; struct platform_plic_data { |
