checkpoint
[slipway.git] / src / com / atmel / fpslic / FpslicRawUsb.java
index fd36efd..d6fddee 100644 (file)
@@ -7,73 +7,44 @@ import java.io.*;
  */
 public class FpslicRawUsb implements FpslicRaw {
 
-    private FtdiUart ftdiuart;
-
-    private int dmask =
-        (1<<0) |
-        (1<<1) |
-        (1<<2) |
-        //(1<<3) |
-        //(1<<4) |
-        (1<<5) |
-        (1<<6) |
-        (1<<7);
+    private FpslicPins pins;
 
     public FpslicRawUsb(FtdiUart ftdiuart) throws IOException {
-        this.ftdiuart = ftdiuart;
+        this.pins = new FpslicPinsUsb(ftdiuart);
         reset();
     }
 
     public void reset() throws IOException {
 
-        dmask =
-            (1<<0) |
-            (1<<1) |
-            (1<<2) |
-            //(1<<3) |
-            //(1<<4) |
-            (1<<5) |
-            (1<<6) |
-            (1<<7);
-        avrrst(false);
-
-        flush();
-        //purge();
-
-        ftdiuart.dbus_mode(dmask);
-        flush();
-
-        clk(false);
-        data(false);
-        con(false);
-        flush();
-        //try { Thread.sleep(500); } catch (Exception e) { }
-
-        reset(false);
-        flush();
+        pins.avrrstPin(false);
+        pins.configDataPin(false);
+        pins.resetPin(false);
+        pins.cclkPin(false);
+        
+        pins.conPin(false);
+        pins.flush();
+
+        pins.resetPin(false);
         try { Thread.sleep(500); } catch (Exception e) { }
-        if (initErr()) throw new RuntimeException("INIT was still high after pulling RESET low");
+        if (pins.initPin()) throw new RuntimeException("INIT was still high after pulling RESET low");
 
-        reset(true);
-        flush();
+        pins.resetPin(true);
         try { Thread.sleep(500); } catch (Exception e) { }
-        if (!initErr()) throw new RuntimeException("INIT was still low after releasing RESET");
+        if (!pins.initPin()) throw new RuntimeException("INIT was still low after releasing RESET");
 
-        con(false);
+        sendConfigBits(0,2);
+        pins.flush();
     }
 
     public OutputStream getConfigStream() throws IOException {
         reset();
-        config(0,2);
-        flush();
         return new OutputStream() {
                 int bytes = 0;
                 int bits = 0;
                 public void write(int in) throws IOException {
                     for(int i=7; i>=0; i--) {
                         bits++;
-                        config((((in & 0xff) & (1<<i))!=0)?1:0, 1);
-                        if (bits==1) con();
+                        sendConfigBits((((in & 0xff) & (1<<i))!=0)?1:0, 1);
                     }
                 }
                 public void write(byte[] b, int off, int len) throws IOException {
@@ -81,131 +52,92 @@ public class FpslicRawUsb implements FpslicRaw {
                         write(b[i]);
                 }
                 public void flush() throws IOException {
-                    FpslicRawUsb.this.flush();
-                    rcon();
+                    pins.flush();
                 }
                 public void close() throws IOException {
-                    flush();
-                    if (!initErr())
+
+                    pins.flush();
+
+                    // turn off the CON pin we've been pulling low...
+                    pins.releaseConPin();
+
+                    if (!pins.initPin())
                         throw new RuntimeException("initialization failed at " + bytes);
                     for(int i=0; i<100; i++) {
-                        flush();
-                        if (!initErr())
+                        pins.flush();
+                        if (!pins.initPin())
                             throw new RuntimeException("initialization failed at " + bytes);
                         try { Thread.sleep(20); } catch (Exception e) { }
-                        config(0,1);
+                        sendConfigBits(0,1);
                     }
-                    avrrst(false);
-                    try { Thread.sleep(100); } catch (Exception e) { }
-                    ftdiuart.purge();
-                    ftdiuart.uart_and_cbus_mode(1<<1, 1<<1);
+
+                    pins.close();
                 }
             };
     }
 
-    public OutputStream getOutputStream() { return ftdiuart.getOutputStream(); }
-    public InputStream  getInputStream() { return ftdiuart.getInputStream(); }
+    public OutputStream getOutputStream() throws IOException { return pins.getUartOutputStream(); }
+    public InputStream  getInputStream() throws IOException { return pins.getUartInputStream(); }
 
-    private void preamble() throws IOException {
-        config(0,7);
-        flush();
-    }
     public void selfTest() throws Exception {
         boolean pin;
+        System.out.print("smoke check: ");
 
+        // correct preamble
         getConfigStream();
-        config(0,1);
-        con();
-        config(0,7);
-        config(Integer.parseInt("10110111", 2), 8);
-        config(0,1);
-        flush();
+        sendConfigBits(Integer.parseInt("00000000", 2), 8);
+        sendConfigBits(Integer.parseInt("10110111", 2), 8);
+        sendConfigBits(0,1);
+        pins.flush();
         try { Thread.sleep(100); } catch (Exception e) { }
-        pin = initErr();
-        System.out.println("good preamble   => " + pin + " " + (pin ? green("good") : red("BAD")));
+        pin = pins.initPin();
+        System.out.print((pin ? green(" [pass]") : red(" [FAIL]")));
 
+        // preamble shifted one bit earlier than it should be
         getConfigStream();
-        config(0,1);
-        con();
-        config(0,6);
-        flush();
-        config(Integer.parseInt("10110111", 2), 8);
-        config(0, 2);
-        flush();
+        sendConfigBits(Integer.parseInt("0000000",  2), 7);
+        sendConfigBits(Integer.parseInt("10110111", 2), 8);
+        sendConfigBits(0, 2);
+        pins.flush();
         try { Thread.sleep(100); } catch (Exception e) { }
-        pin = initErr();
-        System.out.println("bad preamble #2 => " + pin + " " + (pin ? red("BAD") : green("good")));
+        pin = pins.initPin();
+        System.out.print((pin ? red(" [FAIL]") : green(" [pass]")));
 
+        // preamble shifted one bit later than it should be
         getConfigStream();
-        config(0,1);
-        con();
-        config(0,7);
-        config(Integer.parseInt("11110111", 2), 8);
-        config(0, 1);
-        flush();
+        sendConfigBits(Integer.parseInt("000000000", 2), 9);
+        sendConfigBits(Integer.parseInt("10110111",  2), 8);
+        //sendConfigBits(0, 1);
+        pins.flush();
         try { Thread.sleep(100); } catch (Exception e) { }
-        pin = initErr();
-        System.out.println("bad preamble #1 => " + pin + " " + (pin ? red("BAD") : green("good")));
-    }
-
-    // Private //////////////////////////////////////////////////////////////////////////////
+        pin = pins.initPin();
+        System.out.print((pin ? red(" [FAIL]") : green(" [pass]")));
 
-    private void flush() throws IOException { ftdiuart.getOutputStream().flush(); }
+        // plain 'ol bogus preamble
+        getConfigStream();
+        sendConfigBits(Integer.parseInt("00000000", 2), 8);
+        sendConfigBits(Integer.parseInt("11110111", 2), 8);
+        sendConfigBits(0, 1);
+        pins.flush();
+        try { Thread.sleep(100); } catch (Exception e) { }
+        pin = pins.initPin();
+        System.out.print((pin ? red(" [FAIL]") : green(" [pass]")));
 
-    private int dbits = 0;
-    private void dbang(int bit, boolean val) throws IOException {
-        dbits = val ? (dbits | (1 << bit)) : (dbits & (~(1 << bit)));
-        ftdiuart.getOutputStream().write((byte)dbits);
+        System.out.println();
     }
 
-    private void config(boolean bit) throws IOException { config(bit?1:0, 1); }
-    private void config(int dat) throws IOException { config(dat, 8); }
-    private void config(int dat, int numbits) throws IOException {
+    // Private //////////////////////////////////////////////////////////////////////////////
+
+    private void sendConfigBits(int dat, int numbits) throws IOException {
         for(int i=(numbits-1); i>=0; i--) {
             boolean bit = (dat & (1<<i)) != 0;
-            data(bit);
-            clk(true);
-            clk(false);
-        }
-    }
-
-    // tricky: RESET has a weak pull-up, and is wired to a CBUS line.  So,
-    //         we can pull it down (assert reset) from uart-mode, or we can
-    //         let it float upward from either mode.
-    private void reset(boolean on) throws IOException {
-        ftdiuart.uart_and_cbus_mode(1<<1, on ? (1<<1) : 0);
-        flush();
-        if (on) {
-            ftdiuart.dbus_mode(dmask);
-            flush();
+            pins.configDataPin(bit);
+            pins.cclkPin(true);
+            pins.cclkPin(false);
+            //dbits &= ~(1<<6);  // let the clock fall with the next data bit, whenever it goes out
         }
     }
 
-    private void avrrst(boolean on) throws IOException { dbang(7, on); }
-    private void clk(boolean on)    throws IOException { dbang(6, on); }
-    private void data(boolean on)   throws IOException { dbang(5, on); }
-    private boolean initErr()       throws IOException { flush(); return (ftdiuart.readPins() & (1<<4))!=0; }
-
-    private boolean con() throws IOException {
-        flush();
-        //dmask &= ~(1<<0);
-        ftdiuart.dbus_mode(dmask);
-        return (ftdiuart.readPins() & (1<<0)) != 0;
-    }
-
-    private boolean rcon() throws IOException {
-        flush();
-        dmask &= ~(1<<0);
-        ftdiuart.dbus_mode(dmask);
-        return (ftdiuart.readPins() & (1<<0)) != 0;
-    }
-    private void con(boolean on) throws IOException {
-        flush();
-        dmask |= (1<<0);
-        dbang(0, on);
-        ftdiuart.dbus_mode(dmask);
-    }
-
     private static String red(Object o) { return "\033[31m"+o+"\033[0m"; }
     private static String green(Object o) { return "\033[32m"+o+"\033[0m"; }
 }