2017-11-07 13:58:47 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2017-08-22 17:26:56 +00:00
|
|
|
/*
|
2015-07-16 16:40:48 +00:00
|
|
|
* Copyright (C) 2010 - 2015 UNISYS CORPORATION
|
2014-03-04 13:58:07 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*/
|
|
|
|
|
2016-09-02 20:41:32 +00:00
|
|
|
#ifndef __VISORBUS_PRIVATE_H__
|
|
|
|
#define __VISORBUS_PRIVATE_H__
|
2014-03-04 13:58:07 +00:00
|
|
|
|
2014-05-06 13:58:23 +00:00
|
|
|
#include <linux/uuid.h>
|
2016-09-26 15:03:41 +00:00
|
|
|
#include <linux/utsname.h>
|
2017-12-07 17:11:07 +00:00
|
|
|
#include <linux/visorbus.h>
|
2014-05-06 13:58:23 +00:00
|
|
|
|
2014-03-04 13:58:07 +00:00
|
|
|
#include "controlvmchannel.h"
|
2016-09-02 20:41:39 +00:00
|
|
|
#include "vbuschannel.h"
|
2016-09-02 20:41:31 +00:00
|
|
|
|
2017-09-27 17:14:36 +00:00
|
|
|
struct visor_device *visorbus_get_device_by_id(u32 bus_no, u32 dev_no,
|
|
|
|
struct visor_device *from);
|
2017-08-22 17:27:24 +00:00
|
|
|
int visorbus_create_instance(struct visor_device *dev);
|
2017-08-22 17:27:33 +00:00
|
|
|
void visorbus_remove_instance(struct visor_device *bus_info);
|
2017-08-22 17:27:34 +00:00
|
|
|
int create_visor_device(struct visor_device *dev_info);
|
2017-08-22 17:27:35 +00:00
|
|
|
void remove_visor_device(struct visor_device *dev_info);
|
2017-05-19 20:17:41 +00:00
|
|
|
int visorchipset_device_pause(struct visor_device *dev_info);
|
|
|
|
int visorchipset_device_resume(struct visor_device *dev_info);
|
2017-08-22 17:27:03 +00:00
|
|
|
void visorbus_response(struct visor_device *p, int response, int controlvm_id);
|
2017-08-22 17:27:04 +00:00
|
|
|
void visorbus_device_changestate_response(struct visor_device *p, int response,
|
|
|
|
struct visor_segment_state state);
|
2015-05-05 22:37:02 +00:00
|
|
|
int visorbus_init(void);
|
2015-05-05 22:36:15 +00:00
|
|
|
void visorbus_exit(void);
|
2016-06-11 01:48:19 +00:00
|
|
|
|
2016-06-11 01:48:23 +00:00
|
|
|
/* visorchannel access functions */
|
2017-08-30 17:36:31 +00:00
|
|
|
struct visorchannel *visorchannel_create(u64 physaddr, gfp_t gfp,
|
2017-09-27 17:14:44 +00:00
|
|
|
const guid_t *guid, bool needs_lock);
|
2016-06-11 01:48:19 +00:00
|
|
|
void visorchannel_destroy(struct visorchannel *channel);
|
|
|
|
int visorchannel_read(struct visorchannel *channel, ulong offset,
|
2016-11-21 17:15:43 +00:00
|
|
|
void *dest, ulong nbytes);
|
2016-06-11 01:48:19 +00:00
|
|
|
int visorchannel_write(struct visorchannel *channel, ulong offset,
|
2016-11-21 17:15:43 +00:00
|
|
|
void *dest, ulong nbytes);
|
2016-06-11 01:48:19 +00:00
|
|
|
u64 visorchannel_get_physaddr(struct visorchannel *channel);
|
|
|
|
ulong visorchannel_get_nbytes(struct visorchannel *channel);
|
|
|
|
char *visorchannel_id(struct visorchannel *channel, char *s);
|
|
|
|
char *visorchannel_zoneid(struct visorchannel *channel, char *s);
|
|
|
|
u64 visorchannel_get_clientpartition(struct visorchannel *channel);
|
|
|
|
int visorchannel_set_clientpartition(struct visorchannel *channel,
|
|
|
|
u64 partition_handle);
|
2017-08-22 17:26:54 +00:00
|
|
|
char *visorchannel_guid_id(const guid_t *guid, char *s);
|
2017-03-17 15:27:11 +00:00
|
|
|
void *visorchannel_get_header(struct visorchannel *channel);
|
2014-03-04 13:58:07 +00:00
|
|
|
#endif
|