cmos.cc (5629:1565c13d1483) cmos.cc (5632:65132fd646c6)
1/*
2 * Copyright (c) 2004-2005 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;

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

24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Gabe Black
29 */
30
31#include "dev/x86/cmos.hh"
1/*
2 * Copyright (c) 2004-2005 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;

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

24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Gabe Black
29 */
30
31#include "dev/x86/cmos.hh"
32#include "dev/x86/i8259.hh"
32#include "mem/packet_access.hh"
33
33#include "mem/packet_access.hh"
34
35void
36X86ISA::Cmos::X86RTC::handleEvent()
37{
38 i8259->signalInterrupt(intLine);
39}
40
34Tick
35X86ISA::Cmos::read(PacketPtr pkt)
36{
37 assert(pkt->getSize() == 1);
38 switch(pkt->getAddr() - pioAddr)
39 {
40 case 0x0:
41 pkt->set(address);

--- 65 unchanged lines hidden ---
41Tick
42X86ISA::Cmos::read(PacketPtr pkt)
43{
44 assert(pkt->getSize() == 1);
45 switch(pkt->getAddr() - pioAddr)
46 {
47 case 0x0:
48 pkt->set(address);

--- 65 unchanged lines hidden ---