2 * QEMU rocker switch emulation - switch worlds
4 * Copyright (c) 2014 Scott Feldman <sfeldma@gmail.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
17 #include "qemu/osdep.h"
21 #include "rocker_world.h"
25 enum rocker_world_type type
;
29 ssize_t
world_ingress(World
*world
, uint32_t pport
,
30 const struct iovec
*iov
, int iovcnt
)
33 return world
->ops
->ig(world
, pport
, iov
, iovcnt
);
39 int world_do_cmd(World
*world
, DescInfo
*info
,
40 char *buf
, uint16_t cmd
, RockerTlv
*cmd_info_tlv
)
42 if (world
->ops
->cmd
) {
43 return world
->ops
->cmd(world
, info
, buf
, cmd
, cmd_info_tlv
);
46 return -ROCKER_ENOTSUP
;
49 World
*world_alloc(Rocker
*r
, size_t sizeof_private
,
50 enum rocker_world_type type
, WorldOps
*ops
)
52 World
*w
= g_malloc0(sizeof(World
) + sizeof_private
);
64 void world_free(World
*world
)
66 if (world
->ops
->uninit
) {
67 world
->ops
->uninit(world
);
72 void world_reset(World
*world
)
74 if (world
->ops
->uninit
) {
75 world
->ops
->uninit(world
);
77 if (world
->ops
->init
) {
78 world
->ops
->init(world
);
82 void *world_private(World
*world
)
87 Rocker
*world_rocker(World
*world
)
92 enum rocker_world_type
world_type(World
*world
)
97 const char *world_name(World
*world
)
99 return world
->ops
->name
;