TC(4)           NetBSD Programmer's Manual (HP300 Architecture)          TC(4)

NNAAMMEE
     ttcc - HP98544 98550 ``Topcat'' and ``Catseye'' device interface

DDEESSCCRRIIPPTTIIOONN
     This driver is for the HP98544, 98545 and 98547 ``Topcat'' and HP98548,
     98549, and 98550 ``Catseye'' display cards.  This driver merely checks
     for the existence of the device and does minimal set up, as it is expect-
     ed the applications will initialize the device to their requirements.
     The Topcat and Catseye are nearly identical in common usage and only the
     Topcat will be referred to from now on.

     The Topcat display cards are not user configurable.  If one is present on
     a system, it will always have a frame buffer address of 0x200000 and a
     control register address of 0x560000.  These are the HP series 300 ITE
     (Internal Terminal Emulator) defaults.  The device can also be used as a
     graphics output device.

     The ioctl(2) calls supported by the BSD UNIX system for the Topcat are:

     GRFIOCGINFO  Get Graphics Info

                  Get info about device, setting the entries in the _g_r_f_i_n_f_o
                  structure, as defined in <_h_p_d_e_v_/_g_r_f_i_o_c_t_l_._h>. For the 98544
                  or 98549, the number of planes should be 1, as they are
                  monochrome devices.  The number of planes for a 98545 is 4,
                  translating to 15 colors, excluding black.  The 98547 and
                  98548 cards have 6 planes, yielding 63 colors and black.
                  The 98550 has 8 planes, yielding 255 colors and black.  The
                  displayed frame buffer size for the 98549 and 98550 is 2048
                  x 1024, for the others it is 1024 x 768.

     GRFIOCON     Graphics On

                  Turn graphics on by enabling CRT output.  The screen will
                  come on, displaying whatever is in the frame buffer, using
                  whatever colormap is in place.

     GRFIOCOFF    Graphics Off

                  Turn graphics off by disabling output to the CRT. The frame
                  buffer contents are not affected.

     GRFIOCMAP    Map Device to user space

                  Map in control registers and framebuffer space. Once the de-
                  vice file is mapped, the frame buffer structure is accessi-
                  ble.  The frame buffer structure describing Topcat/Catseye
                  devices is defined in <_h_p_d_e_v_/_g_r_f___t_c_r_e_g_._h>.

     For further information about the use of ioctl see the man page.

EEXXAAMMPPLLEE
     A small example of opening, mapping and using the device is given below.
     For more examples of the details on the behavior of the device, see the
     device dependent source files for the X Window System, in the
     _/_u_s_r_/_s_r_c_/_n_e_w_/_X_/_l_i_b_h_p directory.

     struct tcboxfb *tc;
     u_char *Addr, frame_buffer;
     struct grfinfo gi;
     int disp_fd;

     disp_fd = open("/dev/grf0",1);

     if (ioctl (disp_fd, GRFIOCGINFO, &gi) < 0) return -1;

     (void) ioctl (disp_fd, GRFIOCON, 0);

     Addr = (u_char *) 0;
     if (ioctl (disp_fd, GRFIOCMAP, &Addr) < 0) {
             (void) ioctl (disp_fd, GRFIOCOFF, 0);
             return -1;
     }
     tc = (tcboxfb *) Addr;                          /* Control Registers   */
     frame_buffer = (u_char *) Addr + gi.gd_regsize; /* Frame buffer memory */

FFIILLEESS
     /dev/grf?          BSD UNIX special file
     /dev/crt9837
     /dev/crt98550      HP-UX _s_t_a_r_b_a_s_e special files
     /dev/MAKEDEV.hpux  script for creating HP-UX special files

DDIIAAGGNNOOSSTTIICCSS
     None under BSD UNIX. HP-UX /usr/CE.utilities/Crtadjust programs must be
     used.

EERRRROORRSS
     [ENODEV]  no such device.

     [EBUSY]   Another process has the device open.

     [EINVAL]  Invalid ioctl specification.

SSEEEE AALLSSOO
     ioctl(2),  grf(4)

HHIISSTTOORRYY
     The ttcc driver currently under development.

BSD Experimental               October 19, 1994                              2
