summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAnup Patel <anup.patel@wdc.com>2020-04-25 16:03:54 +0300
committerAnup Patel <anup@brainfault.org>2020-05-01 07:06:13 +0300
commit0a0093b0bc8671d3a00cf1bb71d56cabab9474e1 (patch)
treeb0c6feabcf0c1ce4d7cba42d45d15afad7e6b17b /include
parent01a8c8eebb6f219afb3873fce82a11a7cf49a03e (diff)
downloadopensbi-0a0093b0bc8671d3a00cf1bb71d56cabab9474e1.tar.xz
lib: utils: Add fdt_parse_uart8250_node() function
We add fdt_parse_uart8250_node() function which will allow us to parse a particular DT node as UART 8250 node. This will be useful in parsing the node pointed by stdout-path. Signed-off-by: Anup Patel <anup.patel@wdc.com> Reviewed-by: Atish Patra <atish.patra@wdc.com>
Diffstat (limited to 'include')
-rw-r--r--include/sbi_utils/fdt/fdt_helper.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/sbi_utils/fdt/fdt_helper.h b/include/sbi_utils/fdt/fdt_helper.h
index d3cc791..1fbc215 100644
--- a/include/sbi_utils/fdt/fdt_helper.h
+++ b/include/sbi_utils/fdt/fdt_helper.h
@@ -23,6 +23,9 @@ struct platform_plic_data {
unsigned long num_src;
};
+int fdt_parse_uart8250_node(void *fdt, int nodeoffset,
+ struct platform_uart_data *uart);
+
int fdt_parse_uart8250(void *fdt, struct platform_uart_data *uart,
const char *compatible);