Lines Matching defs:device

86     amba_id = Param.UInt32("ID of AMBA device for kernel detection")
95 "Time between action and interrupt generation by device")
105 amba_id = Param.UInt32("ID of AMBA device for kernel detection")
187 interrupts += self.pciFdtAddr(device=i, addr=0) + \
197 intmask = self.pciFdtAddr(device=int_count - 1, addr=0) + [0x0]
241 # about the site/position/dcc/device allocation.
243 position = Param.UInt8("Position in device stack")
245 device = Param.UInt8("Device ID")
254 [0x1, int(self.device)]))
273 # about the site/position/dcc/device allocation.
275 position = Param.UInt8("Position in device stack")
277 device = Param.UInt8("Device ID")
293 osc_mcc = Osc(device=0, freq="50MHz")
294 osc_clcd = Osc(device=1, freq="23.75MHz")
295 osc_peripheral = Osc(device=2, freq="24MHz")
296 osc_system_bus = Osc(device=4, freq="24MHz")
299 temp_crtl = Temperature(device=0)
327 osc_cpu = Osc(device=0, freq="60MHz")
328 osc_hsbm = Osc(device=4, freq="40MHz")
329 osc_pxl = Osc(device=5, freq="23.75MHz")
330 osc_smb = Osc(device=6, freq="50MHz")
331 osc_sys = Osc(device=7, freq="60MHz")
332 osc_ddr = Osc(device=8, freq="40MHz")
350 ignore_access = Param.Bool(False, "Ignore reads/writes to this device, (e.g. IsaFake + AMBA)")
453 ps2 = Param.PS2Device("PS/2 device")
553 def _attach_device(self, device, bus, dma_ports=None):
554 if hasattr(device, "pio"):
555 device.pio = bus.master
556 if hasattr(device, "dma"):
558 device.dma = bus.slave
560 dma_ports.append(device.dma)
763 # Platform control device (off-chip)
1011 # Platform control device (off-chip)
1070 def attachPciDevice(self, device, *args, **kwargs):
1071 device.host = self.pci_host
1072 self._attach_device(device, *args, **kwargs)