Author: imp
Date: Sat Mar 20 03:39:35 2010
New Revision: 205354
URL: http://svn.freebsd.org/changeset/base/205354

Log:
  Add support for the Samsung S3C2xx0 family of ARM SoCs written by
  Andrew Turner.  The kernel supports the LN2410SBC evaluation board,
  and likely others.  These parts (or similar ones) are in some open
  hardware designs for phones.
  
  Submitted by: Andrew Turner

Added:
  head/sys/arm/conf/LN2410SBC   (contents, props changed)
  head/sys/arm/s3c2xx0/
  head/sys/arm/s3c2xx0/board_ln2410sbc.c   (contents, props changed)
  head/sys/arm/s3c2xx0/files.s3c2xx0   (contents, props changed)
  head/sys/arm/s3c2xx0/s3c2410reg.h   (contents, props changed)
  head/sys/arm/s3c2xx0/s3c2410var.h   (contents, props changed)
  head/sys/arm/s3c2xx0/s3c2440reg.h   (contents, props changed)
  head/sys/arm/s3c2xx0/s3c24x0.c   (contents, props changed)
  head/sys/arm/s3c2xx0/s3c24x0_clk.c   (contents, props changed)
  head/sys/arm/s3c2xx0/s3c24x0_machdep.c   (contents, props changed)
  head/sys/arm/s3c2xx0/s3c24x0reg.h   (contents, props changed)
  head/sys/arm/s3c2xx0/s3c24x0var.h   (contents, props changed)
  head/sys/arm/s3c2xx0/s3c2xx0_space.c   (contents, props changed)
  head/sys/arm/s3c2xx0/s3c2xx0board.h   (contents, props changed)
  head/sys/arm/s3c2xx0/s3c2xx0reg.h   (contents, props changed)
  head/sys/arm/s3c2xx0/s3c2xx0var.h   (contents, props changed)
  head/sys/arm/s3c2xx0/std.ln2410sbc   (contents, props changed)
  head/sys/arm/s3c2xx0/std.s3c2410   (contents, props changed)
  head/sys/arm/s3c2xx0/uart_bus_s3c2410.c   (contents, props changed)
  head/sys/arm/s3c2xx0/uart_cpu_s3c2410.c   (contents, props changed)
  head/sys/arm/s3c2xx0/uart_dev_s3c2410.c   (contents, props changed)
  head/sys/arm/s3c2xx0/uart_dev_s3c2410.h   (contents, props changed)
  head/sys/dev/usb/controller/ohci_s3c24x0.c   (contents, props changed)

Added: head/sys/arm/conf/LN2410SBC
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ head/sys/arm/conf/LN2410SBC Sat Mar 20 03:39:35 2010        (r205354)
@@ -0,0 +1,87 @@
+# LN2410SBC -- Custom kernel configuration for the LN2410SBC
+#
+# For more information on this file, please read the handbook section on
+# Kernel Configuration Files:
+#
+#    
http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
+#
+# The handbook is also available locally in /usr/share/doc/handbook
+# if you've installed the doc distribution, otherwise always see the
+# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
+# latest information.
+#
+# An exhaustive list of options and more detailed explanations of the
+# device lines is also present in the ../../conf/NOTES and NOTES files. 
+# If you are in doubt as to the purpose or necessity of a line, check first 
+# in NOTES.
+#
+# $FreeBSD$
+
+machine                arm
+ident          LN2410SBC
+
+include        "../s3c2xx0/std.ln2410sbc"
+#To statically compile in device wiring instead of /boot/device.hints
+#hints         "GENERIC.hints"         #Default places to look for devices.
+makeoptions    MODULES_OVERRIDE=""
+
+device         board_ln2410sbc
+
+makeoptions    DEBUG=-g                #Build kernel with gdb(1) debug symbols
+options        HZ=100
+options        DDB
+options        KDB
+
+options        SCHED_4BSD              #4BSD scheduler
+options        INET                    #InterNETworking
+#options       INET6                   #IPv6 communications protocols
+options        FFS                     #Berkeley Fast Filesystem
+#options       SOFTUPDATES             #Enable FFS soft updates support
+#options       UFS_ACL                 #Support for access control lists
+#options       UFS_DIRHASH             #Improve performance on big directories
+#options       MD_ROOT                 #MD is a potential root device
+#options       MD_ROOT_SIZE=4096       # 4MB ram disk
+options                ROOTDEVNAME=\"ufs:da0s1\"
+
+#options       BOOTP
+#options       BOOTP_NFSROOT   # NFS mount root filesystem using BOOTP info
+#options       NFSCLIENT               #Network File System client
+#options       NFS_ROOT                #NFS usable as root device
+
+options        PSEUDOFS                #Pseudo-filesystem framework
+#options       SCSI_DELAY=5000         #Delay (in ms) before probing SCSI
+options        KTRACE                  #ktrace(1) support
+options        SYSVSHM                 #SYSV-style shared memory
+options        SYSVMSG                 #SYSV-style message queues
+options        SYSVSEM                 #SYSV-style semaphores
+options        _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
+
+options        MUTEX_NOINLINE
+options        RWLOCK_NOINLINE
+options        SX_NOINLINE
+
+options        NO_FFS_SNAPSHOT
+options        NO_SWAPPING
+device         random
+device         pty
+
+device         loop
+device         ether
+device         bpf
+
+device         uart
+
+# Debugging for use in -current
+options        INVARIANTS              #Enable calls of extra sanity checking
+options        INVARIANT_SUPPORT       #Extra sanity checks of internal 
structures, required by INVARIANTS
+options        WITNESS                 #Enable checks to detect deadlocks and 
cycles
+options        WITNESS_SKIPSPIN        #Don't run witness on spinlocks for 
speed
+
+device         md
+
+device         usb
+device         ohci
+device         umass
+device         scbus           # SCSI bus (required for da)
+device         da              # Direct Access (disks)
+

