south_bridge.cc revision 5443
1/*
2 * Copyright (c) 2008 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;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
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 "arch/x86/x86_traits.hh"
32#include "base/range.hh"
33#include "dev/x86/south_bridge/south_bridge.hh"
34
35using namespace X86ISA;
36
37void
38SouthBridge::addDevice(X86ISA::SubDevice & sub)
39{
40    rangeList.push_back(sub.addrRange);
41    rangeMap.insert(sub.addrRange, &sub);
42}
43
44void
45SouthBridge::addressRanges(AddrRangeList &range_list)
46{
47    range_list = rangeList;
48}
49
50Tick
51SouthBridge::read(PacketPtr pkt)
52{
53    RangeMapIt sub =
54        rangeMap.find(RangeSize(pkt->getAddr(), 1));
55    assert(sub != rangeMap.end());
56    return sub->second->read(pkt);
57}
58
59Tick
60SouthBridge::write(PacketPtr pkt)
61{
62    RangeMapIt sub =
63        rangeMap.find(RangeSize(pkt->getAddr(), 1));
64    assert(sub != rangeMap.end());
65    return sub->second->write(pkt);
66}
67
68SouthBridge::SouthBridge(const Params *p) : PioDevice(p),
69    pic1(0x20, 2, p->pio_latency),
70    pic2(0xA0, 2, p->pio_latency),
71    pit(p->name + ".pit", 0x40, 4, p->pio_latency),
72    cmos(0x70, 2, p->pio_latency),
73    speaker(0x61, 1, p->pio_latency)
74{
75    addDevice(pic1);
76    addDevice(pic2);
77    addDevice(pit);
78    addDevice(cmos);
79    addDevice(speaker);
80}
81
82SouthBridge *
83SouthBridgeParams::create()
84{
85    return new SouthBridge(this);
86}
87