T1000.py (8847:ef8630054b5e) T1000.py (9162:019047ead23b)
1# Copyright (c) 2006-2007 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 33 unchanged lines hidden (view full) ---

42class DumbTOD(BasicPioDevice):
43 type = 'DumbTOD'
44 time = Param.Time('01/01/2009', "System time to use ('Now' for real time)")
45 pio_addr = 0xfff0c1fff8
46
47class Iob(PioDevice):
48 type = 'Iob'
49 platform = Param.Platform(Parent.any, "Platform this device is part of.")
1# Copyright (c) 2006-2007 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 33 unchanged lines hidden (view full) ---

42class DumbTOD(BasicPioDevice):
43 type = 'DumbTOD'
44 time = Param.Time('01/01/2009', "System time to use ('Now' for real time)")
45 pio_addr = 0xfff0c1fff8
46
47class Iob(PioDevice):
48 type = 'Iob'
49 platform = Param.Platform(Parent.any, "Platform this device is part of.")
50 pio_latency = Param.Latency('1ns', "Programed IO latency in simticks")
50 pio_latency = Param.Latency('1ns', "Programed IO latency")
51
52
53class T1000(Platform):
54 type = 'T1000'
55 system = Param.System(Parent.any, "system")
56
57 fake_clk = IsaFake(pio_addr=0x9600000000, pio_size=0x100000000)
58 #warn_access="Accessing Clock Unit -- Unimplemented!")

--- 77 unchanged lines hidden ---
51
52
53class T1000(Platform):
54 type = 'T1000'
55 system = Param.System(Parent.any, "system")
56
57 fake_clk = IsaFake(pio_addr=0x9600000000, pio_size=0x100000000)
58 #warn_access="Accessing Clock Unit -- Unimplemented!")

--- 77 unchanged lines hidden ---