Added: head/sys/arm/s3c2xx0/board_ln2410sbc.c
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ head/sys/arm/s3c2xx0/board_ln2410sbc.c      Sat Mar 20 03:39:35 2010        
(r205354)
@@ -0,0 +1,45 @@
+/*
+ * Copyright (C) 2009 Andrew Turner
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ *
+ */
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+#include <sys/param.h>
+#include <sys/systm.h>
+
+#include <arm/s3c2xx0/s3c2410reg.h>
+#include <arm/s3c2xx0/s3c2xx0board.h>
+
+extern vm_offset_t s3c2410_uart_vaddr;
+
+long
+board_init(void)
+{
+       s3c2410_uart_vaddr = S3C24X0_UART_BASE(0);
+
+       return (64 * 1024 * 1024);
+}
+

Added: head/sys/arm/s3c2xx0/files.s3c2xx0
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ head/sys/arm/s3c2xx0/files.s3c2xx0  Sat Mar 20 03:39:35 2010        
(r205354)
@@ -0,0 +1,13 @@
+# $FreeBSD$
+arm/arm/cpufunc_asm_arm9.S     standard
+arm/arm/irq_dispatch.S         standard
+arm/s3c2xx0/board_ln2410sbc.c  optional        board_ln2410sbc
+arm/s3c2xx0/s3c24x0_machdep.c  standard
+arm/s3c2xx0/s3c24x0.c          standard
+arm/s3c2xx0/s3c2xx0_space.c    standard
+arm/s3c2xx0/s3c24x0_clk.c      standard
+arm/s3c2xx0/uart_bus_s3c2410.c optional        uart
+arm/s3c2xx0/uart_cpu_s3c2410.c optional        uart
+arm/s3c2xx0/uart_dev_s3c2410.c optional        uart
+
+dev/usb/controller/ohci_s3c24x0.c      optional        ohci

Added: head/sys/arm/s3c2xx0/s3c2410reg.h
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ head/sys/arm/s3c2xx0/s3c2410reg.h   Sat Mar 20 03:39:35 2010        
(r205354)
@@ -0,0 +1,96 @@
+/* $NetBSD: s3c2410reg.h,v 1.6 2004/02/12 03:52:46 bsh Exp $ */
+
+/*-
+ * Copyright (c) 2003, 2004  Genetec corporation.  All rights reserved.
+ * Written by Hiroyuki Bessho for Genetec corporation.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ * 3. The name of Genetec corporation may not be used to endorse
+ *    or promote products derived from this software without specific prior
+ *    written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY GENETEC CORP. ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+ * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL GENETEC CORP.
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGE.
+ *
+ * $FreeBSD$
+ */
+
+
+/*
+ * Samsung S3C2410X processor is ARM920T based integrated CPU
+ *
+ * Reference:
+ *  S3C2410X User's Manual 
+ */
+#ifndef _ARM_S3C2XX0_S3C2410REG_H_
+#define        _ARM_S3C2XX0_S3C2410REG_H_
+
+/* common definitions for S3C2410 and S3C2440 */
+#include <arm/s3c2xx0/s3c24x0reg.h>
+
+/*
+ * Memory Map
+ */
+#define        S3C2410_BANK_SIZE       0x08000000
+#define        S3C2410_BANK_START(n)   (S3C2410_BANK_SIZE*(n))
+#define        S3C2410_SDRAM_START     S3C2410_BANK_START(6)
+
+
+/* interrupt control */
+#define        S3C2410_SUBIRQ_MAX      (S3C24X0_SUBIRQ_MIN+10)
+
+/* Clock control */
+/* CLKMAN_CLKCON */
+#define         S3C2410_CLKCON_SM      (1<<0)  /* 1=transition to SPECIAL mode 
*/
+/* CLKMAN_CLKDIVN */
+#define         S3C2410_CLKDIVN_HDIVN  (1<<1)  /* hclk=fclk/2 */
+
+/* NAND Flash controller */
+#define        S3C2410_NANDFC_SIZE     0x18
+/* NANDFC_NFCONF */
+#define         S3C2410_NFCONF_ENABLE  (1<<15) /* NAND controller enabled */
+#define         S3C2410_NFCONF_ECC     (1<<12) /* Initialize ECC 
decoder/encoder */
+#define         S3C2410_NFCONF_FCE     (1<<11) /* Flash chip enabled */
+#define         S3C2410_NFCONF_TACLS   (7<<8)  /* CLE and ALE duration */
+#define         S3C2410_NFCONF_TWRPH0  (7<<4)  /* TWRPH0 duration */
+#define         S3C2410_NFCONF_TWRPH1  (7<<0)  /* TWRPH1 duration */
+#define        S3C2410_NANDFC_NFCMD    0x04    /* command */
+#define        S3C2410_NANDFC_NFADDR   0x08    /* address */
+#define        S3C2410_NANDFC_NFDATA   0x0c    /* data */
+#define        S3C2410_NANDFC_NFSTAT   0x10    /* operation status */
+#define        S3C2410_NANDFC_NFECC    0x14    /* ecc */
+
+/* MMC/SD */
+/* SDI_CON */
+#define  S3C2410_CON_FIFO_RESET                (1<<1)
+
+/* GPIO */
+#define        S3C2410_GPIO_SIZE       0xb4
+
+/* SD interface */
+#define        S3C2410_SDI_SIZE        0x44
+#define  DCON_STOP             (1<<14) /* Force the transfer to stop */
+#define S3C2410_SDI_DAT                0x3c
+#define S3C2410_SDI_IMSK       0x40 /* Interrupt mask */
+#define  S3C2410_SDI_IMASK_ALL 0x3ffdf
+
+/* ADC */
+#define        S3C2410_ADC_SIZE        0x14
+
+#endif /* _ARM_S3C2XX0_S3C2410REG_H_ */

