/* $Id: drv_Sample.c 975 2009-01-18 11:16:20Z michael $ * $URL: https://ssl.bulix.org/svn/lcd4linux/trunk/drv_Sample.c $ * * Shuttle SG33G5M VFD lcd4linux driver * * Copyright (C) 2009 Matthieu Crapet * based on the USBLCD driver. * * Shuttle SG33G5M VFD (20x1 character display. Each character cell is 5x8 pixels) * - The display is driven by Princeton Technologies PT6314 VFD controller * - Cypress CY7C63723C (receives USB commands and talk to VFD controller) * * LCD "prococol" : each message has a length of 8 bytes * - 1 nibble: command (0x1, 0x3, 0x7, 0x9, 0xD) * - 0x1 : clear text and icons (len=1) * - 0x7 : icons (len=4) * - 0x9 : text (len=7) * - 0xD : set clock data (len=7) * - 0x3 : display clock (internal feature) (len=1) * - 1 nibble: message length (0-7) * - 7 bytes : message data * * This file is part of LCD4Linux. * * LCD4Linux is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * LCD4Linux is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ /* * * exported fuctions: * * struct DRIVER drv_ShuttleVFD * */ #include "config.h" #include #include #include #include #include #ifdef HAVE_USB_H #include #else #error "ShuttleVFD: libusb required" #endif #include "debug.h" #include "cfg.h" #include "qprintf.h" #include "udelay.h" #include "plugin.h" #include "widget.h" #include "widget_text.h" #include "widget_bar.h" // for DIRECTION #include "drv.h" #include "drv_generic_text.h" #include "drv_generic_gpio.h" /* * Some hardware definitions */ // VFD USB properties #define SHUTTLE_VFD_VENDOR_ID 0x051C #define SHUTTLE_VFD_PRODUCT_ID1 0x0003 #define SHUTTLE_VFD_PRODUCT_ID2 0x0005 // IR-receiver included #define SHUTTLE_VFD_INTERFACE_NUM 1 // VFD physical dimensions #define SHUTTLE_VFD_WIDTH 20 #define SHUTTLE_VFD_HEIGHT 1 // VFD USB control message #define SHUTTLE_VFD_PACKET_SIZE 8 #define SHUTTLE_VFD_DATA_SIZE (SHUTTLE_VFD_PACKET_SIZE-1) #define SHUTTLE_VFD_SUCCESS_SLEEP_USEC 25600 /* Global static data */ static char Name[] = "ShuttleVFD"; static usb_dev_handle *lcd; static unsigned char buffer[SHUTTLE_VFD_PACKET_SIZE]; /* Issues with the display module: * - Can't set cursor position. Must save full buffer here. * - Can't get icons status (on or off). Must save status here. * - Clear command also clear text AND icons. */ static unsigned char fb[SHUTTLE_VFD_WIDTH * SHUTTLE_VFD_HEIGHT]; static unsigned icons; /****************************************/ /*** hardware dependant functions ***/ /****************************************/ /* look for device on USB bus */ static int drv_ShuttleVFD_open(void) { struct usb_bus *bus; struct usb_device *dev; int vendor_id = SHUTTLE_VFD_VENDOR_ID; int interface = SHUTTLE_VFD_INTERFACE_NUM; lcd = NULL; usb_init(); usb_find_busses(); usb_find_devices(); for (bus = usb_get_busses(); bus != NULL; bus = bus->next) { for (dev = bus->devices; dev != NULL; dev = dev->next) { if (dev->descriptor.idVendor == vendor_id && ((dev->descriptor.idProduct == SHUTTLE_VFD_PRODUCT_ID1) || (dev->descriptor.idProduct == SHUTTLE_VFD_PRODUCT_ID2))) { unsigned int v = dev->descriptor.bcdDevice; info("%s: found ShuttleVFD V%1d%1d.%1d%1d on bus %s device %s", Name, (v & 0xF000) >> 12, (v & 0xF00) >> 8, (v & 0xF0) >> 4, (v & 0xF), bus->dirname, dev->filename); lcd = usb_open(dev); } } } if (lcd != NULL) { if (usb_claim_interface(lcd, interface) < 0) { usb_close(lcd); error("%s: usb_claim_interface() failed!", Name); error("%s: root permissions maybe required?", Name); return -1; } } else { error("%s: could not find ShuttleVFD", Name); return -1; } return 0; } static int drv_ShuttleVFD_close(void) { int interface = SHUTTLE_VFD_INTERFACE_NUM; usb_release_interface(lcd, interface); usb_close(lcd); return 0; } static void drv_ShuttleVFD_send(unsigned char packet[SHUTTLE_VFD_PACKET_SIZE]) { if (usb_control_msg(lcd, 0x21, // requesttype 0x09, // request 0x0200, // value 0x0001, // index (char *) packet, SHUTTLE_VFD_PACKET_SIZE, 100) == SHUTTLE_VFD_PACKET_SIZE) { udelay(SHUTTLE_VFD_SUCCESS_SLEEP_USEC); } else { debug("usb_control_msg failed"); } } /* Clear full display and icons. */ static void drv_ShuttleVFD_clear(void) { // Update local framebuffer mirror memset(fb, ' ', SHUTTLE_VFD_HEIGHT * SHUTTLE_VFD_WIDTH); buffer[0] = (1 << 4) + 1; buffer[1] = 0x1; drv_ShuttleVFD_send(buffer); } static void drv_ShuttleVFD_reset_cursor(void) { buffer[0] = (1 << 4) + 1; buffer[1] = 0x2; drv_ShuttleVFD_send(buffer); } /* text mode displays only */ static void drv_ShuttleVFD_write(const int row, const int col, const char *data, int len) { unsigned char *p; int i; // Update local framebuffer mirror memcpy(fb + (row * SHUTTLE_VFD_WIDTH) + col, data, len); p = fb; len = SHUTTLE_VFD_WIDTH; drv_ShuttleVFD_reset_cursor(); while (len > 0) { if (len > 7) buffer[0] = (9 << 4) + 7; else buffer[0] = (9 << 4) + len; for (i = 0; i < 7 && len--; i++) { buffer[i + 1] = *p++; } drv_ShuttleVFD_send(buffer); } } static void drv_ShuttleVFD_defchar(const int ascii, const unsigned char *matrix) { (void) matrix; debug("%s: not available (ascii=%d)", Name, ascii); } static int drv_ShuttleVFD_start(const char *section) { char *port; port = cfg_get(section, "Port", NULL); if (port == NULL || *port == '\0') { error("%s: no '%s.Port' entry from %s", Name, section, cfg_source()); return -1; } if (strcasecmp(port, "libusb") != 0) { error("%s: libusb expected", Name); error("%s: compile lcd4linux with libusb support!", Name); return -1; } DROWS = SHUTTLE_VFD_HEIGHT; DCOLS = SHUTTLE_VFD_WIDTH; /* open communication with the display */ if (drv_ShuttleVFD_open() < 0) { return -1; } drv_ShuttleVFD_clear(); /* clear display */ return 0; } /* VFD Icons. Add +1 in lcd4linux.conf (GPO1..GPIO27) * 0: television * 1: cd/dvd * 2: music * 3: radio * 4: clock * 5: pause * 6: play * 7: record * 8: rewind * 9: camera * 10: mute * 11: repeat * 12: reverse * 13: fastforward * 14: stop * 15: volume 1 * 16: volume 2 * ... * 25: volume 11 * 26: volume 12 */ static int drv_ShuttleVFD_icons_set(const int num, const int val) { unsigned long value; if (num < 0 || num >= 27) { info("%s: num %d out of range (1..27)", Name, num); return -1; } // Special case for volume (icon n°16) if (num >= 15) value = (num - 15 + 1) << 15; else value = 1 << num; if (val > 0) icons |= value; else icons &= ~value; buffer[0] = (7 << 4) + 4; buffer[1] = (value >> 15) & 0x1F; buffer[2] = (value >> 10) & 0x1F; buffer[3] = (value >> 5) & 0x1F; buffer[4] = value & 0x1F; // each data byte is stored on 5 bits drv_ShuttleVFD_send(buffer); return 0; } /****************************************/ /*** plugins ***/ /****************************************/ /* none yet ! */ /****************************************/ /*** widget callbacks ***/ /****************************************/ /* using drv_generic_text_draw(W) */ /* using drv_generic_gpio_draw(W) */ /****************************************/ /*** exported functions ***/ /****************************************/ /* supported Shuttle models */ int drv_ShuttleVFD_list(void) { printf("Shuttle SG33G5M, Shuttle PF27 upgrade kit"); return 0; } /* initialize driver & text display */ int drv_ShuttleVFD_init(const char *section, const int quiet) { WIDGET_CLASS wc; int ret; info("%s: %s", Name, "$Rev: 975 $"); /* display preferences */ XRES = 5; /* pixel width of one char */ YRES = 8; /* pixel height of one char */ CHARS = 0; /* number of user-defineable characters */ CHAR0 = 0; /* ASCII of first user-defineable char */ GOTO_COST = 2; /* number of bytes a goto command requires */ GPOS = 15 + 12; /* Fancy icons on top of display */ /* real worker functions */ drv_generic_text_real_write = drv_ShuttleVFD_write; drv_generic_text_real_defchar = drv_ShuttleVFD_defchar; drv_generic_gpio_real_set = drv_ShuttleVFD_icons_set; /* start display */ if ((ret = drv_ShuttleVFD_start(section)) != 0) return ret; if (!quiet) { char buffer[40]; qprintf(buffer, sizeof(buffer), "%s %dx%d", Name, DCOLS, DROWS); if (drv_generic_text_greet(buffer, "Shuttle")) { sleep(3); drv_ShuttleVFD_clear(); } } /* initialize generic text driver */ if ((ret = drv_generic_text_init(section, Name)) != 0) return ret; /* initialize generic GPIO driver */ if ((ret = drv_generic_gpio_init(section, Name)) != 0) return ret; /* register text widget */ wc = Widget_Text; wc.draw = drv_generic_text_draw; widget_register(&wc); return 0; } /* close driver & text display */ int drv_ShuttleVFD_quit(const int quiet) { info("%s: shutting down.", Name); /* clear display */ drv_ShuttleVFD_clear(); /* say goodbye... */ if (!quiet) { drv_generic_text_greet("goodbye!", NULL); } drv_generic_text_quit(); drv_generic_gpio_quit(); debug("closing connection"); drv_ShuttleVFD_close(); return (0); } DRIVER drv_ShuttleVFD = { .name = Name, .list = drv_ShuttleVFD_list, .init = drv_ShuttleVFD_init, .quit = drv_ShuttleVFD_quit, }; t .gu { color: #666666 } /* Generic.Subheading */ .highlight .gt { color: #aa0000 } /* Generic.Traceback */ .highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */ .highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */ .highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */ .highlight .kp { color: #008800 } /* Keyword.Pseudo */ .highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */ .highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */ .highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */ .highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */ .highlight .na { color: #336699 } /* Name.Attribute */ .highlight .nb { color: #003388 } /* Name.Builtin */ .highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */ .highlight .no { color: #003366; font-weight: bold } /* Name.Constant */ .highlight .nd { color: #555555 } /* Name.Decorator */ .highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */ .highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
/* $Id: drv.c,v 1.2 2004/01/10 10:20:22 reinelt Exp $
 *
 * new framework for display drivers
 *
 * Copyright 1999-2003 Michael Reinelt <reinelt@eunet.at>
 * Copyright 2004 The LCD4Linux Team <lcd4linux-devel@users.sourceforge.net>
 *
 * This file is part of LCD4Linux.
 *
 * LCD4Linux is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2, or (at your option)
 * any later version.
 *
 * LCD4Linux is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 *
 * $Log: drv.c,v $
 * Revision 1.2  2004/01/10 10:20:22  reinelt
 * new MatrixOrbital changes
 *
 * Revision 1.1  2004/01/09 17:03:07  reinelt
 * initiated transfer to new driver architecture
 * new file 'drv.c' will someday replace 'display.c'
 * new file 'drv_MatrixOrbital.c' will replace 'MatrixOrbital.c'
 * due to this 'soft' transfer lcd4linux should stay usable during the switch
 * (at least I hope so)
 *
 */

