mirror of https://github.com/xemu-project/xemu.git
60 lines
1.6 KiB
C
60 lines
1.6 KiB
C
/*
|
|
* QEMU Geforce NV2A implementation
|
|
*
|
|
* Copyright (c) 2012 espes
|
|
* Copyright (c) 2015 Jannik Vogel
|
|
* Copyright (c) 2018 Matt Borgerson
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation; either version 2 or
|
|
* (at your option) version 3 of the License.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/* PBUS - bus control */
|
|
uint64_t pbus_read(void *opaque, hwaddr addr, unsigned int size)
|
|
{
|
|
NV2AState *d = opaque;
|
|
|
|
uint64_t r = 0;
|
|
switch (addr) {
|
|
case NV_PBUS_PCI_NV_0:
|
|
r = pci_get_long(d->dev.config + PCI_VENDOR_ID);
|
|
break;
|
|
case NV_PBUS_PCI_NV_1:
|
|
r = pci_get_long(d->dev.config + PCI_COMMAND);
|
|
break;
|
|
case NV_PBUS_PCI_NV_2:
|
|
r = pci_get_long(d->dev.config + PCI_CLASS_REVISION);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
reg_log_read(NV_PBUS, addr, r);
|
|
return r;
|
|
}
|
|
|
|
void pbus_write(void *opaque, hwaddr addr, uint64_t val, unsigned int size)
|
|
{
|
|
NV2AState *d = opaque;
|
|
|
|
reg_log_write(NV_PBUS, addr, val);
|
|
|
|
switch (addr) {
|
|
case NV_PBUS_PCI_NV_1:
|
|
pci_set_long(d->dev.config + PCI_COMMAND, val);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|