From owner-cvs-src@FreeBSD.ORG Thu Sep 23 22:45:37 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6FA8B16A4CE; Thu, 23 Sep 2004 22:45:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47C0E43D46; Thu, 23 Sep 2004 22:45:37 +0000 (GMT) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i8NMjbsN070387; Thu, 23 Sep 2004 22:45:37 GMT (envelope-from cognet@repoman.freebsd.org) Received: (from cognet@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i8NMjbwF070386; Thu, 23 Sep 2004 22:45:37 GMT (envelope-from cognet) Message-Id: <200409232245.i8NMjbwF070386@repoman.freebsd.org> From: Olivier Houchard Date: Thu, 23 Sep 2004 22:45:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/arm/xscale/i80321 files.i80321 files.iq31244 i80321.c i80321_intr.h i80321_mcu.c i80321_pci.c i80321_space.c i80321_timer.c i80321reg.h i80321var.h iq31244_machdep.c iq80321.c... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Sep 2004 22:45:37 -0000 cognet 2004-09-23 22:45:37 UTC FreeBSD src repository Added files: sys/arm/xscale/i80321 files.i80321 files.iq31244 i80321.c i80321_intr.h i80321_mcu.c i80321_pci.c i80321_space.c i80321_timer.c i80321reg.h i80321var.h iq31244_machdep.c iq80321.c iq80321reg.h iq80321var.h obio.c obio_space.c obiovar.h std.i80321 std.iq31244 uart_bus_i80321.c uart_cpu_i80321.c Log: Import partial support for the IQ31244 eval board (i80321 CPU). IQ80321 might work out of the box too, but I have no hardware to test. It works well enough to go multiuser. Network works, SATA does not, as I have no drive to test. Thanks to Intel for sending such a board. Obtained from: NetBSD Revision Changes Path 1.1 +8 -0 src/sys/arm/xscale/i80321/files.i80321 (new) 1.1 +8 -0 src/sys/arm/xscale/i80321/files.iq31244 (new) 1.1 +269 -0 src/sys/arm/xscale/i80321/i80321.c (new) 1.1 +153 -0 src/sys/arm/xscale/i80321/i80321_intr.h (new) 1.1 +90 -0 src/sys/arm/xscale/i80321/i80321_mcu.c (new) 1.1 +457 -0 src/sys/arm/xscale/i80321/i80321_pci.c (new) 1.1 +309 -0 src/sys/arm/xscale/i80321/i80321_space.c (new) 1.1 +394 -0 src/sys/arm/xscale/i80321/i80321_timer.c (new) 1.1 +504 -0 src/sys/arm/xscale/i80321/i80321reg.h (new) 1.1 +122 -0 src/sys/arm/xscale/i80321/i80321var.h (new) 1.1 +460 -0 src/sys/arm/xscale/i80321/iq31244_machdep.c (new) 1.1 +328 -0 src/sys/arm/xscale/i80321/iq80321.c (new) 1.1 +108 -0 src/sys/arm/xscale/i80321/iq80321reg.h (new) 1.1 +53 -0 src/sys/arm/xscale/i80321/iq80321var.h (new) 1.1 +163 -0 src/sys/arm/xscale/i80321/obio.c (new) 1.1 +226 -0 src/sys/arm/xscale/i80321/obio_space.c (new) 1.1 +57 -0 src/sys/arm/xscale/i80321/obiovar.h (new) 1.1 +6 -0 src/sys/arm/xscale/i80321/std.i80321 (new) 1.1 +4 -0 src/sys/arm/xscale/i80321/std.iq31244 (new) 1.1 +77 -0 src/sys/arm/xscale/i80321/uart_bus_i80321.c (new) 1.1 +74 -0 src/sys/arm/xscale/i80321/uart_cpu_i80321.c (new)