summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2018-06-05 19:23:02 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2018-06-05 19:23:02 +0000
commit42036bd5b84978c8bf5307aaac934c90fac325ac (patch)
tree04cc4b0d143f566412c5b6d0fdd0b463ea57023a
parent774312317fa9fb50d448502e78087ae6d46d8e6c (diff)
Unify arm64 and armv7 pluart(4) implementations.
ok jsg@
-rw-r--r--sys/arch/arm64/dev/pluart.c31
-rw-r--r--sys/arch/armv7/dev/pluart.c28
2 files changed, 35 insertions, 24 deletions
diff --git a/sys/arch/arm64/dev/pluart.c b/sys/arch/arm64/dev/pluart.c
index 33090a7f21a..6098171ffac 100644
--- a/sys/arch/arm64/dev/pluart.c
+++ b/sys/arch/arm64/dev/pluart.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pluart.c,v 1.7 2018/02/19 08:59:52 mpi Exp $ */
+/* $OpenBSD: pluart.c,v 1.8 2018/06/05 19:23:01 kettenis Exp $ */
/*
* Copyright (c) 2014 Patrick Wildt <patrick@blueri.se>
@@ -31,16 +31,15 @@
#include <sys/select.h>
#include <sys/kernel.h>
+#include <machine/bus.h>
+#include <machine/fdt.h>
+
#include <dev/cons.h>
#ifdef DDB
#include <ddb/db_var.h>
#endif
-#include <machine/bus.h>
-#include <machine/fdt.h>
-#include <arm64/arm64/arm64var.h>
-
#include <dev/ofw/fdt.h>
#include <dev/ofw/openfirm.h>
@@ -166,7 +165,6 @@ int pluartprobe(struct device *parent, void *self, void *aux);
void pluartattach(struct device *parent, struct device *self, void *aux);
void pluartcnprobe(struct consdev *cp);
-void pluartcnprobe(struct consdev *cp);
void pluartcninit(struct consdev *cp);
int pluartcnattach(bus_space_tag_t iot, bus_addr_t iobase, int rate,
tcflag_t cflag);
@@ -185,6 +183,7 @@ int pluart_intr(void *);
/* XXX - we imitate 'com' serial ports and take over their entry points */
/* XXX: These belong elsewhere */
+cdev_decl(com);
cdev_decl(pluart);
struct cfdriver pluart_cd = {
@@ -212,7 +211,7 @@ pluart_init_cons(void)
if (fdt_get_reg(node, 0, &reg))
return;
- pluartcnattach(&arm64_bs_tag, reg.addr, B115200, TTYDEF_CFLAG);
+ pluartcnattach(fdt_cons_bs_tag, reg.addr, B115200, TTYDEF_CFLAG);
}
int
@@ -224,7 +223,7 @@ pluartprobe(struct device *parent, void *self, void *aux)
}
struct cdevsw pluartdev =
- cdev_tty_init(3/*XXX NUART */ ,pluart); /* 8: serial port */
+ cdev_tty_init(3/*XXX NUART */ ,pluart); /* 12: serial port */
void
pluartattach(struct device *parent, struct device *self, void *aux)
@@ -840,8 +839,6 @@ pluart_sc(dev_t dev)
void
pluartcnprobe(struct consdev *cp)
{
- cp->cn_dev = makedev(8 /* XXX */, 0);
- cp->cn_pri = CN_MIDPRI;
}
void
@@ -856,17 +853,25 @@ pluartcnattach(bus_space_tag_t iot, bus_addr_t iobase, int rate, tcflag_t cflag)
NULL, NULL, pluartcngetc, pluartcnputc, pluartcnpollc, NULL,
NODEV, CN_MIDPRI
};
+ int maj;
if (bus_space_map(iot, iobase, UART_SPACE, 0, &pluartconsioh))
- return ENOMEM;
+ return ENOMEM;
/* Disable FIFO. */
bus_space_write_4(iot, pluartconsioh, UART_LCR_H,
bus_space_read_4(iot, pluartconsioh, UART_LCR_H) & ~UART_LCR_H_FEN);
+ /* Look for major of com(4) to replace. */
+ for (maj = 0; maj < nchrdev; maj++)
+ if (cdevsw[maj].d_open == comopen)
+ break;
+ if (maj == nchrdev)
+ return ENXIO;
+
cn_tab = &pluartcons;
- cn_tab->cn_dev = makedev(8 /* XXX */, 0);
- cdevsw[8] = pluartdev; /* KLUDGE */
+ cn_tab->cn_dev = makedev(maj, 0);
+ cdevsw[12] = pluartdev; /* KLUDGE */
pluartconsiot = iot;
pluartconsaddr = iobase;
diff --git a/sys/arch/armv7/dev/pluart.c b/sys/arch/armv7/dev/pluart.c
index 12d041c7f64..373d988c3f2 100644
--- a/sys/arch/armv7/dev/pluart.c
+++ b/sys/arch/armv7/dev/pluart.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pluart.c,v 1.8 2018/05/31 09:12:59 kettenis Exp $ */
+/* $OpenBSD: pluart.c,v 1.9 2018/06/05 19:23:01 kettenis Exp $ */
/*
* Copyright (c) 2014 Patrick Wildt <patrick@blueri.se>
@@ -31,16 +31,15 @@
#include <sys/select.h>
#include <sys/kernel.h>
+#include <machine/bus.h>
+#include <machine/fdt.h>
+
#include <dev/cons.h>
#ifdef DDB
#include <ddb/db_var.h>
#endif
-#include <machine/bus.h>
-#include <machine/fdt.h>
-#include <arm/armv7/armv7var.h>
-
#include <dev/ofw/fdt.h>
#include <dev/ofw/openfirm.h>
@@ -184,6 +183,7 @@ int pluart_intr(void *);
/* XXX - we imitate 'com' serial ports and take over their entry points */
/* XXX: These belong elsewhere */
+cdev_decl(com);
cdev_decl(pluart);
struct cfdriver pluart_cd = {
@@ -211,7 +211,7 @@ pluart_init_cons(void)
if (fdt_get_reg(node, 0, &reg))
return;
- pluartcnattach(&armv7_bs_tag, reg.addr, B115200, TTYDEF_CFLAG);
+ pluartcnattach(fdt_cons_bs_tag, reg.addr, B115200, TTYDEF_CFLAG);
}
int
@@ -839,8 +839,6 @@ pluart_sc(dev_t dev)
void
pluartcnprobe(struct consdev *cp)
{
- cp->cn_dev = makedev(12 /* XXX */, 0);
- cp->cn_pri = CN_MIDPRI;
}
void
@@ -855,17 +853,25 @@ pluartcnattach(bus_space_tag_t iot, bus_addr_t iobase, int rate, tcflag_t cflag)
NULL, NULL, pluartcngetc, pluartcnputc, pluartcnpollc, NULL,
NODEV, CN_MIDPRI
};
+ int maj;
if (bus_space_map(iot, iobase, UART_SPACE, 0, &pluartconsioh))
- return ENOMEM;
+ return ENOMEM;
/* Disable FIFO. */
bus_space_write_4(iot, pluartconsioh, UART_LCR_H,
bus_space_read_4(iot, pluartconsioh, UART_LCR_H) & ~UART_LCR_H_FEN);
+ /* Look for major of com(4) to replace. */
+ for (maj = 0; maj < nchrdev; maj++)
+ if (cdevsw[maj].d_open == comopen)
+ break;
+ if (maj == nchrdev)
+ return ENXIO;
+
cn_tab = &pluartcons;
- cn_tab->cn_dev = makedev(12 /* XXX */, 0);
- cdevsw[12] = pluartdev; /* KLUDGE */
+ cn_tab->cn_dev = makedev(maj, 0);
+ cdevsw[12] = pluartdev; /* KLUDGE */
pluartconsiot = iot;
pluartconsaddr = iobase;