AlphaSystem.py (9793:6e6cefc1db1f) AlphaSystem.py (10249:6bbb7ae309ac)
1# Copyright (c) 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

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

40 load_addr_mask = 0xffffffffff
41
42class LinuxAlphaSystem(AlphaSystem):
43 type = 'LinuxAlphaSystem'
44 cxx_header = "arch/alpha/linux/system.hh"
45 system_type = 34
46 system_rev = 1 << 10
47
1# Copyright (c) 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

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

40 load_addr_mask = 0xffffffffff
41
42class LinuxAlphaSystem(AlphaSystem):
43 type = 'LinuxAlphaSystem'
44 cxx_header = "arch/alpha/linux/system.hh"
45 system_type = 34
46 system_rev = 1 << 10
47
48 boot_cpu_frequency = Param.Frequency(Self.cpu[0].clk_domain.clock.frequency,
48 boot_cpu_frequency = Param.Frequency(Self.cpu[0].clk_domain.clock[0]
49 .frequency,
49 "boot processor frequency")
50
51class FreebsdAlphaSystem(AlphaSystem):
52 type = 'FreebsdAlphaSystem'
53 cxx_header = "arch/alpha/freebsd/system.hh"
54 system_type = 34
55 system_rev = 1 << 10
56
57class Tru64AlphaSystem(AlphaSystem):
58 type = 'Tru64AlphaSystem'
59 cxx_header = "arch/alpha/tru64/system.hh"
60 system_type = 12
61 system_rev = 2<<1
50 "boot processor frequency")
51
52class FreebsdAlphaSystem(AlphaSystem):
53 type = 'FreebsdAlphaSystem'
54 cxx_header = "arch/alpha/freebsd/system.hh"
55 system_type = 34
56 system_rev = 1 << 10
57
58class Tru64AlphaSystem(AlphaSystem):
59 type = 'Tru64AlphaSystem'
60 cxx_header = "arch/alpha/tru64/system.hh"
61 system_type = 12
62 system_rev = 2<<1