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/fb/creatorreg.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) 2000 David S. Miller (davem@redhat.com)
    3  *
    4  * Permission is hereby granted, free of charge, to any person obtaining a copy
    5  * of this software and associated documentation files (the "Software"), to deal
    6  * in the Software without restriction, including without limitation the rights
    7  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    8  * copies of the Software, and to permit persons to whom the Software is
    9  * furnished to do so, subject to the following conditions:
   10  *
   11  * The above copyright notice and this permission notice shall be included in
   12  * all copies or substantial portions of the Software.
   13  *
   14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
   15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
   16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
   17  * DAVID MILLER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
   18  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
   19  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
   20  *
   21  *      from: XFree86: ffb_dac.h,v 1.1 2000/05/23 04:47:44 dawes Exp
   22  */
   23 /*-
   24  * Copyright (c) 2003 Jake Burkholder.
   25  * All rights reserved.
   26  *
   27  * Redistribution and use in source and binary forms, with or without
   28  * modification, are permitted provided that the following conditions
   29  * are met:
   30  * 1. Redistributions of source code must retain the above copyright
   31  *    notice, this list of conditions and the following disclaimer.
   32  * 2. Redistributions in binary form must reproduce the above copyright
   33  *    notice, this list of conditions and the following disclaimer in the
   34  *    documentation and/or other materials provided with the distribution.
   35  *
   36  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
   37  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   38  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   39  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
   40  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   41  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   42  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   43  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   44  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   45  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   46  * SUCH DAMAGE.
   47  *
   48  * $FreeBSD: releng/8.1/sys/dev/fb/creatorreg.h 166059 2007-01-16 21:08:22Z marius $
   49  */
   50 
   51 #ifndef _DEV_FB_CREATORREG_H_
   52 #define _DEV_FB_CREATORREG_H_
   53 
   54 #define FFB_NREG                24
   55 
   56 #define FFB_PROM                0
   57 #define FFB_DAC                 1
   58 #define FFB_FBC                 2
   59 #define FFB_DFB8R               3
   60 #define FFB_DFB8G               4
   61 #define FFB_DFB8B               5
   62 #define FFB_DFB8X               6
   63 #define FFB_DFB24               7
   64 #define FFB_DFB32               8
   65 #define FFB_SFB8R               9
   66 #define FFB_SFB8G               10
   67 #define FFB_SFB8B               11
   68 #define FFB_SFB8X               12
   69 #define FFB_SFB32               13
   70 #define FFB_SFB64               14
   71 #define FFB_DFB422A             15
   72 
   73 #define FFB_DAC_TYPE            0x0
   74 #define FFB_DAC_VALUE           0x4
   75 #define FFB_DAC_TYPE2           0x8
   76 #define FFB_DAC_VALUE2          0xc
   77 
   78 /* FFB_DAC_TYPE configuration and palette register addresses */
   79 #define FFB_DAC_CFG_UCTRL       0x1001          /* User Control */
   80 #define FFB_DAC_CFG_TGEN        0x6000          /* Timing Generator Control */
   81 #define FFB_DAC_CFG_DID         0x8000          /* Device Identification */
   82 
   83 /* FFB_DAC_CFG_UCTRL register */
   84 #define FFB_DAC_UCTRL_IPDISAB   0x0001          /* Input Pullup Resistor Dis. */
   85 #define FFB_DAC_UCTRL_ABLANK    0x0002          /* Asynchronous Blank */
   86 #define FFB_DAC_UCTRL_DBENAB    0x0004          /* Double-Buffer Enable */
   87 #define FFB_DAC_UCTRL_OVENAB    0x0008          /* Overlay Enable */
   88 #define FFB_DAC_UCTRL_WMODE     0x0030          /* Window Mode */
   89 #define FFB_DAC_UCTRL_WM_COMB   0x0000          /* Window Mode Combined */
   90 #define FFB_DAC_UCTRL_WM_S4     0x0010          /* Window Mode Separate 4 */
   91 #define FFB_DAC_UCTRL_WM_S8     0x0020          /* Window Mode Separate 8 */
   92 #define FFB_DAC_UCTRL_WM_RESV   0x0030          /* Window Mode Reserved */
   93 #define FFB_DAC_UCTRL_MANREV    0x0f00          /* Manufacturing Revision */
   94 
   95 /* FFB_DAC_CFG_TGEN register */
   96 #define FFB_DAC_CFG_TGEN_VIDE   0x01            /* Video Enable */
   97 #define FFB_DAC_CFG_TGEN_TGE    0x02            /* Timing Generator Enable */
   98 #define FFB_DAC_CFG_TGEN_HSD    0x04            /* HSYNC* Disable */
   99 #define FFB_DAC_CFG_TGEN_VSD    0x08            /* VSYNC* Disable */
  100 #define FFB_DAC_CFG_TGEN_EQD    0x10            /* Equalization Disable */
  101 #define FFB_DAC_CFG_TGEN_MM     0x20            /* 0 = Slave, 1 = Master */
  102 #define FFB_DAC_CFG_TGEN_IM     0x40            /* 1 = Interlaced Mode */
  103 
  104 /* FFB_DAC_CFG_DID register */
  105 #define FFB_DAC_CFG_DID_ONE     0x00000001      /* Always Set */
  106 #define FFB_DAC_CFG_DID_MANUF   0x00000ffe      /* DAC Manufacturer ID */
  107 #define FFB_DAC_CFG_DID_PNUM    0x0ffff000      /* DAC Part Number */
  108 #define FFB_DAC_CFG_DID_REV     0xf0000000      /* DAC Revision */
  109 
  110 /* FFB_DAC_TYPE2 cursor register addresses */
  111 #define FFB_DAC_CUR_BITMAP_P0   0x0             /* Plane 0 Cursor Bitmap */
  112 #define FFB_DAC_CUR_BITMAP_P1   0x80            /* Plane 1 Cursor Bitmap */
  113 #define FFB_DAC_CUR_CTRL        0x100           /* Cursor Control */
  114 #define FFB_DAC_CUR_COLOR0      0x101           /* Cursor Color 0 */
  115 #define FFB_DAC_CUR_COLOR1      0x102           /* Cursor Color 1 (bg) */
  116 #define FFB_DAC_CUR_COLOR2      0x103           /* Cursor Color 2 (fg) */
  117 #define FFB_DAC_CUR_POS         0x104           /* Active Cursor Position */
  118 
  119 /* FFB_DAC_CUR_CTRL register (might be inverted on PAC1 DACs) */
  120 #define FFB_DAC_CUR_CTRL_P0     0x1             /* Plane0 Display Disable */
  121 #define FFB_DAC_CUR_CTRL_P1     0x2             /* Plane1 Display Disable */
  122 
  123 #define FFB_FBC_BY              0x60
  124 #define FFB_FBC_BX              0x64
  125 #define FFB_FBC_DY              0x68
  126 #define FFB_FBC_DX              0x6c
  127 #define FFB_FBC_BH              0x70
  128 #define FFB_FBC_BW              0x74
  129 #define FFB_FBC_PPC             0x200           /* Pixel Processor Control */
  130 #define FFB_FBC_FG              0x208           /* Foreground */
  131 #define FFB_FBC_BG              0x20c           /* Background */
  132 #define FFB_FBC_FBC             0x254           /* Frame Buffer Control */
  133 #define FFB_FBC_ROP             0x258           /* Raster Operation */
  134 #define FFB_FBC_PMASK           0x290           /* Pixel Mask */
  135 #define FFB_FBC_DRAWOP          0x300           /* Draw Operation */
  136 #define FFB_FBC_FONTXY          0x314           /* Font X/Y */
  137 #define FFB_FBC_FONTW           0x318           /* Font Width */
  138 #define FFB_FBC_FONTINC         0x31c           /* Font Increment */
  139 #define FFB_FBC_FONT            0x320           /* Font Data */
  140 #define FFB_FBC_UCSR            0x900           /* User Control & Status */
  141 
  142 #define FBC_PPC_VCE_DIS         0x00001000
  143 #define FBC_PPC_APE_DIS         0x00000800
  144 #define FBC_PPC_TBE_OPAQUE      0x00000200
  145 #define FBC_PPC_CS_CONST        0x00000003
  146 
  147 #define FFB_FBC_WB_A            0x20000000
  148 #define FFB_FBC_RB_A            0x00004000
  149 #define FFB_FBC_SB_BOTH         0x00003000
  150 #define FFB_FBC_XE_OFF          0x00000040
  151 #define FFB_FBC_RGBE_MASK       0x0000003f
  152 
  153 #define FBC_ROP_NEW             0x83
  154 
  155 #define FBC_DRAWOP_RECTANGLE    0x08
  156 
  157 #define FBC_UCSR_FIFO_OVFL      0x80000000
  158 #define FBC_UCSR_READ_ERR       0x40000000
  159 #define FBC_UCSR_RP_BUSY        0x02000000
  160 #define FBC_UCSR_FB_BUSY        0x01000000
  161 #define FBC_UCSR_FIFO_MASK      0x00000fff
  162 
  163 #define FFB_VIRT_SFB8R          0x00000000
  164 #define FFB_VIRT_SFB8G          0x00400000
  165 #define FFB_VIRT_SFB8B          0x00800000
  166 #define FFB_VIRT_SFB8X          0x00c00000
  167 #define FFB_VIRT_SFB32          0x01000000
  168 #define FFB_VIRT_SFB64          0x02000000
  169 #define FFB_VIRT_FBC            0x04000000
  170 #define FFB_VIRT_FBC_BM         0x04002000
  171 #define FFB_VIRT_DFB8R          0x04004000
  172 #define FFB_VIRT_DFB8G          0x04404000
  173 #define FFB_VIRT_DFB8B          0x04804000
  174 #define FFB_VIRT_DFB8X          0x04c04000
  175 #define FFB_VIRT_DFB24          0x05004000
  176 #define FFB_VIRT_DFB32          0x06004000
  177 #define FFB_VIRT_DFB422A        0x07004000
  178 #define FFB_VIRT_DFB422AD       0x07804000
  179 #define FFB_VIRT_DFB24B         0x08004000
  180 #define FFB_VIRT_DFB422B        0x09004000
  181 #define FFB_VIRT_DFB422BD       0x09804000
  182 #define FFB_VIRT_SFB16Z         0x0a004000
  183 #define FFB_VIRT_SFB8Z          0x0a404000
  184 #define FFB_VIRT_SFB422         0x0ac04000
  185 #define FFB_VIRT_SFB422D        0x0b404000
  186 #define FFB_VIRT_FBC_KREG       0x0bc04000
  187 #define FFB_VIRT_DAC            0x0bc06000
  188 #define FFB_VIRT_PROM           0x0bc08000
  189 #define FFB_VIRT_EXP            0x0bc18000
  190 
  191 #define FFB_PHYS_SFB8R          0x04000000
  192 #define FFB_PHYS_SFB8G          0x04400000
  193 #define FFB_PHYS_SFB8B          0x04800000
  194 #define FFB_PHYS_SFB8X          0x04c00000
  195 #define FFB_PHYS_SFB32          0x05000000
  196 #define FFB_PHYS_SFB64          0x06000000
  197 #define FFB_PHYS_FBC            0x00600000
  198 #define FFB_PHYS_FBC_BM         0x00600000
  199 #define FFB_PHYS_DFB8R          0x01000000
  200 #define FFB_PHYS_DFB8G          0x01400000
  201 #define FFB_PHYS_DFB8B          0x01800000
  202 #define FFB_PHYS_DFB8X          0x01c00000
  203 #define FFB_PHYS_DFB24          0x02000000
  204 #define FFB_PHYS_DFB32          0x03000000
  205 #define FFB_PHYS_DFB422A        0x09000000
  206 #define FFB_PHYS_DFB422AD       0x09800000
  207 #define FFB_PHYS_DFB24B         0x0a000000
  208 #define FFB_PHYS_DFB422B        0x0b000000
  209 #define FFB_PHYS_DFB422BD       0x0b800000
  210 #define FFB_PHYS_SFB16Z         0x0c800000
  211 #define FFB_PHYS_SFB8Z          0x0c000000
  212 #define FFB_PHYS_SFB422         0x0d000000
  213 #define FFB_PHYS_SFB422D        0x0d800000
  214 #define FFB_PHYS_FBC_KREG       0x00610000
  215 #define FFB_PHYS_DAC            0x00400000
  216 #define FFB_PHYS_PROM           0x00000000
  217 #define FFB_PHYS_EXP            0x00200000
  218 
  219 #define FFB_SIZE_SFB8R          0x00400000
  220 #define FFB_SIZE_SFB8G          0x00400000
  221 #define FFB_SIZE_SFB8B          0x00400000
  222 #define FFB_SIZE_SFB8X          0x00400000
  223 #define FFB_SIZE_SFB32          0x01000000
  224 #define FFB_SIZE_SFB64          0x02000000
  225 #define FFB_SIZE_FBC            0x00002000
  226 #define FFB_SIZE_FBC_BM         0x00002000
  227 #define FFB_SIZE_DFB8R          0x00400000
  228 #define FFB_SIZE_DFB8G          0x00400000
  229 #define FFB_SIZE_DFB8B          0x00400000
  230 #define FFB_SIZE_DFB8X          0x00400000
  231 #define FFB_SIZE_DFB24          0x01000000
  232 #define FFB_SIZE_DFB32          0x01000000
  233 #define FFB_SIZE_DFB422A        0x00800000
  234 #define FFB_SIZE_DFB422AD       0x00800000
  235 #define FFB_SIZE_DFB24B         0x01000000
  236 #define FFB_SIZE_DFB422B        0x00800000
  237 #define FFB_SIZE_DFB422BD       0x00800000
  238 #define FFB_SIZE_SFB16Z         0x00800000
  239 #define FFB_SIZE_SFB8Z          0x00800000
  240 #define FFB_SIZE_SFB422         0x00800000
  241 #define FFB_SIZE_SFB422D        0x00800000
  242 #define FFB_SIZE_FBC_KREG       0x00002000
  243 #define FFB_SIZE_DAC            0x00002000
  244 #define FFB_SIZE_PROM           0x00010000
  245 #define FFB_SIZE_EXP            0x00002000
  246 
  247 #endif /* !_DEV_FB_CREATORREG_H_ */

Cache object: 7a018af585c766a1996951c364c40b48


[ 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.