Added: head/sys/arm/s3c2xx0/s3c2410var.h
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ head/sys/arm/s3c2xx0/s3c2410var.h   Sat Mar 20 03:39:35 2010        
(r205354)
@@ -0,0 +1,49 @@
+/* $NetBSD: s3c2410var.h,v 1.2 2003/08/29 12:57:50 bsh Exp $ */
+
+/*-
+ * Copyright (c) 2003  Genetec corporation.  All rights reserved.
+ * Written by Hiroyuki Bessho for Genetec corporation.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ * 3. The name of Genetec corporation may not be used to endorse
+ *    or promote products derived from this software without specific prior
+ *    written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY GENETEC CORP. ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+ * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL GENETEC CORP.
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGE.
+ *
+ * $FreeBSD$
+ */
+
+#ifndef _ARM_S3C2410VAR_H_
+#define _ARM_S3C2410VAR_H_
+
+#include <arm/s3c2xx0/s3c24x0var.h>
+
+int    s3c2410_sscom_cnattach(bus_space_tag_t, int, int, int, tcflag_t);
+int    s3c2410_sscom_kgdb_attach(bus_space_tag_t, int, int, int, tcflag_t);
+void   s3c2410_intr_init(struct s3c24x0_softc *);
+void   s3c2410_softreset(void);
+
+void   s3c2410_mask_subinterrupts(int);
+void   s3c2410_unmask_subinterrupts(int);
+
+void   *s3c2410_extint_establish(int, int, int, int (*)(void *), void *);
+void   s3c2410_setup_extint(int, int);
+#endif /* _ARM_S3C2410VAR_H_ */

