From owner-cvs-src-old@FreeBSD.ORG Sun Apr 3 14:40:17 2011 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 7DA84106579E for ; Sun, 3 Apr 2011 14:40:17 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9705E8FC17 for ; Sun, 3 Apr 2011 14:40:14 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id p33EeEFA017465 for ; Sun, 3 Apr 2011 14:40:14 GMT (envelope-from adrian@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p33EeElG017464 for cvs-src-old@freebsd.org; Sun, 3 Apr 2011 14:40:14 GMT (envelope-from adrian@repoman.freebsd.org) Message-Id: <201104031440.p33EeElG017464@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to adrian@repoman.freebsd.org using -f From: Adrian Chadd Date: Sun, 3 Apr 2011 14:39:55 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/mips/conf RT305X RT305X.hints src/sys/mips/rt305x files.rt305x obio.c obiovar.h rt305x_dotg.c rt305x_gpio.c rt305x_gpio.h rt305x_gpiovar.h rt305x_ic.c rt305x_icvar.h rt305x_machdep.c rt305x_sysctl.c rt305x_sysctlvar.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: Sun, 03 Apr 2011 14:40:17 -0000 adrian 2011-04-03 14:39:55 UTC FreeBSD src repository Added files: sys/mips/conf RT305X RT305X.hints sys/mips/rt305x files.rt305x obio.c obiovar.h rt305x_dotg.c rt305x_gpio.c rt305x_gpio.h rt305x_gpiovar.h rt305x_ic.c rt305x_icvar.h rt305x_machdep.c rt305x_sysctl.c rt305x_sysctlvar.h rt305xreg.h rt_swreg.h std.rt305x uart_bus_rt305x.c uart_cpu_rt305x.c uart_dev_rt305x.c uart_dev_rt305x.h Log: SVN rev 220297 on 2011-04-03 14:39:55Z by adrian Import the initial CPU support for the MIPS RALink RT305x SoC. This is a MIPS4KC CPU with various embedded peripherals, including wireless and ethernet support. This commit includes the platform, UART, ethernet MAC and GPIO support. The interrupt-driven GPIO code is disabled for now pending GPIO changes from the submitter. Submitted by: Aleksandr Rybalko Revision Changes Path 1.1 +134 -0 src/sys/mips/conf/RT305X (new) 1.1 +136 -0 src/sys/mips/conf/RT305X.hints (new) 1.1 +13 -0 src/sys/mips/rt305x/files.rt305x (new) 1.1 +627 -0 src/sys/mips/rt305x/obio.c (new) 1.1 +58 -0 src/sys/mips/rt305x/obiovar.h (new) 1.1 +247 -0 src/sys/mips/rt305x/rt305x_dotg.c (new) 1.1 +619 -0 src/sys/mips/rt305x/rt305x_gpio.c (new) 1.1 +111 -0 src/sys/mips/rt305x/rt305x_gpio.h (new) 1.1 +48 -0 src/sys/mips/rt305x/rt305x_gpiovar.h (new) 1.1 +141 -0 src/sys/mips/rt305x/rt305x_ic.c (new) 1.1 +42 -0 src/sys/mips/rt305x/rt305x_icvar.h (new) 1.1 +217 -0 src/sys/mips/rt305x/rt305x_machdep.c (new) 1.1 +240 -0 src/sys/mips/rt305x/rt305x_sysctl.c (new) 1.1 +45 -0 src/sys/mips/rt305x/rt305x_sysctlvar.h (new) 1.1 +368 -0 src/sys/mips/rt305x/rt305xreg.h (new) 1.1 +160 -0 src/sys/mips/rt305x/rt_swreg.h (new) 1.1 +8 -0 src/sys/mips/rt305x/std.rt305x (new) 1.1 +102 -0 src/sys/mips/rt305x/uart_bus_rt305x.c (new) 1.1 +82 -0 src/sys/mips/rt305x/uart_cpu_rt305x.c (new) 1.1 +507 -0 src/sys/mips/rt305x/uart_dev_rt305x.c (new) 1.1 +126 -0 src/sys/mips/rt305x/uart_dev_rt305x.h (new)