The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/dev/sr/if_srregs.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*-
    2  * Copyright (c) 1995 - 2001 John Hay.
    3  * Copyright (c) 1996 SDL Communications, Inc.
    4  * All rights reserved.
    5  *
    6  * Redistribution and use in source and binary forms, with or without
    7  * modification, are permitted provided that the following conditions
    8  * are met:
    9  * 1. Redistributions of source code must retain the above copyright
   10  *    notice, this list of conditions and the following disclaimer.
   11  * 2. Redistributions in binary form must reproduce the above copyright
   12  *    notice, this list of conditions and the following disclaimer in the
   13  *    documentation and/or other materials provided with the distribution.
   14  * 3. Neither the name of the author nor the names of any co-contributors
   15  *    may be used to endorse or promote products derived from this software
   16  *    without specific prior written permission.
   17  *
   18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
   19  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   21  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
   22  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   23  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   24  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   25  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   27  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   28  * SUCH DAMAGE.
   29  *
   30  * $FreeBSD$
   31  */
   32 #ifndef _IF_SRREGS_H_
   33 #define _IF_SRREGS_H_
   34 
   35 #define NCHAN                   2    /* A HD64570 chip have 2 channels */
   36 
   37 #define SR_BUF_SIZ              512
   38 #define SR_TX_BLOCKS            2    /* Sepperate sets of tx buffers */
   39 
   40 #define SR_CRD_N2               1
   41 #define SR_CRD_N2PCI            2
   42 
   43 /*
   44  * RISCom/N2 ISA card.
   45  */
   46 #define SRC_IO_SIZ              0x10 /* Actually a lie. It uses a lot more. */
   47 #define SRC_WIN_SIZ             0x00004000
   48 #define SRC_WIN_MSK             (SRC_WIN_SIZ - 1)
   49 #define SRC_WIN_SHFT            14
   50 
   51 #define SR_FLAGS_NCHAN_MSK      0x0000000F
   52 #define SR_FLAGS_0_CLK_MSK      0x00000030
   53 #define SR_FLAGS_0_EXT_CLK      0x00000000 /* External RX clock shared by TX */
   54 #define SR_FLAGS_0_EXT_SEP_CLK  0x00000010 /* Sepperate external clocks */
   55 #define SR_FLAGS_0_INT_CLK      0x00000020 /* Internal clock */
   56 #define SR_FLAGS_1_CLK_MSK      0x000000C0
   57 #define SR_FLAGS_1_EXT_CLK      0x00000000 /* External RX clock shared by TX */
   58 #define SR_FLAGS_1_EXT_SEP_CLK  0x00000040 /* Sepperate external clocks */
   59 #define SR_FLAGS_1_INT_CLK      0x00000080 /* Internal clock */
   60 
   61 #define SR_FLAGS_CLK_SHFT       4
   62 #define SR_FLAGS_CLK_CHAN_SHFT  2
   63 #define SR_FLAGS_EXT_CLK        0x00000000 /* External RX clock shared by TX */
   64 #define SR_FLAGS_EXT_SEP_CLK    0x00000001 /* Sepperate external clocks */
   65 #define SR_FLAGS_INT_CLK        0x00000002 /* Internal clock */
   66 
   67 #define SR_PCR                  0x00 /* RW, PC Control Register */
   68 #define SR_BAR                  0x02 /* RW, Base Address Register */
   69 #define SR_PSR                  0x04 /* RW, Page Scan Register */
   70 #define SR_MCR                  0x06 /* RW, Modem Control Register */
   71 
   72 #define SR_PCR_SCARUN           0x01 /* !Reset */
   73 #define SR_PCR_EN_VPM           0x02 /* Running above 1M */
   74 #define SR_PCR_MEM_WIN          0x04 /* Open memory window */
   75 #define SR_PCR_ISA16            0x08 /* 16 bit ISA mode */
   76 #define SR_PCR_16M_SEL          0xF0 /* A20-A23 Addresses */
   77 
   78 #define SR_PSR_PG_SEL           0x1F /* Page 0 - 31 select */
   79 #define SR_PG_MSK               0x1F
   80 #define SR_PSR_WIN_SIZ          0x60 /* Window size select */
   81 #define SR_PSR_WIN_16K          0x00
   82 #define SR_PSR_WIN_32K          0x20
   83 #define SR_PSR_WIN_64K          0x40
   84 #define SR_PSR_WIN_128K         0x60
   85 #define SR_PSR_EN_SCA_DMA       0x80 /* Enable the SCA DMA */
   86 
   87 #define SR_MCR_DTR0             0x01 /* Deactivate DTR0 */
   88 #define SR_MCR_DTR1             0x02 /* Deactivate DTR1 */
   89 #define SR_MCR_DSR0             0x04 /* DSR0 Status */
   90 #define SR_MCR_DSR1             0x08 /* DSR1 Status */
   91 #define SR_MCR_TE0              0x10 /* Enable RS422 TXD */
   92 #define SR_MCR_TE1              0x20 /* Enable RS422 TXD */
   93 #define SR_MCR_ETC0             0x40 /* Enable Ext Clock out */
   94 #define SR_MCR_ETC1             0x80 /* Enable Ext Clock out */
   95 
   96 /*
   97  * RISCom/N2 PCI card.
   98  */
   99 #define SR_FECR                 0x0200 /* Front End Control Register */
  100 #define SR_FECR_ETC0            0x0001 /* Enable Ext Clock out */
  101 #define SR_FECR_ETC1            0x0002 /* Enable Ext Clock out */
  102 #define SR_FECR_TE0             0x0004 /* Enable RS422 TXD */
  103 #define SR_FECR_TE1             0x0008 /* Enable RS422 TXD */
  104 #define SR_FECR_GPO0            0x0010 /* General Purpose Output */
  105 #define SR_FECR_GPO1            0x0020 /* General Purpose Output */
  106 #define SR_FECR_DTR0            0x0040 /* 0 for active, 1 for inactive */
  107 #define SR_FECR_DTR1            0x0080 /* 0 for active, 1 for inactive */
  108 #define SR_FECR_DSR0            0x0100 /* DSR0 Status */
  109 #define SR_FECR_ID0             0x0E00 /* ID of channel 0 */
  110 #define SR_FECR_DSR1            0x1000 /* DSR1 Status */
  111 #define SR_FECR_ID1             0xE000 /* ID of channel 1 */
  112 
  113 #define SR_FE_ID_V35            0x00   /* V.35 Interface */
  114 #define SR_FE_ID_RS232          0x01   /* RS232 Interface */
  115 #define SR_FE_ID_TEST           0x02   /* Test Board */
  116 #define SR_FE_ID_RS422          0x03   /* RS422 Interface */
  117 #define SR_FE_ID_HSSI           0x05   /* HSSI Interface */
  118 #define SR_FE_ID_X21            0x06   /* X.21 Interface */
  119 #define SR_FE_ID_NONE           0x07   /* No card present */
  120 #define SR_FE_ID0_SHFT             9
  121 #define SR_FE_ID1_SHFT            13
  122 
  123 /*
  124  * These macros are used to hide the difference between the way the
  125  * ISA N2 cards and the PCI N2 cards access the Hitachi 64570 SCA.
  126  */
  127 #define SRC_GET8(hc,off)        (*hc->src_get8)(hc,(uintptr_t)&off)
  128 #define SRC_GET16(hc,off)       (*hc->src_get16)(hc,(uintptr_t)&off)
  129 #define SRC_PUT8(hc,off,d)      (*hc->src_put8)(hc,(uintptr_t)&off,d)
  130 #define SRC_PUT16(hc,off,d)     (*hc->src_put16)(hc,(uintptr_t)&off,d)
  131 
  132 /*
  133  * These macros enable/disable the DPRAM and select the correct
  134  * DPRAM page.
  135  */
  136 #define SRC_GET_WIN(addr)       ((addr >> SRC_WIN_SHFT) & SR_PG_MSK)
  137 
  138 #define SRC_SET_ON(hc)          sr_outb(hc, SR_PCR,                          \
  139                                         SR_PCR_MEM_WIN | sr_inb(hc, SR_PCR))
  140 #define SRC_SET_MEM(hc,win)     sr_outb(hc, SR_PSR, SRC_GET_WIN(win) |       \
  141                                         (sr_inb(hc, SR_PSR) & ~SR_PG_MSK))
  142 #define SRC_SET_OFF(hc)         sr_outb(hc, SR_PCR,                          \
  143                                         ~SR_PCR_MEM_WIN & sr_inb(hc, SR_PCR))
  144 
  145 /*
  146  * Define the hardware (card information) structure needed to keep
  147  * track of the device itself... There is only one per card.
  148  */
  149 struct sr_hardc {
  150         struct  sr_softc *sc;           /* software channels */
  151         int     cunit;                  /* card w/in system */
  152 
  153         u_short iobase;                 /* I/O Base Address */
  154         int     cardtype;
  155         int     numports;               /* # of ports on cd */
  156         int     mempages;
  157         u_int   memsize;                /* DPRAM size: bytes */
  158         u_int   winmsk;
  159         vm_offset_t     mem_pstart;     /* start of buffer */
  160         caddr_t mem_start;              /* start of DP RAM */
  161         caddr_t mem_end;                /* end of DP RAM */
  162 
  163         sca_regs        *sca;           /* register array */
  164 
  165         bus_space_tag_t bt_ioport;
  166         bus_space_tag_t bt_memory;
  167         bus_space_handle_t bh_ioport;
  168         bus_space_handle_t bh_memory;
  169         int rid_ioport;
  170         int rid_memory;
  171         int rid_plx_memory;
  172         int rid_irq;
  173         struct resource* res_ioport;    /* resource for port range */
  174         struct resource* res_memory;    /* resource for mem range */
  175         struct resource* res_plx_memory;
  176         struct resource* res_irq;       /* resource for irq range */
  177         void    *intr_cookie;
  178 
  179         /*
  180          * We vectorize the following functions to allow re-use between the
  181          * ISA card's needs and those of the PCI card.
  182          */
  183         void    (*src_put8)(struct sr_hardc *hc, u_int off, u_int val);
  184         void    (*src_put16)(struct sr_hardc *hc, u_int off, u_int val);
  185         u_int   (*src_get8)(struct sr_hardc *hc, u_int off);
  186         u_int   (*src_get16)(struct sr_hardc *hc, u_int off);
  187 };
  188 
  189 extern devclass_t sr_devclass;
  190 
  191 int sr_allocate_ioport(device_t device, int rid, u_long size);
  192 int sr_allocate_irq(device_t device, int rid, u_long size);
  193 int sr_allocate_memory(device_t device, int rid, u_long size);
  194 int sr_allocate_plx_memory(device_t device, int rid, u_long size);
  195 int sr_deallocate_resources(device_t device);
  196 int sr_attach(device_t device);
  197 int sr_detach(device_t device);
  198 
  199 #define sr_inb(hc, port) \
  200         bus_space_read_1((hc)->bt_ioport, (hc)->bh_ioport, (port))
  201 
  202 #define sr_outb(hc, port, value) \
  203         bus_space_write_1((hc)->bt_ioport, (hc)->bh_ioport, (port), (value))
  204 
  205 #define sr_read_fecr(hc) \
  206         bus_space_read_4((hc)->bt_memory, (hc)->bh_memory, SR_FECR)
  207 
  208 #define sr_write_fecr(hc, value) \
  209         bus_space_write_4((hc)->bt_memory, (hc)->bh_memory, SR_FECR, (value))
  210 
  211 #endif /* _IF_SRREGS_H_ */

Cache object: 1aed9b26c7f859a97fff21bbf54d8934


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.