Added: head/sys/arm/s3c2xx0/s3c2440reg.h
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ head/sys/arm/s3c2xx0/s3c2440reg.h   Sat Mar 20 03:39:35 2010        
(r205354)
@@ -0,0 +1,109 @@
+/*-
+ * Copyright (C) 2009 Andrew Turner
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ *
+ * $FreeBSD$
+ */
+
+/*
+ * Samsung S3C2440X processor is ARM920T based integrated CPU
+ *
+ * Reference:
+ *  S3C2440A/S3C2442B User's Manual 
+ */
+#ifndef _ARM_S3C2XX0_S3C2440REG_H_
+#define        _ARM_S3C2XX0_S3C2440REG_H_
+
+/* common definitions for S3C2410 and S3C2440 */
+#include <arm/s3c2xx0/s3c24x0reg.h>
+
+/*
+ * Memory Map
+ */
+#define        S3C2440_BANK_SIZE       0x08000000
+#define        S3C2440_BANK_START(n)   (S3C2410_BANK_SIZE*(n))
+#define        S3C2440_SDRAM_START     S3C2410_BANK_START(6)
+
+
+/* interrupt control */
+#define        S3C2440_SUBIRQ_MAX      (S3C24X0_SUBIRQ_MIN+10)
+
+/* Clock control */
+/* CLKMAN_CLKCON */
+#define         S3C2440_CLKCON_STOP    (1<<0)  /* 1=transition to STOP mode */
+/* CLKMAN_CLKDIVN */
+#define         S3C2440_CLKDIVN_HDIVN  (3<<1)  /* hclk */
+#define S3C2440_CLKMAN_CAMDIVN 0x18
+#define  S3C2440_CAMDIVN_HCLK4_HALF    (1<<9)
+#define  S3C2440_CAMDIVN_HCLK3_HALF    (1<<8)
+
+/* NAND Flash controller */
+#define S3C2440_NANDFC_SIZE    0x40
+
+#define S3C2440_NANDFC_NFCONT  0x04
+#define  S3C2440_NFCONT_LOCK_TIGHT     (1<<13) /* Lock part of the NAND */
+#define  S3C2440_NFCONT_SOFT_LOCK      (1<<12) /* Soft lock part of the NAND */
+#define  S3C2440_NFCONT_ILLEGAL_ACC_INT        (1<<10) /* Illegal access 
interrupt */
+#define  S3C2440_NFCONT_RNB_INT                (1<<9) /* RnB transition 
interrupt */
+#define  S3C2440_NFCONT_RNB_TRANS_MODE (1<<8) /* RnB transition mode */
+#define  S3C2440_NFCONT_SPARE_ECC_LOCK (1<<6) /* Lock spare ECC generation */
+#define  S3C2440_NFCONT_MAIN_ECC_LOCK  (1<<5) /* Lock main ECC generation */
+#define  S3C2440_NFCONT_INIT_ECC       (1<<4) /* Init ECC encoder/decoder */
+#define  S3C2440_NFCONT_NCE            (1<<1) /* NAND Chip select */
+#define  S3C2440_NFCONT_ENABLE         (1<<0) /* Enable the controller */
+#define S3C2440_NANDFC_NFCMMD  0x08
+#define S3C2440_NANDFC_NFADDR  0x0c
+#define S3C2440_NANDFC_NFDATA  0x10
+#define S3C2440_NANDFC_NFSTAT  0x20
+
+/* MMC/SD */
+/* SDI_CON */
+#define  S3C2440_CON_RESET             (1<<8)
+#define  S3C2440_CON_CLOCK_TYPE                (1<<5)
+/* SDI_FSTA */
+#define  S3c2440_FSTA_RESET            (1<<16)
+#define  S3C2440_FSTA_FAIL_ERROR_MSK   (3<<14)
+#define  S3C2440_FSTA_FAIL_NONE                (0<<14)
+#define  S3C2440_FSTA_FAIL_FIFO                (1<<14)
+#define  S3C2440_FSTA_FAIL_LAST_TRANS  (2<<14)
+
+/* GPIO */
+#define        S3C2440_GPIO_SIZE       0xd0
+
+/* SD interface */
+#define        S3C2410_SDI_SIZE        0x44
+#define  DCON_START            (1<<14) /* Start the data transfer */
+#define S3C2440_SDI_IMSK       0x3c /* Interrupt mask */
+#define  S3C2440_SDI_IMASK_ALL 0x3C7C0
+#define S3C2440_SDI_DAT                0x40
+
+/* ADC */
+#define         ADCTSC_UD_SEN          (1<<8)
+#define        S3C2440_ADC_SIZE        0x18
+
+/* UART */
+#define  S3C2440_UFSTAT_TXCOUNT        (0x3f << 8)
+#define  S3C2440_UFSTAT_RXCOUNT        (0x3f << 0)
+
+#endif /* _ARM_S3C2XX0_S3C2440REG_H_ */

