added mpardemo
[slipway.git] / src / edu / berkeley / slipway / Demo2.java
1 package edu.berkeley.slipway;
2
3 import static java.awt.event.KeyEvent.*;
4 import edu.berkeley.slipway.*;
5 import com.atmel.fpslic.*;
6 import static com.atmel.fpslic.FpslicConstants.*;
7 import static com.atmel.fpslic.FpslicUtil.*;
8 import edu.berkeley.slipway.gui.*;
9 import java.awt.*;
10 import java.awt.event.*;
11 import java.awt.color.*;
12 import org.ibex.util.*;
13 import java.io.*;
14 import java.util.*;
15 import gnu.io.*;
16
17 public class Demo2 implements KeyListener {
18
19     public static void main(String[] s) throws Exception {
20         new Demo2().go(); 
21     }
22     public FtdiBoard device;
23     public Demo2() throws Exception {
24         device = new FtdiBoard();
25     }
26     public void go() throws Exception {
27         long begin = System.currentTimeMillis();
28         //FpslicUtil.readMode4(new ProgressInputStream("configuring fabric", System.in, 111740), device);
29         long end = System.currentTimeMillis();
30         Log.info(Demo.class, "finished in " + ((end-begin)/1000) + "s");
31         Thread.sleep(1000);
32
33
34         Log.info(Demo.class, "issuing command");
35
36         Fpslic.Cell root = device.cell(5,5);
37
38         root.ylut(LUT_SELF);
39         root.yi(NORTH);
40         root.xi(NW);
41         root.wi(L0);
42         root.zi(L2);
43
44         root = root.north();
45         root.ylut(LUT_SELF);
46         root.yi(WEST);
47         root.out(1, true);
48         root.h(1, true);
49         root.wi(L1);
50         root.zi(L3);
51
52         root = root.west();
53         root.xi(SE);
54         root.ylut(LUT_SELF);
55         root.yi(SOUTH);
56         root.wi(L2);
57         root.zi(L4);
58
59         root = root.south();
60         root.ylut(LUT_SELF);
61         root.yi(EAST);
62         root.wi(L3);
63         root.zi(L0);
64         //root = root.n();
65
66         device.iob_bot(12, false).enableOutput(NW);
67         Fpslic.Cell c = device.cell(12, 0);
68         c.xo(c.east());
69         while(c.east() != null && c.east().east() != null) {
70             c.yo(c.east());
71             c = c.east();
72         }
73         device.flush();
74
75         Fpslic.Cell div = device.cell(19, 21);
76         while(true) {
77             AsyncPaperDemo.divider(div);
78             div = div.south().south();
79             if (div == null) break;
80         }
81         device.flush();
82
83         int MAX=17;
84         for(int x=2; x<MAX+1; x++) {
85             c = device.cell(x, 20);
86             Fpslic.Cell bridge = x==2 ? c.sw()    : c.nw();
87             Fpslic.Cell pred   = x==MAX ? c.south() : c.east();
88             Fpslic.Cell next   = x==2 ? c.south() : c.west();
89             muller(c, pred, bridge, next);
90
91             c = c.south();
92             bridge = x==MAX ? c.ne()    : c.se();
93             pred   = x==2 ? c.north() : c.west();
94             next   = x==MAX ? c.north() : c.east();
95             muller(c, pred, bridge, next);
96         }
97         //device.cell(MAX+0,20).yi(WEST);
98         //device.cell(MAX+0,20).ylut(LUT_SELF);
99         //device.cell(MAX+1,20).yi(WEST);
100         //device.cell(MAX+1,20).ylut(LUT_SELF);
101         device.cell(MAX+2,20).yi(WEST);
102         device.cell(MAX+2,20).ylut(LUT_SELF);
103         device.cell(MAX+2,20).xlut(LUT_OTHER);
104         device.cell(18,20).ylut(LUT_SELF);
105         device.flush();
106         go2();
107     }
108
109     public void go2() throws Exception {
110         setupScanCell();
111         device.flush();
112
113         vis = new Gui3((Fpslic)device, (FtdiBoard)device);
114         vis.addKeyListener(this);
115         Frame fr = new Frame();
116         fr.setLayout(new BorderLayout());
117         fr.add(vis, BorderLayout.CENTER);
118         fr.pack();
119         fr.setSize(900, 900);
120         vis.repaint();
121         fr.repaint();
122         fr.show();
123         //synchronized(Demo.class) { Demo.class.wait(); }
124         while(true) {
125             try { Thread.sleep(500); } catch (Exception e) { }
126             synchronized(vis) {
127                 scan();
128             }
129         }
130     }
131     Gui3 vis;
132     public void muller(Fpslic.Cell c, Fpslic.Cell pred, Fpslic.Cell bridge, Fpslic.Cell next) {
133         bridge.yi(next);
134         bridge.xlut(LUT_OTHER);
135
136         c.yi(pred);
137         c.xi(bridge);
138         c.b(false);
139         c.f(false);
140         c.c(YLUT);
141         c.t(TMUX_FB);
142         c.ylut((LUT_SELF & ~LUT_OTHER) |
143                (LUT_Z    & ~LUT_OTHER) |
144                (LUT_Z    &   LUT_SELF));
145     }
146
147     public void setupScanCell() {
148         Fpslic fpslic = (Fpslic)device;
149         fpslic.cell(23,15).h(3, true);
150         fpslic.cell(23,15).yi(L3);
151         fpslic.cell(23,15).ylut(0xAA);
152         fpslic.iob_right(15, true).enableOutput(WEST);
153
154         fpslic.cell(23,0).ylut(0x00);
155         fpslic.iob_right(0, true).enableOutput(WEST);
156         fpslic.flush();
157     }
158
159     public void keyTyped(KeyEvent k) { }
160     public void keyReleased(KeyEvent k) { }
161     public void keyPressed(KeyEvent k) {
162         switch(k.getKeyCode()) {
163             case VK_SPACE:
164                 scan();
165                 break;
166         }
167     }
168     public void scan() {
169         for(int x=0; x<4; x++)
170             for(int y=0; y<4; y++)
171                 scan(vis.ca[x][y]);
172         for(int x=0; x<4; x++)
173             for(int y=0; y<4; y++)
174                 scan(vis.ca[x][y]);
175     }
176     public void scan(final GuiCell c) {
177         try {
178             final Fpslic.Cell cell = c.fpslicCell;
179             scan(device, cell, YLUT, true);
180             int x = cell.col;
181             int y = cell.row;
182             device.readBus(new BCB(c));
183             scan(device, cell, YLUT, false);
184         } catch (IOException e) {
185             throw new RuntimeException(e);
186         }
187     }
188
189     public static void scan(Fpslic dev, Fpslic.Cell cell, int source, boolean setup) {
190         if (setup) {
191             //if (source != NONE) cell.c(source);
192             if (cell.b()) cell.b(false);
193             if (cell.f()) cell.f(false);
194         }
195         if (cell.out(L3)!=setup) cell.out(L3, setup);
196         if (cell.vx(L3)!=setup) cell.v(L3, setup);
197
198         Fpslic.SectorWire sw = cell.vwire(L3);
199         //System.out.println("wire is: " + sw);
200
201         if (sw.row > (12 & ~0x3) && sw.north()!=null && sw.north().drives(sw))
202             sw.north().drives(sw, false);
203         while(sw.row > (12 & ~0x3) && sw.south() != null) {
204             //System.out.println(sw + " -> " + sw.south());
205             if (sw.drives(sw.south())!=setup) sw.drives(sw.south(), setup);
206             sw = sw.south();
207         }
208         if (sw.row < (12 & ~0x3) && sw.south() != null && sw.south().drives(sw))
209             sw.north().drives(sw, false);
210         while(sw.row < (12 & ~0x3) && sw.north() != null) {
211             //System.out.println(sw + " -> " + sw.north());
212             if (sw.drives(sw.north())!=setup) sw.drives(sw.north(), setup);
213             sw = sw.north();
214         }
215
216         //cell = dev.cell(19, 15);
217         cell = dev.cell(cell.col, 15);
218         /*
219         System.out.println("cell is " + cell);
220         cell.xlut(0xff);
221         cell.ylut(0xff);
222         cell.b(false);
223         cell.f(false);
224         cell.c(XLUT);
225         cell.out(L3, true);
226         cell.oe(NONE);
227         */
228         if (cell.hx(L3) != setup) cell.h(L3, setup);
229         if (cell.vx(L3) != setup) cell.v(L3, setup);
230         sw = cell.hwire(L3);
231
232         if (sw.west()!=null && sw.west().drives(sw)) { sw.west().drives(sw, false); }
233         while(sw.east() != null) {
234             //System.out.println(sw + " -> " + sw.east());
235             if (sw.drives(sw.east())!=setup) sw.drives(sw.east(), setup);
236             sw = sw.east();
237         }
238
239     }
240
241
242     private class BCB extends FtdiBoard.ByteCallback {
243         GuiCell c;
244         public BCB(GuiCell c) {
245             this.c = c;
246         }
247         public void call(byte b) throws Exception {
248             boolean on = (b & 0x80) != 0;
249             c.val = on;
250             vis.repaint();
251         }
252     }
253 }