iob.cc (8739:925f15f96322) iob.cc (8742:9df38d259935)
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

57 iobManAddr = ULL(0x9800000000);
58 iobManSize = ULL(0x0100000000);
59 iobJBusAddr = ULL(0x9F00000000);
60 iobJBusSize = ULL(0x0100000000);
61 assert (params()->system->threadContexts.size() <= MaxNiagaraProcs);
62
63 pioDelay = p->pio_latency;
64
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

57 iobManAddr = ULL(0x9800000000);
58 iobManSize = ULL(0x0100000000);
59 iobJBusAddr = ULL(0x9F00000000);
60 iobJBusSize = ULL(0x0100000000);
61 assert (params()->system->threadContexts.size() <= MaxNiagaraProcs);
62
63 pioDelay = p->pio_latency;
64
65 // Get the interrupt controller from the platform
66 ic = platform->intrctrl;
67
68 for (int x = 0; x < NumDeviceIds; ++x) {
69 intMan[x].cpu = 0;
70 intMan[x].vector = 0;
71 intCtl[x].mask = true;
72 intCtl[x].pend = false;
73 }
74
75}

--- 306 unchanged lines hidden ---
65 for (int x = 0; x < NumDeviceIds; ++x) {
66 intMan[x].cpu = 0;
67 intMan[x].vector = 0;
68 intCtl[x].mask = true;
69 intCtl[x].pend = false;
70 }
71
72}

--- 306 unchanged lines hidden ---