summaryrefslogtreecommitdiff
path: root/usr/src/uts/common/sys/rsm/rsmpi_driver.h
blob: 2da31ea5145aa7223e64907ad3eabdfce7474f3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*
 * CDDL HEADER START
 *
 * The contents of this file are subject to the terms of the
 * Common Development and Distribution License, Version 1.0 only
 * (the "License").  You may not use this file except in compliance
 * with the License.
 *
 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
 * or http://www.opensolaris.org/os/licensing.
 * See the License for the specific language governing permissions
 * and limitations under the License.
 *
 * When distributing Covered Code, include this CDDL HEADER in each
 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
 * If applicable, add the following below this CDDL HEADER, with the
 * fields enclosed by brackets "[]" replaced with your own identifying
 * information: Portions Copyright [yyyy] [name of copyright owner]
 *
 * CDDL HEADER END
 */
/*
 * Copyright (c) 2000-2001 by Sun Microsystems, Inc.
 * All rights reserved.
 */

#ifndef _SYS_RSM_RSMPI_DRIVER_H
#define	_SYS_RSM_RSMPI_DRIVER_H

#pragma ident	"%Z%%M%	%I%	%E% SMI"

#ifdef	__cplusplus
extern "C" {
#endif

#include <sys/rsm/rsmpi.h>

/*
 * The following is information which each RSMPI driver must
 * provide when registering with the RSMOPS module
 */
#define	MAX_DRVNAME	15

typedef struct rsmops_registry {
	unsigned int rsm_version;	/* version of the RSMPI driver */
	char drv_name[MAX_DRVNAME+1];	/* name of the RSMPI driver */
	int (*rsm_get_controller_handler)(const char *name,
		uint_t number,
		rsm_controller_object_t *pcontroller,
		uint_t version);
	int (*rsm_release_controller_handler)(const char *name,
		uint_t number,
		rsm_controller_object_t *pcontroller);
	void (*rsm_thread_entry_pt)(const char *name /* name of driver */);
} rsmops_registry_t;

typedef struct rsmops_ctrl_registry {
	uint_t	number;
	int refcnt;		/* number of outstanding handles */
	rsm_controller_attr_t *attrp;
	rsm_controller_handle_t handle;
	struct rsmops_ctrl_registry *next;
	struct rsmops_drv_registry *p_drv;	/* back ptr to drvr struct */
} rsmops_ctrl_t;

typedef struct rsmops_drv_registry {
	rsmops_registry_t drv;
	int ctrl_cnt;	/* Number of controllers which have registered */
	struct rsmops_drv_registry *next;
	rsmops_ctrl_t *ctrl_head;
	kthread_id_t thread_id;
} rsmops_drv_t;

int rsm_register_controller(const char *name,
	uint_t number, rsm_controller_attr_t *attrp);

int rsm_unregister_controller(const char *name, uint_t number);

int rsm_register_driver(rsmops_registry_t *p_registry);
int rsm_unregister_driver(rsmops_registry_t *p_registry);

#ifdef	__cplusplus
}
#endif

#endif	/* _SYS_RSM_RSMPI_DRIVER_H */