Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F137053312
D27422.id80151.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
D27422.id80151.diff
View Options
Index: sys/dev/uart/uart_bus_fdt.c
===================================================================
--- sys/dev/uart/uart_bus_fdt.c
+++ sys/dev/uart/uart_bus_fdt.c
@@ -175,26 +175,37 @@
int
uart_cpu_fdt_probe(struct uart_class **classp, bus_space_tag_t *bst,
bus_space_handle_t *bsh, int *baud, u_int *rclk, u_int *shiftp,
- u_int *iowidthp)
+ u_int *iowidthp, const int devtype)
{
const char *propnames[] = {"stdout-path", "linux,stdout-path", "stdout",
"stdin-path", "stdin", NULL};
+ const char *propname_dbg[] = {"freebsd,debug-path", NULL};
const char **name;
struct uart_class *class;
phandle_t node, chosen;
pcell_t br, clk, shift, iowidth;
- char *cp;
+ char *cp = NULL;
int err;
/* Has the user forced a specific device node? */
- cp = kern_getenv("hw.fdt.console");
+ switch (devtype) {
+ case UART_DEV_DBGPORT:
+ cp = kern_getenv("hw.fdt.debug");
+ name = propname_dbg;
+ break;
+ default: /* UART_DEV_CONSOLE */
+ cp = kern_getenv("hw.fdt.console");
+ name = propnames;
+ break;
+ }
+
if (cp == NULL) {
/*
- * Retrieve /chosen/std{in,out}.
+ * Retrieve a node from /chosen.
*/
node = -1;
if ((chosen = OF_finddevice("/chosen")) != -1) {
- for (name = propnames; *name != NULL; name++) {
+ for (; *name != NULL; name++) {
if (phandle_chosen_propdev(chosen, *name,
&node) == 0)
break;
Index: sys/dev/uart/uart_cpu_arm64.c
===================================================================
--- sys/dev/uart/uart_cpu_arm64.c
+++ sys/dev/uart/uart_cpu_arm64.c
@@ -108,7 +108,7 @@
#ifdef FDT
if (err != 0) {
err = uart_cpu_fdt_probe(&class, &bst, &bsh, &br, &rclk,
- &shift, &iowidth);
+ &shift, &iowidth, devtype);
}
#endif
if (err != 0)
Index: sys/dev/uart/uart_cpu_fdt.h
===================================================================
--- sys/dev/uart/uart_cpu_fdt.h
+++ sys/dev/uart/uart_cpu_fdt.h
@@ -51,7 +51,7 @@
DATA_SET(uart_fdt_class_set, data)
int uart_cpu_fdt_probe(struct uart_class **, bus_space_tag_t *,
- bus_space_handle_t *, int *, u_int *, u_int *, u_int *);
+ bus_space_handle_t *, int *, u_int *, u_int *, u_int *, const int);
int uart_fdt_get_clock(phandle_t node, pcell_t *cell);
int uart_fdt_get_shift(phandle_t node, pcell_t *cell);
int uart_fdt_get_io_width(phandle_t node, pcell_t *cell);
Index: sys/dev/uart/uart_cpu_fdt.c
===================================================================
--- sys/dev/uart/uart_cpu_fdt.c
+++ sys/dev/uart/uart_cpu_fdt.c
@@ -87,10 +87,12 @@
if (!err)
return (0);
- if (devtype != UART_DEV_CONSOLE)
+ if ((devtype != UART_DEV_CONSOLE) &&
+ (devtype != UART_DEV_DBGPORT))
return (ENXIO);
- err = uart_cpu_fdt_probe(&class, &bst, &bsh, &br, &rclk, &shift, &iowidth);
+ err = uart_cpu_fdt_probe(&class, &bst, &bsh, &br, &rclk,
+ &shift, &iowidth, devtype);
if (err != 0)
return (err);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Nov 22, 1:37 AM (7 h, 55 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
25861881
Default Alt Text
D27422.id80151.diff (2 KB)
Attached To
Mode
D27422: Add support of UART_DEV_DBGPORT to uart_bus_fdt.c
Attached
Detach File
Event Timeline
Log In to Comment