From owner-cvs-src-old@FreeBSD.ORG Sat Jan 9 18:02:54 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 10C401065670 for ; Sat, 9 Jan 2010 18:02:54 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EFEB28FC14 for ; Sat, 9 Jan 2010 18:02:53 +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 o09I2rRV098496 for ; Sat, 9 Jan 2010 18:02:53 GMT (envelope-from imp@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o09I2r6O098495 for cvs-src-old@freebsd.org; Sat, 9 Jan 2010 18:02:53 GMT (envelope-from imp@repoman.freebsd.org) Message-Id: <201001091802.o09I2r6O098495@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to imp@repoman.freebsd.org using -f From: Warner Losh Date: Sat, 9 Jan 2010 18:02:31 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/mips/atheros apb.c apbvar.h ar71xx_bus_space_reversed.c ar71xx_bus_space_reversed.h ar71xx_ehci.c ar71xx_machdep.c ar71xx_ohci.c ar71xx_pci.c ar71xx_pci_bus_space.c ar71xx_pci_bus_space.h ar71xx_spi.c ar71xx_wdog.c ar71xxreg.h ... 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, 09 Jan 2010 18:02:54 -0000 imp 2010-01-09 18:02:31 UTC FreeBSD src repository Added files: sys/mips/atheros apb.c apbvar.h ar71xx_bus_space_reversed.c ar71xx_bus_space_reversed.h ar71xx_ehci.c ar71xx_machdep.c ar71xx_ohci.c ar71xx_pci.c ar71xx_pci_bus_space.c ar71xx_pci_bus_space.h ar71xx_spi.c ar71xx_wdog.c ar71xxreg.h files.ar71xx if_arge.c if_argevar.h uart_bus_ar71xx.c uart_cpu_ar71xx.c Log: SVN rev 201906 on 2010-01-09 18:02:31Z by imp Merge from projects/mips to head by hand: Merge support files for the Atheros AR71xx (and soon AR9xxx) processors, except files from sys/conf and sys/mips/conf. This work was done primarily by Olecksandr Tymoshenko and works on the RouterStation and RouterStation PRO. Other AR71xx-based boards have been reported as working as well (RouterBoard, for example). Revision Changes Path 1.1 +462 -0 src/sys/mips/atheros/apb.c (new) 1.1 +50 -0 src/sys/mips/atheros/apbvar.h (new) 1.1 +181 -0 src/sys/mips/atheros/ar71xx_bus_space_reversed.c (new) 1.1 +33 -0 src/sys/mips/atheros/ar71xx_bus_space_reversed.h (new) 1.1 +288 -0 src/sys/mips/atheros/ar71xx_ehci.c (new) 1.1 +262 -0 src/sys/mips/atheros/ar71xx_machdep.c (new) 1.1 +215 -0 src/sys/mips/atheros/ar71xx_ohci.c (new) 1.1 +559 -0 src/sys/mips/atheros/ar71xx_pci.c (new) 1.1 +198 -0 src/sys/mips/atheros/ar71xx_pci_bus_space.c (new) 1.1 +33 -0 src/sys/mips/atheros/ar71xx_pci_bus_space.h (new) 1.1 +228 -0 src/sys/mips/atheros/ar71xx_spi.c (new) 1.1 +118 -0 src/sys/mips/atheros/ar71xx_wdog.c (new) 1.1 +468 -0 src/sys/mips/atheros/ar71xxreg.h (new) 1.1 +16 -0 src/sys/mips/atheros/files.ar71xx (new) 1.1 +1811 -0 src/sys/mips/atheros/if_arge.c (new) 1.1 +157 -0 src/sys/mips/atheros/if_argevar.h (new) 1.1 +88 -0 src/sys/mips/atheros/uart_bus_ar71xx.c (new) 1.1 +75 -0 src/sys/mips/atheros/uart_cpu_ar71xx.c (new)