Added: head/sys/arm/s3c2xx0/s3c24x0.c
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ head/sys/arm/s3c2xx0/s3c24x0.c      Sat Mar 20 03:39:35 2010        
(r205354)
@@ -0,0 +1,648 @@
+/*     $NetBSD: s3c2410.c,v 1.4 2003/08/27 03:46:05 bsh Exp $ */
+
+/*
+ * Copyright (c) 2003  Genetec corporation.  All rights reserved.
+ * Written by Hiroyuki Bessho for Genetec corporation.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ * 3. The name of Genetec corporation may not be used to endorse
+ *    or promote products derived from this software without specific prior
+ *    written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY GENETEC CORP. ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+ * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL GENETEC CORP.
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
+#include <sys/param.h>
+#include <sys/systm.h>
+#include <sys/kernel.h>
+#include <sys/reboot.h>
+#include <sys/malloc.h>
+#include <sys/module.h>
+#include <sys/bus.h>
+
+#include <vm/vm.h>
+#include <vm/pmap.h>
+
+#include <machine/cpu.h>
+#include <machine/bus.h>
+
+#include <machine/cpufunc.h>
+#include <machine/intr.h>
+#include <arm/s3c2xx0/s3c2410reg.h>
+#include <arm/s3c2xx0/s3c2440reg.h>
+#include <arm/s3c2xx0/s3c24x0var.h>
+#include <sys/rman.h>
+
+#define S3C2XX0_XTAL_CLK 12000000
+
+#define IPL_LEVELS 13
+u_int irqmasks[IPL_LEVELS];
+
+static struct {
+       uint32_t        idcode;
+       const char      *name;
+       s3c2xx0_cpu     cpu;
+} s3c2x0_cpu_id[] = {
+       { CHIPID_S3C2410A, "S3C2410A", CPU_S3C2410 },
+       { CHIPID_S3C2440A, "S3C2440A", CPU_S3C2440 },
+       { CHIPID_S3C2442B, "S3C2442B", CPU_S3C2440 },
+
+       { 0, NULL }
+};
+
+static struct {
+       const char *name;
+       int prio;
+       int unit;
+       struct {
+               int type;
+               u_long start;
+               u_long count;
+       } res[2];
+} s3c24x0_children[] = {
+       { "timer", 0, -1, { { 0 }, } },
+       { "uart", 1, 0, {
+               { SYS_RES_IRQ, S3C24X0_INT_UART0, 1 },
+               { SYS_RES_IOPORT, S3C24X0_UART_BASE(0),
+                 S3C24X0_UART_BASE(1) - S3C24X0_UART_BASE(0) },
+       } },
+       { "uart", 1, 1, {
+               { SYS_RES_IRQ, S3C24X0_INT_UART1, 1 },
+               { SYS_RES_IOPORT, S3C24X0_UART_BASE(1),
+                 S3C24X0_UART_BASE(2) - S3C24X0_UART_BASE(1) },
+       } },
+       { "uart", 1, 2, {
+               { SYS_RES_IRQ, S3C24X0_INT_UART2, 1 },
+               { SYS_RES_IOPORT, S3C24X0_UART_BASE(2),
+                 S3C24X0_UART_BASE(3) - S3C24X0_UART_BASE(2) },
+       } },
+       { "ohci", 0, -1, {
+               { SYS_RES_IRQ, S3C24X0_INT_USBH, 0 },
+               { SYS_RES_IOPORT, S3C24X0_USBHC_BASE, S3C24X0_USBHC_SIZE },
+       } },
+       { NULL },
+};
+
+
+/* prototypes */
+static device_t s3c24x0_add_child(device_t, int, const char *, int);
+
+static int     s3c24x0_probe(device_t);
+static int     s3c24x0_attach(device_t);
+static void    s3c24x0_identify(driver_t *, device_t);
+static int     s3c24x0_setup_intr(device_t, device_t, struct resource *, int,
+        driver_filter_t *, driver_intr_t *, void *, void **);
+static int     s3c24x0_teardown_intr(device_t, device_t, struct resource *,
+       void *);
+static struct resource *s3c24x0_alloc_resource(device_t, device_t, int, int *,
+        u_long, u_long, u_long, u_int);
+static int s3c24x0_activate_resource(device_t, device_t, int, int,
+        struct resource *);
+static int s3c24x0_release_resource(device_t, device_t, int, int,
+        struct resource *);
+static struct resource_list *s3c24x0_get_resource_list(device_t, device_t);
+
+static void s3c24x0_identify_cpu(device_t);
+
+static device_method_t s3c24x0_methods[] = {
+       DEVMETHOD(device_probe, s3c24x0_probe),
+       DEVMETHOD(device_attach, s3c24x0_attach),
+       DEVMETHOD(device_identify, s3c24x0_identify),
+       DEVMETHOD(bus_setup_intr, s3c24x0_setup_intr),
+       DEVMETHOD(bus_teardown_intr, s3c24x0_teardown_intr),
+       DEVMETHOD(bus_alloc_resource, s3c24x0_alloc_resource),
+       DEVMETHOD(bus_activate_resource, s3c24x0_activate_resource),
+       DEVMETHOD(bus_release_resource, s3c24x0_release_resource),
+       DEVMETHOD(bus_get_resource_list,s3c24x0_get_resource_list),
+       DEVMETHOD(bus_set_resource,     bus_generic_rl_set_resource),
+       DEVMETHOD(bus_get_resource,     bus_generic_rl_get_resource),
+       {0, 0},
+};
+
+static driver_t s3c24x0_driver = {
+       "s3c24x0",
+       s3c24x0_methods,
+       sizeof(struct s3c24x0_softc),
+};
+static devclass_t s3c24x0_devclass;
+
+DRIVER_MODULE(s3c24x0, nexus, s3c24x0_driver, s3c24x0_devclass, 0, 0);
+
+struct s3c2xx0_softc *s3c2xx0_softc = NULL;
+
+static device_t
+s3c24x0_add_child(device_t bus, int prio, const char *name, int unit)
+{
+       device_t child;
+       struct s3c2xx0_ivar *ivar;
+
+       child = device_add_child_ordered(bus, prio, name, unit);
+       if (child == NULL)
+               return (NULL);
+
+       ivar = malloc(sizeof(*ivar), M_DEVBUF, M_NOWAIT | M_ZERO);
+       if (ivar == NULL) {
+               device_delete_child(bus, child);
+               printf("Can't add alloc ivar\n");
+               return (NULL);
+       }
+       device_set_ivars(child, ivar);
+       resource_list_init(&ivar->resources);
+
+       return (child);
+}
+
+static int
+s3c24x0_setup_intr(device_t dev, device_t child,
+        struct resource *ires,  int flags, driver_filter_t *filt,
+       driver_intr_t *intr, void *arg, void **cookiep)
+{
+       int error, irq;
+
+       error = BUS_SETUP_INTR(device_get_parent(dev), child, ires, flags, filt,
+           intr, arg, cookiep);
+       if (error != 0)
+               return (error);
+
+       for (irq = rman_get_start(ires); irq <= rman_get_end(ires); irq++) {
+               arm_unmask_irq(irq);
+       }
+       return (0);
+}
+
+static int
+s3c24x0_teardown_intr(device_t dev, device_t child, struct resource *res,
+       void *cookie)
+{
+       return (BUS_TEARDOWN_INTR(device_get_parent(dev), child, res, cookie));
+}
+
+static struct resource *
+s3c24x0_alloc_resource(device_t bus, device_t child, int type, int *rid,
+        u_long start, u_long end, u_long count, u_int flags)
+{
+       struct resource_list_entry *rle;
+       struct s3c2xx0_ivar *ivar = device_get_ivars(child);
+       struct resource_list *rl = &ivar->resources;
+       struct resource *res = NULL;
+
+       if (device_get_parent(child) != bus)
+               return (BUS_ALLOC_RESOURCE(device_get_parent(bus), child,
+                   type, rid, start, end, count, flags));
+
+       rle = resource_list_find(rl, type, *rid);
+       if (rle != NULL) {
+               /* There is a resource list. Use it */
+               if (rle->res)
+                       panic("Resource rid %d type %d already in use", *rid,
+                           type);
+               if (start == 0UL && end == ~0UL) {
+                       start = rle->start;
+                       count = ulmax(count, rle->count);
+                       end = ulmax(rle->end, start + count - 1);
+               }
+               /*
+                * When allocating an irq with children irq's really
+                * allocate the children as it is those we are interested
+                * in receiving, not the parent.
+                */
+               if (type == SYS_RES_IRQ && start == end) {
+                       switch (start) {
+                       case S3C24X0_INT_ADCTC:
+                               start = S3C24X0_INT_TC;
+                               end = S3C24X0_INT_ADC;
+                               break;
+#ifdef S3C2440_INT_CAM
+                       case S3C2440_INT_CAM:
+                               start = S3C2440_INT_CAM_C;
+                               end = S3C2440_INT_CAM_P;
+                               break;
+#endif
+                       default:
+                               break;
+                       }
+                       count = end - start + 1;
+               }
+       }
+
+       switch (type) {
+       case SYS_RES_IRQ:
+               res = rman_reserve_resource(
+                   &s3c2xx0_softc->s3c2xx0_irq_rman, start, end,
+                   count, flags, child);
+               break;
+
+       case SYS_RES_IOPORT:
+       case SYS_RES_MEMORY:
+               res = rman_reserve_resource(
+                   &s3c2xx0_softc->s3c2xx0_mem_rman,
+                   start, end, count, flags, child);
+               rman_set_bustag(res, &s3c2xx0_bs_tag);
+               rman_set_bushandle(res, start);
+               break;
+       }
+
+       if (res != NULL) {
+               rman_set_rid(res, *rid);
+               if (rle != NULL) {
+                       rle->res = res;
+                       rle->start = rman_get_start(res);
+                       rle->end = rman_get_end(res);
+                       rle->count = count;
+               }
+       }
+
+       return (res);
+}
+
+static int
+s3c24x0_activate_resource(device_t bus, device_t child, int type, int rid,
+        struct resource *r)
+{
+       return (rman_activate_resource(r));
+}
+
+static int
+s3c24x0_release_resource(device_t bus, device_t child, int type, int rid,
+        struct resource *r)
+{
+       struct s3c2xx0_ivar *ivar = device_get_ivars(child);
+       struct resource_list *rl = &ivar->resources;
+       struct resource_list_entry *rle;
+
+       if (rl == NULL)
+               return (EINVAL);
+
+       rle = resource_list_find(rl, type, rid);
+       if (rle == NULL)
+               return (EINVAL);
+
+       rman_release_resource(r);
+       rle->res = NULL;
+
+       return 0;
+}
+
+static struct resource_list *
+s3c24x0_get_resource_list(device_t dev, device_t child)
+{
+       struct s3c2xx0_ivar *ivar;
+
+       ivar = device_get_ivars(child);
+       return (&(ivar->resources));
+}
+
+void
+s3c24x0_identify(driver_t *driver, device_t parent)
+{
+       
+       BUS_ADD_CHILD(parent, 0, "s3c24x0", 0);
+}
+
+int
+s3c24x0_probe(device_t dev)
+{
+       return 0;
+}
+
+int
+s3c24x0_attach(device_t dev)
+{
+       struct s3c24x0_softc *sc = device_get_softc(dev);
+       bus_space_tag_t iot;
+       device_t child;
+       unsigned int i, j;
+
+       s3c2xx0_softc = &(sc->sc_sx);
+       sc->sc_sx.sc_iot = iot = &s3c2xx0_bs_tag;
+
+       if (bus_space_map(iot,
+               S3C24X0_INTCTL_PA_BASE, S3C24X0_INTCTL_SIZE,
+               BUS_SPACE_MAP_LINEAR, &sc->sc_sx.sc_intctl_ioh))
+               panic("Cannot map the interrupt controller");
+
+       /* Map the GPIO registers */
+       if (bus_space_map(iot, S3C24X0_GPIO_PA_BASE, S3C2410_GPIO_SIZE,
+               0, &sc->sc_sx.sc_gpio_ioh))
+               panic("Cannot map the GPIO");
+       /* Clock manager */
+       if (bus_space_map(iot, S3C24X0_CLKMAN_PA_BASE,
+               S3C24X0_CLKMAN_SIZE, 0, &sc->sc_sx.sc_clkman_ioh))
+               panic("cannot map the clock");
+
+       if (bus_space_map(iot, S3C24X0_TIMER_PA_BASE,
+               S3C24X0_TIMER_SIZE, 0, &sc->sc_timer_ioh))
+               panic("cannot map the TIMER");
+
+       if (bus_space_map(iot, S3C24X0_USBHC_PA_BASE,
+               S3C24X0_USBHC_SIZE, 0, &sc->sc_sx.sc_ohci_ioh))
+               panic("cannot map the USB Host");
+
+       if (bus_space_map(iot, S3C24X0_WDT_PA_BASE,
+               S3C24X0_WDT_SIZE, 0, &sc->sc_sx.sc_wdt_ioh))
+               panic("cannot map the watchdog timer");
+
+       /*
+        * Identify the CPU
+        */
+       s3c24x0_identify_cpu(dev);
+
+       /* calculate current clock frequency */
+       s3c24x0_clock_freq(&sc->sc_sx);
+       device_printf(dev, "fclk %d MHz hclk %d MHz pclk %d MHz\n",
+              sc->sc_sx.sc_fclk / 1000000, sc->sc_sx.sc_hclk / 1000000,
+              sc->sc_sx.sc_pclk / 1000000);
+
+       /*
+        * Attach children devices
+        */
+       s3c2xx0_softc->s3c2xx0_irq_rman.rm_type = RMAN_ARRAY;
+       s3c2xx0_softc->s3c2xx0_irq_rman.rm_descr = "S3C24X0 IRQs";
+       s3c2xx0_softc->s3c2xx0_mem_rman.rm_type = RMAN_ARRAY;
+       s3c2xx0_softc->s3c2xx0_mem_rman.rm_descr = "S3C24X0 Memory";
+       if (rman_init(&s3c2xx0_softc->s3c2xx0_irq_rman) != 0 ||
+           rman_manage_region(&s3c2xx0_softc->s3c2xx0_irq_rman, 0,
+           S3C2410_SUBIRQ_MAX) != 0)
+               panic("s3c24x0_attach: failed to set up IRQ rman");
+       /* Manage the registor memory space */
+       if ((rman_init(&s3c2xx0_softc->s3c2xx0_mem_rman) != 0) ||
+           (rman_manage_region(&s3c2xx0_softc->s3c2xx0_mem_rman,
+             S3C24X0_DEV_VA_OFFSET,
+             S3C24X0_DEV_VA_OFFSET + S3C24X0_DEV_VA_SIZE) != 0))
+               panic("s3c24x0_attach: failed to set up register rman");
+
+       for (i = 0; s3c24x0_children[i].name != NULL; i++) {
+               child = s3c24x0_add_child(dev, s3c24x0_children[i].prio,
+                   s3c24x0_children[i].name, s3c24x0_children[i].unit);
+               for (j = 0; j < sizeof(s3c24x0_children[i].res) /
+                    sizeof(s3c24x0_children[i].res[0]) &&
+                    s3c24x0_children[i].res[j].type != 0; j++) {
+                       bus_set_resource(child,
+                           s3c24x0_children[i].res[j].type, 0,
+                           s3c24x0_children[i].res[j].start,
+                           s3c24x0_children[i].res[j].count);
+               }
+       }
+
+       bus_generic_probe(dev);
+       bus_generic_attach(dev);
+
+       return (0);
+}
+
+static void
+s3c24x0_identify_cpu(device_t dev)
+{
+       struct s3c24x0_softc *sc = device_get_softc(dev);
+       uint32_t idcode;
+       int i;
+
+       idcode = bus_space_read_4(sc->sc_sx.sc_iot, sc->sc_sx.sc_gpio_ioh,
+           GPIO_GSTATUS1);
+
+       for (i = 0; s3c2x0_cpu_id[i].name != NULL; i++) {
+               if (s3c2x0_cpu_id[i].idcode == idcode)
+                       break;
+       }
+       if (s3c2x0_cpu_id[i].name == NULL)
+               panic("Unknown CPU detected ((Chip ID: %#X)", idcode);
+       device_printf(dev, "Found %s CPU (Chip ID: %#X)\n",
+           s3c2x0_cpu_id[i].name, idcode);
+       sc->sc_sx.sc_cpu = s3c2x0_cpu_id[i].cpu;
+}
+
+/*
+ * fill sc_pclk, sc_hclk, sc_fclk from values of clock controller register.
+ *
+ * s3c24{1,4}0_clock_freq2() is meant to be called from kernel startup 
routines.
+ * s3c24x0_clock_freq() is for after kernel initialization is done.
+ *
+ * Because they can be called before bus_space is available we need to use
+ * volatile pointers rather than bus_space_read.
+ */
+void
+s3c2410_clock_freq2(vm_offset_t clkman_base, int *fclk, int *hclk, int *pclk)
+{
+       uint32_t pllcon, divn;
+       unsigned int mdiv, pdiv, sdiv;
+       unsigned int f, h, p;
+
+       pllcon = *(volatile uint32_t *)(clkman_base + CLKMAN_MPLLCON);
+       divn = *(volatile uint32_t *)(clkman_base + CLKMAN_CLKDIVN);
+
+       mdiv = (pllcon & PLLCON_MDIV_MASK) >> PLLCON_MDIV_SHIFT;
+       pdiv = (pllcon & PLLCON_PDIV_MASK) >> PLLCON_PDIV_SHIFT;
+       sdiv = (pllcon & PLLCON_SDIV_MASK) >> PLLCON_SDIV_SHIFT;
+
+       f = ((mdiv + 8) * S3C2XX0_XTAL_CLK) / ((pdiv + 2) * (1 << sdiv));
+       h = f;
+       if (divn & S3C2410_CLKDIVN_HDIVN)
+               h /= 2;
+       p = h;
+       if (divn & CLKDIVN_PDIVN)
+               p /= 2;
+
+       if (fclk) *fclk = f;
+       if (hclk) *hclk = h;
+       if (pclk) *pclk = p;
+}
+
+void
+s3c2440_clock_freq2(vm_offset_t clkman_base, int *fclk, int *hclk, int *pclk)
+{
+       uint32_t pllcon, divn, camdivn;
+       unsigned int mdiv, pdiv, sdiv;
+       unsigned int f, h, p;
+
+       pllcon = *(volatile uint32_t *)(clkman_base + CLKMAN_MPLLCON);
+       divn = *(volatile uint32_t *)(clkman_base + CLKMAN_CLKDIVN);
+       camdivn = *(volatile uint32_t *)(clkman_base + S3C2440_CLKMAN_CAMDIVN);
+
+       mdiv = (pllcon & PLLCON_MDIV_MASK) >> PLLCON_MDIV_SHIFT;
+       pdiv = (pllcon & PLLCON_PDIV_MASK) >> PLLCON_PDIV_SHIFT;
+       sdiv = (pllcon & PLLCON_SDIV_MASK) >> PLLCON_SDIV_SHIFT;
+
+       f = (2 * (mdiv + 8) * S3C2XX0_XTAL_CLK) / ((pdiv + 2) * (1 << sdiv));
+       h = f;
+       switch((divn >> 1) & 3) {
+       case 0:
+               break;
+       case 1:
+               h /= 2;
+               break;
+       case 2:
+               if ((camdivn & S3C2440_CAMDIVN_HCLK4_HALF) ==
+                   S3C2440_CAMDIVN_HCLK4_HALF)
+                       h /= 8;
+               else
+                       h /= 4;
+               break;
+       case 3:
+               if ((camdivn & S3C2440_CAMDIVN_HCLK3_HALF) ==
+                   S3C2440_CAMDIVN_HCLK3_HALF)
+                       h /= 6;
+               else
+                       h /= 3;
+               break;
+       }
+       p = h;
+       if (divn & CLKDIVN_PDIVN)
+               p /= 2;
+
+       if (fclk) *fclk = f;
+       if (hclk) *hclk = h;
+       if (pclk) *pclk = p;
+}
+
+void
+s3c24x0_clock_freq(struct s3c2xx0_softc *sc)
+{
+       vm_offset_t va;
+       
+       va = sc->sc_clkman_ioh;
+       switch(sc->sc_cpu) {
+       case CPU_S3C2410:
+               s3c2410_clock_freq2(va, &sc->sc_fclk, &sc->sc_hclk,
+                   &sc->sc_pclk);
+               break;
+       case CPU_S3C2440:
+               s3c2440_clock_freq2(va, &sc->sc_fclk, &sc->sc_hclk,
+                   &sc->sc_pclk);
+               break;
+       }
+}
+
+void
+cpu_reset(void)
+{
+       (void) disable_interrupts(I32_bit|F32_bit);
+
+       bus_space_write_4(&s3c2xx0_bs_tag, s3c2xx0_softc->sc_wdt_ioh, WDT_WTCON,
+           WTCON_ENABLE | WTCON_CLKSEL_16 | WTCON_ENRST);
+       for(;;);
+}
+
+void
+s3c24x0_sleep(int mode __unused)
+{
+       int reg;
+
+       reg = bus_space_read_4(&s3c2xx0_bs_tag, s3c2xx0_softc->sc_clkman_ioh,
+           CLKMAN_CLKCON);
+       bus_space_write_4(&s3c2xx0_bs_tag, s3c2xx0_softc->sc_clkman_ioh,
+           CLKMAN_CLKCON, reg | CLKCON_IDLE);
+}
+
+
+int
+arm_get_next_irq(int last __unused)
+{
+       uint32_t intpnd;
+       int irq, subirq;
+
+       if ((irq = bus_space_read_4(&s3c2xx0_bs_tag,
+           s3c2xx0_softc->sc_intctl_ioh, INTCTL_INTOFFSET)) != 0) {
+
+               /* Clear the pending bit */
+               intpnd = bus_space_read_4(&s3c2xx0_bs_tag,
+                   s3c2xx0_softc->sc_intctl_ioh, INTCTL_INTPND);
+               bus_space_write_4(&s3c2xx0_bs_tag, s3c2xx0_softc->sc_intctl_ioh,
+                   INTCTL_SRCPND, intpnd);
+               bus_space_write_4(&s3c2xx0_bs_tag, s3c2xx0_softc->sc_intctl_ioh,
+                   INTCTL_INTPND, intpnd);
+
+               switch (irq) {
+               case S3C24X0_INT_ADCTC:
+               case S3C24X0_INT_UART0:
+               case S3C24X0_INT_UART1:
+               case S3C24X0_INT_UART2:
+                       /* Find the sub IRQ */
+                       subirq = 0x7ff;

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to