/* 
 * exported functions:
 *
 * drv_list (void)
 *   lists all available drivers to stdout
 *
 * drv_init (char *driver)
 *    initializes the named driver
 *
 * drv_query (int *rows, int *cols, int *xres, int *yres, int *bars, int *gpos)
 *    queries the attributes of the selected driver
 *
 * drv_clear ()
 *    clears the display
 *
 * int drv_put (int row, int col, char *text)
 *    writes text at row, col
 *
 * int drv_bar (int type, int row, int col, int max, int len1, int len2)
 *    draws a specified bar at row, col with len
 *
 * int drv_icon (int num, int seq, int row, int col)
 *    draws icon #num sequence #seq at row, col
 *
 * int drv_gpo (int num, int val)
 *    sets GPO #num to val
 *
 * int drv_flush (void)
 *    flushes the framebuffer to the display
 *
 * int drv_quit (void)
 *    de-initializes the driver
 */

#include "config.h"

#include <stdlib.h>
#include <stdio.h>
#include <string.h>

#include "debug.h"
#include "cfg.h"
#include "drv.h"

extern DRIVER drv_BeckmannEgle;
extern DRIVER drv_Crystalfontz;
extern DRIVER drv_Cwlinux;
extern DRIVER drv_HD44780;
extern DRIVER drv_M50530;
extern DRIVER drv_T6963;
extern DRIVER drv_USBDRIVER;
extern DRIVER drv_MatrixOrbital;
extern DRIVER drv_MilfordInstruments;
extern DRIVER drv_PalmPilot;
extern DRIVER drv_Raster;
extern DRIVER drv_XWindow;
extern DRIVER drv_Text;

