2010-12-22 11:54:48 +01:00
|
|
|
/*
|
2011-08-26 21:06:01 +02:00
|
|
|
* PCI stubs for platforms that don't support pci bus.
|
2010-12-22 11:54:48 +01:00
|
|
|
*
|
|
|
|
* Copyright (c) 2010 Isaku Yamahata <yamahata at valinux co jp>
|
|
|
|
* VA Linux Systems Japan K.K.
|
|
|
|
*
|
|
|
|
* 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 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2012-12-17 18:20:04 +01:00
|
|
|
#include "sysemu/sysemu.h"
|
2012-12-17 18:19:49 +01:00
|
|
|
#include "monitor/monitor.h"
|
2012-12-12 22:05:42 +01:00
|
|
|
#include "hw/pci/pci.h"
|
2011-10-21 18:15:33 +02:00
|
|
|
#include "qmp-commands.h"
|
2010-12-22 11:54:48 +01:00
|
|
|
|
2011-10-21 18:15:33 +02:00
|
|
|
PciInfoList *qmp_query_pci(Error **errp)
|
2010-12-22 11:54:48 +01:00
|
|
|
{
|
2011-10-21 18:15:33 +02:00
|
|
|
error_set(errp, QERR_UNSUPPORTED);
|
|
|
|
return NULL;
|
2010-12-22 11:54:48 +01:00
|
|
|
}
|
|
|
|
|
2011-10-21 18:15:33 +02:00
|
|
|
static void pci_error_message(Monitor *mon)
|
2010-12-22 11:54:48 +01:00
|
|
|
{
|
2011-10-21 18:15:33 +02:00
|
|
|
monitor_printf(mon, "PCI devices not supported\n");
|
2010-12-22 11:54:48 +01:00
|
|
|
}
|
2010-12-24 04:14:14 +01:00
|
|
|
|
hmp: Name HMP command handler functions hmp_COMMAND()
Some are called do_COMMAND() (old ones, usually), some hmp_COMMAND(),
and sometimes COMMAND pointlessly differs in spelling.
Normalize to hmp_COMMAND(), where COMMAND is exactly the command name
with '-' replaced by '_'.
Exceptions:
* do_device_add() and client_migrate_info() *not* renamed to
hmp_device_add(), hmp_client_migrate_info(), because they're also
QMP handlers. They still need to be converted to QAPI.
* do_memory_dump(), do_physical_memory_dump(), do_ioport_read(),
do_ioport_write() renamed do hmp_* instead of hmp_x(), hmp_xp(),
hmp_i(), hmp_o(), because those names are too cryptic for my taste.
* do_info_help() renamed to hmp_info_help() instead of hmp_info(),
because it only covers help.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
2015-02-06 13:55:43 +01:00
|
|
|
int hmp_pcie_aer_inject_error(Monitor *mon,
|
2010-12-24 04:14:14 +01:00
|
|
|
const QDict *qdict, QObject **ret_data)
|
|
|
|
{
|
|
|
|
pci_error_message(mon);
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
|
|
|
|
|
|
|
void pcie_aer_inject_error_print(Monitor *mon, const QObject *data)
|
|
|
|
{
|
|
|
|
pci_error_message(mon);
|
|
|
|
}
|