================================================================================ The 2.6 TS-UART drivers for the TS-BAT3 and the TS-RF2 board have been modified to support the TS-73XX series of boards (TS-7350,TS-7370,TS-7390). The change is transparent to existing use on the TS-7800. To use these drivers on the TS-73XX it is only necessary to specify the base address for 8-bit ISA access, and the ARM IRQ number for the IRQs that may be used by the board. For instance, the TS-RF2 board can use ISA IRQ6 or IRQ7, so the irq parameters to specify are irq6 and irq7. The driver will automatically detect which IRQ is in use. Depending on your setup it may also be necessary to turn alter the PC-104 MUX registers to set the pin functionality to ISA signals. The examples below demonstrate commands which may be used to accomplish loading of the respective drivers. (Note: both drivers still require tsuart1.ko to be loaded first.) TS-RF: peekpoke 32 0x600ff098 0x55555555 peekpoke 32 0x600ff09c 0x55555555 insmod ./tsuart-rf.ko io=0x600ff800 irq6=33 irq7=40 TS-BAT3: peekpoke 32 0x600ff098 0x55555555 peekpoke 32 0x600ff09c 0x55555555 insmod ./tsuart-bat3.ko io=0x600ff800 irq5=32 irq6=33 ================================================================================