PERFORCE change 37195 for review

Marcel Moolenaar marcel at FreeBSD.org
Fri Aug 29 14:44:19 PDT 2003


http://perforce.freebsd.org/chv.cgi?CH=37195

Change 37195 by marcel at marcel_nfs on 2003/08/29 14:44:17

	Even though we have a 4-byte wide memory I/O resource,
	accessable registers of the z8530 have offsets:
		Channel B control	0
		Channel B data		2
		Channel A control	4
		Channel A data		6
	
	We're accessing bus space outside our assigned range.
	For now, give each port 4 bytes of bus space even though
	it's technically speaking invalid. Something is going on
	with sbus and I don't know yet what it is...

Affected files ...

.. //depot/projects/uart/dev/puc/puc_sbus.c#2 edit

Differences ...

==== //depot/projects/uart/dev/puc/puc_sbus.c#2 (text+ko) ====

@@ -68,7 +68,7 @@
 	for (i = 0; i < 2; i++) {
 		dd.ports[i].type = PUC_PORT_TYPE_UART | PUC_PORT_UART_Z8530;
 		dd.ports[i].bar = 0;
-		dd.ports[i].offset = 0x2 * i;
+		dd.ports[i].offset = 4 * i;
 		dd.ports[i].serialfreq = 0;
 		dd.ports[i].flags = PUC_FLAGS_MEMORY;
 	}


More information about the p4-projects mailing list