From owner-cvs-src-old@FreeBSD.ORG Sat Apr 10 11:52:49 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 891251065674 for ; Sat, 10 Apr 2010 11:52:49 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 75A1F8FC19 for ; Sat, 10 Apr 2010 11:52:49 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o3ABqnI4032165 for ; Sat, 10 Apr 2010 11:52:49 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o3ABqn6S032164 for cvs-src-old@freebsd.org; Sat, 10 Apr 2010 11:52:49 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201004101152.o3ABqn6S032164@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Sat, 10 Apr 2010 11:52:12 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf files.sparc64 src/sys/dev/uart uart.h uart_cpu_sparc64.c src/sys/sparc64/conf GENERIC NOTES src/sys/sparc64/pci sbbc.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Apr 2010 11:52:49 -0000 marius 2010-04-10 11:52:12 UTC FreeBSD src repository Modified files: sys/conf files.sparc64 sys/dev/uart uart.h uart_cpu_sparc64.c sys/sparc64/conf GENERIC NOTES Added files: sys/sparc64/pci sbbc.c Log: SVN rev 206451 on 2010-04-10 11:52:12Z by marius Add sbbc(4), a driver for the BootBus controller found in Serengeti and StarCat systems which provides time-of-day services for both as well as console service for Serengeti, i.e. Sun Fire V1280. While the latter is described with a device type of serial in the OFW device tree, it isn't actually an UART. Nevertheless the console service is handled by uart(4) as this allowed to re-use quite a bit of MD and MI code. Actually, this idea is stolen from Linux which interfaces the sun4v hypervisor console with the Linux counterpart of uart(4). Revision Changes Path 1.112 +1 -0 src/sys/conf/files.sparc64 1.10 +1 -0 src/sys/dev/uart/uart.h 1.25 +11 -0 src/sys/dev/uart/uart_cpu_sparc64.c 1.168 +3 -0 src/sys/sparc64/conf/GENERIC 1.35 +1 -0 src/sys/sparc64/conf/NOTES 1.1 +1074 -0 src/sys/sparc64/pci/sbbc.c (new)