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/chips/ims332.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  * Mach Operating System
    3  * Copyright (c) 1991,1990,1989 Carnegie Mellon University
    4  * All Rights Reserved.
    5  * 
    6  * Permission to use, copy, modify and distribute this software and its
    7  * documentation is hereby granted, provided that both the copyright
    8  * notice and this permission notice appear in all copies of the
    9  * software, derivative works or modified versions, and any portions
   10  * thereof, and that both notices appear in supporting documentation.
   11  * 
   12  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
   13  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
   14  * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
   15  * 
   16  * Carnegie Mellon requests users of this software to return to
   17  * 
   18  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
   19  *  School of Computer Science
   20  *  Carnegie Mellon University
   21  *  Pittsburgh PA 15213-3890
   22  * 
   23  * any improvements or extensions that they make and grant Carnegie Mellon
   24  * the rights to redistribute these changes.
   25  */
   26 /*
   27  * HISTORY
   28  * $Log:        ims332.h,v $
   29  * Revision 2.3  92/03/05  11:36:51  rpd
   30  *      Got real specs ( thanks Jukki!! ):
   31  *      "IMS G332 colour video controller"
   32  *      1990 Databook, pp 139-163, Inmos Ltd.
   33  *      [92/03/03            af]
   34  * 
   35  * Revision 2.2  92/03/02  18:32:54  rpd
   36  *      Created stub to make things compile.
   37  *      [92/03/02            af]
   38  * 
   39  */
   40 /*
   41  *      File: ims332.h
   42  *      Author: Alessandro Forin, Carnegie Mellon University
   43  *      Date:   1/92
   44  *
   45  *      Defines for the Inmos IMS-G332 Colour video controller
   46  */
   47 
   48 
   49 #ifndef _CHIPS_IMS332_H_
   50 #define _CHIPS_IMS332_H_        1
   51 
   52 /*
   53  * Although the chip is built to be memory-mapped
   54  * it can be programmed for 32 or 64 bit addressing.
   55  * Moreover, the hardware bits have been twisted
   56  * even more on the machine I am writing this for.
   57  * So I'll just define the chip's offsets and leave
   58  * it to the implementation to define the rest.
   59  */
   60 
   61 #define IMS332_REG_BOOT                 0x000   /* boot time config */
   62 
   63 #define IMS332_REG_HALF_SYNCH           0x021   /* datapath registers */
   64 #define IMS332_REG_BACK_PORCH           0x022
   65 #define IMS332_REG_DISPLAY              0x023
   66 #define IMS332_REG_SHORT_DIS            0x024
   67 #define IMS332_REG_BROAD_PULSE          0x025
   68 #define IMS332_REG_V_SYNC               0x026
   69 #define IMS332_REG_V_PRE_EQUALIZE       0x027
   70 #define IMS332_REG_V_POST_EQUALIZE      0x028
   71 #define IMS332_REG_V_BLANK              0x029
   72 #define IMS332_REG_V_DISPLAY            0x02a
   73 #define IMS332_REG_LINE_TIME            0x02b
   74 #define IMS332_REG_LINE_START           0x02c
   75 #define IMS332_REG_MEM_INIT             0x02d
   76 #define IMS332_REG_XFER_DELAY           0x02e
   77 
   78 #define IMS332_REG_COLOR_MASK           0x040   /* color mask register */
   79 
   80 #define IMS332_REG_CSR_A                0x060
   81 
   82 #define IMS332_REG_CSR_B                0x070
   83 
   84 #define IMS332_REG_TOP_SCREEN           0x080   /* top-of-screen offset */
   85 
   86 #define IMS332_REG_CURSOR_LUT_0         0x0a1   /* cursor palette */
   87 #define IMS332_REG_CURSOR_LUT_1         0x0a2
   88 #define IMS332_REG_CURSOR_LUT_2         0x0a3
   89 
   90 #define IMS332_REG_RGB_CKSUM_0          0x0c0   /* test registers */
   91 #define IMS332_REG_RGB_CKSUM_1          0x0c1
   92 #define IMS332_REG_RGB_CKSUM_2          0x0c2
   93 
   94 #define IMS332_REG_CURSOR_LOC           0x0c7   /* cursor location */
   95 
   96 #define IMS332_REG_LUT_BASE             0x100   /* color palette */
   97 #define IMS332_REG_LUT_END              0x1ff
   98 
   99 #define IMS332_REG_CURSOR_RAM           0x200   /* cursor bitmap */
  100 #define IMS332_REG_CURSOR_RAM_END       0x3ff
  101 
  102 /*
  103  * Control register A
  104  */
  105 
  106 #define IMS332_CSR_A_VTG_ENABLE         0x000001        /* vertical timing generator */
  107 #define IMS332_CSR_A_INTERLACED         0x000002        /* screen format */
  108 #define IMS332_CSR_A_CCIR               0x000004        /* default is EIA */
  109 #define IMS332_CSR_A_SLAVE_SYNC         0x000008        /* else from our pll */
  110 #define IMS332_CSR_A_PLAIN_SYNC         0x000010        /* else tesselated */
  111 #define IMS332_CSR_A_SEPARATE_SYNC      0x000020        /* else composite */
  112 #define IMS332_CSR_A_VIDEO_ONLY         0x000040        /* else video+sync */
  113 #define IMS332_CSR_A_BLANK_PEDESTAL     0x000080        /* blank level */
  114 #define IMS332_CSR_A_CBLANK_IS_OUT      0x000100
  115 #define IMS332_CSR_A_CBLANK_NO_DELAY    0x000200
  116 #define IMS332_CSR_A_FORCE_BLANK        0x000400
  117 #define IMS332_CSR_A_BLANK_DISABLE      0x000800
  118 #define IMS332_CSR_A_VRAM_INCREMENT     0x003000
  119 #       define IMS332_VRAM_INC_1        0x000000
  120 #       define IMS332_VRAM_INC_256      0x001000        /* except interlaced->2 */
  121 #       define IMS332_VRAM_INC_512      0x002000
  122 #       define IMS332_VRAM_INC_1024     0x003000
  123 #define IMS332_CSR_A_DMA_DISABLE        0x004000
  124 #define IMS332_CSR_A_SYNC_DELAY_MASK    0x038000        /* 0-7 VTG clk delays */
  125 #define IMS332_CSR_A_PIXEL_INTERLEAVE   0x040000
  126 #define IMS332_CSR_A_DELAYED_SAMPLING   0x080000
  127 #define IMS332_CSR_A_BITS_PER_PIXEL     0x700000
  128 #       define IMS332_BPP_1             0x000000
  129 #       define IMS332_BPP_2             0x100000
  130 #       define IMS332_BPP_4             0x200000
  131 #       define IMS332_BPP_8             0x300000
  132 #       define IMS332_BPP_15            0x400000
  133 #       define IMS332_BPP_16            0x500000
  134 #define IMS332_CSR_A_DISABLE_CURSOR     0x800000
  135 
  136 
  137 /*
  138  * Control register B is mbz
  139  */
  140 
  141 /*
  142  * Boot register
  143  */
  144 
  145 #define IMS332_BOOT_PLL                 0x00001f        /* xPLL, binary */
  146 #define IMS332_BOOT_CLOCK_PLL           0x000020        /* else xternal */
  147 #define IMS332_BOOT_64_BIT_MODE         0x000040        /* else 32 */
  148 #define IMS332_BOOT_xxx                 0xffff80        /* reserved, mbz */
  149 
  150 
  151 #endif  _CHIPS_IMS332_H_

Cache object: 0873b4265f44cf5c607f750a7770ccac


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