checkpoint
authoradam <adam@megacz.com>
Thu, 21 Sep 2006 14:07:48 +0000 (15:07 +0100)
committeradam <adam@megacz.com>
Thu, 21 Sep 2006 14:07:48 +0000 (15:07 +0100)
src/com/atmel/fpslic/Chip.java [deleted file]
src/com/atmel/fpslic/FpslicRaw.java [new file with mode: 0644]
src/com/atmel/fpslic/FpslicRawUsb.java [moved from src/com/atmel/fpslic/ChipImpl.java with 80% similarity]
src/edu/berkeley/slipway/FtdiBoard.java

diff --git a/src/com/atmel/fpslic/Chip.java b/src/com/atmel/fpslic/Chip.java
deleted file mode 100644 (file)
index 57c9d98..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-package com.atmel.fpslic;
-
-import com.ftdi.usb.*;
-import java.io.*;
-
-public interface Chip {
-    
-    public void    doReset() throws IOException;
-    public void    reset(boolean on) throws IOException;
-    public void    avrrst(boolean on) throws IOException;
-    public void    config(boolean bit) throws IOException;
-    public void    config(int data, int numbits) throws IOException;
-    public boolean initErr() throws IOException;
-
-    public void    con(boolean b) throws IOException;
-    public boolean con() throws IOException;
-    public boolean rcon() throws IOException;
-
-    //remove
-    public void    flush() throws IOException;
-    public InputStream getInputStream();
-    public OutputStream getOutputStream();
-    public void selfTest() throws Exception;
-    public OutputStream getConfigStream() throws IOException;
-
-}
diff --git a/src/com/atmel/fpslic/FpslicRaw.java b/src/com/atmel/fpslic/FpslicRaw.java
new file mode 100644 (file)
index 0000000..5113f5c
--- /dev/null
@@ -0,0 +1,17 @@
+package com.atmel.fpslic;
+
+import com.ftdi.usb.*;
+import java.io.*;
+
+/**
+ * "Raw" access to an <i>unconfigured</i> FPSLIC -- used to load the initial bitstream.
+ */
+public interface FpslicRaw {
+
+    public InputStream  getInputStream();
+    public OutputStream getOutputStream();
+    public OutputStream getConfigStream() throws IOException;
+    public void         reset() throws IOException;
+    public void         selfTest() throws Exception;
+
+}
similarity index 80%
rename from src/com/atmel/fpslic/ChipImpl.java
rename to src/com/atmel/fpslic/FpslicRawUsb.java
index dedc4b0..a459e8d 100644 (file)
@@ -2,7 +2,7 @@ package com.atmel.fpslic;
 import com.ftdi.usb.*;
 import java.io.*;
 