// output file for Raster driver
// has to be defined here because it's referenced
// even if the raster driver is not included!
char *output=NULL;

DRIVER *Driver[] = {
#ifdef WITH_MATRIXORBITAL
  &drv_MatrixOrbital,
#endif
  /* Fixme
     #ifdef WITH_BECKMANNEGLE
     &BeckmannEgle,
     #endif
     #ifdef WITH_CRYSTALFONTZ
     &Crystalfontz,
     #endif
     #ifdef WITH_CWLINUX
     &Cwlinux,
     #endif
     #ifdef WITH_HD44780
     &HD44780,
     #endif
     #ifdef WITH_M50530
     &M50530,
     #endif
     #ifdef WITH_T6963
     &T6963,
     #endif
     #ifdef WITH_USBLCD
     &USBLCD,
     #endif
     #ifdef WITH_MATRIXORBITAL
     &MatrixOrbital,
     #endif
     #ifdef WITH_MILINST
     &MilfordInstruments,
     #endif
     #ifdef WITH_PALMPILOT
     &PalmPilot,
     #endif
     #if defined (WITH_PNG) || defined(WITH_PPM)
     &Raster,
     #endif
     #ifdef WITH_X11
     &XWindow,
     #endif
     #ifdef WITH_TEXT
     &Text,
     #endif
  */
  NULL,
};


static DRIVER *Drv = NULL;


int drv_list (void)
{
  int i;

  printf ("available display drivers:");
  
  for (i=0; Driver[i]; i++) {
    printf ("\n   %-20s: ", Driver[i]->name);
    if (Driver[i]->list) Driver[i]->list();
  }
  printf ("\n");
  return 0;
}


int drv_init (char *section, char *driver)
{
  int i;
  for (i=0; Driver[i]; i++) {
    if (strcmp (Driver[i]->name, driver)==0) {
      Drv=Driver[i];
      if (Drv->init==NULL) return 0;
      return Drv->init(section);
    }
  }
  error ("drv_init(%s) failed: no such driver", driver);
  return -1;
}


int drv_quit (void)
{
  if (Drv->quit==NULL) return 0;
  return Drv->quit();
}