Index: /trunk/platforms/dsx/v1_1cluster_phys_dma/cluster.py
===================================================================
--- /trunk/platforms/dsx/v1_1cluster_phys_dma/cluster.py	(revision 94)
+++ /trunk/platforms/dsx/v1_1cluster_phys_dma/cluster.py	(revision 95)
@@ -46,5 +46,8 @@
 						    wti_count = 4, 
 						    irq_count = 4)
-	dma = self.create_dma( addr = 0xd1200000, burst_size = 16)
+	dma = self.create_dma( addr = 0xd1200000, burst_size = 64)
+	fb  = self.create_fb( addr = 0xe2200000, width = 320,
+						 height = 200,
+						 subsampling = 422)
 
 	tty.irq[0] // xicu.hwi[0]
@@ -52,4 +55,5 @@
 	    self.cpu[i].irq[0] // xicu.irq[i]
 	dma.irq // xicu.hwi[1]
+	
 
     def create_dma(self, addr, burst_size):
@@ -61,4 +65,12 @@
         return dma
 
+    def create_fb(self, addr, width, height, subsampling):
+        name = 'fb%d'%self.cluster_no
+        fb = self.pf.create('caba:vci_framebuffer', name, width = width,
+						       height = height,
+						       subsampling = subsampling)
+        self.ringp.to_target.new() // fb.vci
+        fb.addSegment(name, address = addr, size = width * height * 2, cacheable = False)
+        return fb
 
     def create_tty(self, addr, tty_count = 1):
Index: /trunk/platforms/dsx/v1_1cluster_phys_dma/v1_1cluster_phys.py
===================================================================
--- /trunk/platforms/dsx/v1_1cluster_phys_dma/v1_1cluster_phys.py	(revision 94)
+++ /trunk/platforms/dsx/v1_1cluster_phys_dma/v1_1cluster_phys.py	(revision 95)
@@ -12,5 +12,5 @@
         self.pf = soclib.Architecture(cell_size = 4,
                                       plen_size = 8,
-                                      addr_size = 64,
+                                      addr_size = 32,
                                       rerror_size = 1,
                                       clen_size = 1,
@@ -102,5 +102,5 @@
 if __name__ == '__main__':
     import sys
-    cpus = 4
+    cpus = 1
     if len(sys.argv) > 1:
         cpus = int(sys.argv[1])
