uart8250.cc (13342:1ddb43f47325) uart8250.cc (13343:5a7ac3348cd1)
1/*
2 * Copyright (c) 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;

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

41#include "base/trace.hh"
42#include "config/the_isa.hh"
43#include "debug/Uart.hh"
44#include "dev/platform.hh"
45#include "mem/packet.hh"
46#include "mem/packet_access.hh"
47
48using namespace std;
1/*
2 * Copyright (c) 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;

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

41#include "base/trace.hh"
42#include "config/the_isa.hh"
43#include "debug/Uart.hh"
44#include "dev/platform.hh"
45#include "mem/packet.hh"
46#include "mem/packet_access.hh"
47
48using namespace std;
49using namespace TheISA;
50
51void
52Uart8250::processIntrEvent(int intrBit)
53{
54 if (intrBit & IER) {
55 DPRINTF(Uart, "UART InterEvent, interrupting\n");
56 platform->postConsoleInt();
57 status |= intrBit;

--- 274 unchanged lines hidden ---
49
50void
51Uart8250::processIntrEvent(int intrBit)
52{
53 if (intrBit & IER) {
54 DPRINTF(Uart, "UART InterEvent, interrupting\n");
55 platform->postConsoleInt();
56 status |= intrBit;

--- 274 unchanged lines hidden ---