summaryrefslogtreecommitdiff
path: root/lib/utils/fdt
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 /lib/utils/fdt
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 'lib/utils/fdt')
-rw-r--r--lib/utils/fdt/fdt_helper.c37
1 files changed, 23 insertions, 14 deletions
diff --git a/lib/utils/fdt/fdt_helper.c b/lib/utils/fdt/fdt_helper.c
index f620e74..4757f19 100644
--- a/lib/utils/fdt/fdt_helper.c
+++ b/lib/utils/fdt/fdt_helper.c
@@ -58,21 +58,15 @@ static int fdt_get_node_addr_size(void *fdt, int node, unsigned long *addr,
return 0;
}
-int fdt_parse_uart8250(void *fdt, struct platform_uart_data *uart,
- const char *compatible)
+int fdt_parse_uart8250_node(void *fdt, int nodeoffset,
+ struct platform_uart_data *uart)
{
- int nodeoffset, len, rc;
- fdt32_t *val;
+ int len, rc;
+ const fdt32_t *val;
unsigned long reg_addr, reg_size;
- /**
- * TODO: We don't know how to handle multiple nodes with the same
- * compatible sring. Just return the first node for now.
- */
-
- nodeoffset = fdt_node_offset_by_compatible(fdt, -1, compatible);
- if (nodeoffset < 0)
- return nodeoffset;
+ if (nodeoffset < 0 || !uart || !fdt)
+ return SBI_ENODEV;
rc = fdt_get_node_addr_size(fdt, nodeoffset, &reg_addr, &reg_size);
if (rc < 0 || !reg_addr || !reg_size)
@@ -80,8 +74,8 @@ int fdt_parse_uart8250(void *fdt, struct platform_uart_data *uart,
uart->addr = reg_addr;
/**
- * UART address is mandaotry. clock-frequency and current-speed may not
- * be present. Don't return error.
+ * UART address is mandaotry. clock-frequency and current-speed
+ * may not be present. Don't return error.
*/
val = (fdt32_t *)fdt_getprop(fdt, nodeoffset, "clock-frequency", &len);
if (len > 0 && val)
@@ -110,6 +104,21 @@ int fdt_parse_uart8250(void *fdt, struct platform_uart_data *uart,
return 0;
}
+int fdt_parse_uart8250(void *fdt, struct platform_uart_data *uart,
+ const char *compatible)
+{
+ int nodeoffset;
+
+ if (!compatible || !uart || !fdt)
+ return SBI_ENODEV;
+
+ nodeoffset = fdt_node_offset_by_compatible(fdt, -1, compatible);
+ if (nodeoffset < 0)
+ return nodeoffset;
+
+ return fdt_parse_uart8250_node(fdt, nodeoffset, uart);
+}
+
int fdt_parse_plic(void *fdt, struct platform_plic_data *plic,
const char *compatible)
{