====== M50530 ====== This driver supports display modules based on the Mitsubishi M50530 chip. These displays are made by different manufactures, and come in various sizes. The main difference between the M50530 and the HD44780 is that the M50530 can control much larger displays (mine has 8 rows and 24 columns). The displays are connected to the parallel board (see "Wiring" below), and are quite timing-critical. There's no way to delay a usermode program under Linux for e.g. 40 usec, so we have to do busy-waiting. This has been done in a delay loop, which had to be calibrated. Since 0.98 there are two new delay loops, one based on the processor's TSC (Time Stamp Counter), one based on gettimeofday(). LCD4Linux decides automatically which one to use (it prefers the TSC method, but falls back to gettimeofday() if neither the TSC flag nor the MHz value is set in /proc/cpuinfo). Calibration is no longer necessary! The driver knows of two ways of controlling the parallel port: The (old, ugly and unportable) raw programming of ports, and the new, cool, great ppdev() style. You decide which one to use by specifying either a hexadecimal value or a device file with the 'Port' entry in the config file. Note that the old port programming only works with standard ports (0x3f8, 0x2f8,...), but not with PCI parallel port cards. Also, some //secured// linux systems (//[[http://leaf.sourceforge.net|LEAF]]// kernels with the //[[http://www.grsecurity.net|grsecurity]]// patches being one) do not allow a userspace program to do raw I/O (not even if running as root), so you **have to** use ppdev there anyway. Using ppdev requires kernel 2.4 or newer, and the //ppdev// kernel module loaded. The configure script detects if you have the required include files, and deactivates ppdev if they are not there. **You should use ppdev whenever possible!** Raw port access may be dropped someday. Note that you have to use parport devices (usually ///dev/parports/*// or ///dev/parport*// with major number 99), the printer devices (///dev/printers/*// with major number 6) do **NOT** work! If you are using devfs or udev, these devices may become visible as soon as you load the //ppdev// kernel module. The driver fully supports the text, bar and icon widgets. ---- ===== Display Section ===== Display { Driver 'M50530' Model 'M50530' Port Size Font Duty UseBusy <0|1> Icons GPOs Wire { RW EX IOC1 IOC2 GPO } Timing { fuzz SU W D H GPO_ST GPO_PW EXEC CLEAR INIT } } ---- ===== Parameters: ===== |**Driver**|'M50530'| |**Model**|'M50530' (maybe someday we'll find other models)| |**Port**|either the hexadecimal address of the parallel port ('0x378') or a ppdev device ('/dev/parports/0')| |**Size**|x e.g. '16x2'| |**Font**|either '5x7' (the default) or '5x11', according to your display| |**Duty**|describes the internal layout, if the default (2) does not work for you, try 0 or 1| |**!UseBusy**|0 (don't use Busy-Flag checking, default) or 1 (use Busy-Flag checking)| |**Icons**|Number of user-defined chars reserved for Icons (default: 0)| |**GPOs**|number of general purpose outputs, use 0 (zero, which is the default) to deactivate this feature| |**Wire.***|see below| |**Timing.***|see below| ---- ===== Example: ===== Display M50530-24x8 { Driver 'M50530' Model 'M50530' Port '/dev/parport0' Size '24x8' Font '5x7' Duty 2 UseBusy 0 Wire.RW 'GND' Wire.EX 'STROBE' Wire.IOC1 'SLCTIN' Wire.IOC2 'AUTOFD' Wire.GPO 'GND' } ---- ===== Wiring: ===== My M50530-based display has 16 pins. Power (+5V) must be supplied via pins 15 (VCC) and 16 (GND), be careful not to change polarity, you will destroy your display! Pin 14 is used to control the contrast, it needs a positive voltage of about 10 V (it really needs more than 5V! It took me weeks to find out that my display is not dead :-) I used a potentiometer (10k) between GND and +12V, and connect VFF (pin 14) to the slider. Starting with lcd4linux 0.9.9, there's a //parallel port abstraction layer// which makes the wiring completely configurable! (this is what the //Wire.xy// entries in the configuration are for). If you use a different wiring scheme, you have to change these lines accordingly. The wiring configuration uses abstract signal names (e.g. //STROBE//) instead of pin numbers on the parallel port. So here's a translation table: |**Pin**|**Name**|**I/O**| |1|STROBE|Out| |2|DB0|I/O| |3|DB1|I/O| |4|DB2|I/O| |5|DB3|I/O| |6|DB4|I/O| |7|DB5|I/O| |8|DB6|I/O| |9|DB7|I/O| |10|ACK|In| |11|BUSY|In| |12|PAPEROUT|In| |13|SELECT|In| |14|AUTOFD|Out| |15|ERROR|In| |16|INIT|Out| |17|SLCTIN|Out| |18-25|GND|n/a| My M50530 display has 16 pins: |**Pin**|**Name**|**Comment**| |1|SHIELD|Shield, usually connected to GND| |2|DB0|Data Bit 0| |3|DB1|Data Bit 1| |4|DB2|Data Bit 2| |5|DB3|Data Bit 3| |6|DB4|Data Bit 4| |7|DB5|Data Bit 5| |8|DB6|Data Bit 6| |9|DB7|Data Bit 7| |10|EX|Execute (instruction start signal)| |11|R/W|Read/Write| |12|I/OC2|Input/Output control signal 2| |13|I/OC1|Input/Output control signal 1| |14|VFF|contrast voltage 0..10V| |15|VCC|supply voltage +5V| |16|GND|Ground| Now for the wiring details: * The data lines (DB0..DB7 on the display, DB0..DB7 on the parallel port) are connected directly. * The "RW" signal from the display may be harwired to GND, we do not read anything from the display. If you want to use busy-flag checking, you have to connect it to a control signal, which must be specified with the Wire.RW line. LCD4Linux's default is GND * The "EX" signal has to be connected to one of the control signals (STROBE, SLCTIN, AUTOFD or INIT). LCD4Linux's default is STROBE. * The "IOC1" and "IOC2" (kind of 9th and 10th data bit) signals have to be connected to one of the control signals. LCD4Linux's default is SLCTIN for IOC1 and AUTOFD for IOC2. ---- ===== GPO's: ===== You can connect up to 8 digital output lines to the parallel port with a simple additional circuit (see the [[:HD44780|HD44780]] page for the circuit). These lines can be controlled by lcd4linux, and need an additional control signal from the parallel port. You have to specify this signal with the //Wire.GPO// entry in the config file (the default is //GND//, i.e. not connected). ---- ===== Timing: ===== As I said above, M50530 is quite timing-critial. First, there is the low-level timing on the parallel port, second is the execution time needed for various commands (especially if you're //not// using busy-flag checking). In the past, we tried to use worst-case values, as the timings differ from datasheet to datasheet. But this did not always work, some displays really need smaller values... So I decided to make the timings configurable. That's what the //Timing// section in the lcd4linux.conf is for. Note that under normal circumstances you won't need such a section, lcd4linux uses default values which should work with most displays. You should consult the datasheet of your display before messing around with these values! To make it easier to play with the timing values, I invented a //fuzz// factor, which modifies all other timing values. This factor is interpreted as a percentage, with a default of 100% (meaning no modification). If you specify a fuzz factor of 150, this leads to all timings being multiplied by 1.5 (so the default 1000 ns //Enable Cycle Time// will be 1500 ns). ==== Low-level timings: ==== |**Name**|**Description**|**Default**|**Unit**| |SU|control data setup time|200|ns| |W|EX signal pulse width|500|ns| |D|Data output delay time|300|ns| |H|Data hold time|100|ns| ==== M50530 execution timings: ==== |**Name**|**Description**|**Default**|**Unit**| |EXEC|normal execution time|20|us| |CLEAR|Clear Display|1250|us| |INIT|mysterious initialization time|2000|us| ==== GPO timings: ==== If you're using a 74HCT573 or similar as a latch to control one or more GPO's, you may specify the timing, too: |**Name**|**Description**|**Default**|**Unit**| |GPO_ST|74HCT573 set-up time|20|ns| |GPO_PW|74HCT573 enable pulse width|230|ns| ==== Sample Timing Section: ==== Timing { SU 200 W 500 D 300 H 100 GPO_ST 20 GPO_PW 230 EXEC 20 CLEAR 1250 INIT 2000 } ---- ===== Schematic: ===== I built a little interface board to my M50530 display. It consists of a stabilized voltage regulator to create the +5V, a potentiometer to control the contrast (supplied with +12V) and a connector to the parallel port. The whole board needs +12V supply voltage. Here's the schematic and board (designed with eagle): {{:schematics.png}} {{:board.png}} ----