If we translate part of the message we get this:
none0@ no driver attached
pci0:0:9:0: location of the card (on the PCI bus)
class=0x070002 This seems to indicate serial IO cards
card=0x3253 4348 4348 indicates Nanjing Qin Heng Electronics Co. Ltd ( http://wch.cn )
The PCI database identifies 0x3253 as a
"Placa PCI serial paralela multiserial"
In other words, we know which card it is. But your kernel did not recognise it. Without recognising it the correct driver was not loaded.
There are three possible solutions from here:
- Locate the correct driver (often via the manufacturers website) and use that.
- Or update the kernel to a version which understands this device
- Or write your own driver.
3)Is a lot of work.
2) Is easiest by updating the kernel, but you are already using the most recent non-current kernel. You could try 10/current, but I doubt it will work. Worth trying though.
Alternatively modify the kernel source. Download it is you did not already have it, then:
cd /usr/src/sys/dev/uart/
vim uart_bus_pci.c
/TOPIC Semiconductor TP560 56k modem
(searches forward to the line containing TOPIC Semiconductor TP560 56k modem )
Add the line marked with a plus. (use i
enter insert mode)
{ 0x151f, 0x0000, 0xffff, 0, "TOPIC Semiconductor TP560 56k modem", 0x10 },
+{ 0x4348, 0x3253, 0xffff, 0, "WinChipHead Dual Port RS-232", 0x10 },
{ 0x9710, 0x9820, 0x1000, 1, "NetMos NM9820 Serial Port", 0x10 },
Save (Escape:wq
)
Recompile the kernel. You already did this with puc and COM_MULTIPORT options so you know how it is done. For other readers with similar problems, see http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-building.html
If all goes well the kernel will now [try to] attach a driver. Hopefully one which works.
The latter is not guaranteed since not all serial cards use multipliers in quite the same way.