-public class ChipImpl extends FtdiUart implements Chip {
+public class FpslicRawUsb extends FtdiUart implements FpslicRaw {
 
     private int dmask =
         (1<<0) |
@@ -14,12 +14,12 @@ public class ChipImpl extends FtdiUart implements Chip {
         (1<<6) |
         (1<<7);
 
-    public ChipImpl() throws IOException {
+    public FpslicRawUsb() throws IOException {
         super(0x6666, 0x3133, 1500 * 1000);
-        doReset();
+        reset();
     }
 
-    public void flush() throws IOException { getOutputStream().flush(); }
+    void flush() throws IOException { getOutputStream().flush(); }
 
     protected int dbits = 0;
     protected synchronized void dbang(int bit, boolean val) throws IOException {
@@ -29,7 +29,7 @@ public class ChipImpl extends FtdiUart implements Chip {
         } catch (IOException e) { throw new RuntimeException(e); }
     }
 
-    public void doReset() throws IOException {
+    public void reset() throws IOException {
 
         dmask =
             (1<<0) |
@@ -67,9 +67,9 @@ public class ChipImpl extends FtdiUart implements Chip {
         con(false);
     }
 
-    public void config(boolean bit) throws IOException { config(bit?1:0, 1); }
-    public void config(int dat) throws IOException { config(dat, 8); }
-    public void config(int dat, int numbits) throws IOException {
+    void config(boolean bit) throws IOException { config(bit?1:0, 1); }
+    void config(int dat) throws IOException { config(dat, 8); }
+    void config(int dat, int numbits) throws IOException {
         for(int i=(numbits-1); i>=0; i--) {
             boolean bit = (dat & (1<<i)) != 0;
             data(bit);
@@ -81,7 +81,7 @@ public class ChipImpl extends FtdiUart implements Chip {
     // 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.
-    public void reset(boolean on) throws IOException {
+    void reset(boolean on) throws IOException {
         uart_and_cbus_mode(1<<1, on ? (1<<1) : 0);
         flush();
         if (on) {
@@ -90,25 +90,25 @@ public class ChipImpl extends FtdiUart implements Chip {
         }
     }
 
-    public void avrrst(boolean on) throws IOException { dbang(7, on); }
-    public void clk(boolean on)    throws IOException { dbang(6, on); }
-    public void data(boolean on)   throws IOException { dbang(5, on); }
+    void avrrst(boolean on) throws IOException { dbang(7, on); }
+    void clk(boolean on)    throws IOException { dbang(6, on); }
+    void data(boolean on)   throws IOException { dbang(5, on); }
 
-    public boolean initErr()       throws IOException { flush(); return (readPins() & (1<<4))!=0; }
+    boolean initErr()       throws IOException { flush(); return (readPins() & (1<<4))!=0; }
 
-    public boolean con() throws IOException {
+    boolean con() throws IOException {
         flush();
         //dmask &= ~(1<<0);
         dbus_mode(dmask);
         return (readPins() & (1<<0)) != 0;
     }
-    public boolean rcon() throws IOException {
+    boolean rcon() throws IOException {
         flush();
         dmask &= ~(1<<0);
         dbus_mode(dmask);
         return (readPins() & (1<<0)) != 0;
     }
-    public void con(boolean on) throws IOException {
+    void con(boolean on) throws IOException {
         flush();
         dmask |= (1<<0);
         dbang(0, on);
@@ -116,7 +116,7 @@ public class ChipImpl extends FtdiUart implements Chip {
     }
 
     public OutputStream getConfigStream() throws IOException {
-        doReset();
+        reset();
         config(0,10);
         con();
         return new OutputStream() {
@@ -132,7 +132,7 @@ public class ChipImpl extends FtdiUart implements Chip {
                         write(b[i]);
                 }
                 public void flush() throws IOException {
-                    ChipImpl.this.flush();
+                    FpslicRawUsb.this.flush();
                     rcon();
                 }
                 public void close() throws IOException {
@@ -154,12 +154,12 @@ public class ChipImpl extends FtdiUart implements Chip {
             };
     }
 
-    public static String red(Object o) { return "\033[31m"+o+"\033[0m"; }
-    public static String green(Object o) { return "\033[32m"+o+"\033[0m"; }
+    static String red(Object o) { return "\033[31m"+o+"\033[0m"; }
+    static String green(Object o) { return "\033[32m"+o+"\033[0m"; }
     public void selfTest() throws Exception {
-        ChipImpl d = this;
+        FpslicRawUsb d = this;
         boolean pin;
-        d.doReset();
+        d.reset();
         d.config(0,3);
         d.con();
         d.config(0,7);
@@ -172,7 +172,7 @@ public class ChipImpl extends FtdiUart implements Chip {
         pin = d.initErr();
         System.out.println("good preamble   => " + pin + " " + (pin ? green("good") : red("BAD")));
 
-        d.doReset();
+        d.reset();
         try { Thread.sleep(100); } catch (Exception e) { }
         d.config(0,3);
         d.con();
@@ -186,7 +186,7 @@ public class ChipImpl extends FtdiUart implements Chip {
         pin = d.initErr();
         System.out.println("bad preamble #2 => " + pin + " " + (pin ? red("BAD") : green("good")));
 
-        d.doReset();
+        d.reset();
         try { Thread.sleep(100); } catch (Exception e) { }
         d.config(0,3);
         d.con();
index 283a626..4b6088f 100644 (file)
@@ -13,7 +13,7 @@ public class FtdiBoard extends Board {
         System.load(new File("build/"+System.mapLibraryName("FtdiUartNative")).getAbsolutePath());
     }
 
-    private final Chip chip;
+    private final FpslicRaw chip;
     private final InputStream in;
     private final OutputStream out;
 
@@ -21,7 +21,7 @@ public class FtdiBoard extends Board {
     public OutputStream getOutputStream() { return out; }
 
     public FtdiBoard() throws Exception {
-        chip = new ChipImpl();
+        chip = new FpslicRawUsb();
         String bstFile = this.getClass().getName();
         bstFile = bstFile.substring(0, bstFile.lastIndexOf('.'));
         bstFile = bstFile.replace('.', '/')+"/slipway_drone.bst";
@@ -33,16 +33,14 @@ public class FtdiBoard extends Board {
     }
 
     public void reset() throws IOException {
-        chip.doReset();
+        chip.reset();
     }
 
     public void boot(Reader r) throws Exception {
-        Chip d = chip;
 
-        d.selfTest();
-
-        OutputStream os = d.getConfigStream();
+        chip.selfTest();
 
+        OutputStream os = chip.getConfigStream();
         BufferedReader br = new BufferedReader(r);
         br.readLine();
 
@@ -50,9 +48,8 @@ public class FtdiBoard extends Board {
         while(true) {
             String s = br.readLine();
             if (s==null) break;
-            int in = Integer.parseInt(s, 2);
             bytes++;
-            os.write((byte)in);
+            os.write((byte)Integer.parseInt(s, 2));
             if ((bytes % 1000)==0) {
                 os.flush();
                 System.out.print("wrote " + bytes + " bytes\r");